diff --git a/workflows/EvalTurboID/EvalTurboID.fsx b/workflows/EvalTurboID/EvalTurboID.fsx
index c2b580c9179c84f94712c4b7190ab7ea44138da7..bedd43c675bbf8aa886b30d963062c33e764791f 100644
--- a/workflows/EvalTurboID/EvalTurboID.fsx
+++ b/workflows/EvalTurboID/EvalTurboID.fsx
@@ -162,7 +162,7 @@ Data.annotateAndWriteData
     "\t" 
     Arguments.columnHeader 
     truncID 
-    [|"Synonym";"MapMan"; "MapManDescription"; "GO"; "GODescription"; "Localization"|]
+    [|"Synonym";"MapMan"; "MapManDescription"; "GO"; "GODescription"; "Localization";"Synonym_Phytozome_61";"GeneName_Phytozome_61"; "Description_Phytozome_61"|]
     ";"
     "|"
     outPathA
@@ -209,7 +209,28 @@ let doAnalysis (allDataForAnalysis:Frame<string,string>) dataForAnalysis (allCon
                 |> Frame.sliceCols allColsOfIControl
                 |> Frame.transpose
                 |> Global.MedianOfRatios.medianOfRatiosWide
-            Frame.merge fst snd, Chart.combine[ai;aiCon], Chart.combine[cor;corCon],Chart.combine[aCorr;aCorrCon]
+            Frame.merge fst snd, 
+            Chart.combine
+                [
+                    ai
+                    |> Chart.withTraceInfo "Bait"
+                    aiCon
+                    |> Chart.withTraceInfo "Control"
+                ], 
+            Chart.combine
+                [
+                    cor
+                    |> Chart.withTraceInfo "Bait"
+                    corCon
+                    |> Chart.withTraceInfo "Control"
+                ],
+            Chart.combine
+                [
+                    aCorr
+                    |> Chart.withTraceInfo "Bait"
+                    aCorrCon
+                    |> Chart.withTraceInfo "Control"
+                ]
         // else
         //     quantValuesOfInterest
         //     |> Frame.transpose
@@ -457,7 +478,17 @@ let doAnalysis (allDataForAnalysis:Frame<string,string>) dataForAnalysis (allCon
         |> Frame.addCol "missingValuesCondition" missingValuesCondition
         |> Frame.addCol "missingValuesControl" missingValuesControl
         |> Frame.addCol "IsCandidate" IsCandidate
-        |> Frame.addCol "ProtName" (allDataForAnalysis.GetColumn<string>("Synonym"))   
+        |> Frame.addCol "ProtName" 
+            (allDataForAnalysis 
+            |> Frame.mapRows (fun k s -> 
+                [|s.GetAs<string>("Synonym_Phytozome_61","");s.GetAs<string>("GeneName_Phytozome_61","");k|] 
+                |> String.concat ";"
+                |> fun x -> x.Replace('|',';').Split(';')
+                |> Array.distinct
+                |> Array.filter (fun x -> x <> "")
+                |> String.concat ";"
+                )   
+            )//|> Array.distinct |> String.concat ";"))//(allDataForAnalysis.GetColumn<string>("Synonym"))   
     
     let fin = 
         normFrame
@@ -469,7 +500,7 @@ let doAnalysis (allDataForAnalysis:Frame<string,string>) dataForAnalysis (allCon
         |> Frame.addCol "MissingValues_Control" missingValuesControl
         |> Frame.addCol "IsSignificant" IsCandidate
         
-    let toSave = Frame.join JoinKind.Outer fin (Frame.sliceCols ["Synonym"; "MapMan";"MapManDescription"; "GO"; "GODescription"] allDataForAnalysis)    
+    let toSave = Frame.join JoinKind.Outer fin (Frame.sliceCols ["Synonym"; "MapMan";"MapManDescription"; "GO"; "GODescription";"Localization";"Synonym_Phytozome_61";"GeneName_Phytozome_61"; "Description_Phytozome_61"] allDataForAnalysis)    
     
     /////////////////////////////////////////////////////
     // Save Results
@@ -514,6 +545,7 @@ let doAnalysis (allDataForAnalysis:Frame<string,string>) dataForAnalysis (allCon
     toSave.SaveCsv(outP + @"\Analysis_complete.tsv",includeRowKeys=true,keyNames=["Protein"],separator='\t')
     System.IO.File.WriteAllLines(outP + @"\params.txt",fsi.CommandLineArgs)
     printfn "Finished Analysis! results can be found at:%s" outP 
+
 ////////////////////////////////////////////////////////////////////////////////
 ////////////////////////////////////////
 ////////////////////////////////////////
diff --git a/workflows/EvalTurboID/scripts/Plotting.fsx b/workflows/EvalTurboID/scripts/Plotting.fsx
index d464bf845e7264ebf59089e07f68325a13f691f7..858888e27ceec32a5842656dae5a0e22195f56d1 100644
--- a/workflows/EvalTurboID/scripts/Plotting.fsx
+++ b/workflows/EvalTurboID/scripts/Plotting.fsx
@@ -42,7 +42,7 @@ let plotMA highlightList (f:Frame<string,string>) =
         let x = dataAll |> Seq.map (fun x -> x.MeanR) 
         let y = dataAll |> Seq.map (fun x -> x.MeanAbundance) 
         let label = dataAll |> Seq.map (fun x -> x.ProtName)
-        Chart.Point(y,x)
+        Chart.Point(y,x, MultiText = label)
 
     let candidates =
         let dataFiltered = dataAll |> Array.filter (fun x -> x.IsCandidate)  
@@ -64,7 +64,7 @@ let plotMA highlightList (f:Frame<string,string>) =
         
         Chart.Point(
         y,x,
-        Name="points"
+        Name="points", MultiText = labels
         )
         |> Chart.withTraceInfo "candidatesNoStabw"
     let candidates' =
@@ -128,7 +128,7 @@ let plotVulcano highlightList f =
         let label = dataAll |> Seq.map (fun x -> x.ProtName)
         let xError = 
             dataAll |> Seq.map (fun x -> x.StDevR)
-        Chart.Point(y,x)
+        Chart.Point(y,x, MultiText = label)
     let candidatesNoStabw =
         let dataFiltered = dataAll |> Array.filter (fun x -> x.IsCandidate)  
         let y = dataFiltered |> Seq.map (fun x -> x.MeanR) 
diff --git a/workflows/EvalTurboID/scripts/chlamy_jgi55.txt b/workflows/EvalTurboID/scripts/chlamy_jgi55.txt
index 65cc017d67ceeb36a79ef811afaa31aca42867f5..5cf0e26e5ad0cefa7f599773e35eb03a3d781792 100644
--- a/workflows/EvalTurboID/scripts/chlamy_jgi55.txt
+++ b/workflows/EvalTurboID/scripts/chlamy_jgi55.txt
@@ -1,17829 +1,17828 @@
-Identifier	MapMan	MapManDescription	Localization	GO	GODescription	Synonym
-"FAToolSnapshot 20201128; Genome version:jgi_v5.5; (c) 2020 Technische Universitaet Kaiserlautern - CSB TM, BV"						
-Cre38.g759997						
-Cre08.g363350						
-Cre08.g379050	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre08.g364751						
-Cre08.g372000			Chloroplast			
-Cre08.g378150	GMM:7.1.1	OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)	Chloroplast	GO:0055114;GO:0050661;GO:0006006;GO:0004345	oxidation-reduction process;NADP binding;glucose metabolic process;glucose-6-phosphate dehydrogenase activity	GLD2
-Cre08.g358567			Mitochondrion			
-Cre08.g373352						
-Cre08.g360700						
-Cre08.g374850	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			
-Cre08.g358459						
-Cre08.g361063						
-Cre08.g367700				GO:0016021	integral component of membrane	
-Cre08.g375200	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	
-Cre08.g368550						
-Cre08.g383450			Mitochondrion			
-Cre08.g378601			Chloroplast			
-Cre08.g371200			Mitochondrion			
-Cre08.g384850						
-Cre08.g361925			Chloroplast			
-Cre08.g367000						
-Cre08.g373436			Mitochondrion			
-Cre08.g358534	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre08.g370250			Mitochondrion			
-Cre08.g358582			Chloroplast			
-Cre08.g363283			Chloroplast			
-Cre08.g362400	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase	Chloroplast			
-Cre08.g382350	GMM:34.8	transport.metabolite transporters at the envelope membrane				EZY14
-Cre08.g369600	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	MFT2
-Cre08.g376650			Secretory pathway	GO:0008146	sulfotransferase activity	CSR5
-Cre08.g366550						
-Cre08.g384355			Mitochondrion			
-Cre08.g359051						
-Cre08.g378100			Chloroplast			
-Cre08.g359800						
-Cre08.g382476			Mitochondrion			
-Cre08.g371533						
-Cre08.g366650						
-Cre08.g377800						
-Cre08.g370116			Mitochondrion			
-Cre08.g375676						
-Cre08.g374100			Mitochondrion			
-Cre08.g371500			Secretory pathway			
-Cre08.g383702	GMM:29.5.11.3;GMM:29.5.11	protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin	Mitochondrion			
-Cre08.g365851	GMM:17.1.1	hormone metabolism.abscisic acid.synthesis-degradation	Chloroplast			
-Cre08.g383250						
-Cre08.g369300	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH16
-Cre08.g379400			Mitochondrion			
-Cre08.g380452				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre08.g360250	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	DUR3B
-Cre08.g366450	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
-Cre08.g362900	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP4
-Cre08.g366950						
-Cre08.g373358						
-Cre08.g358540			Chloroplast			
-Cre08.g373361						
-Cre08.g365300	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP359
-Cre08.g363600	GMM:34.8	transport.metabolite transporters at the envelope membrane				
-Cre08.g375800			Mitochondrion			
-Cre08.g369451	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre08.g385850	GMM:31.3;GMM:29.4	cell.cycle;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDKC1
-Cre08.g375650	GMM:29.4	protein.postranslational modification				
-Cre08.g382530			Chloroplast			
-Cre08.g368450			Secretory pathway	GO:0016021;GO:0008250;GO:0006487	integral component of membrane;oligosaccharyltransferase complex;protein N-linked glycosylation	
-Cre08.g374750			Chloroplast			
-Cre08.g360200	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	DUR3A
-Cre08.g360950			Chloroplast			
-Cre08.g381250						
-Cre08.g373450			Chloroplast	GO:0043169;GO:0005975;GO:0004553;GO:0003824	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	SBE4
-Cre08.g373347			Secretory pathway			
-Cre08.g364800	GMM:23.1.2.4	nucleotide metabolism.synthesis.purine.FGAR amidotransferase	Chloroplast			
-Cre08.g364351						
-Cre08.g374436	GMM:3.5	minor CHO metabolism.others	Mitochondrion			
-Cre08.g364650	GMM:29.1.10;GMM:27.4	protein.aa activation.methionine-tRNA ligase;RNA.RNA binding	Chloroplast	GO:0006450;GO:0000049	regulation of translational fidelity;tRNA binding	
-Cre08.g379950	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast			PFH17
-Cre08.g385750	GMM:13.1.6.1.5	amino acid metabolism.synthesis.aromatic aa.chorismate.shikimate kinase	Mitochondrion			CHK1
-Cre08.g359500				GO:0008716;GO:0005737;GO:0005515	D-alanine-D-alanine ligase activity;cytoplasm;protein binding	
-Cre08.g381483						
-Cre08.g361700			Chloroplast			
-Cre08.g377150			Mitochondrion	GO:0003824	catalytic activity	
-Cre08.g360564	GMM:20.2.3	stress.abiotic.drought/salt		GO:0016020	membrane	ERM3
-Cre08.g358556	GMM:29.2.1	protein.synthesis.ribosomal protein		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS29
-Cre08.g382825						
-Cre08.g385900			Secretory pathway			
-Cre08.g378450						
-Cre08.g376200						
-Cre08.g358544			Chloroplast			
-Cre08.g378250						
-Cre08.g368700	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
-Cre08.g371350						
-Cre08.g379650			Mitochondrion			TIC20
-Cre08.g368950	GMM:18.5;GMM:13.1.6.1.2	Co-factor and vitamine metabolism.folate and vitamine K;amino acid metabolism.synthesis.aromatic aa.chorismate.3-dehydroquinate synthase	Chloroplast			DHQS
-Cre08.g381450			Mitochondrion			OPR35
-Cre08.g358563	GMM:27.1	RNA.processing		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
-Cre08.g359100						
-Cre08.g363267						
-Cre08.g383800			Secretory pathway			
-Cre08.g374150						
-Cre08.g373350	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
-Cre08.g359550						
-Cre08.g382605						
-Cre08.g379800	GMM:27.3.66	RNA.regulation of transcription.pseudo ARR transcription factor family		GO:0004866	endopeptidase inhibitor activity	
-Cre08.g368176						
-Cre08.g368400	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0055114;GO:0045454;GO:0016491;GO:0004791	oxidation-reduction process;cell redox homeostasis;oxidoreductase activity;thioredoxin-disulfide reductase activity	NTR1
-Cre08.g383300			Chloroplast	GO:0016020	membrane	
-Cre08.g371450	GMM:31.4;GMM:29.3.4.99	cell.vesicle transport;protein.targeting.secretory pathway.unspecified				COPZ1
-Cre08.g364450	GMM:13.2.2.1	amino acid metabolism.degradation.glutamate family.glutamine		GO:0008080	N-acetyltransferase activity	NAT1
-Cre08.g377650						
-Cre08.g376700	GMM:28.1;GMM:27.1	DNA.synthesis/chromatin structure;RNA.processing		GO:0008138;GO:0006470;GO:0006397;GO:0006370;GO:0004484	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation;mRNA processing;7-methylguanosine mRNA capping;mRNA guanylyltransferase activity	MRCE1
-Cre08.g371150						
-Cre08.g371400	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	zinc ion binding	CPL16
-Cre08.g366750			Mitochondrion			
-Cre08.g366150			Mitochondrion			ATG16
-Cre08.g384800			Chloroplast			
-Cre08.g364700	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre08.g370200	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	
-Cre08.g358541	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor	Chloroplast			
-Cre08.g364400	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	GO:0006355;GO:0003700	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre08.g367550	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP291
-Cre08.g358700			Secretory pathway			
-Cre08.g358565			Chloroplast			
-Cre08.g385550						
-Cre08.g373000						
-Cre08.g373650						
-Cre08.g371566			Chloroplast			
-Cre08.g379200			Chloroplast			CPLD18
-Cre08.g362350	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase	Secretory pathway			
-Cre08.g384100	GMM:16.1	secondary metabolism.isoprenoids				
-Cre08.g383200						
-Cre08.g358350	GMM:1.1.4.1	PS.lightreaction.ATP synthase.alpha subunit	Chloroplast			TDA1
-Cre08.g376150				GO:0017183	peptidyl-diphthamide biosynthetic process from peptidyl-histidine	CGL150
-Cre08.g369800	GMM:29.2.3.1	protein.synthesis.initiation.deoxyhypusine synthase		GO:0008612	peptidyl-lysine modification to peptidyl-hypusine	DHS2
-Cre08.g383850			Mitochondrion			
-Cre08.g372150			Mitochondrion			
-Cre08.g377500			Mitochondrion			
-Cre08.g381750			Chloroplast			
-Cre08.g379100			Secretory pathway	GO:0003723	RNA binding	
-Cre08.g367900			Secretory pathway			
-Cre08.g376550	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm				DLR1
-Cre08.g385500	GMM:2.2.2.1.1;GMM:2.2.2.1	major CHO metabolism.degradation.starch.starch cleavage.alpha amylase;major CHO metabolism.degradation.starch.starch cleavage		GO:0043169;GO:0005975;GO:0005509;GO:0004556;GO:0003824	cation binding;carbohydrate metabolic process;calcium ion binding;alpha-amylase activity;catalytic activity	AMA1
-Cre08.g369200	GMM:29.4	protein.postranslational modification	Secretory pathway			
-Cre08.g359400			Mitochondrion			
-Cre08.g368500	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre08.g362682			Mitochondrion			
-Cre08.g375900	GMM:29.2.3	protein.synthesis.initiation				EIF2X
-Cre08.g385450			Mitochondrion	GO:0016787	hydrolase activity	
-Cre08.g377200	GMM:28.99;GMM:28.1;GMM:27.3.63;GMM:27.3.44	DNA.unspecified;DNA.synthesis/chromatin structure;RNA.regulation of transcription.PHD finger transcription factor;RNA.regulation of transcription.chromatin remodeling factors		GO:0005515	protein binding	
-Cre08.g373376						
-Cre08.g380950						
-Cre08.g374600			Secretory pathway			
-Cre08.g358545						
-Cre08.g368900	GMM:29.1.7	protein.aa activation.alanine-tRNA ligase	Chloroplast	GO:0043039;GO:0016876;GO:0006419;GO:0005524;GO:0004813;GO:0003676;GO:0000166	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;alanyl-tRNA aminoacylation;ATP binding;alanine-tRNA ligase activity;nucleic acid binding;nucleotide binding"	TSA2
-Cre08.g373370						
-Cre08.g373354						
-Cre08.g365825	GMM:16.1.4.10	secondary metabolism.isoprenoids.carotenoids.carotenoid cleavage dioxygenase	Chloroplast			
-Cre08.g373344						
-Cre08.g369400						
-Cre08.g380500						
-Cre08.g381650			Mitochondrion			
-Cre08.g377300			Mitochondrion	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
-Cre08.g376050						
-Cre08.g379600	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre08.g361900						
-Cre08.g366874			Chloroplast			
-Cre08.g378550	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOP4
-Cre08.g367150	GMM:34.99	transport.misc	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT23
-Cre08.g373369			Mitochondrion			
-Cre08.g366400	GMM:28.2	DNA.repair		GO:0043161;GO:0006289;GO:0005515;GO:0003684	proteasome-mediated ubiquitin-dependent protein catabolic process;nucleotide-excision repair;protein binding;damaged DNA binding	RAD23
-Cre08.g358575	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	TRP7
-Cre08.g385050	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPK2
-Cre08.g361950			Chloroplast			FAP153
-Cre08.g358561						
-Cre08.g365664			Chloroplast			
-Cre08.g381200						
-Cre08.g372500	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases				
-Cre08.g375500	GMM:3.5;GMM:26.26	minor CHO metabolism.others;misc.aminotransferases		GO:1901137;GO:0030246;GO:0005975;GO:0004360	carbohydrate derivative biosynthetic process;carbohydrate binding;carbohydrate metabolic process;glutamine-fructose-6-phosphate transaminase (isomerizing) activity	ATF1
-Cre08.g382800	GMM:30.3;GMM:29.4.1;GMM:29.4	signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005509;GO:0004672	protein phosphorylation;calcium ion binding;protein kinase activity	
-Cre08.g368750			Secretory pathway			
-Cre08.g373349			Chloroplast			
-Cre08.g381400						
-Cre08.g358527						
-Cre08.g358554				GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	
-Cre08.g361750						
-Cre08.g361400	GMM:27.3.17	RNA.regulation of transcription.CPP(Zn) CPP1-related transcription factor family				
-Cre08.g385300	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	HLM14
-Cre08.g364775						
-Cre08.g358553						
-Cre08.g373100	GMM:16.1.4.7	secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Chloroplast	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP97C3
-Cre08.g371801						
-Cre08.g374300	GMM:33.99	development.unspecified				CGL115
-Cre08.g374200	GMM:31.2;GMM:3.6;GMM:29.4.1;GMM:29.4	cell.division;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre08.g360600	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM4
-Cre08.g360750			Chloroplast			
-Cre08.g370850	GMM:29.5.11.3;GMM:29.5	protein.degradation.ubiquitin.E2;protein.degradation				UBC18
-Cre08.g358547						
-Cre08.g378200	GMM:18	Co-factor and vitamine metabolism		GO:0055114;GO:0016638;GO:0010181;GO:0004733	"oxidation-reduction process;oxidoreductase activity, acting on the CH-NH2 group of donors;FMN binding;pyridoxamine-phosphate oxidase activity"	
-Cre08.g381000			Mitochondrion			
-Cre08.g369250						FAP400
-Cre08.g383550				GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre08.g365720			Chloroplast			
-Cre08.g362300	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase				
-Cre08.g362800						
-Cre08.g376250						
-Cre08.g371600						
-Cre08.g369000			Chloroplast			
-Cre08.g358555	GMM:27.3.55	RNA.regulation of transcription.HDA	Chloroplast			
-Cre08.g382515	GMM:33.99	development.unspecified		GO:0005515	protein binding	
-Cre08.g372400	GMM:29.5.11.3;GMM:29.5.11	protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin				UBC19
-Cre08.g377700	GMM:29.5.5	protein.degradation.serine protease		GO:0006508;GO:0004176	proteolysis;ATP-dependent peptidase activity	
-Cre08.g361650	GMM:29.5.11	protein.degradation.ubiquitin	Secretory pathway			
-Cre08.g373764						
-Cre08.g379750			Mitochondrion			
-Cre08.g385200	GMM:27.1	RNA.processing		GO:0005681;GO:0000398	"spliceosomal complex;mRNA splicing, via spliceosome"	SMP3
-Cre08.g362150	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified				FAP361
-Cre08.g383900			Mitochondrion			
-Cre08.g373375						
-Cre08.g374550			Mitochondrion			FDX12
-Cre08.g382750	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	Secretory pathway			
-Cre08.g376720	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion;Chloroplast	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP7
-Cre08.g378650						CGl131
-Cre08.g358200				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre08.g358570			Chloroplast			MCP23
-Cre08.g369500			Secretory pathway			
-Cre08.g370450	GMM:29.9;GMM:29.6.2.6;GMM:29.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding	Mitochondrion	GO:0051087;GO:0042803;GO:0006457;GO:0000774	chaperone binding;protein homodimerization activity;protein folding;adenyl-nucleotide exchange factor activity	MGE1
-Cre08.g358529						
-Cre08.g384750	GMM:2.2.2.1.1;GMM:2.2.2.1	major CHO metabolism.degradation.starch.starch cleavage.alpha amylase;major CHO metabolism.degradation.starch.starch cleavage	Chloroplast	GO:0043169;GO:0005975;GO:0005509;GO:0004556;GO:0003824	cation binding;carbohydrate metabolic process;calcium ion binding;alpha-amylase activity;catalytic activity	AMA3
-Cre08.g382545						
-Cre08.g367950						FAP323
-Cre08.g358569	GMM:29.4	protein.postranslational modification	Secretory pathway			
-Cre08.g373428			Mitochondrion			
-Cre08.g366300			Chloroplast			
-Cre08.g362650	GMM:31.6.1.3.2.1	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A				IFT140
-Cre08.g382575			Chloroplast			
-Cre08.g358535						
-Cre08.g373583			Mitochondrion	GO:0051205;GO:0016021	protein insertion into membrane;integral component of membrane	ALB3.4
-Cre08.g372650			Secretory pathway			
-Cre08.g367350			Chloroplast			
-Cre08.g365103			Secretory pathway			FAP319
-Cre08.g358522	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP5
-Cre08.g373407						
-Cre08.g379576				GO:0003677	DNA binding	
-Cre08.g359450						
-Cre08.g374900	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				
-Cre08.g373362						
-Cre08.g380350						
-Cre08.g378351						
-Cre08.g367800	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases		GO:0016787	hydrolase activity	NDH2
-Cre08.g375550				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre08.g363800						
-Cre08.g373300	GMM:30.6;GMM:3.6;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPKKK1
-Cre08.g368800						
-Cre08.g365027						
-Cre08.g361984	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified				
-Cre08.g378000						
-Cre08.g368350						
-Cre08.g362450	GMM:2.2.2.1.1;GMM:2.2.2.1	major CHO metabolism.degradation.starch.starch cleavage.alpha amylase;major CHO metabolism.degradation.starch.starch cleavage	Chloroplast	GO:0043169;GO:0005975;GO:0005509;GO:0004556;GO:0003824	cation binding;carbohydrate metabolic process;calcium ion binding;alpha-amylase activity;catalytic activity	AMA2
-Cre08.g385675						
-Cre08.g359567			Mitochondrion			
-Cre08.g373373						
-Cre08.g363650			Mitochondrion			
-Cre08.g358650			Secretory pathway	GO:0016020	membrane	
-Cre08.g369950			Secretory pathway			
-Cre08.g381983						
-Cre08.g384200	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525;GO:0003924	GTP binding;GTPase activity	
-Cre08.g382250						
-Cre08.g374250	GMM:31.6.1.9	cell.motility.eukaryotes.flagellar adhesion and gamete fusion	Secretory pathway			SAG1
-Cre08.g383350						
-Cre08.g358542						
-Cre08.g378500						
-Cre08.g377251			Mitochondrion			
-Cre08.g370500			Chloroplast	GO:0006750;GO:0003839	glutathione biosynthetic process;gamma-glutamylcyclotransferase activity	
-Cre08.g359850			Chloroplast			FBB11
-Cre08.g368150	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre08.g361300			Mitochondrion	GO:0016021;GO:0008146	integral component of membrane;sulfotransferase activity	
-Cre08.g365692	GMM:14.3	S-assimilation.sulfite redox	Chloroplast	GO:0055114;GO:0051536;GO:0020037;GO:0016491	oxidation-reduction process;iron-sulfur cluster binding;heme binding;oxidoreductase activity	SIR4
-Cre08.g358500			Chloroplast			
-Cre08.g368300			Secretory pathway	GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL43
-Cre08.g385800						
-Cre08.g367050			Mitochondrion			
-Cre08.g358568			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre08.g359600	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			CSE22
-Cre08.g382716	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	protein binding	UBQ3
-Cre08.g370300						
-Cre08.g383950	GMM:16.1	secondary metabolism.isoprenoids				
-Cre08.g358450						
-Cre08.g358250	GMM:35.1.5;GMM:1.1.3.5	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;PS.lightreaction.cytochrome b6/f.biogenesis	Chloroplast			MCA1
-Cre08.g386050	GMM:29.5.11	protein.degradation.ubiquitin	Chloroplast			
-Cre08.g373346			Secretory pathway			
-Cre08.g360300	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre08.g372050						
-Cre08.g372350	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP188
-Cre08.g385350	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre08.g358528	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP157
-Cre08.g373341						
-Cre08.g384650			Chloroplast			
-Cre08.g378700						
-Cre08.g361250			Chloroplast	GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre08.g373374						
-Cre08.g362950			Secretory pathway			
-Cre08.g376000						
-Cre08.g366676						
-Cre08.g384950	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre08.g363300			Mitochondrion	GO:0009116;GO:0003824	nucleoside metabolic process;catalytic activity	
-Cre08.g366101	GMM:31.1	cell.organisation				
-Cre08.g373400						CSU6
-Cre08.g365900	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCSR1
-Cre08.g380700			Secretory pathway			
-Cre08.g362250	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase				
-Cre08.g362776			Chloroplast			
-Cre08.g373840			Chloroplast			
-Cre08.g363700				GO:0005515	protein binding	
-Cre08.g382400			Mitochondrion			
-Cre08.g384700	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				DMA3
-Cre08.g381850			Secretory pathway			
-Cre08.g365150	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP320
-Cre08.g373726						
-Cre08.g379550	GMM:34.7;GMM:34.2	transport.phosphate;transport.sugars	Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	PHT4
-Cre08.g360350			Chloroplast			ADI1
-Cre08.g365200	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP321
-Cre08.g361350						
-Cre08.g368850			Secretory pathway			
-Cre08.g370350						
-Cre08.g361000			Secretory pathway	GO:0016021;GO:0006810;GO:0005524;GO:0005471	integral component of membrane;transport;ATP binding;ATP:ADP antiporter activity	
-Cre08.g363837	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0006260;GO:0003887;GO:0003677	DNA replication;DNA-directed DNA polymerase activity;DNA binding	POLG1X
-Cre08.g370401	GMM:31.3;GMM:31.2	cell.cycle;cell.division	Chloroplast			CYCB1
-Cre08.g360500	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM2
-Cre08.g364501						
-Cre08.g373802			Chloroplast			
-Cre08.g367400	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCSR3.2
-Cre08.g358600						
-Cre08.g386000						
-Cre08.g379900	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	
-Cre08.g376740	GMM:29.5.3	protein.degradation.cysteine protease				
-Cre08.g382560	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG39
-Cre08.g373359			Secretory pathway			
-Cre08.g384150			Chloroplast			
-Cre08.g362000			Chloroplast			FAP72
-Cre08.g377950			Chloroplast			
-Cre08.g383500						
-Cre08.g380400	GMM:31.2	cell.division		GO:0007094	mitotic spindle assembly checkpoint	MAD2
-Cre08.g373050	GMM:26.1;GMM:11.1.1.1	misc.misc2;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.homomeric enzyme	Mitochondrion	GO:0006633;GO:0005524;GO:0003989	fatty acid biosynthetic process;ATP binding;acetyl-CoA carboxylase activity	BCC3
-Cre08.g361200			Chloroplast			ODA10
-Cre08.g381516	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre08.g358576	GMM:34.14	transport.unspecified cations				
-Cre08.g381900	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre08.g379175			Secretory pathway			
-Cre08.g359900	GMM:29.4	protein.postranslational modification				
-Cre08.g358543			Secretory pathway	GO:0015074;GO:0005515	DNA integration;protein binding	
-Cre08.g365065						FAP318
-Cre08.g379850	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre08.g381702	GMM:8.2.99;GMM:16.4.2;GMM:13.1.1.1.3	TCA / organic transformation.other organic acid transformations.misc;secondary metabolism.N misc.betaine;amino acid metabolism.synthesis.central amino acid metabolism.GABA.SSADH	Mitochondrion	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	
-Cre08.g359300			Secretory pathway	GO:0016787;GO:0009166	hydrolase activity;nucleotide catabolic process	PHO1
-Cre08.g379350	GMM:34.8	transport.metabolite transporters at the envelope membrane	Chloroplast			TPT1
-Cre08.g382590	GMM:31.1	cell.organisation		GO:0035267;GO:0031011;GO:0006355;GO:0006338;GO:0006281	"NuA4 histone acetyltransferase complex;Ino80 complex;regulation of transcription, DNA-templated;chromatin remodeling;DNA repair"	
-Cre08.g367650	GMM:33.99;GMM:30.5;GMM:27.3.70	development.unspecified;signalling.G-proteins;RNA.regulation of transcription.silencing group		GO:0005515	protein binding	MUT11
-Cre08.g358536			Mitochondrion	GO:0008716;GO:0005737	D-alanine-D-alanine ligase activity;cytoplasm	
-Cre08.g359950			Secretory pathway			
-Cre08.g373367						
-Cre08.g377400			Chloroplast			
-Cre08.g365141			Secretory pathway			CSE6
-Cre08.g379187			Secretory pathway			
-Cre08.g368100						
-Cre08.g363383						
-Cre08.g375751			Chloroplast			
-Cre08.g373343						
-Cre08.g360900	GMM:29.2.1.99.1.19;GMM:29.2.1.2.1.15	protein.synthesis.ribosomal protein.unknown.small subunit.S19;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S15		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPS15
-Cre08.g363750				GO:0005509	calcium ion binding	
-Cre08.g376350	GMM:27.3.70	RNA.regulation of transcription.silencing group		GO:0006333;GO:0005634	chromatin assembly or disassembly;nucleus	ASF1
-Cre08.g375850						
-Cre08.g358578			Secretory pathway			
-Cre08.g381100						
-Cre08.g358537			Chloroplast			
-Cre08.g369700			Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre08.g374400				GO:0005515	protein binding	
-Cre08.g384628			Secretory pathway			
-Cre08.g362036			Secretory pathway			
-Cre08.g374650	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species				DII3
-Cre08.g369150	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems	Chloroplast			
-Cre08.g373500			Chloroplast			
-Cre08.g363950			Secretory pathway	GO:0016788;GO:0006886;GO:0006505	"hydrolase activity, acting on ester bonds;intracellular protein transport;GPI anchor metabolic process"	
-Cre08.g383650						
-Cre08.g361551	GMM:29.5.11	protein.degradation.ubiquitin				
-Cre08.g362700	GMM:29.5;GMM:13.1.3.4.12	protein.degradation;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase	Secretory pathway	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm30
-Cre08.g381300						
-Cre08.g358572	GMM:34.14	transport.unspecified cations		GO:0016021;GO:0006952	integral component of membrane;defense response	
-Cre08.g385600	GMM:29.4	protein.postranslational modification				
-Cre08.g360400	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM1
-Cre08.g371700						
-Cre08.g365500						
-Cre08.g358850			Secretory pathway			FAP386
-Cre08.g373878			Mitochondrion			
-Cre08.g382200						
-Cre08.g358524			Chloroplast			
-Cre08.g362750				GO:0046872;GO:0016787;GO:0003676	metal ion binding;hydrolase activity;nucleic acid binding	
-Cre08.g363100			Secretory pathway	GO:0008061;GO:0006030;GO:0005576	chitin binding;chitin metabolic process;extracellular region	
-Cre08.g360050	GMM:13.2.4.4;GMM:11.1.1.2.4	amino acid metabolism.degradation.branched chain group.leucine;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.biotin carboxylase				DUR1
-Cre08.g359650						
-Cre08.g358557						
-Cre08.g360550			Mitochondrion	GO:0005507	copper ion binding	ERM3
-Cre08.g378300						
-Cre08.g372850				GO:0008270	zinc ion binding	
-Cre08.g373688			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre08.g358560						
-Cre08.g372300			Mitochondrion	GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre08.g366800						
-Cre08.g358300						
-Cre08.g373225			Chloroplast			
-Cre08.g384285						
-Cre08.g365100	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP242
-Cre08.g376800	GMM:29.2.3;GMM:11.9.4.2	protein.synthesis.initiation;lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH	Mitochondrion			
-Cre08.g362076						
-Cre08.g367876						
-Cre08.g366600			Mitochondrion			
-Cre08.g369976			Chloroplast			
-Cre08.g372200			Secretory pathway			
-Cre08.g363450			Chloroplast			
-Cre08.g370083			Mitochondrion			
-Cre08.g373421			Secretory pathway;Chloroplast			
-Cre08.g358616	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	FAP398
-Cre08.g364550	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	
-Cre08.g373365						
-Cre08.g363874	GMM:2.2.2.3	major CHO metabolism.degradation.starch.glucan water dikinase	Mitochondrion			
-Cre08.g370950						
-Cre08.g367200	GMM:33.99;GMM:31.4	development.unspecified;cell.vesicle transport				VPS52
-Cre08.g371957	GMM:33.99;GMM:31.99	development.unspecified;cell.unspecified		GO:0031931;GO:0031929	TORC1 complex;TOR signaling	RAPTOR
-Cre08.g371840			Mitochondrion			
-Cre08.g380800						
-Cre08.g373353			Chloroplast			
-Cre08.g382689	GMM:33.99;GMM:29.5.11.1;GMM:29.5.11;GMM:29.2.1.2.2.40;GMM:29.2.1.2.1.27;GMM:29.1	development.unspecified;protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27;protein.aa activation		GO:0005515	protein binding	UBQ4
-Cre08.g358531				GO:0016021	integral component of membrane	
-Cre08.g372900	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies		GO:0005515	protein binding	VFL1
-Cre08.g369900	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre08.g368050			Chloroplast	GO:0006281;GO:0003824	DNA repair;catalytic activity	
-Cre08.g360100				GO:0016884	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor"	DUR2
-Cre08.g361600	GMM:29.5.11	protein.degradation.ubiquitin	Secretory pathway			
-Cre08.g383000	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Chloroplast	GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre08.g382500	GMM:29.2.1.99.1.25;GMM:29.2.1.2.1.25	protein.synthesis.ribosomal protein.unknown.small subunit.S25;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S25				RPS25
-Cre08.g365000			Mitochondrion	GO:0006950;GO:0005516	response to stress;calmodulin binding	
-Cre08.g373345						
-Cre08.g374700						FAP244
-Cre08.g378750						
-Cre08.g369550						
-Cre08.g359350	GMM:13.2.4.4;GMM:11.1.1.2.4;GMM:11.1.1	amino acid metabolism.degradation.branched chain group.leucine;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.biotin carboxylase;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation	Chloroplast			CARB1
-Cre08.g377550						
-Cre08.g364950						FAP317
-Cre08.g380650			Secretory pathway			
-Cre08.g375084	GMM:27.1.1	RNA.processing.splicing		GO:0006397;GO:0003676	mRNA processing;nucleic acid binding	
-Cre08.g379450	GMM:26.3	"misc.gluco-, galacto- and mannosidases"		GO:0009341;GO:0005975;GO:0004565;GO:0004553	"beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity;hydrolase activity, hydrolyzing O-glycosyl compounds"	
-Cre08.g376300			Chloroplast			
-Cre08.g380201	GMM:13.1.6.1.10	amino acid metabolism.synthesis.aromatic aa.chorismate.3-dehydroquinate dehydratase/shikimate dehydrogenase	Mitochondrion	GO:0055114;GO:0004764;GO:0003855	oxidation-reduction process;shikimate 3-dehydrogenase (NADP+) activity;3-dehydroquinate dehydratase activity	SHKD1
-Cre08.g358583			Secretory pathway			
-Cre08.g373368						
-Cre08.g358523			Mitochondrion			
-Cre08.g358577	GMM:34.14	transport.unspecified cations		GO:0005515	protein binding	
-Cre08.g360001						
-Cre08.g371650			Chloroplast	GO:0015031;GO:0008565	protein transport;protein transporter activity	TATB
-Cre08.g385700	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0006886	intracellular protein transport	SNAPG1
-Cre08.g373342						
-Cre08.g372800	GMM:27.1.1	RNA.processing.splicing		GO:0005634;GO:0003676	nucleus;nucleic acid binding	
-Cre08.g380000						UMM7
-Cre08.g377350	GMM:23.4.3;GMM:23.4.2;GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.uridylate kinase;nucleotide metabolism.phosphotransfer and pyrophosphatases.guanylate kinase;nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase		GO:0005515	protein binding	FAP180
-Cre08.g365550						
-Cre08.g362050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			FAP49
-Cre08.g358558						
-Cre08.g358538	GMM:16.1.4.5	secondary metabolism.isoprenoids.carotenoids.lycopene beta cyclase	Chloroplast	GO:0016705;GO:0016117	"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;carotenoid biosynthetic process"	
-Cre08.g364000	GMM:33.99;GMM:3.5;GMM:29.2.2.3.4	development.unspecified;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins		GO:0005515	protein binding	
-Cre08.g358571	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	cyg70
-Cre08.g359700	GMM:18.11	Co-factor and vitamine metabolism.lipoic acid	Mitochondrion	GO:0051539;GO:0051536;GO:0016992;GO:0009107;GO:0003824	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;lipoate synthase activity;lipoate biosynthetic process;catalytic activity"	LAS1
-Cre08.g369050			Secretory pathway			
-Cre08.g373357						
-Cre08.g375350	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre08.g381950	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	TAR1
-Cre08.g374350						
-Cre08.g381050	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP8
-Cre08.g382900			Chloroplast			
-Cre08.g358530			Mitochondrion			OPR113
-Cre08.g381600			Mitochondrion			
-Cre08.g364250	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0016480	negative regulation of transcription from RNA polymerase III promoter	
-Cre08.g368250						
-Cre08.g384000	GMM:26.10;GMM:26.1;GMM:17.3.1.1.5	misc.cytochrome P450;misc.misc2;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.metabolic regulation	Mitochondrion	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP771A1
-Cre08.g362500			Chloroplast	GO:0007076;GO:0000796	mitotic chromosome condensation;condensin complex	
-Cre08.g358546						
-Cre08.g372450	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBQ
-Cre08.g375450	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Mitochondrion	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre08.g365450						
-Cre08.g367850						
-Cre08.g382950			Mitochondrion			
-Cre08.g358900	GMM:23.3.1.2	nucleotide metabolism.salvage.phosphoribosyltransferases.hypoxanthine-guanine phosphoribosyltransferase (HPRT)	Chloroplast	GO:0009116	nucleoside metabolic process	
-Cre08.g371250						
-Cre08.g363367						
-Cre08.g362200	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase				
-Cre08.g373550				GO:0016787	hydrolase activity	
-Cre08.g385100						EFH5
-Cre08.g385250						
-Cre08.g373916	GMM:27.1.19	RNA.processing.ribonucleases		GO:0004527;GO:0003676	exonuclease activity;nucleic acid binding	
-Cre08.g359200	GMM:31.2;GMM:20.2.5	cell.division;stress.abiotic.light				
-Cre08.g360801			Chloroplast			
-Cre08.g363150				GO:0008061;GO:0006030;GO:0005576	chitin binding;chitin metabolic process;extracellular region	
-Cre08.g360444						
-Cre08.g365050			Secretory pathway			FAP409
-Cre08.g369850	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
-Cre08.g358549						
-Cre08.g384900	GMM:30.6;GMM:3.6;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	FAP356
-Cre08.g370550			Mitochondrion	GO:0055114;GO:0050660;GO:0016491;GO:0003824	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;catalytic activity	
-Cre08.g370900			Secretory pathway			
-Cre08.g376850						
-Cre08.g367750			Secretory pathway			
-Cre08.g369100			Secretory pathway			
-Cre08.g366579						
-Cre08.g360850			Mitochondrion	GO:0005524	ATP binding	
-Cre08.g361100	GMM:18.1;GMM:18	Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism	Secretory pathway	GO:0005515	protein binding	
-Cre08.g372716			Mitochondrion			
-Cre08.g377600			Secretory pathway	GO:0010508	positive regulation of autophagy	ATG14
-Cre08.g373356	GMM:29.4	protein.postranslational modification	Chloroplast			
-Cre08.g373363						
-Cre08.g373414			Secretory pathway			
-Cre08.g373250	GMM:29.5.11.20;GMM:29.5	protein.degradation.ubiquitin.proteasom;protein.degradation		GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA2
-Cre08.g380763			Secretory pathway			
-Cre08.g378850	GMM:23.1.3	nucleotide metabolism.synthesis.PRS-PP	Chloroplast	GO:0009165;GO:0004749;GO:0000287	nucleotide biosynthetic process;ribose phosphate diphosphokinase activity;magnesium ion binding	RPPK1
-Cre08.g358521						
-Cre08.g371918			Chloroplast			
-Cre08.g358326			Chloroplast			
-Cre08.g382700	GMM:29.5.11.1;GMM:29.5.11;GMM:29.2.1.2.2.40;GMM:29.2.1.2.1.27;GMM:29.1	protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27;protein.aa activation	Secretory pathway	GO:0005515	protein binding	UBQ3
-Cre08.g366350						
-Cre08.g368650			Secretory pathway			
-Cre08.g381550			Chloroplast			
-Cre08.g377850			Secretory pathway			
-Cre08.g384600			Mitochondrion			
-Cre08.g368026			Mitochondrion			
-Cre08.g373351			Secretory pathway			
-Cre08.g363250						
-Cre08.g380300	GMM:29.4	protein.postranslational modification		GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress"	MSRA3
-Cre08.g362019	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			FAP408
-Cre08.g375400	GMM:31.6.1.9;GMM:27.3.22	cell.motility.eukaryotes.flagellar adhesion and gamete fusion;RNA.regulation of transcription.homeobox transcription factor family (HB)	Mitochondrion	GO:0006355;GO:0003677	"regulation of transcription, DNA-templated;DNA binding"	GSM1
-Cre08.g383050			Secretory pathway			
-Cre08.g364989			Mitochondrion			
-Cre08.g364600						
-Cre08.g386100	GMM:26.1	misc.misc2				CYP744A5P
-Cre08.g364931	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP316
-Cre08.g358100						
-Cre08.g380600	GMM:29.4;GMM:27.1.1	protein.postranslational modification;RNA.processing.splicing		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre08.g384250	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre08.g363400			Mitochondrion			
-Cre08.g382300	GMM:29.8	protein.assembly and cofactor ligation	Chloroplast			CCB4
-Cre08.g372950	GMM:16.1.1.7	secondary metabolism.isoprenoids.non-mevalonate pathway.HDR	Chloroplast	GO:0051745;GO:0050992;GO:0046872;GO:0019288	"4-hydroxy-3-methylbut-2-en-1-yl diphosphate reductase activity;dimethylallyl diphosphate biosynthetic process;metal ion binding;isopentenyl diphosphate biosynthetic process, methylerythritol 4-phosphate pathway"	IDS1
-Cre08.g369720	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
-Cre08.g375050			Chloroplast			FAP86
-Cre08.g378800	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre08.g365950	GMM:26.5;GMM:11.7	misc.acyl transferases;lipid metabolism.unassigned	Chloroplast	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
-Cre08.g366200			Mitochondrion			
-Cre08.g367300	GMM:27.3.52	RNA.regulation of transcription.global transcription factor group		GO:0005515	protein binding	
-Cre08.g384320			Mitochondrion			
-Cre08.g370000			Chloroplast			
-Cre08.g373200	GMM:30.99	signalling.unspecified				
-Cre08.g365400	GMM:29.2.1.1.1.2.31	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L31	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL31
-Cre08.g364200	GMM:29.4	protein.postranslational modification				
-Cre08.g374950			Chloroplast			
-Cre08.g358562	GMM:29.9;GMM:29.6.2.6;GMM:29.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding	Chloroplast	GO:0006457;GO:0005737	protein folding;cytoplasm	CPN20
-Cre08.g364050						
-Cre08.g377450	GMM:29.3.1	protein.targeting.nucleus		GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	
-Cre08.g371052	GMM:29.4;GMM:27.3.12	protein.postranslational modification;RNA.regulation of transcription.C3H zinc finger family	Mitochondrion	GO:0046872;GO:0006468;GO:0006397;GO:0004672;GO:0004540	metal ion binding;protein phosphorylation;mRNA processing;protein kinase activity;ribonuclease activity	IRE1:5frag
-Cre08.g373360						
-Cre08.g385951						
-Cre08.g369350						
-Cre08.g360450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre08.g364862	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005515;GO:0004672	protein phosphorylation;protein binding;protein kinase activity	
-Cre08.g367600	GMM:13.1.5.3.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.OASTL				OASTL1
-Cre08.g365204			Secretory pathway			CSE9
-Cre08.g365600	GMM:18.2.2;GMM:18	Co-factor and vitamine metabolism.thiamine.hydroxymethylpyrimidine kinase;Co-factor and vitamine metabolism		GO:0009228;GO:0004789	thiamine biosynthetic process;thiamine-phosphate diphosphorylase activity	
-Cre08.g364726			Chloroplast			
-Cre08.g379163			Mitochondrion			
-Cre08.g372750						
-Cre08.g373372						
-Cre08.g378417			Secretory pathway			
-Cre08.g383150	GMM:27.3.70	RNA.regulation of transcription.silencing group		GO:0008080	N-acetyltransferase activity	NAT5
-Cre08.g375301			Chloroplast			
-Cre08.g381800				GO:0016787;GO:0008299;GO:0004452	hydrolase activity;isoprenoid biosynthetic process;isopentenyl-diphosphate delta-isomerase activity	
-Cre08.g371879						
-Cre08.g372100	GMM:29.6.2.3;GMM:29.6;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;protein.folding;stress.abiotic.heat	Cytosol			HSP70A
-Cre08.g375700	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			smm31
-Cre08.g376950			Secretory pathway			MMP14
-Cre08.g382620	GMM:33.99;GMM:30.5;GMM:27.3.51	"development.unspecified;signalling.G-proteins;RNA.regulation of transcription.general transcription, TBP-binding protein"	Mitochondrion	GO:0005515	protein binding	
-Cre08.g380550	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Mitochondrion	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre08.g358539				GO:0051087;GO:0001671	chaperone binding;ATPase activator activity	
-Cre08.g370050			Mitochondrion			
-Cre08.g382100						
-Cre08.g376500			Chloroplast	GO:0016799;GO:0008270;GO:0006289;GO:0003906;GO:0003684	"hydrolase activity, hydrolyzing N-glycosyl compounds;zinc ion binding;nucleotide-excision repair;DNA-(apurinic or apyrimidinic site) lyase activity;damaged DNA binding"	
-Cre08.g368200			Chloroplast			
-Cre08.g373355			Mitochondrion			
-Cre08.g369683						
-Cre08.g369740	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway			MRP6
-Cre08.g370650	GMM:7.1.2	OPP.oxidative PP.6-phosphogluconolactonase	Chloroplast	GO:0005975	carbohydrate metabolic process	PGL2
-Cre08.g384050						
-Cre08.g358526	GMM:34.99;GMM:34.9;GMM:34.8	transport.misc;transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane	Chloroplast	GO:0016021;GO:0006810;GO:0005524;GO:0005471	integral component of membrane;transport;ATP binding;ATP:ADP antiporter activity	AAA1
-Cre08.g361850			Chloroplast			
-Cre08.g361450			Secretory pathway			
-Cre08.g373364			Secretory pathway			
-Cre08.g379150			Secretory pathway			
-Cre08.g366850						
-Cre08.g358150			Chloroplast			
-Cre08.g378900	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0055114;GO:0008137	oxidation-reduction process;NADH dehydrogenase (ubiquinone) activity	NUO3
-Cre08.g385400	GMM:13.2.3.1.1	amino acid metabolism.degradation.aspartate family.asparagine.L-asparaginase	Mitochondrion	GO:0006520	cellular amino acid metabolic process	
-Cre08.g363200			Chloroplast			
-Cre08.g380151			Mitochondrion	GO:0005515	protein binding	
-Cre08.g363050						
-Cre08.g376450						CPLD36
-Cre08.g371800	GMM:28.2	DNA.repair				
-Cre08.g377050			Secretory pathway			
-Cre08.g358581						
-Cre08.g382450						
-Cre08.g376100	GMM:3.4.5	minor CHO metabolism.myo-inositol.inositol phosphatase		GO:0046854	phosphatidylinositol phosphorylation	
-Cre08.g370150			Chloroplast			
-Cre08.g372550	GMM:31.2;GMM:29.4.1;GMM:29.4	cell.division;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CDKB1
-Cre08.g359250			Secretory pathway			
-Cre08.g366900						
-Cre08.g375950			Chloroplast	GO:0005515	protein binding	EXR1
-Cre08.g368000			Chloroplast			
-Cre08.g377900				GO:0032775;GO:0009007;GO:0003677	DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding	
-Cre08.g384550			Chloroplast			
-Cre08.g373150						
-Cre08.g370700			Secretory pathway			
-Cre08.g366700			Chloroplast			
-Cre08.g367100						
-Cre08.g358564						FAP344
-Cre08.g358950			Mitochondrion			
-Cre08.g379500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre08.g365800			Mitochondrion	GO:0008171	O-methyltransferase activity	
-Cre08.g375000	GMM:29.4	protein.postranslational modification		GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	
-Cre08.g366000				GO:0016020	membrane	
-Cre08.g359166						
-Cre08.g358751			Mitochondrion			ZMYND10
-Cre08.g361500				GO:0005763	mitochondrial small ribosomal subunit	
-Cre08.g383400	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR11
-Cre08.g366250			Mitochondrion			
-Cre08.g385000				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre08.g358800	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre08.g379000						
-Cre08.g376400			Mitochondrion			
-Cre08.g379300						
-Cre08.g382650	GMM:29.3.4.2	protein.targeting.secretory pathway.golgi		GO:0030173;GO:0006891	integral component of Golgi membrane;intra-Golgi vesicle-mediated transport	UBQ4
-Cre08.g364100			Secretory pathway			
-Cre08.g378050	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOP5
-Cre08.g381350						
-Cre08.g382050			Mitochondrion			
-Cre08.g380250	GMM:1.3.4	PS.calvin cycle.GAP	Chloroplast			CP12
-Cre08.g375250	GMM:29.2.1.99.1.19	protein.synthesis.ribosomal protein.unknown.small subunit.S19		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPS19
-Cre08.g375600	GMM:29.5	protein.degradation				
-Cre08.g373348			Chloroplast			
-Cre08.g358552			Mitochondrion			
-Cre08.g362600						
-Cre08.g364151						
-Cre08.g364300	GMM:20.1.7.6.1;GMM:20.1.7.6	stress.biotic.PR-proteins.PR6 (proteinase inhibitors).trypsin inhibitor;stress.biotic.PR-proteins.PR6 (proteinase inhibitors)				FAP29
-Cre08.g365750	GMM:28.2	DNA.repair				
-Cre08.g368600	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre08.g384390	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	POLQ2
-Cre08.g370601	GMM:29.2.2.3.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs	Mitochondrion	GO:0034457;GO:0006364;GO:0005732;GO:0005634	Mpp10 complex;rRNA processing;small nucleolar ribonucleoprotein complex;nucleus	
-Cre08.g385950						
-Cre08.g378400						
-Cre08.g365351			Mitochondrion			
-Cre08.g360650			Chloroplast			
-Cre08.g373371			Chloroplast			
-Cre08.g374050	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0003887;GO:0003677	DNA replication;DNA-directed DNA polymerase activity;DNA binding	POLD2
-Cre08.g367250			Chloroplast			FAP176
-Cre08.g358559			Chloroplast			
-Cre08.g383101						FAP324
-Cre08.g362550						VPS37
-Cre08.g377750			Mitochondrion			
-Cre08.g358525	GMM:21.2.2;GMM:21.2	redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione	Chloroplast	GO:0055114;GO:0006979;GO:0004602	oxidation-reduction process;response to oxidative stress;glutathione peroxidase activity	
-Cre08.g385650	GMM:31.3;GMM:29.4	cell.cycle;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre08.g369650			Secretory pathway			
-Cre08.g383750			Chloroplast			
-Cre08.g382150						
-Cre08.g373377			Chloroplast			
-Cre08.g359750	GMM:29.2.1.2.1.9	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S9		GO:0019843;GO:0005622;GO:0003723	rRNA binding;intracellular;RNA binding	RPS9
-Cre08.g371751			Mitochondrion			
-Cre08.g361800				GO:0006359	regulation of transcription from RNA polymerase III promoter	RPC31
-Cre08.g377100	GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase	Mitochondrion	GO:0019205;GO:0006139;GO:0005524	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding	ADK6
-Cre08.g376900						
-Cre08.g375801			Mitochondrion			
-Cre08.g363500	GMM:29.4	protein.postranslational modification	Secretory pathway			
-Cre08.g379700	GMM:10.1;GMM:1.1	cell wall.precursor synthesis;PS.lightreaction		GO:0071704;GO:0016868;GO:0005975	"organic substance metabolic process;intramolecular transferase activity, phosphotransferases;carbohydrate metabolic process"	PHM1
-Cre08.g361150			Secretory pathway			
-Cre08.g377000						
-Cre08.g358548			Secretory pathway			
-Cre08.g374450						
-Cre08.g381150						
-Cre08.g362100	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified				FAP154
-Cre08.g359133						
-Cre08.g358532			Mitochondrion	GO:0043565;GO:0008270;GO:0006355;GO:0003700;GO:0003682	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding;chromatin binding"	
-Cre08.g373366						
-Cre08.g369667			Chloroplast			
-Cre08.g372250	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre08.g358580	GMM:23.1.1.1	nucleotide metabolism.synthesis.pyrimidine.carbamoyl phosphate synthetase	Chloroplast			CMP1
-Cre08.g371000						
-Cre08.g358126			Chloroplast			
-Cre08.g383600			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR21
-Cre08.g358579	GMM:21.1	redox.thioredoxin	Secretory pathway			
-Cre08.g374000						
-Cre08.g361050	GMM:18.1;GMM:18	Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism	Mitochondrion	GO:0006777	Mo-molybdopterin cofactor biosynthetic process	CNX3
-Cre08.g366500	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
-Cre08.g363000			Secretory pathway			
-Cre08.g362850						
-Cre08.g370750			Secretory pathway			
-Cre08.g385150						
-Cre08.g358400	GMM:34.1	transport.p- and v-ATPases		GO:0016021;GO:0015693;GO:0015095	integral component of membrane;magnesium ion transport;magnesium ion transmembrane transporter activity	
-Cre08.g358574			Secretory pathway			
-Cre08.g382850						LYR2
-Cre08.g372600						
-Cre08.g367500	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCSR3.1
-Cre08.g358573	GMM:34.14	transport.unspecified cations	Mitochondrion			
-Cre08.g365632	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre08.g366050	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases		GO:0016787	hydrolase activity	
-Cre08.g374800				GO:0005515	protein binding	
-Cre08.g374926			Mitochondrion			
-Cre08.g360150			Mitochondrion			
-Cre08.g364850			Secretory pathway			
-Cre08.g381075						
-Cre08.g384500			Mitochondrion			
-Cre08.g368226						
-Cre08.g375150						
-Cre08.g371301			Secretory pathway			
-Cre08.g384864	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0005515	protein binding	
-Cre08.g359000	GMM:28.2	DNA.repair	Mitochondrion			
-Cre08.g380100			Mitochondrion			
-Cre08.g378950	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre08.g365205			Secretory pathway			FAP322
-Cre08.g380850						
-Cre45.g760847			Secretory pathway	GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	
-Cre45.g760897						
-Cre45.g760797			Chloroplast			
-Cre23.g754647			Chloroplast			
-Cre23.g754297						
-Cre23.g754847			Secretory pathway			
-Cre23.g754597						
-Cre23.g754397						
-Cre23.g754697						
-Cre23.g755047						
-Cre23.g754947						
-Cre23.g754747						
-Cre23.g754997						
-Cre23.g754497						
-Cre23.g754347						
-Cre23.g754897			Chloroplast			
-Cre23.g754547				GO:0005515	protein binding	
-Cre23.g754447						
-Cre23.g754797						
-Cre07.g334200	GMM:29.2.3;GMM:28.1;GMM:27.1.2;GMM:27.1	protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase;RNA.processing		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL38
-Cre07.g315000			Secretory pathway			CSG6
-Cre07.g325748	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0016787;GO:0003824	hydrolase activity;catalytic activity	
-Cre07.g319452			Secretory pathway			PHC73
-Cre07.g346525						
-Cre07.g319300	GMM:2.2.2.3	major CHO metabolism.degradation.starch.glucan water dikinase	Chloroplast	GO:0016310;GO:0016301;GO:0005524	phosphorylation;kinase activity;ATP binding	GWD1
-Cre07.g330276			Chloroplast			
-Cre07.g324700						
-Cre07.g342850	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0036158;GO:0036157	outer dynein arm assembly;outer dynein arm	DCC3
-Cre07.g341650						
-Cre07.g355800						
-Cre07.g325050	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG15
-Cre07.g341251	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g341000			Chloroplast			
-Cre07.g352213						
-Cre07.g343150						
-Cre07.g348951			Mitochondrion			
-Cre07.g315326						
-Cre07.g312750				GO:0003723;GO:0000178	RNA binding;exosome (RNase complex)	CSL4
-Cre07.g345031						
-Cre07.g356550			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre07.g325740	GMM:34.7	transport.phosphate		GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB3
-Cre07.g347050	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP7
-Cre07.g353550	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0003743	translational initiation;translation initiation factor activity	SUI1B
-Cre07.g347650			Mitochondrion			
-Cre07.g325756			Secretory pathway			
-Cre07.g338800	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion			CGL125
-Cre07.g329250			Mitochondrion			
-Cre07.g354800			Secretory pathway			
-Cre07.g338451	GMM:6	gluconeogenesis / glyoxylate cycle		GO:0042132;GO:0006094;GO:0006071	"fructose 1,6-bisphosphate 1-phosphatase activity;gluconeogenesis;glycerol metabolic process"	FBP1
-Cre07.g334776						
-Cre07.g327250			Mitochondrion			
-Cre07.g351700						
-Cre07.g353250			Mitochondrion			
-Cre07.g321650	GMM:31.3	cell.cycle		GO:0019901;GO:0006355;GO:0000079	"protein kinase binding;regulation of transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	CYCL1
-Cre07.g323350			Mitochondrion			
-Cre07.g356050			Chloroplast			
-Cre07.g326626			Secretory pathway			
-Cre07.g334100	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others	Secretory pathway	GO:0032012;GO:0005086	regulation of ARF protein signal transduction;ARF guanyl-nucleotide exchange factor activity	GNOM
-Cre07.g325850						MAW8
-Cre07.g333711						
-Cre07.g328350	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase				FAP207
-Cre07.g324932	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g353600	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP7
-Cre07.g329450			Chloroplast			
-Cre07.g321050	GMM:13.1.3.1.1	amino acid metabolism.synthesis.aspartate family.asparagine.asparagine synthetase		GO:0006529;GO:0004066	asparagine biosynthetic process;asparagine synthase (glutamine-hydrolyzing) activity	
-Cre07.g323300						
-Cre07.g313122			Mitochondrion	GO:0008236;GO:0006508	serine-type peptidase activity;proteolysis	
-Cre07.g318400			Chloroplast			
-Cre07.g345950			Mitochondrion			
-Cre07.g348500			Mitochondrion			
-Cre07.g316900			Mitochondrion			
-Cre07.g327333			Mitochondrion			
-Cre07.g347400				GO:0003676	nucleic acid binding	
-Cre07.g340050	GMM:30.5;GMM:3.5;GMM:29.2.2	signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis		GO:0005730;GO:0005525	nucleolus;GTP binding	
-Cre07.g331250			Chloroplast			
-Cre07.g347950	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others	Secretory pathway	GO:0005515	protein binding	
-Cre07.g314550				GO:0008176;GO:0006400	tRNA (guanine-N7-)-methyltransferase activity;tRNA modification	
-Cre07.g357486						
-Cre07.g321951	GMM:34.12	transport.metal		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NRAMP2
-Cre07.g333350			Chloroplast			
-Cre07.g318000				GO:0016020;GO:0006897	membrane;endocytosis	
-Cre07.g325745			Chloroplast			
-Cre07.g326800	GMM:29.4	protein.postranslational modification		GO:0016787;GO:0005515	hydrolase activity;protein binding	
-Cre07.g316350						CSG1
-Cre07.g344600	GMM:13.1.5.1.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase	Chloroplast	GO:0055114;GO:0051287;GO:0016616;GO:0008152	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process"	PGD1
-Cre07.g333781						
-Cre07.g312300			Chloroplast			
-Cre07.g328250	GMM:35.1.12	not assigned.no ontology.pumilio/Puf RNA-binding domain-containing protein	Mitochondrion	GO:0003723	RNA binding	
-Cre07.g335950	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
-Cre07.g313302	GMM:27.2	RNA.transcription		GO:0046983;GO:0006351;GO:0003899	"protein dimerization activity;transcription, DNA-templated;DNA-directed RNA polymerase activity"	
-Cre07.g357300			Chloroplast			
-Cre07.g318702	GMM:27.1	RNA.processing		GO:0005515	protein binding	
-Cre07.g319600	GMM:16.7;GMM:16.1;GMM:11.1.11;GMM:11.1.10	secondary metabolism.wax;secondary metabolism.isoprenoids;lipid metabolism.FA synthesis and FA elongation.fatty acid elongase;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase		GO:0016747;GO:0016020;GO:0008610;GO:0006633	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;lipid biosynthetic process;fatty acid biosynthetic process"	FAE3
-Cre07.g338150	GMM:33.99;GMM:31.2;GMM:27.4	development.unspecified;cell.division;RNA.RNA binding	Mitochondrion	GO:0003676	nucleic acid binding	RNP1
-Cre07.g339100	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g357850	GMM:29.2.1.2.2.22	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L22		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL22
-Cre07.g333150						
-Cre07.g352976						
-Cre07.g355700			Mitochondrion	GO:0003676	nucleic acid binding	
-Cre07.g330750			Secretory pathway			PHC43
-Cre07.g357750	GMM:33.99	development.unspecified	Secretory pathway	GO:0016020	membrane	
-Cre07.g325650						
-Cre07.g319550			Mitochondrion			
-Cre07.g328600	GMM:29.5.11.4.99;GMM:29.5.11;GMM:27.3.67	protein.degradation.ubiquitin.E3.unspecified;protein.degradation.ubiquitin;RNA.regulation of transcription.putative transcription regulator		GO:0005515	protein binding	
-Cre07.g340400	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP17
-Cre07.g313206			Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
-Cre07.g337150	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005524	ATP binding	RFC2
-Cre07.g337650	GMM:8.1.1.1	TCA / organic transformation.TCA.pyruvate DH.E1	Mitochondrion	GO:0016624;GO:0008152	"oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor;metabolic process"	PDC1
-Cre07.g349850				GO:0005515	protein binding	
-Cre07.g330850	GMM:34.8	transport.metabolite transporters at the envelope membrane	Mitochondrion			
-Cre07.g346200	GMM:35;GMM:11.9.3.2	not assigned;lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase				
-Cre07.g325728						
-Cre07.g354400	GMM:26.10;GMM:26.1;GMM:17.2.2;GMM:16.8.3.3;GMM:16.1.4.7	misc.cytochrome P450;misc.misc2;hormone metabolism.auxin.signal transduction;secondary metabolism.flavonoids.dihydroflavonols.flavonoid 3'-monooxygenase;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Mitochondrion	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743B2
-Cre07.g325721	GMM:23.1.2	nucleotide metabolism.synthesis.purine				cyg69
-Cre07.g340600			Chloroplast			MCP21
-Cre07.g339200			Chloroplast			
-Cre07.g356600						
-Cre07.g332150						
-Cre07.g317201			Chloroplast			
-Cre07.g349050			Chloroplast	GO:0005515;GO:0003723	protein binding;RNA binding	
-Cre07.g348400			Chloroplast			
-Cre07.g351100				GO:0019825	oxygen binding	
-Cre07.g325714			Chloroplast			
-Cre07.g327000						
-Cre07.g356200			Chloroplast			
-Cre07.g341553	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre07.g353200	GMM:30.5	signalling.G-proteins	Secretory pathway	GO:0005525	GTP binding	
-Cre07.g344200						
-Cre07.g331900	GMM:29.2.1.2.1.13	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S13		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS13
-Cre07.g354000			Secretory pathway			
-Cre07.g323150			Secretory pathway			TEH4
-Cre07.g316100						
-Cre07.g343300	GMM:3.3	minor CHO metabolism.sugar alcohols				
-Cre07.g338550			Secretory pathway	GO:0005515	protein binding	
-Cre07.g336100						
-Cre07.g345600			Mitochondrion			
-Cre07.g350300			Mitochondrion			
-Cre07.g331450						
-Cre07.g319000						
-Cre07.g319226			Secretory pathway			
-Cre07.g350000	GMM:11.9.2	lipid metabolism.lipid degradation.lipases		GO:0006629	lipid metabolic process	TGL14
-Cre07.g343466			Secretory pathway			
-Cre07.g345300	GMM:4.1.1;GMM:26.2;GMM:10.1;GMM:1.1	glycolysis.cytosolic branch.UGPase;misc.UDP glucosyl and glucoronyl transferases;cell wall.precursor synthesis;PS.lightreaction	Mitochondrion	GO:0070569;GO:0008152	uridylyltransferase activity;metabolic process	UAP1
-Cre07.g329767			Chloroplast			
-Cre07.g329950						
-Cre07.g349450						
-Cre07.g350500	GMM:29.1.9;GMM:29.1	protein.aa activation.valine-tRNA ligase;protein.aa activation	Mitochondrion	GO:0006438;GO:0006418;GO:0005737;GO:0005524;GO:0004832;GO:0004812;GO:0000166	valyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;valine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	TSV1
-Cre07.g322800						
-Cre07.g317800				GO:0006904;GO:0000145	vesicle docking involved in exocytosis;exocyst	
-Cre07.g351150	GMM:31.6.1.2;GMM:29.4	cell.motility.eukaryotes.deflagellation;protein.postranslational modification				FA2
-Cre07.g357550						
-Cre07.g329783						
-Cre07.g325755			Chloroplast			
-Cre07.g349152	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)		GO:0046983	protein dimerization activity	
-Cre07.g326200						
-Cre07.g334650	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0046872	metal ion binding	
-Cre07.g321750			Secretory pathway			
-Cre07.g342200						IFT70
-Cre07.g339450						
-Cre07.g340700	GMM:33.99	development.unspecified	Secretory pathway			
-Cre07.g348700				GO:0006396	RNA processing	
-Cre07.g345150				GO:0071929;GO:0019799;GO:0005874	alpha-tubulin acetylation;tubulin N-acetyltransferase activity;microtubule	
-Cre07.g352450	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast			
-Cre07.g343626						
-Cre07.g346950						
-Cre07.g319350	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g340200	GMM:1.1.99.1;GMM:1.1.40	PS.lightreaction.unspecified.TEF;PS.lightreaction.cyclic electron flow-chlororespiration	Chloroplast			PGRL1
-Cre07.g333900	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOA8
-Cre07.g352750	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	MRS3
-Cre07.g327850			Mitochondrion			
-Cre07.g341750			Chloroplast			
-Cre07.g325700	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
-Cre07.g344771			Secretory pathway			
-Cre07.g351600	GMM:27.1.2	RNA.processing.RNA helicase	Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL40
-Cre07.g330350			Chloroplast			OPR115
-Cre07.g353837						
-Cre07.g350600	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway			CSG7
-Cre07.g338665	GMM:28.2	DNA.repair	Chloroplast			
-Cre07.g325725	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Mitochondrion			
-Cre07.g325734	GMM:23.4.10	nucleotide metabolism.phosphotransfer and pyrophosphatases.nucleoside diphosphate kinase	Chloroplast	GO:0006241;GO:0006228;GO:0006183;GO:0006165;GO:0004550	CTP biosynthetic process;UTP biosynthetic process;GTP biosynthetic process;nucleoside diphosphate phosphorylation;nucleoside diphosphate kinase activity	FAP340
-Cre07.g326600	GMM:21.1.1;GMM:21.1	redox.thioredoxin.PDIL;redox.thioredoxin		GO:0045454	cell redox homeostasis	PDI6
-Cre07.g316150			Secretory pathway			
-Cre07.g313650			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre07.g322450	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	hlm13
-Cre07.g314200						
-Cre07.g313900			Mitochondrion			
-Cre07.g317550			Mitochondrion			
-Cre07.g346450			Mitochondrion			
-Cre07.g330400				GO:0008076;GO:0006813;GO:0005249	voltage-gated potassium channel complex;potassium ion transport;voltage-gated potassium channel activity	KCN1
-Cre07.g353350	GMM:27.2	RNA.transcription		GO:0006352	"DNA-templated transcription, initiation"	
-Cre07.g336500			Mitochondrion			OPR114
-Cre07.g322050			Mitochondrion			
-Cre07.g339750	GMM:19.20;GMM:19.2	tetrapyrrole synthesis.ferrochelatase;tetrapyrrole synthesis.glu-tRNA reductase	Chloroplast	GO:0006783;GO:0004325	heme biosynthetic process;ferrochelatase activity	HEM2
-Cre07.g342402			Mitochondrion			
-Cre07.g333500						
-Cre07.g327200			Secretory pathway			
-Cre07.g322500	GMM:29.2.1.99.2.19	protein.synthesis.ribosomal protein.unknown.large subunit.L19	Mitochondrion	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL19
-Cre07.g325709			Mitochondrion			
-Cre07.g342100						
-Cre07.g333950	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole		GO:0016192;GO:0006904	vesicle-mediated transport;vesicle docking involved in exocytosis	VPS45
-Cre07.g314650	GMM:28.2	DNA.repair	Chloroplast	GO:0009432;GO:0006281;GO:0005524;GO:0003697	SOS response;DNA repair;ATP binding;single-stranded DNA binding	RECA
-Cre07.g331750						
-Cre07.g324100				GO:0055114	oxidation-reduction process	
-Cre07.g344550	GMM:13.1.5.1.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase	Chloroplast	GO:0055114;GO:0051287;GO:0016616;GO:0008152	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process"	
-Cre07.g328200	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP6
-Cre07.g318600	GMM:29.6.2.1	protein.folding.chaperones and co-chaperones.small HSPs				HSP22H
-Cre07.g314700			Mitochondrion	GO:0006281	DNA repair	
-Cre07.g335850			Mitochondrion			
-Cre07.g316526	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase	Mitochondrion			
-Cre07.g335050	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway			
-Cre07.g337300	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	STD1
-Cre07.g325737	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				
-Cre07.g329500	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0005515;GO:0004252	proteolysis;protein binding;serine-type endopeptidase activity	SUB1
-Cre07.g315400			Mitochondrion	GO:0005525	GTP binding	NOA2
-Cre07.g332901						
-Cre07.g356970						
-Cre07.g338900	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0003676	nucleic acid binding	
-Cre07.g319900	GMM:28.99	DNA.unspecified		GO:0003723;GO:0000178	RNA binding;exosome (RNase complex)	RRP40
-Cre07.g338350			Chloroplast			CPLD50
-Cre07.g343050						
-Cre07.g315650						
-Cre07.g335900	GMM:29.5	protein.degradation	Secretory pathway			
-Cre07.g357350	GMM:30.1	signalling.in sugar and nutrient physiology	Chloroplast	GO:0030234;GO:0006808	enzyme regulator activity;regulation of nitrogen utilization	GLB1
-Cre07.g357900	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0051082;GO:0006457;GO:0005783;GO:0005509	unfolded protein binding;protein folding;endoplasmic reticulum;calcium ion binding	
-Cre07.g336600	GMM:29.7.3;GMM:26.3	"protein.glycosylation.mannosyl-oligosaccharide alpha-1,2-mannosidase;misc.gluco-, galacto- and mannosidases"	Secretory pathway	GO:0016020;GO:0005509;GO:0004571	"membrane;calcium ion binding;mannosyl-oligosaccharide 1,2-alpha-mannosidase activity"	MAN1
-Cre07.g334851	GMM:29.6.2.6	protein.folding.chaperones and co-chaperones.co-chaperones	Mitochondrion	GO:0008270	zinc ion binding	HEP1
-Cre07.g320100			Mitochondrion			
-Cre07.g324350			Mitochondrion			
-Cre07.g353000	GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4	cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g349950	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0051090;GO:0006352;GO:0005634	"regulation of sequence-specific DNA binding transcription factor activity;DNA-templated transcription, initiation;nucleus"	
-Cre07.g337900			Chloroplast			
-Cre07.g312817			Secretory pathway			
-Cre07.g320400			Chloroplast			ELIP4
-Cre07.g351300	GMM:29.1	protein.aa activation				
-Cre07.g344150						
-Cre07.g328750						
-Cre07.g345700			Chloroplast			COQ10
-Cre07.g320900			Mitochondrion			
-Cre07.g354301	GMM:26.23	misc.rhodanese	Chloroplast			RDP1
-Cre07.g342450	GMM:28.1;GMM:27.1.19	DNA.synthesis/chromatin structure;RNA.processing.ribonucleases				
-Cre07.g334575			Mitochondrion			
-Cre07.g331114			Chloroplast			
-Cre07.g319050						
-Cre07.g349750			Secretory pathway			
-Cre07.g343534	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
-Cre07.g356400	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				POC7
-Cre07.g326300						
-Cre07.g325300			Chloroplast			
-Cre07.g322350	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g339550						FBB13
-Cre07.g355150	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZRT5
-Cre07.g329882	GMM:34.15;GMM:29.4	transport.potassium;protein.postranslational modification		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	VGK1
-Cre07.g325723	GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase	Secretory pathway	GO:0019205;GO:0006139;GO:0005524	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding	ADK1
-Cre07.g353700						
-Cre07.g332800						
-Cre07.g334550	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast			PSAO
-Cre07.g343900			Chloroplast			
-Cre07.g357576						
-Cre07.g356700						
-Cre07.g316800						
-Cre07.g327400	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0055114;GO:0008137	oxidation-reduction process;NADH dehydrogenase (ubiquinone) activity	NUO9
-Cre07.g341555	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast			
-Cre07.g347500						OPR31
-Cre07.g323650						
-Cre07.g344260						
-Cre07.g318350	GMM:34.99	transport.misc				CGL64
-Cre07.g354050						
-Cre07.g320950	GMM:27.3.2	RNA.regulation of transcription.alfin-like		GO:0042393;GO:0006355	"histone binding;regulation of transcription, DNA-templated"	
-Cre07.g347200						
-Cre07.g321850	GMM:29.9;GMM:29.6.2.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones		GO:0051087;GO:0001671	chaperone binding;ATPase activator activity	AHA1
-Cre07.g317300	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPKKKK1
-Cre07.g349119			Mitochondrion			
-Cre07.g326900						
-Cre07.g321350						
-Cre07.g332550	GMM:29.5	protein.degradation	Secretory pathway	GO:0016021;GO:0004190	integral component of membrane;aspartic-type endopeptidase activity	PSL1
-Cre07.g347100	GMM:3.5	minor CHO metabolism.others		GO:0016853;GO:0005975	isomerase activity;carbohydrate metabolic process	
-Cre07.g323800						
-Cre07.g354650						
-Cre07.g313050			Mitochondrion			
-Cre07.g351550				GO:0005515	protein binding	
-Cre07.g325724	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004725	protein dephosphorylation;protein tyrosine phosphatase activity	PTP1
-Cre07.g326050	GMM:31.1	cell.organisation	Mitochondrion	GO:0008017;GO:0007018;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;ATP binding;microtubule motor activity	KIL8
-Cre07.g337700						
-Cre07.g355050			Mitochondrion			
-Cre07.g330050				GO:0046872	metal ion binding	
-Cre07.g312050			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre07.g343500	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			
-Cre07.g339104	GMM:34.16;GMM:29.4	transport.ABC transporters and multidrug resistance systems;protein.postranslational modification	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre07.g351350	GMM:23.1.2	nucleotide metabolism.synthesis.purine				CSG8
-Cre07.g348800	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases	Chloroplast			TAB1
-Cre07.g339600						
-Cre07.g354551						FAP65
-Cre07.g334950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g353300	GMM:34.9;GMM:34.17	transport.metabolite transporters at the mitochondrial membrane;transport.peroxisomes	Secretory pathway			MCP22
-Cre07.g350200			Secretory pathway			
-Cre07.g346050	GMM:19.12	tetrapyrrole synthesis.magnesium-protoporphyrin IX monomethyl ester (oxidative) cyclase	Chloroplast	GO:0055114;GO:0046872;GO:0016491	oxidation-reduction process;metal ion binding;oxidoreductase activity	CRD1
-Cre07.g342950			Secretory pathway			
-Cre07.g346917			Mitochondrion			
-Cre07.g353650				GO:0005515	protein binding	
-Cre07.g317400			Secretory pathway			
-Cre07.g332950	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Chloroplast			SFA1
-Cre07.g312002						
-Cre07.g314800						
-Cre07.g349540	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g318551	GMM:30.2.4;GMM:30.2.13;GMM:30.2.12;GMM:30.2.11;GMM:20.1.7;GMM:17.3.2.1	signalling.receptor kinases.leucine rich repeat IV;signalling.receptor kinases.leucine rich repeat XIII;signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;stress.biotic.PR-proteins;hormone metabolism.brassinosteroid.signal transduction.BRI	Secretory pathway	GO:0035556;GO:0016849;GO:0009190;GO:0005515	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;protein binding	
-Cre07.g317850				GO:0036064	ciliary basal body	FBB10
-Cre07.g352350	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion	GO:0006508;GO:0005524;GO:0004222	proteolysis;ATP binding;metalloendopeptidase activity	FHL3
-Cre07.g329700	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	RPT2
-Cre07.g330950	GMM:31.4;GMM:29.3.4.99	cell.vesicle transport;protein.targeting.secretory pathway.unspecified		GO:0015031;GO:0008565	protein transport;protein transporter activity	AP4S4
-Cre07.g351900	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g316450						
-Cre07.g327700	GMM:31.1;GMM:27.3.99	cell.organisation;RNA.regulation of transcription.unclassified	Chloroplast	GO:0008270	zinc ion binding	
-Cre07.g317450			Chloroplast			
-Cre07.g321250						
-Cre07.g316650	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g344500						
-Cre07.g328800			Chloroplast	GO:0005515	protein binding	NSG13
-Cre07.g312833			Secretory pathway			
-Cre07.g352850	GMM:29.2.1.1.4.2	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit	Chloroplast	GO:0015934;GO:0006412;GO:0003735	large ribosomal subunit;translation;structural constituent of ribosome	PRPL32
-Cre07.g337125						
-Cre07.g331100						PHC11
-Cre07.g347600			Mitochondrion	GO:0006310;GO:0006281;GO:0005524	DNA recombination;DNA repair;ATP binding	
-Cre07.g339350	GMM:16.1.1	secondary metabolism.isoprenoids.non-mevalonate pathway		GO:0018342;GO:0008318	protein prenylation;protein prenyltransferase activity	
-Cre07.g338050	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion			ASA3
-Cre07.g335350	GMM:35;GMM:27.3.99;GMM:16.4.1;GMM:13.2.6.2	not assigned;RNA.regulation of transcription.unclassified;secondary metabolism.N misc.alkaloid-like;amino acid metabolism.degradation.aromatic aa.tyrosine	Secretory pathway			
-Cre07.g341952						
-Cre07.g333050			Secretory pathway			
-Cre07.g326010						
-Cre07.g342800			Chloroplast			CGL16
-Cre07.g343700	GMM:8.1.5;GMM:8.1.1.2	TCA / organic transformation.TCA.2-oxoglutarate dehydrogenase;TCA / organic transformation.TCA.pyruvate DH.E2	Mitochondrion	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	OGD2
-Cre07.g331500	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			CLPR3
-Cre07.g350700						
-Cre07.g336200	GMM:29.5.11.5;GMM:29.5.11	protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin		GO:0005515	protein binding	
-Cre07.g339500			Secretory pathway			
-Cre07.g355433			Chloroplast			
-Cre07.g353100				GO:0005525	GTP binding	
-Cre07.g325760			Secretory pathway			MAW10
-Cre07.g319340	GMM:2.2.2.3	major CHO metabolism.degradation.starch.glucan water dikinase		GO:0016310;GO:0016301;GO:0005524	phosphorylation;kinase activity;ATP binding	
-Cre07.g356750				GO:0016020	membrane	
-Cre07.g357950				GO:0005515	protein binding	
-Cre07.g322400			Secretory pathway			
-Cre07.g345750			Mitochondrion	GO:0008080	N-acetyltransferase activity	
-Cre07.g312650			Chloroplast			
-Cre07.g344850	GMM:33.99;GMM:27.1	development.unspecified;RNA.processing		GO:0030145;GO:0016787;GO:0003723	manganese ion binding;hydrolase activity;RNA binding	
-Cre07.g334250	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
-Cre07.g348600			Chloroplast	GO:0016020;GO:0006810	membrane;transport	SULP1
-Cre07.g334400						EXN10
-Cre07.g324000			Mitochondrion			
-Cre07.g314000			Chloroplast			
-Cre07.g344050	GMM:33.99;GMM:29.2.2.3.4	development.unspecified;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins		GO:0032040;GO:0006364;GO:0005515	small-subunit processome;rRNA processing;protein binding	
-Cre07.g353400			Secretory pathway			
-Cre07.g353450	GMM:2.2.1.3;GMM:16.2.1.3;GMM:11.1.8	major CHO metabolism.degradation.sucrose.invertases;secondary metabolism.phenylpropanoids.lignin biosynthesis.4CL;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase		GO:0008152;GO:0003824	metabolic process;catalytic activity	ACS3
-Cre07.g325716	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006310;GO:0006281;GO:0005524;GO:0003910;GO:0003677	DNA recombination;DNA repair;ATP binding;DNA ligase (ATP) activity;DNA binding	DNL1
-Cre07.g357200	GMM:3.5;GMM:10.1.4	minor CHO metabolism.others;cell wall.precursor synthesis.UGD		GO:0055114;GO:0051287;GO:0016616;GO:0003979	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;UDP-glucose 6-dehydrogenase activity"	UGD1
-Cre07.g339700	GMM:34.16;GMM:29.8	transport.ABC transporters and multidrug resistance systems;protein.assembly and cofactor ligation	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	SUFC
-Cre07.g341350						
-Cre07.g342050	GMM:31.4	cell.vesicle transport				VTI3
-Cre07.g330000	GMM:17.4.2	hormone metabolism.cytokinin.signal transduction	Mitochondrion			
-Cre07.g356316			Mitochondrion			
-Cre07.g343650	GMM:3.3	minor CHO metabolism.sugar alcohols				
-Cre07.g312580						
-Cre07.g313400			Mitochondrion			
-Cre07.g315750	GMM:26.8;GMM:16.4.1;GMM:11.1.4;GMM:1.1.99.1	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;secondary metabolism.N misc.alkaloid-like;lipid metabolism.FA synthesis and FA elongation.ACP oxoacyl reductase;PS.lightreaction.unspecified.TEF"	Chloroplast			TEF16
-Cre07.g325200			Secretory pathway			
-Cre07.g349100	GMM:27.1.2	RNA.processing.RNA helicase	Secretory pathway	GO:0004386	helicase activity	HEL39
-Cre07.g325752			Mitochondrion			
-Cre07.g343101						
-Cre07.g318200				GO:0005515	protein binding	CGLD34
-Cre07.g326550			Mitochondrion			
-Cre07.g354200	GMM:4.2.8;GMM:4.1.8;GMM:1.3.4	glycolysis.plastid branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH);glycolysis.cytosolic branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH);PS.calvin cycle.GAP		GO:0055114;GO:0016620	"oxidation-reduction process;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor"	GAP2
-Cre07.g329150	GMM:27.1.2;GMM:27.1	RNA.processing.RNA helicase;RNA.processing	Secretory pathway	GO:0005524;GO:0004386;GO:0003676	ATP binding;helicase activity;nucleic acid binding	
-Cre07.g329861			Mitochondrion			
-Cre07.g332066			Mitochondrion			
-Cre07.g319950			Chloroplast			
-Cre07.g345200						
-Cre07.g325710			Chloroplast			
-Cre07.g330550			Mitochondrion			
-Cre07.g350550				GO:0006281;GO:0004518	DNA repair;nuclease activity	
-Cre07.g349300	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase	Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL41
-Cre07.g337800	GMM:29.2.1	protein.synthesis.ribosomal protein	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS17
-Cre07.g329050	GMM:34.3	transport.amino acids		GO:0016020;GO:0015171;GO:0003333	membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport	AOC5
-Cre07.g355600	GMM:21.1	redox.thioredoxin		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NTR3
-Cre07.g325731				GO:0016021	integral component of membrane	
-Cre07.g332450				GO:0009228	thiamine biosynthetic process	
-Cre07.g324211			Secretory pathway;Chloroplast			
-Cre07.g324450						
-Cre07.g346300			Secretory pathway			
-Cre07.g342000	GMM:29.4	protein.postranslational modification		GO:0006464;GO:0005515;GO:0004719	cellular protein modification process;protein binding;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	
-Cre07.g337450			Secretory pathway			CGL75
-Cre07.g325751						FAP258
-Cre07.g357400						
-Cre07.g322250	GMM:18.1;GMM:18	Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism		GO:0006777	Mo-molybdopterin cofactor biosynthetic process	CNX6
-Cre07.g346550	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g319200			Mitochondrion			
-Cre07.g322600			Chloroplast			
-Cre07.g320350	GMM:30.99;GMM:29.9;GMM:20.2.1	signalling.unspecified;protein.co-chaperones;stress.abiotic.heat	Chloroplast			CDJ5
-Cre07.g332700	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g335800						TWI1
-Cre07.g328150	GMM:21.1.1;GMM:21.1	redox.thioredoxin.PDIL;redox.thioredoxin	Secretory pathway	GO:0045454	cell redox homeostasis	PDI4
-Cre07.g337000	GMM:27.3.99	RNA.regulation of transcription.unclassified				CSD3
-Cre07.g351000			Mitochondrion	GO:0005515	protein binding	
-Cre07.g320500			Secretory pathway			OPR29
-Cre07.g327550			Chloroplast			
-Cre07.g347300				GO:0003676	nucleic acid binding	
-Cre07.g355950						
-Cre07.g349650			Secretory pathway			
-Cre07.g356850				GO:0006950	response to stress	
-Cre07.g319150				GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	PTP4
-Cre07.g348010			Chloroplast			
-Cre07.g322950	GMM:20.2.5	stress.abiotic.light	Chloroplast	GO:0008152;GO:0006741;GO:0003951	metabolic process;NADP biosynthetic process;NAD+ kinase activity	NADK1
-Cre07.g317601			Chloroplast			
-Cre07.g325736	GMM:31.1	cell.organisation	Chloroplast			
-Cre07.g342550	GMM:28.1;GMM:26.6;GMM:13.1.3.4.12	DNA.synthesis/chromatin structure;misc.O-methyl transferases;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase	Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm28
-Cre07.g351050				GO:0015031;GO:0006464	protein transport;cellular protein modification process	VPS23
-Cre07.g346650						
-Cre07.g316400	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			
-Cre07.g319500	GMM:15.2	"metal handling.binding, chelation and storage"	Mitochondrion	GO:0046938;GO:0046872;GO:0016756;GO:0010038	phytochelatin biosynthetic process;metal ion binding;glutathione gamma-glutamylcysteinyltransferase activity;response to metal ion	
-Cre07.g325550	GMM:11.3.5	lipid metabolism.phospholipid synthesis.diacylglycerol kinase		GO:0016301;GO:0007205;GO:0004143	kinase activity;protein kinase C-activating G-protein coupled receptor signaling pathway;diacylglycerol kinase activity	KDG3
-Cre07.g314866	GMM:26.3;GMM:10.6.2	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Mitochondrion			EBM4
-Cre07.g335700			Chloroplast			
-Cre07.g314351	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	
-Cre07.g336450			Chloroplast			
-Cre07.g324550	GMM:25;GMM:13.1.5.1.1	C1-metabolism;amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase	Chloroplast	GO:0055114;GO:0051287;GO:0016616;GO:0008152;GO:0004616	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process;phosphogluconate dehydrogenase (decarboxylating) activity"	LDH1
-Cre07.g339250	GMM:27.3.67;GMM:27.1	RNA.regulation of transcription.putative transcription regulator;RNA.processing				
-Cre07.g317000						
-Cre07.g330150						
-Cre07.g340350	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion			ASA1
-Cre07.g357033			Secretory pathway			
-Cre07.g323850	GMM:26.13	misc.acid and other phosphatases				
-Cre07.g314450			Chloroplast			CGL33B
-Cre07.g346850						
-Cre07.g321150	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383	intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity	CYG15
-Cre07.g332350						
-Cre07.g341550	GMM:29.6.2.6;GMM:29.6	protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding				P23
-Cre07.g315900	GMM:34.99;GMM:29.3.4	transport.misc;protein.targeting.secretory pathway		GO:0016021;GO:0006810	integral component of membrane;transport	
-Cre07.g345850						
-Cre07.g343567			Secretory pathway			
-Cre07.g327950			Secretory pathway			MAW9
-Cre07.g335250						
-Cre07.g352950						
-Cre07.g354500	GMM:27.3.23;GMM:20.2.1	RNA.regulation of transcription.heat-shock transcription factor family (HSF);stress.abiotic.heat		GO:0043565;GO:0006355;GO:0005634;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding"	HSF2
-Cre07.g318950			Mitochondrion	GO:0005515	protein binding	
-Cre07.g312250				GO:0005524;GO:0004003;GO:0003677	ATP binding;ATP-dependent DNA helicase activity;DNA binding	
-Cre07.g339926			Chloroplast			
-Cre07.g334025			Chloroplast			
-Cre07.g337950			Mitochondrion			
-Cre07.g340300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g325730						
-Cre07.g344702						
-Cre07.g324222			Secretory pathway			
-Cre07.g348550	GMM:11.9.2	lipid metabolism.lipid degradation.lipases		GO:0006629	lipid metabolic process	TGL13
-Cre07.g315150	GMM:29.8;GMM:1.1.1.3	protein.assembly and cofactor ligation;PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane	GO:0005506	iron ion binding	RBD1
-Cre07.g357450						
-Cre07.g337200			Mitochondrion			
-Cre07.g333450	GMM:11.8.3	"lipid metabolism.exotics (steroids, squalene etc).UDP-glucose:sterol glucosyltransferase"	Secretory pathway	GO:0030259;GO:0016758;GO:0008152;GO:0005975	"lipid glycosylation;transferase activity, transferring hexosyl groups;metabolic process;carbohydrate metabolic process"	
-Cre07.g353230	GMM:3.5	minor CHO metabolism.others	Mitochondrion			
-Cre07.g313164	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	
-Cre07.g325754	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g354450	GMM:26.1;GMM:17.2.2;GMM:16.1.4.7	misc.misc2;hormone metabolism.auxin.signal transduction;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Mitochondrion	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743B3
-Cre07.g317626						
-Cre07.g355200	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005634;GO:0000808	DNA replication;nucleus;origin recognition complex	ORC5
-Cre07.g327650						
-Cre07.g325743	GMM:34.21;GMM:21.4	transport.calcium;redox.glutaredoxins		GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	GRX3
-Cre07.g333605			Chloroplast			
-Cre07.g336700			Secretory pathway			
-Cre07.g318800	GMM:29.6.2.1;GMM:20.2.1	protein.folding.chaperones and co-chaperones.small HSPs;stress.abiotic.heat	Cytosol			HSP22A
-Cre07.g323550			Chloroplast	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS8
-Cre07.g358050			Secretory pathway	GO:0005515	protein binding	
-Cre07.g344350	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0016020;GO:0008236;GO:0006508	membrane;serine-type peptidase activity;proteolysis	TPP1
-Cre07.g336350	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre07.g331350						
-Cre07.g341900						
-Cre07.g345100			Mitochondrion			
-Cre07.g350850						
-Cre07.g335600	GMM:34.4;GMM:1.5.3	transport.nitrate;PS.carbon concentrating mechanism.algal		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NAR1.4
-Cre07.g325742						
-Cre07.g314676						
-Cre07.g344950	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA9
-Cre07.g352000			Secretory pathway			
-Cre07.g313750			Secretory pathway			
-Cre07.g353900						
-Cre07.g318450	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Chloroplast	GO:0006886;GO:0005784	intracellular protein transport;Sec61 translocon complex	SEC61B
-Cre07.g340900	GMM:13.2.3.5.1;GMM:13.2.3.5	amino acid metabolism.degradation.aspartate family.lysine.lysine decarboxylase;amino acid metabolism.degradation.aspartate family.lysine	Chloroplast			
-Cre07.g357650				GO:0016568;GO:0005634	chromatin modification;nucleus	
-Cre07.g344000			Chloroplast			
-Cre07.g325759	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g349900			Mitochondrion			
-Cre07.g345524						
-Cre07.g346698			Secretory pathway			PHC75
-Cre07.g350626			Mitochondrion			
-Cre07.g325980						
-Cre07.g336000			Mitochondrion	GO:0016787	hydrolase activity	
-Cre07.g329350						
-Cre07.g318250	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	HLM12
-Cre07.g320700	GMM:30.1.1;GMM:23.1.2	signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine		GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383	intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity	CYG11
-Cre07.g317100						
-Cre07.g327150	GMM:29.5.11.4.3.2;GMM:27.3.57	protein.degradation.ubiquitin.E3.SCF.FBOX;RNA.regulation of transcription.JUMONJI family				
-Cre07.g325718	GMM:29.3.1	protein.targeting.nucleus				
-Cre07.g325712	GMM:29.2.1.2.2.24	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L24		GO:0042254	ribosome biogenesis	
-Cre07.g322100	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin				UBQ5
-Cre07.g320200	GMM:26.16	misc.myrosinases-lectin-jacalin				
-Cre07.g338650			Mitochondrion			CSC3
-Cre07.g352600	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				
-Cre07.g329300			Chloroplast	GO:0055085;GO:0016020	transmembrane transport;membrane	MSC1
-Cre07.g342650	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
-Cre07.g341153						
-Cre07.g349500	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0005515	protein binding	
-Cre07.g355350	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0055114	oxidation-reduction process	
-Cre07.g325101			Mitochondrion			
-Cre07.g327226						
-Cre07.g332750						
-Cre07.g326100			Chloroplast			
-Cre07.g341250			Chloroplast			
-Cre07.g343400			Chloroplast			
-Cre07.g319701			Chloroplast	GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre07.g330650			Chloroplast	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
-Cre07.g343789						
-Cre07.g319850	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g341552			Chloroplast			
-Cre07.g344400	GMM:13.1.5.1.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase	Chloroplast	GO:0055114;GO:0051287;GO:0016616;GO:0008152;GO:0004616	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process;phosphogluconate dehydrogenase (decarboxylating) activity"	
-Cre07.g350100	GMM:33.99	development.unspecified	Mitochondrion	GO:0006355	"regulation of transcription, DNA-templated"	
-Cre07.g350950			Chloroplast			
-Cre07.g348900						DNJ19
-Cre07.g354850			Mitochondrion			
-Cre07.g328900	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CDPK9
-Cre07.g355850			Chloroplast			
-Cre07.g356250	GMM:26.10;GMM:17.3.1.1.5	misc.cytochrome P450;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.metabolic regulation	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP741A1
-Cre07.g355500			Secretory pathway			
-Cre07.g350450				GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre07.g328050			Secretory pathway			
-Cre07.g356950			Chloroplast			
-Cre07.g349200						
-Cre07.g332025			Chloroplast			
-Cre07.g345400						FAP70
-Cre07.g339876			Chloroplast			
-Cre07.g340000						
-Cre07.g347850	GMM:28.1.3	DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0051726;GO:0034729;GO:0031151;GO:0018024	regulation of cell cycle;histone H3-K79 methylation;histone methyltransferase activity (H3-K79 specific);histone-lysine N-methyltransferase activity	
-Cre07.g328500				GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS17
-Cre07.g316992	GMM:34.99;GMM:34.1;GMM:27.3.35	transport.misc;transport.p- and v-ATPases;RNA.regulation of transcription.bZIP transcription factor family	Secretory pathway;Chloroplast	GO:0046872;GO:0016021;GO:0015914;GO:0005524;GO:0004012;GO:0000287;GO:0000166	metal ion binding;integral component of membrane;phospholipid transport;ATP binding;phospholipid-translocating ATPase activity;magnesium ion binding;nucleotide binding	
-Cre07.g347000	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g327450	GMM:29.9	protein.co-chaperones	Chloroplast			DNJ34
-Cre07.g342352				GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	
-Cre07.g314100	GMM:29.2.1.2.2.99	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.unknown				
-Cre07.g348300			Secretory pathway			
-Cre07.g347800						
-Cre07.g320600			Mitochondrion			
-Cre07.g356980			Chloroplast			
-Cre07.g351400				GO:0006260;GO:0005634	DNA replication;nucleus	MCM10
-Cre07.g329217						
-Cre07.g316000	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion	GO:0006810;GO:0005622	transport;intracellular	
-Cre07.g337582						
-Cre07.g326700						
-Cre07.g350350						FAP217
-Cre07.g339050	GMM:31.1.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.actin.actin depolymerizing factors;cell.organisation		GO:0030042;GO:0015629;GO:0005622;GO:0003779	actin filament depolymerization;actin cytoskeleton;intracellular;actin binding	NSG11
-Cre07.g313500						
-Cre07.g325450						
-Cre07.g326450	GMM:17.2.2	hormone metabolism.auxin.signal transduction		GO:0035091	phosphatidylinositol binding	VPS5B
-Cre07.g331600			Secretory pathway			
-Cre07.g324800	GMM:26.11.1;GMM:26.11;GMM:16.8.3.1;GMM:16.8.3	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols.dihydroflavonol 4-reductase;secondary metabolism.flavonoids.dihydroflavonols		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SNE6
-Cre07.g319001			Mitochondrion			
-Cre07.g325950	GMM:18.8	Co-factor and vitamine metabolism.ubiquinone				ZSP1
-Cre07.g332600	GMM:29.5	protein.degradation	Mitochondrion			
-Cre07.g315250						CSG5
-Cre07.g333100			Secretory pathway			
-Cre07.g339400				GO:0055114	oxidation-reduction process	
-Cre07.g320250						
-Cre07.g328300			Secretory pathway			
-Cre07.g326250			Secretory pathway			
-Cre07.g331200			Mitochondrion			
-Cre07.g335400	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre07.g325600	GMM:21.4	redox.glutaredoxins	Mitochondrion	GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	GRX5
-Cre07.g337914			Mitochondrion			
-Cre07.g332275	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)				
-Cre07.g337676			Mitochondrion			
-Cre07.g355650	GMM:34.5	transport.ammonium		GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	AMT6
-Cre07.g317250	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis	Secretory pathway	GO:0019028;GO:0008061;GO:0006030;GO:0005975;GO:0005576;GO:0004553	"viral capsid;chitin binding;chitin metabolic process;carbohydrate metabolic process;extracellular region;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI5
-Cre07.g332786	GMM:29.5.4;GMM:29.5	protein.degradation.aspartate protease;protein.degradation	Secretory pathway	GO:0016021;GO:0004190	integral component of membrane;aspartic-type endopeptidase activity	PSL2
-Cre07.g324300			Secretory pathway			
-Cre07.g328226						
-Cre07.g329800			Mitochondrion			HSFL
-Cre07.g336800						
-Cre07.g331962			Chloroplast			
-Cre07.g345550			Chloroplast			
-Cre07.g322376			Chloroplast			
-Cre07.g328550	GMM:29.3.4.3;GMM:14.1	protein.targeting.secretory pathway.vacuole;S-assimilation.APS				VPS18
-Cre07.g316850	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0006260;GO:0005524;GO:0003677	DNA replication;ATP binding;DNA binding	MCM4
-Cre07.g323500						
-Cre07.g354075			Chloroplast			
-Cre07.g340750						EXN11
-Cre07.g336550			Chloroplast			
-Cre07.g330450	GMM:29.2.1.1.1.2.24	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L24		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL24
-Cre07.g338250	GMM:29.1.40;GMM:29.1.15	protein.aa activation.bifunctional aminoacyl-tRNA synthetase;protein.aa activation.proline-tRNA ligase	Secretory pathway	GO:0002161	aminoacyl-tRNA editing activity	
-Cre07.g330800			Mitochondrion			OPR30
-Cre07.g324650						
-Cre07.g322750						
-Cre07.g315500						
-Cre07.g354700			Chloroplast			CSC4
-Cre07.g351500						
-Cre07.g350050			Secretory pathway			
-Cre07.g337850	GMM:34.99	transport.misc		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
-Cre07.g318300						
-Cre07.g330700				GO:0005515	protein binding	FAP91
-Cre07.g345001			Chloroplast			
-Cre07.g353150				GO:0005525	GTP binding	
-Cre07.g325720			Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre07.g325715	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion			
-Cre07.g329000	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			CPLD47
-Cre07.g353950	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure		GO:0006281;GO:0004518	DNA repair;nuclease activity	
-Cre07.g313850	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others		GO:0005515	protein binding	
-Cre07.g356900			Secretory pathway			
-Cre07.g354350	GMM:26.1;GMM:16.1.4.7	misc.misc2;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743B1
-Cre07.g319002			Secretory pathway			
-Cre07.g331401			Chloroplast			
-Cre07.g323200						
-Cre07.g342150	GMM:19.2	tetrapyrrole synthesis.glu-tRNA reductase	Chloroplast	GO:0055114;GO:0050661;GO:0033014;GO:0008883	oxidation-reduction process;NADP binding;tetrapyrrole biosynthetic process;glutamyl-tRNA reductase activity	HEMA1
-Cre07.g340650			Secretory pathway			CGL149
-Cre07.g326950	GMM:29.1.10;GMM:29.1;GMM:27.4	protein.aa activation.methionine-tRNA ligase;protein.aa activation;RNA.RNA binding		GO:0000049	tRNA binding	
-Cre07.g350451	GMM:33.99	development.unspecified		GO:0005515	protein binding	
-Cre07.g323900	GMM:26.13	misc.acid and other phosphatases				
-Cre07.g336950	GMM:2.2.2.2	major CHO metabolism.degradation.starch.starch phosphorylase	Chloroplast	GO:0008184;GO:0005975	glycogen phosphorylase activity;carbohydrate metabolic process	PHO2
-Cre07.g338950						
-Cre07.g351650						FAP20
-Cre07.g313185	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899	"transcription, DNA-templated;DNA-directed RNA polymerase activity"	
-Cre07.g346933			Mitochondrion			
-Cre07.g352300	GMM:27.1	RNA.processing	Chloroplast	GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
-Cre07.g352500						
-Cre07.g315350	GMM:30.5;GMM:3.5;GMM:29.5.7	signalling.G-proteins;minor CHO metabolism.others;protein.degradation.metalloprotease	Chloroplast			
-Cre07.g355750				GO:0005515	protein binding	
-Cre07.g325747						
-Cre07.g330300	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre07.g320800			Mitochondrion	GO:0005634	nucleus	
-Cre07.g357800	GMM:29.8	protein.assembly and cofactor ligation	Chloroplast			CCDA1
-Cre07.g321600			Secretory pathway			
-Cre07.g321400	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway	GO:0016021	integral component of membrane	MAW6
-Cre07.g347700				GO:0000184	"nuclear-transcribed mRNA catabolic process, nonsense-mediated decay"	
-Cre07.g348650	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG65
-Cre07.g313000			Secretory pathway	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
-Cre07.g344800	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB33
-Cre07.g349000	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g325757						
-Cre07.g341154						
-Cre07.g342750				GO:0016491	oxidoreductase activity	
-Cre07.g334750	GMM:29.4;GMM:26.13	protein.postranslational modification;misc.acid and other phosphatases	Chloroplast	GO:0003824	catalytic activity	
-Cre07.g312701	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast			
-Cre07.g314950	GMM:27.3.50	RNA.regulation of transcription.general transcription		GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPC34
-Cre07.g354750			Chloroplast			
-Cre07.g325741	GMM:34.7	transport.phosphate		GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB2
-Cre07.g327900			Secretory pathway			
-Cre07.g339950						
-Cre07.g323750			Mitochondrion	GO:0008897;GO:0000287	holo-[acyl-carrier-protein] synthase activity;magnesium ion binding	
-Cre07.g335200	GMM:29.2.4	protein.synthesis.elongation	Chloroplast	GO:0005525	GTP binding	EFG12
-Cre07.g328450						
-Cre07.g327079	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0010181	FMN binding	
-Cre07.g338300			Mitochondrion	GO:0005515	protein binding	FBB14
-Cre07.g319320	GMM:17.5.1	hormone metabolism.ethylene.synthesis-degradation	Chloroplast			
-Cre07.g349167						
-Cre07.g325812			Secretory pathway			MAW1
-Cre07.g313600						CGL33A
-Cre07.g329476			Chloroplast			
-Cre07.g342350	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE14
-Cre07.g346250			Mitochondrion			
-Cre07.g346350						
-Cre07.g321000	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190;GO:0005515	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;protein binding	CYG14
-Cre07.g356150	GMM:29.5	protein.degradation	Secretory pathway	GO:0071586;GO:0008233;GO:0006508;GO:0004222	CAAX-box protein processing;peptidase activity;proteolysis;metalloendopeptidase activity	
-Cre07.g342920	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation		GO:0030145;GO:0004177	manganese ion binding;aminopeptidase activity	
-Cre07.g325026	GMM:26.1	misc.misc2				
-Cre07.g346750			Chloroplast	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS14
-Cre07.g312350	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006269;GO:0003896	"DNA replication, synthesis of RNA primer;DNA primase activity"	POLA4
-Cre07.g323326			Mitochondrion			
-Cre07.g331700			Secretory pathway			
-Cre07.g325350	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN10-1
-Cre07.g344634						
-Cre07.g327300			Mitochondrion			
-Cre07.g318750	GMM:23.1.2.5	nucleotide metabolism.synthesis.purine.AIR synthase	Chloroplast			PURM
-Cre07.g355250	GMM:31.2;GMM:29.4.1;GMM:29.4	cell.division;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	WEE1
-Cre07.g356450			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre07.g334150			Mitochondrion	GO:0005515	protein binding	
-Cre07.g317950			Chloroplast			
-Cre07.g351950	GMM:34.12	transport.metal		GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZRT1
-Cre07.g344300						
-Cre07.g348200	GMM:2.1.1.2	major CHO metabolism.synthesis.sucrose.SPP	Secretory pathway			SPH3
-Cre07.g333816	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre07.g333570			Chloroplast			
-Cre07.g340100	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0008270	zinc ion binding	MOT13
-Cre07.g357500			Mitochondrion			
-Cre07.g314751						
-Cre07.g348450	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g351750	GMM:29.2.2.3.99	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc				
-Cre07.g313250	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre07.g346418	GMM:27.3.27	RNA.regulation of transcription.NAC domain transcription factor family				
-Cre07.g318426						
-Cre07.g356650			Chloroplast			
-Cre07.g320050	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK1
-Cre07.g345650			Chloroplast			
-Cre07.g357600						
-Cre07.g313950			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre07.g349966	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				
-Cre07.g317350			Chloroplast			
-Cre07.g319100	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Mitochondrion	GO:0005515	protein binding	TEF18
-Cre07.g346150						
-Cre07.g343850	GMM:35.1.3	not assigned.no ontology.armadillo/beta-catenin repeat family protein				
-Cre07.g334600						CGL20
-Cre07.g356350	GMM:16.1.1.1	secondary metabolism.isoprenoids.non-mevalonate pathway.DXS	Chloroplast	GO:0016114;GO:0008661;GO:0008152;GO:0003824	terpenoid biosynthetic process;1-deoxy-D-xylulose-5-phosphate synthase activity;metabolic process;catalytic activity	DXS1
-Cre07.g327317			Chloroplast			
-Cre07.g320850	GMM:26.3	"misc.gluco-, galacto- and mannosidases"		GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
-Cre07.g325717			Chloroplast			
-Cre07.g331850						
-Cre07.g317438						
-Cre07.g326350	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
-Cre07.g312900	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	
-Cre07.g312500	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Secretory pathway			
-Cre07.g355100	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZIP1
-Cre07.g324400	GMM:29.5;GMM:27.3.71	protein.degradation;RNA.regulation of transcription.SNF7		GO:0007034	vacuolar transport	VPS24
-Cre07.g351825	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK12
-Cre07.g328700			Secretory pathway			
-Cre07.g341554	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
-Cre07.g347450			Mitochondrion			
-Cre07.g318850	GMM:29.6.2.1	protein.folding.chaperones and co-chaperones.small HSPs				HSP22B
-Cre07.g312400	GMM:11.3.5	lipid metabolism.phospholipid synthesis.diacylglycerol kinase		GO:0016301;GO:0007205;GO:0004143	kinase activity;protein kinase C-activating G-protein coupled receptor signaling pathway;diacylglycerol kinase activity	KDG1
-Cre07.g334450			Chloroplast			
-Cre07.g332650			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NCT1
-Cre07.g315050	GMM:29.5	protein.degradation		GO:0008242;GO:0006541;GO:0003824	omega peptidase activity;glutamine metabolic process;catalytic activity	GGH1
-Cre07.g325762				GO:0005524;GO:0005515	ATP binding;protein binding	DRC11
-Cre07.g344172						
-Cre07.g347150						
-Cre07.g354150						MFT22
-Cre07.g318050	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family		GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre07.g344250						CSG9
-Cre07.g329750						
-Cre07.g341925			Mitochondrion			
-Cre07.g350900						
-Cre07.g352800			Mitochondrion			
-Cre07.g321300			Chloroplast			
-Cre07.g344186						
-Cre07.g326833			Secretory pathway			
-Cre07.g337750	GMM:26.3;GMM:10.6.2	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"		GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	EBM5
-Cre07.g342552	GMM:28.1	DNA.synthesis/chromatin structure				
-Cre07.g342551			Chloroplast			
-Cre07.g351200						
-Cre07.g338700	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion			
-Cre07.g331150	GMM:26.7;GMM:20.2.3	"misc.oxidases - copper, flavone etc;stress.abiotic.drought/salt"	Mitochondrion	GO:0055114;GO:0020037;GO:0016491;GO:0006979;GO:0005507;GO:0004601	oxidation-reduction process;heme binding;oxidoreductase activity;response to oxidative stress;copper ion binding;peroxidase activity	
-Cre07.g349800			Mitochondrion			
-Cre07.g329900	GMM:17.4.2	hormone metabolism.cytokinin.signal transduction	Secretory pathway	GO:0035556;GO:0016849;GO:0016020;GO:0009190;GO:0007165;GO:0005515;GO:0000160;GO:0000155	intracellular signal transduction;phosphorus-oxygen lyase activity;membrane;cyclic nucleotide biosynthetic process;signal transduction;protein binding;phosphorelay signal transduction system;phosphorelay sensor kinase activity	COP8
-Cre07.g340550						
-Cre07.g325250			Secretory pathway			
-Cre07.g315100						
-Cre07.g341700	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g330900						
-Cre07.g332500						AXT2
-Cre07.g345450						
-Cre07.g325722				GO:0006355;GO:0003713;GO:0003677	"regulation of transcription, DNA-templated;transcription coactivator activity;DNA binding"	
-Cre07.g348750			Mitochondrion	GO:0016020	membrane	
-Cre07.g317750	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway			
-Cre07.g320450			Chloroplast			
-Cre07.g338750						
-Cre07.g322850			Chloroplast			
-Cre07.g358001				GO:0005509	calcium ion binding	
-Cre07.g325726			Secretory pathway			
-Cre07.g343200						
-Cre07.g335451						
-Cre07.g325733			Mitochondrion			
-Cre07.g322884			Secretory pathway	GO:0016758;GO:0008152	"transferase activity, transferring hexosyl groups;metabolic process"	
-Cre07.g341800	GMM:28.1.3	DNA.synthesis/chromatin structure.histone				CGL107
-Cre07.g329233						
-Cre07.g327800	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre07.g357876						
-Cre07.g321700	GMM:3.3;GMM:27.3.69;GMM:26.11	minor CHO metabolism.sugar alcohols;RNA.regulation of transcription.SET-domain transcriptional regulator family;misc.alcohol dehydrogenases		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH3
-Cre07.g347550			Mitochondrion	GO:0005524	ATP binding	
-Cre07.g334700						
-Cre07.g317500			Mitochondrion			
-Cre07.g344900			Chloroplast			
-Cre07.g347980	GMM:35.1.1	not assigned.no ontology.ABC1 family protein				
-Cre07.g318651	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0005515	protein binding	AOF4
-Cre07.g312100				GO:0007049	cell cycle	
-Cre07.g349400						
-Cre07.g349137						
-Cre07.g348350			Mitochondrion			PWR8
-Cre07.g356101						
-Cre07.g346900			Secretory pathway			
-Cre07.g316725			Chloroplast			
-Cre07.g325749						
-Cre07.g315432						CSG3
-Cre07.g335500	GMM:27.3.99;GMM:16.4.1;GMM:13.2.6.2	RNA.regulation of transcription.unclassified;secondary metabolism.N misc.alkaloid-like;amino acid metabolism.degradation.aromatic aa.tyrosine	Chloroplast			
-Cre07.g343433	GMM:8.1.5;GMM:8.1.1.2	TCA / organic transformation.TCA.2-oxoglutarate dehydrogenase;TCA / organic transformation.TCA.pyruvate DH.E2		GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	OGD4
-Cre07.g352250				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	HEL42
-Cre07.g314250						
-Cre07.g342900			Mitochondrion			
-Cre07.g332100	GMM:26.7;GMM:20.2.3	"misc.oxidases - copper, flavone etc;stress.abiotic.drought/salt"	Secretory pathway	GO:0055114;GO:0020037;GO:0016491;GO:0006979;GO:0005507;GO:0004601	oxidation-reduction process;heme binding;oxidoreductase activity;response to oxidative stress;copper ion binding;peroxidase activity	
-Cre07.g320150	GMM:29.9;GMM:29.6.2.6;GMM:20.2.1	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat	EndoplasmicReticulum			ERJ1
-Cre07.g332250				GO:0046983	protein dimerization activity	
-Cre07.g340450			Secretory pathway	GO:0005515	protein binding	PKHD1
-Cre07.g334800	GMM:26.30;GMM:21.99;GMM:1.1.5.2	misc.other Ferredoxins and Rieske domain;redox.misc;PS.lightreaction.other electron carrier (ox/red).ferredoxin	Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX4
-Cre07.g336150						
-Cre07.g323100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g342400						
-Cre07.g357100			Mitochondrion			
-Cre07.g313350			Secretory pathway			
-Cre07.g328400	GMM:30.5;GMM:3.5;GMM:27.4	signalling.G-proteins;minor CHO metabolism.others;RNA.RNA binding		GO:0008270;GO:0003676	zinc ion binding;nucleic acid binding	
-Cre07.g316550						
-Cre07.g352075			Chloroplast			
-Cre07.g323400						
-Cre07.g335100			Secretory pathway			
-Cre07.g325738	GMM:27.3.28	RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre07.g329550						VFL5
-Cre07.g333675			Mitochondrion			
-Cre07.g325746	GMM:29.2.1.2.2.38	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L38		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL38
-Cre07.g336900			Chloroplast			
-Cre07.g325739	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g337250						
-Cre07.g312800				GO:0008270	zinc ion binding	
-Cre07.g331475			Chloroplast	GO:0008080	N-acetyltransferase activity	
-Cre07.g336650	GMM:28.2	DNA.repair		GO:0006298;GO:0005524	mismatch repair;ATP binding	MLH3
-Cre07.g341050						
-Cre07.g332851						SELM2
-Cre07.g353050						
-Cre07.g331800	GMM:3.5;GMM:23.3.2.1	minor CHO metabolism.others;nucleotide metabolism.salvage.nucleoside kinases.adenosine kinase				CGL79
-Cre07.g338100						
-Cre07.g316200						
-Cre07.g312550			Chloroplast			
-Cre07.g319650	GMM:30.99	signalling.unspecified	Chloroplast	GO:0006355	"regulation of transcription, DNA-templated"	FXL4
-Cre07.g315600			Chloroplast	GO:0055114	oxidation-reduction process	
-Cre07.g333746			Mitochondrion	GO:0005515	protein binding	
-Cre07.g314833			Mitochondrion			
-Cre07.g330500			Chloroplast			
-Cre07.g350652						
-Cre07.g346672			Secretory pathway			
-Cre07.g354250	GMM:4.1.11;GMM:1.3.3	glycolysis.cytosolic branch.3-phosphoglycerate kinase (PGK);PS.calvin cycle.phosphoglycerate kinase		GO:0006096;GO:0004618	glycolytic process;phosphoglycerate kinase activity	PGK2
-Cre07.g326750						
-Cre07.g357157			Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
-Cre07.g327100			Chloroplast			
-Cre07.g339633	GMM:29.9	protein.co-chaperones	Cytosol			DNJ20
-Cre07.g327350			Chloroplast			CDPK8
-Cre07.g325711						
-Cre07.g345050	GMM:33.99;GMM:33.3;GMM:27.3.28	development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre07.g326500						
-Cre07.g335226			Secretory pathway			
-Cre07.g325744			Secretory pathway			
-Cre07.g314300			Mitochondrion			
-Cre07.g315700	GMM:29.6.3.1;GMM:29.6	protein.folding.immunophilins (IMM).FKBPs;protein.folding	Chloroplast	GO:0006457	protein folding	FKB16-1
-Cre07.g341150			Chloroplast			
-Cre07.g324866	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g312950						HEL32
-Cre07.g329400						
-Cre07.g350867			Mitochondrion	GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre07.g327600						
-Cre07.g325753			Secretory pathway			
-Cre07.g331050	GMM:27.3.42	RNA.regulation of transcription.bromodomain proteins		GO:0005515	protein binding	
-Cre07.g329650						
-Cre07.g350976						
-Cre07.g348100						
-Cre07.g349350			Mitochondrion			
-Cre07.g343933	GMM:26.3;GMM:10.6.2	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Chloroplast	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	EBM6
-Cre07.g342052						
-Cre07.g313700	GMM:29.1.17	protein.aa activation.glutamate-tRNA ligase	Chloroplast	GO:0043039;GO:0016876;GO:0005524	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;ATP binding"	TSE2
-Cre07.g319800			Mitochondrion			
-Cre07.g333400	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			MMP23
-Cre07.g322300	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure		GO:0016818;GO:0008026;GO:0006139;GO:0005524;GO:0004003;GO:0003677;GO:0003676	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;ATP-dependent helicase activity;nucleobase-containing compound metabolic process;ATP binding;ATP-dependent DNA helicase activity;DNA binding;nucleic acid binding"	XPD4
-Cre07.g329600			Mitochondrion			
-Cre07.g325735						
-Cre07.g355400	GMM:31.2;GMM:29.4.1;GMM:29.4	cell.division;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDKH1
-Cre07.g334350			Chloroplast			
-Cre07.g323050						PEN2
-Cre07.g322550	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP240
-Cre07.g345350	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
-Cre07.g329277						
-Cre07.g352550	GMM:26.23	misc.rhodanese				RDP3
-Cre07.g324150						
-Cre07.g344450						
-Cre07.g325729			Chloroplast			
-Cre07.g341556			Secretory pathway			
-Cre07.g337100			Chloroplast			
-Cre07.g342600			Mitochondrion			
-Cre07.g323700			Chloroplast			
-Cre07.g314050			Secretory pathway			
-Cre07.g347250				GO:0048024;GO:0005634	"regulation of mRNA splicing, via spliceosome;nucleus"	FIP37B
-Cre07.g329100						
-Cre07.g356000						
-Cre07.g347750			Secretory pathway			
-Cre07.g340150			Mitochondrion;Chloroplast			
-Cre07.g337516			Chloroplast			
-Cre07.g357150			Mitochondrion			CYP24
-Cre07.g323000	GMM:27.3.18	RNA.regulation of transcription.E2F/DP transcription factor family		GO:0007049;GO:0006355;GO:0005667;GO:0003700	"cell cycle;regulation of transcription, DNA-templated;transcription factor complex;transcription factor activity, sequence-specific DNA binding"	DP1
-Cre07.g352150			Mitochondrion;Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre07.g327976						
-Cre07.g346317			Secretory pathway			
-Cre07.g339554			Chloroplast	GO:0016021;GO:0008521	integral component of membrane;acetyl-CoA transporter activity	
-Cre07.g348040	GMM:34.3	transport.amino acids		GO:0016020;GO:0015171;GO:0003333	membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport	
-Cre07.g313450			Chloroplast			
-Cre07.g325732						OPR109
-Cre07.g356800			Mitochondrion			OPR33
-Cre07.g332084						
-Cre07.g328075			Mitochondrion			
-Cre07.g320550	GMM:16.7;GMM:11.1.10	secondary metabolism.wax;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase		GO:0016747;GO:0016020;GO:0006633	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;fatty acid biosynthetic process"	FAE4
-Cre07.g349700	GMM:30.11	signalling.light	Chloroplast			
-Cre07.g325150	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase	Mitochondrion	GO:0006629	lipid metabolic process	TGL12
-Cre07.g346100	GMM:28.2	DNA.repair		GO:0006281;GO:0004519	DNA repair;endonuclease activity	
-Cre07.g344100				GO:0008168;GO:0006479	methyltransferase activity;protein methylation	
-Cre07.g318209	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
-Cre07.g355550			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre07.g356283						
-Cre07.g348250						
-Cre07.g321800						
-Cre07.g322000	GMM:13.1.5.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine	Secretory pathway			CSD2
-Cre07.g317864						
-Cre07.g331550	GMM:13.1.5.1.2	amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoserine aminotransferase	Chloroplast			PST1
-Cre07.g331000			Chloroplast			
-Cre07.g326400				GO:0016020	membrane	
-Cre07.g353325			Mitochondrion			
-Cre07.g334900			Chloroplast			
-Cre07.g346000			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre07.g349600	GMM:18.7	Co-factor and vitamine metabolism.iron-sulphur clusters	Mitochondrion			ISCA2
-Cre07.g330100	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020;GO:0006486;GO:0004576	membrane;protein glycosylation;oligosaccharyl transferase activity	GTR25
-Cre07.g320093			Secretory pathway			
-Cre07.g321200	GMM:35.1.13;GMM:27.3.69	not assigned.no ontology.SET domain-containing protein;RNA.regulation of transcription.SET-domain transcriptional regulator family				
-Cre07.g337400			Chloroplast			
-Cre07.g335000			Secretory pathway			
-Cre07.g328850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CNK8
-Cre07.g340850	GMM:26.10;GMM:26.1;GMM:17.3.1.1.5;GMM:17.2.2;GMM:16.1.4.7	misc.cytochrome P450;misc.misc2;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.metabolic regulation;hormone metabolism.auxin.signal transduction;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743A2
-Cre07.g316600	GMM:29.4	protein.postranslational modification		GO:0008138;GO:0006470;GO:0005856;GO:0005515	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation;cytoskeleton;protein binding	MKP5
-Cre07.g324500						MMP22
-Cre07.g323890			Mitochondrion			
-Cre07.g319400	GMM:17.5.1	hormone metabolism.ethylene.synthesis-degradation				
-Cre07.g319250			Chloroplast			
-Cre07.g338000	GMM:28.1	DNA.synthesis/chromatin structure		GO:0042555;GO:0006270;GO:0006260;GO:0005634;GO:0005524;GO:0003678;GO:0003677	MCM complex;DNA replication initiation;DNA replication;nucleus;ATP binding;DNA helicase activity;DNA binding	MCM2
-Cre07.g314500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g314400	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0005524;GO:0004003;GO:0003677	ATP binding;ATP-dependent DNA helicase activity;DNA binding	
-Cre07.g327750	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	TRP3
-Cre07.g333850						
-Cre07.g355900			Mitochondrion			
-Cre07.g332400			Mitochondrion			
-Cre07.g351800			Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK12
-Cre07.g315200	GMM:34.12	transport.metal	Secretory pathway	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	RET1
-Cre07.g338850	GMM:28.2	DNA.repair				
-Cre07.g325758			Secretory pathway			
-Cre07.g335550			Mitochondrion			
-Cre07.g336300						
-Cre07.g341950			Mitochondrion			
-Cre07.g337050	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0016558;GO:0008270;GO:0007031;GO:0005779;GO:0005515	protein import into peroxisome matrix;zinc ion binding;peroxisome organization;integral component of peroxisomal membrane;protein binding	
-Cre07.g354600						
-Cre07.g317421			Mitochondrion			
-Cre07.g325761	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
-Cre07.g354100	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases		GO:0051536;GO:0008080;GO:0003824	iron-sulfur cluster binding;N-acetyltransferase activity;catalytic activity	HAT4
-Cre07.g357700			Chloroplast			
-Cre07.g345000						
-Cre07.g313143			Chloroplast			
-Cre07.g316500			Secretory pathway			
-Cre07.g336750						
-Cre07.g322650			Mitochondrion			
-Cre07.g312150				GO:0016787;GO:0005524;GO:0004003;GO:0003677	hydrolase activity;ATP binding;ATP-dependent DNA helicase activity;DNA binding	
-Cre07.g341850	GMM:29.2.3	protein.synthesis.initiation	Chloroplast	GO:0005525	GTP binding	INFB
-Cre07.g353500	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	GO:0006355;GO:0003700	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	CGLD5A
-Cre07.g319330			Mitochondrion			
-Cre07.g335300	GMM:11.1.3	lipid metabolism.FA synthesis and FA elongation.ketoacyl ACP synthase	Chloroplast			KAS2
-Cre07.g345800						
-Cre07.g345500			Chloroplast			
-Cre07.g353750	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP10
-Cre07.g336250			Mitochondrion			
-Cre07.g312600			Mitochondrion			
-Cre07.g324050	GMM:29.5.11.4.5.1	protein.degradation.ubiquitin.E3.BTB/POZ Cullin3.Cullin3		GO:0031625;GO:0006511	ubiquitin protein ligase binding;ubiquitin-dependent protein catabolic process	CUL1
-Cre07.g327050			Chloroplast			
-Cre07.g336050			Secretory pathway			
-Cre07.g342250	GMM:29.6.1;GMM:29.6	protein.folding.prefoldin and trigger factor;protein.folding		GO:0051082;GO:0016272;GO:0006457	unfolded protein binding;prefoldin complex;protein folding	PFD2
-Cre07.g320750	GMM:30.1.1;GMM:23.1.2	signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine		GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383	intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity	CYG12
-Cre07.g325500	GMM:19.10;GMM:19.1	tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase	Chloroplast	GO:0016851;GO:0009058	magnesium chelatase activity;biosynthetic process	CHLH1
-Cre07.g322176	GMM:27.2	RNA.transcription		GO:0032549;GO:0006351;GO:0005634;GO:0003899;GO:0003677	"ribonucleoside binding;transcription, DNA-templated;nucleus;DNA-directed RNA polymerase activity;DNA binding"	
-Cre07.g337350						
-Cre07.g347350			Secretory pathway	GO:0048024;GO:0005634	"regulation of mRNA splicing, via spliceosome;nucleus"	FIP37A
-Cre07.g315450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway			CSG2
-Cre07.g352251	GMM:29.2.2.3.5	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases		GO:0004386	helicase activity	
-Cre07.g317908	GMM:28.2	DNA.repair	Mitochondrion			
-Cre07.g312850			Secretory pathway			
-Cre07.g339000						
-Cre07.g313800						CGL138
-Cre07.g319750	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL35
-Cre07.g341551						
-Cre07.g330600	GMM:23.2	nucleotide metabolism.degradation	Secretory pathway	GO:0016787	hydrolase activity	
-Cre07.g321550				GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre07.g317150						MKP7
-Cre07.g341100			Chloroplast			
-Cre07.g352650						
-Cre07.g335150	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre07.g348850	GMM:29.2.1.1.1.2.2	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L2	Mitochondrion	GO:0016740;GO:0015934;GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723	transferase activity;large ribosomal subunit;translation;ribosome;intracellular;structural constituent of ribosome;RNA binding	MRPL2
-Cre07.g349520				GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
-Cre07.g342700	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway			
-Cre07.g320000						
-Cre07.g326150	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family				
-Cre07.g356960						
-Cre07.g325000	GMM:26.10;GMM:17.1.1.2.1	misc.cytochrome P450;hormone metabolism.abscisic acid.synthesis-degradation.degradation.8-hydroxylase	Chloroplast	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP738A1
-Cre07.g329200	GMM:27.1.2	RNA.processing.RNA helicase				
-Cre07.g318276						
-Cre07.g325713				GO:0006355;GO:0005634;GO:0003677;GO:0003676	"regulation of transcription, DNA-templated;nucleus;DNA binding;nucleic acid binding"	
-Cre07.g341300	GMM:33.99;GMM:30.11	development.unspecified;signalling.light		GO:0005634	nucleus	XAP5
-Cre07.g355300						
-Cre07.g325727	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems				
-Cre07.g333252	GMM:2.2.2.3	major CHO metabolism.degradation.starch.glucan water dikinase				
-Cre07.g356500			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre07.g343800				GO:0005515	protein binding	
-Cre07.g345250						
-Cre07.g327500						
-Cre07.g350926						
-Cre07.g324750			Chloroplast			
-Cre07.g325400	GMM:16.5.1.1.1.5;GMM:13.1.4.4.3	secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.methylthioalkylmalate dehydrogenase (MAM-DH);amino acid metabolism.synthesis.branched chain group.leucine specific.3-isopropylmalate dehydrogenase	Chloroplast	GO:0055114;GO:0051287;GO:0016616;GO:0000287	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;magnesium ion binding"	LEU3
-Cre07.g339850	GMM:30.2.8.2;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 2;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g324200	GMM:11.8	"lipid metabolism.exotics (steroids, squalene etc)"				BTA1
-Cre07.g343333	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0016787;GO:0005524;GO:0004003;GO:0003677	hydrolase activity;ATP binding;ATP-dependent DNA helicase activity;DNA binding	
-Cre07.g326650						
-Cre07.g349250			Secretory pathway			
-Cre07.g343250	GMM:3.3	minor CHO metabolism.sugar alcohols				
-Cre07.g320300			Secretory pathway			
-Cre07.g347900						
-Cre07.g315950						
-Cre07.g333535	GMM:29.5.7	protein.degradation.metalloprotease		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV9
-Cre07.g351450	GMM:29.4.1	protein.postranslational modification.kinase	Chloroplast	GO:0007094	mitotic spindle assembly checkpoint	
-Cre07.g313550			Chloroplast			
-Cre07.g314900	GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL34
-Cre07.g320650			Secretory pathway	GO:0006506;GO:0004584	GPI anchor biosynthetic process;dolichyl-phosphate-mannose-glycolipid alpha-mannosyltransferase activity	PIGV
-Cre07.g337933						
-Cre07.g350400	GMM:31.3.1;GMM:26.23	cell.cycle.peptidylprolyl isomerase;misc.rhodanese	Secretory pathway			PIN3
-Cre07.g315850				GO:0055114	oxidation-reduction process	
-Cre07.g346800			Chloroplast			
-Cre07.g328000			Secretory pathway			
-Cre07.g317576			Secretory pathway			
-Cre07.g338602	GMM:28.2	DNA.repair		GO:0006281;GO:0003684	DNA repair;damaged DNA binding	POLH1
-Cre07.g314150	GMM:16.1.4.3;GMM:16.1.4	secondary metabolism.isoprenoids.carotenoids.zeta-carotene desaturase;secondary metabolism.isoprenoids.carotenoids	Chloroplast			ZDS1
-Cre07.g338500			Secretory pathway			
-Cre07.g346600			Chloroplast			
-Cre07.g332050						
-Cre07.g316050	GMM:29.9;GMM:1.1.99	protein.co-chaperones;PS.lightreaction.unspecified	Chloroplast			CDJ2
-Cre07.g318500	GMM:16.7;GMM:11.1.10	secondary metabolism.wax;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase		GO:0016747;GO:0016020;GO:0006633	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;fatty acid biosynthetic process"	
-Cre07.g332300	GMM:2.2.2.3	major CHO metabolism.degradation.starch.glucan water dikinase	Chloroplast	GO:0016310;GO:0016301;GO:0005524	phosphorylation;kinase activity;ATP binding	GWD2
-Cre07.g338400	GMM:35.1.40	not assigned.no ontology.glycine rich proteins				
-Cre07.g341600	GMM:29.9;GMM:29.6.2.6;GMM:29.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding	Chloroplast	GO:0051087;GO:0042803;GO:0006457;GO:0000774	chaperone binding;protein homodimerization activity;protein folding;adenyl-nucleotide exchange factor activity	CGE1b;CGE1
-Cre07.g333000	GMM:29.5.3	protein.degradation.cysteine protease		GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP4
-Cre07.g335750	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B	Mitochondrion	GO:0005515	protein binding	IFT88
-Cre07.g339150	GMM:29.6.2.2;GMM:29.6;GMM:1.3.13	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding;PS.calvin cycle.rubisco interacting	Chloroplast.Stroma	GO:0005524	ATP binding	CPN60B2
-Cre07.g352900	GMM:31.2	cell.division		GO:0005515	protein binding	
-Cre07.g331650						
-Cre07.g317050	GMM:29.5.11.1;GMM:29.5.11;GMM:29.2.1.2.2.40;GMM:29.2.1.2.1.27;GMM:29.1	protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27;protein.aa activation	Chloroplast	GO:0005515	protein binding	UBQ6
-Cre07.g324233			Chloroplast			
-Cre07.g322900	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	
-Cre07.g315300	GMM:23.1.2	nucleotide metabolism.synthesis.purine				CSG4
-Cre07.g354976			Chloroplast			
-Cre07.g354550			Mitochondrion			
-Cre07.g346500	GMM:29.4	protein.postranslational modification	Mitochondrion			
-Cre07.g346400						
-Cre07.g313100						
-Cre07.g328950						
-Cre07.g314600	GMM:7.2.4;GMM:1.3.10	OPP.non-reductive PP.ribose 5-phosphate isomerase;PS.calvin cycle.Rib5P Isomerase	Chloroplast	GO:0009052;GO:0004751	"pentose-phosphate shunt, non-oxidative branch;ribose-5-phosphate isomerase activity"	RPI2
-Cre07.g321900						
-Cre07.g323250			Mitochondrion			
-Cre07.g318900						DNJ2
-Cre07.g339900	GMM:30.2.20;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.wheat LRK10 like;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK5
-Cre07.g336850						
-Cre07.g325719						
-Cre07.g317650				GO:0016758;GO:0008152	"transferase activity, transferring hexosyl groups;metabolic process"	
-Cre07.g357000			Chloroplast			
-Cre07.g354900						
-Cre07.g351850	GMM:29.4	protein.postranslational modification		GO:0008080	N-acetyltransferase activity	
-Cre07.g348150			Chloroplast			
-Cre07.g327687						
-Cre07.g343750			Chloroplast			
-Cre07.g324600	GMM:31.4	cell.vesicle transport		GO:0015031;GO:0008565	protein transport;protein transporter activity	AP2S2
-Cre07.g353850			Mitochondrion			
-Cre07.g340250	GMM:30.2.8.2;GMM:30.2.20;GMM:29.4.1.57;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 2;signalling.receptor kinases.wheat LRK10 like;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre07.g329850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	KCN5
-Cre07.g355466	GMM:28.2;GMM:28.1;GMM:27.3.34	DNA.repair;DNA.synthesis/chromatin structure;RNA.regulation of transcription.orphan family	Mitochondrion			AGE2
-Cre07.g315550			Mitochondrion	GO:0005524	ATP binding	
-Cre07.g336400			Mitochondrion			
-Cre07.g319310						
-Cre07.g323450	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre07.g353555				GO:0046983	protein dimerization activity	
-Cre07.g350800			Mitochondrion			
-Cre07.g350750	GMM:1.1.40	PS.lightreaction.cyclic electron flow-chlororespiration		GO:0055114;GO:0009916	oxidation-reduction process;alternative oxidase activity	PTOX1
-Cre07.g321100				GO:0016773;GO:0005975	"phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process"	
-Cre07.g322700						
-Cre07.g331300	GMM:2.1.2.1	major CHO metabolism.synthesis.starch.AGPase	Chloroplast	GO:0016779;GO:0009058	nucleotidyltransferase activity;biosynthetic process	AGP3
-Cre07.g338200				GO:0005515	protein binding	
-Cre07.g323950	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PHX23
-Cre07.g357250			Secretory pathway			
-Cre07.g333640			Secretory pathway			
-Cre07.g334300	GMM:33.99;GMM:3.5;GMM:1.1.1.1	development.unspecified;minor CHO metabolism.others;PS.lightreaction.photosystem II.LHC-II		GO:0055085;GO:0016020;GO:0006811;GO:0005515;GO:0005216	transmembrane transport;membrane;ion transport;protein binding;ion channel activity	TRP6
-Cre07.g352400	GMM:3.4.1;GMM:28.1	minor CHO metabolism.myo-inositol.poly-phosphatases;DNA.synthesis/chromatin structure				
-Cre07.g343600	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
-Cre07.g340950			Chloroplast			AXL4
-Cre07.g350250			Secretory pathway			
-Cre07.g344668			Secretory pathway	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre07.g339300	GMM:29.6.2.6	protein.folding.chaperones and co-chaperones.co-chaperones	Chloroplast	GO:0008270	zinc ion binding	HEP3
-Cre07.g330200	GMM:31.6.1.5.1	cell.motility.eukaryotes.radial spoke.head	Secretory pathway			RSP9
-Cre07.g323600			Chloroplast			
-Cre07.g330250	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0015979;GO:0009538;GO:0009522	photosynthesis;photosystem I reaction center;photosystem I	PSAH
-Cre07.g335650			Secretory pathway			
-Cre07.g345900	GMM:27.1.19	RNA.processing.ribonucleases		GO:0016891;GO:0006396;GO:0005524;GO:0004525;GO:0003723;GO:0003676	"endoribonuclease activity, producing 5'-phosphomonoesters;RNA processing;ATP binding;ribonuclease III activity;RNA binding;nucleic acid binding"	DCL3
-Cre11.g481250			Chloroplast			
-Cre11.g482400						
-Cre11.g480100			Chloroplast			
-Cre11.g467550	GMM:23.1.1.3	nucleotide metabolism.synthesis.pyrimidine.dihydroorotase	Chloroplast	GO:0019856;GO:0016787;GO:0004151	pyrimidine nucleobase biosynthetic process;hydrolase activity;dihydroorotase activity	
-Cre11.g467608	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP12
-Cre11.g467728				GO:0004519;GO:0003676	endonuclease activity;nucleic acid binding	
-Cre11.g475450			Secretory pathway	GO:0008242;GO:0005515	omega peptidase activity;protein binding	
-Cre11.g477800						HDA10
-Cre11.g467634	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g478750	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs	Secretory pathway	GO:0006457	protein folding	FKB15-2
-Cre11.g467682			Chloroplast			
-Cre11.g467560						DYX1C1
-Cre11.g478450			Secretory pathway			
-Cre11.g467717	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Chloroplast	GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	
-Cre11.g467624			Mitochondrion			
-Cre11.g481050	GMM:27.3.53	RNA.regulation of transcription.high mobility group family (HMG)				
-Cre11.g480050				GO:0005515	protein binding	EXN14
-Cre11.g467541						
-Cre11.g480132			Secretory pathway			
-Cre11.g467743				GO:0008270	zinc ion binding	
-Cre11.g479050	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs	Secretory pathway	GO:0006457	protein folding	FKB15-1
-Cre11.g467778	GMM:23.3.1.3	nucleotide metabolism.salvage.phosphoribosyltransferases.uracil phosphoribosyltransferase (UPP)	Chloroplast			
-Cre11.g481450	GMM:1.1.4.9;GMM:1.1.4	PS.lightreaction.ATP synthase.subunit B (ATPX);PS.lightreaction.ATP synthase	Chloroplast	GO:0045263;GO:0015986;GO:0015078	"proton-transporting ATP synthase complex, coupling factor F(o);ATP synthesis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPG
-Cre11.g467642	GMM:2.1	major CHO metabolism.synthesis	Secretory pathway			
-Cre11.g467572			Secretory pathway			
-Cre11.g478350			Secretory pathway			
-Cre11.g467737			Chloroplast			
-Cre11.g475950	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	HLM16
-Cre11.g478050			Secretory pathway			
-Cre11.g467706	GMM:27.3.55	RNA.regulation of transcription.HDA	Mitochondrion			
-Cre11.g469300			Mitochondrion			
-Cre11.g480750				GO:0016787	hydrolase activity	
-Cre11.g469224			Chloroplast	GO:0016791	phosphatase activity	
-Cre11.g468359			Secretory pathway			GAS31
-Cre11.g467544	GMM:16.1.2.7	secondary metabolism.isoprenoids.mevalonate pathway.isopentenyl pyrophosphate:dimethyllallyl pyrophosphate isomerase		GO:0016787;GO:0008299;GO:0004452	hydrolase activity;isoprenoid biosynthetic process;isopentenyl-diphosphate delta-isomerase activity	IDI1
-Cre11.g467656			Secretory pathway			
-Cre11.g480502						
-Cre11.g481093						
-Cre11.g467551			Secretory pathway			
-Cre11.g467616			Chloroplast			IFT56
-Cre11.g483400	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG10
-Cre11.g467738			Mitochondrion	GO:0016021	integral component of membrane	
-Cre11.g467582						FAP306
-Cre11.g467786			Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
-Cre11.g481833						
-Cre11.g482250			Secretory pathway			
-Cre11.g479750	GMM:29.3.4.99;GMM:29.3.3	protein.targeting.secretory pathway.unspecified;protein.targeting.chloroplast	Chloroplast	GO:0048500;GO:0008312;GO:0006614;GO:0005525;GO:0003924	signal recognition particle;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane;GTP binding;GTPase activity	SRP54L
-Cre11.g475100				GO:0008080	N-acetyltransferase activity	
-Cre11.g468850						FAP152
-Cre11.g467725			Secretory pathway			
-Cre11.g467677			Secretory pathway	GO:0016021;GO:0004252	integral component of membrane;serine-type endopeptidase activity	
-Cre11.g467537						PPR12
-Cre11.g467581	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre11.g482626						
-Cre11.g478456			Secretory pathway			
-Cre11.g476950			Secretory pathway			
-Cre11.g467648	GMM:29.5	protein.degradation	Chloroplast	GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL3
-Cre11.g467730			Chloroplast			
-Cre11.g467702			Chloroplast			
-Cre11.g480700				GO:0055114	oxidation-reduction process	
-Cre11.g469000						FAP107
-Cre11.g477625	GMM:19.10;GMM:19.1	tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase	Chloroplast	GO:0016851;GO:0009058	magnesium chelatase activity;biosynthetic process	CHLH2
-Cre11.g480150	GMM:29.2.1.2.1.14	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S14		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPS14
-Cre11.g467693			Chloroplast			
-Cre11.g478700	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs	Secretory pathway	GO:0006457	protein folding	FKB15-4
-Cre11.g468650	GMM:16.1	secondary metabolism.isoprenoids				
-Cre11.g467775			Chloroplast			
-Cre11.g467640						
-Cre11.g474900			Chloroplast			
-Cre11.g478300				GO:0032259;GO:0008168	methylation;methyltransferase activity	SOM4
-Cre11.g480060	GMM:28.99	DNA.unspecified				
-Cre11.g467579	GMM:28.2	DNA.repair				CSC6
-Cre11.g479150			Mitochondrion			
-Cre11.g467696			Secretory pathway			
-Cre11.g467900			Secretory pathway			
-Cre11.g483033	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast			
-Cre11.g482900	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAB20
-Cre11.g467744						
-Cre11.g467652			Mitochondrion			
-Cre11.g467718	GMM:20.2.1;GMM:15.2	"stress.abiotic.heat;metal handling.binding, chelation and storage"	Mitochondrion	GO:0051259;GO:0051087;GO:0006457	protein oligomerization;chaperone binding;protein folding	HSC20A
-Cre11.g467571						
-Cre11.g467713	GMM:29.4	protein.postranslational modification				
-Cre11.g481500	GMM:13.1.7.5;GMM:13.1.7.4;GMM:13.1.7	amino acid metabolism.synthesis.histidine.phosphoribosylformimino-5-aminoimidazole carboxamide ribotide isomerase (BBM II);amino acid metabolism.synthesis.histidine.bifunctional phosphoribosyl-ATP pyrophosphatase / phosphoribosyl-AMP cyclohydrolase;amino acid metabolism.synthesis.histidine	Chloroplast	GO:0000105	histidine biosynthetic process	HIS7
-Cre11.g476400	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure	Mitochondrion	GO:0006284	base-excision repair	MAG1
-Cre11.g479100			Chloroplast			
-Cre11.g483150						
-Cre11.g467591	GMM:28.2	DNA.repair		GO:0003676	nucleic acid binding	
-Cre11.g468900						FAP404
-Cre11.g467588	GMM:30.2.24;GMM:29.4	signalling.receptor kinases.S-locus glycoprotein like;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g467794						
-Cre11.g467752						
-Cre11.g467565						
-Cre11.g475700						
-Cre11.g467615			Secretory pathway	GO:0005509	calcium ion binding	
-Cre11.g467670			Secretory pathway			
-Cre11.g482001	GMM:31.1	cell.organisation	Mitochondrion			FAP208
-Cre11.g468368			Mitochondrion			
-Cre11.g467758						
-Cre11.g467736						
-Cre11.g468356			Mitochondrion	GO:0006606	protein import into nucleus	
-Cre11.g467602						
-Cre11.g467621						CSU7
-Cre11.g467627	GMM:17.6.1.4;GMM:17.3.1.1.2	hormone metabolism.gibberelin.synthesis-degradation.ent-kaurenoic acid hydroxylase/oxygenase;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.DWF4	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
-Cre11.g476050	GMM:31.6.1.4.2.1;GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC15
-Cre11.g475050						
-Cre11.g482600			Mitochondrion			
-Cre11.g478650			Secretory pathway			
-Cre11.g467705	GMM:34.1	transport.p- and v-ATPases		GO:0033179;GO:0015991;GO:0015078	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	
-Cre11.g476900						
-Cre11.g467561						FAP222
-Cre11.g467641			Mitochondrion			
-Cre11.g467720	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre11.g469150			Chloroplast			
-Cre11.g477700						
-Cre11.g479700						DFO1
-Cre11.g468250			Chloroplast			
-Cre11.g467664			Secretory pathway			
-Cre11.g467753	GMM:19.21	tetrapyrrole synthesis.heme oxygenase		GO:0055114;GO:0006788;GO:0004392	oxidation-reduction process;heme oxidation;heme oxygenase (decyclizing) activity	HMO2
-Cre11.g467594	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
-Cre11.g467542			Mitochondrion			
-Cre11.g481082			Secretory pathway			
-Cre11.g480250	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Chloroplast	GO:0006629	lipid metabolic process	
-Cre11.g467635	GMM:31.6.1.11	cell.motility.eukaryotes.other				MOT22
-Cre11.g467583	GMM:29.4	protein.postranslational modification				
-Cre11.g469800						
-Cre11.g467701			Mitochondrion			
-Cre11.g479650	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0016567;GO:0005515;GO:0004842	protein ubiquitination;protein binding;ubiquitin-protein transferase activity	
-Cre11.g467710			Secretory pathway			VSP1
-Cre11.g475300						
-Cre11.g474850	GMM:29.1.30	protein.aa activation.pseudouridylate synthase		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS17
-Cre11.g482850			Chloroplast	GO:0060236;GO:0032147;GO:0005874;GO:0005819	regulation of mitotic spindle organization;activation of protein kinase activity;microtubule;spindle	
-Cre11.g467654	GMM:27.1.2	RNA.processing.RNA helicase		GO:0004386	helicase activity	
-Cre11.g475750			Secretory pathway			
-Cre11.g467531						
-Cre11.g469187			Chloroplast			
-Cre11.g468600			Mitochondrion			
-Cre11.g478600			Chloroplast			
-Cre11.g468800			Chloroplast			PHC71
-Cre11.g475200						
-Cre11.g467590	GMM:29.4	protein.postranslational modification	Chloroplast			
-Cre11.g474700						
-Cre11.g467653			Secretory pathway			
-Cre11.g475000	GMM:31.6.1.3.2.1	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A				IFT121
-Cre11.g481700	GMM:27.1.1	RNA.processing.splicing		GO:0006396;GO:0003723	RNA processing;RNA binding	
-Cre11.g467792						
-Cre11.g467708						
-Cre11.g467617	GMM:7.1.3	OPP.oxidative PP.6-phosphogluconate dehydrogenase		GO:0051287	NAD binding	LCI19
-Cre11.g467678	GMM:31.9;GMM:23.1.2;GMM:17.4.2	cell.eyespot;nucleotide metabolism.synthesis.purine;hormone metabolism.cytokinin.signal transduction	Chloroplast	GO:0035556;GO:0016849;GO:0016020;GO:0009190;GO:0007165;GO:0000160;GO:0000155	intracellular signal transduction;phosphorus-oxygen lyase activity;membrane;cyclic nucleotide biosynthetic process;signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	COP6
-Cre11.g467699	GMM:33.99;GMM:31.4;GMM:31.2;GMM:29.3.4.99;GMM:29.3.4	development.unspecified;cell.vesicle transport;cell.division;protein.targeting.secretory pathway.unspecified;protein.targeting.secretory pathway		GO:0016192;GO:0006904	vesicle-mediated transport;vesicle docking involved in exocytosis	SEC1
-Cre11.g469750			Secretory pathway			
-Cre11.g467644	GMM:29.6.2.5;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP100s;stress.abiotic.heat	Cytosol	GO:0019538;GO:0016887;GO:0005524	protein metabolic process;ATPase activity;ATP binding	CLPB1
-Cre11.g481951			Chloroplast			
-Cre11.g477900			Secretory pathway			
-Cre11.g468063			Chloroplast			
-Cre11.g479350						
-Cre11.g479200				GO:0016192;GO:0006904	vesicle-mediated transport;vesicle docking involved in exocytosis	
-Cre11.g467618			Mitochondrion			
-Cre11.g482101			Secretory pathway			
-Cre11.g480400	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC39
-Cre11.g467800			Secretory pathway			
-Cre11.g483450			Mitochondrion			
-Cre11.g482676						
-Cre11.g467756	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP5
-Cre11.g467796						
-Cre11.g467524				GO:0016787	hydrolase activity	
-Cre11.g467732			Mitochondrion			
-Cre11.g467665				GO:0005515	protein binding	
-Cre11.g476550	GMM:11.8.7	"lipid metabolism.exotics (steroids, squalene etc).trans-2-enoyl-CoA reductase (NADPH)"		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH11
-Cre11.g480600						
-Cre11.g475500			Mitochondrion			
-Cre11.g478025						
-Cre11.g467553	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0005525	GTP binding	
-Cre11.g467788			Secretory pathway			
-Cre11.g481350						
-Cre11.g476250	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre11.g476700	GMM:26.13	misc.acid and other phosphatases	Secretory pathway	GO:0016787	hydrolase activity	MPA9
-Cre11.g469375						
-Cre11.g467622	GMM:17.2.3	hormone metabolism.auxin.induced-regulated-responsive-activated				
-Cre11.g467773			Chloroplast			
-Cre11.g478850			Chloroplast			
-Cre11.g467704						
-Cre11.g467687			Mitochondrion			
-Cre11.g477150						
-Cre11.g467609	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	
-Cre11.g467668	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOB22
-Cre11.g481115			Chloroplast			
-Cre11.g467584	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g476850	GMM:31.6.1.7	cell.motility.eukaryotes.dynein regulatory complex (DRC)		GO:0048870;GO:0031514	cell motility;motile cilium	DRC4
-Cre11.g467529			Chloroplast			
-Cre11.g467663			Mitochondrion	GO:0005515	protein binding	
-Cre11.g467760						
-Cre11.g482483	GMM:28.99	DNA.unspecified		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
-Cre11.g468365						
-Cre11.g467680	GMM:28.1	DNA.synthesis/chromatin structure				
-Cre11.g476000						
-Cre11.g467757						
-Cre11.g476750	GMM:7.3;GMM:1.1.5.3	OPP.electron transfer;PS.lightreaction.other electron carrier (ox/red).ferredoxin reductase	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	FNR1
-Cre11.g477250						
-Cre11.g467692			Chloroplast			
-Cre11.g467532						
-Cre11.g467655	GMM:29.5.5;GMM:29.3.4.99;GMM:29.3.2	protein.degradation.serine protease;protein.targeting.secretory pathway.unspecified;protein.targeting.mitochondria	Mitochondrion	GO:0016020;GO:0008236;GO:0006508	membrane;serine-type peptidase activity;proteolysis	IMP1
-Cre11.g467731			Mitochondrion			
-Cre11.g467715						
-Cre11.g467528	GMM:34.21	transport.calcium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV4
-Cre11.g479383			Secretory pathway			
-Cre11.g482841			Chloroplast			
-Cre11.g467595	GMM:35.1.19;GMM:3.3	not assigned.no ontology.C2 domain-containing protein;minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
-Cre11.g476650	GMM:2.2.2.9;GMM:2.1.2.4	major CHO metabolism.degradation.starch.limit dextrinase/pullulanase;major CHO metabolism.synthesis.starch.debranching	Chloroplast	GO:0030246;GO:0005975;GO:0004553;GO:0003824	"carbohydrate binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	PUL1
-Cre11.g467578	GMM:29.2.1.2.2.28	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L28		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL28
-Cre11.g477950	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification	Secretory pathway			
-Cre11.g467525				GO:0005515	protein binding	
-Cre11.g475150	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins				
-Cre11.g467707	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion	GO:0046961;GO:0046933;GO:0045261;GO:0015986	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;proton-transporting ATP synthase complex, catalytic core F(1);ATP synthesis coupled proton transport"	ATP4
-Cre11.g479250	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Secretory pathway			
-Cre11.g467626	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g481400	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g480000			Chloroplast	GO:0005515	protein binding	
-Cre11.g482450						
-Cre11.g467793						
-Cre11.g467742			Mitochondrion	GO:0008270	zinc ion binding	
-Cre11.g469600	GMM:27.3.55	RNA.regulation of transcription.HDA				HDA9
-Cre11.g467629	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified	Mitochondrion			
-Cre11.g481104				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g467530			Chloroplast			
-Cre11.g467780			Secretory pathway			
-Cre11.g467643						
-Cre11.g467552	GMM:4.2.4	glycolysis.plastid branch.phosphofructokinase (PFK)	Mitochondrion	GO:0006096;GO:0003872	glycolytic process;6-phosphofructokinase activity	
-Cre11.g479600	GMM:34.21;GMM:34.12	transport.calcium;transport.metal	Secretory pathway	GO:0055085;GO:0016021;GO:0007154	transmembrane transport;integral component of membrane;cell communication	CAX6
-Cre11.g478800						
-Cre11.g476800	GMM:29.2.1.1.3.2.15	protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L15	Mitochondrion	GO:0015934;GO:0006412;GO:0003735	large ribosomal subunit;translation;structural constituent of ribosome	MRPL15
-Cre11.g467785	GMM:27.3.55	RNA.regulation of transcription.HDA				
-Cre11.g467639						
-Cre11.g467632			Secretory pathway			
-Cre11.g467703						
-Cre11.g467689	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast	GO:0055114;GO:0051537;GO:0042651;GO:0016679;GO:0016491;GO:0009496	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;thylakoid membrane;oxidoreductase activity, acting on diphenols and related substances as donors;oxidoreductase activity;plastoquinol--plastocyanin reductase activity"	PETC
-Cre11.g474750			Secretory pathway	GO:0016757;GO:0016021	"transferase activity, transferring glycosyl groups;integral component of membrane"	
-Cre11.g467600						
-Cre11.g479950	GMM:34.2	transport.sugars	Secretory pathway			CGL7
-Cre11.g467500						
-Cre11.g478000			Chloroplast			
-Cre11.g469350			Mitochondrion	GO:0006464	cellular protein modification process	TTL12
-Cre11.g482650			Mitochondrion			EZY3
-Cre11.g468362						
-Cre11.g467722						
-Cre11.g467675			Chloroplast			
-Cre11.g478240	GMM:30.11.1	signalling.light.COP9 signalosome		GO:0005515	protein binding	
-Cre11.g467850	GMM:11.3	lipid metabolism.phospholipid synthesis		GO:0016746;GO:0008152;GO:0006644	"transferase activity, transferring acyl groups;metabolic process;phospholipid metabolic process"	PGA6
-Cre11.g483100	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g467769			Chloroplast			
-Cre11.g474800	GMM:19.3;GMM:13.2.2.3;GMM:13.1.2.2.10	tetrapyrrole synthesis.GSA;amino acid metabolism.degradation.glutamate family.arginine;amino acid metabolism.synthesis.glutamate family.proline.ornithine aminotransferase	Mitochondrion	GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	OTA1
-Cre11.g467548			Secretory pathway			
-Cre11.g467716			Chloroplast			
-Cre11.g467776			Mitochondrion			
-Cre11.g480900						
-Cre11.g467538	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX8
-Cre11.g475800			Mitochondrion			
-Cre11.g481375						
-Cre11.g476200				GO:0046872	metal ion binding	
-Cre11.g483351			Secretory pathway			PHC44
-Cre11.g480725			Chloroplast			
-Cre11.g467540	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX7
-Cre11.g476500	GMM:29.3.3	protein.targeting.chloroplast	Mitochondrion	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	
-Cre11.g475550						UMM10
-Cre11.g468200			Secretory pathway			
-Cre11.g477100						FAP97
-Cre11.g479300	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Chloroplast	GO:0046872;GO:0005524	metal ion binding;ATP binding	
-Cre11.g467661						
-Cre11.g467768	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family				
-Cre11.g467734						
-Cre11.g467563			Mitochondrion			
-Cre11.g469033			Mitochondrion			
-Cre11.g467576						
-Cre11.g467662			Secretory pathway			
-Cre11.g482050						
-Cre11.g481650			Chloroplast			
-Cre11.g481866	GMM:31.1	cell.organisation	Secretory pathway			
-Cre11.g475400			Secretory pathway	GO:0005515	protein binding	
-Cre11.g468353			Chloroplast	GO:0008076;GO:0006813;GO:0005249	voltage-gated potassium channel complex;potassium ion transport;voltage-gated potassium channel activity	
-Cre11.g476300						
-Cre11.g467764	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase				
-Cre11.g467754	GMM:29.7	protein.glycosylation	Secretory pathway			
-Cre11.g478128	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre11.g467577	GMM:27.3.24	RNA.regulation of transcription.MADS box transcription factor family		GO:0046983;GO:0003677	protein dimerization activity;DNA binding	
-Cre11.g467555				GO:0005515	protein binding	
-Cre11.g467526	GMM:26.24	misc.GCN5-related N-acetyltransferase	Chloroplast	GO:0008080	N-acetyltransferase activity	
-Cre11.g467659				GO:0016592;GO:0006357;GO:0001104	mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity	
-Cre11.g467400			Chloroplast			
-Cre11.g467781	GMM:34.16;GMM:29.2.2.1	transport.ABC transporters and multidrug resistance systems;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0016887;GO:0005524	ATPase activity;ATP binding	FAP151
-Cre11.g482700			Chloroplast			
-Cre11.g467619			Chloroplast			
-Cre11.g467683			Secretory pathway			
-Cre11.g467539	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX6
-Cre11.g469450				GO:0005737;GO:0005634	cytoplasm;nucleus	CGL124
-Cre11.g467739				GO:0008017	microtubule binding	IFT54
-Cre11.g467586	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g467545						
-Cre11.g480451	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC42
-Cre11.g480800				GO:0032040	small-subunit processome	
-Cre11.g467638	GMM:2.1	major CHO metabolism.synthesis	Secretory pathway			
-Cre11.g475900	GMM:28.1	DNA.synthesis/chromatin structure				
-Cre11.g479900			Mitochondrion			
-Cre11.g467650	GMM:27.1	RNA.processing				
-Cre11.g467772	GMM:31.3	cell.cycle	Mitochondrion			CYCD1
-Cre11.g467593	GMM:35.1.19;GMM:3.3	not assigned.no ontology.C2 domain-containing protein;minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
-Cre11.g467598						
-Cre11.g467695						
-Cre11.g477200	GMM:16.8.5.1	secondary metabolism.flavonoids.isoflavonols.isoflavone reductase		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	IFR1
-Cre11.g468377	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005515	protein binding	
-Cre11.g472226	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre11.g468550	GMM:34.1	transport.p- and v-ATPases		GO:0016820;GO:0016471;GO:0015992	"hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;vacuolar proton-transporting V-type ATPase complex;proton transport"	ATPVG
-Cre11.g482750						
-Cre11.g467568	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre11.g468380						
-Cre11.g467610	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525;GO:0003924	GTP binding;GTPase activity	
-Cre11.g467547	GMM:29.1.18;GMM:29.1.17;GMM:19.1	protein.aa activation.glutamine-tRNA ligase;protein.aa activation.glutamate-tRNA ligase;tetrapyrrole synthesis.glu-tRNA synthetase	Secretory pathway	GO:0043039;GO:0016876;GO:0006418;GO:0005737;GO:0005524;GO:0004812;GO:0000166	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"	
-Cre11.g481126	GMM:21.99	redox.misc	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre11.g467690				GO:0005515	protein binding	
-Cre11.g467559						
-Cre11.g480300			Mitochondrion			
-Cre11.g468100	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE30
-Cre11.g478950	GMM:27.1.1	RNA.processing.splicing	Chloroplast	GO:0032040;GO:0006364	small-subunit processome;rRNA processing	
-Cre11.g467779	GMM:29.7.8;GMM:29.7.5	"protein.glycosylation.alpha-1,6-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase (GnTII);protein.glycosylation.alpha-1,3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase (GnTI)"	Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
-Cre11.g467790			Secretory pathway			
-Cre11.g467533	GMM:29.4	protein.postranslational modification	Chloroplast			
-Cre11.g467671			Secretory pathway			
-Cre11.g483301						
-Cre11.g467723	GMM:11.1.3	lipid metabolism.FA synthesis and FA elongation.ketoacyl ACP synthase	Chloroplast			KAS1
-Cre11.g468000			Secretory pathway			
-Cre11.g467676			Mitochondrion			
-Cre11.g476376			Chloroplast			FAP221
-Cre11.g467585				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g467685						
-Cre11.g479416	GMM:26.16	misc.myrosinases-lectin-jacalin				
-Cre11.g480950			Secretory pathway			
-Cre11.g467747			Chloroplast			
-Cre11.g467527	GMM:26.10;GMM:26.1	misc.cytochrome P450;misc.misc2		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
-Cre11.g467684						
-Cre11.g467673	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Mitochondrion	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE24
-Cre11.g467450				GO:0032259;GO:0008168	methylation;methyltransferase activity	SOM3
-Cre11.g467791						
-Cre11.g467721			Secretory pathway			
-Cre11.g478528			Mitochondrion			
-Cre11.g481750			Secretory pathway			GAS30
-Cre11.g475350			Mitochondrion	GO:0051536;GO:0016226;GO:0005737	iron-sulfur cluster binding;iron-sulfur cluster assembly;cytoplasm	
-Cre11.g467767	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I		GO:0016020;GO:0009055;GO:0008137	membrane;electron carrier activity;NADH dehydrogenase (ubiquinone) activity	NUO13
-Cre11.g467562						
-Cre11.g467628						
-Cre11.g467688	GMM:26.1;GMM:23.2;GMM:17.1.1.1.12;GMM:17.1.1	misc.misc2;nucleotide metabolism.degradation;hormone metabolism.abscisic acid.synthesis-degradation.synthesis.abscisic aldehyde oxidase;hormone metabolism.abscisic acid.synthesis-degradation		GO:0055114;GO:0051536;GO:0046872;GO:0016491;GO:0009055	oxidation-reduction process;iron-sulfur cluster binding;metal ion binding;oxidoreductase activity;electron carrier activity	
-Cre11.g474950	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Secretory pathway			
-Cre11.g479450			Secretory pathway			
-Cre11.g467620						
-Cre11.g467658			Chloroplast			
-Cre11.g467733						
-Cre11.g467782						
-Cre11.g469100			Chloroplast			
-Cre11.g467633	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast	GO:0051539;GO:0051536;GO:0009451;GO:0003824	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;RNA modification;catalytic activity"	
-Cre11.g475576						
-Cre11.g467575	GMM:29.6.2.5;GMM:29.5.5;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease;stress.abiotic.heat	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	CLPB4
-Cre11.g482200						FBB9
-Cre11.g468075						
-Cre11.g467611			Mitochondrion			
-Cre11.g469400	GMM:31.9	cell.eyespot		GO:0000160	phosphorelay signal transduction system	HKR4
-Cre11.g478156	GMM:31.4	cell.vesicle transport		GO:0030131;GO:0016192;GO:0006886	clathrin adaptor complex;vesicle-mediated transport;intracellular protein transport	AP1B1
-Cre11.g479850	GMM:31.3.1;GMM:31.3;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;cell.cycle;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0003676;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;nucleic acid binding;protein peptidyl-prolyl isomerization	CYN59
-Cre11.g467558						
-Cre11.g467554				GO:0016021;GO:0004252	integral component of membrane;serine-type endopeptidase activity	
-Cre11.g475850	GMM:29.6;GMM:1.1.2.3	protein.folding;PS.lightreaction.photosystem I.biogenesis	Chloroplast.Stroma.Thylakoid.Lumen			ZNJ1
-Cre11.g467569	GMM:1.1.4.7;GMM:1.1.4	PS.lightreaction.ATP synthase.delta chain;PS.lightreaction.ATP synthase	Chloroplast	GO:0046933;GO:0015986	"proton-transporting ATP synthase activity, rotational mechanism;ATP synthesis coupled proton transport"	ATPD
-Cre11.g467587						
-Cre11.g467771						
-Cre11.g474650						
-Cre11.g476100			Mitochondrion			MCD1
-Cre11.g478966	GMM:27.1.1	RNA.processing.splicing		GO:0032040;GO:0006364	small-subunit processome;rRNA processing	
-Cre11.g468383			Chloroplast			
-Cre11.g468500	GMM:26.13	misc.acid and other phosphatases	Secretory pathway	GO:0016787	hydrolase activity	MPA8
-Cre11.g467719			Mitochondrion			
-Cre11.g467787						
-Cre11.g482800	GMM:29.4.1	protein.postranslational modification.kinase	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre11.g480650	GMM:33.99;GMM:26.22	development.unspecified;misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre11.g467604						
-Cre11.g467741			Chloroplast			
-Cre11.g467570			Mitochondrion			
-Cre11.g477400	GMM:27.3.5;GMM:23.1.2	RNA.regulation of transcription.ARR;nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190;GO:0000160	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;phosphorelay signal transduction system	CYG43
-Cre11.g481313			Secretory pathway			
-Cre11.g467660	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG17
-Cre11.g467691			Secretory pathway			
-Cre11.g476325	GMM:4.1.15	glycolysis.cytosolic branch.phospho-enol-pyruvate carboxylase (PEPC)	Chloroplast	GO:0015977;GO:0008964;GO:0006099	carbon fixation;phosphoenolpyruvate carboxylase activity;tricarboxylic acid cycle	
-Cre11.g469650			Secretory pathway			
-Cre11.g477450	GMM:29.4.1	protein.postranslational modification.kinase		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre11.g467748			Mitochondrion			
-Cre11.g467774			Secretory pathway			
-Cre11.g467603			Chloroplast			
-Cre11.g480551						
-Cre11.g467724			Mitochondrion			
-Cre11.g467645						
-Cre11.g467669						
-Cre11.g467534						
-Cre11.g482550			Mitochondrion			
-Cre11.g467694			Chloroplast			
-Cre11.g467612	GMM:9.99	mitochondrial electron transport / ATP synthesis.unspecified	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre11.g467755	GMM:30.11;GMM:26.22	signalling.light;misc.short chain dehydrogenase/reductase (SDR)				
-Cre11.g467592	GMM:34.3	transport.amino acids		GO:0016020;GO:0015171;GO:0003333	membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport	
-Cre11.g476600			Secretory pathway	GO:0055114;GO:0050660;GO:0016491	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity	
-Cre11.g476450			Mitochondrion	GO:0008168	methyltransferase activity	
-Cre11.g483000	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g467697						
-Cre11.g479500	GMM:29.2.1.1.1.2.4	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L4	Chloroplast	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	PRPL4
-Cre11.g467566						
-Cre11.g482300	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	protein binding	FAP305
-Cre11.g467614			Secretory pathway			
-Cre11.g478184			Secretory pathway	GO:0046355;GO:0004567	mannan catabolic process;beta-mannosidase activity	
-Cre11.g467783						
-Cre11.g467636	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g467726			Mitochondrion	GO:0016021;GO:0006869;GO:0005319	integral component of membrane;lipid transport;lipid transporter activity	
-Cre11.g477000	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g467795	GMM:34.21	transport.calcium		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	
-Cre11.g467762						
-Cre11.g479800	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
-Cre11.g481550	GMM:27.2	RNA.transcription				
-Cre11.g467630	GMM:29.3.3;GMM:26.8	"protein.targeting.chloroplast;misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Chloroplast	GO:0016884	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor"	AMI2
-Cre11.g481800	GMM:27.3.17	RNA.regulation of transcription.CPP(Zn) CPP1-related transcription factor family				
-Cre11.g467789			Secretory pathway			
-Cre11.g477350						
-Cre11.g467729			Mitochondrion			
-Cre11.g467667			Secretory pathway			
-Cre11.g467674			Secretory pathway			
-Cre11.g468371			Chloroplast			
-Cre11.g467749			Chloroplast			
-Cre11.g477750			Secretory pathway			
-Cre11.g467557	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				
-Cre11.g467950			Mitochondrion			FAP383
-Cre11.g467745	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007020;GO:0005856;GO:0005815;GO:0000922;GO:0000226	microtubule nucleation;cytoskeleton;microtubule organizing center;spindle pole;microtubule cytoskeleton organization	GCP3
-Cre11.g467522			Secretory pathway			
-Cre11.g467646						
-Cre11.g476026			Mitochondrion			
-Cre11.g478982			Mitochondrion			
-Cre11.g467751	GMM:27.3.55	RNA.regulation of transcription.HDA				
-Cre11.g467714			Mitochondrion			
-Cre11.g468350			Mitochondrion			
-Cre11.g467777	GMM:23.3.1.3	nucleotide metabolism.salvage.phosphoribosyltransferases.uracil phosphoribosyltransferase (UPP)				
-Cre11.g467605						
-Cre11.g467711	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0017038;GO:0016020;GO:0005524	protein import;membrane;ATP binding	
-Cre11.g475600						FAP362
-Cre11.g468400			Chloroplast			
-Cre11.g467535	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Mitochondrion			MCP26
-Cre11.g483200			Mitochondrion			
-Cre11.g482150			Secretory pathway			
-Cre11.g467649			Mitochondrion	GO:0004672	protein kinase activity	OPR107
-Cre11.g467770	GMM:4.1.11;GMM:1.3.3	glycolysis.cytosolic branch.3-phosphoglycerate kinase (PGK);PS.calvin cycle.phosphoglycerate kinase	Chloroplast	GO:0006096;GO:0004618	glycolytic process;phosphoglycerate kinase activity	PGK1
-Cre11.g467763						
-Cre11.g467679			Mitochondrion			
-Cre11.g480116						
-Cre11.g467766				GO:0008452;GO:0006396	RNA ligase activity;RNA processing	
-Cre11.g467727			Secretory pathway	GO:0004519;GO:0003676	endonuclease activity;nucleic acid binding	
-Cre11.g468300	GMM:30.5;GMM:3.5;GMM:29.3.4.99	signalling.G-proteins;minor CHO metabolism.others;protein.targeting.secretory pathway.unspecified				SAR1
-Cre11.g468450	GMM:31.6.1.4.2.1;GMM:31.6.1.2;GMM:31.6.1.1;GMM:31.1;GMM:28.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.deflagellation;cell.motility.eukaryotes.basal bodies;cell.organisation;DNA.synthesis/chromatin structure				DLE2
-Cre11.g467574	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion			
-Cre11.g467750			Mitochondrion			
-Cre11.g481200	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH6
-Cre11.g477500			Chloroplast			
-Cre11.g467567	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin				UBQ1
-Cre11.g468700	GMM:18	Co-factor and vitamine metabolism	Chloroplast			CPLD65
-Cre11.g480200						
-Cre11.g467597	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre11.g467672	GMM:20.1.7;GMM:20.1;GMM:2.1	stress.biotic.PR-proteins;stress.biotic;major CHO metabolism.synthesis	Chloroplast			
-Cre11.g477050						
-Cre11.g469550			Chloroplast			
-Cre11.g467631	GMM:29.5.7	protein.degradation.metalloprotease		GO:0008270;GO:0006508;GO:0004181	zinc ion binding;proteolysis;metallocarboxypeptidase activity	CGL90
-Cre11.g477550			Chloroplast			
-Cre11.g467698			Chloroplast			
-Cre11.g482351						
-Cre11.g478400						
-Cre11.g477850	GMM:27.3.73;GMM:27.3.70	RNA.regulation of transcription.Zn-finger(CCHC);RNA.regulation of transcription.silencing group		GO:0035194;GO:0003712	posttranscriptional gene silencing by RNA;transcription cofactor activity	TXC1
-Cre11.g467613			Secretory pathway			
-Cre11.g480350	GMM:29.4	protein.postranslational modification		GO:0055114	oxidation-reduction process	
-Cre11.g476351			Mitochondrion			
-Cre11.g467549			Chloroplast			
-Cre11.g481900	GMM:27.1	RNA.processing				
-Cre11.g467607						
-Cre11.g467546	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway			
-Cre11.g467686						
-Cre11.g467784						
-Cre11.g481300			Chloroplast			
-Cre11.g478626			Secretory pathway			
-Cre11.g478212						
-Cre11.g477733						
-Cre11.g482952			Secretory pathway			
-Cre11.g467759			Chloroplast			
-Cre11.g467681				GO:0035091	phosphatidylinositol binding	
-Cre11.g475432						
-Cre11.g476150	GMM:26.1	misc.misc2	Secretory pathway			
-Cre11.g482276						
-Cre11.g467761						
-Cre11.g477300	GMM:29.4	protein.postranslational modification	Mitochondrion			FAP8
-Cre11.g479000	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG7
-Cre11.g467601	GMM:35.1.19;GMM:3.3	not assigned.no ontology.C2 domain-containing protein;minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
-Cre11.g467637	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification				
-Cre11.g467564				GO:0005525	GTP binding	ARL16
-Cre11.g467666			Secretory pathway			LCI13
-Cre11.g467735			Secretory pathway			
-Cre11.g467623			Chloroplast			
-Cre11.g481150						
-Cre11.g468374	GMM:16.1	secondary metabolism.isoprenoids				
-Cre11.g483250			Secretory pathway			PHC45
-Cre11.g467657			Secretory pathway			
-Cre11.g467573	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA3
-Cre11.g481000	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre11.g478100						
-Cre11.g467523			Mitochondrion			
-Cre11.g467556			Mitochondrion			
-Cre11.g480851			Secretory pathway			RRA3
-Cre11.g467589	GMM:30.2.24;GMM:29.4	signalling.receptor kinases.S-locus glycoprotein like;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g467596						
-Cre11.g468950	GMM:9.5	mitochondrial electron transport / ATP synthesis.cytochrome c reductase		GO:0006122;GO:0005750;GO:0005743	"mitochondrial electron transport, ubiquinol to cytochrome c;mitochondrial respiratory chain complex III;mitochondrial inner membrane"	QCR9
-Cre11.g475650			Chloroplast			
-Cre11.g467700	GMM:19.7	tetrapyrrole synthesis.uroporphyrinogen decarboxylase	Chloroplast	GO:0006779;GO:0004853	porphyrin-containing compound biosynthetic process;uroporphyrinogen decarboxylase activity	UROD1
-Cre11.g467651	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity	
-Cre11.g467536	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre11.g468050	GMM:27.3.99;GMM:1.1.99	RNA.regulation of transcription.unclassified;PS.lightreaction.unspecified	Chloroplast.Stroma			VIPP2
-Cre11.g467606						
-Cre11.g467580						FAP370
-Cre11.g467647	GMM:33.99;GMM:30.11.1	development.unspecified;signalling.light.COP9 signalosome		GO:0005515	protein binding	
-Cre11.g467746				GO:0005515	protein binding	
-Cre11.g479550						
-Cre11.g467765						
-Cre11.g467599	GMM:35.1.19;GMM:3.3	not assigned.no ontology.C2 domain-containing protein;minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
-Cre11.g467709			Secretory pathway			
-Cre11.g468750			Chloroplast			CPLD48
-Cre11.g480079	GMM:28.99	DNA.unspecified				
-Cre11.g467543			Secretory pathway			
-Cre11.g475626			Mitochondrion			
-Cre11.g469500	GMM:30.99	signalling.unspecified		GO:0006355	"regulation of transcription, DNA-templated"	
-Cre11.g467350	GMM:11.9.4.2	lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH	Chloroplast	GO:0055114;GO:0006635;GO:0005777;GO:0003997;GO:0003995	oxidation-reduction process;fatty acid beta-oxidation;peroxisome;acyl-CoA oxidase activity;acyl-CoA dehydrogenase activity	
-Cre11.g468150			Secretory pathway			
-Cre11.g467740			Chloroplast			
-Cre11.g481600			Secretory pathway			GAS28
-Cre11.g467712			Mitochondrion	GO:2001070	starch binding	
-Cre14.g625550						
-Cre14.g632775	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	protein binding	
-Cre14.g608400			Chloroplast			
-Cre14.g619613	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0006338;GO:0000228	chromatin remodeling;nuclear chromosome	
-Cre14.g626500				GO:0005515	protein binding	
-Cre14.g618400	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
-Cre14.g617800	GMM:9.1.2;GMM:34.99	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;transport.misc	Secretory pathway			
-Cre14.g616100	GMM:29.6.3.1;GMM:29.6	protein.folding.immunophilins (IMM).FKBPs;protein.folding		GO:0006457	protein folding	FKB53
-Cre14.g617550	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm				DLE3
-Cre14.g618200						
-Cre14.g617200	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase				RLS7
-Cre14.g631550			Chloroplast			
-Cre14.g619950						
-Cre14.g615100	GMM:29.4;GMM:27.3.67	protein.postranslational modification;RNA.regulation of transcription.putative transcription regulator		GO:0055114;GO:0033743;GO:0030091;GO:0016671;GO:0006979	"oxidation-reduction process;peptide-methionine (R)-S-oxide reductase activity;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;response to oxidative stress"	MSR1
-Cre14.g610501	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast			
-Cre14.g624800						
-Cre14.g617100	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	SRS9
-Cre14.g619200						
-Cre14.g611800			Secretory pathway			
-Cre14.g613250						
-Cre14.g628237	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre14.g621501			Mitochondrion;Chloroplast			
-Cre14.g622850	GMM:28.2	DNA.repair				RAD51
-Cre14.g613000			Secretory pathway			
-Cre14.g630000			Chloroplast			KIR2
-Cre14.g610700			Secretory pathway			PHC72
-Cre14.g631150			Mitochondrion	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP14
-Cre14.g627200						
-Cre14.g623439			Mitochondrion			
-Cre14.g608800	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast			
-Cre14.g621200			Chloroplast			
-Cre14.g627455			Mitochondrion			
-Cre14.g630763						
-Cre14.g633150			Chloroplast			OPR66
-Cre14.g633250						
-Cre14.g623176			Chloroplast			
-Cre14.g630376			Mitochondrion			
-Cre14.g633425			Chloroplast			
-Cre14.g628350	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	HSLV1
-Cre14.g628900			Mitochondrion			
-Cre14.g625300	GMM:34.99;GMM:34.21;GMM:34.14	transport.misc;transport.calcium;transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	CAX3
-Cre14.g632600						
-Cre14.g608452	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
-Cre14.g613750			Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre14.g616450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG46
-Cre14.g609950			Mitochondrion			
-Cre14.g627576	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Chloroplast	GO:0030286;GO:0016887;GO:0007018;GO:0005858;GO:0003777;GO:0001539	dynein complex;ATPase activity;microtubule-based movement;axonemal dynein complex;microtubule motor activity;cilium or flagellum-dependent cell motility	DHC7
-Cre14.g633100			Chloroplast	GO:0006351;GO:0003714	"transcription, DNA-templated;transcription corepressor activity"	
-Cre14.g610200						
-Cre14.g630550	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0005515	protein binding	DEG1B
-Cre14.g612800			Chloroplast			
-Cre14.g628650	GMM:8.2.10	TCA / organic transformation.other organic acid transformations.malic	Mitochondrion	GO:0055114;GO:0051287;GO:0004471	oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity	MME4
-Cre14.g614100	GMM:29.7;GMM:26.1	protein.glycosylation;misc.misc2	Secretory pathway	GO:0018279;GO:0005789	protein N-linked glycosylation via asparagine;endoplasmic reticulum membrane	GTR26
-Cre14.g621751	GMM:10.1.1.20	cell wall.precursor synthesis.NDP sugar pyrophosphorylase.multiple NDP-Sugars		GO:0070569;GO:0008152	uridylyltransferase activity;metabolic process	USP
-Cre14.g626100			Mitochondrion			
-Cre14.g610750	GMM:34.99	transport.misc	Secretory pathway	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
-Cre14.g614200	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				
-Cre14.g612633						PHC58
-Cre14.g609400	GMM:29.4	protein.postranslational modification	Chloroplast			
-Cre14.g614600			Secretory pathway			
-Cre14.g627750			Mitochondrion			
-Cre14.g613350	GMM:29.5.11	protein.degradation.ubiquitin		GO:0006511	ubiquitin-dependent protein catabolic process	
-Cre14.g611100						FAP27
-Cre14.g627000			Chloroplast			
-Cre14.g615200						
-Cre14.g615650			Secretory pathway			
-Cre14.g624950	GMM:31.6.1.4.2.1;GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.inner arm	Secretory pathway	GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC10
-Cre14.g619300	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN16
-Cre14.g632050	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
-Cre14.g619550	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA7
-Cre14.g632350	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			FAP138
-Cre14.g611400						
-Cre14.g632839						
-Cre14.g611051						
-Cre14.g620000			Mitochondrion			
-Cre14.g609030	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"		GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	
-Cre14.g625600						FHL10
-Cre14.g633400						PGA7
-Cre14.g616400			Chloroplast			
-Cre14.g618300						
-Cre14.g631148			Mitochondrion	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
-Cre14.g630200						FAP312
-Cre14.g631850				GO:0016791;GO:0008152	phosphatase activity;metabolic process	
-Cre14.g618820						CSB57
-Cre14.g627850	GMM:13.1.3.5.2	amino acid metabolism.synthesis.aspartate family.lysine.dihydrodipicolinate reductase	Chloroplast	GO:0055114;GO:0009089;GO:0008839	oxidation-reduction process;lysine biosynthetic process via diaminopimelate;4-hydroxy-tetrahydrodipicolinate reductase	
-Cre14.g632783	GMM:31.3	cell.cycle		GO:0070985;GO:0019901;GO:0016538;GO:0006355;GO:0006351;GO:0000079	"TFIIK complex;protein kinase binding;cyclin-dependent protein serine/threonine kinase regulator activity;regulation of transcription, DNA-templated;transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	
-Cre14.g618611						
-Cre14.g622951			Mitochondrion			
-Cre14.g626550						
-Cre14.g620600	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC2
-Cre14.g631500						
-Cre14.g622270			Mitochondrion			
-Cre14.g633904			Chloroplast			
-Cre14.g620702	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC24
-Cre14.g628200	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre14.g629464	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB58
-Cre14.g610663	GMM:27.1.19	RNA.processing.ribonucleases				
-Cre14.g625251			Secretory pathway			CSV12
-Cre14.g627350			Secretory pathway	GO:0016021	integral component of membrane	
-Cre14.g613600	GMM:20.2.1	stress.abiotic.heat				HSP70H
-Cre14.g631050			Mitochondrion			
-Cre14.g627444			Mitochondrion			
-Cre14.g623200	GMM:29.5	protein.degradation		GO:0006508;GO:0005622;GO:0004177	proteolysis;intracellular;aminopeptidase activity	LAP1
-Cre14.g614000			Chloroplast			CGL17
-Cre14.g608500				GO:0005737	cytoplasm	
-Cre14.g610550	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre14.g615450			Mitochondrion			
-Cre14.g622700	GMM:34.8	transport.metabolite transporters at the envelope membrane				
-Cre14.g620350	GMM:18.3.1;GMM:18.3;GMM:18	Co-factor and vitamine metabolism.riboflavin.GTP cyclohydrolase II;Co-factor and vitamine metabolism.riboflavin;Co-factor and vitamine metabolism	Mitochondrion	GO:0009231;GO:0008686;GO:0003935	"riboflavin biosynthetic process;3,4-dihydroxy-2-butanone-4-phosphate synthase activity;GTP cyclohydrolase II activity"	GCH3
-Cre14.g631100	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0016020;GO:0008234;GO:0006508;GO:0005044	membrane;cysteine-type peptidase activity;proteolysis;scavenger receptor activity	SRR29
-Cre14.g625625	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion	GO:0016887;GO:0006508;GO:0005524;GO:0004222	ATPase activity;proteolysis;ATP binding;metalloendopeptidase activity	FTSH11
-Cre14.g615224						
-Cre14.g629960	GMM:15.2	"metal handling.binding, chelation and storage"	Mitochondrion	GO:0046938;GO:0046872;GO:0016756;GO:0010038	phytochelatin biosynthetic process;metal ion binding;glutathione gamma-glutamylcysteinyltransferase activity;response to metal ion	
-Cre14.g627700			Mitochondrion			
-Cre14.g622650			Secretory pathway			
-Cre14.g614750			Chloroplast	GO:0008080	N-acetyltransferase activity	
-Cre14.g630847	GMM:7.2.2	OPP.non-reductive PP.transaldolase	Chloroplast	GO:0005975	carbohydrate metabolic process	TAL2
-Cre14.g608150			Mitochondrion			
-Cre14.g626300						
-Cre14.g627500			Mitochondrion			
-Cre14.g624850			Chloroplast			
-Cre14.g633200						
-Cre14.g630400	GMM:3.5;GMM:21.2.1.4	minor CHO metabolism.others;redox.ascorbate and glutathione.ascorbate.L-galactose dehydrogenase				
-Cre14.g613426			Mitochondrion			
-Cre14.g618750	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0005515	protein binding	FAP246
-Cre14.g631575			Chloroplast			
-Cre14.g628050			Mitochondrion			COG1
-Cre14.g633903			Mitochondrion			
-Cre14.g612976						
-Cre14.g618776	GMM:29.4	protein.postranslational modification	Mitochondrion			FAP246
-Cre14.g629102			Secretory pathway	GO:0008236;GO:0006508	serine-type peptidase activity;proteolysis	
-Cre14.g612700	GMM:29.5.11.4.3.2;GMM:11.1.13	protein.degradation.ubiquitin.E3.SCF.FBOX;lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein		GO:0005515	protein binding	DRC7
-Cre14.g623850						
-Cre14.g608950	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"				
-Cre14.g627488	GMM:19.1	tetrapyrrole synthesis.glu-tRNA synthetase		GO:0016884;GO:0016874	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor;ligase activity"	
-Cre14.g614151	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion			
-Cre14.g620951			Mitochondrion			
-Cre14.g629500						
-Cre14.g619100	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			CLPR1
-Cre14.g611450	GMM:31.1	cell.organisation	Chloroplast			PLAP7
-Cre14.g625750	GMM:29.3.3	protein.targeting.chloroplast				TIC22
-Cre14.g616376						
-Cre14.g613075						
-Cre14.g632000	GMM:29.9;GMM:29.6.2.6;GMM:29.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding	Mitochondrion	GO:0051087;GO:0042803;GO:0006457;GO:0000774	chaperone binding;protein homodimerization activity;protein folding;adenyl-nucleotide exchange factor activity	CGE2
-Cre14.g629840			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre14.g624600			Chloroplast			
-Cre14.g615634			Secretory pathway			
-Cre14.g614226			Mitochondrion			
-Cre14.g614650						
-Cre14.g625950	GMM:27.1	RNA.processing	Mitochondrion	GO:0016779;GO:0006396;GO:0003723	nucleotidyltransferase activity;RNA processing;RNA binding	PAP4
-Cre14.g623800	GMM:26.24	misc.GCN5-related N-acetyltransferase		GO:0008080	N-acetyltransferase activity	
-Cre14.g630787			Mitochondrion			
-Cre14.g629880	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0005515	protein binding	
-Cre14.g619750			Secretory pathway			
-Cre14.g608970	GMM:29.2.1.99.2.34	protein.synthesis.ribosomal protein.unknown.large subunit.L34	Mitochondrion	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL34A
-Cre14.g627300						
-Cre14.g608300			Mitochondrion			
-Cre14.g633901						
-Cre14.g629600						
-Cre14.g632847			Chloroplast			ELG44
-Cre14.g631600						
-Cre14.g618550			Secretory pathway			
-Cre14.g628150	GMM:27.1	RNA.processing				
-Cre14.g631451						
-Cre14.g630982						
-Cre14.g614350	GMM:30.9	signalling.lipids				
-Cre14.g626576			Mitochondrion			
-Cre14.g620076			Secretory pathway			
-Cre14.g609900	GMM:21.3	redox.heme	Secretory pathway	GO:0016021	integral component of membrane	
-Cre14.g624700			Mitochondrion			
-Cre14.g619250			Chloroplast			
-Cre14.g618500	GMM:28.2	DNA.repair	Chloroplast			
-Cre14.g630450						
-Cre14.g631000			Mitochondrion			
-Cre14.g624125						
-Cre14.g629150	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG4
-Cre14.g625150	GMM:4.3.12;GMM:4.1.12	glycolysis.unclear/dually targeted.phosphoglycerate mutase;glycolysis.cytosolic branch.phosphoglycerate mutase	Chloroplast			PGM8
-Cre14.g614250				GO:0072546;GO:0016021;GO:0005783	ER membrane protein complex;integral component of membrane;endoplasmic reticulum	
-Cre14.g627433			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre14.g634113						
-Cre14.g632823			Chloroplast			
-Cre14.g609350			Chloroplast			
-Cre14.g632759						
-Cre14.g630799			Mitochondrion			
-Cre14.g632550						
-Cre14.g624050			Chloroplast			
-Cre14.g618600	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP7
-Cre14.g611552	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	TGL22
-Cre14.g632100	GMM:28.2	DNA.repair				
-Cre14.g619400	GMM:29.5.5	protein.degradation.serine protease				
-Cre14.g612450	GMM:29.2.1.1.4.2;GMM:29.2.1.1.3.2.15;GMM:29.2.1.1.1.2.15	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L15;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L15	Chloroplast	GO:0015934;GO:0006412;GO:0003735	large ribosomal subunit;translation;structural constituent of ribosome	PRPL15
-Cre14.g630301			Mitochondrion	GO:0003723	RNA binding	
-Cre14.g627400			Mitochondrion			
-Cre14.g633000				GO:0055114;GO:0016972	oxidation-reduction process;thiol oxidase activity	ERV1
-Cre14.g633850			Mitochondrion			
-Cre14.g632750	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre14.g620217						
-Cre14.g634193						
-Cre14.g608093			Mitochondrion			
-Cre14.g632501			Secretory pathway			
-Cre14.g627050			Chloroplast			
-Cre14.g611484			Mitochondrion			
-Cre14.g624650			Chloroplast			
-Cre14.g624400			Mitochondrion			FAP99
-Cre14.g615250				GO:0045454	cell redox homeostasis	TRX18
-Cre14.g609700			Secretory pathway			
-Cre14.g627477			Chloroplast			
-Cre14.g614050	GMM:31.1	cell.organisation		GO:0008017;GO:0000910;GO:0000226	microtubule binding;cytokinesis;microtubule cytoskeleton organization	
-Cre14.g612900	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB56
-Cre14.g609050	GMM:29.2.1.99.2.34	protein.synthesis.ribosomal protein.unknown.large subunit.L34		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL34B
-Cre14.g628950						
-Cre14.g623350			Mitochondrion			
-Cre14.g626667			Mitochondrion			
-Cre14.g616900			Secretory pathway	GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0006810	integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;transport	SULP2
-Cre14.g630871	GMM:31.1;GMM:27.2	cell.organisation;RNA.transcription				
-Cre14.g621700	GMM:29.5.7	protein.degradation.metalloprotease				MMP31
-Cre14.g618700			Mitochondrion	GO:0006412	translation	MRPS7
-Cre14.g623600			Mitochondrion			
-Cre14.g628566			Chloroplast			
-Cre14.g622750	GMM:27.1.19	RNA.processing.ribonucleases	Mitochondrion			
-Cre14.g617750	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Mitochondrion	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE3
-Cre14.g608550						
-Cre14.g631750			Mitochondrion			
-Cre14.g613900	GMM:31.3	cell.cycle		GO:0019901;GO:0006355;GO:0000079	"protein kinase binding;regulation of transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	CYCT1
-Cre14.g633050			Mitochondrion			
-Cre14.g621000	GMM:31.3	cell.cycle		GO:0006396;GO:0005622	RNA processing;intracellular	
-Cre14.g630750	GMM:3.6;GMM:29.4.1	minor CHO metabolism.callose;protein.postranslational modification.kinase	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK10
-Cre14.g633900			Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre14.g627800	GMM:13.1.3.5.2;GMM:11.1.13	amino acid metabolism.synthesis.aspartate family.lysine.dihydrodipicolinate reductase;lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein		GO:0000062	fatty-acyl-CoA binding	
-Cre14.g609150			Chloroplast			
-Cre14.g618641						
-Cre14.g612350	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor		GO:0005515	protein binding	
-Cre14.g628800	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
-Cre14.g629550				GO:0003723	RNA binding	
-Cre14.g631145				GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
-Cre14.g608050			Secretory pathway			
-Cre14.g608990			Chloroplast			
-Cre14.g613100						
-Cre14.g614400	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0016818;GO:0008270;GO:0005524;GO:0005515;GO:0003676	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;zinc ion binding;ATP binding;protein binding;nucleic acid binding"	
-Cre14.g608900	GMM:30.11.1	signalling.light.COP9 signalosome	Chloroplast			
-Cre14.g630100	GMM:29.2.1.2.2.13	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L13		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL13
-Cre14.g617500	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP14
-Cre14.g631650						FAP406
-Cre14.g608600			Secretory pathway			
-Cre14.g616501						
-Cre14.g634100						
-Cre14.g620050			Mitochondrion			
-Cre14.g608350	GMM:30.11.1	signalling.light.COP9 signalosome	Chloroplast			
-Cre14.g612000	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre14.g629200						FAP98
-Cre14.g632831			Secretory pathway			
-Cre14.g623550			Chloroplast			
-Cre14.g614708						
-Cre14.g617700	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE2
-Cre14.g610100						
-Cre14.g627411						
-Cre14.g624201	GMM:21.1	redox.thioredoxin	Mitochondrion	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	
-Cre14.g613700						
-Cre14.g612850			Secretory pathway	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre14.g622900			Chloroplast			
-Cre14.g625650						
-Cre14.g626000				GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre14.g625100						
-Cre14.g619350			Mitochondrion	GO:0005524	ATP binding	
-Cre14.g624750			Secretory pathway			
-Cre14.g618450			Secretory pathway			
-Cre14.g630950	GMM:26.23	misc.rhodanese				
-Cre14.g615700			Chloroplast			
-Cre14.g626600			Secretory pathway			
-Cre14.g609850			Secretory pathway			
-Cre14.g629920	GMM:34.5	transport.ammonium		GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	
-Cre14.g628533	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG3
-Cre14.g613400	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies		GO:0005515	protein binding	POC16
-Cre14.g622480	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
-Cre14.g630600			Chloroplast			
-Cre14.g630050			Mitochondrion			
-Cre14.g615900	GMM:34.99	transport.misc		GO:0016021;GO:0006810	integral component of membrane;transport	FBT3
-Cre14.g616050			Mitochondrion			
-Cre14.g617950				GO:0005509	calcium ion binding	CAM18
-Cre14.g615300						
-Cre14.g630775			Mitochondrion			
-Cre14.g621050	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
-Cre14.g613950	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
-Cre14.g618050	GMM:31.1	cell.organisation	Chloroplast			PLAP3
-Cre14.g610250			Chloroplast			
-Cre14.g632400				GO:0005515	protein binding	SSA19
-Cre14.g616800						
-Cre14.g626750	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			
-Cre14.g630811						
-Cre14.g626250						
-Cre14.g632076						
-Cre14.g624350	GMM:16.1.3.5	secondary metabolism.isoprenoids.tocopherol biosynthesis.tocopherol methyltransferase	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	VTE6
-Cre14.g618800						
-Cre14.g623150						
-Cre14.g620300	GMM:13.1.6.5.1	amino acid metabolism.synthesis.aromatic aa.tryptophan.anthranilate synthase	Chloroplast	GO:0016787;GO:0006541	hydrolase activity;glutamine metabolic process	ASB1
-Cre14.g623403						
-Cre14.g616950	GMM:15	metal handling				SELT
-Cre14.g609750			Secretory pathway			
-Cre14.g612750			Mitochondrion			FAP197
-Cre14.g620200						
-Cre14.g634150						
-Cre14.g610647	GMM:31.1	cell.organisation	Mitochondrion	GO:0007010;GO:0003779	cytoskeleton organization;actin binding	
-Cre14.g611650	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast	GO:0055114;GO:0050660;GO:0016491	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity	ALO2
-Cre14.g614850						FAP33
-Cre14.g614300	GMM:23.1.2.30	nucleotide metabolism.synthesis.purine.IMP dehydrogenase		GO:0055114;GO:0006164;GO:0003938;GO:0003824	oxidation-reduction process;purine nucleotide biosynthetic process;IMP dehydrogenase activity;catalytic activity	
-Cre14.g627788			Mitochondrion			
-Cre14.g628100	GMM:27.4;GMM:27.1.1	RNA.RNA binding;RNA.processing.splicing				SPL7
-Cre14.g609650				GO:0048037	cofactor binding	
-Cre14.g610566			Mitochondrion	GO:0007010;GO:0003779	cytoskeleton organization;actin binding	
-Cre14.g627466			Chloroplast			
-Cre14.g615850						EFH8
-Cre14.g620652						
-Cre14.g609202	GMM:29.5.7	protein.degradation.metalloprotease		GO:0031012;GO:0016491;GO:0008270;GO:0008152;GO:0006508;GO:0004222	extracellular matrix;oxidoreductase activity;zinc ion binding;metabolic process;proteolysis;metalloendopeptidase activity	
-Cre14.g612400						
-Cre14.g611350						
-Cre14.g615550	GMM:29.4;GMM:11.9.2	protein.postranslational modification;lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	TGL19
-Cre14.g629241			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG25
-Cre14.g628850	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG26
-Cre14.g625000			Mitochondrion			
-Cre14.g618650						IQA1
-Cre14.g623700			Mitochondrion			OPR63
-Cre14.g616550			Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG50
-Cre14.g610631	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre14.g615800			Chloroplast			
-Cre14.g633700			Secretory pathway			
-Cre14.g622600			Mitochondrion			
-Cre14.g631950			Secretory pathway			
-Cre14.g621100			Secretory pathway			
-Cre14.g619500			Mitochondrion			
-Cre14.g621800			Secretory pathway			
-Cre14.g616000	GMM:26.23	misc.rhodanese				
-Cre14.g631701						
-Cre14.g613134						
-Cre14.g632807			Secretory pathway			
-Cre14.g620250						
-Cre14.g624476						
-Cre14.g611250	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				
-Cre14.g623100						
-Cre14.g618000				GO:0005509	calcium ion binding	EFH9
-Cre14.g634279						
-Cre14.g630907	GMM:29.5.2	protein.degradation.autophagy		GO:0006914;GO:0005737	autophagy;cytoplasm	ATG5
-Cre14.g617300	GMM:29.5.4	protein.degradation.aspartate protease	Chloroplast	GO:0016021;GO:0004190	integral component of membrane;aspartic-type endopeptidase activity	PSL3
-Cre14.g633626			Secretory pathway			
-Cre14.g610000						
-Cre14.g622000			Chloroplast			
-Cre14.g619825	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0006259;GO:0005694;GO:0005524;GO:0003824;GO:0003677;GO:0000737	"DNA metabolic process;chromosome;ATP binding;catalytic activity;DNA binding;DNA catabolic process, endonucleolytic"	
-Cre14.g620500	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	GO:0006355;GO:0003700	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre14.g627422						
-Cre14.g614950			Secretory pathway	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS2
-Cre14.g630650			Secretory pathway			
-Cre14.g609600			Mitochondrion			
-Cre14.g630150				GO:0016567;GO:0007165;GO:0006955;GO:0004842	protein ubiquitination;signal transduction;immune response;ubiquitin-protein transferase activity	
-Cre14.g613800						
-Cre14.g623926				GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre14.g632250	GMM:28.2	DNA.repair	Mitochondrion			
-Cre14.g625500	GMM:31.1	cell.organisation				FAP254
-Cre14.g623250			Secretory pathway			
-Cre14.g611700	GMM:31.1	cell.organisation	Chloroplast			PLAP8
-Cre14.g616750	GMM:29.3.5	protein.targeting.peroxisomes				PEX5
-Cre14.g629700	GMM:8.2.10	TCA / organic transformation.other organic acid transformations.malic	Chloroplast	GO:0055114;GO:0051287;GO:0004471	oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity	MME3
-Cre14.g632450			Secretory pathway	GO:0005515	protein binding	
-Cre14.g618979			Mitochondrion			
-Cre14.g608652						
-Cre14.g631900	GMM:29.5.5;GMM:27.1.19	protein.degradation.serine protease;RNA.processing.ribonucleases		GO:0016788	"hydrolase activity, acting on ester bonds"	
-Cre14.g628000	GMM:27.1	RNA.processing	Chloroplast	GO:0016740;GO:0008033;GO:0006529;GO:0004066	transferase activity;tRNA processing;asparagine biosynthetic process;asparagine synthase (glutamine-hydrolyzing) activity	
-Cre14.g615350				GO:0019825	oxygen binding	THB2
-Cre14.g633600			Mitochondrion			
-Cre14.g616976			Mitochondrion			
-Cre14.g632700	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre14.g626700	GMM:1.1.5.2	PS.lightreaction.other electron carrier (ox/red).ferredoxin	Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	PETF
-Cre14.g615150			Mitochondrion			
-Cre14.g633450			Chloroplast			
-Cre14.g630823			Mitochondrion			
-Cre14.g623050			Chloroplast			
-Cre14.g616700			Secretory pathway			
-Cre14.g613550						FAP203
-Cre14.g612250						FAP388
-Cre14.g632950	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				NOT1
-Cre14.g627150			Mitochondrion			
-Cre14.g621150			Chloroplast			
-Cre14.g626350						
-Cre14.g612150						PAP10
-Cre14.g625200				GO:0006367;GO:0005672	transcription initiation from RNA polymerase II promoter;transcription factor TFIIA complex	
-Cre14.g615950	GMM:34.16;GMM:29.2.2.1	transport.ABC transporters and multidrug resistance systems;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre14.g631400			Secretory pathway			
-Cre14.g616200	GMM:10.2	cell wall.cellulose synthesis	Secretory pathway	GO:0016758;GO:0016021;GO:0006506	"transferase activity, transferring hexosyl groups;integral component of membrane;GPI anchor biosynthetic process"	PIGM
-Cre14.g610582	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre14.g634000						
-Cre14.g624000						
-Cre14.g608788			Secretory pathway			
-Cre14.g617050			Secretory pathway			
-Cre14.g629283			Secretory pathway	GO:0006396;GO:0004000;GO:0003723	RNA processing;adenosine deaminase activity;RNA binding	
-Cre14.g611300			Secretory pathway	GO:0016020	membrane	COP3
-Cre14.g617650	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE1
-Cre14.g611950			Chloroplast			
-Cre14.g614800			Chloroplast			
-Cre14.g633650	GMM:27.1.1	RNA.processing.splicing		GO:0005634;GO:0000398	"nucleus;mRNA splicing, via spliceosome"	PRP6
-Cre14.g608275						
-Cre14.g613450			Secretory pathway			CGL87
-Cre14.g622100						
-Cre14.g614500				GO:0005515	protein binding	
-Cre14.g610900						
-Cre14.g633750	GMM:29.3.1	protein.targeting.nucleus	Secretory pathway			IPB2
-Cre14.g619700			Mitochondrion			
-Cre14.g615776						
-Cre14.g623650	GMM:16.2.1.10	secondary metabolism.phenylpropanoids.lignin biosynthesis.CAD	Chloroplast	GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH7
-Cre14.g633550			Mitochondrion			
-Cre14.g625225			Secretory pathway			
-Cre14.g621250	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			
-Cre14.g620800			Mitochondrion			
-Cre14.g623125			Secretory pathway			
-Cre14.g612950	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG17
-Cre14.g632860	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre14.g620100						
-Cre14.g622340			Secretory pathway			
-Cre14.g628702						
-Cre14.g624450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre14.g613150			Chloroplast			
-Cre14.g629650	GMM:34.12	transport.metal	Chloroplast			NIK1
-Cre14.g608250						
-Cre14.g617350			Mitochondrion			
-Cre14.g611750	GMM:33.99	development.unspecified	Mitochondrion	GO:0005515	protein binding	
-Cre14.g617250						FAP282
-Cre14.g630835						
-Cre14.g618926			Chloroplast			
-Cre14.g611200			Chloroplast	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
-Cre14.g632815						
-Cre14.g610950	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	PBD1
-Cre14.g621676						
-Cre14.g630500				GO:0006388;GO:0000213	"tRNA splicing, via endonucleolytic cleavage and ligation;tRNA-intron endonuclease activity"	TIE2
-Cre14.g622800	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Mitochondrion	GO:0006629	lipid metabolic process	
-Cre14.g623576						
-Cre14.g608100			Chloroplast			
-Cre14.g609800			Secretory pathway			
-Cre14.g617002			Mitochondrion			
-Cre14.g634236			Chloroplast			
-Cre14.g618950			Secretory pathway			
-Cre14.g632176			Secretory pathway			
-Cre14.g619450			Secretory pathway			
-Cre14.g610150			Mitochondrion			
-Cre14.g623300			Secretory pathway	GO:0051536;GO:0010181;GO:0003824	iron-sulfur cluster binding;FMN binding;catalytic activity	NCP1
-Cre14.g617900	GMM:29.2.1.2.2.35	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L35		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL35
-Cre14.g630700						
-Cre14.g625450	GMM:16.1.3.3	secondary metabolism.isoprenoids.tocopherol biosynthesis.MPBQ/MSBQ methyltransferase	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	VTE3
-Cre14.g632900						
-Cre14.g618150				GO:0008017;GO:0007010	microtubule binding;cytoskeleton organization	
-Cre14.g616151						
-Cre14.g615400				GO:0019825	oxygen binding	THB1
-Cre14.g610599						
-Cre14.g617600	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			DEG9
-Cre14.g612300						
-Cre14.g614900	GMM:29.1.18	protein.aa activation.glutamine-tRNA ligase		GO:0043039;GO:0016876;GO:0006425;GO:0006418;GO:0005737;GO:0005524;GO:0004819;GO:0004812;GO:0000166	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;glutaminyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;glutamine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding"	TSQ1
-Cre14.g621475						
-Cre14.g626400	GMM:26.10;GMM:26.1;GMM:17.2.2	misc.cytochrome P450;misc.misc2;hormone metabolism.auxin.signal transduction	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743C1
-Cre14.g611517	GMM:26.9	misc.glutathione S transferases				
-Cre14.g613850	GMM:31.2	cell.division				
-Cre14.g626433			Mitochondrion			
-Cre14.g633950			Secretory pathway			
-Cre14.g619850			Secretory pathway			
-Cre14.g616650			Secretory pathway			
-Cre14.g627100						
-Cre14.g629300	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease	Mitochondrion			
-Cre14.g608700			Mitochondrion	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	
-Cre14.g614450			Secretory pathway			
-Cre14.g612100	GMM:31.6.1.9;GMM:27.3.67	cell.motility.eukaryotes.flagellar adhesion and gamete fusion;RNA.regulation of transcription.putative transcription regulator				RWP3
-Cre14.g633789						
-Cre14.g609551						
-Cre14.g620750			Secretory pathway			
-Cre14.g631350						VSP7
-Cre14.g621850			Mitochondrion			
-Cre14.g610300						
-Cre14.g623000			Chloroplast			
-Cre14.g620233			Secretory pathway			
-Cre14.g628500			Chloroplast			CPLD66
-Cre14.g629000			Chloroplast			AXT1
-Cre14.g612500	GMM:29.4	protein.postranslational modification		GO:0042127;GO:0018343;GO:0005965;GO:0003824	regulation of cell proliferation;protein farnesylation;protein farnesyltransferase complex;catalytic activity	
-Cre14.g610850						
-Cre14.g621300	GMM:27.4	RNA.RNA binding		GO:0006376;GO:0005685;GO:0003729	mRNA splice site selection;U1 snRNP;mRNA binding	
-Cre14.g629400				GO:0005634	nucleus	
-Cre14.g610351			Mitochondrion			
-Cre14.g631800						
-Cre14.g626900	GMM:3.5;GMM:10.1.21	minor CHO metabolism.others;cell wall.precursor synthesis.phosphomannomutase		GO:0009298;GO:0005737;GO:0004615	GDP-mannose biosynthetic process;cytoplasm;phosphomannomutase activity	PMM
-Cre14.g628450	GMM:29.6.3.2	protein.folding.immunophilins (IMM).cyclophilins	Secretory pathway	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN48
-Cre14.g630250						CYCR1
-Cre14.g632791			Chloroplast			
-Cre14.g622150						
-Cre14.g611900						
-Cre14.g619050			Secretory pathway	GO:0016021;GO:0006950	integral component of membrane;response to stress	
-Cre14.g617850						
-Cre14.g615750			Chloroplast			CAM2
-Cre14.g609300			Chloroplast			
-Cre14.g621351	GMM:20.1.5	stress.biotic.regulation of transcription	Secretory pathway	GO:0015969	guanosine tetraphosphate metabolic process	
-Cre14.g621650	GMM:11.1.2	lipid metabolism.FA synthesis and FA elongation.acetyl CoA transacylase	Chloroplast			MCT1
-Cre14.g624900	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP171
-Cre14.g631300	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion			
-Cre14.g623900						
-Cre14.g618100						
-Cre14.g629429			Chloroplast			
-Cre14.g609100	GMM:30.11.1	signalling.light.COP9 signalosome				
-Cre14.g634365						
-Cre14.g627900	GMM:27.1.1	RNA.processing.splicing				
-Cre14.g617276			Mitochondrion			
-Cre14.g618860	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
-Cre14.g622410						
-Cre14.g628752						
-Cre14.g615600						
-Cre14.g615500	GMM:29.5.4;GMM:29.5	protein.degradation.aspartate protease;protein.degradation	Mitochondrion			
-Cre14.g631141			Chloroplast			
-Cre14.g618350			Secretory pathway			
-Cre14.g622075	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG28
-Cre14.g630895	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0071949	FAD binding	
-Cre14.g620400	GMM:29.5;GMM:29.3.4.99	protein.degradation;protein.targeting.secretory pathway.unspecified	Secretory pathway	GO:0016021;GO:0008233;GO:0006465;GO:0005787	integral component of membrane;peptidase activity;signal peptide processing;signal peptidase complex	SPC22
-Cre14.g626150			Mitochondrion			
-Cre14.g608850	GMM:33.99	development.unspecified	Mitochondrion			
-Cre14.g626466	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre14.g617400	GMM:29.6.2.1;GMM:20.2.1	protein.folding.chaperones and co-chaperones.small HSPs;stress.abiotic.heat	Chloroplast.Stroma			HSP22F
-Cre14.g627917				GO:0009058	biosynthetic process	
-Cre14.g616850				GO:0006950	response to stress	
-Cre14.g627251				GO:0016021	integral component of membrane	
-Cre14.g625400	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0016887;GO:0005524	ATPase activity;ATP binding	RPT1
-Cre14.g617150	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Secretory pathway			RLS4
-Cre14.g613652			Mitochondrion			
-Cre14.g615050	GMM:11.8.7	"lipid metabolism.exotics (steroids, squalene etc).trans-2-enoyl-CoA reductase (NADPH)"		GO:0016627;GO:0016021;GO:0006629;GO:0005737;GO:0005515	"oxidoreductase activity, acting on the CH-CH group of donors;integral component of membrane;lipid metabolic process;cytoplasm;protein binding"	
-Cre14.g616350			Secretory pathway			FAS4
-Cre14.g613200	GMM:31.1;GMM:27.2	cell.organisation;RNA.transcription	Chloroplast			
-Cre14.g612226						
-Cre14.g627726						
-Cre14.g633350			Secretory pathway			
-Cre14.g621450	GMM:29.2.1.2.2.5	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L5		GO:0008097;GO:0006412;GO:0005840;GO:0005622;GO:0003735	5S rRNA binding;translation;ribosome;intracellular;structural constituent of ribosome	RPL5
-Cre14.g619854	GMM:28.1;GMM:26.2	DNA.synthesis/chromatin structure;misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG35
-Cre14.g609926			Mitochondrion			
-Cre14.g629050			Secretory pathway	GO:0009055	electron carrier activity	
-Cre14.g630859	GMM:13.2.4.3	amino acid metabolism.degradation.branched chain group.valine	Chloroplast	GO:0055114;GO:0051287;GO:0004616	oxidation-reduction process;NAD binding;phosphogluconate dehydrogenase (decarboxylating) activity	HID1
-Cre14.g618631						
-Cre14.g616600	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion	GO:0009228;GO:0004789	thiamine biosynthetic process;thiamine-phosphate diphosphorylase activity	FZL
-Cre14.g615618						
-Cre14.g614667			Secretory pathway			
-Cre14.g613300			Secretory pathway			
-Cre14.g610400			Mitochondrion			
-Cre14.g632767	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006470;GO:0004725	protein dephosphorylation;protein tyrosine phosphatase activity	
-Cre14.g625802	GMM:29.5.11.4.99	protein.degradation.ubiquitin.E3.unspecified				
-Cre14.g624550			Chloroplast			
-Cre14.g609500			Mitochondrion			PWR5
-Cre14.g632626						
-Cre14.g622200						
-Cre14.g621400						
-Cre14.g616589	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion			CYG50
-Cre14.g632799			Secretory pathway			ZSP2A
-Cre14.g620900			Mitochondrion			
-Cre14.g610801						
-Cre14.g628400				GO:0043039;GO:0016876;GO:0005524	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;ATP binding"	TSA3
-Cre14.g619800						SPO11B
-Cre14.g622050			Secretory pathway			ELG28
-Cre14.g625050	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre14.g617826						
-Cre14.g621600			Mitochondrion	GO:0051225;GO:0031023	spindle assembly;microtubule organizing center organization	
-Cre14.g618250						
-Cre14.g615000	GMM:29.4;GMM:27.3.67	protein.postranslational modification;RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0055114;GO:0033743;GO:0030091;GO:0016671;GO:0006979	"oxidation-reduction process;peptide-methionine (R)-S-oxide reductase activity;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;response to oxidative stress"	
-Cre14.g619166	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CSK6
-Cre14.g617151	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase				
-Cre14.g625901			Mitochondrion	GO:0003723	RNA binding	
-Cre14.g622550			Mitochondrion	GO:0008641	small protein activating enzyme activity	
-Cre14.g629800			Mitochondrion			
-Cre14.g610615						
-Cre14.g623750			Secretory pathway			
-Cre14.g626800			Mitochondrion			OPR64
-Cre14.g631250			Mitochondrion			
-Cre14.g631200	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm	Mitochondrion			DII6
-Cre14.g634322						
-Cre14.g627650						FAP392
-Cre14.g628600			Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre14.g612200	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG16
-Cre14.g609250			Chloroplast			
-Cre14.g608200						
-Cre14.g611850	GMM:28.99	DNA.unspecified	Secretory pathway	GO:0016021	integral component of membrane	
-Cre14.g613050			Secretory pathway			
-Cre14.g626950				GO:0016779;GO:0009435;GO:0009058;GO:0003824	nucleotidyltransferase activity;NAD biosynthetic process;biosynthetic process;catalytic activity	NIC1
-Cre14.g610050				GO:0045892;GO:0005634	"negative regulation of transcription, DNA-templated;nucleus"	
-Cre14.g619650			Chloroplast			
-Cre14.g612426			Mitochondrion			
-Cre14.g618900				GO:0005515	protein binding	
-Cre14.g614076			Secretory pathway			
-Cre14.g611000	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
-Cre14.g619900	GMM:21.99	redox.misc		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PHX22
-Cre14.g623950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre14.g616250			Chloroplast			
-Cre14.g619133	GMM:8.1.7	TCA / organic transformation.TCA.succinate dehydrogenase	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	SDH1
-Cre14.g616301			Secretory pathway			
-Cre14.g609010			Secretory pathway			
-Cre14.g614550						MDB1
-Cre14.g633300			Secretory pathway			
-Cre14.g630350			Secretory pathway			
-Cre14.g625850	GMM:29.5.7	protein.degradation.metalloprotease				MMP32
-Cre14.g616826			Mitochondrion			
-Cre14.g621172			Chloroplast			
-Cre14.g617450	GMM:29.6.2.1;GMM:20.2.1	protein.folding.chaperones and co-chaperones.small HSPs;stress.abiotic.heat	Chloroplast.Stroma			HSP22E
-Cre14.g627950	GMM:17.3.1.1.1	hormone metabolism.brassinosteroid.synthesis-degradation.BRs.DET2		GO:0016627;GO:0016021;GO:0006629;GO:0005737	"oxidoreductase activity, acting on the CH-CH group of donors;integral component of membrane;lipid metabolic process;cytoplasm"	
-Cre14.g632300	GMM:27.3.55	RNA.regulation of transcription.HDA				HDA6
-Cre14.g620150	GMM:29.5	protein.degradation	Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	
-Cre14.g626634						
-Cre14.g609450						PWR4
-Cre14.g620450			Secretory pathway			
-Cre14.g630883	GMM:11.1.15	lipid metabolism.FA synthesis and FA elongation.ACP desaturase	Chloroplast	GO:0055114;GO:0045300;GO:0006631	oxidation-reduction process;acyl-[acyl-carrier-protein] desaturase activity;fatty acid metabolic process	
-Cre14.g626200	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH7
-Cre14.g610450	GMM:34.12	transport.metal	Chloroplast	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	
-Cre14.g611150	GMM:27.1	RNA.processing				
-Cre14.g629750	GMM:8.2.10	TCA / organic transformation.other organic acid transformations.malic		GO:0055114;GO:0051287;GO:0004471	oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity	MME2
-Cre14.g612567						
-Cre14.g619000			Mitochondrion			
-Cre14.g617027						
-Cre14.g608750			Mitochondrion			
-Cre14.g630125			Secretory pathway			
-Cre14.g624500	GMM:27.1.19	RNA.processing.ribonucleases	Chloroplast			RRP46
-Cre14.g625350	GMM:34.99;GMM:34.16	transport.misc;transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
-Cre14.g632650	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre14.g633500						
-Cre14.g622901			Chloroplast	GO:0005515	protein binding	
-Cre14.g620850	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)	Mitochondrion	GO:0046983	protein dimerization activity	NSG17
-Cre14.g618621			Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
-Cre14.g613501	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase				ZXE5
-Cre16.g684700						
-Cre16.g691500	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast			
-Cre16.g666302			Secretory pathway			
-Cre16.g655950	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	TRP2
-Cre16.g661850			Secretory pathway	GO:0006468;GO:0005516;GO:0004683	protein phosphorylation;calmodulin binding;calmodulin-dependent protein kinase activity	
-Cre16.g662450						
-Cre16.g659350	GMM:21.99;GMM:21.2;GMM:12.1.1	redox.misc;redox.ascorbate and glutathione;N-metabolism.nitrate metabolism.NR				CYB1
-Cre16.g655700			Mitochondrion			
-Cre16.g678885						
-Cre16.g683550	GMM:26.10;GMM:26.1;GMM:16.2	misc.cytochrome P450;misc.misc2;secondary metabolism.phenylpropanoids	Secretory pathway	GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	
-Cre16.g663050	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Secretory pathway	GO:0005525;GO:0003924	GTP binding;GTPase activity	
-Cre16.g665950	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005524;GO:0003677	DNA replication;ATP binding;DNA binding	MCM8
-Cre16.g661588			Chloroplast			OPR102
-Cre16.g651923	GMM:16.1.4.8	secondary metabolism.isoprenoids.carotenoids.carotenoid isomerase	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre16.g674178						
-Cre16.g656050			Secretory pathway			
-Cre16.g663776			Chloroplast			
-Cre16.g662800	GMM:33.99;GMM:27.1.1;GMM:27.1	development.unspecified;RNA.processing.splicing;RNA.processing		GO:0005515	protein binding	PRP4
-Cre16.g675400			Mitochondrion			
-Cre16.g676850	GMM:29.5	protein.degradation	Chloroplast	GO:0005524	ATP binding	
-Cre16.g684250			Chloroplast			
-Cre16.g686050			Secretory pathway			
-Cre16.g676050	GMM:31.1	cell.organisation		GO:0034314;GO:0007015;GO:0005885;GO:0005524	Arp2/3 complex-mediated actin nucleation;actin filament organization;Arp2/3 protein complex;ATP binding	ARP3
-Cre16.g693950	GMM:24	biodegradation of xenobiotics	Chloroplast			GOX20
-Cre16.g675851			Mitochondrion			
-Cre16.g652450						
-Cre16.g650250	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO25
-Cre16.g685501			Mitochondrion			
-Cre16.g669452			Chloroplast			
-Cre16.g674151						
-Cre16.g666400	GMM:31.2	cell.division				
-Cre16.g695700						
-Cre16.g681050						
-Cre16.g653450				GO:0005737;GO:0005515	cytoplasm;protein binding	
-Cre16.g651600						
-Cre16.g674964	GMM:30.5	signalling.G-proteins				
-Cre16.g673700	GMM:29.2.2	protein.synthesis.ribosome biogenesis	Chloroplast	GO:0042254;GO:0005634	ribosome biogenesis;nucleus	
-Cre16.g677920			Chloroplast			
-Cre16.g663350	GMM:29.6.2.5;GMM:29.5.5	protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease	Mitochondrion	GO:0051082;GO:0006457;GO:0005524	unfolded protein binding;protein folding;ATP binding	CLPX
-Cre16.g669127						
-Cre16.g649300			Secretory pathway			
-Cre16.g678700			Chloroplast			
-Cre16.g664950						
-Cre16.g684491			Secretory pathway			
-Cre16.g673169			Secretory pathway			
-Cre16.g692452						
-Cre16.g652100	GMM:34.12;GMM:29.5.7	transport.metal;protein.degradation.metalloprotease		GO:0008235;GO:0006508;GO:0004177	metalloexopeptidase activity;proteolysis;aminopeptidase activity	MAP2
-Cre16.g676533	GMM:27.3.66	RNA.regulation of transcription.pseudo ARR transcription factor family	Mitochondrion	GO:0004866	endopeptidase inhibitor activity	
-Cre16.g649050	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383	intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity	CYG38
-Cre16.g692340			Chloroplast			
-Cre16.g651400	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre16.g694250	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX	Secretory pathway	GO:0005515	protein binding	
-Cre16.g648300	GMM:34.7	transport.phosphate	Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	PHT6
-Cre16.g691150			Mitochondrion			
-Cre16.g670150						
-Cre16.g680100	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases		GO:0008168;GO:0006364;GO:0005737	methyltransferase activity;rRNA processing;cytoplasm	
-Cre16.g667750	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899;GO:0003676	"transcription, DNA-templated;DNA-directed RNA polymerase activity;nucleic acid binding"	RPB7
-Cre16.g668050			Mitochondrion			
-Cre16.g694203						PWR14
-Cre16.g684950			Chloroplast			
-Cre16.g679650	GMM:31.1	cell.organisation	Chloroplast			
-Cre16.g654550	GMM:35.1.17	not assigned.no ontology.transcription factor jumonji (jmjC) domain-containing protein				
-Cre16.g695100	GMM:13.2.4.4;GMM:11.9.4.2	amino acid metabolism.degradation.branched chain group.leucine;lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH	Mitochondrion	GO:0055114;GO:0050660;GO:0016627;GO:0008152;GO:0003995	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity, acting on the CH-CH group of donors;metabolic process;acyl-CoA dehydrogenase activity"	
-Cre16.g655000			Chloroplast			PWR11
-Cre16.g677738						
-Cre16.g670261				GO:0070772;GO:0043550;GO:0005515	PAS complex;regulation of lipid kinase activity;protein binding	
-Cre16.g690767			Chloroplast	GO:0055114;GO:0016491;GO:0006631;GO:0003857	oxidation-reduction process;oxidoreductase activity;fatty acid metabolic process;3-hydroxyacyl-CoA dehydrogenase activity	
-Cre16.g652800			Chloroplast			
-Cre16.g691900	GMM:29.1.30;GMM:29.1	protein.aa activation.pseudouridylate synthase;protein.aa activation		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS19
-Cre16.g679050	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor		GO:0005515	protein binding	
-Cre16.g654992	GMM:31.6.1.11	cell.motility.eukaryotes.other	Mitochondrion	GO:0008168;GO:0008033	methyltransferase activity;tRNA processing	SRR3
-Cre16.g653350			Mitochondrion	GO:0009245;GO:0008759	lipid A biosynthetic process;UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase activity	
-Cre16.g691450			Secretory pathway			
-Cre16.g671713			Chloroplast			
-Cre16.g686350			Chloroplast			
-Cre16.g686285	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
-Cre16.g660390			Secretory pathway	GO:0008146	sulfotransferase activity	CSR1
-Cre16.g672454						
-Cre16.g687400	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g667050						
-Cre16.g687750						
-Cre16.g647750						
-Cre16.g677250			Mitochondrion			TEH5
-Cre16.g691353			Mitochondrion			
-Cre16.g687350	GMM:11.9.4.2	lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH	Mitochondrion	GO:0055114;GO:0016627;GO:0006635;GO:0005777;GO:0003997;GO:0003995	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;fatty acid beta-oxidation;peroxisome;acyl-CoA oxidase activity;acyl-CoA dehydrogenase activity"	
-Cre16.g672397	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006470;GO:0004722	protein dephosphorylation;protein serine/threonine phosphatase activity	
-Cre16.g691755						
-Cre16.g655350						
-Cre16.g657900			Mitochondrion			
-Cre16.g655600						
-Cre16.g653300						
-Cre16.g683750			Chloroplast	GO:0016021	integral component of membrane	CGL67
-Cre16.g677500	GMM:14.15	S-assimilation.AKN		GO:0005524;GO:0004020;GO:0000103	ATP binding;adenylylsulfate kinase activity;sulfate assimilation	APK1
-Cre16.g680117	GMM:29.5.11.4.2;GMM:29.5	protein.degradation.ubiquitin.E3.RING;protein.degradation		GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre16.g668750			Mitochondrion			
-Cre16.g651250			Chloroplast			
-Cre16.g681500				GO:0016787	hydrolase activity	
-Cre16.g686650			Mitochondrion			
-Cre16.g689759			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre16.g648400			Chloroplast			
-Cre16.g682699						
-Cre16.g695150			Chloroplast			
-Cre16.g673393	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure	Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
-Cre16.g689550	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK8
-Cre16.g648000			Chloroplast			
-Cre16.g674739				GO:0016020	membrane	
-Cre16.g690100						FAP213
-Cre16.g658725						
-Cre16.g678549			Secretory pathway			
-Cre16.g647901			Mitochondrion			CSC8
-Cre16.g672753				GO:0007049;GO:0005634	cell cycle;nucleus	
-Cre16.g650000				GO:0050662;GO:0003824	coenzyme binding;catalytic activity	
-Cre16.g650650	GMM:13.2.4.1;GMM:13.1.1.3.11	amino acid metabolism.degradation.branched chain group.shared;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase		GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	AGT3
-Cre16.g653900			Secretory pathway			
-Cre16.g658750			Secretory pathway	GO:0016021	integral component of membrane	
-Cre16.g674851			Chloroplast			
-Cre16.g688100			Chloroplast			
-Cre16.g664550	GMM:25.1;GMM:25;GMM:1.2.5	C1-metabolism.glycine hydroxymethyltransferase;C1-metabolism;PS.photorespiration.serine hydroxymethyltransferase	Mitochondrion	GO:0016740	transferase activity	SHMT1
-Cre16.g680342	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP110
-Cre16.g656900			Mitochondrion			
-Cre16.g676650	GMM:31.4	cell.vesicle transport		GO:0030131;GO:0030117;GO:0016192;GO:0015031;GO:0008565;GO:0006886	clathrin adaptor complex;membrane coat;vesicle-mediated transport;protein transport;protein transporter activity;intracellular protein transport	AP1G1
-Cre16.g680450			Secretory pathway			
-Cre16.g685600						
-Cre16.g679350						
-Cre16.g681238	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast	GO:0005525	GTP binding	
-Cre16.g677317			Chloroplast			
-Cre16.g665900						
-Cre16.g683000			Secretory pathway			
-Cre16.g653800			Chloroplast			OPR101
-Cre16.g658526	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005525;GO:0005524	ATPase activity;GTP binding;ATP binding	
-Cre16.g682300	GMM:29.2.1.2.1.26	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S26	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS26
-Cre16.g671850						
-Cre16.g679500	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion			NUOB8
-Cre16.g676981						
-Cre16.g649400			Mitochondrion			CPLD16
-Cre16.g668450			Mitochondrion			
-Cre16.g656650			Chloroplast			
-Cre16.g682725	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0005515	protein binding	GST2
-Cre16.g664350	GMM:28.2	DNA.repair	Chloroplast			
-Cre16.g665400	GMM:27.1	RNA.processing		GO:0006396	RNA processing	SMP9
-Cre16.g653650						
-Cre16.g663000	GMM:21.3	redox.heme		GO:0019825	oxygen binding	prx
-Cre16.g683259	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP29
-Cre16.g685500	GMM:11.1.13	lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein	Secretory pathway	GO:0005515	protein binding	
-Cre16.g687100			Chloroplast			
-Cre16.g689311						
-Cre16.g688750	GMM:27.1	RNA.processing	Mitochondrion	GO:0005634	nucleus	
-Cre16.g692150			Secretory pathway			
-Cre16.g674550						
-Cre16.g686203			Secretory pathway			
-Cre16.g672400						
-Cre16.g676450						CPLD39
-Cre16.g678200	GMM:24.2;GMM:13.2.3.2	biodegradation of xenobiotics.lactoylglutathione lyase;amino acid metabolism.degradation.aspartate family.threonine				
-Cre16.g689766			Secretory pathway			
-Cre16.g693600	GMM:10.5.2	cell wall.cell wall proteins.proline rich proteins	Secretory pathway			FAP137
-Cre16.g653000						
-Cre16.g654750			Mitochondrion			
-Cre16.g683819				GO:0016491;GO:0008198;GO:0006725	oxidoreductase activity;ferrous iron binding;cellular aromatic compound metabolic process	
-Cre16.g668300						
-Cre16.g682001	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway			
-Cre16.g650950						
-Cre16.g687966	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			FAP5
-Cre16.g664650			Chloroplast			
-Cre16.g649600	GMM:35.1.12	not assigned.no ontology.pumilio/Puf RNA-binding domain-containing protein		GO:0003723	RNA binding	PUF4
-Cre16.g690300			Chloroplast			
-Cre16.g665650	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast	GO:0005525	GTP binding	
-Cre16.g691800			Chloroplast	GO:0010181	FMN binding	FLVB
-Cre16.g663280			Secretory pathway	GO:0051082;GO:0006457;GO:0005524	unfolded protein binding;protein folding;ATP binding	
-Cre16.g688950			Secretory pathway			
-Cre16.g680600			Chloroplast			
-Cre16.g677150			Mitochondrion			
-Cre16.g675188			Mitochondrion			
-Cre16.g690150	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway	GO:0016758;GO:0005789	"transferase activity, transferring hexosyl groups;endoplasmic reticulum membrane"	ALG6
-Cre16.g651801						
-Cre16.g653550						
-Cre16.g683900	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase	Secretory pathway	GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GDP2
-Cre16.g655850						
-Cre16.g674750			Mitochondrion	GO:0051726;GO:0005634	regulation of cell cycle;nucleus	
-Cre16.g675637	GMM:29.5.11.1;GMM:17.3.1.2.2	protein.degradation.ubiquitin.ubiquitin;hormone metabolism.brassinosteroid.synthesis-degradation.sterols.SMT2				SUM1
-Cre16.g658000						
-Cre16.g670550	GMM:28.2	DNA.repair		GO:0006281;GO:0004518	DNA repair;nuclease activity	
-Cre16.g660651						
-Cre16.g690902			Secretory pathway			
-Cre16.g671400	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS1
-Cre16.g661900	GMM:27.1.2	RNA.processing.RNA helicase	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL61
-Cre16.g695600	GMM:29.9;GMM:28.99	protein.co-chaperones;DNA.unspecified	Secretory pathway			DNJ10
-Cre16.g662000	GMM:27.1.2	RNA.processing.RNA helicase		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL62
-Cre16.g686700			Mitochondrion			
-Cre16.g691888	GMM:4.1.6	"glycolysis.cytosolic branch.fructose-2,6-bisphosphatase (Fru2,6BisPase)"	Mitochondrion	GO:0006003;GO:0005524;GO:0003824	"fructose 2,6-bisphosphate metabolic process;ATP binding;catalytic activity"	
-Cre16.g686002						
-Cre16.g680588	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family	Mitochondrion			
-Cre16.g660000			Chloroplast	GO:0016020	membrane	CPLD63
-Cre16.g649150			Mitochondrion			
-Cre16.g683400	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified	Mitochondrion			
-Cre16.g684350	GMM:7.1.3;GMM:13.1.1.1.4	OPP.oxidative PP.6-phosphogluconate dehydrogenase;amino acid metabolism.synthesis.central amino acid metabolism.GABA.gamma-hydroxybutyrate DH	Mitochondrion	GO:0055114;GO:0051287;GO:0004616	oxidation-reduction process;NAD binding;phosphogluconate dehydrogenase (decarboxylating) activity	
-Cre16.g669905	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre16.g663700			Chloroplast	GO:0004518	nuclease activity	
-Cre16.g690400	GMM:29.9	protein.co-chaperones	EndoplasmicReticulum			DNJ5
-Cre16.g665800	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase	Chloroplast			SSS4
-Cre16.g659050	GMM:18.5.2.8.1;GMM:18.5.2.1;GMM:18.5.2	"Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.2-phytyl-1,4-naphthoquinone methyltransferase.PHYLLO;Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.isochorismate synthase;Co-factor and vitamine metabolism.folate and vitamine K.vitamine K"	Chloroplast	GO:0030976	thiamine pyrophosphate binding	
-Cre16.g688638	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG33
-Cre16.g679550	GMM:29.5.5;GMM:20.1.7.6	protein.degradation.serine protease;stress.biotic.PR-proteins.PR6 (proteinase inhibitors)	Mitochondrion	GO:0005615	extracellular space	FAP277
-Cre16.g693202	GMM:29.5.11.3;GMM:14.3	protein.degradation.ubiquitin.E2;S-assimilation.sulfite redox	Chloroplast	GO:0055114;GO:0051536;GO:0020037;GO:0016491	oxidation-reduction process;iron-sulfur cluster binding;heme binding;oxidoreductase activity	SIR1
-Cre16.g674515	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm				DIC3
-Cre16.g654450			Mitochondrion			
-Cre16.g659000			Chloroplast			ATG13
-Cre16.g675602	GMM:34.3;GMM:34.2	transport.amino acids;transport.sugars	Secretory pathway			
-Cre16.g650625	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins	Chloroplast	GO:0070008;GO:0008236;GO:0006508;GO:0004252	serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity	MST1
-Cre16.g688975			Mitochondrion			
-Cre16.g664450	GMM:35.1.21	not assigned.no ontology.epsin N-terminal homology (ENTH) domain-containing protein				
-Cre16.g665100	GMM:34.21	transport.calcium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV3
-Cre16.g683450	GMM:2.1.2.1	major CHO metabolism.synthesis.starch.AGPase	Mitochondrion	GO:0016779;GO:0009058	nucleotidyltransferase activity;biosynthetic process	AGP2
-Cre16.g675973						
-Cre16.g670754	GMM:34.15	transport.potassium	Chloroplast			
-Cre16.g661650	GMM:27.3.3	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"	Mitochondrion			
-Cre16.g660900	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIL10
-Cre16.g694205			Chloroplast			
-Cre16.g680902	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			mmp16
-Cre16.g685250	GMM:29.5.1	protein.degradation.subtilases		GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB11
-Cre16.g669600			Mitochondrion			
-Cre16.g656200	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0005515	protein binding	
-Cre16.g647602	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0016787;GO:0008168;GO:0005524;GO:0003677	hydrolase activity;methyltransferase activity;ATP binding;DNA binding	
-Cre16.g649833				GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre16.g691756						
-Cre16.g663150	GMM:26.23	misc.rhodanese	Mitochondrion			
-Cre16.g662100			Chloroplast	GO:0003723	RNA binding	
-Cre16.g684850			Mitochondrion	GO:0008176;GO:0006400	tRNA (guanine-N7-)-methyltransferase activity;tRNA modification	
-Cre16.g668650						
-Cre16.g672273			Chloroplast			
-Cre16.g669125			Chloroplast	GO:0055114;GO:0046872;GO:0016491	oxidation-reduction process;metal ion binding;oxidoreductase activity	
-Cre16.g671900	GMM:31.3.1;GMM:27.3.48	cell.cycle.peptidylprolyl isomerase;RNA.regulation of transcription.FHA transcription factor		GO:0016853;GO:0005515	isomerase activity;protein binding	PIN4
-Cre16.g686500	GMM:26.13	misc.acid and other phosphatases		GO:0003993	acid phosphatase activity	
-Cre16.g671937						
-Cre16.g660331						
-Cre16.g669750						
-Cre16.g686200	GMM:3.2.1	minor CHO metabolism.trehalose.TPS		GO:0005992;GO:0003824	trehalose biosynthetic process;catalytic activity	TPS3
-Cre16.g684600	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Chloroplast	GO:0006893;GO:0000145	Golgi to plasma membrane transport;exocyst	SEC5
-Cre16.g663900	GMM:19.5	tetrapyrrole synthesis.porphobilinogen deaminase	Chloroplast	GO:0033014;GO:0004418	tetrapyrrole biosynthetic process;hydroxymethylbilane synthase activity	PBGD1
-Cre16.g655283						
-Cre16.g652400				GO:0005509	calcium ion binding	FAP183
-Cre16.g686750	GMM:34.7	transport.phosphate		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	PTA3
-Cre16.g688450						CFAP298
-Cre16.g680950						
-Cre16.g679893	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g678851	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP2
-Cre16.g691400			Mitochondrion			
-Cre16.g657600			Mitochondrion			
-Cre16.g659500			Secretory pathway			
-Cre16.g666200	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g668200	GMM:27.3.67;GMM:27.3.63	RNA.regulation of transcription.putative transcription regulator;RNA.regulation of transcription.PHD finger transcription factor		GO:0016568;GO:0005634;GO:0005515	chromatin modification;nucleus;protein binding	
-Cre16.g663600	GMM:34.7;GMM:34.2	transport.phosphate;transport.sugars		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	PHT7
-Cre16.g682350	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre16.g692000			Secretory pathway			
-Cre16.g690508			Mitochondrion			
-Cre16.g690800			Chloroplast			
-Cre16.g689300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g668850			Secretory pathway			MTA2
-Cre16.g687294			Chloroplast	GO:0051539;GO:0016992;GO:0015979;GO:0009107	"4 iron, 4 sulfur cluster binding;lipoate synthase activity;photosynthesis;lipoate biosynthetic process"	
-Cre16.g669500			Mitochondrion			
-Cre16.g690700			Chloroplast			
-Cre16.g654250						
-Cre16.g672250	GMM:26.13	misc.acid and other phosphatases	Secretory pathway	GO:0016787	hydrolase activity	MPA13
-Cre16.g680400			Chloroplast			
-Cre16.g673617	GMM:29.2.5	protein.synthesis.release		GO:0016149;GO:0006415;GO:0005737;GO:0003747	"translation release factor activity, codon specific;translational termination;cytoplasm;translation release factor activity"	PRF1
-Cre16.g655100	GMM:30.99	signalling.unspecified				
-Cre16.g674200			Chloroplast			
-Cre16.g695950	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Mitochondrion			MFL1
-Cre16.g677850			Chloroplast			
-Cre16.g686400			Chloroplast			
-Cre16.g649500						
-Cre16.g679051	GMM:26.1	misc.misc2				
-Cre16.g693500	GMM:10.5.2	cell wall.cell wall proteins.proline rich proteins	Chloroplast			FAP40
-Cre16.g684267						
-Cre16.g651850			Secretory pathway			
-Cre16.g680000	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion	GO:0046933;GO:0015986	"proton-transporting ATP synthase activity, rotational mechanism;ATP synthesis coupled proton transport"	ATP5
-Cre16.g674600			Chloroplast			
-Cre16.g692116				GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
-Cre16.g688900			Mitochondrion			CYG68
-Cre16.g658900	GMM:34.99	transport.misc				TRP10
-Cre16.g682150			Mitochondrion			
-Cre16.g682700						
-Cre16.g681600			Secretory pathway			CSV14
-Cre16.g673150	GMM:27.3.55	RNA.regulation of transcription.HDA				HDA14
-Cre16.g685400	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Mitochondrion			
-Cre16.g663551			Chloroplast			
-Cre16.g669525	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre16.g652000			Chloroplast			
-Cre16.g695851						
-Cre16.g649700	GMM:1.3.13	PS.calvin cycle.rubisco interacting	Chloroplast	GO:0005515	protein binding	
-Cre16.g662250			Secretory pathway			
-Cre16.g672350						
-Cre16.g661500			Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
-Cre16.g683437			Secretory pathway			
-Cre16.g673204			Mitochondrion	GO:0005509	calcium ion binding	
-Cre16.g667354						
-Cre16.g692250	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family		GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre16.g656466			Secretory pathway			
-Cre16.g667950			Secretory pathway			
-Cre16.g687301	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0005524;GO:0005515	ATP binding;protein binding	
-Cre16.g672833			Secretory pathway			
-Cre16.g689201			Chloroplast			
-Cre16.g673465						
-Cre16.g689983						
-Cre16.g678250			Chloroplast			
-Cre16.g670100	GMM:29.4	protein.postranslational modification	Chloroplast			
-Cre16.g685800						
-Cre16.g677050			Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre16.g655500			Secretory pathway			
-Cre16.g690500	GMM:29.2.2.3.1;GMM:29.2.1.2.2.1730;GMM:29.2.1.1.3.99	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7/L30/S12;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.unknown				NHP2
-Cre16.g672000			Mitochondrion			
-Cre16.g694850	GMM:13.1.2.3.2;GMM:13.1.2.3	amino acid metabolism.synthesis.glutamate family.arginine.acetylglutamate kinase;amino acid metabolism.synthesis.glutamate family.arginine	Chloroplast	GO:0006526;GO:0004358	arginine biosynthetic process;glutamate N-acetyltransferase activity	NGS1
-Cre16.g687742			Secretory pathway			
-Cre16.g680566	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre16.g681900	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0016020;GO:0015031	membrane;protein transport	SECY1
-Cre16.g673950			Secretory pathway			
-Cre16.g676757	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB8
-Cre16.g648100	GMM:31.1	cell.organisation		GO:0034314;GO:0030833;GO:0015629;GO:0005885;GO:0005515	Arp2/3 complex-mediated actin nucleation;regulation of actin filament polymerization;actin cytoskeleton;Arp2/3 protein complex;protein binding	
-Cre16.g667700						
-Cre16.g682475			Secretory pathway			
-Cre16.g680250			Secretory pathway			
-Cre16.g675600						
-Cre16.g679150						
-Cre16.g687650						ANK20
-Cre16.g692550	GMM:28.2	DNA.repair	Chloroplast	GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	MSH4
-Cre16.g695500			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre16.g676537			Chloroplast			
-Cre16.g662902	GMM:29.2.3	protein.synthesis.initiation		GO:0044237	cellular metabolic process	
-Cre16.g674900	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g653651			Secretory pathway			
-Cre16.g696000	GMM:3.5;GMM:26.2;GMM:10.1	minor CHO metabolism.others;misc.UDP glucosyl and glucoronyl transferases;cell wall.precursor synthesis	Secretory pathway	GO:0070569;GO:0008152	uridylyltransferase activity;metabolic process	
-Cre16.g690507			Mitochondrion			
-Cre16.g684500	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB62
-Cre16.g668250						
-Cre16.g691204						
-Cre16.g674291	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g648900			Mitochondrion			
-Cre16.g679333			Secretory pathway			
-Cre16.g648250						
-Cre16.g668502						
-Cre16.g684043			Mitochondrion	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	
-Cre16.g681690			Chloroplast			
-Cre16.g678101			Chloroplast			
-Cre16.g682800						
-Cre16.g680850			Chloroplast			MDA1
-Cre16.g690879			Secretory pathway	GO:0016020	membrane	FAP173
-Cre16.g692350	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g672700			Chloroplast			
-Cre16.g665550			Secretory pathway	GO:0051726	regulation of cell cycle	
-Cre16.g672750	GMM:27.4	RNA.RNA binding		GO:0003723	RNA binding	
-Cre16.g690900	GMM:29.5	protein.degradation	Mitochondrion	GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL8
-Cre16.g683793	GMM:33.99	development.unspecified		GO:0042254;GO:0005730	ribosome biogenesis;nucleolus	
-Cre16.g656500	GMM:34.99;GMM:34.1;GMM:27.3.35	transport.misc;transport.p- and v-ATPases;RNA.regulation of transcription.bZIP transcription factor family		GO:0046872;GO:0016021;GO:0015914;GO:0005524;GO:0004012;GO:0000287;GO:0000166	metal ion binding;integral component of membrane;phospholipid transport;ATP binding;phospholipid-translocating ATPase activity;magnesium ion binding;nucleotide binding	ALA3
-Cre16.g686850	GMM:34.7	transport.phosphate		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	PTA4
-Cre16.g693601	GMM:10.5.2	cell wall.cell wall proteins.proline rich proteins	Secretory pathway			ISG2
-Cre16.g669850	GMM:29.5	protein.degradation	Chloroplast			
-Cre16.g679221	GMM:31.1;GMM:27.3.39	cell.organisation;RNA.regulation of transcription.AtSR transcription factor family	Secretory pathway			ANK27
-Cre16.g653200						
-Cre16.g684603	GMM:27.1.20	RNA.processing.degradation dicer	Secretory pathway			
-Cre16.g684939	GMM:27.1.20	RNA.processing.degradation dicer	Secretory pathway			
-Cre16.g660550			Chloroplast			
-Cre16.g692004	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ21
-Cre16.g683953				GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre16.g662200			Mitochondrion			
-Cre16.g685150						
-Cre16.g693250			Mitochondrion			
-Cre16.g683035	GMM:29.5	protein.degradation	Mitochondrion			
-Cre16.g694204	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0016593;GO:0016570;GO:0006368	Cdc73/Paf1 complex;histone modification;transcription elongation from RNA polymerase II promoter	
-Cre16.g655900			Secretory pathway	GO:0032259;GO:0008168	methylation;methyltransferase activity	
-Cre16.g655150	GMM:1.1.99	PS.lightreaction.unspecified	Secretory pathway			
-Cre16.g693800				GO:0008270	zinc ion binding	
-Cre16.g683350						TEH6
-Cre16.g677650			Chloroplast			
-Cre16.g672200			Chloroplast	GO:0034453;GO:0008017;GO:0005813	microtubule anchoring;microtubule binding;centrosome	
-Cre16.g682251			Secretory pathway			
-Cre16.g658650	GMM:31.1.1.3.11;GMM:31.1	cell.organisation.cytoskeleton.Myosin.Class XI;cell.organisation		GO:0016459;GO:0005524;GO:0005515;GO:0003774	myosin complex;ATP binding;protein binding;motor activity	MYO1
-Cre16.g650050	GMM:26.23	misc.rhodanese	Chloroplast			
-Cre16.g689150	GMM:11.10.4	lipid metabolism.glycolipid synthesis.sulfolipid synthase	Chloroplast			SQD3
-Cre16.g677100			Secretory pathway			
-Cre16.g655200	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB6
-Cre16.g692650	GMM:3.5;GMM:10.5	minor CHO metabolism.others;cell wall.cell wall proteins				CGL4
-Cre16.g687854			Mitochondrion			
-Cre16.g685929						
-Cre16.g689650	GMM:31.1;GMM:29.5.2	cell.organisation;protein.degradation.autophagy		GO:0005737;GO:0000045	cytoplasm;autophagosome assembly	ATG8
-Cre16.g648500	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR23
-Cre16.g689199						
-Cre16.g651150						
-Cre16.g654100			Chloroplast			
-Cre16.g657200	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX17
-Cre16.g693850			Chloroplast			
-Cre16.g674650	GMM:18.13	Co-factor and vitamine metabolism.isochorismatase	Secretory pathway	GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre16.g669300			Mitochondrion			
-Cre16.g683950	GMM:29.3.4.99;GMM:29.3.4.1	protein.targeting.secretory pathway.unspecified;protein.targeting.secretory pathway.ER	Mitochondrion	GO:0006886;GO:0006614;GO:0005785;GO:0005525;GO:0005047;GO:0003924	intracellular protein transport;SRP-dependent cotranslational protein targeting to membrane;signal recognition particle receptor complex;GTP binding;signal recognition particle binding;GTPase activity	SRP1
-Cre16.g657350	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g674500	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
-Cre16.g678450			Mitochondrion			
-Cre16.g671000	GMM:9.2.3;GMM:9.2.1.3	mitochondrial electron transport / ATP synthesis.NADH-DH (type II).mitochondrial;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.mitochondrial	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NDA5
-Cre16.g653934						
-Cre16.g668837			Chloroplast			
-Cre16.g659600						
-Cre16.g695200						
-Cre16.g690250	GMM:29.1.30;GMM:23.5.2	protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase	Secretory pathway	GO:0009982;GO:0009451;GO:0006396;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA processing;RNA binding;pseudouridine synthesis	PUS18
-Cre16.g678400	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion			
-Cre16.g694403			Secretory pathway			
-Cre16.g682552	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG37
-Cre16.g679152						
-Cre16.g657050			Secretory pathway			
-Cre16.g649433						
-Cre16.g673553						
-Cre16.g673821	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g678100	GMM:29.3.4.99;GMM:29.3.4.3	protein.targeting.secretory pathway.unspecified;protein.targeting.secretory pathway.vacuole				VPS28
-Cre16.g691440				GO:0005515	protein binding	FAP43
-Cre16.g685389	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g667300						
-Cre16.g673550	GMM:29.2.3;GMM:13.99;GMM:13.1.3.4	protein.synthesis.initiation;amino acid metabolism.misc;amino acid metabolism.synthesis.aspartate family.methionine		GO:0044237	cellular metabolic process	CGLD36
-Cre16.g668600			Chloroplast			
-Cre16.g664050	GMM:20.1	stress.biotic				
-Cre16.g687070			Mitochondrion			
-Cre16.g661150			Chloroplast			CGL5
-Cre16.g664801	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Mitochondrion	GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL4
-Cre16.g682811			Mitochondrion			
-Cre16.g686173				GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	
-Cre16.g680678	GMM:27.1.19	RNA.processing.ribonucleases				TRZ2
-Cre16.g677429			Chloroplast			
-Cre16.g684100						
-Cre16.g676250			Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT28
-Cre16.g685901	GMM:29.3.1	protein.targeting.nucleus		GO:0008536;GO:0006886;GO:0005515	Ran GTPase binding;intracellular protein transport;protein binding	
-Cre16.g678094						
-Cre16.g692750						
-Cre16.g690000			Secretory pathway			HPAT2
-Cre16.g681200			Mitochondrion			
-Cre16.g688550	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0005515	protein binding	GSTS1
-Cre16.g658200			Mitochondrion			
-Cre16.g668950	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway	GO:0008270;GO:0006508;GO:0004181	zinc ion binding;proteolysis;metallocarboxypeptidase activity	
-Cre16.g676150	GMM:21.6	redox.dismutases and catalases	Secretory pathway	GO:0055114;GO:0046872;GO:0006801;GO:0004784	oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity	MSD3
-Cre16.g655430			Secretory pathway			
-Cre16.g689376	GMM:29.4	protein.postranslational modification				
-Cre16.g666250	GMM:34.99;GMM:34	transport.misc;transport	Secretory pathway			
-Cre16.g674050	GMM:26.1	misc.misc2		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH12
-Cre16.g679876	GMM:34.15	transport.potassium		GO:0051260	protein homooligomerization	
-Cre16.g650700	GMM:13.1.1.3.11	amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase	Mitochondrion			
-Cre16.g681351			Mitochondrion			
-Cre16.g661976						
-Cre16.g685700						
-Cre16.g674350			Secretory pathway	GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723	translation;ribosome;intracellular;structural constituent of ribosome;RNA binding	MRPS13
-Cre16.g671350	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS2
-Cre16.g669150	GMM:5.3	fermentation.ADH		GO:0055114;GO:0046872;GO:0016491	oxidation-reduction process;metal ion binding;oxidoreductase activity	ADH13
-Cre16.g652600			Mitochondrion			
-Cre16.g673057						
-Cre16.g657750			Mitochondrion			CCD2
-Cre16.g681251						
-Cre16.g675100			Mitochondrion	GO:0005515	protein binding	CPLD53
-Cre16.g690431				GO:0071949	FAD binding	
-Cre16.g661400						
-Cre16.g691552	GMM:9.2.2;GMM:9.2.1.4;GMM:9.2.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.internal matrix;mitochondrial electron transport / ATP synthesis.NADH-DH (type II).internal matrix	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NDA1
-Cre16.g680900	GMM:27.2	RNA.transcription	Chloroplast	GO:0006366;GO:0006351;GO:0005665;GO:0003899;GO:0003677	"transcription from RNA polymerase II promoter;transcription, DNA-templated;DNA-directed RNA polymerase II, core complex;DNA-directed RNA polymerase activity;DNA binding"	RPB1
-Cre16.g676600			Mitochondrion			
-Cre16.g681800			Secretory pathway	GO:0052726;GO:0052725;GO:0047325;GO:0032957;GO:0005622;GO:0005524;GO:0000287	"inositol-1,3,4-trisphosphate 5-kinase activity;inositol-1,3,4-trisphosphate 6-kinase activity;inositol tetrakisphosphate 1-kinase activity;inositol trisphosphate metabolic process;intracellular;ATP binding;magnesium ion binding"	
-Cre16.g688633	GMM:28.2	DNA.repair	Chloroplast			
-Cre16.g688414			Mitochondrion			
-Cre16.g694703				GO:0016020;GO:0008236;GO:0006508	membrane;serine-type peptidase activity;proteolysis	
-Cre16.g665250	GMM:1.1.99.1;GMM:1	PS.lightreaction.unspecified.TEF;PS	Chloroplast			TEF6
-Cre16.g650450						FAP219
-Cre16.g672609						
-Cre16.g686510			Mitochondrion;Chloroplast			
-Cre16.g654400			Mitochondrion			
-Cre16.g647500	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			NRX4
-Cre16.g686600						
-Cre16.g675749	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin				SUM2
-Cre16.g661050	GMM:29.2.1.2.2.34	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L34		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL34
-Cre16.g694207				GO:0055114	oxidation-reduction process	
-Cre16.g680150			Secretory pathway			
-Cre16.g670650			Secretory pathway			
-Cre16.g651450			Secretory pathway			
-Cre16.g671300				GO:0016021;GO:0015299;GO:0006812	integral component of membrane;solute:proton antiporter activity;cation transport	
-Cre16.g671600						
-Cre16.g688202			Chloroplast			
-Cre16.g683700				GO:0016021	integral component of membrane	
-Cre16.g675500	GMM:31.3.1;GMM:29.8;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.assembly and cofactor ligation;protein.folding.immunophilins (IMM).FKBPs	Chloroplast	GO:0006457	protein folding	FKB16-5
-Cre16.g675300	GMM:34.7;GMM:34.2	transport.phosphate;transport.sugars	Chloroplast	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	PHT8
-Cre16.g657450				GO:0016787	hydrolase activity	MPA12
-Cre16.g666050			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	CPLD49
-Cre16.g667769			Chloroplast			
-Cre16.g674890	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Secretory pathway	GO:0006355;GO:0003700	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	CGLD5B
-Cre16.g664700			Mitochondrion	GO:0016020	membrane	SHY1
-Cre16.g681100			Chloroplast			
-Cre16.g673050						
-Cre16.g666677			Mitochondrion			
-Cre16.g679557			Secretory pathway			FAS5
-Cre16.g673600	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g669350	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre16.g672600	GMM:29.6.1	protein.folding.prefoldin and trigger factor		GO:0005515	protein binding	Monad;WDR92
-Cre16.g694700						
-Cre16.g679400			Chloroplast			
-Cre16.g665050	GMM:34.21	transport.calcium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV2
-Cre16.g675200						
-Cre16.g648600			Secretory pathway			
-Cre16.g648800				GO:0005515	protein binding	
-Cre16.g692450			Chloroplast			
-Cre16.g684505			Secretory pathway			
-Cre16.g666602			Secretory pathway			
-Cre16.g681450			Mitochondrion			ANK6
-Cre16.g692100						
-Cre16.g659650	GMM:29.4	protein.postranslational modification				
-Cre16.g660750						CC2D2A
-Cre16.g661800						
-Cre16.g654900	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g667413						
-Cre16.g668400			Secretory pathway			
-Cre16.g668150			Secretory pathway			
-Cre16.g672850			Mitochondrion			
-Cre16.g662951	GMM:31.1;GMM:29.4	cell.organisation;protein.postranslational modification				
-Cre16.g692900						
-Cre16.g694942			Secretory pathway			
-Cre16.g694400	GMM:29.3.3	protein.targeting.chloroplast				TGD2
-Cre16.g686950	GMM:29.5.9	protein.degradation.AAA type		GO:0005524	ATP binding	CTF18
-Cre16.g678325			Mitochondrion			
-Cre16.g665850						FAP248
-Cre16.g682950	GMM:31.3	cell.cycle	Secretory pathway	GO:0030896;GO:0006281;GO:0000077;GO:0000075	checkpoint clamp complex;DNA repair;DNA damage checkpoint;cell cycle checkpoint	RAD9
-Cre16.g649950	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO24
-Cre16.g695300						
-Cre16.g671200						
-Cre16.g679750	GMM:26.1	misc.misc2		GO:0016787	hydrolase activity	
-Cre16.g676350	GMM:31.2	cell.division	Mitochondrion	GO:0005524	ATP binding	
-Cre16.g682026						
-Cre16.g672100						
-Cre16.g677989			Secretory pathway			
-Cre16.g680750			Chloroplast	GO:0005515	protein binding	
-Cre16.g662600	GMM:34.18	transport.unspecified anions	Chloroplast			LCI11C
-Cre16.g670950	GMM:1.1.5	PS.lightreaction.other electron carrier (ox/red)	Chloroplast	GO:0020037;GO:0009055	heme binding;electron carrier activity	CYC4
-Cre16.g685837			Secretory pathway			
-Cre16.g650350						
-Cre16.g680944	GMM:30.5;GMM:3.5;GMM:29.2.2.1	signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.export from nucleus	Chloroplast	GO:0005525	GTP binding	
-Cre16.g663876	GMM:31.2	cell.division	Mitochondrion			
-Cre16.g655800			Secretory pathway			
-Cre16.g661626						
-Cre16.g677750						
-Cre16.g680650			Mitochondrion			
-Cre16.g657100			Mitochondrion			
-Cre16.g670250						TOM6
-Cre16.g671329						DNJ4
-Cre16.g681354						
-Cre16.g672450						
-Cre16.g681350			Secretory pathway			
-Cre16.g685613			Mitochondrion	GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	
-Cre16.g653100			Mitochondrion			
-Cre16.g682050				GO:0098519	"nucleotide phosphatase activity, acting on free nucleotides"	
-Cre16.g676309	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g651100						
-Cre16.g685628						
-Cre16.g675650	GMM:13.2.4.3	amino acid metabolism.degradation.branched chain group.valine	Mitochondrion	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	ALD8
-Cre16.g673250	GMM:33.99;GMM:27.3.28	development.unspecified;RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	NRR1
-Cre16.g690350			Chloroplast			SNR6
-Cre16.g678550						
-Cre16.g658850	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				
-Cre16.g676197	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0042176;GO:0030234;GO:0000502	regulation of protein catabolic process;enzyme regulator activity;proteasome complex	RPN1
-Cre16.g691000	GMM:29.2.4	protein.synthesis.elongation	Chloroplast	GO:0043043;GO:0006414;GO:0005737;GO:0003746	peptide biosynthetic process;translational elongation;cytoplasm;translation elongation factor activity	EFP1
-Cre16.g671100	GMM:33.99;GMM:30.11.1	development.unspecified;signalling.light.COP9 signalosome		GO:0005515	protein binding	
-Cre16.g687850			Secretory pathway			
-Cre16.g678000			Chloroplast			CPL22
-Cre16.g647700			Chloroplast			
-Cre16.g660430						
-Cre16.g683250				GO:0016021	integral component of membrane	
-Cre16.g684750	GMM:3.5	minor CHO metabolism.others	Mitochondrion			
-Cre16.g687117			Secretory pathway	GO:0009976	tocopherol cyclase activity	
-Cre16.g677450	GMM:3.5	minor CHO metabolism.others	Chloroplast	GO:0016853;GO:0005975	isomerase activity;carbohydrate metabolic process	
-Cre16.g692902				GO:0005515	protein binding	
-Cre16.g683200						
-Cre16.g677950	GMM:26.7;GMM:20.2	"misc.oxidases - copper, flavone etc;stress.abiotic"		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	QOR1
-Cre16.g651650	GMM:29.1.5	protein.aa activation.isoleucine-tRNA ligase		GO:0006418;GO:0006355;GO:0005739;GO:0005524;GO:0004812;GO:0003690;GO:0000166	"tRNA aminoacylation for protein translation;regulation of transcription, DNA-templated;mitochondrion;ATP binding;aminoacyl-tRNA ligase activity;double-stranded DNA binding;nucleotide binding"	TSI2
-Cre16.g675525						
-Cre16.g661550			Chloroplast	GO:0009264;GO:0008253	deoxyribonucleotide catabolic process;5'-nucleotidase activity	
-Cre16.g685217			Mitochondrion	GO:0006913;GO:0005643	nucleocytoplasmic transport;nuclear pore	
-Cre16.g682600			Mitochondrion			
-Cre16.g668552			Secretory pathway			
-Cre16.g675000	GMM:19.6	tetrapyrrole synthesis.uroporphyrinogen III synthase		GO:0033014;GO:0004852	tetrapyrrole biosynthetic process;uroporphyrinogen-III synthase activity	HEMD1
-Cre16.g647800				GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre16.g686846			Chloroplast			
-Cre16.g658300			Chloroplast			
-Cre16.g658400	GMM:1.1.5.2	PS.lightreaction.other electron carrier (ox/red).ferredoxin	Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX2
-Cre16.g687630			Chloroplast			
-Cre16.g694200	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP15
-Cre16.g683483	GMM:28.2	DNA.repair	Mitochondrion			REX1
-Cre16.g693700	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC9
-Cre16.g677205	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway	GO:0004866	endopeptidase inhibitor activity	
-Cre16.g673852	GMM:4.1.15	glycolysis.cytosolic branch.phospho-enol-pyruvate carboxylase (PEPC)	Chloroplast	GO:0015977;GO:0008964;GO:0006099	carbon fixation;phosphoenolpyruvate carboxylase activity;tricarboxylic acid cycle	
-Cre16.g660225						
-Cre16.g652483			Mitochondrion			
-Cre16.g677000	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat				HSP70E
-Cre16.g694800			Chloroplast			
-Cre16.g687602			Mitochondrion			
-Cre16.g650800	GMM:29.3.2	protein.targeting.mitochondria				TIM13
-Cre16.g669050			Chloroplast			
-Cre16.g650900			Mitochondrion			
-Cre16.g684050			Mitochondrion			
-Cre16.g664150	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE18
-Cre16.g687950	GMM:9.3	mitochondrial electron transport / ATP synthesis.electron transfer flavoprotein	Mitochondrion			ETF1
-Cre16.g682850						
-Cre16.g676314	GMM:29.2.3	protein.synthesis.initiation		GO:0005852;GO:0005737;GO:0005515;GO:0003743	eukaryotic translation initiation factor 3 complex;cytoplasm;protein binding;translation initiation factor activity	EIF3H
-Cre16.g667850	GMM:23.5.5;GMM:23.5	nucleotide metabolism.deoxynucleotide metabolism.dUTP diphosphatase;nucleotide metabolism.deoxynucleotide metabolism		GO:0046080;GO:0016787	dUTP metabolic process;hydrolase activity	NSG10
-Cre16.g653750			Chloroplast			
-Cre16.g659150	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre16.g664250	GMM:13.1.5.3.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.OASTL	Secretory pathway			OASTL2
-Cre16.g662052	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
-Cre16.g667729						
-Cre16.g676700	GMM:3.5	minor CHO metabolism.others		GO:0007165	signal transduction	
-Cre16.g653400			Secretory pathway			
-Cre16.g667451			Chloroplast	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	TLP3
-Cre16.g669550	GMM:13.1.3.4.2;GMM:13.1.3.4	amino acid metabolism.synthesis.aspartate family.methionine.cystathionine beta-lyase;amino acid metabolism.synthesis.aspartate family.methionine		GO:0055114;GO:0030170;GO:0016491;GO:0008152	oxidation-reduction process;pyridoxal phosphate binding;oxidoreductase activity;metabolic process	METC
-Cre16.g696050						
-Cre16.g675900			Secretory pathway	GO:0003824	catalytic activity	OAD1
-Cre16.g656800			Secretory pathway			
-Cre16.g673450	GMM:30.2.17	signalling.receptor kinases.DUF 26		GO:0015074	DNA integration	
-Cre16.g691753			Chloroplast			
-Cre16.g670400			Chloroplast			
-Cre16.g670756						
-Cre16.g677800						
-Cre16.g679164						
-Cre16.g667150						
-Cre16.g684200			Secretory pathway;Chloroplast			
-Cre16.g656300	GMM:13.1.3.5.2	amino acid metabolism.synthesis.aspartate family.lysine.dihydrodipicolinate reductase		GO:0055114;GO:0009089;GO:0008839	oxidation-reduction process;lysine biosynthetic process via diaminopimelate;4-hydroxy-tetrahydrodipicolinate reductase	DPR1
-Cre16.g673953	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs		GO:0006457	protein folding	FKB16-7
-Cre16.g647550			Mitochondrion			HEL60
-Cre16.g693450			Secretory pathway			
-Cre16.g662550						SUM3
-Cre16.g685165						
-Cre16.g657800						CCD3
-Cre16.g694000	GMM:28.2	DNA.repair				
-Cre16.g661250				GO:0019825	oxygen binding	
-Cre16.g665328			Mitochondrion			
-Cre16.g691215						
-Cre16.g654500	GMM:29.5.11.20;GMM:29.2.3	protein.degradation.ubiquitin.proteasom;protein.synthesis.initiation	Chloroplast	GO:0005515	protein binding	EIF3F
-Cre16.g674450	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)		GO:0016021	integral component of membrane	
-Cre16.g652850	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				GTR4
-Cre16.g652300						CMA2
-Cre16.g676645						DRC8
-Cre16.g685100	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast			
-Cre16.g687050			Mitochondrion			
-Cre16.g688190	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion			
-Cre16.g695850						
-Cre16.g682200			Chloroplast			
-Cre16.g689050	GMM:11.9.4.2	lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH	Chloroplast	GO:0055114;GO:0006635;GO:0005777;GO:0003997;GO:0003995	oxidation-reduction process;fatty acid beta-oxidation;peroxisome;acyl-CoA oxidase activity;acyl-CoA dehydrogenase activity	
-Cre16.g671750	GMM:29.6.1	protein.folding.prefoldin and trigger factor		GO:0051082;GO:0016272;GO:0006457	unfolded protein binding;prefoldin complex;protein folding	PFD4
-Cre16.g659900			Chloroplast			
-Cre16.g683800						
-Cre16.g681550			Mitochondrion			CSV13
-Cre16.g689871	GMM:29.1.5	protein.aa activation.isoleucine-tRNA ligase	Mitochondrion	GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	
-Cre16.g647950			Mitochondrion			
-Cre16.g692200	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			MMP6
-Cre16.g671825			Chloroplast			
-Cre16.g689733			Secretory pathway			
-Cre16.g682587						
-Cre16.g678600			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre16.g666150	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0036158;GO:0036157	outer dynein arm assembly;outer dynein arm	DCC2
-Cre16.g688250			Chloroplast			
-Cre16.g688302			Chloroplast	GO:0004518	nuclease activity	
-Cre16.g660150	GMM:29.2.1.2.1.20	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S20		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	
-Cre16.g688200			Chloroplast			
-Cre16.g648050						
-Cre16.g655400	GMM:33.99	development.unspecified	Mitochondrion			
-Cre16.g661300				GO:0019825	oxygen binding	
-Cre16.g663500	GMM:29.5.11	protein.degradation.ubiquitin		GO:0008540;GO:0006511	"proteasome regulatory particle, base subcomplex;ubiquitin-dependent protein catabolic process"	RPN10
-Cre16.g682650			Mitochondrion			
-Cre16.g666576			Mitochondrion			
-Cre16.g648350	GMM:13.2.2.2	amino acid metabolism.degradation.glutamate family.proline	Mitochondrion	GO:0006562;GO:0004657	proline catabolic process;proline dehydrogenase activity	PDY2
-Cre16.g680300			Secretory pathway			
-Cre16.g657550	GMM:33.99	development.unspecified				
-Cre16.g657650						FAP35
-Cre16.g680230	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0016020;GO:0006886;GO:0006605	membrane;intracellular protein transport;protein targeting	SEC61G
-Cre16.g691754			Chloroplast			
-Cre16.g660024			Secretory pathway			
-Cre16.g671050						
-Cre16.g668700			Secretory pathway			
-Cre16.g685573	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0005515	protein binding	FAP214
-Cre16.g690050	GMM:9.6	mitochondrial electron transport / ATP synthesis.cytochrome c	Mitochondrion	GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	HCS2
-Cre16.g683050	GMM:33.99	development.unspecified	Chloroplast	GO:0046872;GO:0003723	metal ion binding;RNA binding	RNJ1
-Cre16.g685450	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC8
-Cre16.g685052						
-Cre16.g658775			Secretory pathway			
-Cre16.g691600			Mitochondrion			
-Cre16.g651300			Mitochondrion			
-Cre16.g676900	GMM:34.11;GMM:29.4	transport.NDP-sugars at the ER;protein.postranslational modification	Chloroplast	GO:0055085	transmembrane transport	
-Cre16.g679950	GMM:28.1	DNA.synthesis/chromatin structure				RFC3
-Cre16.g659700			Chloroplast			
-Cre16.g658450	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	
-Cre16.g685550	GMM:13.1.5.3.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.OASTL	Chloroplast			OASTL4
-Cre16.g681126			Secretory pathway			
-Cre16.g692300	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
-Cre16.g692500	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Secretory pathway	GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre16.g674950	GMM:16.1.4	secondary metabolism.isoprenoids.carotenoids	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre16.g679300			Chloroplast			CGL139
-Cre16.g695400						
-Cre16.g681657				GO:0005515	protein binding	
-Cre16.g667450	GMM:31.1;GMM:29.5.11.4.3.2;GMM:27.3.31	cell.organisation;protein.degradation.ubiquitin.E3.SCF.FBOX;RNA.regulation of transcription.TUB transcription factor family				TLP2
-Cre16.g681850	GMM:23.3.1.3	nucleotide metabolism.salvage.phosphoribosyltransferases.uracil phosphoribosyltransferase (UPP)				
-Cre16.g694208	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor	Mitochondrion			
-Cre16.g664251						
-Cre16.g656851						
-Cre16.g693750	GMM:27.3.65	RNA.regulation of transcription.polycomb group (PcG)	Mitochondrion	GO:0005515	protein binding	
-Cre16.g651900			Chloroplast			CRI1
-Cre16.g682000			Chloroplast			
-Cre16.g686622						
-Cre16.g665500			Mitochondrion			
-Cre16.g684861						
-Cre16.g688700	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	
-Cre16.g648288						
-Cre16.g686100	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre16.g691103						
-Cre16.g689647	GMM:33.99;GMM:32;GMM:29.2.3;GMM:27.3.36	"development.unspecified;micro RNA, natural antisense etc;protein.synthesis.initiation;RNA.regulation of transcription.argonaute transcription factor family"		GO:0005515;GO:0003676	protein binding;nucleic acid binding	AGO3
-Cre16.g683371	GMM:13.1.3.5.5	amino acid metabolism.synthesis.aspartate family.lysine.diaminopimelate decarboxylase		GO:0003824	catalytic activity	ODC2
-Cre16.g654800			Secretory pathway			
-Cre16.g671950	GMM:28	DNA	Chloroplast.Stroma			
-Cre16.g657964				GO:0016787	hydrolase activity	
-Cre16.g664301	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005524;GO:0003887;GO:0003677;GO:0003676	DNA replication;ATP binding;DNA-directed DNA polymerase activity;DNA binding;nucleic acid binding	POLQ1
-Cre16.g653850	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre16.g670000						
-Cre16.g651000	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0006260;GO:0005634;GO:0003677	DNA replication;nucleus;DNA binding	RFA3
-Cre16.g673505						
-Cre16.g664600	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOB16
-Cre16.g675750	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g653700	GMM:31.4	cell.vesicle transport	Mitochondrion			
-Cre16.g687406			Secretory pathway			
-Cre16.g662350	GMM:3.2.1	minor CHO metabolism.trehalose.TPS		GO:0005992;GO:0003824	trehalose biosynthetic process;catalytic activity	
-Cre16.g659300	GMM:21.2	redox.ascorbate and glutathione				CYB2
-Cre16.g666334	GMM:3.1.2.2	minor CHO metabolism.raffinose family.raffinose synthases.putative	Mitochondrion			
-Cre16.g666451			Mitochondrion			
-Cre16.g660350			Chloroplast	GO:0016788	"hydrolase activity, acting on ester bonds"	
-Cre16.g684400	GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g687652			Secretory pathway			
-Cre16.g674400			Secretory pathway			
-Cre16.g681051						
-Cre16.g673001			Chloroplast			LCI2
-Cre16.g691950	GMM:28.2	DNA.repair				
-Cre16.g675350	GMM:29.5.5;GMM:29.5.1	protein.degradation.serine protease;protein.degradation.subtilases	Mitochondrion	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
-Cre16.g683600						
-Cre16.g686000	GMM:27.1.1;GMM:27.1	RNA.processing.splicing;RNA.processing		GO:0006396;GO:0003723;GO:0003676	RNA processing;RNA binding;nucleic acid binding	
-Cre16.g663250						
-Cre16.g673100			Mitochondrion			
-Cre16.g674150			Chloroplast			
-Cre16.g656350						
-Cre16.g651550	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	MTT1
-Cre16.g656600	GMM:21.1	redox.thioredoxin		GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRX19
-Cre16.g678750						
-Cre16.g693900			Mitochondrion			PWR13
-Cre16.g649250			Secretory pathway			
-Cre16.g684650	GMM:31.1;GMM:27.2;GMM:15.2	"cell.organisation;RNA.transcription;metal handling.binding, chelation and storage"		GO:0005515	protein binding	
-Cre16.g669900						FAP399
-Cre16.g677900			Secretory pathway			
-Cre16.g694900						
-Cre16.g672721						
-Cre16.g649350			Mitochondrion			
-Cre16.g662750				GO:0019825	oxygen binding	
-Cre16.g650300	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR25
-Cre16.g670200	GMM:29.4	protein.postranslational modification				
-Cre16.g690130			Chloroplast			
-Cre16.g682100	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"				TDR1
-Cre16.g660850						
-Cre16.g652226						
-Cre16.g670750			Mitochondrion			
-Cre16.g694300						
-Cre16.g687450	GMM:34.15	transport.potassium	Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006813;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;potassium ion transport;cation transport	CPLD54
-Cre16.g680050	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				DRT2
-Cre16.g686789						
-Cre16.g648700	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre16.g651350			Secretory pathway	GO:0006914	autophagy	ATG17
-Cre16.g679700						
-Cre16.g667057						
-Cre16.g673650	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCB5
-Cre16.g681014			Mitochondrion			
-Cre16.g649800	GMM:35.1.5;GMM:33.99	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;development.unspecified	Mitochondrion	GO:0005634	nucleus	PPR3
-Cre16.g694500	GMM:29.9	protein.co-chaperones				DNJ37
-Cre16.g676000						
-Cre16.g653500			Mitochondrion			
-Cre16.g653338			Mitochondrion			
-Cre16.g655316						
-Cre16.g693203	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre16.g691200						
-Cre16.g686501			Secretory pathway			
-Cre16.g665750	GMM:27.1	RNA.processing	Mitochondrion	GO:0006396	RNA processing	RAA2
-Cre16.g695650						
-Cre16.g669126	GMM:5.3	fermentation.ADH	Chloroplast			ADH2
-Cre16.g695050	GMM:11.9.4.9	lipid metabolism.lipid degradation.beta-oxidation.multifunctional	Secretory pathway	GO:0055114;GO:0016491;GO:0006631;GO:0003857	oxidation-reduction process;oxidoreductase activity;fatty acid metabolic process;3-hydroxyacyl-CoA dehydrogenase activity	HCD1
-Cre16.g660700			Mitochondrion			
-Cre16.g680232	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family				
-Cre16.g654600			Secretory pathway			PHC56
-Cre16.g676670						
-Cre16.g680350						
-Cre16.g672500						
-Cre16.g659850			Chloroplast			CGL37
-Cre16.g676085						
-Cre16.g686641			Secretory pathway			
-Cre16.g679850	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG35
-Cre16.g649000	GMM:29.4.1.59;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g687182			Mitochondrion			
-Cre16.g652750	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO10
-Cre16.g649750			Mitochondrion			
-Cre16.g681700	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0022900;GO:0016651	"electron transport chain;oxidoreductase activity, acting on NAD(P)H"	NUOS4B
-Cre16.g667100	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX		GO:0005515	protein binding	LMR3
-Cre16.g695202						
-Cre16.g677382	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family	Chloroplast			
-Cre16.g682363			Mitochondrion			
-Cre16.g681353	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB61
-Cre16.g666627			Chloroplast			
-Cre16.g648451			Chloroplast			
-Cre16.g652350			Secretory pathway			
-Cre16.g654350	GMM:27.3.99	RNA.regulation of transcription.unclassified				SPL4
-Cre16.g688350			Chloroplast			
-Cre16.g690750	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0005515	protein binding	
-Cre16.g673729	GMM:29.9;GMM:29.6.2.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones	Chloroplast	GO:0006457;GO:0005737	protein folding;cytoplasm	CPN11
-Cre16.g689800						
-Cre16.g695800			Chloroplast	GO:2001070	starch binding	
-Cre16.g654050	GMM:1.5.3	PS.carbon concentrating mechanism.algal				
-Cre16.g669250			Chloroplast			
-Cre16.g655050						
-Cre16.g664850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g658926			Mitochondrion			
-Cre16.g663400			Chloroplast			LCI11A
-Cre16.g677550	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity	cya15
-Cre16.g669650	GMM:27.1.19	RNA.processing.ribonucleases	Chloroplast			
-Cre16.g689450						
-Cre16.g676100	GMM:28.2	DNA.repair				
-Cre16.g694202						
-Cre16.g662300	GMM:27.1	RNA.processing				SMP8
-Cre16.g689087						
-Cre16.g689851	GMM:30.2.12	signalling.receptor kinases.leucine rich repeat XII				
-Cre16.g689423				GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre16.g692228	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g668800			Secretory pathway			MTA4
-Cre16.g690702			Secretory pathway			
-Cre16.g677600				GO:0032259;GO:0008168	methylation;methyltransferase activity	SOM5
-Cre16.g689700	GMM:25;GMM:1.2.6	C1-metabolism;PS.photorespiration.hydroxypyruvate reductase	Chloroplast	GO:0055114;GO:0004616	oxidation-reduction process;phosphogluconate dehydrogenase (decarboxylating) activity	
-Cre16.g674852	GMM:31.6.1.9	cell.motility.eukaryotes.flagellar adhesion and gamete fusion	Secretory pathway			HAP2
-Cre16.g652150	GMM:4.1.6	"glycolysis.cytosolic branch.fructose-2,6-bisphosphatase (Fru2,6BisPase)"	Mitochondrion	GO:0006003;GO:0006000;GO:0005524;GO:0003873;GO:0003824	"fructose 2,6-bisphosphate metabolic process;fructose metabolic process;ATP binding;6-phosphofructo-2-kinase activity;catalytic activity"	
-Cre16.g688078						
-Cre16.g666500						BBS8
-Cre16.g672300	GMM:27.3.53	RNA.regulation of transcription.high mobility group family (HMG)	Chloroplast			
-Cre16.g668481			Mitochondrion			
-Cre16.g677093			Secretory pathway			
-Cre16.g650151	GMM:29.5.9	protein.degradation.AAA type	Mitochondrion	GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	
-Cre16.g673900	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPC3
-Cre16.g682369	GMM:34.12	transport.metal		GO:0046872;GO:0030001;GO:0000166	metal ion binding;metal ion transport;nucleotide binding	CTP1
-Cre16.g671650			Chloroplast			
-Cre16.g668350			Mitochondrion			
-Cre16.g649650				GO:0006950	response to stress	
-Cre16.g668125	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre16.g670151			Chloroplast			
-Cre16.g680500						EFH10
-Cre16.g656433	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB59
-Cre16.g674800			Chloroplast			
-Cre16.g684155	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
-Cre16.g680200			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre16.g661450	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTV3
-Cre16.g652050	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast	GO:0071949	FAD binding	ZXE3
-Cre16.g690506			Secretory pathway			
-Cre16.g666700						
-Cre16.g678300			Secretory pathway			
-Cre16.g667701			Secretory pathway			
-Cre16.g676400	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL63
-Cre16.g683081	GMM:21.2.2	redox.ascorbate and glutathione.glutathione				
-Cre16.g681352			Chloroplast			
-Cre16.g679200	GMM:29.5.11.20;GMM:29.3.5	protein.degradation.ubiquitin.proteasom;protein.targeting.peroxisomes	Chloroplast	GO:0042623;GO:0007031;GO:0006625;GO:0005778;GO:0005777;GO:0005524	"ATPase activity, coupled;peroxisome organization;protein targeting to peroxisome;peroxisomal membrane;peroxisome;ATP binding"	PEX1
-Cre16.g674152						
-Cre16.g692585	GMM:28.2	DNA.repair	Chloroplast			MSH4
-Cre16.g674602						
-Cre16.g663100	GMM:29.7	protein.glycosylation	Secretory pathway	GO:0016021;GO:0008963	integral component of membrane;phospho-N-acetylmuramoyl-pentapeptide-transferase activity	ALG7
-Cre16.g681750	GMM:34.21;GMM:30.3;GMM:3.3	transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	FAP381
-Cre16.g678997			Chloroplast	GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre16.g655550			Mitochondrion			
-Cre16.g652950				GO:0005515	protein binding	
-Cre16.g693650						
-Cre16.g655515						
-Cre16.g686202			Chloroplast			
-Cre16.g667353			Mitochondrion			
-Cre16.g648150	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
-Cre16.g683147			Mitochondrion			
-Cre16.g662852						
-Cre16.g666301				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS30
-Cre16.g661950						
-Cre16.g672453						
-Cre16.g660100			Chloroplast			
-Cre16.g691850	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase				COX90
-Cre16.g669123			Mitochondrion			
-Cre16.g665700						
-Cre16.g670850				GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
-Cre16.g681000						
-Cre16.g683707						
-Cre16.g675076			Chloroplast			
-Cre16.g694704			Chloroplast	GO:0005515	protein binding	
-Cre16.g678773	GMM:11.8.4	"lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	BSD2
-Cre16.g671450	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre16.g672041						
-Cre16.g679520			Mitochondrion			CSB60
-Cre16.g679600	GMM:27.1	RNA.processing				
-Cre16.g660601			Secretory pathway			
-Cre16.g678808	GMM:33.99;GMM:3.5;GMM:27.1	development.unspecified;minor CHO metabolism.others;RNA.processing		GO:0005515	protein binding	
-Cre16.g666000	GMM:29.3.1	protein.targeting.nucleus	Chloroplast			
-Cre16.g665450	GMM:34.21	transport.calcium		GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity	RYR1
-Cre16.g651750	GMM:29.1.5	protein.aa activation.isoleucine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	TSI
-Cre16.g687300			Chloroplast			CPLD61
-Cre16.g686061						
-Cre16.g690450	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase				FAP266
-Cre16.g656700	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN14A-2
-Cre16.g683850	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase	Mitochondrion	GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GDP1
-Cre16.g690095						
-Cre16.g677200						
-Cre16.g669549						
-Cre16.g656000			Secretory pathway			
-Cre16.g659400	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g651950			Secretory pathway			
-Cre16.g679450				GO:0032040	small-subunit processome	
-Cre16.g680550			Chloroplast			
-Cre16.g676800	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity	
-Cre16.g656100			Chloroplast			
-Cre16.g675630			Chloroplast			
-Cre16.g649100	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK13
-Cre16.g685950			Mitochondrion			
-Cre16.g683931			Mitochondrion			
-Cre16.g679781	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
-Cre16.g680131			Mitochondrion			
-Cre16.g682400						
-Cre16.g663200	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	FAP295
-Cre16.g673350			Chloroplast			
-Cre16.g690207	GMM:29.4	protein.postranslational modification				
-Cre16.g691352			Chloroplast			
-Cre16.g691776				GO:0006351	"transcription, DNA-templated"	
-Cre16.g688850	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	HPT2
-Cre16.g680790	GMM:29.4	protein.postranslational modification	Chloroplast			
-Cre16.g693200						
-Cre16.g678850	GMM:16.1.2.2	secondary metabolism.isoprenoids.mevalonate pathway.HMG-CoA synthase		GO:0008299;GO:0004421	isoprenoid biosynthetic process;hydroxymethylglutaryl-CoA synthase activity	
-Cre16.g684379			Chloroplast			
-Cre16.g658075				GO:0016787	hydrolase activity	
-Cre16.g658950			Chloroplast			
-Cre16.g665200			Chloroplast			
-Cre16.g691100						
-Cre16.g695550						
-Cre16.g650550	GMM:23.4.10	nucleotide metabolism.phosphotransfer and pyrophosphatases.nucleoside diphosphate kinase		GO:0006241;GO:0006228;GO:0006183;GO:0006165;GO:0004550	CTP biosynthetic process;UTP biosynthetic process;GTP biosynthetic process;nucleoside diphosphate phosphorylation;nucleoside diphosphate kinase activity	FAP103
-Cre16.g674250	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	SRS10
-Cre16.g667900	GMM:33.99;GMM:27.3.3	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"	Chloroplast	GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre16.g663800	GMM:34.8	transport.metabolite transporters at the envelope membrane	Chloroplast			CGL51
-Cre16.g657250	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX19
-Cre16.g659450			Secretory pathway			
-Cre16.g670500	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0006508;GO:0004176	proteolysis;ATP-dependent peptidase activity	
-Cre16.g654150						FAP63
-Cre16.g686552						
-Cre16.g686300			Chloroplast			
-Cre16.g664500	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified				BBS3
-Cre16.g658700						FAP376
-Cre16.g680005						
-Cre16.g675861	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin				
-Cre16.g683500	GMM:29.2.3;GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL64
-Cre16.g660300				GO:0055114	oxidation-reduction process	
-Cre16.g682138						
-Cre16.g684900			Chloroplast			
-Cre16.g688863				GO:0005515	protein binding	
-Cre16.g651200			Mitochondrion			
-Cre16.g649900	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR24
-Cre16.g663950	GMM:17.3.1.2.6	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.DWF7	Secretory pathway	GO:0055114;GO:0016491;GO:0006633;GO:0005506	oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding	ERG3
-Cre16.g653258	GMM:31.1	cell.organisation	Secretory pathway	GO:0005515	protein binding	
-Cre16.g688500			Mitochondrion			
-Cre16.g656950						
-Cre16.g657300	GMM:31.4;GMM:17.3.1.2.99	cell.vesicle transport;hormone metabolism.brassinosteroid.synthesis-degradation.sterols.other	Secretory pathway			CPI1
-Cre16.g650600			Secretory pathway			MST1
-Cre16.g684550	GMM:7.1.3	OPP.oxidative PP.6-phosphogluconate dehydrogenase		GO:0051287	NAD binding	
-Cre16.g678150			Secretory pathway			
-Cre16.g674627						
-Cre16.g660951			Chloroplast			
-Cre16.g685300			Secretory pathway			
-Cre16.g691439						CSB63
-Cre16.g694402			Mitochondrion			
-Cre16.g654700			Secretory pathway			PHC61
-Cre16.g676750			Chloroplast	GO:0005515	protein binding	
-Cre16.g650200	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP17
-Cre16.g670800				GO:0051082;GO:0015631;GO:0007021	unfolded protein binding;tubulin binding;tubulin complex assembly	TFC1
-Cre16.g668550	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0046872	metal ion binding	
-Cre16.g681250			Secretory pathway			
-Cre16.g686958						
-Cre16.g676200	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525;GO:0003924	GTP binding;GTPase activity	
-Cre16.g692751	GMM:21.1.1;GMM:21.1	redox.thioredoxin.PDIL;redox.thioredoxin	Secretory pathway	GO:0045454	cell redox homeostasis	PDI3
-Cre16.g647534	GMM:35.1.26;GMM:29.5.7	not assigned.no ontology.DC1 domain containing protein;protein.degradation.metalloprotease				NRX4
-Cre16.g676421	GMM:27.3.66	RNA.regulation of transcription.pseudo ARR transcription factor family		GO:0005515;GO:0000160	protein binding;phosphorelay signal transduction system	
-Cre16.g688050						
-Cre16.g671685			Secretory pathway	GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	
-Cre16.g685949						
-Cre16.g675150	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g687800	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK22
-Cre16.g684065			Mitochondrion			
-Cre16.g657000	GMM:27.2	RNA.transcription		GO:0006352;GO:0005634	"DNA-templated transcription, initiation;nucleus"	
-Cre16.g679669	GMM:16.1.1.3	secondary metabolism.isoprenoids.non-mevalonate pathway.CMS	Chloroplast			CMS1
-Cre16.g663650	GMM:33.99;GMM:31.4	development.unspecified;cell.vesicle transport	Chloroplast			TRS33
-Cre16.g668100			Chloroplast			
-Cre16.g676300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g655750						TEK1
-Cre16.g660050				GO:0016020	membrane	
-Cre16.g651700						
-Cre16.g686550			Mitochondrion			
-Cre16.g684800	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	protein binding	
-Cre16.g687200			Chloroplast			
-Cre16.g658150	GMM:29.4	protein.postranslational modification				
-Cre16.g692003						
-Cre16.g694750			Secretory pathway			
-Cre16.g694450	GMM:29.9	protein.co-chaperones	Chloroplast			DNJ36
-Cre16.g656150			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre16.g679151				GO:0005515	protein binding	
-Cre16.g650850						
-Cre16.g672800	GMM:3.5;GMM:10.1.1.1	minor CHO metabolism.others;cell wall.precursor synthesis.NDP sugar pyrophosphorylase.GDP mannose				GMP1
-Cre16.g689950				GO:0005515	protein binding	
-Cre16.g650750			Chloroplast			FAP268
-Cre16.g652650						
-Cre16.g650500			Chloroplast			
-Cre16.g674300	GMM:31.1;GMM:27.3.39	cell.organisation;RNA.regulation of transcription.AtSR transcription factor family	Chloroplast			FAP269
-Cre16.g664750				GO:0005515	protein binding	
-Cre16.g660800	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion			TIM44
-Cre16.g670050	GMM:31.4	cell.vesicle transport				
-Cre16.g673300			Chloroplast			
-Cre16.g653250						
-Cre16.g657850	GMM:29.9;GMM:29.3.4.1;GMM:20.2.1	protein.co-chaperones;protein.targeting.secretory pathway.ER;stress.abiotic.heat	EndoplasmicReticulum	GO:0031204;GO:0008565	"posttranslational protein targeting to membrane, translocation;protein transporter activity"	SEC63
-Cre16.g652700	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114	oxidation-reduction process	
-Cre16.g670652						
-Cre16.g676869	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g667550						
-Cre16.g685900	GMM:26.6	misc.O-methyl transferases		GO:0008168;GO:0008152;GO:0006479	methyltransferase activity;metabolic process;protein methylation	PRMT3
-Cre16.g652250			Secretory pathway			CMA3
-Cre16.g672497	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	
-Cre16.g665000						UMP1
-Cre16.g648950						
-Cre16.g688600			Secretory pathway	GO:0006281;GO:0004518	DNA repair;nuclease activity	
-Cre16.g661000	GMM:21.3	redox.heme				
-Cre16.g664000	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	HLM25
-Cre16.g654526						
-Cre16.g686398			Mitochondrion			
-Cre16.g684715	GMM:32;GMM:27.1.20;GMM:27.1.19	"micro RNA, natural antisense etc;RNA.processing.degradation dicer;RNA.processing.ribonucleases"	Mitochondrion	GO:0016891;GO:0006396;GO:0005524;GO:0004525;GO:0003723;GO:0003676	"endoribonuclease activity, producing 5'-phosphomonoesters;RNA processing;ATP binding;ribonuclease III activity;RNA binding;nucleic acid binding"	DCL2
-Cre16.g691750	GMM:26.1	misc.misc2		GO:0016811	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides"	AMI1
-Cre16.g675301	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005515	protein binding	
-Cre16.g690319				GO:0016021;GO:0006810;GO:0005337	integral component of membrane;transport;nucleoside transmembrane transporter activity	
-Cre16.g685053			Chloroplast			
-Cre16.g688901	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383	intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity	cyg68
-Cre16.g665300						
-Cre16.g673841			Secretory pathway			
-Cre16.g661350	GMM:1.3.13	PS.calvin cycle.rubisco interacting	Chloroplast			RMT1
-Cre16.g655450	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre16.g675413						
-Cre16.g691664			Mitochondrion			
-Cre16.g674000	GMM:33.99;GMM:29.5	development.unspecified;protein.degradation				wdr2
-Cre16.g666300	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g657700			Mitochondrion			
-Cre16.g656750			Mitochondrion			
-Cre16.g682450						
-Cre16.g685050	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast	GO:0005515	protein binding	LCI15
-Cre16.g675850	GMM:11.9.4.2	lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH		GO:0055114;GO:0050660;GO:0016627;GO:0008152;GO:0003995	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity, acting on the CH-CH group of donors;metabolic process;acyl-CoA dehydrogenase activity"	
-Cre16.g659550			Secretory pathway			
-Cre16.g679900	GMM:28.99;GMM:27.1.19	DNA.unspecified;RNA.processing.ribonucleases		GO:0004527;GO:0003676	exonuclease activity;nucleic acid binding	XRN3
-Cre16.g676500			Chloroplast			
-Cre16.g684450	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g651500	GMM:33.99;GMM:30.11.1	development.unspecified;signalling.light.COP9 signalosome				
-Cre16.g680800				GO:0005515	protein binding	CGL155
-Cre16.g671250	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	
-Cre16.g648200	GMM:26.10;GMM:26.1;GMM:17.2.2	misc.cytochrome P450;misc.misc2;hormone metabolism.auxin.signal transduction	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP744C1
-Cre16.g682750						
-Cre16.g688800						
-Cre16.g654850	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g675550	GMM:29.8;GMM:29.6.3.1;GMM:29.6	protein.assembly and cofactor ligation;protein.folding.immunophilins (IMM).FKBPs;protein.folding	Chloroplast	GO:0006457	protein folding	FKB16-2
-Cre16.g668900			Chloroplast	GO:0016021	integral component of membrane	MTA3
-Cre16.g681802	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005515;GO:0004672	protein phosphorylation;protein binding;protein kinase activity	
-Cre16.g693300			Secretory pathway			
-Cre16.g681301				GO:0005515	protein binding	MOT12
-Cre16.g649200			Chloroplast			
-Cre16.g669400						
-Cre16.g690991	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion;Chloroplast	GO:0006414;GO:0003746	translational elongation;translation elongation factor activity	
-Cre16.g685350			Chloroplast			
-Cre16.g679109			Chloroplast			YEE3
-Cre16.g685200	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre16.g653601				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL33
-Cre16.g666550	GMM:21.3	redox.heme	Chloroplast			SOUL3
-Cre16.g680454				GO:0005515	protein binding	
-Cre16.g692400	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases		GO:0016568;GO:0006355;GO:0005634	"chromatin modification;regulation of transcription, DNA-templated;nucleus"	
-Cre16.g669200						
-Cre16.g695900						
-Cre16.g648550	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO23
-Cre16.g659667			Mitochondrion			
-Cre16.g685750			Secretory pathway			
-Cre16.g674850						
-Cre16.g691350			Secretory pathway			
-Cre16.g673109	GMM:11.1.12	lipid metabolism.FA synthesis and FA elongation.ACP protein	Mitochondrion			ACP1
-Cre16.g691202						
-Cre16.g672150	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre16.g659100			Secretory pathway			
-Cre16.g691351						
-Cre16.g677702						
-Cre16.g688751			Mitochondrion			
-Cre16.g682250			Secretory pathway			
-Cre16.g662150	GMM:29.8;GMM:1.1.3.5	protein.assembly and cofactor ligation;PS.lightreaction.cytochrome b6/f.biogenesis	Chloroplast			CCB1
-Cre16.g686800	GMM:34.7	transport.phosphate		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	PTA2
-Cre16.g683954						
-Cre16.g668451			Secretory pathway			
-Cre16.g689100	GMM:29.1.30	protein.aa activation.pseudouridylate synthase		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS6
-Cre16.g678350			Mitochondrion			CAM19
-Cre16.g690950			Secretory pathway			
-Cre16.g667800						
-Cre16.g677700			Mitochondrion	GO:0017056;GO:0005643	structural constituent of nuclear pore;nuclear pore	
-Cre16.g661700			Secretory pathway			
-Cre16.g649550			Secretory pathway			
-Cre16.g695250			Secretory pathway			
-Cre16.g657979						
-Cre16.g677765	GMM:27.3.66	RNA.regulation of transcription.pseudo ARR transcription factor family	Secretory pathway	GO:0004866	endopeptidase inhibitor activity	
-Cre16.g664400						
-Cre16.g693819						PWR12
-Cre16.g675700						
-Cre16.g684000	GMM:29.5.7	protein.degradation.metalloprotease				
-Cre16.g655250			Secretory pathway			
-Cre16.g685725			Mitochondrion			
-Cre16.g658600						
-Cre16.g663450			Chloroplast			LCI11B
-Cre16.g672385	GMM:13.1.7.7;GMM:13.1.7	amino acid metabolism.synthesis.histidine.imidazoleglycerol-phosphate synthase (cyclase);amino acid metabolism.synthesis.histidine		GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	HIS5
-Cre16.g672650	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP14
-Cre16.g677001			Mitochondrion			
-Cre16.g669700						
-Cre16.g678213	GMM:29.4;GMM:11.9.1	protein.postranslational modification;lipid metabolism.lipid degradation.palmitoyl-protein hydrolase	Secretory pathway	GO:0098599;GO:0008474;GO:0002084	palmitoyl hydrolase activity;palmitoyl-(protein) hydrolase activity;protein depalmitoylation	
-Cre16.g673554						
-Cre16.g695218	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g678900	GMM:3.8	minor CHO metabolism.galactose	Chloroplast	GO:0000160	phosphorelay signal transduction system	HKR6
-Cre16.g681914						
-Cre16.g689600						FAP73
-Cre16.g674700			Mitochondrion			
-Cre16.g657400						
-Cre16.g692600	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	ULP2
-Cre16.g671700			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre16.g663750			Secretory pathway			
-Cre16.g677653						
-Cre16.g657150			Chloroplast	GO:0008080	N-acetyltransferase activity	
-Cre16.g675246	GMM:27.3.99;GMM:27.3.63;GMM:27.3.44	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.PHD finger transcription factor;RNA.regulation of transcription.chromatin remodeling factors		GO:0005515;GO:0003682	protein binding;chromatin binding	
-Cre16.g674403	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g692901	GMM:31.1;GMM:27.2	cell.organisation;RNA.transcription	Chloroplast			
-Cre16.g687600			Secretory pathway			
-Cre16.g675958	GMM:28.99	DNA.unspecified		GO:0016021	integral component of membrane	
-Cre16.g678050	GMM:27.1.1	RNA.processing.splicing		GO:0006397	mRNA processing	SRE3
-Cre16.g691327			Secretory pathway			
-Cre16.g675050						
-Cre16.g694809			Secretory pathway			
-Cre16.g647850			Secretory pathway			
-Cre16.g688526	GMM:29.4;GMM:1.1.30	protein.postranslational modification;PS.lightreaction.state transition	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g684150			Chloroplast			
-Cre16.g677350			Mitochondrion			
-Cre16.g659250	GMM:21.2	redox.ascorbate and glutathione				CYB5
-Cre16.g687700						
-Cre16.g685277	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified				AP2M2
-Cre16.g672049			Secretory pathway			
-Cre16.g688000	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP2
-Cre16.g650425	GMM:28.99	DNA.unspecified				
-Cre16.g687550	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	CGL99
-Cre16.g678551	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG34
-Cre16.g683150			Mitochondrion			
-Cre16.g692800	GMM:3.5;GMM:16.8.2	minor CHO metabolism.others;secondary metabolism.flavonoids.chalcones				
-Cre16.g661200	GMM:21.3	redox.heme		GO:0019825	oxygen binding	
-Cre16.g682923			Mitochondrion			
-Cre16.g686250						
-Cre16.g656400	GMM:11.10.3	lipid metabolism.glycolipid synthesis.UDP-sulfoquinovose synthase	Chloroplast	GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SQD1
-Cre16.g690655			Mitochondrion			
-Cre16.g659950	GMM:29.2.1.1.1.1.5	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S5	Chloroplast	GO:0006412;GO:0005840;GO:0003735;GO:0003723	translation;ribosome;structural constituent of ribosome;RNA binding	PRPS5
-Cre16.g688650	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase				MOT43
-Cre16.g660470			Mitochondrion			
-Cre16.g687150						
-Cre16.g668500						
-Cre16.g677300	GMM:24	biodegradation of xenobiotics	Chloroplast			GOX16
-Cre16.g672050						
-Cre16.g664100			Chloroplast			
-Cre16.g658350			Secretory pathway			
-Cre16.g674179	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g667200						
-Cre16.g658250			Chloroplast			
-Cre16.g650400	GMM:27.3.99	RNA.regulation of transcription.unclassified				CPL20
-Cre16.g663315			Chloroplast			
-Cre16.g694201						
-Cre16.g667250			Chloroplast			
-Cre16.g690543			Mitochondrion			
-Cre16.g691550						
-Cre16.g669000						
-Cre16.g686734	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g659200	GMM:26.1	misc.misc2	Mitochondrion	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP742A1
-Cre16.g679250	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELIP1
-Cre16.g655650						
-Cre16.g684149			Secretory pathway			
-Cre16.g671500						
-Cre16.g678452						
-Cre16.g682305						
-Cre16.g673850			Mitochondrion			
-Cre16.g652900	GMM:28.99;GMM:27.3.99;GMM:27.1	DNA.unspecified;RNA.regulation of transcription.unclassified;RNA.processing		GO:0003676	nucleic acid binding	
-Cre16.g694550	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g682550	GMM:30.2.12;GMM:30.2.11;GMM:30.2.10;GMM:17.3.2.1	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;signalling.receptor kinases.leucine rich repeat X;hormone metabolism.brassinosteroid.signal transduction.BRI	Mitochondrion;Chloroplast	GO:0005515	protein binding	
-Cre16.g677026	GMM:8.1.1.1	TCA / organic transformation.TCA.pyruvate DH.E1		GO:0008152;GO:0003824	metabolic process;catalytic activity	PDH1
-Cre16.g673281	GMM:26.14	misc.oxygenases				
-Cre16.g674065	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g682900	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Chloroplast			CLPR2
-Cre16.g662702	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre16.g674100			Mitochondrion;Chloroplast			
-Cre16.g670755						
-Cre16.g675950	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
-Cre16.g648850			Mitochondrion	GO:0003877	ATP adenylyltransferase activity	ADS1
-Cre16.g678661	GMM:26.1	misc.misc2	Chloroplast			
-Cre16.g674938			Chloroplast			
-Cre16.g687500	GMM:31.1	cell.organisation		GO:0034314;GO:0007015;GO:0005885;GO:0005856;GO:0005524	Arp2/3 complex-mediated actin nucleation;actin filament organization;Arp2/3 protein complex;cytoskeleton;ATP binding	ARP2
-Cre16.g672945						
-Cre16.g670501			Chloroplast			
-Cre16.g671800			Chloroplast			PGA8
-Cre16.g665600	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CSK7
-Cre16.g676550						
-Cre16.g686286			Secretory pathway			
-Cre16.g673400				GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	
-Cre16.g685451			Mitochondrion			
-Cre16.g690509						
-Cre16.g652200	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP9
-Cre16.g662500			Mitochondrion	GO:0005515	protein binding	
-Cre16.g684300			Chloroplast	GO:0016020	membrane	YGG3
-Cre16.g687060			Chloroplast			
-Cre16.g693400			Secretory pathway			
-Cre16.g657950				GO:0016020;GO:0007155	membrane;cell adhesion	SSA5
-Cre16.g653050	GMM:27.1	RNA.processing		GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
-Cre16.g687000	GMM:34.12	transport.metal	Secretory pathway	GO:0034755;GO:0016021;GO:0005381	iron ion transmembrane transport;integral component of membrane;iron ion transmembrane transporter activity	
-Cre16.g656250	GMM:33.99;GMM:27.4;GMM:27.1.1	development.unspecified;RNA.RNA binding;RNA.processing.splicing		GO:0003676	nucleic acid binding	SMP12
-Cre16.g664200	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE33
-Cre16.g689001			Secretory pathway			
-Cre16.g689250	GMM:11.10.4	lipid metabolism.glycolipid synthesis.sulfolipid synthase	Mitochondrion	GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	GTR23
-Cre16.g675250	GMM:18.11;GMM:18	Co-factor and vitamine metabolism.lipoic acid;Co-factor and vitamine metabolism	Mitochondrion	GO:0006464	cellular protein modification process	LPL2
-Cre16.g661100	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPK7
-Cre16.g652550	GMM:29.2.1.1.1.2.24	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L24	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL24
-Cre16.g665364	GMM:4.1.16;GMM:30.3;GMM:29.4	glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g678650						
-Cre16.g648650	GMM:28.2	DNA.repair				
-Cre16.g672602	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g651050	GMM:1.1.5	PS.lightreaction.other electron carrier (ox/red)	Chloroplast	GO:0020037;GO:0009055	heme binding;electron carrier activity	CYC6
-Cre16.g691050	GMM:31.2;GMM:27.3.99	cell.division;RNA.regulation of transcription.unclassified				
-Cre16.g693204			Chloroplast			FAP348
-Cre16.g682052			Chloroplast			
-Cre16.g688201			Chloroplast			
-Cre16.g669800	GMM:33.99;GMM:29.4;GMM:29.2.2	development.unspecified;protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g683650	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g667350			Chloroplast	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV6
-Cre16.g674534			Chloroplast			
-Cre16.g659750	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP15
-Cre16.g670350			Secretory pathway			
-Cre16.g678437	GMM:16.1.4.7	secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Chloroplast	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
-Cre16.g659800			Chloroplast			
-Cre16.g679445			Secretory pathway			FAS6
-Cre16.g687901			Secretory pathway			
-Cre16.g694206			Mitochondrion			
-Cre16.g684827	GMM:27.1.20	RNA.processing.degradation dicer	Secretory pathway			
-Cre16.g683100			Mitochondrion			
-Cre16.g650100			Chloroplast	GO:0045158;GO:0017004;GO:0009512	"electron transporter, transferring electrons within cytochrome b6/f complex of photosystem II activity;cytochrome complex assembly;cytochrome b6f complex"	PETN
-Cre16.g654300	GMM:23.4.10	nucleotide metabolism.phosphotransfer and pyrophosphatases.nucleoside diphosphate kinase		GO:0006241;GO:0006228;GO:0006183;GO:0006165;GO:0005515;GO:0004550	CTP biosynthetic process;UTP biosynthetic process;GTP biosynthetic process;nucleoside diphosphate phosphorylation;protein binding;nucleoside diphosphate kinase activity	RSP23
-Cre16.g654950			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR3
-Cre16.g681400						
-Cre16.g672161			Chloroplast			
-Cre16.g695450				GO:0003676	nucleic acid binding	UAF4
-Cre16.g661876			Chloroplast			
-Cre16.g669950			Chloroplast			ALG14
-Cre16.g679800	GMM:26.1	misc.misc2		GO:0016787	hydrolase activity	
-Cre16.g673000	GMM:34.12;GMM:33.99;GMM:15.3	transport.metal;development.unspecified;metal handling.regulation	Secretory pathway			
-Cre16.g685650			Secretory pathway	GO:0016020;GO:0004970	membrane;ionotropic glutamate receptor activity	GLR1
-Cre16.g662950			Mitochondrion			ANK3
-Cre16.g692050	GMM:31.4	cell.vesicle transport	Mitochondrion	GO:0005515	protein binding	SYP3
-Cre16.g669450						
-Cre16.g682013			Chloroplast			
-Cre16.g675450	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre16.g686900						
-Cre16.g687900	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA7
-Cre16.g677877			Secretory pathway			
-Cre16.g685000	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast			
-Cre16.g653150						CPR3
-Cre16.g680700						
-Cre16.g673203						
-Cre16.g681466			Mitochondrion			
-Cre16.g689535				GO:0046872	metal ion binding	
-Cre16.g654000				GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre16.g676402						
-Cre16.g658800			Secretory pathway			
-Cre16.g648750			Mitochondrion			
-Cre16.g661638						
-Cre16.g689500	GMM:29.4	protein.postranslational modification	Mitochondrion			
-Cre16.g677541			Chloroplast			
-Cre16.g656551	GMM:21.1	redox.thioredoxin	Secretory pathway	GO:0045454	cell redox homeostasis	PDI
-Cre16.g666653			Mitochondrion			
-Cre16.g670300	GMM:35.1.41;GMM:27.1.1	not assigned.no ontology.hydroxyproline rich proteins;RNA.processing.splicing				PRP39
-Cre16.g687518	GMM:29.2.3	protein.synthesis.initiation		GO:0044237	cellular metabolic process	
-Cre16.g694950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre16.g669193	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
-Cre16.g670900						
-Cre16.g683300						
-Cre16.g661750			Secretory pathway	GO:0006468;GO:0005516;GO:0004683	protein phosphorylation;calmodulin binding;calmodulin-dependent protein kinase activity	
-Cre16.g662650			Chloroplast	GO:0008080	N-acetyltransferase activity	
-Cre16.g690200	GMM:9.7;GMM:34.13;GMM:29.3.2	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase;transport.peptides and oligopeptides;protein.targeting.mitochondria	Mitochondrion	GO:0051205;GO:0016021	protein insertion into membrane;integral component of membrane	OXA1
-Cre16.g663850	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase				SSS5
-Cre16.g668000						
-Cre16.g673200						
-Cre16.g671150			Mitochondrion			
-Cre16.g670973	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0005515	protein binding	GST3
-Cre16.g683595	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	CAX4
-Cre16.g670617						
-Cre16.g684022			Mitochondrion			
-Cre16.g681578	GMM:31.2	cell.division	Secretory pathway	GO:0030071;GO:0005680	regulation of mitotic metaphase/anaphase transition;anaphase-promoting complex	APC8
-Cre16.g666100						
-Cre16.g695350						
-Cre16.g649466	GMM:34.21	transport.calcium	Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	CAX5
-Cre16.g657500			Chloroplast			
-Cre22.g754197			Chloroplast			
-Cre22.g753597						
-Cre22.g753497			Chloroplast			
-Cre22.g754047			Secretory pathway			
-Cre22.g753997						
-Cre22.g753447						
-Cre22.g753547						
-Cre22.g753947			Mitochondrion			
-Cre22.g753647						
-Cre22.g754097			Chloroplast			
-Cre22.g753747			Chloroplast			
-Cre22.g754247						
-Cre22.g753847	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre22.g753347						
-Cre22.g754147						
-Cre22.g753897			Secretory pathway			
-Cre22.g753697						
-Cre22.g753797						
-Cre22.g753397						
-Cre42.g760347			Mitochondrion			
-Cre42.g760397						
-Cre42.g760447	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre36.g759747			Secretory pathway			
-Cre36.g759597	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0008270	zinc ion binding	
-Cre36.g759647	GMM:2.1.1.2	major CHO metabolism.synthesis.sucrose.SPP	Chloroplast			sph1
-Cre36.g759547						
-Cre36.g759697			Secretory pathway			
-Cre50.g761397	GMM:29.1	protein.aa activation		GO:0003723	RNA binding	
-Cre50.g761497	GMM:34.14	transport.unspecified cations	Mitochondrion	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	
-Cre50.g761447	GMM:27.4	RNA.RNA binding		GO:0008168;GO:0006355;GO:0003723	"methyltransferase activity;regulation of transcription, DNA-templated;RNA binding"	
-Cre26.g756797	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	
-Cre26.g757097						
-Cre26.g756747						
-Cre26.g756997						
-Cre26.g756697			Chloroplast			
-Cre26.g756847			Mitochondrion			
-Cre26.g757047						FAP368
-Cre26.g756547						
-Cre26.g756647			Mitochondrion			
-Cre26.g756897						
-Cre26.g756597						
-Cre26.g756947						
-Cre19.g751197			Secretory pathway			
-Cre19.g750847			Mitochondrion	GO:0016020	membrane	
-Cre19.g751247						
-Cre19.g750897	GMM:23.2	nucleotide metabolism.degradation	Secretory pathway	GO:0008270	zinc ion binding	
-Cre19.g750397						
-Cre19.g750997	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre19.g750547	GMM:9.2.2;GMM:9.2.1.2	mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.external	Chloroplast	GO:0055114;GO:0016491;GO:0005509	oxidation-reduction process;oxidoreductase activity;calcium ion binding	NDA2
-Cre19.g750197	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	
-Cre19.g750297						
-Cre19.g751297			Mitochondrion			
-Cre19.g751147	GMM:30.6;GMM:30.2.22;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;signalling.receptor kinases.proline extensin like;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion;Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre19.g750747			Chloroplast			NCL38
-Cre19.g750497			Mitochondrion			NCL36
-Cre19.g750147			Chloroplast			
-Cre19.g750447	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
-Cre19.g751047						
-Cre19.g750097						
-Cre19.g751347	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion	GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	
-Cre19.g750697			Chloroplast			NCL37
-Cre19.g750947	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre19.g750647	GMM:30.2.8.1;GMM:30.2.13;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 1;signalling.receptor kinases.leucine rich repeat XIII;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre19.g751097	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre19.g750797			Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre19.g750347			Secretory pathway			
-Cre19.g750597	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre19.g750247	GMM:34.14	transport.unspecified cations	Chloroplast			
-Cre46.g760947						
-Cre46.g760997						FAP389
-Cre46.g761047						
-Cre34.g759147	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
-Cre34.g759197			Secretory pathway			
-Cre34.g759097						
-Cre41.g760297						
-Cre48.g761247						
-Cre48.g761147			Mitochondrion			
-Cre48.g761197	GMM:29.2.1.1.1.2.3	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L3	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	
-Cre44.g760697						
-Cre44.g760747						
-Cre32.g758547						
-Cre32.g758697						
-Cre32.g758597						
-Cre32.g758747			Mitochondrion			
-Cre32.g758647						
-Cre32.g758797			Mitochondrion	GO:0006281;GO:0005524;GO:0005515;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;protein binding;helicase activity;DNA helicase activity;telomere maintenance	
-Cre06.g263176			Secretory pathway			
-Cre06.g259401			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre06.g306800				GO:0004674	protein serine/threonine kinase activity	CGL126
-Cre06.g300050			Chloroplast			OPR27
-Cre06.g271800	GMM:33.99	development.unspecified				LCI36
-Cre06.g303450			Mitochondrion			
-Cre06.g278220	GMM:28.99;GMM:26.2;GMM:10.3.2	DNA.unspecified;misc.UDP glucosyl and glucoronyl transferases;cell wall.hemicellulose synthesis.glucuronoxylan	Secretory pathway			ELG38
-Cre06.g282900						
-Cre06.g305350						
-Cre06.g289300						
-Cre06.g294000	GMM:26.1	misc.misc2				CGL113
-Cre06.g273700	GMM:29.8;GMM:1.1.1.3	protein.assembly and cofactor ligation;PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			HCF136
-Cre06.g299900						
-Cre06.g309800			Chloroplast			MOT2
-Cre06.g278114			Mitochondrion			
-Cre06.g299200	GMM:29.5	protein.degradation		GO:0005524	ATP binding	
-Cre06.g278106						
-Cre06.g253102						
-Cre06.g282400						
-Cre06.g289200			Mitochondrion			
-Cre06.g293950	GMM:25.1;GMM:25;GMM:1.2.5	C1-metabolism.glycine hydroxymethyltransferase;C1-metabolism;PS.photorespiration.serine hydroxymethyltransferase		GO:0016740	transferase activity	SHMT2
-Cre06.g270250	GMM:31.2	cell.division		GO:0006270	DNA replication initiation	CDC45
-Cre06.g266750	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB11
-Cre06.g267550	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies		GO:0034464	BBSome	BBS5
-Cre06.g278223			Secretory pathway			
-Cre06.g287900			Secretory pathway			
-Cre06.g291550			Secretory pathway			
-Cre06.g280700	GMM:27.3.73	RNA.regulation of transcription.Zn-finger(CCHC)	Chloroplast			
-Cre06.g302300				GO:0003677	DNA binding	
-Cre06.g276200			Secretory pathway			
-Cre06.g285300	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	SUT1
-Cre06.g250276						
-Cre06.g273500	GMM:23.2	nucleotide metabolism.degradation	Secretory pathway	GO:0016787	hydrolase activity	
-Cre06.g278250				GO:0070652;GO:0051225	HAUS complex;spindle assembly	
-Cre06.g267000				GO:0016740;GO:0008152;GO:0005542	transferase activity;metabolic process;folic acid binding	
-Cre06.g274550	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g268950	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g278192						
-Cre06.g285950			Chloroplast			
-Cre06.g278149			Chloroplast			
-Cre06.g275100	GMM:30.5;GMM:29.2.2.3.1;GMM:27.4	signalling.G-proteins;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre06.g250050			Chloroplast			
-Cre06.g278107			Chloroplast			
-Cre06.g251200	GMM:31.6.1.3.2.1	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A		GO:0030991	intraciliary transport particle A	IFT43
-Cre06.g281286						
-Cre06.g278278						
-Cre06.g297800						
-Cre06.g279400	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Secretory pathway	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	
-Cre06.g254700						
-Cre06.g258200	GMM:31.2;GMM:29.6;GMM:29.5.11.20	cell.division;protein.folding;protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	
-Cre06.g282100						
-Cre06.g255950	GMM:29.2.2.3.4	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins				
-Cre06.g296100			Secretory pathway	GO:0003824	catalytic activity	
-Cre06.g302900	GMM:3.5	minor CHO metabolism.others		GO:0005096	GTPase activator activity	
-Cre06.g269450	GMM:29.2.3	protein.synthesis.initiation		GO:0005852;GO:0005737;GO:0003743;GO:0003676	eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity;nucleic acid binding	EIF3G
-Cre06.g269650			Chloroplast	GO:2001070	starch binding	
-Cre06.g278157			Chloroplast			
-Cre06.g278148	GMM:7.1.3;GMM:13.1.1.1.4	OPP.oxidative PP.6-phosphogluconate dehydrogenase;amino acid metabolism.synthesis.central amino acid metabolism.GABA.gamma-hydroxybutyrate DH	Chloroplast	GO:0051287	NAD binding	
-Cre06.g257500	GMM:31.6.1.1;GMM:30.7;GMM:3.7	cell.motility.eukaryotes.basal bodies;signalling.14-3-3 proteins;minor CHO metabolism.sugar kinases		GO:0019904	protein domain specific binding	FTT2
-Cre06.g282826			Chloroplast			
-Cre06.g285200	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases	Chloroplast	GO:0016787	hydrolase activity	NDH1
-Cre06.g254100	GMM:31.1	cell.organisation	Mitochondrion			HRP6
-Cre06.g306501			Secretory pathway			
-Cre06.g263700			Secretory pathway			
-Cre06.g276650	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO2
-Cre06.g267100	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified				SRP68
-Cre06.g260050						
-Cre06.g255750			Chloroplast			EZY1C
-Cre06.g263841	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway			
-Cre06.g288700	GMM:1.2.2	PS.photorespiration.glycolate oxydase	Mitochondrion	GO:0055114;GO:0050660;GO:0016491;GO:0003824	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;catalytic activity	GYD1
-Cre06.g296200	GMM:4.1.16;GMM:30.3;GMM:29.4.1;GMM:29.4	glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g258250			Secretory pathway			
-Cre06.g298200			Secretory pathway			
-Cre06.g288450				GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre06.g310400						
-Cre06.g303900				GO:0016021	integral component of membrane	
-Cre06.g285150	GMM:26.12;GMM:21.2.1	misc.peroxidases;redox.ascorbate and glutathione.ascorbate	Chloroplast	GO:0055114;GO:0020037;GO:0006979;GO:0004601	oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity	APX2
-Cre06.g294850	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC10
-Cre06.g278093	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Mitochondrion			ELG20
-Cre06.g264600	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO14
-Cre06.g266500			Secretory pathway			
-Cre06.g271000			Secretory pathway			
-Cre06.g250350						
-Cre06.g278299						
-Cre06.g255800						
-Cre06.g307200						
-Cre06.g257150	GMM:29.2.1.2.2.537;GMM:29.2.1.2.2.0537	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L37A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L37A		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL37A
-Cre06.g253754						
-Cre06.g265850	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Mitochondrion	GO:0008236;GO:0006508;GO:0005515	serine-type peptidase activity;proteolysis;protein binding	TSP2
-Cre06.g293051	GMM:34.5	transport.ammonium	Secretory pathway	GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	AMT3
-Cre06.g279950						
-Cre06.g253459						
-Cre06.g281950			Mitochondrion			
-Cre06.g303572						
-Cre06.g263200						FAP325
-Cre06.g281350	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0030163;GO:0006508;GO:0005524;GO:0004252;GO:0004176	protein catabolic process;proteolysis;ATP binding;serine-type endopeptidase activity;ATP-dependent peptidase activity	LON1
-Cre06.g249550						
-Cre06.g259700			Mitochondrion			
-Cre06.g252450	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	
-Cre06.g284500	GMM:28.99;GMM:27.1.19	DNA.unspecified;RNA.processing.ribonucleases				RPH1
-Cre06.g278174						
-Cre06.g252650	GMM:16.5.1.1.1.4;GMM:13.2.4.4	secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.methylthioalkylmalate isomerase small subunit (MAM-IS);amino acid metabolism.degradation.branched chain group.leucine	Chloroplast	GO:0008152	metabolic process	LEU1S
-Cre06.g298600						
-Cre06.g302551						
-Cre06.g274850	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR4
-Cre06.g303200	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			MAW7
-Cre06.g259000			Secretory pathway			
-Cre06.g290150			Mitochondrion	GO:0042274	ribosomal small subunit biogenesis	CGL65
-Cre06.g280420			Secretory pathway	GO:0016779	nucleotidyltransferase activity	
-Cre06.g278216						
-Cre06.g268400	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO9
-Cre06.g278265	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g249700			Chloroplast	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
-Cre06.g278154						
-Cre06.g296850						FAP81
-Cre06.g278118						
-Cre06.g303183	GMM:29.4	protein.postranslational modification				PTK4
-Cre06.g309717	GMM:18.7	Co-factor and vitamine metabolism.iron-sulphur clusters	Chloroplast			
-Cre06.g278257			Chloroplast			
-Cre06.g278162	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC3
-Cre06.g280950	GMM:4.1.14	glycolysis.cytosolic branch.pyruvate kinase (PK)		GO:0030955;GO:0006096;GO:0004743;GO:0000287	potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding	PYK2
-Cre06.g277650						
-Cre06.g255200						
-Cre06.g297016	GMM:28.2	DNA.repair		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
-Cre06.g261850			Chloroplast			
-Cre06.g256526						
-Cre06.g283350						MRPS34
-Cre06.g283975			Secretory pathway			
-Cre06.g293650						
-Cre06.g271300	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO8
-Cre06.g261350						
-Cre06.g277350	GMM:27.3.55	RNA.regulation of transcription.HDA				HDA13
-Cre06.g296936			Secretory pathway			
-Cre06.g303650	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0003743	translational initiation;translation initiation factor activity	
-Cre06.g289000			Secretory pathway			
-Cre06.g262150			Chloroplast			
-Cre06.g264850						
-Cre06.g256700			Chloroplast			
-Cre06.g297900			Mitochondrion	GO:0016021	integral component of membrane	
-Cre06.g311900	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAB7
-Cre06.g286950			Secretory pathway			
-Cre06.g253000						MTA1
-Cre06.g300750	GMM:27.1.1	RNA.processing.splicing		GO:0005681;GO:0000398	"spliceosomal complex;mRNA splicing, via spliceosome"	
-Cre06.g280200				GO:0016021;GO:0006355;GO:0005634	"integral component of membrane;regulation of transcription, DNA-templated;nucleus"	
-Cre06.g305800	GMM:29.5	protein.degradation				
-Cre06.g311950	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG3
-Cre06.g254027			Chloroplast			
-Cre06.g272500			Chloroplast			
-Cre06.g290300			Mitochondrion			
-Cre06.g305550						
-Cre06.g294550			Chloroplast			
-Cre06.g296000						PSK1
-Cre06.g283550	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Chloroplast			
-Cre06.g290450	GMM:29.4;GMM:27.4	protein.postranslational modification;RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre06.g285650	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005664;GO:0003677	DNA replication;nuclear origin of replication recognition complex;DNA binding	ORC6
-Cre06.g292750			Secretory pathway	GO:0008430	selenium binding	
-Cre06.g304250						RLS2
-Cre06.g269000						
-Cre06.g306100						
-Cre06.g278086						
-Cre06.g301476						
-Cre06.g268100	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB10
-Cre06.g278116			Chloroplast			
-Cre06.g294650	GMM:13.1.5.2.3;GMM:13.1.1.3.11;GMM:1.2.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.serine glyoxylate aminotransferase;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase;PS.photorespiration.aminotransferases peroxisomal	Chloroplast			AGT1
-Cre06.g308250	GMM:29.2.1.2.1.4	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S4		GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723	translation;ribosome;intracellular;structural constituent of ribosome;RNA binding	RPS4
-Cre06.g265150	GMM:29.5.11.5;GMM:29.5.11	protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin	Chloroplast			
-Cre06.g310800			Mitochondrion			
-Cre06.g308750				GO:0016021	integral component of membrane	
-Cre06.g254550						
-Cre06.g260300						
-Cre06.g296300			Secretory pathway			SRR1
-Cre06.g278550	GMM:9.1.2	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear	Secretory pathway			
-Cre06.g306021						
-Cre06.g260700	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006863;GO:0006810;GO:0005345;GO:0005215	transmembrane transport;membrane;purine nucleobase transport;transport;purine nucleobase transmembrane transporter activity;transporter activity	XUV1
-Cre06.g258650			Chloroplast			PGM6
-Cre06.g299000	GMM:29.2.1.1.4.2	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit	Chloroplast	GO:0005840	ribosome	PRPL21
-Cre06.g305200	GMM:27.3.11	RNA.regulation of transcription.C2H2 zinc finger family				
-Cre06.g278197	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
-Cre06.g292400			Chloroplast			
-Cre06.g292600			Mitochondrion			OPR26
-Cre06.g275150	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	CGL69
-Cre06.g294900			Chloroplast			
-Cre06.g272600			Secretory pathway	GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre06.g306300	GMM:19.10;GMM:19.1	tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase	Chloroplast	GO:0016851;GO:0015995;GO:0015979	magnesium chelatase activity;chlorophyll biosynthetic process;photosynthesis	CHLI1
-Cre06.g253150	GMM:29.5.7	protein.degradation.metalloprotease				
-Cre06.g257650	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress"	MSRA2
-Cre06.g301900						
-Cre06.g274350	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR5
-Cre06.g287300			Secretory pathway			
-Cre06.g301251						
-Cre06.g277600						
-Cre06.g287600						
-Cre06.g278244			Chloroplast	GO:0009116	nucleoside metabolic process	
-Cre06.g290900						
-Cre06.g271900						
-Cre06.g252050						
-Cre06.g266550						
-Cre06.g278232			Chloroplast			
-Cre06.g251500	GMM:22.1.7;GMM:22.1.6	polyamine metabolism.synthesis.spermine synthase;polyamine metabolism.synthesis.spermidine synthase		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	SPS1
-Cre06.g281650						
-Cre06.g248750			Mitochondrion			
-Cre06.g275800	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB3
-Cre06.g310900			Mitochondrion			
-Cre06.g254400	GMM:8.1.8	TCA / organic transformation.TCA.fumarase	Mitochondrion	GO:0016836;GO:0016829	hydro-lyase activity;lyase activity	FUM1
-Cre06.g278134			Mitochondrion			
-Cre06.g284050	GMM:27.3.51	"RNA.regulation of transcription.general transcription, TBP-binding protein"		GO:0006355	"regulation of transcription, DNA-templated"	TAF1
-Cre06.g278098	GMM:13.2.4.4	amino acid metabolism.degradation.branched chain group.leucine				MCCA
-Cre06.g250000						
-Cre06.g297400	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	
-Cre06.g298350	GMM:29.2.3	protein.synthesis.initiation		GO:0005515	protein binding	FAP224
-Cre06.g295376						
-Cre06.g283600			Chloroplast			
-Cre06.g302800	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g279300				GO:0005515	protein binding	
-Cre06.g255550			Chloroplast			
-Cre06.g253975						
-Cre06.g274450				GO:0005515	protein binding	
-Cre06.g262601	GMM:28.2	DNA.repair	Chloroplast			
-Cre06.g253569			Chloroplast			
-Cre06.g250150						
-Cre06.g278181	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Chloroplast			
-Cre06.g303800				GO:0005515	protein binding	
-Cre06.g270450			Secretory pathway			
-Cre06.g278290			Chloroplast			
-Cre06.g256420	GMM:27.2	RNA.transcription		GO:0017025;GO:0008270;GO:0006384;GO:0006355;GO:0006352;GO:0000126	"TBP-class protein binding;zinc ion binding;transcription initiation from RNA polymerase III promoter;regulation of transcription, DNA-templated;DNA-templated transcription, initiation;transcription factor TFIIIB complex"	
-Cre06.g287800			Secretory pathway			
-Cre06.g299300	GMM:31.6.1.1;GMM:31.1.1.2;GMM:31.1	cell.motility.eukaryotes.basal bodies;cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0031122;GO:0007020;GO:0007017;GO:0005874;GO:0003924;GO:0000930	cytoplasmic microtubule organization;microtubule nucleation;microtubule-based process;microtubule;GTPase activity;gamma-tubulin complex	TUG1
-Cre06.g249101						
-Cre06.g267650	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g278190			Mitochondrion			
-Cre06.g254175						PR72
-Cre06.g270900	GMM:27.2;GMM:27.1	RNA.transcription;RNA.processing	Mitochondrion	GO:0016817	"hydrolase activity, acting on acid anhydrides"	SUV3
-Cre06.g272250			Secretory pathway			PHC27
-Cre06.g278285						
-Cre06.g278247			Mitochondrion			
-Cre06.g304913						
-Cre06.g300139			Mitochondrion			
-Cre06.g253750			Secretory pathway			EZY2
-Cre06.g261300			Chloroplast			
-Cre06.g273800	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion			
-Cre06.g253350	GMM:1.2.4.4;GMM:1.2.4	PS.photorespiration.glycine cleavage.H protein;PS.photorespiration.glycine cleavage	Mitochondrion			GCSH
-Cre06.g262850	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAB23
-Cre06.g301100			Mitochondrion			
-Cre06.g302250						
-Cre06.g278209			Secretory pathway			PRL8
-Cre06.g309200			Chloroplast			
-Cre06.g266850	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre06.g299800	GMM:11.1.8	lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	LCL1
-Cre06.g301400						
-Cre06.g311350			Secretory pathway			
-Cre06.g273100	GMM:26.3	"misc.gluco-, galacto- and mannosidases"	Secretory pathway	GO:0019028	viral capsid	
-Cre06.g278222	GMM:33.99;GMM:30.5;GMM:30.2.99;GMM:29.4	development.unspecified;signalling.G-proteins;signalling.receptor kinases.misc;protein.postranslational modification		GO:0005515	protein binding	
-Cre06.g283250						
-Cre06.g262500			Mitochondrion			
-Cre06.g270726						
-Cre06.g286050	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP20
-Cre06.g307100	GMM:35.1.1	not assigned.no ontology.ABC1 family protein				AKC2
-Cre06.g281563						
-Cre06.g278101	GMM:13.1.4.5	amino acid metabolism.synthesis.branched chain group.isoleucine specific				STD1
-Cre06.g280450						
-Cre06.g273850	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB7
-Cre06.g276001						TOM5
-Cre06.g297300						
-Cre06.g278160	GMM:2.1	major CHO metabolism.synthesis	Secretory pathway			PRL5
-Cre06.g310500	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family	Mitochondrion	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre06.g278249	GMM:16.2;GMM:13.1.1.2.1	secondary metabolism.phenylpropanoids;amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase		GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	AST5
-Cre06.g309350	GMM:29.3.4.1	protein.targeting.secretory pathway.ER	Secretory pathway	GO:0046923;GO:0016021;GO:0006621	ER retention sequence binding;integral component of membrane;protein retention in ER lumen	ERD2C
-Cre06.g309050	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion	GO:0006355;GO:0005634	"regulation of transcription, DNA-templated;nucleus"	NOT2
-Cre06.g252800			Secretory pathway	GO:0006629	lipid metabolic process	
-Cre06.g264750	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA14
-Cre06.g264700	GMM:28.1.3	DNA.synthesis/chromatin structure.histone	Secretory pathway			CSS1
-Cre06.g259100			Chloroplast			
-Cre06.g260776			Secretory pathway			
-Cre06.g302150			Chloroplast			
-Cre06.g282700						
-Cre06.g258100			Mitochondrion			
-Cre06.g264150						MAW11
-Cre06.g255050						
-Cre06.g288500			Secretory pathway			RRA2
-Cre06.g261100						
-Cre06.g278292						
-Cre06.g282750			Mitochondrion			
-Cre06.g271250	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR8
-Cre06.g256600						
-Cre06.g279800						
-Cre06.g257200						
-Cre06.g278225	GMM:26.5	misc.acyl transferases				
-Cre06.g286250	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MPC1
-Cre06.g278146			Mitochondrion			
-Cre06.g249450						
-Cre06.g278136	GMM:29.5.11.4.2;GMM:28.1.3;GMM:27.3.12	protein.degradation.ubiquitin.E3.RING;DNA.synthesis/chromatin structure.histone;RNA.regulation of transcription.C3H zinc finger family		GO:0046872;GO:0008270;GO:0005515	metal ion binding;zinc ion binding;protein binding	
-Cre06.g269200	GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XI	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	cya7
-Cre06.g267750	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway	GO:0006508;GO:0005515;GO:0004252	proteolysis;protein binding;serine-type endopeptidase activity	
-Cre06.g257050	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase				GBS2
-Cre06.g259476						
-Cre06.g278085						
-Cre06.g292950			Chloroplast	GO:0006260;GO:0005634	DNA replication;nucleus	
-Cre06.g278168	GMM:34.99	transport.misc		GO:0005488	binding	
-Cre06.g308350	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	
-Cre06.g263289			Secretory pathway	GO:0016765	"transferase activity, transferring alkyl or aryl (other than methyl) groups"	
-Cre06.g281850			Mitochondrion			
-Cre06.g291750						
-Cre06.g308050			Secretory pathway			
-Cre06.g268900			Mitochondrion			
-Cre06.g256250	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF14
-Cre06.g307650			Secretory pathway			
-Cre06.g310250			Chloroplast			
-Cre06.g299550						
-Cre06.g301806						PHC76
-Cre06.g294750	GMM:19.15	tetrapyrrole synthesis.chlorophyll synthase	Chloroplast	GO:0016021;GO:0004659	integral component of membrane;prenyltransferase activity	CHLG
-Cre06.g283700			Mitochondrion			
-Cre06.g293750				GO:0046872	metal ion binding	
-Cre06.g250450	GMM:34.99	transport.misc	Secretory pathway	GO:0016020	membrane	
-Cre06.g278260	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre06.g259950			Chloroplast			
-Cre06.g300400	GMM:29.5	protein.degradation				
-Cre06.g278267			Secretory pathway			
-Cre06.g269100			Mitochondrion	GO:0008080	N-acetyltransferase activity	
-Cre06.g252250						
-Cre06.g265300			Secretory pathway			CSS2
-Cre06.g278143	GMM:10.1.6	cell wall.precursor synthesis.GAE				GAE
-Cre06.g278255			Chloroplast			
-Cre06.g296400	GMM:13.2.4.4	amino acid metabolism.degradation.branched chain group.leucine	Mitochondrion	GO:0055114;GO:0050660;GO:0016627;GO:0008152;GO:0003995	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity, acting on the CH-CH group of donors;metabolic process;acyl-CoA dehydrogenase activity"	
-Cre06.g279050			Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g255850			Chloroplast			
-Cre06.g307950			Mitochondrion	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	
-Cre06.g303000			Mitochondrion			
-Cre06.g286850						
-Cre06.g274200	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA6
-Cre06.g268000	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO10
-Cre06.g307750			Secretory pathway			
-Cre06.g276950	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA1
-Cre06.g258583			Secretory pathway			
-Cre06.g286750			Secretory pathway	GO:0003729;GO:0003723	mRNA binding;RNA binding	
-Cre06.g302400			Chloroplast			CSB31
-Cre06.g278123						VPS39
-Cre06.g311800			Secretory pathway			
-Cre06.g252576			Mitochondrion			
-Cre06.g295301						
-Cre06.g268350	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR9
-Cre06.g280250			Chloroplast			
-Cre06.g304350	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase		GO:0005739;GO:0004129	mitochondrion;cytochrome-c oxidase activity	COX12
-Cre06.g277050				GO:0042273;GO:0030036;GO:0000055	ribosomal large subunit biogenesis;actin cytoskeleton organization;ribosomal large subunit export from nucleus	
-Cre06.g278302						
-Cre06.g254300						
-Cre06.g284900	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Secretory pathway	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN20-1
-Cre06.g289450						
-Cre06.g287450	GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g278172	GMM:31.4	cell.vesicle transport		GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	
-Cre06.g261950						ANK11
-Cre06.g278350	GMM:13.1.6.4.2;GMM:13.1.6.4.1	amino acid metabolism.synthesis.aromatic aa.tyrosine.prephenate dehydrogenase;amino acid metabolism.synthesis.aromatic aa.tyrosine.arogenate dehydrogenase / prephenate dehydrogenase	Chloroplast	GO:0055114;GO:0008977;GO:0006571;GO:0004665	oxidation-reduction process;prephenate dehydrogenase activity;tyrosine biosynthetic process;prephenate dehydrogenase (NADP+) activity	AGD1
-Cre06.g249900	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0019205;GO:0006139;GO:0005524	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding	FAP75
-Cre06.g267850			Mitochondrion			PLS1
-Cre06.g303300	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755	protein folding;peptidyl-prolyl cis-trans isomerase activity	CYN37
-Cre06.g293400						
-Cre06.g251800	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005524	ATP binding	RFC4
-Cre06.g268300	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA9
-Cre06.g257700						
-Cre06.g269544						
-Cre06.g278199			Chloroplast			
-Cre06.g302000	GMM:34.99	transport.misc				MFP31
-Cre06.g278131			Secretory pathway			
-Cre06.g288150						
-Cre06.g252150			Chloroplast			
-Cre06.g287700	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g292850			Chloroplast			CDC6
-Cre06.g272701						
-Cre06.g278451	GMM:30.1.2	signalling.in sugar and nutrient physiology.pyruvate dehydrogenase kinase	Mitochondrion			PDK2
-Cre06.g295001			Mitochondrion			
-Cre06.g306057			Secretory pathway			
-Cre06.g297500			Chloroplast			
-Cre06.g270300			Mitochondrion			
-Cre06.g250700			Mitochondrion			
-Cre06.g309600			Chloroplast			
-Cre06.g251350	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005515	protein binding	
-Cre06.g266000	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g281050	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole		GO:0035091	phosphatidylinositol binding	VPS5A
-Cre06.g268250	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB9
-Cre06.g269865			Secretory pathway			
-Cre06.g272950	GMM:29.2.1.2.1.18	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S18	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723	translation;ribosome;intracellular;structural constituent of ribosome;RNA binding	RPS18
-Cre06.g278240						
-Cre06.g256950			Mitochondrion			SND1D
-Cre06.g278237						CPLD34
-Cre06.g305900	GMM:29.7	protein.glycosylation				CPLD22
-Cre06.g310700	GMM:29.2.1.2.2.536;GMM:29.2.1.2.2.44	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L36A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L44		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL36A
-Cre06.g294400	GMM:34.99	transport.misc		GO:0016485;GO:0016021	protein processing;integral component of membrane	NIS1
-Cre06.g311150	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT20
-Cre06.g306400	GMM:17.5.1.1	hormone metabolism.ethylene.synthesis-degradation.1-aminocyclopropane-1-carboxylate synthase		GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	
-Cre06.g276500	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA2
-Cre06.g249555						
-Cre06.g278286			Mitochondrion			
-Cre06.g305100			Secretory pathway			
-Cre06.g298300	GMM:35.1.5;GMM:27.3;GMM:1.3.13	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;RNA.regulation of transcription;PS.calvin cycle.rubisco interacting	Chloroplast			MRL1
-Cre06.g290800						RMG1
-Cre06.g274950	GMM:31.4	cell.vesicle transport				
-Cre06.g298800			Mitochondrion			LTH5
-Cre06.g295050			Secretory pathway	GO:0005515	protein binding	
-Cre06.g274050	GMM:28.1.3	DNA.synthesis/chromatin structure.histone				
-Cre06.g271526						
-Cre06.g275900	GMM:28.1.3	DNA.synthesis/chromatin structure.histone		GO:0006334;GO:0005634;GO:0003677;GO:0000786	nucleosome assembly;nucleus;DNA binding;nucleosome	HON3
-Cre06.g278800	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)	Mitochondrion	GO:0016021	integral component of membrane	
-Cre06.g311700			Mitochondrion			FAP349
-Cre06.g283034			Secretory pathway			
-Cre06.g291400				GO:0005524	ATP binding	
-Cre06.g299700	GMM:19.99	tetrapyrrole synthesis.unspecified				SOUL1
-Cre06.g262700	GMM:9.5	mitochondrial electron transport / ATP synthesis.cytochrome c reductase		GO:0006122;GO:0005750	"mitochondrial electron transport, ubiquinol to cytochrome c;mitochondrial respiratory chain complex III"	QCR7
-Cre06.g259200	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	GTP binding	EFS1
-Cre06.g295450	GMM:13.2.5.2;GMM:13.2.5.1;GMM:1.2.6	amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;amino acid metabolism.degradation.serine-glycine-cysteine group.serine;PS.photorespiration.hydroxypyruvate reductase	Mitochondrion	GO:0055114;GO:0051287;GO:0016616;GO:0008152	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process"	HPR1
-Cre06.g278245	GMM:31.5.1;GMM:29.3.3	cell.cell death.plants;protein.targeting.chloroplast	Chloroplast	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	
-Cre06.g277850						
-Cre06.g254213			Mitochondrion			
-Cre06.g252300	GMM:30.1.2	signalling.in sugar and nutrient physiology.pyruvate dehydrogenase kinase	Mitochondrion			PDK1
-Cre06.g262950			Mitochondrion			
-Cre06.g306007						
-Cre06.g254077			Chloroplast			
-Cre06.g261150	GMM:18.6.1	Co-factor and vitamine metabolism.biotin.biotin synthase	Mitochondrion	GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	BIO2
-Cre06.g298450						
-Cre06.g263357			Chloroplast			
-Cre06.g278297						
-Cre06.g283750	GMM:16.1.3.2;GMM:16.1.3	secondary metabolism.isoprenoids.tocopherol biosynthesis.homogentisate phytyltransferase;secondary metabolism.isoprenoids.tocopherol biosynthesis	Chloroplast	GO:0016021;GO:0004659	integral component of membrane;prenyltransferase activity	HST1
-Cre06.g261500			Chloroplast	GO:0005515	protein binding	CPLD58
-Cre06.g300150	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion			
-Cre06.g260650			Secretory pathway			
-Cre06.g278229	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre06.g301000	GMM:30.6;GMM:30.2.9;GMM:29.4	signalling.MAP kinases;signalling.receptor kinases.leucine rich repeat IX;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g278145			Secretory pathway			
-Cre06.g278217			Mitochondrion			
-Cre06.g282050			Mitochondrion			
-Cre06.g254350			Mitochondrion	GO:0016020	membrane	
-Cre06.g278275			Chloroplast			
-Cre06.g311050	GMM:8.1.1.1;GMM:13.2.4.1	TCA / organic transformation.TCA.pyruvate DH.E1;amino acid metabolism.degradation.branched chain group.shared	Mitochondrion	GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre06.g278293						
-Cre06.g286350			Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	UMM6
-Cre06.g265000	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR13
-Cre06.g256500			Mitochondrion;Chloroplast			
-Cre06.g258600	GMM:26.1	misc.misc2	Secretory pathway			
-Cre06.g263300	GMM:31.1;GMM:29.3.5	cell.organisation;protein.targeting.peroxisomes		GO:0016559;GO:0005779	peroxisome fission;integral component of peroxisomal membrane	
-Cre06.g275350	GMM:27.3.26;GMM:27.3.25	RNA.regulation of transcription.MYB-related transcription factor family;RNA.regulation of transcription.MYB domain transcription factor family	Mitochondrion			ROC40
-Cre06.g276100				GO:0005515	protein binding	
-Cre06.g261550			Mitochondrion			
-Cre06.g300900	GMM:33.99	development.unspecified	Chloroplast	GO:0016973;GO:0005643	poly(A)+ mRNA export from nucleus;nuclear pore	
-Cre06.g271600						
-Cre06.g277801	GMM:28.2	DNA.repair		GO:0006310;GO:0006281;GO:0005524;GO:0003910;GO:0003677	DNA recombination;DNA repair;ATP binding;DNA ligase (ATP) activity;DNA binding	DNL7
-Cre06.g263500			Chloroplast			
-Cre06.g255450	GMM:31.2	cell.division		GO:0051726;GO:0007049;GO:0006357;GO:0006351;GO:0005634	"regulation of cell cycle;cell cycle;regulation of transcription from RNA polymerase II promoter;transcription, DNA-templated;nucleus"	MAT3
-Cre06.g276550	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB2
-Cre06.g258850						EZY7
-Cre06.g286700				GO:0005515	protein binding	
-Cre06.g288900						
-Cre06.g278121						
-Cre06.g301350			Chloroplast			
-Cre06.g283150						
-Cre06.g249300	GMM:31.1	cell.organisation				ARP5
-Cre06.g309650			Mitochondrion			
-Cre06.g283800			Chloroplast			
-Cre06.g297150	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RWP9
-Cre06.g278273			Secretory pathway			
-Cre06.g273400						
-Cre06.g280350				GO:0005515	protein binding	
-Cre06.g278095	GMM:26.17	misc.dynamin				
-Cre06.g265500	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR11B
-Cre06.g298850						LTH6
-Cre06.g304876			Chloroplast			
-Cre06.g284950			Chloroplast			
-Cre06.g271750						
-Cre06.g257600	GMM:31.6.1.2	cell.motility.eukaryotes.deflagellation				FA1
-Cre06.g301650			Chloroplast	GO:0030170	pyridoxal phosphate binding	
-Cre06.g253900			Secretory pathway			
-Cre06.g303350	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
-Cre06.g277200	GMM:18.6.2;GMM:16.99	Co-factor and vitamine metabolism.biotin.Diaminopelargonic acid aminotransferase  and dethiobiotin synthetase;secondary metabolism.unspecified	Mitochondrion	GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	BIO1
-Cre06.g275450	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
-Cre06.g263850	GMM:34.8	transport.metabolite transporters at the envelope membrane	Chloroplast			TPT2
-Cre06.g278198	GMM:28.99	DNA.unspecified	Mitochondrion			
-Cre06.g256300	GMM:29.4;GMM:26.13	protein.postranslational modification;misc.acid and other phosphatases	Mitochondrion	GO:0003824	catalytic activity	
-Cre06.g265550	GMM:30.3;GMM:29.4.1;GMM:29.4	signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005509;GO:0004672	protein phosphorylation;calcium ion binding;protein kinase activity	
-Cre06.g255400	GMM:33.99;GMM:27.1.1	development.unspecified;RNA.processing.splicing		GO:0005515	protein binding	
-Cre06.g298700						
-Cre06.g300550						
-Cre06.g295500	GMM:26.28	misc.GDSL-motif lipase				
-Cre06.g284200	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM9
-Cre06.g296912						
-Cre06.g295700	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005524;GO:0003677	DNA replication;ATP binding;DNA binding	MCM3
-Cre06.g298000			Chloroplast			
-Cre06.g289700				GO:0006888;GO:0005801	ER to Golgi vesicle-mediated transport;cis-Golgi network	BET5
-Cre06.g296750	GMM:5;GMM:1.1.7.1	fermentation;PS.lightreaction.hydrogenase.FeFe-hydrogenase	Chloroplast	GO:0051536;GO:0005525;GO:0003824	iron-sulfur cluster binding;GTP binding;catalytic activity	HYDEF1
-Cre06.g282300			Mitochondrion			
-Cre06.g308600			Chloroplast			
-Cre06.g257351			Secretory pathway			
-Cre06.g284650			Chloroplast	GO:0004725;GO:0004721	protein tyrosine phosphatase activity;phosphoprotein phosphatase activity	MKP6
-Cre06.g255626						
-Cre06.g263602	GMM:29.3.5	protein.targeting.peroxisomes	Secretory pathway	GO:0008270;GO:0008022;GO:0006625;GO:0005779	zinc ion binding;protein C-terminus binding;protein targeting to peroxisome;integral component of peroxisomal membrane	
-Cre06.g297600				GO:0010181	FMN binding	
-Cre06.g253300	GMM:29.5.11	protein.degradation.ubiquitin		GO:0006511;GO:0005622;GO:0004843	ubiquitin-dependent protein catabolic process;intracellular;thiol-dependent ubiquitin-specific protease activity	
-Cre06.g268650	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP279
-Cre06.g278128						
-Cre06.g254800	GMM:27.4;GMM:27.1.1	RNA.RNA binding;RNA.processing.splicing		GO:0003676	nucleic acid binding	
-Cre06.g278104			Chloroplast			
-Cre06.g308850	GMM:29.2.3	protein.synthesis.initiation		GO:0005852;GO:0005737;GO:0003743	eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity	EIF3X
-Cre06.g269601				GO:2001070	starch binding	
-Cre06.g278236			Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre06.g290000	GMM:27.3.30	RNA.regulation of transcription.triple-helix transcription factor family (Trihelix)	Secretory pathway			GIP1
-Cre06.g290350						
-Cre06.g278211			Chloroplast			
-Cre06.g280550	GMM:27.4;GMM:27.3.12	RNA.RNA binding;RNA.regulation of transcription.C3H zinc finger family		GO:0003676	nucleic acid binding	
-Cre06.g301800			Secretory pathway			MFT19
-Cre06.g269950	GMM:31.2;GMM:29.5.11.20	cell.division;protein.degradation.ubiquitin.proteasom		GO:0009378;GO:0006310;GO:0006281;GO:0005524	four-way junction helicase activity;DNA recombination;DNA repair;ATP binding	CDC48
-Cre06.g290050			Secretory pathway			
-Cre06.g263100						
-Cre06.g282550						
-Cre06.g279750	GMM:29.5.7	protein.degradation.metalloprotease				MAP1A
-Cre06.g300800	GMM:29.2.1.99.2.27;GMM:29.2.1.1.1.2.27	protein.synthesis.ribosomal protein.unknown.large subunit.L27;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L27	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL27
-Cre06.g257450	GMM:34.1.1.2;GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit C;transport.p- and v-ATPases.H+-transporting two-sector ATPase	Mitochondrion	GO:0033177;GO:0015991;GO:0015078	"proton-transporting two-sector ATPase complex, proton-transporting domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVL1
-Cre06.g278288			Chloroplast			
-Cre06.g281526			Secretory pathway	GO:0005515	protein binding	
-Cre06.g258350			Chloroplast			
-Cre06.g278178						
-Cre06.g296500						
-Cre06.g269300						CGL120
-Cre06.g307850						
-Cre06.g303100				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g306950	GMM:33.99;GMM:29.4	development.unspecified;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g278184	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
-Cre06.g254850						
-Cre06.g251716			Mitochondrion			
-Cre06.g294450	GMM:3.5	minor CHO metabolism.others	Chloroplast			
-Cre06.g262350			Mitochondrion			
-Cre06.g250100	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Chloroplast			HSP70B
-Cre06.g260850			Chloroplast	GO:0032040	small-subunit processome	NOP14
-Cre06.g278950						
-Cre06.g276850	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR1
-Cre06.g306726						
-Cre06.g277450						
-Cre06.g268750	GMM:8.2.10	TCA / organic transformation.other organic acid transformations.malic	Mitochondrion	GO:0055114;GO:0051287;GO:0004471	oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity	MME1
-Cre06.g310576			Chloroplast			
-Cre06.g298950			Secretory pathway			
-Cre06.g272760			Mitochondrion			
-Cre06.g278283			Chloroplast			
-Cre06.g285500			Chloroplast			
-Cre06.g278090	GMM:29.2.1.1.3.2.1;GMM:29.2.1.1.1.2.1	protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L1;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L1	Mitochondrion			MRPL1
-Cre06.g273150				GO:0032259;GO:0008168	methylation;methyltransferase activity	
-Cre06.g278138			Chloroplast			OPR119
-Cre06.g250600			Secretory pathway			
-Cre06.g311300			Mitochondrion			
-Cre06.g268200	GMM:34.99	transport.misc	Mitochondrion	GO:0043190;GO:0006810	ATP-binding cassette (ABC) transporter complex;transport	TGD1
-Cre06.g285700			Secretory pathway			
-Cre06.g278109			Chloroplast	GO:0006629	lipid metabolic process	
-Cre06.g259850	GMM:29.2.1.1.4.2	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit	Chloroplast			PRPL29
-Cre06.g293200			Mitochondrion			
-Cre06.g256550						
-Cre06.g302426						
-Cre06.g264800	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB14
-Cre06.g307350	GMM:30.5;GMM:3.5;GMM:27.3.99	signalling.G-proteins;minor CHO metabolism.others;RNA.regulation of transcription.unclassified		GO:0005096	GTPase activator activity	
-Cre06.g257800	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0006260;GO:0003887;GO:0003677	DNA replication;DNA-directed DNA polymerase activity;DNA binding	POL1-1
-Cre06.g303751			Secretory pathway			
-Cre06.g275650	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0042176;GO:0030234;GO:0005515;GO:0000502	regulation of protein catabolic process;enzyme regulator activity;protein binding;proteasome complex	RPN3
-Cre06.g305650	GMM:31.5.1;GMM:29.3.3;GMM:26.30	cell.cell death.plants;protein.targeting.chloroplast;misc.other Ferredoxins and Rieske domain	Mitochondrion	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	
-Cre06.g293350						
-Cre06.g261650	GMM:29.6.1;GMM:29.6	protein.folding.prefoldin and trigger factor;protein.folding		GO:0016272;GO:0006457	prefoldin complex;protein folding	PFD1
-Cre06.g303171			Mitochondrion			
-Cre06.g304500	GMM:31.7.1	cell.development.zygote	Secretory pathway	GO:0005515	protein binding	ZYS4
-Cre06.g278253			Mitochondrion			
-Cre06.g253852						
-Cre06.g269752			Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRX15
-Cre06.g282450	GMM:26.7;GMM:13.2.2.2	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PHX11
-Cre06.g292000	GMM:31.4	cell.vesicle transport		GO:0006886;GO:0005622	intracellular protein transport;intracellular	
-Cre06.g251100	GMM:29.4	protein.postranslational modification		GO:0006499;GO:0004379	N-terminal protein myristoylation;glycylpeptide N-tetradecanoyltransferase activity	NMT1
-Cre06.g253759			Secretory pathway			
-Cre06.g294800			Secretory pathway	GO:0016021	integral component of membrane	CPLD37
-Cre06.g253566			Secretory pathway			
-Cre06.g253755						
-Cre06.g305000			Chloroplast	GO:0005515	protein binding	
-Cre06.g305302						
-Cre06.g309826	GMM:31.6.1.11	cell.motility.eukaryotes.other				MOT2
-Cre06.g296950	GMM:27.3.99;GMM:27.3.63	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.PHD finger transcription factor	Mitochondrion			
-Cre06.g295150						
-Cre06.g279474						MUT68
-Cre06.g278585			Mitochondrion			
-Cre06.g278158	GMM:2.1	major CHO metabolism.synthesis				PRL3
-Cre06.g291800	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0016021;GO:0004659	integral component of membrane;prenyltransferase activity	COQ2
-Cre06.g267200	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUO21
-Cre06.g276450	GMM:24.1	biodegradation of xenobiotics.hydroxyacylglutathione hydrolase	Secretory pathway	GO:0019243;GO:0004416	methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione;hydroxyacylglutathione hydrolase activity	
-Cre06.g308300	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0032259;GO:0008168	methylation;methyltransferase activity	
-Cre06.g278242				GO:0005739	mitochondrion	
-Cre06.g268850			Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g251951	GMM:27.1.3.11;GMM:27.1	RNA.processing.3' end processing.Pfs2;RNA.processing		GO:0005515	protein binding	
-Cre06.g256100			Mitochondrion			
-Cre06.g256850			Chloroplast			SND1B
-Cre06.g260200	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP18
-Cre06.g301550	GMM:34.2	transport.sugars	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT18
-Cre06.g280600			Chloroplast			GEX1
-Cre06.g300250	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation	Mitochondrion	GO:0006464	cellular protein modification process	TTL10
-Cre06.g279183						
-Cre06.g258566						
-Cre06.g258000			Secretory pathway			
-Cre06.g278500						
-Cre06.g310300			Chloroplast			
-Cre06.g258733	GMM:13.1.4.4.1	amino acid metabolism.synthesis.branched chain group.leucine specific.2-isopropylmalate synthase		GO:0009098;GO:0003852;GO:0003824	leucine biosynthetic process;2-isopropylmalate synthase activity;catalytic activity	LEU2
-Cre06.g304800						
-Cre06.g278258			Chloroplast			
-Cre06.g249750			Chloroplast	GO:0030261;GO:0003677	chromosome condensation;DNA binding	
-Cre06.g278170			Secretory pathway			FAP237
-Cre06.g293850	GMM:9.1.1.5	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I.carbonic anhydrase	Mitochondrion			CAG2
-Cre06.g259600	GMM:31.4	cell.vesicle transport				VPS53
-Cre06.g263600			Mitochondrion			
-Cre06.g256750	GMM:11.1.7	lipid metabolism.FA synthesis and FA elongation.ACP thioesterase	Chloroplast	GO:0016790;GO:0006633	thiolester hydrolase activity;fatty acid biosynthetic process	FAT1
-Cre06.g302100						
-Cre06.g251650	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0016020;GO:0006814;GO:0005215	transmembrane transport;membrane;sodium ion transport;transporter activity	PTC1
-Cre06.g271450			Mitochondrion			
-Cre06.g253250				GO:0046983;GO:0003677	protein dimerization activity;DNA binding	
-Cre06.g298251			Mitochondrion			
-Cre06.g275250			Mitochondrion			
-Cre06.g282250				GO:0008080	N-acetyltransferase activity	
-Cre06.g274150	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO6
-Cre06.g278262			Chloroplast			
-Cre06.g301725						
-Cre06.g252350			Mitochondrion			CGL70
-Cre06.g250200	GMM:15.2;GMM:13.1.3.4.11;GMM:13.1.3.4	"metal handling.binding, chelation and storage;amino acid metabolism.synthesis.aspartate family.methionine.S-adenosylmethionine synthetase;amino acid metabolism.synthesis.aspartate family.methionine"		GO:0006556;GO:0005524;GO:0004478	S-adenosylmethionine biosynthetic process;ATP binding;methionine adenosyltransferase activity	METM
-Cre06.g278152			Secretory pathway			
-Cre06.g292100			Chloroplast			
-Cre06.g308150	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat				DNJ23
-Cre06.g287150				GO:0005515	protein binding	
-Cre06.g300650						
-Cre06.g308450						
-Cre06.g278301						
-Cre06.g286150			Secretory pathway			
-Cre06.g276800	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO1
-Cre06.g302750	GMM:33.99;GMM:30.2.99;GMM:29.4.1;GMM:29.4	development.unspecified;signalling.receptor kinases.misc;protein.postranslational modification.kinase;protein.postranslational modification		GO:0005515	protein binding	
-Cre06.g284750	GMM:30.5;GMM:29.2.4	signalling.G-proteins;protein.synthesis.elongation	Chloroplast			EFG3
-Cre06.g310000	GMM:31.4	cell.vesicle transport		GO:0030117;GO:0016192;GO:0006886	membrane coat;vesicle-mediated transport;intracellular protein transport	AP4E1
-Cre06.g255300			Chloroplast			CGLD28
-Cre06.g292350	GMM:34.3	transport.amino acids	Secretory pathway	GO:0055085;GO:0016020;GO:0015171;GO:0006810;GO:0003333	transmembrane transport;membrane;amino acid transmembrane transporter activity;transport;amino acid transmembrane transport	AOC4
-Cre06.g296650	GMM:3.3	minor CHO metabolism.sugar alcohols				HYDG
-Cre06.g304650	GMM:30.4.2	signalling.phosphinositides.phosphatidylinositol 4-kinase		GO:0048015;GO:0046854;GO:0016773;GO:0006661;GO:0004430	"phosphatidylinositol-mediated signaling;phosphatidylinositol phosphorylation;phosphotransferase activity, alcohol group as acceptor;phosphatidylinositol biosynthetic process;1-phosphatidylinositol 4-kinase activity"	PIK3
-Cre06.g278099						
-Cre06.g278096						SELU
-Cre06.g291300			Chloroplast			
-Cre06.g254250						
-Cre06.g295950						
-Cre06.g278127			Secretory pathway			
-Cre06.g294350						
-Cre06.g292550	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	FAP15
-Cre06.g278274			Mitochondrion			
-Cre06.g278150			Chloroplast			
-Cre06.g288350						
-Cre06.g306150			Mitochondrion			
-Cre06.g308500	GMM:23.1.1.1;GMM:13.1.2.3.11	nucleotide metabolism.synthesis.pyrimidine.carbamoyl phosphate synthetase;amino acid metabolism.synthesis.glutamate family.arginine.carbamoyl-phosphate synthase	Chloroplast	GO:0016787;GO:0006541	hydrolase activity;glutamine metabolic process	CMP2
-Cre06.g255350	GMM:18.2	Co-factor and vitamine metabolism.thiamine		GO:0009228;GO:0004417	thiamine biosynthetic process;hydroxyethylthiazole kinase activity	THI10
-Cre06.g273550			Chloroplast			
-Cre06.g278205			Mitochondrion			
-Cre06.g251400	GMM:8.2.10	TCA / organic transformation.other organic acid transformations.malic	Mitochondrion	GO:0055114;GO:0051287;GO:0004471	oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity	MME6
-Cre06.g309900	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins	Secretory pathway			MST2
-Cre06.g278144	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	
-Cre06.g265652	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway			
-Cre06.g267500	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	
-Cre06.g298100	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0003743	translational initiation;translation initiation factor activity	SUI1A
-Cre06.g253902			Chloroplast			
-Cre06.g249200	GMM:31.1	cell.organisation				ARP4
-Cre06.g266250				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g267476			Chloroplast			
-Cre06.g263450	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	GTP binding	EEF1A3
-Cre06.g283050	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA1
-Cre06.g287250	GMM:35.1.5	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein				COG4
-Cre06.g278900						
-Cre06.g278270			Chloroplast			
-Cre06.g278243				GO:0055114;GO:0050660;GO:0016491	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity	
-Cre06.g285050						
-Cre06.g283450			Secretory pathway			
-Cre06.g295600	GMM:27.1.5;GMM:25	RNA.processing.base modifications;C1-metabolism		GO:0008168;GO:0006139	methyltransferase activity;nucleobase-containing compound metabolic process	RME1
-Cre06.g278117			Chloroplast			CPLD7
-Cre06.g275750	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR3
-Cre06.g265100	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre06.g278272			Chloroplast			
-Cre06.g301201			Chloroplast			
-Cre06.g278196			Secretory pathway			
-Cre06.g278189			Secretory pathway			
-Cre06.g308700						
-Cre06.g277700			Mitochondrion			
-Cre06.g264450	GMM:34.3	transport.amino acids	Secretory pathway			AOT5
-Cre06.g278294			Secretory pathway			
-Cre06.g287550						
-Cre06.g310950						
-Cre06.g280100			Secretory pathway	GO:0016021	integral component of membrane	
-Cre06.g270276			Chloroplast			
-Cre06.g297750	GMM:27.1.1	RNA.processing.splicing				SPL3
-Cre06.g266383						HEL26
-Cre06.g266416	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0004386	helicase activity	
-Cre06.g274250	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB6
-Cre06.g277250	GMM:28.2	DNA.repair	Mitochondrion			
-Cre06.g278133			Mitochondrion			
-Cre06.g266700	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA11
-Cre06.g252892			Secretory pathway			MTA4A
-Cre06.g278219	GMM:31.6.1.11	cell.motility.eukaryotes.other				SSA6
-Cre06.g267300			Mitochondrion			
-Cre06.g272000						
-Cre06.g304100	GMM:28.99	DNA.unspecified		GO:0007015;GO:0007010;GO:0003779	actin filament organization;cytoskeleton organization;actin binding	
-Cre06.g278234			Mitochondrion	GO:0005515	protein binding	FAP343
-Cre06.g270050						
-Cre06.g311550						
-Cre06.g278213	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA6
-Cre06.g285900			Chloroplast			FAP396
-Cre06.g305400			Chloroplast			
-Cre06.g257601	GMM:21.5.1	redox.peroxiredoxin.BAS1	Chloroplast	GO:0055114;GO:0051920;GO:0016491	oxidation-reduction process;peroxiredoxin activity;oxidoreductase activity	PRX1
-Cre06.g278201						
-Cre06.g297700	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
-Cre06.g271188			Secretory pathway	GO:0016787	hydrolase activity	
-Cre06.g292249			Secretory pathway			PHC50
-Cre06.g305500				GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre06.g311200	GMM:34.99	transport.misc		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT21
-Cre06.g275050	GMM:29.5	protein.degradation	Secretory pathway	GO:0016787;GO:0008242;GO:0006541;GO:0003824	hydrolase activity;omega peptidase activity;glutamine metabolic process;catalytic activity	GGH2
-Cre06.g257900			Secretory pathway			
-Cre06.g258500						
-Cre06.g252743						
-Cre06.g310650						
-Cre06.g309550	GMM:29.4	protein.postranslational modification	Secretory pathway			
-Cre06.g278088	GMM:28.1.3.2.1	DNA.synthesis/chromatin structure.histone.core.H2A		GO:0003677	DNA binding	HAV3
-Cre06.g300300			Mitochondrion			
-Cre06.g269850			Chloroplast			
-Cre06.g273950	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO7
-Cre06.g284150	GMM:34.5	transport.ammonium	Chloroplast	GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	RHP2
-Cre06.g254650	GMM:29.5.11.4.2;GMM:27.3.12	protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.C3H zinc finger family		GO:0046872	metal ion binding	
-Cre06.g291900						PHD1
-Cre06.g265400	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB12
-Cre06.g267450			Secretory pathway			
-Cre06.g278140	GMM:29.4;GMM:17.2.3	protein.postranslational modification;hormone metabolism.auxin.induced-regulated-responsive-activated	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g272850	GMM:29.2.1.1.1.2.10	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L10	Chloroplast	GO:0042254;GO:0005622	ribosome biogenesis;intracellular	PRPL10
-Cre06.g281750						
-Cre06.g288908	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g285600	GMM:31.6.1.9	cell.motility.eukaryotes.flagellar adhesion and gamete fusion				RWP5
-Cre06.g266300			Chloroplast			
-Cre06.g250800	GMM:27.4	RNA.RNA binding		GO:0005515;GO:0003723	protein binding;RNA binding	CRB1
-Cre06.g304150	GMM:31.1	cell.organisation	Mitochondrion			
-Cre06.g294200			Mitochondrion	GO:0006281;GO:0006260;GO:0003911	DNA repair;DNA replication;DNA ligase (NAD+) activity	
-Cre06.g248900			Mitochondrion	GO:0005515	protein binding	
-Cre06.g273350						
-Cre06.g278203						
-Cre06.g297082	GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XI	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	cya17
-Cre06.g261750			Chloroplast			
-Cre06.g278111	GMM:34.22;GMM:34.15	transport.cyclic nucleotide or calcium regulated channels;transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
-Cre06.g283900						
-Cre06.g253753			Mitochondrion			
-Cre06.g254150	GMM:3.5;GMM:27.1	minor CHO metabolism.others;RNA.processing		GO:0005515	protein binding	UTP1
-Cre06.g307250						
-Cre06.g257167						
-Cre06.g268050	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA10
-Cre06.g286600	GMM:29.5.11	protein.degradation.ubiquitin				
-Cre06.g260400						FAP287
-Cre06.g262250	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified				AP1M1
-Cre06.g276250	GMM:24.1	biodegradation of xenobiotics.hydroxyacylglutathione hydrolase				
-Cre06.g256050				GO:0005524	ATP binding	
-Cre06.g264100						
-Cre06.g299926			Mitochondrion			
-Cre06.g260550	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG1
-Cre06.g276371	GMM:24.1	biodegradation of xenobiotics.hydroxyacylglutathione hydrolase				
-Cre06.g281450			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR22
-Cre06.g278256	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	protein binding	RPN8
-Cre06.g288050				GO:0008324;GO:0006812	cation transmembrane transporter activity;cation transport	MGTE
-Cre06.g290250						
-Cre06.g278186			Mitochondrion	GO:0007165;GO:0005515	signal transduction;protein binding	
-Cre06.g306650	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation	Mitochondrion	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	
-Cre06.g251300	GMM:27.1	RNA.processing		GO:0006396	RNA processing	SMP6B
-Cre06.g291650				GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX11
-Cre06.g308400	GMM:33.99;GMM:29.4;GMM:26.13	development.unspecified;protein.postranslational modification;misc.acid and other phosphatases				PTN1
-Cre06.g255700	GMM:31.7.1	cell.development.zygote	Mitochondrion			
-Cre06.g287050						
-Cre06.g280800						
-Cre06.g289900	GMM:27.1.2	RNA.processing.RNA helicase				HEN2
-Cre06.g263950	GMM:34.21;GMM:34.1	transport.calcium;transport.p- and v-ATPases		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	
-Cre06.g282500	GMM:29.2.1.2.2.523;GMM:29.2.1.2.2.0523	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L23A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L23A		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL23A
-Cre06.g281200				GO:0005515	protein binding	
-Cre06.g285800	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family	Mitochondrion			
-Cre06.g275550	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family	Chloroplast			RWP2
-Cre06.g304000	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0005524	ATP binding	
-Cre06.g268550	GMM:3.5;GMM:10.2.1;GMM:10.2	minor CHO metabolism.others;cell wall.cellulose synthesis.cellulose synthase;cell wall.cellulose synthesis	Secretory pathway			CSL1
-Cre06.g279600						
-Cre06.g253850				GO:0032775;GO:0009007;GO:0003677	DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding	
-Cre06.g278165	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			mmp28
-Cre06.g278142	GMM:18.7;GMM:15.2	"Co-factor and vitamine metabolism.iron-sulphur clusters;metal handling.binding, chelation and storage"	Chloroplast	GO:0051539;GO:0051536;GO:0009451;GO:0003824	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;RNA modification;catalytic activity"	
-Cre06.g296600	GMM:18.3.2	Co-factor and vitamine metabolism.riboflavin.riboflavin synthase		GO:0009231;GO:0004746	riboflavin biosynthetic process;riboflavin synthase activity	RFS1
-Cre06.g254232			Secretory pathway			
-Cre06.g269400						
-Cre06.g302350			Mitochondrion			
-Cre06.g258950			Secretory pathway			
-Cre06.g270600			Mitochondrion			
-Cre06.g289400	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Chloroplast	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE11
-Cre06.g311450			Mitochondrion			
-Cre06.g260100	GMM:34.11;GMM:29.4	transport.NDP-sugars at the ER;protein.postranslational modification		GO:0055085	transmembrane transport	
-Cre06.g260950	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols				
-Cre06.g253757			Chloroplast			
-Cre06.g259300	GMM:29.2.4	protein.synthesis.elongation				EFS2
-Cre06.g284550			Chloroplast			
-Cre06.g305750	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
-Cre06.g263000				GO:0005515	protein binding	
-Cre06.g305450			Mitochondrion			
-Cre06.g263900						
-Cre06.g250567						
-Cre06.g296800						
-Cre06.g278163	GMM:13.1.2.3.4	amino acid metabolism.synthesis.glutamate family.arginine.acetylornithine aminotransferase	Chloroplast	GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	ARG9
-Cre06.g289050			Chloroplast			
-Cre06.g280385						
-Cre06.g282950						
-Cre06.g253800			Chloroplast			
-Cre06.g264250						
-Cre06.g251550	GMM:29.5.5	protein.degradation.serine protease		GO:0008233;GO:0006508	peptidase activity;proteolysis	SPP1C
-Cre06.g309684			Secretory pathway			
-Cre06.g265250	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR12
-Cre06.g274400				GO:0008168;GO:0006480	methyltransferase activity;N-terminal protein amino acid methylation	
-Cre06.g310750	GMM:31.4	cell.vesicle transport		GO:0030126;GO:0030117;GO:0016192;GO:0006886;GO:0005198	COPI vesicle coat;membrane coat;vesicle-mediated transport;intracellular protein transport;structural molecule activity	COPG1
-Cre06.g309951						
-Cre06.g249150	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006810;GO:0006468;GO:0005622;GO:0005524;GO:0004672	transport;protein phosphorylation;intracellular;ATP binding;protein kinase activity	MAPKK1
-Cre06.g278156			Secretory pathway			
-Cre06.g271050	GMM:23.2.1.2;GMM:23.2	nucleotide metabolism.degradation.pyrimidine.uridine nucleosidase;nucleotide metabolism.degradation				URN1
-Cre06.g304400	GMM:21.3	redox.heme				SOUL4
-Cre06.g294250			Mitochondrion			PHC49
-Cre06.g274750	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB4
-Cre06.g256200	GMM:27.3.54;GMM:27.3.42	RNA.regulation of transcription.histone acetyltransferases;RNA.regulation of transcription.bromodomain proteins		GO:0008080;GO:0005515	N-acetyltransferase activity;protein binding	HAT3
-Cre06.g278400			Chloroplast			
-Cre06.g306079						
-Cre06.g249050						
-Cre06.g271950	GMM:31.4;GMM:29.3.4.2	cell.vesicle transport;protein.targeting.secretory pathway.golgi		GO:0048193;GO:0016020;GO:0008565;GO:0006886;GO:0005737	Golgi vesicle transport;membrane;protein transporter activity;intracellular protein transport;cytoplasm	GC6
-Cre06.g278115						
-Cre06.g270150	GMM:34.99;GMM:34.9;GMM:34.21	transport.misc;transport.metabolite transporters at the mitochondrial membrane;transport.calcium				MCP13
-Cre06.g305850	GMM:29.5;GMM:13.1.3.4.12	protein.degradation;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm20
-Cre06.g278261				GO:0009058;GO:0003824	biosynthetic process;catalytic activity	
-Cre06.g295350			Chloroplast			
-Cre06.g261000	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0042651;GO:0015979;GO:0009654;GO:0009523	thylakoid membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II	PSBR
-Cre06.g294950	GMM:11.1.6	lipid metabolism.FA synthesis and FA elongation.enoyl ACP reductase	Chloroplast			ENR1
-Cre06.g292183						CAM13
-Cre06.g287000	GMM:33.99;GMM:30.3;GMM:11	development.unspecified;signalling.calcium;lipid metabolism				
-Cre06.g294876						
-Cre06.g260750	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG23
-Cre06.g255250						
-Cre06.g261900						FAP71
-Cre06.g302500						
-Cre06.g265200	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO12
-Cre06.g258550			Mitochondrion			
-Cre06.g278228			Chloroplast			
-Cre06.g278206			Chloroplast			
-Cre06.g284850						
-Cre06.g276750						
-Cre06.g278750	GMM:9.8	mitochondrial electron transport / ATP synthesis.uncoupling protein	Mitochondrion			UCP1
-Cre06.g278119			Secretory pathway			
-Cre06.g278175	GMM:3.5;GMM:27.1	minor CHO metabolism.others;RNA.processing	Chloroplast	GO:0005515	protein binding	
-Cre06.g301050	GMM:30.5;GMM:3.5;GMM:29.4;GMM:29.3.4.99	signalling.G-proteins;minor CHO metabolism.others;protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0006886;GO:0005622;GO:0005525	intracellular protein transport;intracellular;GTP binding	ARL13
-Cre06.g275850	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA3
-Cre06.g284350	GMM:31.3	cell.cycle		GO:0005634	nucleus	CYCD3
-Cre06.g249950	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase		GO:0046488;GO:0016307	phosphatidylinositol metabolic process;phosphatidylinositol phosphate kinase activity	
-Cre06.g296050	GMM:26.7	"misc.oxidases - copper, flavone etc"				FMO6
-Cre06.g287750	GMM:23.1.1.4	nucleotide metabolism.synthesis.pyrimidine.dihydroorotate dehydrogenase		GO:0055114;GO:0016627;GO:0005737	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;cytoplasm"	PYR8
-Cre06.g269050	GMM:30.11	signalling.light	Chloroplast			TIC62
-Cre06.g278194						FAP236
-Cre06.g278087			Chloroplast			
-Cre06.g257183						
-Cre06.g311850						HAD1
-Cre06.g272900				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	AOF3
-Cre06.g260450	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Chloroplast	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	LCI20
-Cre06.g283500						
-Cre06.g294500						
-Cre06.g307075			Chloroplast			
-Cre06.g310850	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre06.g266600	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO11
-Cre06.g271550	GMM:27.3.59	RNA.regulation of transcription.methyl binding domain proteins	Secretory pathway	GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre06.g274900	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO4
-Cre06.g287650	GMM:31.1;GMM:17.5.1.20	cell.organisation;hormone metabolism.ethylene.synthesis-degradation.XBAT32	Secretory pathway			
-Cre06.g296250	GMM:29.1.6	protein.aa activation.lysine-tRNA ligase	Chloroplast	GO:0006418;GO:0005524;GO:0004812;GO:0003676;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleic acid binding;nucleotide binding	SYK1
-Cre06.g275200			Chloroplast			
-Cre06.g278193						
-Cre06.g249600						
-Cre06.g292450				GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS13
-Cre06.g281000			Secretory pathway	GO:0005515	protein binding	
-Cre06.g266350			Secretory pathway	GO:0005515	protein binding	
-Cre06.g253758						
-Cre06.g275600	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family				
-Cre06.g298802			Chloroplast			
-Cre06.g299350						FBB15
-Cre06.g293516			Mitochondrion			DEGO2
-Cre06.g280150	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP9
-Cre06.g270550			Chloroplast			
-Cre06.g288252						
-Cre06.g259350						
-Cre06.g281700	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway			
-Cre06.g304550	GMM:27.1	RNA.processing				PAR1
-Cre06.g259750			Secretory pathway			
-Cre06.g282850			Mitochondrion			
-Cre06.g301951						
-Cre06.g269908						
-Cre06.g279100						DPY30
-Cre06.g305700			Mitochondrion			
-Cre06.g297450			Secretory pathway			
-Cre06.g299050	GMM:26.5	misc.acyl transferases		GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	DGTT3
-Cre06.g272400	GMM:26.13	misc.acid and other phosphatases	Secretory pathway			
-Cre06.g278277			Secretory pathway			
-Cre06.g309450	GMM:29.5	protein.degradation	Chloroplast			
-Cre06.g298326						
-Cre06.g287950	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
-Cre06.g306250			Chloroplast			
-Cre06.g271350	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA8
-Cre06.g248800						
-Cre06.g252000						LZTFL1
-Cre06.g251150	GMM:1.1.99;GMM:1.1.2.1	PS.lightreaction.unspecified;PS.lightreaction.photosystem I.LHC-I	Chloroplast			OHP2
-Cre06.g250902	GMM:13.1.3.4.12	amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase		GO:0046872;GO:0042558;GO:0031419;GO:0009086;GO:0008705;GO:0005622	metal ion binding;pteridine-containing compound metabolic process;cobalamin binding;methionine biosynthetic process;methionine synthase activity;intracellular	METH
-Cre06.g257750			Chloroplast			
-Cre06.g265800	GMM:29.2.1.1.1.2.28	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L28	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL28
-Cre06.g267600	GMM:20.2.5;GMM:16.1.4.5;GMM:16.1.4.4	stress.abiotic.light;secondary metabolism.isoprenoids.carotenoids.lycopene beta cyclase;secondary metabolism.isoprenoids.carotenoids.lycopene epsilon cyclase	Chloroplast	GO:0016705;GO:0016117	"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;carotenoid biosynthetic process"	LCYE
-Cre06.g296350				GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	ULP1
-Cre06.g278102			Secretory pathway			
-Cre06.g281250	GMM:11.3.7	lipid metabolism.phospholipid synthesis.cyclopropane-fatty-acyl-phospholipid synthase		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	CFA1
-Cre06.g278238						
-Cre06.g273450						
-Cre06.g281300						
-Cre06.g266052			Mitochondrion			
-Cre06.g291050						
-Cre06.g302276						
-Cre06.g309150				GO:0008270	zinc ion binding	ROC56
-Cre06.g285350			Mitochondrion			
-Cre06.g307150	GMM:2.2.2.1.2;GMM:2.2.2.1	major CHO metabolism.degradation.starch.starch cleavage.beta amylase;major CHO metabolism.degradation.starch.starch cleavage	Mitochondrion	GO:0016161;GO:0000272	beta-amylase activity;polysaccharide catabolic process	AMB1
-Cre06.g288800						
-Cre06.g253853			Chloroplast			
-Cre06.g272200			Chloroplast			
-Cre06.g308100	GMM:11.8	"lipid metabolism.exotics (steroids, squalene etc)"				
-Cre06.g279350	GMM:30.11	signalling.light	Mitochondrion			
-Cre06.g289800				GO:0005509	calcium ion binding	CAM12
-Cre06.g306550	GMM:27.1.19	RNA.processing.ribonucleases		GO:0033897;GO:0003723	ribonuclease T2 activity;RNA binding	
-Cre06.g274600						
-Cre06.g270700						
-Cre06.g299850				GO:0005515	protein binding	HLM10
-Cre06.g249650	GMM:27.3	RNA.regulation of transcription				CGL55
-Cre06.g302850						
-Cre06.g303950			Secretory pathway			
-Cre06.g259450			Chloroplast			
-Cre06.g278187	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0008270	zinc ion binding	MOT4
-Cre06.g297850	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Mitochondrion	GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC12
-Cre06.g301300			Chloroplast			
-Cre06.g278151						
-Cre06.g250300	GMM:31.6.1.3.1.2	cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.cytoplasmic dynein 1b subunits		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC16
-Cre06.g278279						
-Cre06.g301450			Mitochondrion			
-Cre06.g278105			Chloroplast			
-Cre06.g263800	GMM:28.1	DNA.synthesis/chromatin structure				
-Cre06.g291250			Mitochondrion			
-Cre06.g299500						
-Cre06.g255100			Chloroplast			
-Cre06.g279550			Chloroplast			
-Cre06.g307500	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Chloroplast			LCIC
-Cre06.g263250						
-Cre06.g278298			Chloroplast			
-Cre06.g258150						
-Cre06.g278850	GMM:28.2	DNA.repair				MND1
-Cre06.g255900			Secretory pathway			
-Cre06.g288550			Secretory pathway			ECP76
-Cre06.g276150						
-Cre06.g302950	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			
-Cre06.g280900	GMM:31.4	cell.vesicle transport		GO:0016021;GO:0006888;GO:0005801;GO:0000139	integral component of membrane;ER to Golgi vesicle-mediated transport;cis-Golgi network;Golgi membrane	VTI2
-Cre06.g286000			Mitochondrion			
-Cre06.g293000	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006269;GO:0003896	"DNA replication, synthesis of RNA primer;DNA primase activity"	PRI2
-Cre06.g307700			Mitochondrion	GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
-Cre06.g261400			Mitochondrion			
-Cre06.g285250	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM6
-Cre06.g260800	GMM:31.1	cell.organisation		GO:0034314;GO:0030041;GO:0015629;GO:0005885	Arp2/3 complex-mediated actin nucleation;actin filament polymerization;actin cytoskeleton;Arp2/3 protein complex	
-Cre06.g310450	GMM:27.2	RNA.transcription		GO:0017025;GO:0008270;GO:0006355;GO:0006352	"TBP-class protein binding;zinc ion binding;regulation of transcription, DNA-templated;DNA-templated transcription, initiation"	
-Cre06.g278169						
-Cre06.g262800	GMM:28.1;GMM:27.3.63	DNA.synthesis/chromatin structure;RNA.regulation of transcription.PHD finger transcription factor		GO:0005634;GO:0005515	nucleus;protein binding	
-Cre06.g303700			Secretory pathway			
-Cre06.g257100			Mitochondrion			
-Cre06.g267050			Mitochondrion	GO:0005515	protein binding	
-Cre06.g265750	GMM:29.5.7	protein.degradation.metalloprotease				
-Cre06.g254200	GMM:26.16	misc.myrosinases-lectin-jacalin	Chloroplast			
-Cre06.g267800	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Secretory pathway			MCP8
-Cre06.g259050	GMM:7.1.1	OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)				
-Cre06.g298150						
-Cre06.g288400	GMM:29.2.1.1.1.1.11	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S11	Mitochondrion	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPS11
-Cre06.g296150			Chloroplast	GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	
-Cre06.g250400	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB28
-Cre06.g309000	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Chloroplast	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NAR1.2
-Cre06.g253679			Chloroplast			
-Cre06.g286500						
-Cre06.g282800	GMM:6.9	gluconeogenesis / glyoxylate cycle.isocitrate lyase				ICL1
-Cre06.g278208	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre06.g266950	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre06.g278125	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005856;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;cytoskeleton;ATP binding;microtubule motor activity	
-Cre06.g263150						
-Cre06.g303536			Mitochondrion			
-Cre06.g278215	GMM:13.2.6.3;GMM:13.2.3.5	amino acid metabolism.degradation.aromatic aa.tryptophan;amino acid metabolism.degradation.aspartate family.lysine		GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre06.g284450	GMM:29.3.99;GMM:26.13	protein.targeting.unknown;misc.acid and other phosphatases				
-Cre06.g255150						
-Cre06.g266800	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0005488	binding	
-Cre06.g255600			Chloroplast			EZY1A
-Cre06.g285926						
-Cre06.g278113						
-Cre06.g278266			Mitochondrion			
-Cre06.g278214			Chloroplast			
-Cre06.g301802						
-Cre06.g310200			Chloroplast			
-Cre06.g253903						
-Cre06.g248950	GMM:29.5.11.5;GMM:29.5.11	protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin	Secretory pathway	GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
-Cre06.g252600			Mitochondrion			
-Cre06.g278166	GMM:2.1	major CHO metabolism.synthesis				PRL4
-Cre06.g309850			Mitochondrion			
-Cre06.g262000			Mitochondrion			SNR5
-Cre06.g307800	GMM:29.6.3.2	protein.folding.immunophilins (IMM).cyclophilins	Secretory pathway			CYN49
-Cre06.g252913			Secretory pathway			
-Cre06.g297950						
-Cre06.g246958						
-Cre06.g274994	GMM:31.4	cell.vesicle transport				
-Cre06.g268450	GMM:33.99	development.unspecified		GO:0005515	protein binding	
-Cre06.g307600	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006334;GO:0005634	nucleosome assembly;nucleus	
-Cre06.g252200	GMM:30.5;GMM:29.3.3	signalling.G-proteins;protein.targeting.chloroplast		GO:0005525	GTP binding	TOC34
-Cre06.g278254	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g297904	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)	Mitochondrion	GO:0033699;GO:0006281;GO:0003677	DNA 5'-adenosine monophosphate hydrolase activity;DNA repair;DNA binding	
-Cre06.g252100			Chloroplast			
-Cre06.g278259						
-Cre06.g269150			Chloroplast			
-Cre06.g294050						
-Cre06.g305950	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB32
-Cre06.g265350	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA12
-Cre06.g278268			Secretory pathway			
-Cre06.g308950						
-Cre06.g298550	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast	GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO7
-Cre06.g289500			Chloroplast			
-Cre06.g278122			Secretory pathway	GO:0008289	lipid binding	
-Cre06.g264200	GMM:8.1.7	TCA / organic transformation.TCA.succinate dehydrogenase	Mitochondrion	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	SDH2
-Cre06.g292800	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC17
-Cre06.g260000			Secretory pathway			
-Cre06.g286800				GO:0003729;GO:0003723	mRNA binding;RNA binding	HBP1
-Cre06.g286900			Mitochondrion			
-Cre06.g278173						OPR59
-Cre06.g310545			Mitochondrion			
-Cre06.g311750	GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XI	Mitochondrion	GO:0005515	protein binding	
-Cre06.g285451						
-Cre06.g262050	GMM:3.5	minor CHO metabolism.others	Secretory pathway	GO:0016853;GO:0005975	isomerase activity;carbohydrate metabolic process	AEP1
-Cre06.g295250	GMM:26.13	misc.acid and other phosphatases	Chloroplast			
-Cre06.g276050	GMM:3.5	minor CHO metabolism.others	Secretory pathway			
-Cre06.g267950	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR10
-Cre06.g293700	GMM:29.2.1.1.1.2.12	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L12	Mitochondrion	GO:0006412;GO:0003735	translation;structural constituent of ribosome	MRPL7
-Cre06.g296450	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast			
-Cre06.g300700			Chloroplast			
-Cre06.g301850						
-Cre06.g292900	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			
-Cre06.g292216			Chloroplast			
-Cre06.g281100	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MUT9
-Cre06.g304300	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	POA6
-Cre06.g278103			Secretory pathway	GO:0055114;GO:0016715;GO:0005507;GO:0004497	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;copper ion binding;monooxygenase activity"	
-Cre06.g281800			Chloroplast			
-Cre06.g303050			Mitochondrion			NIT3
-Cre06.g277100				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre06.g275950						FAP395
-Cre06.g305516			Mitochondrion			
-Cre06.g272550	GMM:27.1.2;GMM:27.1.19	RNA.processing.RNA helicase;RNA.processing.ribonucleases				
-Cre06.g258700	GMM:8;GMM:6;GMM:13.2.4.4;GMM:11.1.1.2.4	TCA / organic transformation;gluconeogenesis / glyoxylate cycle;amino acid metabolism.degradation.branched chain group.leucine;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.biotin carboxylase		GO:0003824	catalytic activity	PYC1
-Cre06.g257550	GMM:9.8;GMM:34.9	mitochondrial electron transport / ATP synthesis.uncoupling protein;transport.metabolite transporters at the mitochondrial membrane				UCP2
-Cre06.g273000	GMM:29.4	protein.postranslational modification				
-Cre06.g291150	GMM:27.1.2;GMM:27.1;GMM:17.5.3	RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated	Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL29
-Cre06.g280227			Secretory pathway			
-Cre06.g299476			Chloroplast			
-Cre06.g278135	GMM:29.2.1.2.2.21	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L21	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL21
-Cre06.g306350	GMM:34.9;GMM:1.1.5.2	transport.metabolite transporters at the mitochondrial membrane;PS.lightreaction.other electron carrier (ox/red).ferredoxin	Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX3
-Cre06.g303251						
-Cre06.g311100			Mitochondrion			
-Cre06.g278182			Chloroplast			
-Cre06.g253756			Chloroplast			
-Cre06.g287400	GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g297250			Mitochondrion			
-Cre06.g278650						
-Cre06.g272100				GO:0043399;GO:0019988	tRNA A64-2'-O-ribosylphosphate transferase activity;charged-tRNA amino acid modification	
-Cre06.g264350	GMM:29.2.1.1.4.2;GMM:29.2.1.1.3.2.13;GMM:29.2.1.1.1.2.13	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L13;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L13	Chloroplast	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	PRPL13
-Cre06.g278231	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g278108			Mitochondrion	GO:0008080	N-acetyltransferase activity	
-Cre06.g279000	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	PBA1
-Cre06.g270000						
-Cre06.g271650						
-Cre06.g295100			Secretory pathway			
-Cre06.g250500	GMM:3.5	minor CHO metabolism.others	Chloroplast	GO:0052855	ADP-dependent NAD(P)H-hydrate dehydratase activity	
-Cre06.g288100	GMM:27.1.5;GMM:25	RNA.processing.base modifications;C1-metabolism		GO:0008168;GO:0006139	methyltransferase activity;nucleobase-containing compound metabolic process	
-Cre06.g296900						
-Cre06.g257850	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0003824	catalytic activity	
-Cre06.g278276			Secretory pathway			
-Cre06.g254450	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX		GO:0005515	protein binding	
-Cre06.g276600	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR2
-Cre06.g293362						
-Cre06.g262750			Mitochondrion			
-Cre06.g278132			Mitochondrion			
-Cre06.g280000						
-Cre06.g300450	GMM:29.5	protein.degradation	Chloroplast	GO:0005524	ATP binding	
-Cre06.g305250	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion			
-Cre06.g290200	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG39
-Cre06.g278241						
-Cre06.g283634				GO:0006355	"regulation of transcription, DNA-templated"	
-Cre06.g274101	GMM:28.1.3.2.3	DNA.synthesis/chromatin structure.histone.core.H3	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR6
-Cre06.g272475						
-Cre06.g290500	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
-Cre06.g295650						
-Cre06.g300966			Secretory pathway			
-Cre06.g270350	GMM:2.2.2.1.2;GMM:2.2.2.1	major CHO metabolism.degradation.starch.starch cleavage.beta amylase;major CHO metabolism.degradation.starch.starch cleavage	Mitochondrion	GO:0016161;GO:0000272	beta-amylase activity;polysaccharide catabolic process	AMB2
-Cre06.g292700	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g264900	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB13
-Cre06.g278191						
-Cre06.g278289	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre06.g306850	GMM:29.2.3;GMM:28.1	protein.synthesis.initiation;DNA.synthesis/chromatin structure		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL31
-Cre06.g283300	GMM:31.1	cell.organisation				
-Cre06.g303483			Mitochondrion			
-Cre06.g291500	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RWP6
-Cre06.g268925						
-Cre06.g280300	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	
-Cre06.g271850	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre06.g304850						
-Cre06.g261200				GO:0055114;GO:0016491;GO:0006633;GO:0005506	oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding	ERG5
-Cre06.g287350			Chloroplast	GO:0003677	DNA binding	
-Cre06.g278224	GMM:29.2.1.99.2.16	protein.synthesis.ribosomal protein.unknown.large subunit.L16	Mitochondrion	GO:0019843;GO:0006412;GO:0005840;GO:0003735	rRNA binding;translation;ribosome;structural constituent of ribosome	MRPL16
-Cre06.g280475	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
-Cre06.g276400			Mitochondrion			
-Cre06.g290950	GMM:29.2.1.2.1.5	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S5		GO:0006412	translation	RPS5
-Cre06.g253851			Secretory pathway			
-Cre06.g265900			Secretory pathway			
-Cre06.g262450	GMM:18;GMM:16.1.3	Co-factor and vitamine metabolism;secondary metabolism.isoprenoids.tocopherol biosynthesis	Secretory pathway			VTE7
-Cre06.g294150			Mitochondrion			
-Cre06.g300100	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway			PIGL
-Cre06.g266150	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g250950	GMM:27.1.1	RNA.processing.splicing		GO:0046872;GO:0005634;GO:0003723	metal ion binding;nucleus;RNA binding	
-Cre06.g270850	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
-Cre06.g282350						
-Cre06.g278221	GMM:3.2.3;GMM:3.2.1	minor CHO metabolism.trehalose.potential TPS/TPP;minor CHO metabolism.trehalose.TPS	Mitochondrion	GO:0005992;GO:0003824	trehalose biosynthetic process;catalytic activity	TPS1
-Cre06.g260350	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ6
-Cre06.g255500						
-Cre06.g253200	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PKY1
-Cre06.g256900			Chloroplast			SND1C
-Cre06.g286100			Secretory pathway			
-Cre06.g252750						FUS1
-Cre06.g277000	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway	GO:0008270	zinc ion binding	
-Cre06.g262550			Mitochondrion			
-Cre06.g253404						Pr46b
-Cre06.g287850			Mitochondrion			
-Cre06.g289150	GMM:34.12	transport.metal	Mitochondrion	GO:0055085;GO:0016021;GO:0008324;GO:0006812	transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport	MTP5
-Cre06.g303850			Mitochondrion			
-Cre06.g259150	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0005525	GTP binding	EFG8
-Cre06.g251000			Secretory pathway			
-Cre06.g272350	GMM:26.13	misc.acid and other phosphatases				
-Cre06.g278200				GO:0005515	protein binding	ROC66
-Cre06.g304950						
-Cre06.g302200	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion	GO:0005509	calcium ion binding	EFH3
-Cre06.g308200			Secretory pathway			
-Cre06.g268976	GMM:29.4	protein.postranslational modification				
-Cre06.g278251	GMM:28.2;GMM:20.2	DNA.repair;stress.abiotic				
-Cre06.g278161	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			mmp26
-Cre06.g254224						
-Cre06.g278210	GMM:4.2.2;GMM:4.1.2	glycolysis.plastid branch.phosphoglucomutase (PGM);glycolysis.cytosolic branch.phosphoglucomutase (PGM)	Chloroplast	GO:0071704;GO:0016868;GO:0005975	"organic substance metabolic process;intramolecular transferase activity, phosphotransferases;carbohydrate metabolic process"	GPM1
-Cre06.g253600			Chloroplast			
-Cre06.g262900	GMM:4.2.4;GMM:4.1.4	glycolysis.plastid branch.phosphofructokinase (PFK);glycolysis.cytosolic branch.phosphofructokinase (PFK)	Chloroplast	GO:0006096;GO:0003872	glycolytic process;6-phosphofructokinase activity	PFK1
-Cre06.g258363				GO:0005515	protein binding	
-Cre06.g311400	GMM:28.1	DNA.synthesis/chromatin structure		GO:0004518;GO:0003677	nuclease activity;DNA binding	
-Cre06.g257000	GMM:14	S-assimilation	Mitochondrion	GO:0015419;GO:0008272;GO:0006810;GO:0005215	sulfate transmembrane-transporting ATPase activity;sulfate transport;transport;transporter activity	SULP3
-Cre06.g270800						
-Cre06.g267150	GMM:31.2	cell.division				
-Cre06.g257250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0035058;GO:0034464	nonmotile primary cilium assembly;BBSome	BBS2
-Cre06.g278180	GMM:28.1.1	DNA.synthesis/chromatin structure.retrotransposon/transposase	Mitochondrion			
-Cre06.g279250						PYM1
-Cre06.g252401			Secretory pathway			
-Cre06.g259500	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG2
-Cre06.g286300			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	COQ5B
-Cre06.g263750						
-Cre06.g309300	GMM:27.1	RNA.processing	Mitochondrion			
-Cre06.g282651			Chloroplast	GO:0045454	cell redox homeostasis	TRX16
-Cre06.g308000						FAP331
-Cre06.g266450	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g267700	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Mitochondrion	GO:0008233;GO:0006508	peptidase activity;proteolysis	SPP1B
-Cre06.g273413	GMM:29.2.2.3.3;GMM:28.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases;DNA.synthesis/chromatin structure	Chloroplast	GO:0008168	methyltransferase activity	
-Cre06.g264550			Chloroplast			CGL81
-Cre06.g278167						
-Cre06.g303600						
-Cre06.g280750						
-Cre06.g306028						
-Cre06.g309100	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Mitochondrion	GO:0005524	ATP binding	CPN60C
-Cre06.g258051			Chloroplast			NCL2
-Cre06.g279850	GMM:29.5	protein.degradation	Chloroplast			
-Cre06.g256650			Mitochondrion			
-Cre06.g310100	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g282150	GMM:18.1.1;GMM:18.1;GMM:18	Co-factor and vitamine metabolism.molybdenum cofactor.gephyrin;Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism				CNX1G
-Cre06.g279900	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				VFL3
-Cre06.g251850						
-Cre06.g254917	GMM:31.6.1.9	cell.motility.eukaryotes.flagellar adhesion and gamete fusion	Secretory pathway			SAD1:3frag
-Cre06.g299100						
-Cre06.g261050			Chloroplast			
-Cre06.g278147			Chloroplast			
-Cre06.g288650	GMM:11.2.4	lipid metabolism.FA desaturation.omega 6 desaturase	Chloroplast	GO:0006629	lipid metabolic process	
-Cre06.g278281						
-Cre06.g252700	GMM:35.1.41	not assigned.no ontology.hydroxyproline rich proteins				
-Cre06.g274500	GMM:27.1.3.17;GMM:27.1	RNA.processing.3' end processing.PabN;RNA.processing		GO:0003676	nucleic acid binding	
-Cre06.g283950	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM4
-Cre06.g273750	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	SABC
-Cre06.g262200						
-Cre06.g278092						
-Cre06.g249500	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases	Mitochondrion			DMC7
-Cre06.g302650	GMM:27.3.67;GMM:27.1	RNA.regulation of transcription.putative transcription regulator;RNA.processing		GO:0032259;GO:0008168;GO:0001510	methylation;methyltransferase activity;RNA methylation	
-Cre06.g281600	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Mitochondrion			LCI23
-Cre06.g281900	GMM:34.12	transport.metal	Secretory pathway			ZIP7
-Cre06.g267250	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification		GO:0008138;GO:0006470;GO:0005856	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation;cytoskeleton	MKP2
-Cre06.g278179						
-Cre06.g276900	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB1
-Cre06.g260600	GMM:30.3;GMM:29.4	signalling.calcium;protein.postranslational modification				
-Cre06.g278129			Mitochondrion			
-Cre06.g257400			Chloroplast			
-Cre06.g258400						
-Cre06.g253789			Secretory pathway			
-Cre06.g304050	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PKC1
-Cre06.g254052			Chloroplast			
-Cre06.g257300						
-Cre06.g297049						
-Cre06.g283100						FAP85
-Cre06.g275700	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO3
-Cre06.g277300	GMM:29.5.11.4.2;GMM:29.4.1.59	protein.degradation.ubiquitin.E3.RING;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX	Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre06.g266650	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR11
-Cre06.g279700			Secretory pathway			
-Cre06.g279500			Chloroplast			CPL6
-Cre06.g269250			Chloroplast			
-Cre06.g265050	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO13
-Cre06.g277500						
-Cre06.g274000	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR7
-Cre06.g256000						
-Cre06.g268600	GMM:1.1.1.4	PS.lightreaction.photosystem II.LHC biogenesis		GO:0006355;GO:0003677;GO:0003676	"regulation of transcription, DNA-templated;DNA binding;nucleic acid binding"	NAB1
-Cre06.g272150			Secretory pathway			
-Cre06.g292282						
-Cre06.g259900	GMM:1.1.4.4;GMM:1.1.4	PS.lightreaction.ATP synthase.gamma chain;PS.lightreaction.ATP synthase	Chloroplast	GO:0046961;GO:0046933;GO:0045261;GO:0015986	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;proton-transporting ATP synthase complex, catalytic core F(1);ATP synthesis coupled proton transport"	ATPC
-Cre06.g251750						
-Cre06.g278183	GMM:21.4	redox.glutaredoxins		GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	
-Cre06.g310550						HY5
-Cre06.g260900			Mitochondrion			
-Cre06.g293300	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g287500						
-Cre06.g306035						
-Cre06.g299450						
-Cre06.g300326			Mitochondrion			
-Cre06.g288600						
-Cre06.g306700						
-Cre06.g263650			Chloroplast			
-Cre06.g307450	GMM:27.1.1;GMM:27.1	RNA.processing.splicing;RNA.processing		GO:0006396;GO:0005515;GO:0003723	RNA processing;protein binding;RNA binding	SPL1
-Cre06.g281500			Chloroplast			OPR25
-Cre06.g278287			Secretory pathway			
-Cre06.g278091			Secretory pathway			
-Cre06.g308900	GMM:29.3.2	protein.targeting.mitochondria		GO:0019867	outer membrane	TOB55
-Cre06.g285550			Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g284700	GMM:13.1.1.3.1	amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine aminotransferase	Chloroplast	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	AAT2
-Cre06.g258300	GMM:7.1.1	OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)				
-Cre06.g278126						
-Cre06.g273900	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA7
-Cre06.g248850	GMM:29.4.1;GMM:29.4;GMM:27.1.1	protein.postranslational modification.kinase;protein.postranslational modification;RNA.processing.splicing		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g287100	GMM:3.8	minor CHO metabolism.galactose				CAM11
-Cre06.g250250	GMM:34.1	transport.p- and v-ATPases		GO:0033180;GO:0015991;GO:0015078	"proton-transporting V-type ATPase, V1 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVC
-Cre06.g297516						
-Cre06.g274700	GMM:29.5.3	protein.degradation.cysteine protease	Chloroplast			OTU4
-Cre06.g270100	GMM:2.1.2.3	major CHO metabolism.synthesis.starch.starch branching	Chloroplast	GO:0043169;GO:0005975;GO:0004553;GO:0003824	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	SBE2
-Cre06.g270750				GO:0006950;GO:0005516	response to stress;calmodulin binding	
-Cre06.g302050	GMM:3.6	minor CHO metabolism.callose		GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	GSL2
-Cre06.g298880						
-Cre06.g303150	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK4
-Cre06.g311250			Mitochondrion			
-Cre06.g250976			Mitochondrion			
-Cre06.g293582	GMM:29.1.4	protein.aa activation.leucine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	
-Cre06.g259550	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom	Secretory pathway	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre06.g262977			Mitochondrion			
-Cre06.g284376						
-Cre06.g250750	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
-Cre06.g290100	GMM:31.4	cell.vesicle transport		GO:0048193;GO:0016020;GO:0005515	Golgi vesicle transport;membrane;protein binding	SYP6
-Cre06.g278164	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			mmp27
-Cre06.g278239	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	SRS7
-Cre06.g261700	GMM:29.2.1.2.2.80	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.P0		GO:0042254;GO:0005622	ribosome biogenesis;intracellular	
-Cre06.g262400				GO:0006629	lipid metabolic process	
-Cre06.g278137			Secretory pathway			
-Cre06.g291850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
-Cre06.g289950	GMM:27.1	RNA.processing		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL28
-Cre06.g307900						FAP141
-Cre06.g268800	GMM:31.6.1.3.2.1	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A		GO:0005515	protein binding	IFT139
-Cre06.g282600	GMM:29.2.3;GMM:29.2.2.3.5;GMM:29.2.2.2.1;GMM:28.1	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;protein.synthesis.ribosome biogenesis.assembly factors.DExD-box helicases;DNA.synthesis/chromatin structure		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL27
-Cre06.g278110			Secretory pathway			
-Cre06.g302600				GO:0006886	intracellular protein transport	
-Cre06.g251683	GMM:34.7	transport.phosphate	Secretory pathway			PTC1
-Cre06.g306450						
-Cre06.g279650			Secretory pathway			OPR24
-Cre06.g285750	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family				
-Cre06.g307400			Chloroplast			CCR5
-Cre06.g279216						
-Cre06.g269550						COQ9
-Cre06.g299150	GMM:1.5	PS.carbon concentrating mechanism	Mitochondrion			PHC26
-Cre06.g284400	GMM:31.1	cell.organisation				
-Cre06.g308650						
-Cre06.g286550			Mitochondrion			
-Cre06.g256400			Secretory pathway			
-Cre06.g269700						
-Cre06.g253582			Chloroplast			
-Cre06.g305150						
-Cre06.g254275	GMM:26.16	misc.myrosinases-lectin-jacalin				
-Cre06.g268228						
-Cre06.g297550			Mitochondrion			
-Cre06.g296550	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO3
-Cre06.g310150						
-Cre06.g278159	GMM:33.99;GMM:27.3.7	development.unspecified;RNA.regulation of transcription.C2C2(Zn) Constans-like zinc finger family (CO-like)	Secretory pathway	GO:0008270;GO:0005622;GO:0005515	zinc ion binding;intracellular;protein binding	
-Cre06.g276350	GMM:24.1	biodegradation of xenobiotics.hydroxyacylglutathione hydrolase		GO:0019243;GO:0004416	methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione;hydroxyacylglutathione hydrolase activity	
-Cre06.g288950						
-Cre06.g293800	GMM:14.1	S-assimilation.APS	Chloroplast	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS16
-Cre06.g267900	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
-Cre06.g299750						
-Cre06.g298750	GMM:34.3	transport.amino acids				AOT4
-Cre06.g278284						
-Cre06.g273650	GMM:33.99;GMM:30.3	development.unspecified;signalling.calcium				
-Cre06.g295200	GMM:30.11	signalling.light				CPH1
-Cre06.g278230	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g294100						
-Cre06.g294700			Chloroplast	GO:0005515	protein binding	
-Cre06.g278207	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre06.g278227			Mitochondrion			
-Cre06.g256350			Secretory pathway			
-Cre06.g289426						CSB29
-Cre06.g278282						
-Cre06.g282000	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase	Chloroplast			STA3
-Cre06.g249850						
-Cre06.g282251						
-Cre06.g300933						
-Cre06.g286400						
-Cre06.g300350	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				
-Cre06.g261600			Chloroplast			
-Cre06.g289100			Chloroplast			
-Cre06.g270400						
-Cre06.g256800			Chloroplast			SND1A
-Cre06.g301600	GMM:26.3	"misc.gluco-, galacto- and mannosidases"	Secretory pathway	GO:0016020;GO:0005509;GO:0004571	"membrane;calcium ion binding;mannosyl-oligosaccharide 1,2-alpha-mannosidase activity"	MAN2
-Cre06.g260250	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Mitochondrion	GO:0016021	integral component of membrane	CEM1
-Cre06.g291450						
-Cre06.g278269	GMM:33.99	development.unspecified	Secretory pathway			
-Cre06.g302700	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	protein binding	
-Cre06.g306000	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX3
-Cre06.g272650	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA8
-Cre06.g252550	GMM:8.1.1.2	TCA / organic transformation.TCA.pyruvate DH.E2	Mitochondrion	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	DLA3
-Cre06.g278252	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX18
-Cre06.g264050						
-Cre06.g290850						
-Cre06.g297200						FAP108
-Cre06.g262100	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0055114;GO:0045454;GO:0016491	oxidation-reduction process;cell redox homeostasis;oxidoreductase activity	GSR1
-Cre06.g286650	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases	Chloroplast			DMC4
-Cre06.g281150						
-Cre06.g278120			Mitochondrion			
-Cre06.g298225			Secretory pathway			
-Cre06.g278300	GMM:34.99;GMM:34.1	transport.misc;transport.p- and v-ATPases		GO:0016020	membrane	
-Cre06.g278700			Chloroplast			
-Cre06.g285001						
-Cre06.g291950	GMM:34.14	transport.unspecified cations	Chloroplast	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	MRS4
-Cre06.g275400	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				
-Cre06.g249350	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases	Chloroplast			DMC3
-Cre06.g273600	GMM:29.5.11;GMM:29.2.1.2.1.27	protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27		GO:0006412;GO:0005840;GO:0005515;GO:0003735	translation;ribosome;protein binding;structural constituent of ribosome	RPS27A
-Cre06.g263550			Chloroplast			LCI7
-Cre06.g278295						
-Cre06.g289650			Mitochondrion			
-Cre06.g291100			Secretory pathway			
-Cre06.g294301						
-Cre06.g301750						
-Cre06.g253901			Chloroplast			
-Cre06.g264650	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR14
-Cre06.g266100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g252850						
-Cre06.g288850						
-Cre06.g311500			Secretory pathway			
-Cre06.g258900						
-Cre06.g283826						
-Cre06.g273050	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast			CGLD10
-Cre06.g299650	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			CLPR6
-Cre06.g278171						CGL132
-Cre06.g298500						
-Cre06.g296700	GMM:5;GMM:1.1.7.1	fermentation;PS.lightreaction.hydrogenase.FeFe-hydrogenase	Chloroplast			HYDG1
-Cre06.g284726			Chloroplast			
-Cre06.g278226	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
-Cre06.g276759			Mitochondrion			
-Cre06.g287176	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm	Mitochondrion			CPLD67
-Cre06.g300144						
-Cre06.g301325			Mitochondrion			
-Cre06.g278202	GMM:3.4.5;GMM:21.2.1.3	minor CHO metabolism.myo-inositol.inositol phosphatase;redox.ascorbate and glutathione.ascorbate.L-galactose-1-phosphate phosphatase		GO:0046854	phosphatidylinositol phosphorylation	
-Cre06.g298050						
-Cre06.g304750	GMM:30.5;GMM:3.5;GMM:27.3.99	signalling.G-proteins;minor CHO metabolism.others;RNA.regulation of transcription.unclassified		GO:0005096	GTPase activator activity	
-Cre06.g253051			Chloroplast	GO:0016021	integral component of membrane	MTA3A
-Cre06.g278296						
-Cre06.g303400	GMM:31.6.1.11;GMM:31.6.1.10	cell.motility.eukaryotes.other;cell.motility.eukaryotes.flagellar associated proteins				ADF3
-Cre06.g257950	GMM:13.1.1.2.1	amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase	Secretory pathway	GO:0030170;GO:0009058;GO:0008483;GO:0006520	pyridoxal phosphate binding;biosynthetic process;transaminase activity;cellular amino acid metabolic process	AST4
-Cre06.g300500				GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre06.g278248			Mitochondrion			
-Cre06.g296924			Chloroplast			
-Cre06.g264400						
-Cre06.g304700						
-Cre06.g283200	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	
-Cre06.g278235						
-Cre06.g306750						FAP290
-Cre06.g249400			Mitochondrion			
-Cre06.g300001			Secretory pathway			
-Cre06.g277150			Chloroplast			
-Cre06.g264950	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA13
-Cre06.g263400	GMM:29.2.4	protein.synthesis.elongation				
-Cre06.g271200	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate	Chloroplast	GO:0055114;GO:0045454;GO:0016491	oxidation-reduction process;cell redox homeostasis;oxidoreductase activity	PNO1
-Cre06.g250850	GMM:28.2	DNA.repair		GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	MSH1
-Cre06.g289600						
-Cre06.g271400	GMM:3.99;GMM:1.2.1	minor CHO metabolism.misc;PS.photorespiration.phosphoglycolate phosphatase	Mitochondrion			PGP3
-Cre06.g278188	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I		GO:0008137;GO:0005739;GO:0003954	NADH dehydrogenase (ubiquinone) activity;mitochondrion;NADH dehydrogenase activity	NUOB18
-Cre06.g272050	GMM:4.1.12	glycolysis.cytosolic branch.phosphoglycerate mutase		GO:0046872;GO:0030145;GO:0006007;GO:0005737;GO:0004619;GO:0003824	metal ion binding;manganese ion binding;glucose catabolic process;cytoplasm;phosphoglycerate mutase activity;catalytic activity	PGM1
-Cre06.g302389						
-Cre06.g273250			Chloroplast	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	
-Cre06.g284250	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM8
-Cre06.g281766			Mitochondrion			
-Cre06.g278185	GMM:3.5;GMM:10.1.4	minor CHO metabolism.others;cell wall.precursor synthesis.UGD		GO:0055114;GO:0051287;GO:0016616;GO:0003979	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;UDP-glucose 6-dehydrogenase activity"	UGD2
-Cre06.g267350			Mitochondrion			
-Cre06.g297650	GMM:29.4	protein.postranslational modification		GO:0003950	NAD+ ADP-ribosyltransferase activity	
-Cre06.g274300	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO5
-Cre06.g269801	GMM:35.1.1	not assigned.no ontology.ABC1 family protein	Chloroplast			
-Cre06.g284100	GMM:34.5;GMM:1.5.3	transport.ammonium;PS.carbon concentrating mechanism.algal		GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	RHP1
-Cre06.g311650			Mitochondrion	GO:0016021;GO:0006813;GO:0005242	integral component of membrane;potassium ion transport;inward rectifier potassium channel activity	IRK1
-Cre06.g278291						
-Cre06.g269350				GO:0006355;GO:0005634;GO:0003700;GO:0003677	"regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding;DNA binding"	
-Cre06.g255650			Chloroplast			EZY1B
-Cre06.g278264			Chloroplast			
-Cre06.g295550						
-Cre06.g305251	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0005515	protein binding	
-Cre06.g252871	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor	Mitochondrion			MTA5
-Cre06.g309750						
-Cre06.g275500	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0006355;GO:0003700	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre06.g296983	GMM:29.5.11.2	protein.degradation.ubiquitin.E1		GO:0008641	small protein activating enzyme activity	
-Cre06.g298911			Secretory pathway			
-Cre06.g268700						
-Cre06.g266276			Mitochondrion			
-Cre06.g258226			Secretory pathway	GO:0009341;GO:0005975;GO:0004565	beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity	
-Cre06.g289033						
-Cre06.g285401			Chloroplast	GO:0003677	DNA binding	FAP355
-Cre06.g284600			Chloroplast			RBD2
-Cre06.g289850	GMM:2.1.2.3	major CHO metabolism.synthesis.starch.starch branching	Mitochondrion	GO:0043169;GO:0005975;GO:0004553;GO:0003824	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	SBE1
-Cre06.g277550	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Secretory pathway	GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	
-Cre06.g257476						
-Cre06.g309500			Chloroplast			OPR28
-Cre06.g258450						
-Cre06.g254240						
-Cre06.g308533	GMM:29.2.1.1.4.2	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit	Chloroplast			PSRP6
-Cre06.g278089	GMM:26.17	misc.dynamin				
-Cre06.g288000						
-Cre06.g279450			Chloroplast			
-Cre06.g273300	GMM:29.1.3	protein.aa activation.threonine-tRNA ligase		GO:0043039;GO:0016876;GO:0006418;GO:0005524;GO:0004812;GO:0000166	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"	TST1
-Cre06.g275000	GMM:33.99	development.unspecified	Secretory pathway			
-Cre06.g305600				GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH9
-Cre06.g278280						
-Cre06.g271150	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP74
-Cre06.g275300						
-Cre06.g278204			Secretory pathway			
-Cre06.g271700	GMM:29.5.7	protein.degradation.metalloprotease				
-Cre06.g307012						
-Cre06.g278212						CGL46
-Cre06.g310601						
-Cre06.g280050	GMM:28.99;GMM:27.1.19	DNA.unspecified;RNA.processing.ribonucleases		GO:0004527;GO:0003676	exonuclease activity;nucleic acid binding	XRN1
-Cre06.g290400	GMM:27.3.55	RNA.regulation of transcription.HDA	Chloroplast			HDA5
-Cre06.g286200			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre06.g270650	GMM:29.2.1.1.2.51	protein.synthesis.ribosomal protein.prokaryotic.mitochondrion.L51/S25/CI-B8				MRPL43
-Cre06.g278600						
-Cre06.g268150	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CNK3
-Cre06.g279976	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway			
-Cre06.g306601	GMM:13.1.6.5.1	amino acid metabolism.synthesis.aromatic aa.tryptophan.anthranilate synthase	Chloroplast	GO:0016833;GO:0009058	oxo-acid-lyase activity;biosynthetic process	ANS1
-Cre06.g272800	GMM:29.2.1.2.1.8	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S8		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS8
-Cre06.g251250	GMM:17.4.2	hormone metabolism.cytokinin.signal transduction	Mitochondrion	GO:0007165;GO:0000160;GO:0000155	signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	HKR3
-Cre06.g302450						
-Cre06.g280850	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	PBG1
-Cre06.g254600			Mitochondrion			
-Cre06.g261123				GO:0005509	calcium ion binding	
-Cre06.g285850						
-Cre06.g307300						ANT2
-Cre06.g261800	GMM:13.1.6.3.1	amino acid metabolism.synthesis.aromatic aa.phenylalanine.arogenate dehydratase / prephenate dehydratase	Chloroplast	GO:0009094;GO:0004664	L-phenylalanine biosynthetic process;prephenate dehydratase activity	PRD1
-Cre06.g288750	GMM:27.4	RNA.RNA binding		GO:0006457;GO:0003755;GO:0003676	protein folding;peptidyl-prolyl cis-trans isomerase activity;nucleic acid binding	CBP20
-Cre06.g294776			Chloroplast			
-Cre06.g291600	GMM:11.3.2;GMM:11.3	lipid metabolism.phospholipid synthesis.choline kinase;lipid metabolism.phospholipid synthesis				ETK1
-Cre06.g278141						
-Cre06.g304450			Chloroplast			
-Cre06.g278112						
-Cre06.g293250				GO:0030132;GO:0030130;GO:0016192;GO:0006886;GO:0005198;GO:0005096	clathrin coat of coated pit;clathrin coat of trans-Golgi network vesicle;vesicle-mediated transport;intracellular protein transport;structural molecule activity;GTPase activator activity	
-Cre06.g283850						
-Cre06.g263050	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0043043;GO:0006414;GO:0005737;GO:0003746	peptide biosynthetic process;translational elongation;cytoplasm;translation elongation factor activity	EFP2
-Cre06.g265950	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species		GO:0030286;GO:0016887;GO:0007018;GO:0005858;GO:0005524;GO:0003777;GO:0001539	dynein complex;ATPase activity;microtubule-based movement;axonemal dynein complex;ATP binding;microtubule motor activity;cilium or flagellum-dependent cell motility	DHC3
-Cre06.g254002			Secretory pathway			
-Cre06.g299250			Chloroplast			
-Cre06.g299950						
-Cre06.g264000						
-Cre06.g264300	GMM:29.2.1.1.1.1.15	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S15	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPS15
-Cre06.g293100	GMM:31.4	cell.vesicle transport		GO:0048193;GO:0016020	Golgi vesicle transport;membrane	
-Cre06.g303500						
-Cre06.g278139	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	
-Cre06.g293900				GO:0005515	protein binding	
-Cre06.g292150						
-Cre06.g276300			Mitochondrion			
-Cre06.g277400	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF				
-Cre06.g278124						
-Cre06.g251900	GMM:29.3.3	protein.targeting.chloroplast		GO:0051205;GO:0016021	protein insertion into membrane;integral component of membrane	ALB3.1
-Cre06.g259250						
-Cre06.g262650			Chloroplast			TAA1
-Cre06.g270200	GMM:30.4.4	signalling.phosphinositides.phosphoinositide phospholipase C		GO:0035556;GO:0007165;GO:0006629;GO:0005515;GO:0004435	intracellular signal transduction;signal transduction;lipid metabolic process;protein binding;phosphatidylinositol phospholipase C activity	
-Cre06.g286450	GMM:33.99	development.unspecified				
-Cre06.g260500						
-Cre06.g281400			Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	NAH1
-Cre06.g298400	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP224
-Cre06.g268501						
-Cre06.g260150						FAP393
-Cre06.g256150			Secretory pathway			
-Cre06.g302305						
-Cre06.g251050	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre06.g307551			Mitochondrion			
-Cre06.g306014						
-Cre06.g305050	GMM:28.1	DNA.synthesis/chromatin structure				CGL45
-Cre06.g259800	GMM:29.2.99;GMM:27.4;GMM:27.1.1	protein.synthesis.misc;RNA.RNA binding;RNA.processing.splicing	Chloroplast	GO:0005515;GO:0003723	protein binding;RNA binding	CWC22
-Cre06.g260976			Secretory pathway			
-Cre06.g278177	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0006310;GO:0006281;GO:0005524;GO:0003910;GO:0003677	DNA recombination;DNA repair;ATP binding;DNA ligase (ATP) activity;DNA binding	DNL6
-Cre06.g261450	GMM:27.3.53	RNA.regulation of transcription.high mobility group family (HMG)				
-Cre06.g295400	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP11
-Cre06.g290676						PHC48
-Cre06.g300600	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Mitochondrion	GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre06.g271500						
-Cre06.g250650	GMM:26.17	misc.dynamin	Chloroplast	GO:0005525	GTP binding	DRP4
-Cre06.g278246			Mitochondrion			
-Cre06.g278263	GMM:33.99;GMM:33.2	development.unspecified;development.late embryogenesis abundant	Secretory pathway			
-Cre06.g300200						
-Cre06.g278195			Chloroplast			
-Cre06.g278097	GMM:31.2;GMM:27.1	cell.division;RNA.processing		GO:0005515	protein binding	RAE1
-Cre06.g277750						
-Cre06.g311000	GMM:34.99	transport.misc	Secretory pathway	GO:0016021;GO:0006810	integral component of membrane;transport	FBT2
-Cre06.g283400	GMM:2.1.1.2	major CHO metabolism.synthesis.sucrose.SPP	Chloroplast			CGL101
-Cre06.g289350	GMM:29.2.5	protein.synthesis.release	Mitochondrion	GO:0016149;GO:0006415;GO:0005737;GO:0003747	"translation release factor activity, codon specific;translational termination;cytoplasm;translation release factor activity"	
-Cre06.g266900						
-Cre06.g301700						
-Cre06.g283000			Mitochondrion			CGLD39
-Cre06.g250550						
-Cre06.g253550			Chloroplast			
-Cre06.g292050						MMP21
-Cre06.g279150	GMM:29.1.12	protein.aa activation.aspartate-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0003676;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleic acid binding;nucleotide binding	TSD2
-Cre06.g301500			Secretory pathway			
-Cre06.g259650	GMM:26.13	misc.acid and other phosphatases		GO:0016787	hydrolase activity	MPA7
-Cre06.g258800	GMM:10.5.2	cell wall.cell wall proteins.proline rich proteins	Secretory pathway			GP2
-Cre06.g251600	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0005515;GO:0003743	translational initiation;protein binding;translation initiation factor activity	EIF5B2
-Cre06.g291350						
-Cre06.g274800	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA4
-Cre06.g262300	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN51
-Cre06.g289550	GMM:29.2.1.2.2.32	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L32		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL32
-Cre06.g284000						
-Cre06.g254500			Chloroplast			
-Cre06.g256450	GMM:31.6.1.6.1	cell.motility.eukaryotes.central pair.C1a				FAP119
-Cre06.g291200						
-Cre06.g261026			Chloroplast			
-Cre06.g270950	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family				
-Cre06.g291700	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP3
-Cre06.g306900			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR9
-Cre06.g278153			Secretory pathway			
-Cre06.g278233			Secretory pathway			OPR60
-Cre06.g274650	GMM:30.11	signalling.light	Chloroplast			NUOAF4
-Cre06.g292650				GO:0006351;GO:0005634;GO:0003677	"transcription, DNA-templated;nucleus;DNA binding"	ROC93
-Cre06.g299600	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZIP6
-Cre06.g295826			Chloroplast			
-Cre06.g276700	GMM:29.5	protein.degradation		GO:0016787;GO:0008152	hydrolase activity;metabolic process	
-Cre06.g271100	GMM:31.3;GMM:29.4.1;GMM:29.4	cell.cycle;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDKG1
-Cre06.g284800	GMM:12.4	N-metabolism.misc		GO:0055114;GO:0050660;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing	
-Cre06.g267400	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre06.g306200						
-Cre06.g272300			Chloroplast			CPLD57
-Cre06.g287200			Chloroplast			
-Cre06.g285100			Mitochondrion			
-Cre06.g278176	GMM:33.99;GMM:31.4;GMM:30.5	development.unspecified;cell.vesicle transport;signalling.G-proteins		GO:0005515	protein binding	
-Cre06.g266200						
-Cre06.g272750						
-Cre06.g270500	GMM:26.3.4;GMM:26.3	"misc.gluco-, galacto- and mannosidases.endoglucanase;misc.gluco-, galacto- and mannosidases"	Secretory pathway	GO:0019028;GO:0005975;GO:0004553	"viral capsid;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
-Cre06.g271376	GMM:28.1.3.2.2;GMM:28.1.3.2.1	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB8
-Cre06.g301150						
-Cre06.g292500	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Secretory pathway	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN23
-Cre06.g310050	GMM:29.5	protein.degradation	Chloroplast	GO:0016020	membrane	CPL13
-Cre06.g273200				GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
-Cre06.g292315			Mitochondrion			
-Cre06.g284300						
-Cre06.g310350						
-Cre06.g311600	GMM:18.3	Co-factor and vitamine metabolism.riboflavin		GO:0009231;GO:0008531	riboflavin biosynthetic process;riboflavin kinase activity	RFK3
-Cre06.g298650	GMM:29.2.3	protein.synthesis.initiation	Secretory pathway	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	EIF4A
-Cre06.g293450						
-Cre06.g290550						
-Cre06.g304600	GMM:26.23	misc.rhodanese	Chloroplast			
-Cre06.g265450	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO11B
-Cre06.g278271			Mitochondrion			
-Cre06.g294600						
-Cre06.g282200			Chloroplast	GO:0007034	vacuolar transport	SNF7
-Cre06.g251450	GMM:18.7	Co-factor and vitamine metabolism.iron-sulphur clusters	Mitochondrion	GO:0051539;GO:0009435;GO:0008987	"4 iron, 4 sulfur cluster binding;NAD biosynthetic process;quinolinate synthetase A activity"	NIC7
-Cre06.g300850				GO:0005634	nucleus	
-Cre06.g280650			Chloroplast			CGL59
-Cre06.g249800	GMM:26.13	misc.acid and other phosphatases	Mitochondrion			
-Cre06.g278218						
-Cre06.g272450			Mitochondrion			MBI1
-Cre06.g278094	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG14
-Cre06.g265602	GMM:27.1	RNA.processing				
-Cre06.g249250	GMM:29.2.2.3.1;GMM:29.2.1.2.2.57;GMM:29.2.1.2.2.1730	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7/L30/S12				RPL7AE
-Cre06.g310276						
-Cre06.g293150			Secretory pathway			PGM12
-Cre06.g264500	GMM:29.2.2.3.99;GMM:27.3.51	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;RNA.regulation of transcription.general transcription, TBP-binding protein"	Chloroplast			
-Cre06.g280500	GMM:27.4	RNA.RNA binding				
-Cre06.g303192			Chloroplast			
-Cre06.g289750	GMM:31.3	cell.cycle		GO:0005634	nucleus	CYCD2
-Cre06.g306050				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g392356						
-Cre09.g393750			Mitochondrion			
-Cre09.g413450	GMM:28.1.1	DNA.synthesis/chromatin structure.retrotransposon/transposase				
-Cre09.g413050				GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre09.g399912	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	
-Cre09.g398660			Secretory pathway			
-Cre09.g398700	GMM:11.3.10	lipid metabolism.phospholipid synthesis.(S)-coclaurine-N-methyltransferase				CPLD27
-Cre09.g415050						
-Cre09.g396600	GMM:5;GMM:33.99;GMM:1.1.7.1	fermentation;development.unspecified;PS.lightreaction.hydrogenase.FeFe-hydrogenase	Chloroplast			HYDA2
-Cre09.g416400	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g409250	GMM:11.8.1.3	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids.ceramide glucosyltransferase"	Secretory pathway			GTR24
-Cre09.g402041						
-Cre09.g411800			Chloroplast			
-Cre09.g396900	GMM:26.13;GMM:23.3.3	misc.acid and other phosphatases;nucleotide metabolism.salvage.NUDIX hydrolases	Mitochondrion	GO:0046872;GO:0016787	metal ion binding;hydrolase activity	
-Cre09.g396176						
-Cre09.g403250	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g389652						
-Cre09.g399909						
-Cre09.g388615	GMM:29.2.99;GMM:29.2.5	protein.synthesis.misc;protein.synthesis.release		GO:0071025;GO:0070966;GO:0070481	"RNA surveillance;nuclear-transcribed mRNA catabolic process, no-go decay;nuclear-transcribed mRNA catabolic process, non-stop decay"	
-Cre09.g403293	GMM:25.4;GMM:25	C1-metabolism.5-formyltetrahydrofolate cyclo-ligase;C1-metabolism				FCL1
-Cre09.g390604						
-Cre09.g416150	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion			ASA7
-Cre09.g401293	GMM:34.6;GMM:26.23	transport.sulphate;misc.rhodanese	Chloroplast	GO:0055085;GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0008271	transmembrane transport;integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;secondary active sulfate transmembrane transporter activity	SULTR3
-Cre09.g407501			Chloroplast	GO:2001070	starch binding	
-Cre09.g389700			Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT24
-Cre09.g407850			Chloroplast			
-Cre09.g393600	GMM:28.1	DNA.synthesis/chromatin structure				
-Cre09.g394325	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELIP3
-Cre09.g397095						
-Cre09.g400923						FAP28
-Cre09.g409600			Mitochondrion			
-Cre09.g396363	GMM:29.3.2;GMM:20.2.1	protein.targeting.mitochondria;stress.abiotic.heat	Mitochondrion			TIM14
-Cre09.g389089	GMM:18.1	Co-factor and vitamine metabolism.molybdenum cofactor	Mitochondrion	GO:0030170;GO:0030151;GO:0003824	pyridoxal phosphate binding;molybdenum ion binding;catalytic activity	CNX5
-Cre09.g388726	GMM:28.2	DNA.repair				
-Cre09.g386800						
-Cre09.g388949						
-Cre09.g391615			Secretory pathway			
-Cre09.g398363			Mitochondrion			
-Cre09.g399450						
-Cre09.g391900	GMM:21.1	redox.thioredoxin		GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXH2
-Cre09.g402775						
-Cre09.g388550			Mitochondrion	GO:0005840	ribosome	MRPL21
-Cre09.g391838	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Mitochondrion	GO:0006629	lipid metabolic process	
-Cre09.g397200	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0051082;GO:0006457;GO:0005524	unfolded protein binding;protein folding;ATP binding	CCT6
-Cre09.g408626			Mitochondrion			
-Cre09.g386167						
-Cre09.g415800	GMM:28.99	DNA.unspecified				
-Cre09.g402212						
-Cre09.g388350			Chloroplast			MMP11
-Cre09.g400441	GMM:29.5.11.4.3.2;GMM:27.3.57	protein.degradation.ubiquitin.E3.SCF.FBOX;RNA.regulation of transcription.JUMONJI family	Mitochondrion			
-Cre09.g397950	GMM:31.1	cell.organisation		GO:0034314;GO:0030833;GO:0005885;GO:0005856	Arp2/3 complex-mediated actin nucleation;regulation of actin filament polymerization;Arp2/3 protein complex;cytoskeleton	
-Cre09.g392653			Secretory pathway			
-Cre09.g398554						
-Cre09.g386747						
-Cre09.g389001			Mitochondrion			
-Cre09.g407120			Mitochondrion			
-Cre09.g402256	GMM:29.5	protein.degradation		GO:0008270;GO:0008237;GO:0006508	zinc ion binding;metallopeptidase activity;proteolysis	
-Cre09.g386131			Secretory pathway			
-Cre09.g416583						
-Cre09.g394547	GMM:2	major CHO metabolism	Chloroplast	GO:2001070	starch binding	
-Cre09.g413850						
-Cre09.g417076			Secretory pathway			
-Cre09.g390800						
-Cre09.g391400						
-Cre09.g405002						
-Cre09.g392245			Secretory pathway			DPM3
-Cre09.g388171				GO:0016787	hydrolase activity	
-Cre09.g409000	GMM:16.1	secondary metabolism.isoprenoids	Secretory pathway			
-Cre09.g386735	GMM:8.1.1.2	TCA / organic transformation.TCA.pyruvate DH.E2	Mitochondrion	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	DLA1
-Cre09.g405106						
-Cre09.g390615	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	FAP12
-Cre09.g398771			Secretory pathway			
-Cre09.g387949			Secretory pathway			
-Cre09.g397364			Mitochondrion			
-Cre09.g395150	GMM:29.4	protein.postranslational modification		GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	MKP3
-Cre09.g407750						CGL130
-Cre09.g402600			Secretory pathway			
-Cre09.g386450						
-Cre09.g395000			Mitochondrion			
-Cre09.g400664						
-Cre09.g390838						
-Cre09.g387356						
-Cre09.g399326	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP3
-Cre09.g394700			Mitochondrion			RNZ1
-Cre09.g395250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP36
-Cre09.g403850	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g392097			Secretory pathway			
-Cre09.g410750	GMM:12.1.2	N-metabolism.nitrate metabolism.nitrite reductase	Chloroplast	GO:0055114;GO:0051536;GO:0020037;GO:0016491	oxidation-reduction process;iron-sulfur cluster binding;heme binding;oxidoreductase activity	NII1
-Cre09.g396213	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0042549;GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	photosystem II stabilization;extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBO
-Cre09.g389250	GMM:26.7	"misc.oxidases - copper, flavone etc"				AOF1
-Cre09.g416650			Secretory pathway			
-Cre09.g405450			Chloroplast			
-Cre09.g387450			Mitochondrion			OPR37
-Cre09.g401441	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
-Cre09.g392171			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre09.g401850	GMM:30.2.99;GMM:30.11	signalling.receptor kinases.misc;signalling.light	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g409951				GO:0006310	DNA recombination	
-Cre09.g400700			Mitochondrion			
-Cre09.g395436	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre09.g394510			Chloroplast	GO:2001070	starch binding	
-Cre09.g388208			Chloroplast			
-Cre09.g397993			Secretory pathway			FAP201
-Cre09.g389208	GMM:29.3.5	protein.targeting.peroxisomes		GO:0016021	integral component of membrane	
-Cre09.g401150				GO:0016020;GO:0009055;GO:0008137	membrane;electron carrier activity;NADH dehydrogenase (ubiquinone) activity	
-Cre09.g390150						
-Cre09.g387750			Mitochondrion			
-Cre09.g393469			Secretory pathway			
-Cre09.g413123			Mitochondrion			
-Cre09.g414626			Mitochondrion			
-Cre09.g406432			Mitochondrion	GO:0005509	calcium ion binding	
-Cre09.g402367						
-Cre09.g394400	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g405900	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g398438			Chloroplast			
-Cre09.g411400	GMM:31.6.1.11	cell.motility.eukaryotes.other				MOT45
-Cre09.g401886	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate	Mitochondrion	GO:0055114;GO:0020037;GO:0006979;GO:0004601	oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity	
-Cre09.g392542	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0008270;GO:0005515	zinc ion binding;protein binding	hlm7
-Cre09.g387134			Chloroplast			
-Cre09.g410087						
-Cre09.g389850			Secretory pathway			
-Cre09.g415350						
-Cre09.g387726	GMM:13.1.1.2.1	amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase	Mitochondrion	GO:0030170;GO:0009058;GO:0008483;GO:0006520	pyridoxal phosphate binding;biosynthetic process;transaminase activity;cellular amino acid metabolic process	AST1
-Cre09.g392900						
-Cre09.g400404			Mitochondrion			
-Cre09.g386400	GMM:29.5.11.2	protein.degradation.ubiquitin.E1		GO:0008641	small protein activating enzyme activity	FAP124
-Cre09.g401450						
-Cre09.g414700						
-Cre09.g414300	GMM:29.4	protein.postranslational modification				
-Cre09.g410850	GMM:34.4	transport.nitrate		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NRT2.1
-Cre09.g407400			Mitochondrion			
-Cre09.g397179			Chloroplast			OPR13
-Cre09.g396350						
-Cre09.g412803			Secretory pathway	GO:0016020	membrane	CGL88
-Cre09.g396250	GMM:18;GMM:16.1.3;GMM:11.3.3	Co-factor and vitamine metabolism;secondary metabolism.isoprenoids.tocopherol biosynthesis;lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase	Secretory pathway			VTE5
-Cre09.g391150	GMM:29.5.7	protein.degradation.metalloprotease				
-Cre09.g396883			Mitochondrion			
-Cre09.g389134			Mitochondrion	GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre09.g392250	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion			OTU5
-Cre09.g396700	GMM:2.2.1.1	major CHO metabolism.degradation.sucrose.fructokinase	Chloroplast	GO:0016774;GO:0016310;GO:0016301;GO:0008152;GO:0005622	"phosphotransferase activity, carboxyl group as acceptor;phosphorylation;kinase activity;metabolic process;intracellular"	ACK1
-Cre09.g392877						
-Cre09.g393173	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELI2
-Cre09.g406000	GMM:18.6;GMM:18	Co-factor and vitamine metabolism.biotin;Co-factor and vitamine metabolism	Mitochondrion	GO:0006464;GO:0004077	cellular protein modification process;biotin-[acetyl-CoA-carboxylase] ligase activity	BPL1
-Cre09.g397216	GMM:26.1;GMM:17.2.2	misc.misc2;hormone metabolism.auxin.signal transduction	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
-Cre09.g386600	GMM:27.1	RNA.processing	Mitochondrion			
-Cre09.g389950	GMM:26.6;GMM:26.5	misc.O-methyl transferases;misc.acyl transferases	Secretory pathway			OAT1
-Cre09.g398800	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB36
-Cre09.g398500						
-Cre09.g388650	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG29
-Cre09.g389450	GMM:29.4.1.59	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX	Mitochondrion	GO:0016567;GO:0004842;GO:0003676	protein ubiquitination;ubiquitin-protein transferase activity;nucleic acid binding	
-Cre09.g387950	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g392951						
-Cre09.g416309			Secretory pathway			
-Cre09.g396102	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g399513						
-Cre09.g414200	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole				VPS26
-Cre09.g390319	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0032012;GO:0005086	regulation of ARF protein signal transduction;ARF guanyl-nucleotide exchange factor activity	
-Cre09.g414951						
-Cre09.g417000			Secretory pathway			
-Cre09.g393700	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP3
-Cre09.g387578			Chloroplast			
-Cre09.g398650				GO:0005515	protein binding	
-Cre09.g398586						
-Cre09.g406150			Mitochondrion			
-Cre09.g403219	GMM:27.2	RNA.transcription		GO:0009307;GO:0006351;GO:0004519;GO:0003899;GO:0003677	"DNA restriction-modification system;transcription, DNA-templated;endonuclease activity;DNA-directed RNA polymerase activity;DNA binding"	RPB5
-Cre09.g392282	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Chloroplast	GO:0030286;GO:0016887;GO:0007018;GO:0005858;GO:0005524;GO:0003777;GO:0003341	dynein complex;ATPase activity;microtubule-based movement;axonemal dynein complex;ATP binding;microtubule motor activity;cilium movement	DHC2
-Cre09.g399911	GMM:33.99;GMM:31.2	development.unspecified;cell.division		GO:0005515	protein binding	CDC20
-Cre09.g414750	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG33
-Cre09.g388352			Secretory pathway			
-Cre09.g406100			Chloroplast			
-Cre09.g395769						FAP177
-Cre09.g402800			Mitochondrion			
-Cre09.g396438						
-Cre09.g397512	GMM:35.1.3;GMM:29.9;GMM:29.6.2.6	not assigned.no ontology.armadillo/beta-catenin repeat family protein;protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones				HSPBP1
-Cre09.g396772	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			mmp18
-Cre09.g386749			Chloroplast			
-Cre09.g401701			Mitochondrion			
-Cre09.g393913	GMM:25.7	C1-metabolism.GTP cyclohydrolase I		GO:0046654;GO:0005737;GO:0003934	tetrahydrofolate biosynthetic process;cytoplasm;GTP cyclohydrolase I activity	
-Cre09.g400997			Chloroplast			
-Cre09.g392350	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	CGLD37
-Cre09.g401022	GMM:10.1.9	cell wall.precursor synthesis.MUR4		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	UXE
-Cre09.g402300	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase				ASA8
-Cre09.g396950	GMM:34.7	transport.phosphate	Chloroplast	GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
-Cre09.g395850			Secretory pathway			
-Cre09.g412700			Mitochondrion			
-Cre09.g402701						
-Cre09.g396549			Secretory pathway			
-Cre09.g400516	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"		GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	
-Cre09.g408200	GMM:27.1.1	RNA.processing.splicing		GO:0008270;GO:0003676	zinc ion binding;nucleic acid binding	SRS4
-Cre09.g403500			Mitochondrion			
-Cre09.g389578	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP5
-Cre09.g400256			Mitochondrion			
-Cre09.g408550	GMM:29.5.11.2	protein.degradation.ubiquitin.E1		GO:0008641	small protein activating enzyme activity	
-Cre09.g387801				GO:0005515	protein binding	
-Cre09.g400738	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0008270	zinc ion binding	
-Cre09.g408851	GMM:29.5	protein.degradation				
-Cre09.g390957						
-Cre09.g388852						
-Cre09.g411600						
-Cre09.g386875	GMM:29.4	protein.postranslational modification				
-Cre09.g405650				GO:0005681;GO:0000398;GO:0000387	"spliceosomal complex;mRNA splicing, via spliceosome;spliceosomal snRNP assembly"	
-Cre09.g387850	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RWP13
-Cre09.g411700			Chloroplast			
-Cre09.g398326			Secretory pathway			
-Cre09.g406700	GMM:29.5.1	protein.degradation.subtilases	Mitochondrion	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
-Cre09.g400851						
-Cre09.g393099						
-Cre09.g392050			Chloroplast			
-Cre09.g386733						
-Cre09.g405104						
-Cre09.g396957			Mitochondrion			
-Cre09.g393850	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK2
-Cre09.g405550	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion	GO:0030150;GO:0005744	protein import into mitochondrial matrix;mitochondrial inner membrane presequence translocase complex	TIM21
-Cre09.g396450			Secretory pathway			APT3
-Cre09.g391912						
-Cre09.g396289			Mitochondrion			
-Cre09.g391541	GMM:29.3.99;GMM:26.13	protein.targeting.unknown;misc.acid and other phosphatases				
-Cre09.g386756						
-Cre09.g404500						SFI1
-Cre09.g408428	GMM:34.8;GMM:3.3	transport.metabolite transporters at the envelope membrane;minor CHO metabolism.sugar alcohols	Mitochondrion			
-Cre09.g394436	GMM:34.30;GMM:34.3	transport.H+ transporting pyrophosphatase;transport.amino acids	Secretory pathway	GO:0016020;GO:0015992;GO:0009678;GO:0004427	membrane;proton transport;hydrogen-translocating pyrophosphatase activity;inorganic diphosphatase activity	
-Cre09.g386500	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast			
-Cre09.g395843	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
-Cre09.g396920			Chloroplast			
-Cre09.g411525	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g394050	GMM:27.3.99;GMM:11.8.2	"RNA.regulation of transcription.unclassified;lipid metabolism.exotics (steroids, squalene etc).methylsterol monooxygenase"	Secretory pathway	GO:0008270	zinc ion binding	CPLD19
-Cre09.g399626			Chloroplast			
-Cre09.g389000						
-Cre09.g391350			Secretory pathway			
-Cre09.g393802			Mitochondrion			
-Cre09.g399812						
-Cre09.g400300						
-Cre09.g409801						
-Cre09.g398845			Secretory pathway			
-Cre09.g397586						
-Cre09.g413650				GO:0048193;GO:0005783	Golgi vesicle transport;endoplasmic reticulum	
-Cre09.g401350			Chloroplast			
-Cre09.g395139			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre09.g417150	GMM:21.6	redox.dismutases and catalases		GO:0055114;GO:0020037;GO:0006979;GO:0004096	oxidation-reduction process;heme binding;response to oxidative stress;catalase activity	CAT1
-Cre09.g386746						
-Cre09.g410600	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre09.g407350			Secretory pathway			
-Cre09.g387282			Mitochondrion	GO:0032259;GO:0008168	methylation;methyltransferase activity	
-Cre09.g405300			Chloroplast			
-Cre09.g416850			Mitochondrion			
-Cre09.g396800	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			CSE19
-Cre09.g391726						
-Cre09.g388282			Mitochondrion	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS18
-Cre09.g391467			Mitochondrion			
-Cre09.g391801						VSP4
-Cre09.g396550						
-Cre09.g393050				GO:0008168;GO:0006479	methyltransferase activity;protein methylation	
-Cre09.g416050	GMM:13.1.2.3.22;GMM:13.1.2.3	amino acid metabolism.synthesis.glutamate family.arginine.argininosuccinate synthase;amino acid metabolism.synthesis.glutamate family.arginine	Chloroplast	GO:0006526;GO:0005524;GO:0004055	arginine biosynthetic process;ATP binding;argininosuccinate synthase activity	AGS1
-Cre09.g395251			Chloroplast			
-Cre09.g406400	GMM:34.12	transport.metal		GO:0046872;GO:0030001;GO:0000166	metal ion binding;metal ion transport;nucleotide binding	CTP3
-Cre09.g399252			Chloroplast			
-Cre09.g387500			Mitochondrion			OPR38
-Cre09.g394600						
-Cre09.g393950	GMM:31.2;GMM:29.5.7;GMM:29.5.11.20	cell.division;protein.degradation.metalloprotease;protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	FHL2
-Cre09.g397105	GMM:26.10;GMM:17.2.2;GMM:16.2.1.8	misc.cytochrome P450;hormone metabolism.auxin.signal transduction;secondary metabolism.phenylpropanoids.lignin biosynthesis.F5H	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
-Cre09.g404250	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508;GO:0005509	cysteine-type peptidase activity;proteolysis;calcium ion binding	CEP9
-Cre09.g390450						
-Cre09.g392800						
-Cre09.g395300			Mitochondrion			
-Cre09.g388356	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast			TBC2
-Cre09.g399900			Secretory pathway;Chloroplast			
-Cre09.g394450	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion	GO:0046907	intracellular transport	RBP1
-Cre09.g412650			Chloroplast			
-Cre09.g412000			Chloroplast			
-Cre09.g410450	GMM:27.3.20	RNA.regulation of transcription.G2-like transcription factor family (GARP)	Secretory pathway			ROC15
-Cre09.g387250	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0008146	sulfotransferase activity	CSR3
-Cre09.g393284	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RLS8
-Cre09.g397150			Mitochondrion			
-Cre09.g390500			Secretory pathway			
-Cre09.g392467	GMM:34.12	transport.metal		GO:0046872;GO:0030001	metal ion binding;metal ion transport	ATX1
-Cre09.g402923			Secretory pathway			
-Cre09.g392023						CSV2
-Cre09.g401950			Chloroplast			
-Cre09.g403750			Mitochondrion			HAD6
-Cre09.g417013						
-Cre09.g403600						
-Cre09.g411950						
-Cre09.g388541			Chloroplast			
-Cre09.g390986	GMM:29.1.12	protein.aa activation.aspartate-tRNA ligase	Mitochondrion	GO:0016874;GO:0006418;GO:0005524;GO:0004812;GO:0003676;GO:0000166	ligase activity;tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleic acid binding;nucleotide binding	
-Cre09.g404200						
-Cre09.g386113	GMM:29.5.7	protein.degradation.metalloprotease				
-Cre09.g399100			Mitochondrion			OPR42
-Cre09.g402402			Secretory pathway			
-Cre09.g409325						
-Cre09.g399400	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0006629	lipid metabolic process	FAP199
-Cre09.g406983	GMM:31.1	cell.organisation				
-Cre09.g386731	GMM:27.1.1	RNA.processing.splicing		GO:0045131;GO:0003723;GO:0003676;GO:0000398	"pre-mRNA branch point binding;RNA binding;nucleic acid binding;mRNA splicing, via spliceosome"	
-Cre09.g395584			Mitochondrion			
-Cre09.g402050			Mitochondrion			
-Cre09.g413533			Chloroplast			
-Cre09.g399550	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre09.g412880	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Chloroplast			HSP70F
-Cre09.g386744						
-Cre09.g388023						
-Cre09.g387050	GMM:3.5	minor CHO metabolism.others	Chloroplast			FRK1
-Cre09.g406625			Mitochondrion			
-Cre09.g404550			Secretory pathway	GO:0006468;GO:0005524;GO:0004674	protein phosphorylation;ATP binding;protein serine/threonine kinase activity	
-Cre09.g400108						
-Cre09.g393991						
-Cre09.g395325						
-Cre09.g415450	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN17-1
-Cre09.g389467			Chloroplast			OPR8
-Cre09.g404050	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g394399	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre09.g417200						
-Cre09.g390801			Mitochondrion	GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	
-Cre09.g414000	GMM:16.1.3.2	secondary metabolism.isoprenoids.tocopherol biosynthesis.homogentisate phytyltransferase	Mitochondrion	GO:0016021;GO:0004659	integral component of membrane;prenyltransferase activity	
-Cre09.g395750	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre09.g400590						
-Cre09.g411633				GO:0008270;GO:0006355;GO:0005634;GO:0004402;GO:0003712	"zinc ion binding;regulation of transcription, DNA-templated;nucleus;histone acetyltransferase activity;transcription cofactor activity"	
-Cre09.g399300	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs	Secretory pathway	GO:0006457	protein folding	FKB17-1
-Cre09.g411850						
-Cre09.g402602			Mitochondrion			
-Cre09.g401650						
-Cre09.g396028			Chloroplast			
-Cre09.g408400			Secretory pathway			
-Cre09.g390060						RAA4
-Cre09.g389060			Mitochondrion			
-Cre09.g400553	GMM:33.30.1	development.multitarget.target of rapamycin		GO:0016773;GO:0008144;GO:0005515	"phosphotransferase activity, alcohol group as acceptor;drug binding;protein binding"	TOR1
-Cre09.g397808						
-Cre09.g401145						
-Cre09.g397438						
-Cre09.g410650	GMM:13.1.7.1	amino acid metabolism.synthesis.histidine.ATP phosphoribosyltransferase	Chloroplast	GO:0005737;GO:0003879;GO:0000287;GO:0000105	cytoplasm;ATP phosphoribosyltransferase activity;magnesium ion binding;histidine biosynthetic process	HIS1
-Cre09.g391753						
-Cre09.g387650			Mitochondrion			
-Cre09.g412787	GMM:29.4	protein.postranslational modification	Chloroplast			
-Cre09.g411200	GMM:26.30;GMM:1.1.1.3	misc.other Ferredoxins and Rieske domain;PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			TEF5
-Cre09.g402700	GMM:34.14	transport.unspecified cations	Mitochondrion	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	
-Cre09.g416900	GMM:29.4	protein.postranslational modification				
-Cre09.g399050	GMM:26.28	misc.GDSL-motif lipase		GO:0016788	"hydrolase activity, acting on ester bonds"	
-Cre09.g415200	GMM:29.2.99	protein.synthesis.misc		GO:0005515;GO:0003723	protein binding;RNA binding	NOM1
-Cre09.g392700						CGL39
-Cre09.g390300	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g395213						
-Cre09.g388800	GMM:12.3.1	N-metabolism.N-degradation.glutamate dehydrogenase	Mitochondrion	GO:0055114;GO:0016491;GO:0006520	oxidation-reduction process;oxidoreductase activity;cellular amino acid metabolic process	GDH1
-Cre09.g415001						
-Cre09.g416250	GMM:31.1.1.3.8;GMM:31.1	cell.organisation.cytoskeleton.Myosin.Class VII;cell.organisation		GO:0016459;GO:0005524;GO:0003774	myosin complex;ATP binding;motor activity	MYO2
-Cre09.g397734	GMM:26.10;GMM:26.1;GMM:17.2.2;GMM:16.8.3.3;GMM:16.1.4.7	misc.cytochrome P450;misc.misc2;hormone metabolism.auxin.signal transduction;secondary metabolism.flavonoids.dihydroflavonols.flavonoid 3'-monooxygenase;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP744A4
-Cre09.g389150						FAP93
-Cre09.g397000	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			
-Cre09.g390356			Secretory pathway	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre09.g389809			Chloroplast			
-Cre09.g398556						
-Cre09.g403367			Secretory pathway			
-Cre09.g394850	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF				TEF24
-Cre09.g398549			Chloroplast			
-Cre09.g389902			Mitochondrion			
-Cre09.g398702			Chloroplast			
-Cre09.g402950			Chloroplast			CGL21
-Cre09.g407250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP270
-Cre09.g403151			Mitochondrion			
-Cre09.g398956						
-Cre09.g403071			Chloroplast			
-Cre09.g393953			Secretory pathway			
-Cre09.g408750			Mitochondrion			
-Cre09.g396400	GMM:29.5.11.1;GMM:29.5.11	protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin		GO:0005515	protein binding	UBQ2
-Cre09.g402145			Secretory pathway			
-Cre09.g408800						
-Cre09.g386758	GMM:13.1.4.1.1;GMM:13.1.4.1	amino acid metabolism.synthesis.branched chain group.common.acetolactate synthase;amino acid metabolism.synthesis.branched chain group.common	Chloroplast	GO:0030976;GO:0003824;GO:0000287	thiamine pyrophosphate binding;catalytic activity;magnesium ion binding	ALS1
-Cre09.g397450						
-Cre09.g407200	GMM:16.1.4	secondary metabolism.isoprenoids.carotenoids	Chloroplast			
-Cre09.g401750			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre09.g407650			Mitochondrion			
-Cre09.g386912	GMM:26.5	misc.acyl transferases	Secretory pathway	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
-Cre09.g398050						
-Cre09.g390689			Mitochondrion			
-Cre09.g417400				GO:0006281;GO:0005524;GO:0005515;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;protein binding;helicase activity;DNA helicase activity;telomere maintenance	
-Cre09.g398104				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre09.g386155			Secretory pathway			
-Cre09.g396500						HAD3
-Cre09.g386143			Secretory pathway			
-Cre09.g390400			Chloroplast			
-Cre09.g393210			Secretory pathway			
-Cre09.g395350	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase				ASA9
-Cre09.g398030						
-Cre09.g391986	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	
-Cre09.g409728						
-Cre09.g389949	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004725	protein dephosphorylation;protein tyrosine phosphatase activity	
-Cre09.g390700						
-Cre09.g394917			Chloroplast			
-Cre09.g386748			Chloroplast			
-Cre09.g387504			Secretory pathway			
-Cre09.g402034	GMM:18.1	Co-factor and vitamine metabolism.molybdenum cofactor	Mitochondrion	GO:0008641	small protein activating enzyme activity	
-Cre09.g415700	GMM:8.3;GMM:1.5	TCA / organic transformation.carbonic anhydrases;PS.carbon concentrating mechanism	Chloroplast			CAH3
-Cre09.g392503						
-Cre09.g395732	GMM:29.9	protein.co-chaperones	Chloroplast			
-Cre09.g400812						
-Cre09.g404400	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre09.g393350						
-Cre09.g386700	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN13-1
-Cre09.g412500	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion			
-Cre09.g393617			Secretory pathway			
-Cre09.g417401	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor	Chloroplast			
-Cre09.g386754						
-Cre09.g388500			Chloroplast			
-Cre09.g406900						
-Cre09.g415550	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion			ASA2
-Cre09.g405701						
-Cre09.g404750	GMM:29.4.1	protein.postranslational modification.kinase		GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR2
-Cre09.g391652			Chloroplast			
-Cre09.g402552	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0055114;GO:0042773;GO:0016651	"oxidation-reduction process;ATP synthesis coupled electron transport;oxidoreductase activity, acting on NAD(P)H"	NUO11
-Cre09.g391393			Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g417050			Secretory pathway			
-Cre09.g408100						
-Cre09.g389541						OPR9
-Cre09.g400515						
-Cre09.g387150	GMM:27.3.23;GMM:20.2.1	RNA.regulation of transcription.heat-shock transcription factor family (HSF);stress.abiotic.heat		GO:0043565;GO:0006355;GO:0005634;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding"	HSF1
-Cre09.g387319	GMM:12.4	N-metabolism.misc		GO:0055114;GO:0050660;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing	
-Cre09.g398300			Chloroplast			
-Cre09.g400900			Chloroplast			
-Cre09.g405250			Secretory pathway			
-Cre09.g400650	GMM:29.2.1.2.1.6	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S6		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS6
-Cre09.g394750	GMM:29.2.1.1.3.1.1;GMM:29.2.1.1.1.1.1	protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.30S subunit.S1;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S1	Chloroplast	GO:0003676	nucleic acid binding	PRPS1
-Cre09.g410300				GO:0055114;GO:0016491;GO:0005515	oxidation-reduction process;oxidoreductase activity;protein binding	
-Cre09.g406250			Secretory pathway			
-Cre09.g396512			Chloroplast			OPR12
-Cre09.g391500	GMM:29.5.2	protein.degradation.autophagy				ATG9
-Cre09.g403954						
-Cre09.g392655						
-Cre09.g386550	GMM:3.5;GMM:29.4;GMM:27.3.99	minor CHO metabolism.others;protein.postranslational modification;RNA.regulation of transcription.unclassified		GO:0005096	GTPase activator activity	
-Cre09.g394150			Mitochondrion	GO:0004672	protein kinase activity	RAA1
-Cre09.g396050			Mitochondrion			
-Cre09.g399738						
-Cre09.g388875	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g400050						
-Cre09.g399439						
-Cre09.g395917				GO:0008080	N-acetyltransferase activity	
-Cre09.g401600				GO:0003676	nucleic acid binding	
-Cre09.g402515	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114;GO:0048038;GO:0009308;GO:0008131;GO:0005507	oxidation-reduction process;quinone binding;amine metabolic process;primary amine oxidase activity;copper ion binding	AMX1
-Cre09.g416550			Secretory pathway			MBO2
-Cre09.g414416	GMM:31.3	cell.cycle	Mitochondrion			CYCD4
-Cre09.g388430				GO:0005515	protein binding	
-Cre09.g400950			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NCT2
-Cre09.g390678				GO:0006470;GO:0004722	protein dephosphorylation;protein serine/threonine phosphatase activity	
-Cre09.g393765			Chloroplast			LMR1
-Cre09.g390152						
-Cre09.g393506	GMM:21.99	redox.misc	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	HCP3
-Cre09.g403150						PWR9
-Cre09.g413250						
-Cre09.g399476			Mitochondrion	GO:0005524	ATP binding	
-Cre09.g387838				GO:0016020	membrane	
-Cre09.g409050	GMM:29.5.3	protein.degradation.cysteine protease	Chloroplast			OTU6
-Cre09.g405776			Mitochondrion			
-Cre09.g397882			Secretory pathway			
-Cre09.g399363			Mitochondrion			
-Cre09.g394701	GMM:27.3	RNA.regulation of transcription	Chloroplast			
-Cre09.g386200						OPR36
-Cre09.g408250	GMM:29.2.4	protein.synthesis.elongation				EEF1A2
-Cre09.g392252			Mitochondrion	GO:0008270;GO:0003676	zinc ion binding;nucleic acid binding	
-Cre09.g402304						
-Cre09.g413900			Secretory pathway			
-Cre09.g415250						
-Cre09.g404503	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Secretory pathway;Chloroplast			SFI1
-Cre09.g387097			Secretory pathway	GO:0055114	oxidation-reduction process	
-Cre09.g402200			Chloroplast			
-Cre09.g402997	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0006364;GO:0004222	rRNA processing;metalloendopeptidase activity	
-Cre09.g391060			Secretory pathway			
-Cre09.g401515			Chloroplast			
-Cre09.g414100						
-Cre09.g398150				GO:0004725	protein tyrosine phosphatase activity	EYA1
-Cre09.g409150						QCR10
-Cre09.g387800	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast	GO:0008199;GO:0006879;GO:0006826	ferric iron binding;cellular iron ion homeostasis;iron ion transport	FER1
-Cre09.g400750	GMM:34.5	transport.ammonium	Mitochondrion	GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	AMT5
-Cre09.g389319	GMM:29.3.5	protein.targeting.peroxisomes	Mitochondrion	GO:0016021	integral component of membrane	
-Cre09.g401367			Mitochondrion			
-Cre09.g390912			Secretory pathway			
-Cre09.g413000			Secretory pathway			
-Cre09.g395399						
-Cre09.g395600	GMM:30.5	signalling.G-proteins	Mitochondrion	GO:0005525;GO:0003924;GO:0000287	GTP binding;GTPase activity;magnesium ion binding	
-Cre09.g412100	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0015979;GO:0009538;GO:0009522	photosynthesis;photosystem I reaction center;photosystem I	PSAF
-Cre09.g402450	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre09.g386986			Secretory pathway			
-Cre09.g404650			Mitochondrion			
-Cre09.g399701						
-Cre09.g405150	GMM:29.1.30;GMM:23.5.2	protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase	Chloroplast	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS1
-Cre09.g403900	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP294
-Cre09.g397253				GO:0055114;GO:0050660;GO:0016491	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity	
-Cre09.g402404						
-Cre09.g392393						
-Cre09.g397660			Secretory pathway			
-Cre09.g413100						
-Cre09.g401100			Secretory pathway	GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	
-Cre09.g407100			Mitochondrion	GO:0006412;GO:0005840;GO:0003735;GO:0003723	translation;ribosome;structural constituent of ribosome;RNA binding	MRPS5
-Cre09.g416000	GMM:27.1	RNA.processing		GO:0046540;GO:0000398	"U4/U6 x U5 tri-snRNP complex;mRNA splicing, via spliceosome"	
-Cre09.g392106						
-Cre09.g389550	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ13
-Cre09.g410950	GMM:12.1.1	N-metabolism.nitrate metabolism.NR		GO:0055114;GO:0042128;GO:0030151;GO:0016491	oxidation-reduction process;nitrate assimilation;molybdenum ion binding;oxidoreductase activity	NIT1
-Cre09.g388100						
-Cre09.g389801						
-Cre09.g395510			Chloroplast			
-Cre09.g397300	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0006508;GO:0004176	proteolysis;ATP-dependent peptidase activity	
-Cre09.g396139	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase				
-Cre09.g395650						
-Cre09.g399030	GMM:16.1.3.1;GMM:13.2.6.2	secondary metabolism.isoprenoids.tocopherol biosynthesis.hydroxyphenylpyruvate dioxygenase;amino acid metabolism.degradation.aromatic aa.tyrosine		GO:0055114;GO:0016701;GO:0009072;GO:0003868	"oxidation-reduction process;oxidoreductase activity, acting on single donors with incorporation of molecular oxygen;aromatic amino acid family metabolic process;4-hydroxyphenylpyruvate dioxygenase activity"	HPD2
-Cre09.g406600			Secretory pathway			
-Cre09.g394621			Chloroplast	GO:2001070	starch binding	
-Cre09.g413132						
-Cre09.g409426						
-Cre09.g413150			Chloroplast			
-Cre09.g416450			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre09.g387689						FAP76
-Cre09.g413500						
-Cre09.g390600	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre09.g389600	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g410000						
-Cre09.g400145						
-Cre09.g398652						
-Cre09.g416800						
-Cre09.g399141	GMM:34.7;GMM:34.2	transport.phosphate;transport.sugars	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre09.g390282			Mitochondrion	GO:0016021	integral component of membrane	
-Cre09.g402182						
-Cre09.g412400						
-Cre09.g406800	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0016020;GO:0008233;GO:0006465	membrane;peptidase activity;signal peptide processing	SPC18
-Cre09.g405350			Mitochondrion			
-Cre09.g400960			Chloroplast	GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre09.g408000			Secretory pathway			
-Cre09.g391319			Mitochondrion			
-Cre09.g398100	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g398350	GMM:29.5.11	protein.degradation.ubiquitin	Mitochondrion	GO:0034450;GO:0016567;GO:0006511;GO:0004842;GO:0000151	ubiquitin-ubiquitin ligase activity;protein ubiquitination;ubiquitin-dependent protein catabolic process;ubiquitin-protein transferase activity;ubiquitin ligase complex	
-Cre09.g386750	GMM:29.6.2.4;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP90s;stress.abiotic.heat	Cytosol;Chloroplast	GO:0051082;GO:0006950;GO:0006457;GO:0005524	unfolded protein binding;response to stress;protein folding;ATP binding	HSP90A
-Cre09.g396850			Chloroplast			
-Cre09.g400400			Secretory pathway	GO:0016020	membrane	
-Cre09.g403400						
-Cre09.g393800			Chloroplast			
-Cre09.g395450			Mitochondrion	GO:0005515	protein binding	
-Cre09.g388400						RAT1
-Cre09.g388652			Secretory pathway			
-Cre09.g386738			Secretory pathway			
-Cre09.g412175			Mitochondrion			
-Cre09.g390171	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g414850				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre09.g392729	GMM:13.2.3.4	amino acid metabolism.degradation.aspartate family.methionine	Mitochondrion	GO:0016742;GO:0009058	"hydroxymethyl-, formyl- and related transferase activity;biosynthetic process"	mtf2
-Cre09.g414550			Secretory pathway			CSR7
-Cre09.g390603			Mitochondrion			
-Cre09.g401551	GMM:11.8.4	"lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"	Chloroplast			
-Cre09.g387245	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020;GO:0006486;GO:0004576	membrane;protein glycosylation;oligosaccharyl transferase activity	
-Cre09.g388504						
-Cre09.g394200	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP102
-Cre09.g393150	GMM:15.2	"metal handling.binding, chelation and storage"		GO:0055114;GO:0016491;GO:0005507	oxidation-reduction process;oxidoreductase activity;copper ion binding	FOX1
-Cre09.g394176			Mitochondrion			
-Cre09.g410350			Chloroplast			
-Cre09.g387350	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG30
-Cre09.g406500			Chloroplast			
-Cre09.g411975						
-Cre09.g397803						
-Cre09.g407016						
-Cre09.g413700	GMM:34.8	transport.metabolite transporters at the envelope membrane				
-Cre09.g386743						
-Cre09.g393250			Mitochondrion	GO:0016020	membrane	
-Cre09.g401589						
-Cre09.g391600			Chloroplast			MEP1
-Cre09.g390050	GMM:18.1	Co-factor and vitamine metabolism.molybdenum cofactor				MOL1
-Cre09.g393654	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors				
-Cre09.g389393			Mitochondrion			
-Cre09.g397290						
-Cre09.g393432			Mitochondrion			
-Cre09.g392803						
-Cre09.g417100			Mitochondrion			
-Cre09.g391352						
-Cre09.g390250						
-Cre09.g386950			Mitochondrion			
-Cre09.g408650						
-Cre09.g389726						
-Cre09.g387430						
-Cre09.g401775						
-Cre09.g399886			Mitochondrion			
-Cre09.g388050			Chloroplast			
-Cre09.g398252	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast			
-Cre09.g399150			Mitochondrion			
-Cre09.g396150			Secretory pathway			
-Cre09.g391875	GMM:33.99	development.unspecified	Chloroplast			
-Cre09.g402626						
-Cre09.g404903						
-Cre09.g411300			Mitochondrion			
-Cre09.g394732				GO:0035735	intraciliary transport involved in cilium morphogenesis	CEP131
-Cre09.g402108			Secretory pathway	GO:0016021;GO:0008381	integral component of membrane;mechanically-gated ion channel activity	
-Cre09.g394769			Chloroplast	GO:0006464	cellular protein modification process	
-Cre09.g396624						
-Cre09.g388060	GMM:16.1.4.21	secondary metabolism.isoprenoids.carotenoids.violaxanthin de-epoxidase	Chloroplast			VDR1
-Cre09.g394991			Mitochondrion			
-Cre09.g395658	GMM:31.3;GMM:31.2;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g400500						
-Cre09.g395102						
-Cre09.g397956	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG40
-Cre09.g413800	GMM:29.4	protein.postranslational modification				
-Cre09.g404552			Mitochondrion			
-Cre09.g390134	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g416700						
-Cre09.g407801			Chloroplast			AKC1
-Cre09.g387393	GMM:27.3.55	RNA.regulation of transcription.HDA				
-Cre09.g393839						
-Cre09.g387900			Mitochondrion			
-Cre09.g401400						
-Cre09.g386350	GMM:29.2.4;GMM:27.3.67	protein.synthesis.elongation;RNA.regulation of transcription.putative transcription regulator		GO:0008270;GO:0006351;GO:0005634;GO:0003677;GO:0003676	"zinc ion binding;transcription, DNA-templated;nucleus;DNA binding;nucleic acid binding"	
-Cre09.g392652			Secretory pathway	GO:0055114;GO:0050662;GO:0016491	oxidation-reduction process;coenzyme binding;oxidoreductase activity	
-Cre09.g393300			Secretory pathway			
-Cre09.g399067	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
-Cre09.g405850	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0055114;GO:0051287;GO:0048038;GO:0016651	"oxidation-reduction process;NAD binding;quinone binding;oxidoreductase activity, acting on NAD(P)H"	NUO7
-Cre09.g392134	GMM:16.2.1.10	secondary metabolism.phenylpropanoids.lignin biosynthesis.CAD	Chloroplast	GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	
-Cre09.g394550	GMM:23.1.3	nucleotide metabolism.synthesis.PRS-PP		GO:0009116	nucleoside metabolic process	RPPK2
-Cre09.g415750	GMM:34.99	transport.misc	Chloroplast	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT8
-Cre09.g414600			Mitochondrion			
-Cre09.g401900			Secretory pathway			
-Cre09.g396252	GMM:21.2.2	redox.ascorbate and glutathione.glutathione	Mitochondrion	GO:0055114;GO:0045454;GO:0016491	oxidation-reduction process;cell redox homeostasis;oxidoreductase activity	GSR2
-Cre09.g392654						
-Cre09.g410100	GMM:34.21;GMM:34.1	transport.calcium;transport.p- and v-ATPases		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	
-Cre09.g412350	GMM:21.99	redox.misc				
-Cre09.g392208						
-Cre09.g401849						
-Cre09.g413750	GMM:13.2.4.1;GMM:13.1.2.3.4;GMM:13.1.1.3.11	amino acid metabolism.degradation.branched chain group.shared;amino acid metabolism.synthesis.glutamate family.arginine.acetylornithine aminotransferase;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase	Mitochondrion	GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	
-Cre09.g392579			Mitochondrion			OPR10
-Cre09.g399589			Mitochondrion			
-Cre09.g389400			Chloroplast			
-Cre09.g388353			Secretory pathway			PHC34
-Cre09.g416100	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ11
-Cre09.g409901			Secretory pathway			PHC57
-Cre09.g389245						
-Cre09.g410900			Secretory pathway			NAR2
-Cre09.g402350				GO:0005515	protein binding	
-Cre09.g406416						
-Cre09.g393136	GMM:35.1.21	not assigned.no ontology.epsin N-terminal homology (ENTH) domain-containing protein				
-Cre09.g407450						
-Cre09.g402330	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g404904			Mitochondrion			
-Cre09.g410800	GMM:34.4	transport.nitrate	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NRT2.2
-Cre09.g395065						
-Cre09.g397142	GMM:34.99	transport.misc		GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity	TRP15
-Cre09.g414150						
-Cre09.g399916						
-Cre09.g395900			Secretory pathway			CSV3
-Cre09.g413141			Mitochondrion			
-Cre09.g386741						
-Cre09.g400312	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	protein binding	
-Cre09.g400367	GMM:27.1	RNA.processing		GO:0006396	RNA processing	
-Cre09.g403800	GMM:31.6.1.4.2.1;GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC14
-Cre09.g395500						HEATR2
-Cre09.g414650	GMM:31.3;GMM:29.4	cell.cycle;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g393395			Chloroplast			
-Cre09.g402650						
-Cre09.g393100						
-Cre09.g389875	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Chloroplast	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE7
-Cre09.g408500			Mitochondrion			
-Cre09.g391578	GMM:2.1.1.2	major CHO metabolism.synthesis.sucrose.SPP	Mitochondrion			
-Cre09.g391245	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	ATG1
-Cre09.g402960						
-Cre09.g399289	GMM:33.99;GMM:33.3;GMM:27.3.28	development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0005515;GO:0003677	nucleus;protein binding;DNA binding	
-Cre09.g396100	GMM:1.5	PS.carbon concentrating mechanism	Mitochondrion			PHC15
-Cre09.g387171	GMM:3.5;GMM:10.1.11;GMM:10.1.10	minor CHO metabolism.others;cell wall.precursor synthesis.UER;cell wall.precursor synthesis.RHM				RHM1
-Cre09.g387763	GMM:11.5.2	lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)		GO:0055114;GO:0009331;GO:0006072;GO:0005975;GO:0004367	oxidation-reduction process;glycerol-3-phosphate dehydrogenase complex;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity	
-Cre09.g392251			Secretory pathway			
-Cre09.g406200	GMM:29.1.40;GMM:29.1.15	protein.aa activation.bifunctional aminoacyl-tRNA synthetase;protein.aa activation.proline-tRNA ligase	Chloroplast	GO:0006433;GO:0006418;GO:0005737;GO:0005524;GO:0004827;GO:0004812;GO:0000166	prolyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;proline-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	PRORS1
-Cre09.g395200						
-Cre09.g390467	GMM:9.1.2;GMM:34.99	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;transport.misc				CGL66
-Cre09.g396650	GMM:2.2.1.2	major CHO metabolism.degradation.acetate metabolism.phosphate acetyltransferase	Chloroplast	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	PAT2
-Cre09.g416950	GMM:29.4	protein.postranslational modification		GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	MKP1
-Cre09.g401050			Secretory pathway			
-Cre09.g406550						RPP40
-Cre09.g405950						
-Cre09.g386755						
-Cre09.g399250			Chloroplast			KIR1
-Cre09.g412050						
-Cre09.g398850						
-Cre09.g397098						
-Cre09.g398750	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g407900				GO:0008168	methyltransferase activity	
-Cre09.g403300	GMM:27.3.50	RNA.regulation of transcription.general transcription		GO:0006289;GO:0005634;GO:0004003;GO:0000439	nucleotide-excision repair;nucleus;ATP-dependent DNA helicase activity;core TFIIH complex	
-Cre09.g416350	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006334;GO:0005634	nucleosome assembly;nucleus	
-Cre09.g404000	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			CPLD59
-Cre09.g394288			Secretory pathway			
-Cre09.g413075						
-Cre09.g412600	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190;GO:0000160	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;phosphorelay signal transduction system	CYG52
-Cre09.g386850			Secretory pathway			
-Cre09.g402663						
-Cre09.g389838	GMM:27.4	RNA.RNA binding	Secretory pathway	GO:0003676	nucleic acid binding	
-Cre09.g389050			Secretory pathway	GO:0016021	integral component of membrane	MAW4
-Cre09.g390949	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP140
-Cre09.g400000						
-Cre09.g395925			Mitochondrion			
-Cre09.g412150			Chloroplast			PPR11
-Cre09.g388763			Chloroplast	GO:0006629	lipid metabolic process	
-Cre09.g389750	GMM:27.3.11	RNA.regulation of transcription.C2H2 zinc finger family		GO:0008270	zinc ion binding	
-Cre09.g400850	GMM:26.16	misc.myrosinases-lectin-jacalin	Secretory pathway	GO:0030246;GO:0007155	carbohydrate binding;cell adhesion	CTL4
-Cre09.g392914			Mitochondrion;Chloroplast			
-Cre09.g417176						
-Cre09.g392500						
-Cre09.g396698			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre09.g397250	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase	Chloroplast	GO:0006629	lipid metabolic process	FAD5A
-Cre09.g386161			Secretory pathway			
-Cre09.g405050	GMM:34.1.1.3;GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit D;transport.p- and v-ATPases.H+-transporting two-sector ATPase	Chloroplast	GO:0042626	"ATPase activity, coupled to transmembrane movement of substances"	ATPVD2
-Cre09.g388912			Secretory pathway			
-Cre09.g399908			Mitochondrion			
-Cre09.g397900			Mitochondrion	GO:0016021	integral component of membrane	
-Cre09.g411751			Secretory pathway			
-Cre09.g390850			Secretory pathway			
-Cre09.g408950				GO:0006914	autophagy	
-Cre09.g400293			Chloroplast			
-Cre09.g403256				GO:0005525	GTP binding	
-Cre09.g401034						
-Cre09.g398808			Chloroplast	GO:0005515;GO:0000042	protein binding;protein targeting to Golgi	
-Cre09.g408150			Chloroplast			
-Cre09.g400701						
-Cre09.g397401						
-Cre09.g408900						
-Cre09.g388850	GMM:34.21;GMM:30.3;GMM:3.3	transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	FAP329
-Cre09.g399849						
-Cre09.g388600						
-Cre09.g413350						
-Cre09.g389300	GMM:29.4	protein.postranslational modification				
-Cre09.g393900	GMM:18.3.1	Co-factor and vitamine metabolism.riboflavin.GTP cyclohydrolase II	Chloroplast	GO:0009231;GO:0003935	riboflavin biosynthetic process;GTP cyclohydrolase II activity	GCH2
-Cre09.g390652			Chloroplast			
-Cre09.g390900						
-Cre09.g399914			Mitochondrion			SSA8
-Cre09.g407110	GMM:35.1.17	not assigned.no ontology.transcription factor jumonji (jmjC) domain-containing protein				
-Cre09.g415900	GMM:34.8	transport.metabolite transporters at the envelope membrane	Secretory pathway	GO:0055085	transmembrane transport	MOT20
-Cre09.g387502						
-Cre09.g394584	GMM:31.3;GMM:29.2.2.3.3	cell.cycle;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases	Chloroplast	GO:0008649;GO:0006364;GO:0005737	rRNA methyltransferase activity;rRNA processing;cytoplasm	GID2
-Cre09.g398697			Secretory pathway			
-Cre09.g388134			Secretory pathway			
-Cre09.g398178						
-Cre09.g392988			Secretory pathway			
-Cre09.g386119						
-Cre09.g386736	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0005515	protein binding	FAP44
-Cre09.g388900				GO:0016788;GO:0009058	"hydrolase activity, acting on ester bonds;biosynthetic process"	TEH10
-Cre09.g396994	GMM:26.1;GMM:17.2.2	misc.misc2;hormone metabolism.auxin.signal transduction	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
-Cre09.g397850			Chloroplast			
-Cre09.g409700			Chloroplast			
-Cre09.g399923			Chloroplast			
-Cre09.g394251	GMM:31.6.1.6.3	cell.motility.eukaryotes.central pair.C1		GO:0005515	protein binding	PF16
-Cre09.g405100						
-Cre09.g391134						
-Cre09.g391450	GMM:21.99	redox.misc	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	HCP1
-Cre09.g402812						
-Cre09.g388351			Secretory pathway			PHC32
-Cre09.g397068						
-Cre09.g388200	GMM:29.2.1.2.2.10	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L10		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL10
-Cre09.g393580						
-Cre09.g416616			Mitochondrion			
-Cre09.g396300	GMM:19.9	tetrapyrrole synthesis.protoporphyrin IX oxidase	Chloroplast			PPX1
-Cre09.g392950	GMM:27.1	RNA.processing		GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	tmg12
-Cre09.g409300			Secretory pathway			
-Cre09.g391504						
-Cre09.g389900				GO:0005634	nucleus	HRP4
-Cre09.g405000			Chloroplast			
-Cre09.g400250			Secretory pathway			
-Cre09.g408825	GMM:29.5.3	protein.degradation.cysteine protease	Chloroplast	GO:0016787	hydrolase activity	
-Cre09.g411500	GMM:23.2;GMM:23.1.2	nucleotide metabolism.degradation;nucleotide metabolism.synthesis.purine	Secretory pathway			URN4
-Cre09.g390541	GMM:11.9.2	lipid metabolism.lipid degradation.lipases				
-Cre09.g391370						
-Cre09.g391763	GMM:29.5	protein.degradation	Secretory pathway			
-Cre09.g395880			Chloroplast			
-Cre09.g398141	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor		GO:0015074;GO:0005515	DNA integration;protein binding	
-Cre09.g410200			Secretory pathway			
-Cre09.g397623			Secretory pathway			
-Cre09.g391430			Mitochondrion			
-Cre09.g399551						
-Cre09.g388245						
-Cre09.g393550	GMM:30.6;GMM:3.6	signalling.MAP kinases;minor CHO metabolism.callose		GO:0008270	zinc ion binding	
-Cre09.g408464				GO:0055114;GO:0031418;GO:0016706;GO:0016491;GO:0005506	"oxidation-reduction process;L-ascorbic acid binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors;oxidoreductase activity;iron ion binding"	
-Cre09.g398882	GMM:31.6.1.3.1.2	cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.cytoplasmic dynein 1b subunits		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	DLI1
-Cre09.g394473			Chloroplast	GO:2001070	starch binding	LCI9
-Cre09.g415650			Chloroplast			FAP351
-Cre09.g395176			Chloroplast			
-Cre09.g398051			Mitochondrion			
-Cre09.g390200	GMM:23.4.99	nucleotide metabolism.phosphotransfer and pyrophosphatases.misc	Chloroplast	GO:0006796;GO:0005737;GO:0004427;GO:0000287	phosphate-containing compound metabolic process;cytoplasm;inorganic diphosphatase activity;magnesium ion binding	
-Cre09.g401300				GO:0008270;GO:0005685;GO:0000398;GO:0000387	"zinc ion binding;U1 snRNP;mRNA splicing, via spliceosome;spliceosomal snRNP assembly"	
-Cre09.g387200	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG28
-Cre09.g388986				GO:0003676	nucleic acid binding	
-Cre09.g407550						
-Cre09.g386739			Chloroplast			
-Cre09.g391550						
-Cre09.g396200			Secretory pathway			CSV4
-Cre09.g391901						
-Cre09.g387550						CGL142
-Cre09.g402400						
-Cre09.g410700	GMM:8.2.9	TCA / organic transformation.other organic acid transformations.cyt MDH	Chloroplast	GO:0055114;GO:0016616;GO:0016615;GO:0016491;GO:0006108	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;malate dehydrogenase activity;oxidoreductase activity;malate metabolic process"	MDN5
-Cre09.g414800	GMM:29.5.5;GMM:17.3.2.99	protein.degradation.serine protease;hormone metabolism.brassinosteroid.signal transduction.other	Secretory pathway	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	
-Cre09.g388578			Chloroplast			
-Cre09.g394350	GMM:29.3.1	protein.targeting.nucleus		GO:0017056;GO:0006913;GO:0005643	structural constituent of nuclear pore;nucleocytoplasmic transport;nuclear pore	NUP155
-Cre09.g403550	GMM:26.7;GMM:17.5.1;GMM:16.8.4;GMM:16.4.1	"misc.oxidases - copper, flavone etc;hormone metabolism.ethylene.synthesis-degradation;secondary metabolism.flavonoids.flavonols;secondary metabolism.N misc.alkaloid-like"		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	FVS1
-Cre09.g401219	GMM:31.1	cell.organisation	Mitochondrion	GO:0005515	protein binding	
-Cre09.g401330	GMM:12.2.99	N-metabolism.ammonia metabolism.unspecified				
-Cre09.g411100	GMM:29.2.1.2.1.10	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S10				RPS10
-Cre09.g392850						
-Cre09.g399950			Secretory pathway			
-Cre09.g403182	GMM:28.1;GMM:27.3.52	DNA.synthesis/chromatin structure;RNA.regulation of transcription.global transcription factor group		GO:0032784;GO:0006357	"regulation of DNA-templated transcription, elongation;regulation of transcription from RNA polymerase II promoter"	
-Cre09.g396326			Mitochondrion	GO:0005515	protein binding	
-Cre09.g406350	GMM:29.3.99	protein.targeting.unknown	Secretory pathway			
-Cre09.g392300			Secretory pathway	GO:0008080	N-acetyltransferase activity	
-Cre09.g403200						FAP198
-Cre09.g397702			Chloroplast			
-Cre09.g411900	GMM:25.1;GMM:1.2.5	C1-metabolism.glycine hydroxymethyltransferase;PS.photorespiration.serine hydroxymethyltransferase	Chloroplast	GO:0016740	transferase activity	SHMT3
-Cre09.g398623						
-Cre09.g399600						
-Cre09.g412676	GMM:29.4	protein.postranslational modification				
-Cre09.g388319						
-Cre09.g402051	GMM:34.18	transport.unspecified anions		GO:0055085;GO:0016020;GO:0006821;GO:0005247	transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity	CLV4
-Cre09.g397550			Secretory pathway			
-Cre09.g392060	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZIP4
-Cre09.g396694						CSB35
-Cre09.g412850			Mitochondrion			
-Cre09.g389356	GMM:34.10;GMM:34.1	transport.nucleotides;transport.p- and v-ATPases	Chloroplast	GO:0055085;GO:0016020;GO:0005215	transmembrane transport;membrane;transporter activity	
-Cre09.g386949			Secretory pathway			
-Cre09.g400775	GMM:18.7;GMM:16.5	Co-factor and vitamine metabolism.iron-sulphur clusters;secondary metabolism.sulfur-containing				ISCA1
-Cre09.g412550			Secretory pathway			
-Cre09.g386476			Secretory pathway			
-Cre09.g413600			Secretory pathway			
-Cre09.g400219						
-Cre09.g389171						
-Cre09.g403700						
-Cre09.g393321			Mitochondrion	GO:0008146	sulfotransferase activity	CSR12
-Cre09.g401923						
-Cre09.g398950	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB37
-Cre09.g389023			Mitochondrion			
-Cre09.g402886						
-Cre09.g398450						
-Cre09.g414350			Secretory pathway	GO:0005515	protein binding	
-Cre09.g390550			Secretory pathway;Chloroplast			
-Cre09.g398200	GMM:26.16	misc.myrosinases-lectin-jacalin		GO:0005515	protein binding	
-Cre09.g411666						
-Cre09.g400800	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g415100	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG25
-Cre09.g414250	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway	GO:0016758;GO:0005789	"transferase activity, transferring hexosyl groups;endoplasmic reticulum membrane"	ALG8
-Cre09.g386734			Secretory pathway	GO:0016757;GO:0006486	"transferase activity, transferring glycosyl groups;protein glycosylation"	
-Cre09.g406050	GMM:23.1.1.10	nucleotide metabolism.synthesis.pyrimidine.CTP synthetase		GO:0006221;GO:0003883	pyrimidine nucleotide biosynthetic process;CTP synthase activity	PYR7
-Cre09.g404351				GO:0005515	protein binding	
-Cre09.g392505			Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre09.g392319			Secretory pathway			VSP6
-Cre09.g401738				GO:0016791	phosphatase activity	
-Cre09.g391023	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	
-Cre09.g412250						
-Cre09.g417250	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG27
-Cre09.g406750			Secretory pathway	GO:0016758;GO:0008152	"transferase activity, transferring hexosyl groups;metabolic process"	
-Cre09.g396065	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion			ALK5
-Cre09.g402900			Mitochondrion			
-Cre09.g389503						
-Cre09.g394028			Secretory pathway			
-Cre09.g397100						
-Cre09.g401000			Mitochondrion			SNE3
-Cre09.g399910			Mitochondrion			
-Cre09.g390393						
-Cre09.g391650	GMM:21.99	redox.misc	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	HCP4
-Cre09.g415400			Secretory pathway	GO:0006890	"retrograde vesicle-mediated transport, Golgi to ER"	
-Cre09.g393876	GMM:27.1	RNA.processing	Mitochondrion	GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
-Cre09.g396735	GMM:29.2.2	protein.synthesis.ribosome biogenesis				
-Cre09.g404850						
-Cre09.g401301						
-Cre09.g389615	GMM:27.1	RNA.processing	Mitochondrion			
-Cre09.g389851			Mitochondrion			
-Cre09.g395800						
-Cre09.g395806	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase	Chloroplast	GO:0071949	FAD binding	
-Cre09.g408051			Mitochondrion	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
-Cre09.g392400	GMM:29.3.4.2	protein.targeting.secretory pathway.golgi				SEC24C
-Cre09.g390875						
-Cre09.g401108			Mitochondrion			
-Cre09.g399960	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre09.g389200						UMM8
-Cre09.g397549						
-Cre09.g386650	GMM:34.9;GMM:34.8;GMM:34.14;GMM:2.1.2.5	transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane;transport.unspecified cations;major CHO metabolism.synthesis.starch.transporter				ANT1
-Cre09.g388801						
-Cre09.g400150			Chloroplast			
-Cre09.g400849	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g398401			Secretory pathway			
-Cre09.g398289	GMM:33.99	development.unspecified	Chloroplast	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	
-Cre09.g394843			Chloroplast	GO:0008270;GO:0005634	zinc ion binding;nucleus	
-Cre09.g400550			Chloroplast			NOA1
-Cre09.g410400						
-Cre09.g399215						FAP341
-Cre09.g400478	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase		GO:0046488;GO:0016307	phosphatidylinositol metabolic process;phosphatidylinositol phosphate kinase activity	DIV31
-Cre09.g397701						
-Cre09.g391000			Secretory pathway			
-Cre09.g402293			Secretory pathway			
-Cre09.g391208			Mitochondrion			PSRP4
-Cre09.g399552	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				LCR1
-Cre09.g386838			Chloroplast			
-Cre09.g386752			Mitochondrion			
-Cre09.g402738			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre09.g405600				GO:0005515	protein binding	SFT1
-Cre09.g395050			Chloroplast			
-Cre09.g393062	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g396475	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway			
-Cre09.g403404			Mitochondrion			
-Cre09.g416300			Secretory pathway			
-Cre09.g386759						
-Cre09.g387652						
-Cre09.g388372	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			RAT2
-Cre09.g391949	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	
-Cre09.g387541						
-Cre09.g387615						
-Cre09.g394954			Chloroplast			
-Cre09.g401960	GMM:26.25	misc.sulfotransferase		GO:0008146	sulfotransferase activity	
-Cre09.g387875	GMM:23.4.99	nucleotide metabolism.phosphotransfer and pyrophosphatases.misc		GO:0006796;GO:0005737;GO:0004427;GO:0000287	phosphate-containing compound metabolic process;cytoplasm;inorganic diphosphatase activity;magnesium ion binding	IPY3
-Cre09.g409850						
-Cre09.g389986			Mitochondrion			
-Cre09.g392504			Chloroplast			
-Cre09.g390430	GMM:32	"micro RNA, natural antisense etc"		GO:0005515	protein binding	
-Cre09.g404800			Secretory pathway			
-Cre09.g393450	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP233
-Cre09.g395695	GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g399907	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure	Chloroplast	GO:0005515	protein binding	
-Cre09.g390245						
-Cre09.g415950	GMM:29.2.1.1.1.2.6	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L6	Chloroplast	GO:0019843;GO:0006412;GO:0005840;GO:0003735	rRNA binding;translation;ribosome;structural constituent of ribosome	PRPL6
-Cre09.g406950			Chloroplast			
-Cre09.g414900	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG41
-Cre09.g405400	GMM:29.6.1	protein.folding.prefoldin and trigger factor		GO:0051082;GO:0016272;GO:0006457	unfolded protein binding;prefoldin complex;protein folding	PFP3
-Cre09.g386742						
-Cre09.g402478	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g401550						
-Cre09.g387100	GMM:30.1;GMM:3.1	signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family	Chloroplast			CGL12
-Cre09.g387208	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g402589	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre09.g393025						
-Cre09.g404350			Secretory pathway			
-Cre09.g412450	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005515;GO:0000228	protein binding;nuclear chromosome	RAD21
-Cre09.g396451			Secretory pathway			GOX15
-Cre09.g401997			Secretory pathway	GO:0055114;GO:0051287;GO:0004616	oxidation-reduction process;NAD binding;phosphogluconate dehydrogenase (decarboxylating) activity	
-Cre09.g392766				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g397700						
-Cre09.g387300						
-Cre09.g394065						
-Cre09.g391356			Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g396750	GMM:34.16;GMM:31.6.1.10	transport.ABC transporters and multidrug resistance systems;cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			CSE18
-Cre09.g415600			Chloroplast	GO:2001070	starch binding	
-Cre09.g393543	GMM:21.99	redox.misc	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	HCP2
-Cre09.g392750	GMM:31.4	cell.vesicle transport				
-Cre09.g393691	GMM:29.4.1;GMM:11.8.1;GMM:11.3.5;GMM:11.3	"protein.postranslational modification.kinase;lipid metabolism.exotics (steroids, squalene etc).sphingolipids;lipid metabolism.phospholipid synthesis.diacylglycerol kinase;lipid metabolism.phospholipid synthesis"		GO:0016301	kinase activity	KDG4
-Cre09.g403955						
-Cre09.g401071						
-Cre09.g401404						
-Cre09.g401663			Chloroplast			
-Cre09.g390763	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	FAP354
-Cre09.g410250			Chloroplast			
-Cre09.g414050	GMM:33.99;GMM:28.99;GMM:28.1.3	development.unspecified;DNA.unspecified;DNA.synthesis/chromatin structure.histone		GO:0043141;GO:0005524;GO:0003678	ATP-dependent 5'-3' DNA helicase activity;ATP binding;DNA helicase activity	
-Cre09.g413300						
-Cre09.g401626			Mitochondrion			
-Cre09.g403450			Mitochondrion			
-Cre09.g388355			Secretory pathway			PHC33
-Cre09.g392692	GMM:33.99	development.unspecified		GO:0005634	nucleus	
-Cre09.g399997						
-Cre09.g387023	GMM:30.6;GMM:30.2.19;GMM:29.4	signalling.MAP kinases;signalling.receptor kinases.legume-lectin;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g396586			Chloroplast			
-Cre09.g415150						
-Cre09.g394880	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation				
-Cre09.g391353			Mitochondrion			
-Cre09.g395954			Chloroplast			
-Cre09.g396587						
-Cre09.g393650	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
-Cre09.g390100				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre09.g393728	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	
-Cre09.g394800	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP16
-Cre09.g410150						
-Cre09.g398215	GMM:29.2.3	protein.synthesis.initiation	Mitochondrion	GO:0006413;GO:0003743	translational initiation;translation initiation factor activity	
-Cre09.g388393	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG13
-Cre09.g387951						
-Cre09.g399200	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
-Cre09.g389504			Mitochondrion			
-Cre09.g394000			Secretory pathway			
-Cre09.g408350						
-Cre09.g386107			Chloroplast			
-Cre09.g400600			Secretory pathway			
-Cre09.g400330	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	ALK6
-Cre09.g400071			Mitochondrion			
-Cre09.g415500			Mitochondrion			TCA1
-Cre09.g386732			Secretory pathway			
-Cre09.g412910			Chloroplast			
-Cre09.g411450	GMM:31.6.1.11	cell.motility.eukaryotes.other				DAP1
-Cre09.g409100	GMM:19.6	tetrapyrrole synthesis.uroporphyrinogen III synthase	Chloroplast	GO:0033014;GO:0004852	tetrapyrrole biosynthetic process;uroporphyrinogen-III synthase activity	UROS1
-Cre09.g417025						
-Cre09.g391100						
-Cre09.g410500			Chloroplast	GO:0016779	nucleotidyltransferase activity	PAP11
-Cre09.g403950	GMM:4.1.16;GMM:30.3;GMM:29.4.1;GMM:29.4	glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g413566			Mitochondrion			
-Cre09.g398919			Chloroplast			
-Cre09.g391097	GMM:29.2.2;GMM:29.2.1.2.2.24	protein.synthesis.ribosome biogenesis;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L24	Mitochondrion			RPL24
-Cre09.g400200						
-Cre09.g411876			Chloroplast			
-Cre09.g392430	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Secretory pathway			
-Cre09.g389430	GMM:29.1.20	protein.aa activation.phenylalanine-tRNA ligase		GO:0043039;GO:0005737;GO:0005524;GO:0004812;GO:0000049	tRNA aminoacylation;cytoplasm;ATP binding;aminoacyl-tRNA ligase activity;tRNA binding	
-Cre09.g412300			Chloroplast	GO:0030150;GO:0005744	protein import into mitochondrial matrix;mitochondrial inner membrane presequence translocase complex	TIM16
-Cre09.g395991				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g388750	GMM:30.4;GMM:11.9.3.5;GMM:1.1.99.1	signalling.phosphinositides;lipid metabolism.lipid degradation.lysophospholipases.phosphoinositide phospholipase C;PS.lightreaction.unspecified.TEF		GO:0042578	phosphoric ester hydrolase activity	TEF21
-Cre09.g395288	GMM:34.12	transport.metal		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre09.g386745			Mitochondrion			
-Cre09.g391700			Chloroplast			
-Cre09.g415240	GMM:29.2.99	protein.synthesis.misc				
-Cre09.g390097	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g400182	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast			
-Cre09.g394362						
-Cre09.g395700			Mitochondrion	GO:0016020	membrane	
-Cre09.g399073	GMM:26.28	misc.GDSL-motif lipase	Chloroplast	GO:0016788	"hydrolase activity, acting on ester bonds"	
-Cre09.g413114			Chloroplast			
-Cre09.g397002						
-Cre09.g405750	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Mitochondrion	GO:0008270;GO:0004089	zinc ion binding;carbonate dehydratase activity	CAH8
-Cre09.g404201	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC30
-Cre09.g389097	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre09.g412940						
-Cre09.g386751			Mitochondrion			
-Cre09.g397845	GMM:30.5;GMM:28.2	signalling.G-proteins;DNA.repair	Mitochondrion	GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	
-Cre09.g413475						
-Cre09.g394900	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre09.g401256			Secretory pathway			
-Cre09.g403330						
-Cre09.g407300			Chloroplast			
-Cre09.g391050			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre09.g400886	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g399650			Mitochondrion			
-Cre09.g416750	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0005524	ATP binding	CCT2
-Cre09.g390578	GMM:34.99	transport.misc		GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity	FAP11
-Cre09.g394139						
-Cre09.g399775	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre09.g401700	GMM:35.1.5;GMM:35.1.27	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;not assigned.no ontology.tetratricopeptide repeat (TPR)				
-Cre09.g386149			Chloroplast			
-Cre09.g393954						FAP106
-Cre09.g389500						
-Cre09.g403441						
-Cre09.g409350	GMM:27.2	RNA.transcription		GO:0016887;GO:0005524	ATPase activity;ATP binding	RLI1
-Cre09.g403145						
-Cre09.g399104						
-Cre09.g402601			Mitochondrion			
-Cre09.g386250				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre09.g408700			Mitochondrion			
-Cre09.g397500			Chloroplast			
-Cre09.g411150			Secretory pathway			
-Cre09.g393200	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Mitochondrion.Matrix			HSP70C
-Cre09.g406650			Secretory pathway			
-Cre09.g407600						
-Cre09.g395547						
-Cre09.g386730						
-Cre09.g403000	GMM:27.1	RNA.processing	Secretory pathway	GO:0016779	nucleotidyltransferase activity	PAP9
-Cre09.g388150				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL36
-Cre09.g399350			Mitochondrion			
-Cre09.g387600						
-Cre09.g398900	GMM:1.5	PS.carbon concentrating mechanism	Chloroplast			GP1
-Cre09.g398550	GMM:31.2;GMM:29.5.9;GMM:29.5.11.20;GMM:29.2.2.1	cell.division;protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	
-Cre09.g392000						
-Cre09.g416500	GMM:27.3.11	RNA.regulation of transcription.C2H2 zinc finger family				CGL151
-Cre09.g411250						
-Cre09.g404900			Secretory pathway			
-Cre09.g393000						CSR6
-Cre09.g408676						
-Cre09.g398400	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	TRP5
-Cre09.g393551			Mitochondrion	GO:0005515	protein binding	
-Cre09.g390350			Secretory pathway			
-Cre09.g397800						
-Cre09.g395400						
-Cre09.g403350			Chloroplast			
-Cre09.g415850	GMM:9.1.1.5	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I.carbonic anhydrase				CAG3
-Cre09.g403050	GMM:29.4.1;GMM:2.2.2	protein.postranslational modification.kinase;major CHO metabolism.degradation.starch	Chloroplast	GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	DSP6
-Cre09.g410332	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g394250			Secretory pathway			
-Cre09.g401478			Mitochondrion	GO:0055114;GO:0006744	oxidation-reduction process;ubiquinone biosynthetic process	
-Cre09.g401812	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005524	ATP binding	
-Cre09.g389912	GMM:11.9.3	lipid metabolism.lipid degradation.lysophospholipases		GO:0005515	protein binding	
-Cre09.g400034	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast			
-Cre09.g391282				GO:0016757	"transferase activity, transferring glycosyl groups"	XYT1
-Cre09.g393358	GMM:27.3.70	RNA.regulation of transcription.silencing group				
-Cre09.g398555						
-Cre09.g386300	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB34
-Cre09.g411350			Mitochondrion			
-Cre09.g395028			Mitochondrion			
-Cre09.g404450	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP24
-Cre09.g417037						
-Cre09.g396661						DIV39
-Cre09.g387400	GMM:28.1	DNA.synthesis/chromatin structure		GO:0019985;GO:0016035;GO:0008408;GO:0006281;GO:0003677;GO:0000166	translesion synthesis;zeta DNA polymerase complex;3'-5' exonuclease activity;DNA repair;DNA binding;nucleotide binding	POLZ1
-Cre09.g401500	GMM:11.8.4	"lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	BSD3
-Cre09.g397475						
-Cre09.g395621				GO:0009966	regulation of signal transduction	
-Cre09.g403650	GMM:29.4	protein.postranslational modification	Chloroplast			
-Cre09.g398512			Secretory pathway			
-Cre09.g393247			Secretory pathway			
-Cre09.g398983						
-Cre09.g386740			Mitochondrion			
-Cre09.g394213	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm				DLT4
-Cre09.g390208			Chloroplast			
-Cre09.g390000	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
-Cre09.g401552			Chloroplast			
-Cre09.g408600				GO:0016491;GO:0008198;GO:0006725	oxidoreductase activity;ferrous iron binding;cellular aromatic compound metabolic process	
-Cre09.g390726						
-Cre09.g406851	GMM:31.3;GMM:31.2;GMM:27.3.99	cell.cycle;cell.division;RNA.regulation of transcription.unclassified				
-Cre09.g388450	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG29
-Cre09.g416200	GMM:27.1;GMM:1.1.1.3	RNA.processing;PS.lightreaction.photosystem II.biogenesis	Mitochondrion			MBB1
-Cre09.g394100	GMM:31.4;GMM:29.3.4.99	cell.vesicle transport;protein.targeting.secretory pathway.unspecified		GO:0015031;GO:0008565	protein transport;protein transporter activity	AP1S1
-Cre09.g392650	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	MOT39
-Cre09.g386737			Secretory pathway			
-Cre09.g386900	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAB18
-Cre09.g398475			Secretory pathway			
-Cre09.g396401	GMM:19.30;GMM:19.3	tetrapyrrole synthesis.urogen III methylase;tetrapyrrole synthesis.GSA	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	UPM1
-Cre09.g392840						
-Cre09.g413200	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g388000	GMM:31.2;GMM:29.4	cell.division;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDKD1
-Cre09.g413950			Mitochondrion	GO:0005509	calcium ion binding	EFH6
-Cre09.g406448						
-Cre09.g396000	GMM:34.4	transport.nitrate		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NRT2.3
-Cre09.g397697	GMM:29.2.1.2.2.141	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L4/L1		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL4
-Cre09.g398250						
-Cre09.g407700	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP1
-Cre09.g388467	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				GDI1
-Cre09.g393400	GMM:17.3.1.2.2;GMM:16.1.3.5	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.SMT2;secondary metabolism.isoprenoids.tocopherol biosynthesis.tocopherol methyltransferase	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	VTE4
-Cre09.g406300	GMM:29.3.99	protein.targeting.unknown				
-Cre09.g400450	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g414482						
-Cre09.g387467			Secretory pathway			
-Cre09.g394102	GMM:26.22;GMM:23.4.2	misc.short chain dehydrogenase/reductase (SDR);nucleotide metabolism.phosphotransfer and pyrophosphatases.guanylate kinase	Mitochondrion			GUK2
-Cre09.g387986			Mitochondrion			
-Cre09.g386125						
-Cre09.g417350						
-Cre09.g402071			Secretory pathway			
-Cre09.g405500						MLD1
-Cre09.g394806			Chloroplast			
-Cre09.g388097	GMM:29.3.3	protein.targeting.chloroplast	Mitochondrion	GO:0019867	outer membrane	OEP80
-Cre09.g407950			Secretory pathway			
-Cre09.g387000			Chloroplast			CGL34
-Cre09.g388838						
-Cre09.g388700	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g399915	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast			
-Cre09.g397771			Chloroplast			OPR117
-Cre09.g391689			Mitochondrion			
-Cre09.g389689	GMM:13.1.3.6.1.2	amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate semialdehyde dehydrogenase	Chloroplast	GO:0055114;GO:0051287;GO:0046983;GO:0016620;GO:0008652;GO:0005737;GO:0003942	"oxidation-reduction process;NAD binding;protein dimerization activity;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor;cellular amino acid biosynthetic process;cytoplasm;N-acetyl-gamma-glutamyl-phosphate reductase activity"	ASD1
-Cre09.g404100	GMM:34.18	transport.unspecified anions		GO:0055085;GO:0016020;GO:0006821;GO:0005247	transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity	CLV3
-Cre09.g391171						
-Cre09.g392616			Secretory pathway			
-Cre09.g401182	GMM:30.3;GMM:29.5.11.20	signalling.calcium;protein.degradation.ubiquitin.proteasom	Secretory pathway	GO:0005524	ATP binding	CGL153
-Cre09.g402150				GO:0055114;GO:0009231;GO:0008703	oxidation-reduction process;riboflavin biosynthetic process;5-amino-6-(5-phosphoribosylamino)uracil reductase activity	
-Cre09.g389650	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g392105			Mitochondrion			
-Cre09.g390504						
-Cre09.g405800	GMM:17.7.1;GMM:17.5.1	hormone metabolism.jasmonate.synthesis-degradation;hormone metabolism.ethylene.synthesis-degradation	Chloroplast			
-Cre09.g389100	GMM:31.4	cell.vesicle transport	Secretory pathway	GO:0016192	vesicle-mediated transport	GOT1
-Cre09.g386173						
-Cre09.g407150						
-Cre09.g395362			Chloroplast			
-Cre09.g394695						
-Cre09.g397031	GMM:26.1;GMM:17.2.2	misc.misc2;hormone metabolism.auxin.signal transduction		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
-Cre09.g409650	GMM:29.5.11.4.2;GMM:27.3.99	protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
-Cre09.g400627			Mitochondrion			
-Cre09.g395473			Chloroplast			
-Cre09.g415300						
-Cre09.g407373			Mitochondrion	GO:0008080	N-acetyltransferase activity	
-Cre09.g408300						
-Cre09.g390023	GMM:33.99;GMM:33.3;GMM:27.3.28	development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	CRR1
-Cre09.g410050	GMM:34.21;GMM:34.1	transport.calcium;transport.p- and v-ATPases		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	
-Cre09.g405200	GMM:29.2.1.2.2.13;GMM:29.2.1.1.4.2;GMM:29.2.1.1.3.2.13	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L13;protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L13		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPL13
-Cre09.g392867	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins	Secretory pathway			FMG2
-Cre09.g399402	GMM:26.1	misc.misc2	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
-Cre09.g400100	GMM:27.3.99;GMM:27.3.11	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.C2H2 zinc finger family		GO:0008270;GO:0003677	zinc ion binding;DNA binding	
-Cre09.g396846	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
-Cre09.g399663	GMM:30.99	signalling.unspecified				FXL7
-Cre09.g387060	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
-Cre09.g403034				GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre09.g395550						
-Cre09.g399601			Mitochondrion			
-Cre09.g402100						
-Cre09.g397327				GO:0016773;GO:0006303;GO:0005634;GO:0005524;GO:0005515;GO:0004677;GO:0003677	"phosphotransferase activity, alcohol group as acceptor;double-strand break repair via nonhomologous end joining;nucleus;ATP binding;protein binding;DNA-dependent protein kinase activity;DNA binding"	
-Cre09.g389350			Mitochondrion			
-Cre09.g409200						
-Cre09.g389282	GMM:31.6.1.6.1	cell.motility.eukaryotes.central pair.C1a				FAP114
-Cre09.g413400	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g402500	GMM:34.1	transport.p- and v-ATPases		GO:0033179;GO:0015991;GO:0015078	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVA2
-Cre09.g404700						
-Cre09.g407050	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP24
-Cre09.g389763						HPAT4
-Cre09.g402441						
-Cre09.g402219			Chloroplast			LCI3
-Cre09.g386757			Chloroplast			
-Cre09.g386753	GMM:27.3.81	RNA.regulation of transcription.S1FA		GO:0006355;GO:0005634;GO:0003677	"regulation of transcription, DNA-templated;nucleus;DNA binding"	
-Cre09.g399000	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
-Cre09.g395950	GMM:9.4	mitochondrial electron transport / ATP synthesis.alternative oxidase	Mitochondrion	GO:0055114;GO:0009916	oxidation-reduction process;alternative oxidase activity	AOX1
-Cre09.g399178	GMM:33.99;GMM:30.11.1	development.unspecified;signalling.light.COP9 signalosome		GO:0005515	protein binding	CSN5
-Cre09.g397350	GMM:28.1	DNA.synthesis/chromatin structure		GO:0016818;GO:0008026;GO:0006139;GO:0005524;GO:0004003;GO:0003677;GO:0003676	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;ATP-dependent helicase activity;nucleobase-containing compound metabolic process;ATP binding;ATP-dependent DNA helicase activity;DNA binding;nucleic acid binding"	XPD3
-Cre09.g402750				GO:0016020;GO:0015031;GO:0007030	membrane;protein transport;Golgi organization	COG2
-Cre09.g387700			Mitochondrion			
-Cre09.g388689	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g397919			Chloroplast			
-Cre09.g412201						
-Cre09.g395646	GMM:3.5	minor CHO metabolism.others	Chloroplast			
-Cre09.g409750	GMM:34.21	transport.calcium	Chloroplast	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	CAX2
-Cre09.g387912						FAP139
-Cre09.g403108			Mitochondrion	GO:0006464	cellular protein modification process	
-Cre09.g405105						
-Cre09.g401800	GMM:30.2.99;GMM:30.11	signalling.receptor kinases.misc;signalling.light	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre09.g395100	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	MKP4
-Cre09.g412750	GMM:35.1.3	not assigned.no ontology.armadillo/beta-catenin repeat family protein		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre09.g390750	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG24
-Cre09.g413425			Secretory pathway			
-Cre09.g397400	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre09.g411050						
-Cre09.g402849			Chloroplast			
-Cre09.g397050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				
-Cre09.g398067	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs		GO:0006457	protein folding	FKB62
-Cre09.g397052			Mitochondrion			
-Cre09.g398734			Mitochondrion			
-Cre09.g394658	GMM:3.5;GMM:16.8.2	minor CHO metabolism.others;secondary metabolism.flavonoids.chalcones				LCI28
-Cre09.g386137						
-Cre09.g409550						
-Cre09.g409500	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0003676	nucleic acid binding	
-Cre09.g404950						
-Cre09.g398993	GMM:16.1.3.1;GMM:13.2.6.2	secondary metabolism.isoprenoids.tocopherol biosynthesis.hydroxyphenylpyruvate dioxygenase;amino acid metabolism.degradation.aromatic aa.tyrosine		GO:0055114;GO:0016701;GO:0009072;GO:0003868	"oxidation-reduction process;oxidoreductase activity, acting on single donors with incorporation of molecular oxygen;aromatic amino acid family metabolic process;4-hydroxyphenylpyruvate dioxygenase activity"	HPD1
-Cre09.g396809			Chloroplast			
-Cre30.g758197			Chloroplast			
-Cre30.g758297						
-Cre30.g757997			Mitochondrion			
-Cre30.g758247			Chloroplast			
-Cre30.g758147			Mitochondrion			
-Cre30.g758097						
-Cre30.g758047						
-Cre31.g758447						CSU8
-Cre31.g758347			Chloroplast			
-Cre31.g758497			Chloroplast			
-Cre31.g758397						
-Cre40.g760247	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre40.g760147						
-Cre40.g760197						
-Cre35.g759447						
-Cre35.g759347	GMM:29.4	protein.postranslational modification	Mitochondrion			
-Cre35.g759397			Secretory pathway			
-Cre35.g759297			Secretory pathway			
-Cre35.g759497						
-Cre35.g759247	GMM:26.16	misc.myrosinases-lectin-jacalin	Chloroplast			SRR5
-Cre33.g758847	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
-Cre33.g758997						
-Cre33.g758897	GMM:28.1;GMM:27.1	DNA.synthesis/chromatin structure;RNA.processing		GO:0006397;GO:0006370;GO:0004484	mRNA processing;7-methylguanosine mRNA capping;mRNA guanylyltransferase activity	
-Cre33.g759047						
-Cre33.g758947				GO:0008146	sulfotransferase activity	CSR11
-Cre17.g705750			Chloroplast			
-Cre17.g716451	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre17.g715350	GMM:33.99;GMM:31.4;GMM:3.5;GMM:29.5.11.5	development.unspecified;cell.vesicle transport;minor CHO metabolism.others;protein.degradation.ubiquitin.ubiquitin protease		GO:0005096	GTPase activator activity	
-Cre17.g715400	GMM:30.5	signalling.G-proteins				
-Cre17.g703700	GMM:8.1.6	TCA / organic transformation.TCA.succinyl-CoA ligase	Mitochondrion	GO:0008152;GO:0003824	metabolic process;catalytic activity	SCLB1
-Cre17.g746497						
-Cre17.g712771						
-Cre17.g727900						
-Cre17.g741700	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIL22
-Cre17.g731450						
-Cre17.g731700	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO2
-Cre17.g739050			Secretory pathway			
-Cre17.g728700	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g731500						FAP394
-Cre17.g712742			Chloroplast			
-Cre17.g747297			Secretory pathway	GO:0004045	aminoacyl-tRNA hydrolase activity	FAP37
-Cre17.g702850	GMM:34.21	transport.calcium	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV5
-Cre17.g719651						
-Cre17.g737800			Chloroplast			
-Cre17.g719500			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	AOF9
-Cre17.g696300	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0003676	nucleic acid binding	
-Cre17.g709900	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre17.g726526						
-Cre17.g698903	GMM:2.1.2.4	major CHO metabolism.synthesis.starch.debranching	Chloroplast			
-Cre17.g724500			Secretory pathway			
-Cre17.g720850						
-Cre17.g713600	GMM:29.5.1	protein.degradation.subtilases	Chloroplast	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB13
-Cre17.g737250	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	GTP binding	EFG5
-Cre17.g742050						
-Cre17.g719750			Mitochondrion			
-Cre17.g697900			Chloroplast			
-Cre17.g739466			Chloroplast			
-Cre17.g700300	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	CGL22
-Cre17.g715653			Mitochondrion			
-Cre17.g724276						
-Cre17.g717350	GMM:27.1	RNA.processing	Chloroplast	GO:0008033	tRNA processing	TRI1
-Cre17.g701050	GMM:27.3.11	RNA.regulation of transcription.C2H2 zinc finger family				
-Cre17.g707350			Mitochondrion			
-Cre17.g729400	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre17.g722500						
-Cre17.g729900			Mitochondrion			
-Cre17.g739650	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	MFT1
-Cre17.g711700	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA30
-Cre17.g736400			Chloroplast			SCC3
-Cre17.g703976			Chloroplast			
-Cre17.g704100			Secretory pathway			
-Cre17.g733752						
-Cre17.g712000	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	SRS11
-Cre17.g697200						
-Cre17.g734050						
-Cre17.g708800	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0006750;GO:0005524;GO:0004363	glutathione biosynthetic process;ATP binding;glutathione synthase activity	GSH2
-Cre17.g706300	GMM:28.2	DNA.repair		GO:0016818;GO:0016787;GO:0008026;GO:0006139;GO:0005634;GO:0005524;GO:0003677;GO:0003676	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;hydrolase activity;ATP-dependent helicase activity;nucleobase-containing compound metabolic process;nucleus;ATP binding;DNA binding;nucleic acid binding"	XPD1
-Cre17.g738632						
-Cre17.g704802			Secretory pathway			
-Cre17.g730400	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
-Cre17.g699100	GMM:33.1	development.storage proteins	Mitochondrion	GO:0006629;GO:0004806	lipid metabolic process;triglyceride lipase activity	TGL20
-Cre17.g696400	GMM:29.5;GMM:29.2.1.1.3.2.1712	protein.degradation;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L7/L12	Chloroplast	GO:0030163	protein catabolic process	CLPS1
-Cre17.g745247			Mitochondrion			
-Cre17.g742700	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0005515	protein binding	CGLD30
-Cre17.g725800						
-Cre17.g714229	GMM:34.15;GMM:27.3.25	transport.potassium;RNA.regulation of transcription.MYB domain transcription factor family	Secretory pathway			KUP2
-Cre17.g721300	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase				ASA5
-Cre17.g701800						
-Cre17.g722800	GMM:29.5;GMM:29.3.2	protein.degradation;protein.targeting.mitochondria	Mitochondrion			MPPA1
-Cre17.g698600	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	LIP3
-Cre17.g711450						SYP8
-Cre17.g718500	GMM:31.6.1.9;GMM:29.5.7	cell.motility.eukaryotes.flagellar adhesion and gamete fusion;protein.degradation.metalloprotease	Secretory pathway			MMP1
-Cre17.g736584			Secretory pathway			
-Cre17.g740300						
-Cre17.g701450	GMM:3.5;GMM:1.1.99.1	minor CHO metabolism.others;PS.lightreaction.unspecified.TEF	Secretory pathway			
-Cre17.g714300						
-Cre17.g727350				GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPL23
-Cre17.g718185						
-Cre17.g708450	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			MMP33
-Cre17.g710700			Chloroplast			
-Cre17.g740550			Secretory pathway			
-Cre17.g722300			Secretory pathway			
-Cre17.g730150			Chloroplast			
-Cre17.g720400	GMM:34.12	transport.metal	Chloroplast	GO:0046872;GO:0000166	metal ion binding;nucleotide binding	HMA1
-Cre17.g743697			Mitochondrion			
-Cre17.g738700			Mitochondrion			
-Cre17.g718468			Secretory pathway			
-Cre17.g735900			Mitochondrion			
-Cre17.g717950	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC28
-Cre17.g732150			Mitochondrion			FAP130
-Cre17.g710879						
-Cre17.g699200						
-Cre17.g710550	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HFO29
-Cre17.g719325						MAW5
-Cre17.g699750						CTL2
-Cre17.g746747						
-Cre17.g722250			Chloroplast			
-Cre17.g740470			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre17.g720000			Cytosol	GO:0005524	ATP binding	CCT9
-Cre17.g723300	GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4;GMM:27.3.99	cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification;RNA.regulation of transcription.unclassified		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g697406			Mitochondrion			
-Cre17.g738350			Secretory pathway	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	PGA5
-Cre17.g733600						
-Cre17.g733652						
-Cre17.g714600	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO33
-Cre17.g700133	GMM:29.4	protein.postranslational modification				WNK1
-Cre17.g713025	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	DNJ33
-Cre17.g702250			Chloroplast			
-Cre17.g728900			Mitochondrion	GO:0005975	carbohydrate metabolic process	TAL3
-Cre17.g730817			Chloroplast			
-Cre17.g721600	GMM:29.5.11.1;GMM:27.1	protein.degradation.ubiquitin.ubiquitin;RNA.processing		GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
-Cre17.g738400			Secretory pathway			
-Cre17.g743269						
-Cre17.g697300	GMM:29.5.3	protein.degradation.cysteine protease		GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP16
-Cre17.g745997			Chloroplast			
-Cre17.g722675			Chloroplast			
-Cre17.g708025						
-Cre17.g703250	GMM:34.99;GMM:34	transport.misc;transport				
-Cre17.g735021						
-Cre17.g703101			Chloroplast			
-Cre17.g736050			Secretory pathway			
-Cre17.g703473						
-Cre17.g741900	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre17.g724900						
-Cre17.g734596			Mitochondrion			
-Cre17.g707800	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre17.g732400			Chloroplast			
-Cre17.g713850	GMM:13.1.5.3.2	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.SAT	Chloroplast	GO:0009001;GO:0006535;GO:0005737	serine O-acetyltransferase activity;cysteine biosynthetic process from serine;cytoplasm	SAT2
-Cre17.g716000						
-Cre17.g732700			Chloroplast	GO:0055070;GO:0005507	copper ion homeostasis;copper ion binding	CUTC1
-Cre17.g738250	GMM:16.1.5	secondary metabolism.isoprenoids.terpenoids	Chloroplast	GO:0016765	"transferase activity, transferring alkyl or aryl (other than methyl) groups"	
-Cre17.g747947						
-Cre17.g717550						
-Cre17.g744997			Mitochondrion			
-Cre17.g707850				GO:0003677	DNA binding	
-Cre17.g705600	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase	Secretory pathway	GO:0006629	lipid metabolic process	
-Cre17.g712850	GMM:21.1	redox.thioredoxin	Secretory pathway	GO:0045454	cell redox homeostasis	TRX23
-Cre17.g731850	GMM:26.8;GMM:26.22	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;misc.short chain dehydrogenase/reductase (SDR)"	Mitochondrion			
-Cre17.g707500	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast			
-Cre17.g733050						
-Cre17.g730483			Chloroplast			
-Cre17.g696900	GMM:30.2.24;GMM:29.4	signalling.receptor kinases.S-locus glycoprotein like;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g746597	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	
-Cre17.g739350			Secretory pathway			
-Cre17.g745347	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				
-Cre17.g703350			Chloroplast			
-Cre17.g708200	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO26
-Cre17.g712300			Chloroplast			
-Cre17.g710200			Chloroplast	GO:0020037	heme binding	IAD1
-Cre17.g720700	GMM:31.1	cell.organisation	Chloroplast			ANK14
-Cre17.g729050						
-Cre17.g699000	GMM:2.2.1.2	major CHO metabolism.degradation.acetate metabolism.phosphate acetyltransferase	Mitochondrion	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	PAT1
-Cre17.g727801			Mitochondrion			
-Cre17.g746097						
-Cre17.g735700			Secretory pathway			
-Cre17.g725700						
-Cre17.g700850						
-Cre17.g720950	GMM:17.3.1.1.1	hormone metabolism.brassinosteroid.synthesis-degradation.BRs.DET2	Secretory pathway	GO:0016627;GO:0016021;GO:0006629;GO:0005737	"oxidoreductase activity, acting on the CH-CH group of donors;integral component of membrane;lipid metabolic process;cytoplasm"	srd3
-Cre17.g736750						
-Cre17.g744047			Chloroplast			
-Cre17.g716200	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	SUM6
-Cre17.g715550						
-Cre17.g719550						
-Cre17.g744647						
-Cre17.g728976			Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
-Cre17.g733800						
-Cre17.g741400			Secretory pathway			
-Cre17.g734628	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre17.g696700			Secretory pathway			PHC22
-Cre17.g707250				GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT29
-Cre17.g711100	GMM:27.3.42	RNA.regulation of transcription.bromodomain proteins		GO:0005515	protein binding	
-Cre17.g734564			Chloroplast			MDH1
-Cre17.g736329			Mitochondrion			
-Cre17.g716700						
-Cre17.g720100			Mitochondrion			
-Cre17.g734741			Chloroplast			
-Cre17.g702800			Mitochondrion			
-Cre17.g700950	GMM:7.3;GMM:21.99;GMM:1.1.5.2	OPP.electron transfer;redox.misc;PS.lightreaction.other electron carrier (ox/red).ferredoxin	Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX5
-Cre17.g713575						
-Cre17.g717000				GO:0006508;GO:0004176	proteolysis;ATP-dependent peptidase activity	
-Cre17.g737702	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI				
-Cre17.g699350						
-Cre17.g718050						
-Cre17.g737463				GO:0005515	protein binding	
-Cre17.g734134						
-Cre17.g748047			Secretory pathway			
-Cre17.g736618			Chloroplast			
-Cre17.g733986						
-Cre17.g740000						
-Cre17.g728400	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre17.g727300	GMM:17.7.1.5	hormone metabolism.jasmonate.synthesis-degradation.12-oxophytodienoate reductase 3	Chloroplast	GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	NFO2
-Cre17.g729350				GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre17.g745747	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis				
-Cre17.g726800			Mitochondrion			
-Cre17.g718100	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified				
-Cre17.g701350	GMM:27.1.19	RNA.processing.ribonucleases		GO:0004523;GO:0003723	RNA-DNA hybrid ribonuclease activity;RNA binding	
-Cre17.g718750	GMM:26.23	misc.rhodanese		GO:0005509	calcium ion binding	FAP309
-Cre17.g713400	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA31
-Cre17.g724200	GMM:27.4;GMM:27.3.99	RNA.RNA binding;RNA.regulation of transcription.unclassified		GO:0003723	RNA binding	LAL1
-Cre17.g704750			Chloroplast			
-Cre17.g731571			Chloroplast			
-Cre17.g705500			Secretory pathway			PHC23
-Cre17.g706200				GO:0016021;GO:0016020;GO:0006811	integral component of membrane;membrane;ion transport	
-Cre17.g737050	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
-Cre17.g699900	GMM:3.5	minor CHO metabolism.others				
-Cre17.g703400			Secretory pathway			
-Cre17.g730575			Mitochondrion			
-Cre17.g723600	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B		GO:0042384;GO:0042073;GO:0030992;GO:0015631	cilium assembly;intraciliary transport;intraciliary transport particle B;tubulin binding	IFT81
-Cre17.g735250			Mitochondrion			
-Cre17.g698800	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0046872	metal ion binding	
-Cre17.g734250	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g727750						
-Cre17.g720550						
-Cre17.g745697	GMM:30.9;GMM:20.1;GMM:2.1	signalling.lipids;stress.biotic;major CHO metabolism.synthesis				
-Cre17.g727400	GMM:35.1.42;GMM:35.1.41	not assigned.no ontology.proline rich family;not assigned.no ontology.hydroxyproline rich proteins				HRP8
-Cre17.g729500						
-Cre17.g719450	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast			
-Cre17.g723200			Chloroplast			FAP372
-Cre17.g725500			Chloroplast			
-Cre17.g730050						
-Cre17.g733900						
-Cre17.g735375						
-Cre17.g738500			Secretory pathway	GO:0070652;GO:0051297;GO:0051225	HAUS complex;centrosome organization;spindle assembly	
-Cre17.g719200	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion	GO:0008270	zinc ion binding	ZYS1A
-Cre17.g699950			Mitochondrion			
-Cre17.g710500	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HTR29
-Cre17.g746997	GMM:5.3	fermentation.ADH	Chloroplast	GO:0055114;GO:0046872;GO:0016491;GO:0008152	oxidation-reduction process;metal ion binding;oxidoreductase activity;metabolic process	ADH1
-Cre17.g740390			Chloroplast			
-Cre17.g721150			Chloroplast			
-Cre17.g697500			Chloroplast			
-Cre17.g701300						
-Cre17.g723550	GMM:3.4.5	minor CHO metabolism.myo-inositol.inositol phosphatase	Chloroplast	GO:0046854	phosphatidylinositol phosphorylation	CPLD4
-Cre17.g702052			Secretory pathway			
-Cre17.g726050	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
-Cre17.g717150						FAP263
-Cre17.g704550						HRF1
-Cre17.g721200			Chloroplast			
-Cre17.g740800			Secretory pathway			
-Cre17.g722900						
-Cre17.g713950	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR32
-Cre17.g742300				GO:0005515	protein binding	FAP179
-Cre17.g703050			Chloroplast			
-Cre17.g712950			Mitochondrion			
-Cre17.g740900						
-Cre17.g710850	GMM:34.99;GMM:34.2	transport.misc;transport.sugars				
-Cre17.g733150	GMM:17.4.2	hormone metabolism.cytokinin.signal transduction		GO:0016020;GO:0007165;GO:0000160;GO:0000155	membrane;signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	COP10
-Cre17.g708901	GMM:30.2.12	signalling.receptor kinases.leucine rich repeat XII	Secretory pathway			
-Cre17.g714700						
-Cre17.g743597						
-Cre17.g723900	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP131
-Cre17.g731591			Mitochondrion			
-Cre17.g718850	GMM:29.5;GMM:28.1	protein.degradation;DNA.synthesis/chromatin structure		GO:0006260;GO:0005634;GO:0003677;GO:0003676	DNA replication;nucleus;DNA binding;nucleic acid binding	RFA1
-Cre17.g733250	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs	Chloroplast	GO:0006457	protein folding	FKB16-4
-Cre17.g718400			Chloroplast	GO:0005515	protein binding	
-Cre17.g744797			Mitochondrion			
-Cre17.g708550	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA27
-Cre17.g710900			Chloroplast			
-Cre17.g731001			Mitochondrion			
-Cre17.g705316						CSB64
-Cre17.g720528	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase				
-Cre17.g744197			Mitochondrion			
-Cre17.g711600			Mitochondrion			
-Cre17.g724300	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0016020;GO:0015979;GO:0009522	membrane;photosynthesis;photosystem I	PSAK
-Cre17.g715100						
-Cre17.g746847	GMM:3.3	minor CHO metabolism.sugar alcohols				tnp47
-Cre17.g698700			Mitochondrion			
-Cre17.g741950				GO:0035058;GO:0034464	nonmotile primary cilium assembly;BBSome	BBS1
-Cre17.g711850	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR30
-Cre17.g737150			Chloroplast			
-Cre17.g729800	GMM:31.2.5;GMM:29.3.3	cell.division.plastid;protein.targeting.chloroplast	Chloroplast.Stroma.Thylakoid.Membrane	GO:0051205;GO:0016021	protein insertion into membrane;integral component of membrane	ALB3.2
-Cre17.g740100						
-Cre17.g735800						
-Cre17.g698299				GO:0046983	protein dimerization activity	
-Cre17.g712450						
-Cre17.g732600	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX5
-Cre17.g734709			Secretory pathway			
-Cre17.g738800				GO:0005515	protein binding	
-Cre17.g712050						
-Cre17.g736150	GMM:29.4;GMM:28.1	protein.postranslational modification;DNA.synthesis/chromatin structure	Mitochondrion	GO:0006260;GO:0003887;GO:0003677	DNA replication;DNA-directed DNA polymerase activity;DNA binding	POL1-2
-Cre17.g705100			Chloroplast			
-Cre17.g741800						
-Cre17.g706800				GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre17.g697624	GMM:29.1	protein.aa activation	Mitochondrion			
-Cre17.g741200	GMM:31.1	cell.organisation		GO:0008017;GO:0005515	microtubule binding;protein binding	EBP1
-Cre17.g724400			Chloroplast			FAP257
-Cre17.g744147	GMM:28.1	DNA.synthesis/chromatin structure		GO:0031204;GO:0008565;GO:0005524;GO:0003676	"posttranslational protein targeting to membrane, translocation;protein transporter activity;ATP binding;nucleic acid binding"	
-Cre17.g746147			Secretory pathway			
-Cre17.g732350	GMM:24	biodegradation of xenobiotics	Mitochondrion			GOX4
-Cre17.g732050				GO:0006284	base-excision repair	AGE3
-Cre17.g696800			Secretory pathway			
-Cre17.g725000						
-Cre17.g716101	GMM:28.2	DNA.repair		GO:0034061;GO:0005634;GO:0003677	DNA polymerase activity;nucleus;DNA binding	POLL1
-Cre17.g722000				GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT30
-Cre17.g726400	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"	Chloroplast	GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	
-Cre17.g738950						
-Cre17.g701850						
-Cre17.g734805						
-Cre17.g709500	GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g718250				GO:0050662;GO:0003824	coenzyme binding;catalytic activity	
-Cre17.g728800	GMM:8.2.4;GMM:8.1.4	TCA / organic transformation.other organic acid transformations.IDH;TCA / organic transformation.TCA.IDH	Mitochondrion	GO:0055114;GO:0051287;GO:0016616;GO:0000287	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;magnesium ion binding"	IDH1
-Cre17.g721650						
-Cre17.g738150	GMM:20.2.3	stress.abiotic.drought/salt		GO:0016020	membrane	ERM10
-Cre17.g717250			Secretory pathway			
-Cre17.g700700			Secretory pathway			
-Cre17.g719834						
-Cre17.g745197			Mitochondrion			
-Cre17.g698332						
-Cre17.g715900	GMM:25;GMM:23.5.1;GMM:23.5	C1-metabolism;nucleotide metabolism.deoxynucleotide metabolism.dihydrofolate reductase-thymidylate synthase;nucleotide metabolism.deoxynucleotide metabolism		GO:0055114;GO:0009165;GO:0006545;GO:0006231;GO:0004799;GO:0004146	oxidation-reduction process;nucleotide biosynthetic process;glycine biosynthetic process;dTMP biosynthetic process;thymidylate synthase activity;dihydrofolate reductase activity	
-Cre17.g729393	GMM:23.1.2	nucleotide metabolism.synthesis.purine				
-Cre17.g743497						
-Cre17.g707650	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g740750						
-Cre17.g742350						
-Cre17.g746697	GMM:31.1	cell.organisation	Chloroplast			FAP249
-Cre17.g742150						
-Cre17.g716613			Secretory pathway			
-Cre17.g729600	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre17.g733850						
-Cre17.g738200						
-Cre17.g711750	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB30
-Cre17.g734548	GMM:6.5	gluconeogenesis / glyoxylate cycle.pyruvate dikinase	Mitochondrion	GO:0050242;GO:0016772;GO:0016310;GO:0016301;GO:0006090;GO:0005524	"pyruvate, phosphate dikinase activity;transferase activity, transferring phosphorus-containing groups;phosphorylation;kinase activity;pyruvate metabolic process;ATP binding"	PPD2
-Cre17.g734612	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP2
-Cre17.g725301	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre17.g724125			Secretory pathway			
-Cre17.g702451	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0005515	protein binding	hlm27
-Cre17.g734400	GMM:29.5.11.4.3.3	protein.degradation.ubiquitin.E3.SCF.cullin		GO:0031625;GO:0006511	ubiquitin protein ligase binding;ubiquitin-dependent protein catabolic process	CUL3
-Cre17.g721750	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG9
-Cre17.g744447	GMM:34.14	transport.unspecified cations		GO:0046872;GO:0016887;GO:0016021;GO:0006812;GO:0000166	metal ion binding;ATPase activity;integral component of membrane;cation transport;nucleotide binding	
-Cre17.g721517						
-Cre17.g747547						
-Cre17.g699776						
-Cre17.g699500	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0006464	cellular protein modification process	TTLL9
-Cre17.g740150						
-Cre17.g702976						
-Cre17.g720450						
-Cre17.g732650	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway			
-Cre17.g725950			Mitochondrion	GO:0008146	sulfotransferase activity	CSR13
-Cre17.g700750				GO:0016021	integral component of membrane	
-Cre17.g733650	GMM:16.99	secondary metabolism.unspecified	Secretory pathway	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	BIO3
-Cre17.g707050	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	UAF5
-Cre17.g707600			Secretory pathway			
-Cre17.g712126			Chloroplast			
-Cre17.g713500	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO31
-Cre17.g747047						
-Cre17.g709300			Secretory pathway			
-Cre17.g722150	GMM:16.7;GMM:11.1.11;GMM:11.1.10	secondary metabolism.wax;lipid metabolism.FA synthesis and FA elongation.fatty acid elongase;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase		GO:0016747;GO:0016020;GO:0006633	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;fatty acid biosynthetic process"	PKS3
-Cre17.g712500			Chloroplast			
-Cre17.g699450						
-Cre17.g716450	GMM:33.99;GMM:31.1	development.unspecified;cell.organisation		GO:0005524	ATP binding	
-Cre17.g733700						
-Cre17.g742932						
-Cre17.g734150						
-Cre17.g736700			Secretory pathway			
-Cre17.g744347			Secretory pathway			
-Cre17.g702576						
-Cre17.g717900	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC1
-Cre17.g708250	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	ARL8
-Cre17.g716050	GMM:29.5	protein.degradation	Chloroplast	GO:0005524	ATP binding	
-Cre17.g701884						
-Cre17.g723150	GMM:29.3.4.1	protein.targeting.secretory pathway.ER	Secretory pathway	GO:0055114;GO:0016671;GO:0005783;GO:0003756	"oxidation-reduction process;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;endoplasmic reticulum;protein disulfide isomerase activity"	ERO1
-Cre17.g726250	GMM:9.9;GMM:27.3.99	mitochondrial electron transport / ATP synthesis.F1-ATPase;RNA.regulation of transcription.unclassified	Secretory pathway	GO:0043461	proton-transporting ATP synthase complex assembly	ATP12
-Cre17.g728750			Secretory pathway			
-Cre17.g729700						CGL133
-Cre17.g738900			Chloroplast			
-Cre17.g698500			Chloroplast			
-Cre17.g724450			Mitochondrion			
-Cre17.g703900	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B				IFT172
-Cre17.g718900				GO:0042254;GO:0031429;GO:0001522	ribosome biogenesis;box H/ACA snoRNP complex;pseudouridine synthesis	FAP88
-Cre17.g713305						
-Cre17.g728050						
-Cre17.g703176	GMM:21.6	redox.dismutases and catalases	Secretory pathway	GO:0055114;GO:0046872;GO:0006801;GO:0004784	oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity	MSD5
-Cre17.g705150			Chloroplast	GO:0006260;GO:0003896	DNA replication;DNA primase activity	
-Cre17.g741350	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN7-4
-Cre17.g746547			Mitochondrion	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre17.g731550			Chloroplast			
-Cre17.g734693			Secretory pathway			
-Cre17.g716800	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	XUV7
-Cre17.g710150	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	RPT4
-Cre17.g714500	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA33
-Cre17.g707200			Secretory pathway	GO:0016021;GO:0016020;GO:0006811;GO:0006810;GO:0005230	integral component of membrane;membrane;ion transport;transport;extracellular ligand-gated ion channel activity	LIC2
-Cre17.g743947			Mitochondrion			
-Cre17.g744897			Secretory pathway	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
-Cre17.g722650			Chloroplast			
-Cre17.g707950	GMM:29.6.2.6	protein.folding.chaperones and co-chaperones.co-chaperones	Chloroplast	GO:0008270	zinc ion binding	HEP2
-Cre17.g743747	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
-Cre17.g736300			Secretory pathway			
-Cre17.g728483			Mitochondrion			
-Cre17.g714950	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
-Cre17.g696950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g692564			Chloroplast			
-Cre17.g731350	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre17.g702300			Secretory pathway			
-Cre17.g737100	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP127
-Cre17.g738600	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Mitochondrion			RLS5
-Cre17.g735450	GMM:29.5.1	protein.degradation.subtilases		GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB14
-Cre17.g706900	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CNG3
-Cre17.g731200			Chloroplast			
-Cre17.g709850	GMM:2.2.1.1	major CHO metabolism.degradation.sucrose.fructokinase	Mitochondrion	GO:0016774;GO:0016310;GO:0016301;GO:0008152;GO:0005622	"phosphotransferase activity, carboxyl group as acceptor;phosphorylation;kinase activity;metabolic process;intracellular"	ACK2
-Cre17.g734773			Chloroplast			
-Cre17.g722450						
-Cre17.g745147						
-Cre17.g703650						
-Cre17.g742800						
-Cre17.g704450			Mitochondrion			
-Cre17.g725600	GMM:7.1.1	OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)	Secretory pathway			
-Cre17.g709000	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway			
-Cre17.g717050	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre17.g727650	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	ATM2
-Cre17.g726700	GMM:11.1.8	lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase	Mitochondrion	GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre17.g730100	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	RSEP1
-Cre17.g713726			Chloroplast			
-Cre17.g711200			Chloroplast			
-Cre17.g711457	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Mitochondrion			
-Cre17.g704650						
-Cre17.g717800	GMM:29.3.1	protein.targeting.nucleus		GO:0006810;GO:0005643	transport;nuclear pore	
-Cre17.g719100	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion	GO:0008270	zinc ion binding	ZYS1B
-Cre17.g705400	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA1
-Cre17.g715050	GMM:3.5	minor CHO metabolism.others		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	RAB28
-Cre17.g701650	GMM:29.2.1.2.2.27	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L27		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL27
-Cre17.g745897						
-Cre17.g706450			Secretory pathway	GO:0016021;GO:0016020;GO:0006811;GO:0006810;GO:0005230	integral component of membrane;membrane;ion transport;transport;extracellular ligand-gated ion channel activity	LIC3
-Cre17.g739450	GMM:28.1.3;GMM:27.3.13	"DNA.synthesis/chromatin structure.histone;RNA.regulation of transcription.CCAAT box binding factor family, DR1"				DRT1
-Cre17.g705950				GO:0008080	N-acetyltransferase activity	
-Cre17.g710871			Mitochondrion			
-Cre17.g733300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g698400						LCI31
-Cre17.g723800						
-Cre17.g715800			Secretory pathway			
-Cre17.g724150	GMM:26.17	misc.dynamin		GO:0005525;GO:0003924	GTP binding;GTPase activity	DRP3
-Cre17.g721500	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase	Chloroplast			STA2
-Cre17.g729950	GMM:21.99	redox.misc	Chloroplast	GO:0055114;GO:0032542	oxidation-reduction process;sulfiredoxin activity	SRX2
-Cre17.g720256			Chloroplast			
-Cre17.g735500						
-Cre17.g745497						
-Cre17.g711150	GMM:11.2.4	lipid metabolism.FA desaturation.omega 6 desaturase		GO:0055114;GO:0016717;GO:0006629	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water;lipid metabolic process"	FAD2
-Cre17.g701551			Mitochondrion			
-Cre17.g729200						
-Cre17.g714450	GMM:34.15	transport.potassium		GO:0071805;GO:0016020;GO:0015079	potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity	KUP3
-Cre17.g705450			Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	LCI26
-Cre17.g711526						
-Cre17.g732500						
-Cre17.g698000	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion	GO:0046933;GO:0046034;GO:0033178;GO:0016820;GO:0015992;GO:0015991;GO:0015986;GO:0005524	"proton-transporting ATP synthase activity, rotational mechanism;ATP metabolic process;proton-transporting two-sector ATPase complex, catalytic domain;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;proton transport;ATP hydrolysis coupled proton transport;ATP synthesis coupled proton transport;ATP binding"	ATP2
-Cre17.g734125						
-Cre17.g700600	GMM:35.1.9;GMM:29.5.11.5	not assigned.no ontology.BTB/POZ domain-containing protein;protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
-Cre17.g709600			Mitochondrion			
-Cre17.g732250			Chloroplast			
-Cre17.g708100	GMM:23.3.1.2	nucleotide metabolism.salvage.phosphoribosyltransferases.hypoxanthine-guanine phosphoribosyltransferase (HPRT)	Chloroplast	GO:0009116	nucleoside metabolic process	
-Cre17.g733350			Secretory pathway			
-Cre17.g725050	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	protein binding	UBL5
-Cre17.g705850	GMM:13.1.2.2.1;GMM:13.1.2.2	amino acid metabolism.synthesis.glutamate family.proline.delta 1-pyrroline-5-carboxylate synthetase;amino acid metabolism.synthesis.glutamate family.proline		GO:0003723	RNA binding	GGK2
-Cre17.g746247	GMM:27.3.65	RNA.regulation of transcription.polycomb group (PcG)		GO:0005515	protein binding	
-Cre17.g741100	GMM:31.3	cell.cycle				
-Cre17.g747797	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Mitochondrion			MCP30
-Cre17.g746197			Secretory pathway			
-Cre17.g725851						
-Cre17.g710881			Mitochondrion			
-Cre17.g704050			Secretory pathway			
-Cre17.g712250						
-Cre17.g747397	GMM:29.4.1;GMM:29.4;GMM:29.2.2	protein.postranslational modification.kinase;protein.postranslational modification;protein.synthesis.ribosome biogenesis	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g726450			Chloroplast			
-Cre17.g707750			Secretory pathway			
-Cre17.g705650						
-Cre17.g725376			Secretory pathway			
-Cre17.g721900	GMM:31.4;GMM:29.3.4.2	cell.vesicle transport;protein.targeting.secretory pathway.golgi		GO:0017119;GO:0006891	Golgi transport complex;intra-Golgi vesicle-mediated transport	COG5
-Cre17.g747197	GMM:31.1	cell.organisation		GO:0034314;GO:0030833;GO:0015629;GO:0005885	Arp2/3 complex-mediated actin nucleation;regulation of actin filament polymerization;actin cytoskeleton;Arp2/3 protein complex	
-Cre17.g723650	GMM:13.2.4.1	amino acid metabolism.degradation.branched chain group.shared	Mitochondrion	GO:0016747;GO:0008152	"transferase activity, transferring acyl groups other than amino-acyl groups;metabolic process"	ATO1
-Cre17.g730300						
-Cre17.g711650	GMM:31.1	cell.organisation				NUDC1
-Cre17.g711000						
-Cre17.g718550			Secretory pathway			
-Cre17.g697800						
-Cre17.g730700			Chloroplast			
-Cre17.g703550						
-Cre17.g745047			Secretory pathway			
-Cre17.g705250	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI				
-Cre17.g719876			Mitochondrion			
-Cre17.g715250	GMM:18.6;GMM:11.1.1.2.3;GMM:11.1.1	Co-factor and vitamine metabolism.biotin;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.biotin carboxyl carrier protein;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation	Chloroplast			BCC1
-Cre17.g701200	GMM:29.2.1.2.2.14	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L14		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL14
-Cre17.g743200						
-Cre17.g747447						
-Cre17.g698233	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Mitochondrion	GO:0005634;GO:0005515;GO:0003677	nucleus;protein binding;DNA binding	
-Cre17.g740224						
-Cre17.g721850			Mitochondrion	GO:0006468;GO:0005524;GO:0004674	protein phosphorylation;ATP binding;protein serine/threonine kinase activity	SSA16
-Cre17.g719537			Secretory pathway			
-Cre17.g702002						
-Cre17.g740650	GMM:29.4	protein.postranslational modification	Mitochondrion			
-Cre17.g732566			Secretory pathway			
-Cre17.g697701			Mitochondrion			
-Cre17.g711300						
-Cre17.g736800			Mitochondrion			
-Cre17.g707137			Mitochondrion			
-Cre17.g731250	GMM:29.2.1.1.4.1;GMM:29.2.1.1.3.1.15	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.30S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.30S subunit.S15	Mitochondrion	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS15
-Cre17.g698550	GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g739150	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Secretory pathway	GO:0008236;GO:0006508;GO:0005515	serine-type peptidase activity;proteolysis;protein binding	TSP5
-Cre17.g719792			Mitochondrion			
-Cre17.g744547			Chloroplast			
-Cre17.g739500			Mitochondrion			
-Cre17.g709700						
-Cre17.g728150	GMM:31.4	cell.vesicle transport		GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	YKT6
-Cre17.g711480						
-Cre17.g717919						
-Cre17.g705000	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification		GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	FAP223
-Cre17.g741450	GMM:29.6.2.2;GMM:29.6;GMM:1.3.13	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding;PS.calvin cycle.rubisco interacting	Chloroplast	GO:0005524	ATP binding	CPN60B1
-Cre17.g741300						
-Cre17.g733425			Chloroplast			
-Cre17.g734660						
-Cre17.g708350			Secretory pathway			
-Cre17.g724600	GMM:31.5.1;GMM:29.3.3;GMM:26.30;GMM:26.3	"cell.cell death.plants;protein.targeting.chloroplast;misc.other Ferredoxins and Rieske domain;misc.gluco-, galacto- and mannosidases"	Chloroplast	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	PAO2
-Cre17.g728600						
-Cre17.g731466			Mitochondrion	GO:0005515	protein binding	
-Cre17.g742116						
-Cre17.g743288						
-Cre17.g719000	GMM:29.2.3;GMM:28.1;GMM:27.1.2	protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	UAP56
-Cre17.g734450	GMM:29.2.1.99.2.19;GMM:29.2.1.1.1.2.19	protein.synthesis.ribosomal protein.unknown.large subunit.L19;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L19	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL19
-Cre17.g713150			Mitochondrion;Secretory pathway			
-Cre17.g741601			Chloroplast			
-Cre17.g722700				GO:0016020	membrane	
-Cre17.g727950	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom				RPN2
-Cre17.g734516	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	protein binding	RPN9
-Cre17.g713800			Chloroplast			
-Cre17.g739550			Chloroplast			CPLD12
-Cre17.g739850						MOT47
-Cre17.g736950						
-Cre17.g697334	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion			
-Cre17.g716576						
-Cre17.g723050	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre17.g697050			Chloroplast			
-Cre17.g720300			Secretory pathway	GO:0005515	protein binding	
-Cre17.g727050						
-Cre17.g733000						
-Cre17.g736511						
-Cre17.g740344						
-Cre17.g700000			Chloroplast			
-Cre17.g716950			Chloroplast			
-Cre17.g728850			Mitochondrion			
-Cre17.g714800			Secretory pathway			ISG6
-Cre17.g709100	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO28
-Cre17.g727500						
-Cre17.g724700	GMM:31.5.1;GMM:29.3.3;GMM:26.30;GMM:26.3	"cell.cell death.plants;protein.targeting.chloroplast;misc.other Ferredoxins and Rieske domain;misc.gluco-, galacto- and mannosidases"	Chloroplast	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	PAO1
-Cre17.g699650			Chloroplast			
-Cre17.g706050	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR17
-Cre17.g742600						
-Cre17.g708038			Mitochondrion			
-Cre17.g739900						
-Cre17.g726200			Mitochondrion			
-Cre17.g723750			Secretory pathway			
-Cre17.g702500	GMM:1.1.2.3	PS.lightreaction.photosystem I.biogenesis	Chloroplast			TAB2
-Cre17.g745947	GMM:28.2	DNA.repair				
-Cre17.g720150						
-Cre17.g737525	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI				
-Cre17.g725150	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
-Cre17.g743847	GMM:27.4	RNA.RNA binding		GO:0016567;GO:0004842;GO:0003676	protein ubiquitination;ubiquitin-protein transferase activity;nucleic acid binding	
-Cre17.g742500			Chloroplast			
-Cre17.g745597						
-Cre17.g737353						
-Cre17.g723400			Secretory pathway			
-Cre17.g729301						
-Cre17.g738100			Secretory pathway			
-Cre17.g730750			Secretory pathway	GO:0005515	protein binding	
-Cre17.g735850						
-Cre17.g706700			Secretory pathway			
-Cre17.g705836			Mitochondrion			
-Cre17.g737376			Mitochondrion			
-Cre17.g700200			Chloroplast			
-Cre17.g733750			Secretory pathway			
-Cre17.g734900			Chloroplast	GO:0006508;GO:0004181	proteolysis;metallocarboxypeptidase activity	
-Cre17.g719950			Chloroplast			
-Cre17.g718650						
-Cre17.g721400			Chloroplast			
-Cre17.g716301			Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	SUM7
-Cre17.g710800	GMM:29.8	protein.assembly and cofactor ligation	Chloroplast	GO:0051536;GO:0016226;GO:0005506	iron-sulfur cluster binding;iron-sulfur cluster assembly;iron ion binding	NFU3
-Cre17.g746347	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure	Chloroplast	GO:0006284;GO:0006281;GO:0004844	base-excision repair;DNA repair;uracil DNA N-glycosylase activity	UNG1
-Cre17.g747897			Chloroplast			
-Cre17.g731675			Mitochondrion;Chloroplast			
-Cre17.g703800	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	DUR3C
-Cre17.g713674	GMM:28.2	DNA.repair				
-Cre17.g710650	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK21
-Cre17.g724050			Secretory pathway			
-Cre17.g719250			Secretory pathway			
-Cre17.g741250			Mitochondrion	GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	PHR6
-Cre17.g711950	GMM:29.6.1	protein.folding.prefoldin and trigger factor				PFP1
-Cre17.g720800						
-Cre17.g730550	GMM:26.3.4;GMM:26.3;GMM:10.6.1	"misc.gluco-, galacto- and mannosidases.endoglucanase;misc.gluco-, galacto- and mannosidases;cell wall.degradation.cellulases and beta-1,4-glucanases"	Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
-Cre17.g743647	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
-Cre17.g734142						
-Cre17.g715150						
-Cre17.g710300			Secretory pathway			PHC31
-Cre17.g696626			Mitochondrion			
-Cre17.g698900			Secretory pathway			
-Cre17.g731100			Chloroplast			CPL14
-Cre17.g714350			Chloroplast			
-Cre17.g738650			Secretory pathway	GO:0046983	protein dimerization activity	
-Cre17.g732802	GMM:13.2.6.2	amino acid metabolism.degradation.aromatic aa.tyrosine		GO:0009072;GO:0008152;GO:0004334;GO:0003824	aromatic amino acid family metabolic process;metabolic process;fumarylacetoacetase activity;catalytic activity	
-Cre17.g704350	GMM:24.2	biodegradation of xenobiotics.lactoylglutathione lyase				
-Cre17.g714100	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA32
-Cre17.g713900	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others		GO:0005515	protein binding	LST8
-Cre17.g699700			Chloroplast			
-Cre17.g710950			Mitochondrion			
-Cre17.g718450			Mitochondrion			MMP2
-Cre17.g736550			Secretory pathway			
-Cre17.g733550						
-Cre17.g718200						
-Cre17.g711550	GMM:31.3	cell.cycle	Mitochondrion			CYCR2
-Cre17.g742550			Chloroplast			
-Cre17.g697550			Chloroplast			
-Cre17.g726950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g747247			Chloroplast			FAP2
-Cre17.g746897			Mitochondrion			
-Cre17.g708850			Mitochondrion			
-Cre17.g729901			Secretory pathway			
-Cre17.g703075						
-Cre17.g708750	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			NSG1
-Cre17.g699850	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase	Secretory pathway	GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GDP3
-Cre17.g722350	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RABL2
-Cre17.g730600	GMM:26.3.4;GMM:26.3;GMM:10.6.1	"misc.gluco-, galacto- and mannosidases.endoglucanase;misc.gluco-, galacto- and mannosidases;cell wall.degradation.cellulases and beta-1,4-glucanases"		GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
-Cre17.g734644	GMM:17.3.1.2.99	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.other		GO:0071949	FAD binding	SQE1
-Cre17.g732533	GMM:24	biodegradation of xenobiotics	Chloroplast			
-Cre17.g728350			Secretory pathway			
-Cre17.g735600	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	TGL21
-Cre17.g708600	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB27
-Cre17.g701500	GMM:29.9;GMM:29.6.2.6;GMM:20.2.1	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat		GO:0051082;GO:0031072	unfolded protein binding;heat shock protein binding	DNJ1
-Cre17.g729250	GMM:29.2.99	protein.synthesis.misc		GO:0005515;GO:0003723	protein binding;RNA binding	UPF2
-Cre17.g728250	GMM:35.1.19	not assigned.no ontology.C2 domain-containing protein				
-Cre17.g700166	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g716750						
-Cre17.g740323			Chloroplast			
-Cre17.g714250	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0045454	cell redox homeostasis	DLX2
-Cre17.g700100						
-Cre17.g698683			Mitochondrion			
-Cre17.g715600			Chloroplast			
-Cre17.g698650	GMM:21.2.2;GMM:20.2	redox.ascorbate and glutathione.glutathione;stress.abiotic	Secretory pathway	GO:0006749;GO:0003840	glutathione metabolic process;gamma-glutamyltransferase activity	GTP1
-Cre17.g742000						MOT8
-Cre17.g723350	GMM:34.6	transport.sulphate		GO:0055085;GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0008271	transmembrane transport;integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;secondary active sulfate transmembrane transporter activity	SULTR2
-Cre17.g702550						
-Cre17.g714750			Mitochondrion			
-Cre17.g710600	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre17.g723950						FAP397
-Cre17.g726100	GMM:27.1	RNA.processing	Mitochondrion	GO:0016779;GO:0006396;GO:0003723	nucleotidyltransferase activity;RNA processing;RNA binding	PAP3
-Cre17.g711401			Mitochondrion			
-Cre17.g699250						
-Cre17.g713051	GMM:29.4	protein.postranslational modification	Mitochondrion			DNJ33
-Cre17.g705550						
-Cre17.g706850	GMM:34.99;GMM:29.5.5	transport.misc;protein.degradation.serine protease	Secretory pathway	GO:0016021;GO:0006890	"integral component of membrane;retrograde vesicle-mediated transport, Golgi to ER"	
-Cre17.g733100			Secretory pathway			
-Cre17.g733702						
-Cre17.g724350	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA5
-Cre17.g732850	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Mitochondrion	GO:0055114;GO:0016491;GO:0016209	oxidation-reduction process;oxidoreductase activity;antioxidant activity	SCO1
-Cre17.g731150				GO:0016021;GO:0006810	integral component of membrane;transport	
-Cre17.g723500	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre17.g697350	GMM:20.1	stress.biotic		GO:0006397	mRNA processing	
-Cre17.g722750						
-Cre17.g741150	GMM:30.2.7;GMM:30.2.12;GMM:30.2.11;GMM:30.2.10	signalling.receptor kinases.leucine rich repeat VII;signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;signalling.receptor kinases.leucine rich repeat X	Chloroplast			
-Cre17.g743064				GO:0032775;GO:0009007;GO:0003677	DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding	
-Cre17.g736000						
-Cre17.g709450			Secretory pathway			
-Cre17.g696750	GMM:27.3.5;GMM:27.3.20;GMM:27.3	RNA.regulation of transcription.ARR;RNA.regulation of transcription.G2-like transcription factor family (GARP);RNA.regulation of transcription	Mitochondrion			
-Cre17.g735950			Mitochondrion			
-Cre17.g696850	GMM:17.1.3	hormone metabolism.abscisic acid.induced-regulated-responsive-activated	Mitochondrion			
-Cre17.g732100						SSA4
-Cre17.g721250						IFT38
-Cre17.g717500						
-Cre17.g744947	GMM:27.1	RNA.processing	Mitochondrion	GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
-Cre17.g702200	GMM:31.1;GMM:27.3.39	cell.organisation;RNA.regulation of transcription.AtSR transcription factor family	Chloroplast			ANK29
-Cre17.g740600	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	MOT50
-Cre17.g720350			Mitochondrion	GO:0051301;GO:0032955	cell division;regulation of barrier septum assembly	MINE1
-Cre17.g732901	GMM:28.2	DNA.repair		GO:0005515	protein binding	
-Cre17.g707900			Secretory pathway			
-Cre17.g735750			Mitochondrion	GO:0005509	calcium ion binding	EFH11
-Cre17.g716625						
-Cre17.g739000			Mitochondrion			
-Cre17.g731800			Secretory pathway	GO:0005515	protein binding	
-Cre17.g696550			Chloroplast			
-Cre17.g716500						
-Cre17.g710050				GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre17.g704500			Secretory pathway			
-Cre17.g743397						
-Cre17.g709200	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA28
-Cre17.g745397						
-Cre17.g724550	GMM:31.6.1.2	cell.motility.eukaryotes.deflagellation				DIP13
-Cre17.g733753						
-Cre17.g721950	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre17.g715421	GMM:3.5	minor CHO metabolism.others	Mitochondrion			
-Cre17.g734821						
-Cre17.g702900				GO:0016021	integral component of membrane	
-Cre17.g711350				GO:0046983	protein dimerization activity	
-Cre17.g724000						
-Cre17.g714200	GMM:34.15	transport.potassium		GO:0071805;GO:0016020;GO:0015079	potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity	KUP2
-Cre17.g736437			Secretory pathway			
-Cre17.g737300			Secretory pathway			
-Cre17.g727850			Chloroplast			
-Cre17.g709750	GMM:31.3;GMM:30.6;GMM:29.4.1;GMM:29.4	cell.cycle;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre17.g723000						
-Cre17.g728650	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others		GO:0005515	protein binding	FAP196
-Cre17.g719701			Chloroplast			
-Cre17.g739600						
-Cre17.g747347	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast	GO:0005525	GTP binding	
-Cre17.g712400	GMM:33.99;GMM:1.1.1.3	development.unspecified;PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane	GO:0016021	integral component of membrane	TERC
-Cre17.g746047			Secretory pathway			
-Cre17.g722583			Secretory pathway			
-Cre17.g715801	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			
-Cre17.g704251						
-Cre17.g703126			Mitochondrion			
-Cre17.g719771						
-Cre17.g712350	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation	Secretory pathway	GO:0016020	membrane	CPLD6
-Cre17.g709400			Secretory pathway			
-Cre17.g697250			Chloroplast			
-Cre17.g725750				GO:0003723	RNA binding	
-Cre17.g726600	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway;Chloroplast			
-Cre17.g742100			Mitochondrion			
-Cre17.g737000						
-Cre17.g702750	GMM:26.22;GMM:11.8.1	"misc.short chain dehydrogenase/reductase (SDR);lipid metabolism.exotics (steroids, squalene etc).sphingolipids"				
-Cre17.g729850	GMM:31.6.1.6.1	cell.motility.eukaryotes.central pair.C1a				FAP227
-Cre17.g700425						
-Cre17.g706350			Secretory pathway			
-Cre17.g729450	GMM:34.18	transport.unspecified anions	Chloroplast	GO:0055085;GO:0016020;GO:0006821;GO:0005247	transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity	CLV2
-Cre17.g712800						
-Cre17.g733200				GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR4
-Cre17.g740926						
-Cre17.g704950			Mitochondrion			
-Cre17.g739950			Secretory pathway	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	
-Cre17.g734300	GMM:29.3.3	protein.targeting.chloroplast	Mitochondrion	GO:0005525	GTP binding	
-Cre17.g698950	GMM:27.2	RNA.transcription				
-Cre17.g729000			Mitochondrion			
-Cre17.g733450	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor	Chloroplast	GO:0015074;GO:0005515	DNA integration;protein binding	
-Cre17.g745797			Mitochondrion			
-Cre17.g725450	GMM:29.5.11	protein.degradation.ubiquitin	Mitochondrion			
-Cre17.g724250			Chloroplast			
-Cre17.g727326						
-Cre17.g697150			Mitochondrion			
-Cre17.g720900			Chloroplast			
-Cre17.g701400			Mitochondrion			
-Cre17.g741650						
-Cre17.g705778			Chloroplast			PROB2
-Cre17.g739457			Chloroplast			
-Cre17.g698100	GMM:17.5.2	hormone metabolism.ethylene.signal transduction				
-Cre17.g731750	GMM:26.1	misc.misc2	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP740A1
-Cre17.g722100				GO:0005096	GTPase activator activity	SSA3
-Cre17.g714900	GMM:16.8.4.1	secondary metabolism.flavonoids.flavonols.flavonol synthase (FLS)				CGL11
-Cre17.g705300			Secretory pathway			PHC68
-Cre17.g704000						
-Cre17.g722526						
-Cre17.g740350	GMM:34.2	transport.sugars				
-Cre17.g734100	GMM:23.1.2.20	nucleotide metabolism.synthesis.purine.adenylosuccinate synthase	Chloroplast	GO:0006164;GO:0005525;GO:0004019	purine nucleotide biosynthetic process;GTP binding;adenylosuccinate synthase activity	
-Cre17.g710450	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB29
-Cre17.g722200	GMM:29.2.1.1.4.2;GMM:29.2.1.1.1.2.11	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L11		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPL11
-Cre17.g705350	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDPKK2
-Cre17.g713000			Chloroplast			
-Cre17.g740510	GMM:31.2	cell.division				CDC27
-Cre17.g728450	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway			
-Cre17.g725550	GMM:7.1.1	OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)		GO:0055114;GO:0050661;GO:0006006;GO:0004345	oxidation-reduction process;NADP binding;glucose metabolic process;glucose-6-phosphate dehydrogenase activity	GLD1
-Cre17.g733950						CGL152
-Cre17.g702150	GMM:29.8;GMM:21.1	protein.assembly and cofactor ligation;redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	CCS5
-Cre17.g720050	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0006508;GO:0005524;GO:0004222	proteolysis;ATP binding;metalloendopeptidase activity	FTSH2
-Cre17.g718300	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0046872;GO:0008270	metal ion binding;zinc ion binding	
-Cre17.g726850				GO:0003723	RNA binding	
-Cre17.g716150	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	SUM4
-Cre17.g699926			Secretory pathway			
-Cre17.g730950	GMM:31.6.1.3.1.1;GMM:31.1	cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.kinesin-2 subunits;cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	FLA10
-Cre17.g746947			Secretory pathway			
-Cre17.g741000			Secretory pathway	GO:0005789	endoplasmic reticulum membrane	
-Cre17.g710351	GMM:29.5.7	protein.degradation.metalloprotease				
-Cre17.g701100	GMM:3.5	minor CHO metabolism.others	Secretory pathway			CPK8
-Cre17.g708700	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR27
-Cre17.g699400			Secretory pathway			
-Cre17.g706950						
-Cre17.g731300				GO:0016020	membrane	
-Cre17.g742250	GMM:31.3;GMM:31.2;GMM:3.6;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CDKG2
-Cre17.g731581						
-Cre17.g730200	GMM:33.99;GMM:29.3.5	development.unspecified;protein.targeting.peroxisomes		GO:0005515	protein binding	PEX7
-Cre17.g740261			Chloroplast			FAP365
-Cre17.g723250	GMM:29.5	protein.degradation	Chloroplast			CPE1
-Cre17.g726000			Secretory pathway			PAP3
-Cre17.g729101	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC37
-Cre17.g733208	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	SRR4
-Cre17.g706550						
-Cre17.g713200	GMM:34.9;GMM:34.8	transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane		GO:0055085;GO:0016020;GO:0006814;GO:0005215	transmembrane transport;membrane;sodium ion transport;transporter activity	OMT2
-Cre17.g708950	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI	Secretory pathway			
-Cre17.g718800	GMM:26.27	misc.calcineurin-like phosphoesterase family protein		GO:0016787	hydrolase activity	mpa14
-Cre17.g731950			Mitochondrion	GO:0033177;GO:0015991;GO:0015078	"proton-transporting two-sector ATPase complex, proton-transporting domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATP9B
-Cre17.g703000			Mitochondrion	GO:2001070	starch binding	
-Cre17.g704400			Chloroplast			
-Cre17.g743547	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre17.g717750	GMM:31.1.1.2;GMM:21.1	cell.organisation.cytoskeleton.mikrotubuli;redox.thioredoxin		GO:0045454	cell redox homeostasis	TRX24
-Cre17.g720183						
-Cre17.g725250						
-Cre17.g700650				GO:0016021	integral component of membrane	
-Cre17.g733162			Secretory pathway			
-Cre17.g740850						
-Cre17.g719813						
-Cre17.g715500			Chloroplast	GO:0055114;GO:0016491;GO:0016209	oxidation-reduction process;oxidoreductase activity;antioxidant activity	
-Cre17.g741050	GMM:17.2.3	hormone metabolism.auxin.induced-regulated-responsive-activated	Mitochondrion			COV1
-Cre17.g715950			Chloroplast			
-Cre17.g712100	GMM:21.2.1;GMM:21.2	redox.ascorbate and glutathione.ascorbate;redox.ascorbate and glutathione		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre17.g734725						
-Cre17.g736100	GMM:29.5.3	protein.degradation.cysteine protease		GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP17
-Cre17.g744247				GO:0006260;GO:0005664;GO:0003677	DNA replication;nuclear origin of replication recognition complex;DNA binding	
-Cre17.g703450						
-Cre17.g717300	GMM:29.4	protein.postranslational modification		GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	
-Cre17.g699150						
-Cre17.g701809				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g714000	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO32
-Cre17.g738450			Chloroplast			
-Cre17.g738751			Mitochondrion			
-Cre17.g732000			Mitochondrion	GO:0033177;GO:0015991;GO:0015078	"proton-transporting two-sector ATPase complex, proton-transporting domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATP9A
-Cre17.g715750	GMM:29.3.4.4	protein.targeting.secretory pathway.plasma membrane		GO:0005515	protein binding	SEC13
-Cre17.g717600						
-Cre17.g704150	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase		GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GDP5
-Cre17.g732300	GMM:3.8.1	minor CHO metabolism.galactose.galactokinases		GO:0005524	ATP binding	GAL1
-Cre17.g702650			Mitochondrion			
-Cre17.g709550	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family				
-Cre17.g744697						
-Cre17.g698365						FAP172
-Cre17.g726350			Chloroplast	GO:0016021	integral component of membrane	
-Cre17.g738300	GMM:29.2.1.2.2.99;GMM:29.2.1.2.2.81	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.unknown;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.P1				RPP1
-Cre17.g741850	GMM:27.4	RNA.RNA binding				HNR1
-Cre17.g708013						
-Cre17.g724873						
-Cre17.g697600						
-Cre17.g712900			Secretory pathway			
-Cre17.g717700						
-Cre17.g707400	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003723	RNA binding	
-Cre17.g729550						
-Cre17.g722050				GO:0005515	protein binding	
-Cre17.g739250	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	FAP402
-Cre17.g746447						
-Cre17.g736650	GMM:29.5.31;GMM:29.5	protein.degradation.alanine protease;protein.degradation		GO:0008270;GO:0008237;GO:0006508	zinc ion binding;metallopeptidase activity;proteolysis	
-Cre17.g731050	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre17.g728000						
-Cre17.g707000						
-Cre17.g742866						
-Cre17.g703750			Secretory pathway			
-Cre17.g707450						
-Cre17.g747997			Secretory pathway			
-Cre17.g718350	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Secretory pathway			SRP2
-Cre17.g703300						
-Cre17.g716600	GMM:27.1	RNA.processing	Chloroplast			
-Cre17.g717100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g696350				GO:0016020;GO:0015672;GO:0005261	membrane;monovalent inorganic cation transport;cation channel activity	
-Cre17.g697934				GO:0004222	metalloendopeptidase activity	
-Cre17.g739752	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0006508;GO:0005524;GO:0004222	proteolysis;ATP binding;metalloendopeptidase activity	
-Cre17.g702400	GMM:29.1.30;GMM:23.5.2	protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS5
-Cre17.g706250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				
-Cre17.g737400	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI	Mitochondrion			
-Cre17.g719600			Mitochondrion			FAP338
-Cre17.g739400			Secretory pathway			
-Cre17.g724800						
-Cre17.g744097						
-Cre17.g713550	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR31
-Cre17.g733689						
-Cre17.g701751						
-Cre17.g704700						
-Cre17.g696250	GMM:29.2.3	protein.synthesis.initiation		GO:0005515;GO:0003723	protein binding;RNA binding	
-Cre17.g699300			Mitochondrion			
-Cre17.g747697			Mitochondrion			
-Cre17.g709950	GMM:35.1.3	not assigned.no ontology.armadillo/beta-catenin repeat family protein				
-Cre17.g703950			Secretory pathway			
-Cre17.g727700	GMM:27.1.2	RNA.processing.RNA helicase	Chloroplast	GO:0016787;GO:0005634;GO:0005524;GO:0004386;GO:0003723;GO:0003677	hydrolase activity;nucleus;ATP binding;helicase activity;RNA binding;DNA binding	HEL65
-Cre17.g718000	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC7
-Cre17.g721000	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
-Cre17.g727250			Chloroplast			
-Cre17.g732750			Secretory pathway			
-Cre17.g723850			Secretory pathway			
-Cre17.g711050	GMM:27.3;GMM:14.15	RNA.regulation of transcription;S-assimilation.AKN				
-Cre17.g727100						
-Cre17.g713350	GMM:34.8	transport.metabolite transporters at the envelope membrane	Chloroplast	GO:0055085;GO:0016020;GO:0006814;GO:0005215	transmembrane transport;membrane;sodium ion transport;transporter activity	OMT1
-Cre17.g699050						
-Cre17.g696650						
-Cre17.g727201			Mitochondrion			
-Cre17.g736350			Mitochondrion			
-Cre17.g718700			Secretory pathway			
-Cre17.g740430	GMM:34.2	transport.sugars	Chloroplast	GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
-Cre17.g734000						
-Cre17.g737850			Secretory pathway	GO:0005515	protein binding	
-Cre17.g735283	GMM:29.6.3.2	protein.folding.immunophilins (IMM).cyclophilins				CYN15
-Cre17.g704850	GMM:23.3.1.1	nucleotide metabolism.salvage.phosphoribosyltransferases.adenine phosphoribosyltransferase (APRT)		GO:0009116	nucleoside metabolic process	
-Cre17.g731900			Mitochondrion			
-Cre17.g728100	GMM:17.2.1	hormone metabolism.auxin.synthesis-degradation	Secretory pathway	GO:0016787;GO:0008152	hydrolase activity;metabolic process	
-Cre17.g700500						
-Cre17.g742650						
-Cre17.g737752			Secretory pathway			
-Cre17.g722950			Secretory pathway			
-Cre17.g740050						
-Cre17.g696450			Mitochondrion			
-Cre17.g726983						
-Cre17.g702700	GMM:34.8	transport.metabolite transporters at the envelope membrane	Secretory pathway			
-Cre17.g709050	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR28
-Cre17.g724950						
-Cre17.g712550			Mitochondrion			
-Cre17.g697000			Mitochondrion	GO:0005515	protein binding	
-Cre17.g728864			Mitochondrion			OPR105
-Cre17.g721450	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	NSS4
-Cre17.g692676						
-Cre17.g739700						
-Cre17.g744747			Chloroplast			
-Cre17.g724850	GMM:33.99	development.unspecified		GO:0005515	protein binding	
-Cre17.g738550	GMM:29.4	protein.postranslational modification		GO:0003950	NAD+ ADP-ribosyltransferase activity	
-Cre17.g743250						
-Cre17.g713450	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB31
-Cre17.g701250						FAP59
-Cre17.g739551						
-Cre17.g732951						
-Cre17.g737084						
-Cre17.g719400			Mitochondrion			
-Cre17.g722616			Secretory pathway			
-Cre17.g699975						
-Cre17.g714050	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB32
-Cre17.g709651			Mitochondrion			
-Cre17.g701000						
-Cre17.g736850	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
-Cre17.g716900				GO:0015074;GO:0006310;GO:0003677	DNA integration;DNA recombination;DNA binding	
-Cre17.g742750			Mitochondrion			
-Cre17.g703600	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				OFD1
-Cre17.g712600						
-Cre17.g746297	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
-Cre17.g701700	GMM:11.1.15	lipid metabolism.FA synthesis and FA elongation.ACP desaturase	Chloroplast	GO:0055114;GO:0045300;GO:0006631	oxidation-reduction process;acyl-[acyl-carrier-protein] desaturase activity;fatty acid metabolic process	FAB2
-Cre17.g726750	GMM:13.1.6.1.1	amino acid metabolism.synthesis.aromatic aa.chorismate.3-deoxy-D-arabino-heptulosonate 7-phosphate synthase	Chloroplast	GO:0009073;GO:0003849	aromatic amino acid family biosynthetic process;3-deoxy-7-phosphoheptulonate synthase activity	SHKA1
-Cre17.g716350			Chloroplast			
-Cre17.g725650	GMM:34.14	transport.unspecified cations	Mitochondrion	GO:0016020	membrane	
-Cre17.g730650			Secretory pathway			
-Cre17.g696200						
-Cre17.g737351	GMM:30.2.12	signalling.receptor kinases.leucine rich repeat XII				
-Cre17.g697950	GMM:34.99;GMM:34.9;GMM:34.8	transport.misc;transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane		GO:0016021;GO:0006810;GO:0005524;GO:0005471	integral component of membrane;transport;ATP binding;ATP:ADP antiporter activity	AAA3
-Cre17.g719522	GMM:26.23	misc.rhodanese	Secretory pathway			
-Cre17.g701600			Mitochondrion			
-Cre17.g741750	GMM:31.1	cell.organisation	Secretory pathway			
-Cre17.g705843			Mitochondrion	GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	
-Cre17.g719855			Mitochondrion			
-Cre17.g745847			Chloroplast			
-Cre17.g727150			Chloroplast			
-Cre17.g707150						
-Cre17.g723700	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
-Cre17.g720250	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II		GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCB4
-Cre17.g717200	GMM:28.99	DNA.unspecified	Secretory pathway	GO:0016888	"endodeoxyribonuclease activity, producing 5'-phosphomonoesters"	
-Cre17.g719150						
-Cre17.g708150	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR26
-Cre17.g708000	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			FAP260
-Cre17.g713750	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g737200						
-Cre17.g747747	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	zinc ion binding	
-Cre17.g702102			Chloroplast			
-Cre17.g725100	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006265;GO:0003917;GO:0003916;GO:0003677	DNA topological change;DNA topoisomerase type I activity;DNA topoisomerase activity;DNA binding	
-Cre17.g696600			Mitochondrion			FMR1
-Cre17.g736250	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre17.g704600			Chloroplast			
-Cre17.g700550	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
-Cre17.g728550			Mitochondrion			
-Cre17.g739426	GMM:26.24	misc.GCN5-related N-acetyltransferase				
-Cre17.g704300	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0005515	protein binding	FAP47
-Cre17.g735350	GMM:31.1	cell.organisation	Chloroplast			FAP164
-Cre17.g730450						
-Cre17.g734961	GMM:33.99	development.unspecified				
-Cre17.g740700						FAP336
-Cre17.g730350			Secretory pathway			
-Cre17.g705200			Secretory pathway			
-Cre17.g712200	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
-Cre17.g698750			Mitochondrion			OPR104
-Cre17.g721553						
-Cre17.g735550	GMM:29.4	protein.postranslational modification				
-Cre17.g729650			Mitochondrion	GO:0016787	hydrolase activity	MPA15
-Cre17.g738850			Chloroplast			
-Cre17.g700900						
-Cre17.g700450				GO:0016021	integral component of membrane	
-Cre17.g701950						
-Cre17.g708650	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO27
-Cre17.g711800	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO30
-Cre17.g725350	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0006491	N-glycan processing	GLC2B
-Cre17.g734350			Chloroplast			
-Cre17.g718950	GMM:1.3.13	PS.calvin cycle.rubisco interacting		GO:0005524	ATP binding	RCA2
-Cre17.g706600						
-Cre17.g720750	GMM:27.1	RNA.processing	Secretory pathway	GO:0016779	nucleotidyltransferase activity	TRF4
-Cre17.g747097			Chloroplast			
-Cre17.g725900			Mitochondrion			
-Cre17.g701917						
-Cre17.g747647			Secretory pathway			
-Cre17.g733026			Secretory pathway			
-Cre17.g733174	GMM:17.4.2	hormone metabolism.cytokinin.signal transduction				
-Cre17.g711503			Secretory pathway			
-Cre17.g720500	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase				
-Cre17.g743447			Secretory pathway			
-Cre17.g744297						
-Cre17.g726500	GMM:31.3	cell.cycle				ORC4
-Cre17.g740187			Mitochondrion			FAP390
-Cre17.g698266	GMM:26.1	misc.misc2				
-Cre17.g713700	GMM:13.2.6.3	amino acid metabolism.degradation.aromatic aa.tryptophan	Chloroplast	GO:0020037	heme binding	IAD2
-Cre17.g710400	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA29
-Cre17.g740950	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELIP6
-Cre17.g712150	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase	Mitochondrion			
-Cre17.g707551						
-Cre17.g718600	GMM:11.9.2.2	lipid metabolism.lipid degradation.lipases.acylglycerol lipase				
-Cre17.g710750						
-Cre17.g703200	GMM:34.99;GMM:29.3.4.99;GMM:28.99	transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified				
-Cre17.g721700	GMM:35.1.5	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein	Chloroplast			CPLD44
-Cre17.g742400	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK17
-Cre17.g699550			Secretory pathway			
-Cre17.g743797	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO8
-Cre17.g709876			Mitochondrion			
-Cre17.g706150			Chloroplast			
-Cre17.g731650			Chloroplast			
-Cre17.g715450	GMM:3.5	minor CHO metabolism.others	Mitochondrion			
-Cre17.g716850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast			
-Cre17.g702600	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK5
-Cre17.g720600	GMM:34.21	transport.calcium	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV1
-Cre17.g731600						
-Cre17.g723450	GMM:33.99;GMM:3.5;GMM:27.1	development.unspecified;minor CHO metabolism.others;RNA.processing	Mitochondrion	GO:0005515	protein binding	FAP13
-Cre17.g737650				GO:0032259;GO:0008168	methylation;methyltransferase activity	SOM6
-Cre17.g710100	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others		GO:0005515	protein binding	
-Cre17.g747597			Mitochondrion			
-Cre17.g742450				GO:0005515	protein binding	
-Cre17.g729750				GO:0008080	N-acetyltransferase activity	
-Cre17.g728200				GO:0043486;GO:0006355;GO:0006338;GO:0005634	"histone exchange;regulation of transcription, DNA-templated;chromatin remodeling;nucleus"	
-Cre17.g703932			Secretory pathway			
-Cre17.g714550	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB33
-Cre17.g741500	GMM:31.1	cell.organisation	Mitochondrion	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIL7
-Cre17.g697450				GO:0005852;GO:0005737;GO:0003743	eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity	
-Cre17.g722851	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
-Cre17.g711900			Secretory pathway	GO:0016021;GO:0008146	integral component of membrane;sulfotransferase activity	
-Cre17.g717850	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC8
-Cre17.g745447	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPK4
-Cre17.g709250			Mitochondrion	GO:0016192;GO:0016021;GO:0006810	vesicle-mediated transport;integral component of membrane;transport	
-Cre17.g727450	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
-Cre17.g707300	GMM:3.3;GMM:26.5	minor CHO metabolism.sugar alcohols;misc.acyl transferases	Secretory pathway	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	PGA3
-Cre17.g739300						
-Cre17.g734677			Chloroplast			
-Cre17.g726300				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS14
-Cre17.g732450			Secretory pathway			
-Cre17.g709800	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors				RLS1
-Cre17.g700050			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre17.g709150	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB28
-Cre17.g722550						
-Cre17.g725200	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
-Cre17.g716650			Mitochondrion			
-Cre17.g708300	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0006508;GO:0005838	proteolysis;proteasome regulatory particle	RPN12
-Cre17.g743897	GMM:21.5.1;GMM:21.5	redox.peroxiredoxin.BAS1;redox.peroxiredoxin	Secretory pathway	GO:0055114;GO:0051920;GO:0045454;GO:0016491	oxidation-reduction process;peroxiredoxin activity;cell redox homeostasis;oxidoreductase activity	PRX7
-Cre17.g739800			Mitochondrion			NCL35
-Cre17.g704901			Mitochondrion			
-Cre17.g732900			Secretory pathway	GO:0006281	DNA repair	
-Cre17.g715200	GMM:30.2.11;GMM:30.2	signalling.receptor kinases.leucine rich repeat XI;signalling.receptor kinases		GO:0005515	protein binding	
-Cre17.g747847				GO:0060236;GO:0032147;GO:0005874;GO:0005819	regulation of mitotic spindle organization;activation of protein kinase activity;microtubule;spindle	
-Cre17.g747147			Secretory pathway			
-Cre17.g699600	GMM:1.3.9	PS.calvin cycle.sedoheptulose bisphosphatase	Secretory pathway	GO:0042578;GO:0042132;GO:0005975	"phosphoric ester hydrolase activity;fructose 1,6-bisphosphate 1-phosphatase activity;carbohydrate metabolic process"	SBP2
-Cre17.g714150	GMM:34.15	transport.potassium		GO:0071805;GO:0016020;GO:0015079	potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity	KUP1
-Cre17.g727550			Chloroplast			
-Cre17.g708076			Secretory pathway			
-Cre17.g706400			Chloroplast			
-Cre17.g733678			Secretory pathway			
-Cre17.g734580						
-Cre17.g722400			Chloroplast			MOT25
-Cre17.g733400			Secretory pathway			
-Cre17.g727600						
-Cre17.g730250						
-Cre17.g708050	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre17.g710000	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre17.g697850						
-Cre17.g715000				GO:0051082;GO:0006457;GO:0005737	unfolded protein binding;protein folding;cytoplasm	HSP33
-Cre17.g713260						
-Cre17.g745547	GMM:31.6.1.11	cell.motility.eukaryotes.other				
-Cre17.g735400	GMM:27.3.71	RNA.regulation of transcription.SNF7		GO:0007034	vacuolar transport	VPS2B
-Cre17.g734757						
-Cre17.g719900	GMM:2.2.2.3	major CHO metabolism.degradation.starch.glucan water dikinase	Chloroplast	GO:2001070;GO:0016310;GO:0016301;GO:0005524	starch binding;phosphorylation;kinase activity;ATP binding	PWD1
-Cre17.g734500	GMM:34.1.1.4;GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit E;transport.p- and v-ATPases.H+-transporting two-sector ATPase		GO:0046961;GO:0033178;GO:0016747;GO:0015991	"proton-transporting ATPase activity, rotational mechanism;proton-transporting two-sector ATPase complex, catalytic domain;transferase activity, transferring acyl groups other than amino-acyl groups;ATP hydrolysis coupled proton transport"	ATPVE
-Cre17.g738050						AGG4
-Cre17.g710254						
-Cre17.g735876						
-Cre17.g734789			Secretory pathway	GO:0005515	protein binding	
-Cre17.g741272			Chloroplast			
-Cre17.g698850	GMM:2.1.2.4	major CHO metabolism.synthesis.starch.debranching	Chloroplast	GO:0003824	catalytic activity	ISA2
-Cre17.g739100	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0046872	metal ion binding	
-Cre17.g704200			Mitochondrion			
-Cre17.g703151						
-Cre17.g703850						DCC1
-Cre17.g743307						
-Cre17.g700250						
-Cre17.g716400	GMM:27.3.11	RNA.regulation of transcription.C2H2 zinc finger family				
-Cre17.g736474						
-Cre17.g730000			Chloroplast			
-Cre17.g721350						
-Cre17.g699800			Secretory pathway			PHC67
-Cre17.g729150	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre17.g742200	GMM:31.2	cell.division				
-Cre17.g715176			Chloroplast			
-Cre17.g738000	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins				AGG2
-Cre17.g743130	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre17.g735200	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN1-2
-Cre17.g730516			Chloroplast			
-Cre17.g705806			Chloroplast	GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	
-Cre17.g712700			Secretory pathway			
-Cre17.g745647			Mitochondrion			
-Cre17.g726650			Chloroplast			CGL96
-Cre17.g744597			Secretory pathway			
-Cre17.g720261			Mitochondrion			
-Cre17.g732200						
-Cre17.g698150	GMM:31.3	cell.cycle	Mitochondrion	GO:0005634	nucleus	CYCR4
-Cre17.g737350						
-Cre17.g706650						VPS22
-Cre17.g696500	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC19
-Cre17.g728950	GMM:23.5.3	nucleotide metabolism.deoxynucleotide metabolism.cytosine deaminase	Chloroplast	GO:0055114;GO:0009231;GO:0008703	oxidation-reduction process;riboflavin biosynthetic process;5-amino-6-(5-phosphoribosylamino)uracil reductase activity	RFD2
-Cre17.g706000			Mitochondrion			
-Cre17.g716251	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	SUM5
-Cre17.g703495						
-Cre17.g744847				GO:0006887;GO:0000145	exocytosis;exocyst	SEC6
-Cre17.g718150			Mitochondrion			
-Cre17.g701150			Chloroplast			
-Cre17.g726550						
-Cre17.g698200			Mitochondrion			
-Cre17.g734200	GMM:13.1.3.5.3	amino acid metabolism.synthesis.aspartate family.lysine.LL-diaminopimelic acid aminotransferase	Chloroplast	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	DPA1
-Cre17.g700800			Mitochondrion			
-Cre17.g724650	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase				
-Cre17.g743346			Chloroplast			
-Cre17.g747497			Chloroplast			
-Cre17.g726900						
-Cre17.g741550						
-Cre17.g707700	GMM:34.12	transport.metal		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NRAMP1
-Cre17.g705700	GMM:13.1.2.2.1;GMM:13.1.2.2	amino acid metabolism.synthesis.glutamate family.proline.delta 1-pyrroline-5-carboxylate synthetase;amino acid metabolism.synthesis.glutamate family.proline		GO:0003723	RNA binding	GGK1
-Cre17.g698450	GMM:25.5	C1-metabolism.methylenetetrahydrofolate dehydrogenase and methenyltetrahydrofolate cyclohydrolase		GO:0055114;GO:0009396;GO:0004488;GO:0003824	oxidation-reduction process;folic acid-containing compound biosynthetic process;methylenetetrahydrofolate dehydrogenase (NADP+) activity;catalytic activity	
-Cre17.g717400	GMM:27.1	RNA.processing				
-Cre17.g744497	GMM:30.11	signalling.light	Mitochondrion			
-Cre17.g719050						
-Cre17.g697750	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				
-Cre17.g721800						
-Cre17.g735650						
-Cre17.g705900						
-Cre17.g715300	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins				PKD2
-Cre17.g713650	GMM:28.2	DNA.repair		GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	MSH5
-Cre17.g726150	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	
-Cre17.g707100						
-Cre17.g728300	GMM:29.5.3	protein.degradation.cysteine protease		GO:0006508;GO:0005622;GO:0004198	proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity	FAP226
-Cre17.g742998			Mitochondrion			
-Cre17.g706500			Mitochondrion			
-Cre17.g715850						
-Cre17.g716026						
-Cre17.g714400						
-Cre17.g724100			Secretory pathway			
-Cre17.g697650	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation		GO:0070008;GO:0008236;GO:0006508;GO:0004252	serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity	
-Cre17.g714650	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR33
-Cre17.g705050			Secretory pathway	GO:0016021;GO:0016020;GO:0006811;GO:0006810;GO:0005230	integral component of membrane;membrane;ion transport;transport;extracellular ligand-gated ion channel activity	LIC1
-Cre17.g746647	GMM:35.1.12	not assigned.no ontology.pumilio/Puf RNA-binding domain-containing protein		GO:0003723	RNA binding	PUF2
-Cre17.g698532						
-Cre17.g711250	GMM:34.19	transport.major intrinsic proteins	Secretory pathway	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	MIP2
-Cre17.g744397			Chloroplast			
-Cre17.g702351	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	hlm26
-Cre17.g741293			Mitochondrion			
-Cre17.g709350	GMM:31.4	cell.vesicle transport		GO:0005515	protein binding	SYP5
-Cre17.g745097			Secretory pathway			
-Cre17.g746797			Chloroplast			
-Cre17.g708500						
-Cre17.g734532			Secretory pathway			
-Cre17.g739201			Mitochondrion			FAP293
-Cre17.g715700	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672;GO:0003824	protein phosphorylation;protein kinase activity;catalytic activity	VTC3
-Cre17.g746397			Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	
-Cre17.g742132			Secretory pathway			
-Cre17.g702950				GO:0016021	integral component of membrane	
-Cre17.g698516						
-Cre17.g743997						
-Cre17.g725400						
-Cre17.g745297						
-Cre17.g731561						
-Cre17.g713100						
-Cre17.g736900						
-Cre17.g723100			Chloroplast			
-Cre17.g708400	GMM:29.5.1	protein.degradation.subtilases		GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB12
-Cre17.g739515	GMM:3.3	minor CHO metabolism.sugar alcohols				
-Cre17.g724750						
-Cre24.g755197			Chloroplast			RBD3
-Cre24.g755097	GMM:34.18.1	transport.unspecified anions.arsenite-transporting ATPase	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre24.g755247						
-Cre24.g755997	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			FAP150
-Cre24.g755447				GO:0005681;GO:0000398	"spliceosomal complex;mRNA splicing, via spliceosome"	
-Cre24.g755797			Secretory pathway			
-Cre24.g755297			Mitochondrion			
-Cre24.g756047	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				cya6
-Cre24.g755647	GMM:27.3.99;GMM:27.1.3.6	RNA.regulation of transcription.unclassified;RNA.processing.3' end processing.CPSF30				
-Cre24.g755547						
-Cre24.g755947			Secretory pathway			
-Cre24.g755697						
-Cre24.g755497				GO:0016021	integral component of membrane	
-Cre24.g755897						
-Cre24.g755397			Secretory pathway			
-Cre24.g755747						
-Cre24.g755847			Mitochondrion			
-Cre24.g755347	GMM:27.1.2	RNA.processing.RNA helicase		GO:0005524;GO:0004386;GO:0003676	ATP binding;helicase activity;nucleic acid binding	
-Cre24.g755597	GMM:19.16	tetrapyrrole synthesis.chlorophyll b synthase	Chloroplast	GO:0055114;GO:0051537;GO:0016491	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"	
-Cre24.g755147			Secretory pathway			
-Cre37.g759897			Secretory pathway			
-Cre37.g759797						
-Cre37.g759847			Mitochondrion			
-Cre37.g759947						
-Cre52.g761647			Secretory pathway			
-Cre28.g757747						
-Cre28.g757647						
-Cre28.g757697						
-Cre28.g757497			Secretory pathway			
-Cre28.g757597						
-Cre28.g757547			Mitochondrion			
-Cre49.g761297						
-Cre49.g761347						FAP360
-Cre39.g760047				GO:0046983	protein dimerization activity	
-Cre39.g760097			Secretory pathway			
-Cre20.g751747						
-Cre20.g751597						
-Cre20.g751497						
-Cre20.g751797			Chloroplast			
-Cre20.g751397						
-Cre20.g751447						
-Cre20.g751547			Mitochondrion			
-Cre20.g751697						
-Cre20.g751647			Mitochondrion			
-Cre05.g233450	GMM:26.2;GMM:10.3.2	misc.UDP glucosyl and glucoronyl transferases;cell wall.hemicellulose synthesis.glucuronoxylan				ELG30
-Cre05.g236650	GMM:30.1.1;GMM:23.1.2	signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG63
-Cre05.g244350						
-Cre05.g236000	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre05.g241400			Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre05.g234892						
-Cre05.g234652	GMM:31.1;GMM:27.2	cell.organisation;RNA.transcription				
-Cre05.g233702						
-Cre05.g247450	GMM:26.23	misc.rhodanese	Chloroplast			CGL56
-Cre05.g240800	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Chloroplast			NUO17
-Cre05.g230950			Mitochondrion			
-Cre05.g234640						
-Cre05.g241636	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)		GO:0046983	protein dimerization activity	
-Cre05.g239978				GO:0016020	membrane	
-Cre05.g237550			Secretory pathway			
-Cre05.g245158	GMM:34.18.1	transport.unspecified anions.arsenite-transporting ATPase	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre05.g236907						
-Cre05.g243353						
-Cre05.g234637	GMM:29.2.1.2.1.515	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S15A		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	
-Cre05.g232304						
-Cre05.g238332	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0015979;GO:0009538;GO:0009522	photosynthesis;photosystem I reaction center;photosystem I	PSAD
-Cre05.g247650			Chloroplast			
-Cre05.g241600						
-Cre05.g232900			Mitochondrion			
-Cre05.g244950	GMM:29.3.4.1	protein.targeting.secretory pathway.ER	Secretory pathway	GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	
-Cre05.g239550			Chloroplast			
-Cre05.g236850			Mitochondrion			
-Cre05.g240950						
-Cre05.g241655			Chloroplast			
-Cre05.g237910						
-Cre05.g244000			Secretory pathway			
-Cre05.g243453			Chloroplast			
-Cre05.g242178				GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	
-Cre05.g234656	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre05.g232300			Mitochondrion			
-Cre05.g248401			Secretory pathway			
-Cre05.g234576			Chloroplast			
-Cre05.g240600						
-Cre05.g247900			Chloroplast	GO:0005515	protein binding	
-Cre05.g242859						
-Cre05.g241640						
-Cre05.g243451			Chloroplast	GO:0005737	cytoplasm	
-Cre05.g238761	GMM:3.3	minor CHO metabolism.sugar alcohols				
-Cre05.g240450			Mitochondrion			
-Cre05.g245500	GMM:31.1	cell.organisation				FAP175
-Cre05.g240050			Mitochondrion			
-Cre05.g234655	GMM:29.4	protein.postranslational modification		GO:0005515	protein binding	
-Cre05.g246753			Secretory pathway			
-Cre05.g248650						
-Cre05.g246250			Secretory pathway			
-Cre05.g238311			Chloroplast			
-Cre05.g239950						
-Cre05.g239300						
-Cre05.g234638	GMM:23.1.2.1	nucleotide metabolism.synthesis.purine.amidophosphoribosyltransferase	Chloroplast	GO:0009116	nucleoside metabolic process	
-Cre05.g237000	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			MAP1D
-Cre05.g234934			Mitochondrion			
-Cre05.g241633						
-Cre05.g244900			Mitochondrion			
-Cre05.g243151						
-Cre05.g242300	GMM:29.2.3	protein.synthesis.initiation		GO:0005852;GO:0005737;GO:0003743	eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity	EIF3D
-Cre05.g235550			Chloroplast			
-Cre05.g246550			Chloroplast			LAO3
-Cre05.g244550				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre05.g238374	GMM:29.5.11.4.2;GMM:27.3.99	protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.unclassified	Chloroplast	GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	
-Cre05.g232004						
-Cre05.g243601						CSU5
-Cre05.g239600			Chloroplast			
-Cre05.g236183			Secretory pathway			
-Cre05.g238500	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases	Chloroplast	GO:0008173;GO:0006364;GO:0005737	RNA methyltransferase activity;rRNA processing;cytoplasm	
-Cre05.g241550						
-Cre05.g244300						
-Cre05.g233051			Mitochondrion			
-Cre05.g234050			Chloroplast			
-Cre05.g230800	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0008270;GO:0005524	zinc ion binding;ATP binding	
-Cre05.g237700	GMM:27.4	RNA.RNA binding		GO:0072588;GO:0042254;GO:0030515;GO:0001522	box H/ACA RNP complex;ribosome biogenesis;snoRNA binding;pseudouridine synthesis	NOP10
-Cre05.g247600	GMM:29.5.11.3;GMM:27.4	protein.degradation.ubiquitin.E2;RNA.RNA binding				UBC2
-Cre05.g234666				GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
-Cre05.g245950	GMM:30.5;GMM:26.17	signalling.G-proteins;misc.dynamin		GO:0005525;GO:0003924	GTP binding;GTPase activity	DRP1
-Cre05.g236500	GMM:11.8.1.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids.ceramidase"	Secretory pathway			
-Cre05.g243354			Chloroplast			
-Cre05.g233305	GMM:31.2.5	cell.division.plastid	Chloroplast	GO:0050662;GO:0003824	coenzyme binding;catalytic activity	
-Cre05.g238260			Chloroplast			
-Cre05.g232100						
-Cre05.g232750	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification				CNK4
-Cre05.g237450	GMM:29.2.1.1.1.1.530;GMM:29.2.1.1.1.1.0530	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S30A;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S30A	Chloroplast	GO:0044238	primary metabolic process	PSRP1
-Cre05.g232752			Mitochondrion			
-Cre05.g241851	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
-Cre05.g233751						
-Cre05.g233800	GMM:29.1.14	protein.aa activation.glycine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	TSG1
-Cre05.g243452			Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
-Cre05.g246376			Mitochondrion			
-Cre05.g239850	GMM:991.1	Mineral Nutrition.phosphatie	Secretory pathway			PHO4
-Cre05.g234550	GMM:1.3.6	PS.calvin cycle.aldolase	Chloroplast	GO:0006096;GO:0004332	glycolytic process;fructose-bisphosphate aldolase activity	FBA3
-Cre05.g242860						
-Cre05.g240300			Chloroplast			
-Cre05.g245800						
-Cre05.g233303	GMM:29.7.4	protein.glycosylation.UDP-glucose glycoprotein glucosyltransferase	Chloroplast	GO:0016757;GO:0006486;GO:0003980	"transferase activity, transferring glycosyl groups;protein glycosylation;UDP-glucose:glycoprotein glucosyltransferase activity"	
-Cre05.g233602						
-Cre05.g236700			Chloroplast			
-Cre05.g241648			Chloroplast			
-Cre05.g248400	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Mitochondrion	GO:0008270;GO:0004089	zinc ion binding;carbonate dehydratase activity	CAH4
-Cre05.g242602			Mitochondrion			
-Cre05.g234801	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase	Chloroplast			
-Cre05.g232456			Chloroplast			
-Cre05.g241202	GMM:29.5.3	protein.degradation.cysteine protease		GO:0006508;GO:0005622;GO:0004198	proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity	
-Cre05.g238850			Mitochondrion			PHC17
-Cre05.g246100			Mitochondrion			
-Cre05.g237600			Mitochondrion	GO:0008168;GO:0006412	methyltransferase activity;translation	
-Cre05.g241000			Chloroplast			
-Cre05.g247250			Mitochondrion			
-Cre05.g234657				GO:0003725	double-stranded RNA binding	
-Cre05.g236626						
-Cre05.g244500						
-Cre05.g241645						
-Cre05.g239500						FAP38
-Cre05.g236450			Mitochondrion;Chloroplast			
-Cre05.g234600			Secretory pathway			
-Cre05.g243150	GMM:33.99	development.unspecified	Secretory pathway			
-Cre05.g247400	GMM:26.23	misc.rhodanese	Secretory pathway			
-Cre05.g241637	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B		GO:0042073	intraciliary transport	IFT46
-Cre05.g235500	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN7-1
-Cre05.g235186			Mitochondrion			
-Cre05.g233900	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate	Chloroplast	GO:0055114;GO:0020037;GO:0006979;GO:0004601	oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity	APX4
-Cre05.g244050						
-Cre05.g230971						
-Cre05.g241500						MOT30
-Cre05.g241630						
-Cre05.g242500	GMM:31.1	cell.organisation				RSP4
-Cre05.g237800	GMM:30.1.1;GMM:23.1.2	signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG64
-Cre05.g238140						
-Cre05.g242856	GMM:29.5.1	protein.degradation.subtilases	Mitochondrion	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
-Cre05.g240750	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Mitochondrion			TEF17
-Cre05.g242400	GMM:1.1.40	PS.lightreaction.cyclic electron flow-chlororespiration	Chloroplast			PGR5
-Cre05.g244800	GMM:30.11	signalling.light	Chloroplast			
-Cre05.g242502			Chloroplast			
-Cre05.g247700						
-Cre05.g232450						
-Cre05.g241350	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre05.g238100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK25
-Cre05.g238800						
-Cre05.g232950	GMM:31.1	cell.organisation				
-Cre05.g235060						
-Cre05.g241650	GMM:29.5	protein.degradation	Chloroplast			
-Cre05.g245150						
-Cre05.g238550						
-Cre05.g247950			Mitochondrion			
-Cre05.g238450			Secretory pathway			
-Cre05.g233650	GMM:30.99	signalling.unspecified				FXL9
-Cre05.g234659						MRPL30
-Cre05.g236039	GMM:29.4	protein.postranslational modification	Secretory pathway			
-Cre05.g247500	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0046872	metal ion binding	
-Cre05.g232150	GMM:12.3.1	N-metabolism.N-degradation.glutamate dehydrogenase	Mitochondrion	GO:0055114;GO:0016491;GO:0006520	oxidation-reduction process;oxidoreductase activity;cellular amino acid metabolic process	GDH2
-Cre05.g239350			Chloroplast			
-Cre05.g248300	GMM:34.12	transport.metal		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	
-Cre05.g237250						
-Cre05.g245102						CGL3
-Cre05.g245550	GMM:30.4.2;GMM:30.4	signalling.phosphinositides.phosphatidylinositol 4-kinase;signalling.phosphinositides	Mitochondrion	GO:0048015;GO:0046854;GO:0016773	"phosphatidylinositol-mediated signaling;phosphatidylinositol phosphorylation;phosphotransferase activity, alcohol group as acceptor"	PIK1
-Cre05.g235900			Chloroplast			
-Cre05.g237526			Chloroplast			
-Cre05.g240550	GMM:33.99;GMM:1.1.1.4	development.unspecified;PS.lightreaction.photosystem II.LHC biogenesis	Secretory pathway			TLA1
-Cre05.g243600	GMM:24	biodegradation of xenobiotics				GOX2
-Cre05.g233400						
-Cre05.g233802						
-Cre05.g245352			Secretory pathway	GO:0016020;GO:0005975;GO:0005044;GO:0004553	"membrane;carbohydrate metabolic process;scavenger receptor activity;hydrolase activity, hydrolyzing O-glycosyl compounds"	
-Cre05.g241649						
-Cre05.g242950			Secretory pathway	GO:0015934;GO:0006412;GO:0005840;GO:0003735	large ribosomal subunit;translation;ribosome;structural constituent of ribosome	MRPL22
-Cre05.g234644						
-Cre05.g233402			Mitochondrion			
-Cre05.g234000	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB26
-Cre05.g244750	GMM:31.2	cell.division	Secretory pathway			
-Cre05.g238290	GMM:26.17	misc.dynamin		GO:0005525;GO:0003924	GTP binding;GTPase activity	DRP7
-Cre05.g248550	GMM:29.5.11.4.2;GMM:27.3.57;GMM:27.3.11	protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.JUMONJI family;RNA.regulation of transcription.C2H2 zinc finger family		GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre05.g230803	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0005524	ATP binding	
-Cre05.g239650			Mitochondrion			
-Cre05.g242600	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family	Mitochondrion	GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	CGL106
-Cre05.g233850						
-Cre05.g244700	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH15
-Cre05.g241646						
-Cre05.g234645			Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	
-Cre05.g244236						
-Cre05.g246050	GMM:29.5.3	protein.degradation.cysteine protease				OTU3
-Cre05.g240100			Chloroplast			EXN9
-Cre05.g238322	GMM:29.1.13;GMM:29.1	protein.aa activation.tryptophan-tRNA ligase;protein.aa activation	Chloroplast	GO:0006436;GO:0006418;GO:0005737;GO:0005524;GO:0004830;GO:0004812;GO:0000166	tryptophanyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;tryptophan-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	
-Cre05.g240900			Secretory pathway			
-Cre05.g233052			Secretory pathway			
-Cre05.g237930			Secretory pathway			
-Cre05.g234700	GMM:4.3.14;GMM:4.2.14;GMM:4.1.14;GMM:11.1.30	glycolysis.unclear/dually targeted.pyruvate kinase (PK);glycolysis.plastid branch.pyruvate kinase (PK);glycolysis.cytosolic branch.pyruvate kinase (PK);lipid metabolism.FA synthesis and FA elongation.pyruvate kinase		GO:0030955;GO:0006096;GO:0004743;GO:0000287	potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding	PYK3
-Cre05.g231100	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre05.g241641			Mitochondrion			
-Cre05.g246552	GMM:35.1.1	not assigned.no ontology.ABC1 family protein	Chloroplast			
-Cre05.g239151	GMM:25.8	C1-metabolism.tetrahydrofolate synthase	Mitochondrion	GO:0006464	cellular protein modification process	
-Cre05.g246200	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre05.g248050						
-Cre05.g242900			Mitochondrion			
-Cre05.g241450	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0006614;GO:0005525	SRP-dependent cotranslational protein targeting to membrane;GTP binding	FTSY
-Cre05.g242179			Secretory pathway	GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GDP7
-Cre05.g239083						
-Cre05.g241050						
-Cre05.g245450	GMM:18.8;GMM:18	Co-factor and vitamine metabolism.ubiquinone;Co-factor and vitamine metabolism	Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	COQ5A
-Cre05.g248150	GMM:3.3;GMM:26.5;GMM:11.3.1	minor CHO metabolism.sugar alcohols;misc.acyl transferases;lipid metabolism.phospholipid synthesis.1-acylglycerol-3-phosphate O-acyltransferase	Secretory pathway	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	PGA2
-Cre05.g232751			Chloroplast			
-Cre05.g236216	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre05.g243802			Secretory pathway			
-Cre05.g241634	GMM:28.1.3.2.1;GMM:28.1.3;GMM:28.1.1	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone;DNA.synthesis/chromatin structure.retrotransposon/transposase		GO:0003677	DNA binding	HAV1
-Cre05.g238364	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF				
-Cre05.g241150			Mitochondrion	GO:0007076	mitotic chromosome condensation	
-Cre05.g242301			Mitochondrion			
-Cre05.g241300	GMM:27.1	RNA.processing				SMPF
-Cre05.g235850			Mitochondrion			
-Cre05.g242750	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
-Cre05.g238250	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family		GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre05.g243850						
-Cre05.g234663				GO:0070403	NAD+ binding	
-Cre05.g245701			Chloroplast			FAP104
-Cre05.g243450	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX1
-Cre05.g243803						
-Cre05.g240533			Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre05.g247200			Mitochondrion			
-Cre05.g246800	GMM:19.40;GMM:19.4	tetrapyrrole synthesis.regulation;tetrapyrrole synthesis.ALA dehydratase	Chloroplast			GUN4
-Cre05.g241629			Mitochondrion			
-Cre05.g230700			Secretory pathway			
-Cre05.g240350						
-Cre05.g237283			Secretory pathway;Chloroplast			
-Cre05.g234300	GMM:30.11.1	signalling.light.COP9 signalosome		GO:0005515	protein binding	
-Cre05.g242501						
-Cre05.g233502						
-Cre05.g237650			Mitochondrion			
-Cre05.g232600						
-Cre05.g247050	GMM:34.12	transport.metal	Secretory pathway	GO:0035434;GO:0016021;GO:0005375	copper ion transmembrane transport;integral component of membrane;copper ion transmembrane transporter activity	COPT1
-Cre05.g244052			Chloroplast			
-Cre05.g241850	GMM:8.2.11	TCA / organic transformation.other organic acid transformations.atp-citrate lyase				ACLA1
-Cre05.g246377			Mitochondrion	GO:0019239	deaminase activity	
-Cre05.g234750			Mitochondrion			CGLD25
-Cre05.g248600	GMM:34.12	transport.metal	Chloroplast	GO:0046872;GO:0030001	metal ion binding;metal ion transport	PCC1
-Cre05.g246551			Chloroplast			
-Cre05.g236750			Mitochondrion			
-Cre05.g234500	GMM:33.99;GMM:29.5.11	development.unspecified;protein.degradation.ubiquitin	Chloroplast	GO:0005515	protein binding	
-Cre05.g238935	GMM:29.2.3;GMM:28.1;GMM:27.1.2	protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase	Secretory pathway			
-Cre05.g243550						
-Cre05.g236400			Mitochondrion	GO:0008080	N-acetyltransferase activity	
-Cre05.g234658						
-Cre05.g233050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP162
-Cre05.g233550	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre05.g238687			Secretory pathway			PHC35
-Cre05.g247150			Chloroplast			
-Cre05.g237200	GMM:26.17	misc.dynamin	Secretory pathway	GO:0005525	GTP binding	DRP6
-Cre05.g243700						
-Cre05.g244450			Mitochondrion			
-Cre05.g238950	GMM:27.1	RNA.processing		GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	CGLD33
-Cre05.g243650						
-Cre05.g243351						
-Cre05.g237100				GO:0034453;GO:0005815	microtubule anchoring;microtubule organizing center	MOT52
-Cre05.g237050			Chloroplast			CGLD27
-Cre05.g237400	GMM:13.1.3.5.4	amino acid metabolism.synthesis.aspartate family.lysine.diaminopimelate epimerase	Chloroplast	GO:0009089;GO:0008837	lysine biosynthetic process via diaminopimelate;diaminopimelate epimerase activity	DAE1
-Cre05.g247851	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP2
-Cre05.g245901						
-Cre05.g240000	GMM:26.13;GMM:11.3	misc.acid and other phosphatases;lipid metabolism.phospholipid synthesis	Secretory pathway			
-Cre05.g244850						
-Cre05.g242857						
-Cre05.g238600	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC36
-Cre05.g240150	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC16
-Cre05.g232800				GO:0055114;GO:0032542	oxidation-reduction process;sulfiredoxin activity	SRX1
-Cre05.g237950						
-Cre05.g246400				GO:0016407;GO:0008152	acetyltransferase activity;metabolic process	
-Cre05.g246650			Chloroplast			
-Cre05.g243000	GMM:27.3.5;GMM:17.4.2	RNA.regulation of transcription.ARR;hormone metabolism.cytokinin.signal transduction		GO:0000160	phosphorelay signal transduction system	hik
-Cre05.g232200	GMM:9.2.2;GMM:9.2.1.4;GMM:9.2.1.2	mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.internal matrix;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.external	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NDA3
-Cre05.g238280			Mitochondrion			FAP205
-Cre05.g241644			Chloroplast			
-Cre05.g234642						
-Cre05.g234643						
-Cre05.g244150						
-Cre05.g242550	GMM:31.1	cell.organisation				RSP6
-Cre05.g247550	GMM:26.9	misc.glutathione S transferases	Mitochondrion	GO:0005515	protein binding	
-Cre05.g243455				GO:0005515	protein binding	
-Cre05.g241651			Chloroplast			
-Cre05.g230900	GMM:26.13;GMM:11.3	misc.acid and other phosphatases;lipid metabolism.phospholipid synthesis	Secretory pathway			
-Cre05.g236878			Mitochondrion	GO:0008080	N-acetyltransferase activity	
-Cre05.g241900						
-Cre05.g239400						
-Cre05.g239652						
-Cre05.g233902						
-Cre05.g240700			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	FAP378
-Cre05.g240225						
-Cre05.g241638			Mitochondrion	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	
-Cre05.g247350						
-Cre05.g243050	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXF2
-Cre05.g235750	GMM:28.2	DNA.repair		GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	MSH6
-Cre05.g239250	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family		GO:0005634	nucleus	
-Cre05.g248500	GMM:21.1	redox.thioredoxin	Mitochondrion	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXO
-Cre05.g234646						
-Cre05.g236600						
-Cre05.g237850			Secretory pathway			
-Cre05.g233950			Chloroplast			CGL129
-Cre05.g243454	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
-Cre05.g241654						
-Cre05.g242858			Mitochondrion			
-Cre05.g232550	GMM:4.3.12	glycolysis.unclear/dually targeted.phosphoglycerate mutase				PGM4
-Cre05.g238724						CSB27
-Cre05.g240500				GO:0008270	zinc ion binding	
-Cre05.g234661	GMM:9.5	mitochondrial electron transport / ATP synthesis.cytochrome c reductase	Secretory pathway	GO:0005524	ATP binding	BCS1
-Cre05.g244701			Mitochondrion			
-Cre05.g242200	GMM:33.99;GMM:31.1;GMM:30.1;GMM:29.4;GMM:29.2.2.3.4;GMM:27.3.51;GMM:27.1	"development.unspecified;cell.organisation;signalling.in sugar and nutrient physiology;protein.postranslational modification;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins;RNA.regulation of transcription.general transcription, TBP-binding protein;RNA.processing"		GO:0005515	protein binding	
-Cre05.g239900	GMM:14.1	S-assimilation.APS	Chloroplast	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS15
-Cre05.g244200			Chloroplast			COTH2
-Cre05.g237750						
-Cre05.g235800						FBB19
-Cre05.g246553						
-Cre05.g236250	GMM:33.99;GMM:3.5;GMM:29.2.2.3.4;GMM:27.3.55;GMM:20.2.2	development.unspecified;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins;RNA.regulation of transcription.HDA;stress.abiotic.cold	Mitochondrion	GO:0005515	protein binding	
-Cre05.g239750	GMM:14.1	S-assimilation.APS		GO:0003824	catalytic activity	ARS13
-Cre05.g239067	GMM:25.8	C1-metabolism.tetrahydrofolate synthase	Mitochondrion	GO:0009396;GO:0009058;GO:0005524;GO:0004326	folic acid-containing compound biosynthetic process;biosynthetic process;ATP binding;tetrahydrofolylpolyglutamate synthase activity	
-Cre05.g246750			Chloroplast			
-Cre05.g235450	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre05.g245900	GMM:26.26.1;GMM:18.4.1;GMM:16.5.1.1.1.1;GMM:13.1.4.1.4	misc.aminotransferases.aminotransferase class IV family protein;Co-factor and vitamine metabolism.pantothenate.branched-chain amino acid aminotransferase;secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.branched-chain amino acid aminotransferase  (BCAT/MAAT);amino acid metabolism.synthesis.branched chain group.common.branched-chain-amino-acid aminotransferase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	BCA2
-Cre05.g245351						
-Cre05.g234664	GMM:3.5	minor CHO metabolism.others		GO:0052855	ADP-dependent NAD(P)H-hydrate dehydratase activity	
-Cre05.g235102	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre05.g242850						
-Cre05.g236050						
-Cre05.g243472			Mitochondrion			
-Cre05.g242180			Secretory pathway			
-Cre05.g245101			Mitochondrion			
-Cre05.g241631						
-Cre05.g243900			Secretory pathway			
-Cre05.g233350						
-Cre05.g245451	GMM:29.5	protein.degradation	Secretory pathway	GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL10
-Cre05.g238353			Mitochondrion			
-Cre05.g232000			Mitochondrion			
-Cre05.g247000	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor		GO:0005515	protein binding	
-Cre05.g248100	GMM:31.1	cell.organisation				ANK1
-Cre05.g235700			Secretory pathway	GO:0006629	lipid metabolic process	
-Cre05.g246000						
-Cre05.g243801			Chloroplast			FAP387
-Cre05.g231050				GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre05.g231002						
-Cre05.g232350						
-Cre05.g234250	GMM:28.2	DNA.repair	Chloroplast	GO:0006284	base-excision repair	
-Cre05.g234648						
-Cre05.g237870			Secretory pathway			
-Cre05.g236501	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"				
-Cre05.g233551	GMM:33.99;GMM:27.3.28	development.unspecified;RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Mitochondrion	GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre05.g236926						
-Cre05.g235650			Secretory pathway			
-Cre05.g246850			Secretory pathway			
-Cre05.g241751			Mitochondrion			
-Cre05.g242050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			
-Cre05.g234660	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
-Cre05.g237150						
-Cre05.g242700	GMM:29.5.1	protein.degradation.subtilases	Mitochondrion	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB9
-Cre05.g232454			Mitochondrion			
-Cre05.g240850	GMM:18.2	Co-factor and vitamine metabolism.thiamine	Chloroplast	GO:0051536;GO:0009228	iron-sulfur cluster binding;thiamine biosynthetic process	THIC
-Cre05.g238000	GMM:28.2	DNA.repair				
-Cre05.g237500			Secretory pathway			
-Cre05.g234653						
-Cre05.g248200	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase	Chloroplast	GO:0006629	lipid metabolic process	
-Cre05.g238200			Chloroplast			
-Cre05.g232305						
-Cre05.g248250			Chloroplast	GO:0055114;GO:0016491;GO:0009073;GO:0003856	oxidation-reduction process;oxidoreductase activity;aromatic amino acid family biosynthetic process;3-dehydroquinate synthase activity	
-Cre05.g241250						
-Cre05.g246600						
-Cre05.g240400	GMM:26.6	misc.O-methyl transferases		GO:0008171	O-methyltransferase activity	SOM2
-Cre05.g233100	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0005515;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;protein binding;microtubule motor activity	KIN14B-1
-Cre05.g241647						
-Cre05.g244400						
-Cre05.g241652						
-Cre05.g230650						
-Cre05.g234641			Mitochondrion			
-Cre05.g235600						
-Cre05.g246300						
-Cre05.g241950	GMM:34.9;GMM:34.18	transport.metabolite transporters at the mitochondrial membrane;transport.unspecified anions		GO:0055085;GO:0005741	transmembrane transport;mitochondrial outer membrane	VDAC2
-Cre05.g234350						
-Cre05.g238900	GMM:29.2.2.3.5	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL25
-Cre05.g232455						
-Cre05.g241643						
-Cre05.g239450			Secretory pathway			
-Cre05.g241639			Chloroplast			
-Cre05.g245700	GMM:31.1;GMM:29.4	cell.organisation;protein.postranslational modification	Mitochondrion			ANK25
-Cre05.g239050						
-Cre05.g231000						
-Cre05.g232850				GO:0016531;GO:0006825;GO:0005758;GO:0005507	copper chaperone activity;copper ion transport;mitochondrial intermembrane space;copper ion binding	COX17
-Cre05.g247100			Chloroplast			COTH1
-Cre05.g235355			Chloroplast			
-Cre05.g239200						FAP275
-Cre05.g239000						
-Cre05.g230804						SNF2
-Cre05.g243950			Secretory pathway			
-Cre05.g234662						
-Cre05.g233600	GMM:31.3;GMM:31.2;GMM:29.4	cell.cycle;cell.division;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre05.g234667	GMM:31.4	cell.vesicle transport		GO:0030131;GO:0030117;GO:0016192;GO:0006886	clathrin adaptor complex;membrane coat;vesicle-mediated transport;intracellular protein transport	
-Cre05.g234400	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre05.g238650	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC5
-Cre05.g241100	GMM:34.99	transport.misc	Chloroplast			
-Cre05.g239100	GMM:25.8	C1-metabolism.tetrahydrofolate synthase	Mitochondrion	GO:0009396;GO:0009058;GO:0005524;GO:0004326	folic acid-containing compound biosynthetic process;biosynthetic process;ATP binding;tetrahydrofolylpolyglutamate synthase activity	FPG2
-Cre05.g236350				GO:0055114	oxidation-reduction process	
-Cre05.g236550				GO:0055114	oxidation-reduction process	
-Cre05.g241632						
-Cre05.g242650						
-Cre05.g244901				GO:0022900;GO:0005747;GO:0005739	electron transport chain;mitochondrial respiratory chain complex I;mitochondrion	NUOB12
-Cre05.g238301			Mitochondrion			
-Cre05.g241750	GMM:30.1.2	signalling.in sugar and nutrient physiology.pyruvate dehydrogenase kinase	Mitochondrion			PDK3
-Cre05.g246950						
-Cre05.g234636				GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	
-Cre05.g245100			Mitochondrion	GO:0055114	oxidation-reduction process	
-Cre05.g234650						
-Cre05.g233750			Secretory pathway			
-Cre05.g236802			Chloroplast			
-Cre05.g235018			Secretory pathway			
-Cre05.g248700				GO:0003677	DNA binding	
-Cre05.g247300			Mitochondrion			
-Cre05.g234100	GMM:26.1;GMM:16.1.4.7	misc.misc2;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP745A1
-Cre05.g243352			Mitochondrion			
-Cre05.g234850	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
-Cre05.g239700			Mitochondrion			
-Cre05.g236375						
-Cre05.g241642			Mitochondrion			
-Cre05.g247850				GO:0016787	hydrolase activity	
-Cre05.g248450	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Mitochondrion	GO:0008270;GO:0004089	zinc ion binding;carbonate dehydratase activity	CAH5
-Cre05.g242350	GMM:34.21	transport.calcium		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	
-Cre05.g237890			Chloroplast			
-Cre05.g230850			Chloroplast			
-Cre05.g234649			Secretory pathway	GO:0005515	protein binding	
-Cre05.g237350						
-Cre05.g238270						
-Cre05.g230600	GMM:31.2;GMM:20.2.5	cell.division;stress.abiotic.light				
-Cre05.g232003			Secretory pathway			
-Cre05.g238400			Mitochondrion			
-Cre05.g243800	GMM:1.1.1.3;GMM:1.1.1.2	PS.lightreaction.photosystem II.biogenesis;PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast.Stroma.Thylakoid.Lumen	GO:0010207	photosystem II assembly	PSB27
-Cre05.g234651	GMM:3.5	minor CHO metabolism.others	Mitochondrion;Chloroplast	GO:0016853;GO:0005975	isomerase activity;carbohydrate metabolic process	
-Cre05.g236950	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
-Cre05.g240200				GO:0008270	zinc ion binding	
-Cre05.g240251			Chloroplast			
-Cre05.g234976						
-Cre05.g234150						
-Cre05.g240650	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat				DNJ32
-Cre05.g235950						
-Cre05.g246752						
-Cre05.g238150			Secretory pathway	GO:0005515	protein binding	
-Cre05.g234639	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0005524	ATP binding	CCT4
-Cre05.g244100						
-Cre05.g235228						CSU4
-Cre05.g232050			Mitochondrion			
-Cre05.g236525			Mitochondrion			
-Cre05.g243358						
-Cre05.g233300	GMM:26.6;GMM:19.3	misc.O-methyl transferases;tetrapyrrole synthesis.GSA		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre05.g245350			Secretory pathway			
-Cre05.g244650						
-Cre05.g236300						
-Cre05.g243602			Chloroplast			
-Cre05.g244250	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Chloroplast	GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC6
-Cre05.g242100	GMM:29.5.1	protein.degradation.subtilases		GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB8
-Cre05.g246900			Mitochondrion			
-Cre05.g241653				GO:0005515	protein binding	
-Cre05.g239800	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS14
-Cre05.g235144						
-Cre05.g235400	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor		GO:0015074;GO:0005515	DNA integration;protein binding	
-Cre05.g238052	GMM:31.1	cell.organisation				
-Cre05.g248000			Mitochondrion			CGL29
-Cre05.g236150						
-Cre05.g246150	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG13
-Cre05.g241635			Secretory pathway			
-Cre05.g234665	GMM:31.4	cell.vesicle transport	Mitochondrion	GO:0030131;GO:0030117;GO:0016192;GO:0006886	clathrin adaptor complex;membrane coat;vesicle-mediated transport;intracellular protein transport	AP4B4
-Cre05.g232500	GMM:30.99	signalling.unspecified	Mitochondrion			FXL8
-Cre05.g234654				GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre05.g232002	GMM:11.9.4.2;GMM:11.9.4	lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH;lipid metabolism.lipid degradation.beta-oxidation		GO:0055114;GO:0016627;GO:0006635;GO:0005777;GO:0003997;GO:0003995	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;fatty acid beta-oxidation;peroxisome;acyl-CoA oxidase activity;acyl-CoA dehydrogenase activity"	
-Cre05.g232400						
-Cre05.g234647						
-Cre05.g236100						
-Cre05.g242000	GMM:19.10;GMM:19.1	tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase	Chloroplast	GO:0016851;GO:0015995;GO:0015979	magnesium chelatase activity;chlorophyll biosynthetic process;photosynthesis	CHLD
-Cre05.g238343			Chloroplast			
-Cre05.g234200			Chloroplast	GO:0003676	nucleic acid binding	
-Cre05.g233304	GMM:2.1	major CHO metabolism.synthesis	Secretory pathway	GO:0008061;GO:0005975;GO:0004553	"chitin binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI3
-Cre15.g639000			Mitochondrion			NCL17
-Cre15.g636050			Chloroplast			CPLD31
-Cre15.g639802						NCL8
-Cre15.g642702						
-Cre15.g637150						
-Cre15.g643391						
-Cre15.g636600				GO:0005515	protein binding	FAP391
-Cre15.g634550						
-Cre15.g641850			Mitochondrion			
-Cre15.g637700			Mitochondrion			
-Cre15.g637900			Chloroplast			
-Cre15.g639304			Chloroplast			NCL15
-Cre15.g634913			Chloroplast			
-Cre15.g644051			Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre15.g635900						
-Cre15.g637216						
-Cre15.g643550	GMM:18	Co-factor and vitamine metabolism		GO:0042823;GO:0042819	pyridoxal phosphate biosynthetic process;vitamin B6 biosynthetic process	PDX1
-Cre15.g638304			Mitochondrion			NCL30
-Cre15.g635800	GMM:31.2	cell.division				SMC1
-Cre15.g637249			Mitochondrion			
-Cre15.g643386			Secretory pathway			
-Cre15.g638551						
-Cre15.g638300			Mitochondrion			NCL28
-Cre15.g637401						
-Cre15.g636300	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0005515	protein binding	CPN2
-Cre15.g636700			Chloroplast			
-Cre15.g636896	GMM:12.4	N-metabolism.misc		GO:0055114;GO:0050660;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing	
-Cre15.g641150			Chloroplast	GO:0016020;GO:0005044	membrane;scavenger receptor activity	
-Cre15.g635993						
-Cre15.g643850						
-Cre15.g640800			Chloroplast			
-Cre15.g643740			Chloroplast			
-Cre15.g640900			Mitochondrion			
-Cre15.g642213						
-Cre15.g641500						
-Cre15.g643394						
-Cre15.g638956			Mitochondrion			NCL20
-Cre15.g637750			Secretory pathway			
-Cre15.g639350						
-Cre15.g634650						
-Cre15.g638150			Mitochondrion			NCL31
-Cre15.g636450						
-Cre15.g638750			Mitochondrion			NCL21
-Cre15.g641750			Secretory pathway	GO:0008270	zinc ion binding	
-Cre15.g643702						
-Cre15.g639200			Mitochondrion			
-Cre15.g638450			Chloroplast			NCL26
-Cre15.g638950			Chloroplast			NCC1
-Cre15.g635034						
-Cre15.g640502						
-Cre15.g638101			Chloroplast			
-Cre15.g643503			Chloroplast	GO:0035556;GO:0016849;GO:0016020;GO:0009190;GO:0000160	intracellular signal transduction;phosphorus-oxygen lyase activity;membrane;cyclic nucleotide biosynthetic process;phosphorelay signal transduction system	COP9
-Cre15.g639136			Mitochondrion			
-Cre15.g639700			Chloroplast			NCL10
-Cre15.g637050						FAP274
-Cre15.g643393						
-Cre15.g635150			Mitochondrion			
-Cre15.g637761	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
-Cre15.g639650			Mitochondrion			NCL11
-Cre15.g643395						
-Cre15.g641700						
-Cre15.g643704			Mitochondrion			
-Cre15.g634800			Mitochondrion			NCL3
-Cre15.g641875			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre15.g635700	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPKKK12
-Cre15.g639950	GMM:29.4	protein.postranslational modification				
-Cre15.g643400			Secretory pathway			
-Cre15.g636176						
-Cre15.g638100			Mitochondrion			NCL32
-Cre15.g636500						
-Cre15.g639552						
-Cre15.g642875						
-Cre15.g641400						
-Cre15.g635067			Secretory pathway			
-Cre15.g641100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre15.g637315			Mitochondrion			
-Cre15.g635600	GMM:31.99;GMM:29.2.4	cell.unspecified;protein.synthesis.elongation				FAP357
-Cre15.g634582						
-Cre15.g642000			Mitochondrion			
-Cre15.g638700						NCL22
-Cre15.g635450			Mitochondrion			
-Cre15.g635998						
-Cre15.g634701	GMM:28.99	DNA.unspecified	Secretory pathway	GO:0008270;GO:0005524;GO:0003676	zinc ion binding;ATP binding;nucleic acid binding	RECQ4
-Cre15.g639800						NCL7
-Cre15.g638955			Secretory pathway			
-Cre15.g641600						
-Cre15.g641000	GMM:3.5	minor CHO metabolism.others		GO:0046907	intracellular transport	
-Cre15.g638651			Chloroplast			NCL24
-Cre15.g639550			Mitochondrion			
-Cre15.g642976	GMM:34.8	transport.metabolite transporters at the envelope membrane				
-Cre15.g640203						
-Cre15.g636075						
-Cre15.g643389			Secretory pathway			
-Cre15.g640426						NCL18
-Cre15.g636840			Chloroplast			
-Cre15.g640600			Secretory pathway	GO:0055114;GO:0008199;GO:0006725;GO:0003824	oxidation-reduction process;ferric iron binding;cellular aromatic compound metabolic process;catalytic activity	
-Cre15.g643500			Mitochondrion			
-Cre15.g638401			Mitochondrion			NCL27
-Cre15.g642376						
-Cre15.g643387			Chloroplast			
-Cre15.g635950			Secretory pathway			
-Cre15.g634950			Mitochondrion			
-Cre15.g637552			Secretory pathway			
-Cre15.g641926			Secretory pathway			
-Cre15.g640651	GMM:29.4	protein.postranslational modification				
-Cre15.g639500						
-Cre15.g643384			Chloroplast			
-Cre15.g643517						
-Cre15.g641950						
-Cre15.g643385	GMM:34.8	transport.metabolite transporters at the envelope membrane	Secretory pathway			
-Cre15.g638000			Mitochondrion			NCL34
-Cre15.g639614			Chloroplast			NCL12
-Cre15.g641298			Mitochondrion			
-Cre15.g640251						
-Cre15.g643028			Chloroplast			
-Cre15.g643388						
-Cre15.g639308			Mitochondrion			NCL14
-Cre15.g642950						
-Cre15.g639056			Chloroplast	GO:0005515	protein binding	
-Cre15.g635250			Mitochondrion			
-Cre15.g638050			Mitochondrion			NCL33
-Cre15.g640350			Chloroplast			NCL4
-Cre15.g637183			Mitochondrion			
-Cre15.g634500						
-Cre15.g635850	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion	GO:0046961;GO:0046933;GO:0045261;GO:0015986	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;proton-transporting ATP synthase complex, catalytic core F(1);ATP synthesis coupled proton transport"	ATP3
-Cre15.g641266						
-Cre15.g637602			Secretory pathway			
-Cre15.g641674						
-Cre15.g637850			Mitochondrion			NCL13
-Cre15.g636350						
-Cre15.g636650			Chloroplast			
-Cre15.g639379						
-Cre15.g642539						
-Cre15.g643050						
-Cre15.g643392						
-Cre15.g634900			Chloroplast			
-Cre15.g636250			Secretory pathway			
-Cre15.g641650			Mitochondrion			HLM22
-Cre15.g643700	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RLS6
-Cre15.g641662						
-Cre15.g637450						
-Cre15.g635650			Chloroplast			
-Cre15.g636400	GMM:9.1.2;GMM:29.5	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;protein.degradation				
-Cre15.g642050			Secretory pathway			
-Cre15.g643191			Mitochondrion			
-Cre15.g640101			Mitochondrion			
-Cre15.g643680						
-Cre15.g635376			Mitochondrion			
-Cre15.g637350	GMM:27.1	RNA.processing		GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
-Cre15.g634600			Mitochondrion			
-Cre15.g640204						
-Cre15.g636750				GO:0005515	protein binding	
-Cre15.g634827						
-Cre15.g641451			Secretory pathway			
-Cre15.g644050						
-Cre15.g643703	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	RLS9
-Cre15.g639900	GMM:29.4	protein.postranslational modification				
-Cre15.g636950			Chloroplast			
-Cre15.g638500	GMM:9.6;GMM:9.5	mitochondrial electron transport / ATP synthesis.cytochrome c;mitochondrial electron transport / ATP synthesis.cytochrome c reductase	Mitochondrion	GO:0020037;GO:0009055	heme binding;electron carrier activity	CYC1
-Cre15.g639750			Chloroplast			NCL9
-Cre15.g641250	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols				
-Cre15.g636800				GO:0005515	protein binding	
-Cre15.g635200				GO:0000266	mitochondrial fission	
-Cre15.g640901			Mitochondrion			
-Cre15.g643390			Secretory pathway			
-Cre15.g640150						
-Cre15.g641976			Mitochondrion			
-Cre15.g635750			Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre15.g639504						
-Cre15.g636004						
-Cre15.g639400	GMM:29.5	protein.degradation		GO:0002949	tRNA threonylcarbamoyladenosine modification	
-Cre15.g639600						
-Cre15.g639850			Mitochondrion			NCL6
-Cre15.g639150	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Mitochondrion			
-Cre15.g635717						
-Cre15.g637000			Mitochondrion			
-Cre15.g639503	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre15.g636550			Mitochondrion			
-Cre15.g641800	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	RAB8
-Cre15.g635100			Secretory pathway	GO:0005515	protein binding	
-Cre15.g640850			Mitochondrion			
-Cre15.g640200	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003723	RNA binding	
-Cre15.g640650			Mitochondrion			
-Cre15.g643000						
-Cre15.g638650			Chloroplast			NCL23
-Cre15.g640152			Mitochondrion			
-Cre15.g637282			Mitochondrion			
-Cre15.g641901						
-Cre15.g639134			Secretory pathway			
-Cre15.g641350						
-Cre15.g638550			Mitochondrion			NCL25
-Cre15.g643354						
-Cre15.g643499						
-Cre15.g634566			Secretory pathway			
-Cre15.g640100	GMM:29.4	protein.postranslational modification				
-Cre15.g638954			Chloroplast			NCL19
-Cre15.g643600	GMM:29.8	protein.assembly and cofactor ligation	Chloroplast	GO:0016226	iron-sulfur cluster assembly	SUFB
-Cre15.g643515						
-Cre15.g640000						FAP345
-Cre15.g634855			Mitochondrion			
-Cre15.g638303			Mitochondrion			NCL29
-Cre15.g637501						
-Cre15.g641050			Mitochondrion	GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
-Cre15.g639100						FAP195
-Cre15.g640652			Secretory pathway			
-Cre15.g639050						
-Cre15.g638400	GMM:20.2.1	stress.abiotic.heat	Chloroplast			USPA
-Cre15.g641200	GMM:9.8;GMM:34.9	mitochondrial electron transport / ATP synthesis.uncoupling protein;transport.metabolite transporters at the mitochondrial membrane				MCP28
-Cre15.g642800						
-Cre15.g643750			Mitochondrion			
-Cre15.g641527	GMM:31.1	cell.organisation				
-Cre15.g641282						
-Cre15.g637100	GMM:29.5.11.1;GMM:29.5.11	protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin		GO:0005515	protein binding	
-Cre15.g640550						
-Cre15.g640750	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre15.g634750			Mitochondrion			
-Cre15.g634878				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre15.g640400			Chloroplast			NCC2
-Cre15.g642865						
-Cre15.g634925						
-Cre15.g635350	GMM:26.6	misc.O-methyl transferases		GO:0008168;GO:0006479	methyltransferase activity;protein methylation	PRM4
-Cre15.g640450			Chloroplast			NCL5
-Cre15.g640250						
-Cre15.g635300						
-Cre15.g636100						
-Cre15.g639300			Mitochondrion			NCL16
-Cre15.g635400	GMM:31.7.1	cell.development.zygote	Secretory pathway	GO:0005515	protein binding	ZYS3
-Cre15.g635000			Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre43.g760647						
-Cre43.g760497	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0019538	protein metabolic process	
-Cre43.g760597			Secretory pathway			
-Cre43.g760547			Mitochondrion			
-Cre25.g756247	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre25.g756447			Mitochondrion			
-Cre25.g756397						
-Cre25.g756297						
-Cre25.g756497			Mitochondrion			
-Cre25.g756197						
-Cre25.g756097						
-Cre25.g756347						
-Cre25.g756147			Mitochondrion			
-Cre18.g749497	GMM:23.1.2.2	nucleotide metabolism.synthesis.purine.GAR synthetase	Chloroplast	GO:0009113;GO:0004637	purine nucleobase biosynthetic process;phosphoribosylamine-glycine ligase activity	
-Cre18.g748497				GO:0042578	phosphoric ester hydrolase activity	
-Cre18.g748347						
-Cre18.g749647	GMM:23.1.2.2	nucleotide metabolism.synthesis.purine.GAR synthetase	Mitochondrion	GO:0009113;GO:0004637	purine nucleobase biosynthetic process;phosphoribosylamine-glycine ligase activity	
-Cre18.g748947	GMM:34.2;GMM:34.11	transport.sugars;transport.NDP-sugars at the ER	Secretory pathway			
-Cre18.g749197			Secretory pathway			
-Cre18.g749997						
-Cre18.g749297			Secretory pathway			
-Cre18.g749797	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			FAP281
-Cre18.g749097			Secretory pathway			
-Cre18.g748197						
-Cre18.g749847	GMM:8.1.1.3	TCA / organic transformation.TCA.pyruvate DH.E3	Mitochondrion	GO:0055114;GO:0045454;GO:0016491	oxidation-reduction process;cell redox homeostasis;oxidoreductase activity	DLD1
-Cre18.g750047	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins	Secretory pathway			FMG1
-Cre18.g748797						
-Cre18.g749547						
-Cre18.g749697	GMM:3.5;GMM:29.7.10	"minor CHO metabolism.others;protein.glycosylation.core alpha-(1,3)-fucosyltransferase (FucT)"		GO:0016020;GO:0008417;GO:0006486	membrane;fucosyltransferase activity;protein glycosylation	FUT11
-Cre18.g748697						
-Cre18.g749397	GMM:13.1.3.6.1.1	amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate kinase				
-Cre18.g748297						
-Cre18.g749247			Secretory pathway			
-Cre18.g748397	GMM:1.1.6	PS.lightreaction.NADH DH	Mitochondrion			CGL143
-Cre18.g749947						FAP21
-Cre18.g748447	GMM:29.8	protein.assembly and cofactor ligation	Mitochondrion	GO:0051536;GO:0016226;GO:0005506	iron-sulfur cluster binding;iron-sulfur cluster assembly;iron ion binding	NFU1
-Cre18.g748597						
-Cre18.g749147			Secretory pathway			
-Cre18.g748247						
-Cre18.g748997	GMM:29.7	protein.glycosylation	Mitochondrion			
-Cre18.g749747			Chloroplast			
-Cre18.g748747						
-Cre18.g748897	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			
-Cre18.g749897			Mitochondrion			
-Cre18.g749597						
-Cre18.g748647			Chloroplast			
-Cre18.g748847			Secretory pathway			
-Cre18.g748147			Secretory pathway			
-Cre18.g749347						
-Cre18.g748097						
-Cre18.g748547			Secretory pathway			
-Cre18.g749447	GMM:13.1.3.6.1.10;GMM:13.1.3.6.1.1	amino acid metabolism.synthesis.aspartate family.misc.homoserine.bifunctional aspartate kinase/homoserine dehydrogenase;amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate kinase	Chloroplast	GO:0055114;GO:0050661;GO:0016597;GO:0016491;GO:0008152;GO:0006520	oxidation-reduction process;NADP binding;amino acid binding;oxidoreductase activity;metabolic process;cellular amino acid metabolic process	AHD1
-Cre18.g749047						
-Cre13.g564550	GMM:27.2	RNA.transcription	Mitochondrion	GO:0006351;GO:0003899	"transcription, DNA-templated;DNA-directed RNA polymerase activity"	RPC17
-Cre13.g590905			Secretory pathway			
-Cre13.g592100	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor		GO:0046872;GO:0005515	metal ion binding;protein binding	
-Cre13.g569275			Mitochondrion			
-Cre13.g572150	GMM:26.24	misc.GCN5-related N-acetyltransferase		GO:0008080	N-acetyltransferase activity	
-Cre13.g582000						
-Cre13.g605350			Chloroplast	GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
-Cre13.g589550						
-Cre13.g588350			Mitochondrion	GO:0016773	"phosphotransferase activity, alcohol group as acceptor"	
-Cre13.g587550	GMM:30.99	signalling.unspecified	Chloroplast			
-Cre13.g586916	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	SRS6
-Cre13.g565321	GMM:23.1.2.8	nucleotide metabolism.synthesis.purine.SAICAR lyase		GO:0006188;GO:0004018	"IMP biosynthetic process;N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity"	
-Cre13.g572650			Chloroplast			
-Cre13.g602800				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre13.g583350			Secretory pathway			
-Cre13.g566400			Mitochondrion			OPR55
-Cre13.g571251						
-Cre13.g579700				GO:0055114	oxidation-reduction process	
-Cre13.g571450	GMM:21.2	redox.ascorbate and glutathione				
-Cre13.g602550			Secretory pathway			
-Cre13.g583750			Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre13.g590750	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB21
-Cre13.g584135						
-Cre13.g564650	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	MRS5
-Cre13.g588900	GMM:28.99	DNA.unspecified		GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	WEX
-Cre13.g578074	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre13.g570400			Chloroplast			
-Cre13.g578800						LYR5
-Cre13.g563700			Secretory pathway	GO:0005515	protein binding	FAP369
-Cre13.g581050						
-Cre13.g604400						
-Cre13.g568250				GO:0016788;GO:0009058	"hydrolase activity, acting on ester bonds;biosynthetic process"	TEH11
-Cre13.g580600	GMM:29.1.19	protein.aa activation.arginine-tRNA ligase		GO:0016598;GO:0004057	protein arginylation;arginyltransferase activity	ATE1
-Cre13.g602700	GMM:33.99;GMM:30.11	development.unspecified;signalling.light		GO:0005515;GO:0000160	protein binding;phosphorelay signal transduction system	
-Cre13.g589167			Chloroplast			
-Cre13.g587400			Chloroplast			
-Cre13.g582250				GO:0033925;GO:0005737	mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase activity;cytoplasm	
-Cre13.g573200			Mitochondrion			
-Cre13.g568800	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0022904;GO:0016651;GO:0005743	"respiratory electron transport chain;oxidoreductase activity, acting on NAD(P)H;mitochondrial inner membrane"	NUOB13
-Cre13.g602300				GO:0008168	methyltransferase activity	
-Cre13.g589940						
-Cre13.g572600				GO:0005515	protein binding	
-Cre13.g576740						
-Cre13.g600238						
-Cre13.g572950	GMM:31.2;GMM:27.3.18	cell.division;RNA.regulation of transcription.E2F/DP transcription factor family		GO:0007049;GO:0006355;GO:0005667;GO:0003700	"cell cycle;regulation of transcription, DNA-templated;transcription factor complex;transcription factor activity, sequence-specific DNA binding"	E2F2
-Cre13.g607450	GMM:3.5	minor CHO metabolism.others		GO:0006071;GO:0004371	glycerol metabolic process;glycerone kinase activity	DAK1
-Cre13.g570450						
-Cre13.g576350	GMM:29.6.1	protein.folding.prefoldin and trigger factor				PFP2
-Cre13.g567600	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Mitochondrion	GO:0005740;GO:0004129	mitochondrial envelope;cytochrome-c oxidase activity	COX4
-Cre13.g568050	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre13.g604850				GO:0070552;GO:0070531;GO:0045739	BRISC complex;BRCA1-A complex;positive regulation of DNA repair	
-Cre13.g573750			Mitochondrion			
-Cre13.g581750						
-Cre13.g588050				GO:0003676	nucleic acid binding	
-Cre13.g585175						
-Cre13.g574800	GMM:21.2	redox.ascorbate and glutathione				CYB3
-Cre13.g578350	GMM:26.13	misc.acid and other phosphatases	Secretory pathway	GO:0016787	hydrolase activity	MPA11
-Cre13.g583000			Chloroplast			
-Cre13.g563550	GMM:3.4.5;GMM:3.4.1;GMM:28.1	minor CHO metabolism.myo-inositol.inositol phosphatase;minor CHO metabolism.myo-inositol.poly-phosphatases;DNA.synthesis/chromatin structure		GO:0005515	protein binding	
-Cre13.g606050	GMM:29.1.1	protein.aa activation.tyrosine-tRNA ligase	Chloroplast	GO:0006418;GO:0005524;GO:0004831;GO:0004812;GO:0003723;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;tyrosine-tRNA ligase activity;aminoacyl-tRNA ligase activity;RNA binding;nucleotide binding	TSY1
-Cre13.g578850	GMM:31.6.1.11	cell.motility.eukaryotes.other				
-Cre13.g603176				GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	
-Cre13.g607550						
-Cre13.g575800				GO:0004425	indole-3-glycerol-phosphate synthase activity	IGS1
-Cre13.g579500	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Mitochondrion			
-Cre13.g565000						
-Cre13.g607500	GMM:28.2	DNA.repair		GO:0043564;GO:0042162;GO:0006303;GO:0005634;GO:0004003;GO:0003684;GO:0003677;GO:0000723	Ku70:Ku80 complex;telomeric DNA binding;double-strand break repair via nonhomologous end joining;nucleus;ATP-dependent DNA helicase activity;damaged DNA binding;DNA binding;telomere maintenance	
-Cre13.g566000	GMM:25.8;GMM:25.2;GMM:25	C1-metabolism.tetrahydrofolate synthase;C1-metabolism.formate-tetrahydrofolate ligase;C1-metabolism		GO:0009396;GO:0005524;GO:0004329	folic acid-containing compound biosynthetic process;ATP binding;formate-tetrahydrofolate ligase activity	
-Cre13.g569350	GMM:26.11.1;GMM:26.11;GMM:16.8.3.1	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols.dihydroflavonol 4-reductase	Mitochondrion	GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SNE16
-Cre13.g591650						
-Cre13.g607750						DRC2
-Cre13.g583972			Mitochondrion			
-Cre13.g603900	GMM:29.1.20	protein.aa activation.phenylalanine-tRNA ligase		GO:0006432;GO:0005524;GO:0004826;GO:0003723;GO:0000287	phenylalanyl-tRNA aminoacylation;ATP binding;phenylalanine-tRNA ligase activity;RNA binding;magnesium ion binding	TSF1
-Cre13.g590300	GMM:23.3.2.2	nucleotide metabolism.salvage.nucleoside kinases.uridine kinase		GO:0016301;GO:0008152;GO:0005524	kinase activity;metabolic process;ATP binding	URK2
-Cre13.g580300	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0005524	ATPase activity;ATP binding	CGLD4
-Cre13.g579767						
-Cre13.g583600	GMM:11.10.2	lipid metabolism.glycolipid synthesis.DGDG synthase				DGD1
-Cre13.g572500	GMM:18.4.5;GMM:18.4.1	Co-factor and vitamine metabolism.pantothenate.pantothenate kinase (PANK);Co-factor and vitamine metabolism.pantothenate.branched-chain amino acid aminotransferase				CGL14
-Cre13.g602950			Chloroplast	GO:0016787	hydrolase activity	
-Cre13.g606150						
-Cre13.g581200			Mitochondrion			
-Cre13.g591800						
-Cre13.g575000	GMM:9.6	mitochondrial electron transport / ATP synthesis.cytochrome c				CCS1
-Cre13.g567750	GMM:27.1.1	RNA.processing.splicing		GO:0008380;GO:0005681	RNA splicing;spliceosomal complex	PRP18
-Cre13.g606652			Mitochondrion			
-Cre13.g565116						
-Cre13.g588550	GMM:31.4	cell.vesicle transport		GO:0016020;GO:0005515	membrane;protein binding	SYP1
-Cre13.g571650	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPB10
-Cre13.g566850						SOUL2
-Cre13.g586883						
-Cre13.g575600						
-Cre13.g581500			Chloroplast			OPR41
-Cre13.g562100						
-Cre13.g606800			Chloroplast			
-Cre13.g590251			Chloroplast	GO:0008061;GO:0006030;GO:0005576	chitin binding;chitin metabolic process;extracellular region	
-Cre13.g565700						
-Cre13.g581900			Chloroplast			
-Cre13.g581400	GMM:34.99;GMM:34.9;GMM:34.8	transport.misc;transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane	Chloroplast	GO:0016021;GO:0006810;GO:0005524;GO:0005471	integral component of membrane;transport;ATP binding;ATP:ADP antiporter activity	AAA2
-Cre13.g577600			Mitochondrion			
-Cre13.g580150	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre13.g563876						
-Cre13.g588100	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN19-3
-Cre13.g605250						
-Cre13.g564583			Chloroplast			
-Cre13.g567550	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre13.g569550	GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XI				
-Cre13.g584170			Mitochondrion			
-Cre13.g572200	GMM:34.3	transport.amino acids	Mitochondrion	GO:0003333	amino acid transmembrane transport	
-Cre13.g569250			Chloroplast			CGLD9
-Cre13.g571902			Mitochondrion			
-Cre13.g567800	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0008601;GO:0007165;GO:0000159	protein phosphatase type 2A regulator activity;signal transduction;protein phosphatase type 2A complex	
-Cre13.g586650	GMM:30.99	signalling.unspecified	Mitochondrion	GO:0006355	"regulation of transcription, DNA-templated"	FXL1
-Cre13.g564700						
-Cre13.g563733	GMM:30.6;GMM:29.4.1	signalling.MAP kinases;protein.postranslational modification.kinase		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre13.g591550	GMM:27.4	RNA.RNA binding	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR20
-Cre13.g564400						FAP161
-Cre13.g584600						
-Cre13.g568950			Chloroplast	GO:0016787	hydrolase activity	
-Cre13.g604800						
-Cre13.g607950						SELK
-Cre13.g588750			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre13.g576720			Secretory pathway			
-Cre13.g571300			Chloroplast			
-Cre13.g583325						
-Cre13.g579582	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase				
-Cre13.g567700	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677	DNA binding	HAV2
-Cre13.g590800	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA21
-Cre13.g587600			Mitochondrion			
-Cre13.g566951						
-Cre13.g589300	GMM:28.1	DNA.synthesis/chromatin structure		GO:0007076;GO:0000796	mitotic chromosome condensation;condensin complex	
-Cre13.g592550						
-Cre13.g581450	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	protein binding	RPN7
-Cre13.g582713	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification				
-Cre13.g574650						
-Cre13.g570350	GMM:35.1.1;GMM:34.16;GMM:20.2	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems;stress.abiotic	Chloroplast			AKC4
-Cre13.g571500						CST2
-Cre13.g577250	GMM:24	biodegradation of xenobiotics	Chloroplast			GOX14
-Cre13.g572450				GO:0000160	phosphorelay signal transduction system	
-Cre13.g580650	GMM:29.4	protein.postranslational modification		GO:0019211	phosphatase activator activity	
-Cre13.g577750						
-Cre13.g582050						
-Cre13.g607150	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG57
-Cre13.g568850	GMM:29.8;GMM:18.7	protein.assembly and cofactor ligation;Co-factor and vitamine metabolism.iron-sulphur clusters	Secretory pathway	GO:0051536;GO:0016226;GO:0005506	iron-sulfur cluster binding;iron-sulfur cluster assembly;iron ion binding	ISU1
-Cre13.g605750						
-Cre13.g581100			Chloroplast	GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre13.g574250	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre13.g582270	GMM:2.2.1.3.2	major CHO metabolism.degradation.sucrose.invertases.cell wall	Mitochondrion			FFT3
-Cre13.g576400	GMM:26.26.1	misc.aminotransferases.aminotransferase class IV family protein	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre13.g592150	GMM:29.2.3;GMM:27.1.2	protein.synthesis.initiation;RNA.processing.RNA helicase	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
-Cre13.g583700			Secretory pathway			
-Cre13.g604350	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre13.g582290						
-Cre13.g589870			Chloroplast	GO:0016787	hydrolase activity	
-Cre13.g577900						
-Cre13.g561900	GMM:27.1.19	RNA.processing.ribonucleases		GO:0004523;GO:0003723	RNA-DNA hybrid ribonuclease activity;RNA binding	
-Cre13.g573150	GMM:29.5.3	protein.degradation.cysteine protease	Chloroplast			
-Cre13.g569700			Chloroplast			MBC1
-Cre13.g583550	GMM:27.3.99;GMM:1.1.99	RNA.regulation of transcription.unclassified;PS.lightreaction.unspecified	Chloroplast			VIPP1
-Cre13.g593833						
-Cre13.g606500						
-Cre13.g582950						
-Cre13.g585026			Mitochondrion			
-Cre13.g585200			Chloroplast			
-Cre13.g590225						
-Cre13.g589800	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	
-Cre13.g586700	GMM:30.99	signalling.unspecified				
-Cre13.g574400	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG55
-Cre13.g584950			Mitochondrion			
-Cre13.g570500	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion			
-Cre13.g566700	GMM:27.1.1	RNA.processing.splicing		GO:0017069;GO:0003676;GO:0000398	"snRNA binding;nucleic acid binding;mRNA splicing, via spliceosome"	
-Cre13.g589000						
-Cre13.g565950	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0046872	metal ion binding	
-Cre13.g579800	GMM:23.4.99;GMM:13.1.2.3.2	nucleotide metabolism.phosphotransfer and pyrophosphatases.misc;amino acid metabolism.synthesis.glutamate family.arginine.acetylglutamate kinase	Chloroplast			
-Cre13.g575050						
-Cre13.g586150						
-Cre13.g574100						
-Cre13.g602425			Mitochondrion			
-Cre13.g575650	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre13.g605368						
-Cre13.g562950	GMM:31.2;GMM:29.5.11.4.4	cell.division;protein.degradation.ubiquitin.E3.APC				APC6
-Cre13.g567300				GO:0030976;GO:0003824	thiamine pyrophosphate binding;catalytic activity	
-Cre13.g581801				GO:0005515	protein binding	
-Cre13.g591750			Secretory pathway			
-Cre13.g561950			Mitochondrion			
-Cre13.g562350			Mitochondrion			
-Cre13.g578900			Chloroplast			
-Cre13.g592350						
-Cre13.g565750	GMM:29.2.4	protein.synthesis.elongation				EFG4
-Cre13.g562700	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB51
-Cre13.g588271						
-Cre13.g584775			Chloroplast			
-Cre13.g588501						
-Cre13.g569950	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR20
-Cre13.g570951			Chloroplast			
-Cre13.g576050	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZIP2
-Cre13.g563900			Secretory pathway			UBL1
-Cre13.g603450			Chloroplast			
-Cre13.g566050	GMM:27.1	RNA.processing				SMP2
-Cre13.g588368						
-Cre13.g581150				GO:0008080	N-acetyltransferase activity	
-Cre13.g564350	GMM:29.4.1;GMM:28.2	protein.postranslational modification.kinase;DNA.repair		GO:0016773;GO:0005515	"phosphotransferase activity, alcohol group as acceptor;protein binding"	
-Cre13.g563500			Secretory pathway			
-Cre13.g587200	GMM:29.5.11.4.2;GMM:20.1	protein.degradation.ubiquitin.E3.RING;stress.biotic	Secretory pathway	GO:0016746;GO:0016021;GO:0006506;GO:0005789	"transferase activity, transferring acyl groups;integral component of membrane;GPI anchor biosynthetic process;endoplasmic reticulum membrane"	PIGW
-Cre13.g591600	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG40
-Cre13.g562062			Mitochondrion			
-Cre13.g570801						
-Cre13.g584250			Chloroplast			
-Cre13.g607600	GMM:18.3	Co-factor and vitamine metabolism.riboflavin		GO:0009231;GO:0003919	riboflavin biosynthetic process;FMN adenylyltransferase activity	RIBFL1
-Cre13.g603950	GMM:29.6.3.2	protein.folding.immunophilins (IMM).cyclophilins				CYN50
-Cre13.g603776						
-Cre13.g603100			Secretory pathway			
-Cre13.g589600						
-Cre13.g582350	GMM:29.5.11.2	protein.degradation.ubiquitin.E1	Mitochondrion	GO:0008641	small protein activating enzyme activity	
-Cre13.g569801			Mitochondrion			
-Cre13.g586250	GMM:18.4.9	Co-factor and vitamine metabolism.pantothenate.dephospho-CoA kinase (DPCK)		GO:0015937;GO:0005524;GO:0004140	coenzyme A biosynthetic process;ATP binding;dephospho-CoA kinase activity	COA7
-Cre13.g586000	GMM:11.1.8	lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre13.g590900	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	APC11
-Cre13.g576466						
-Cre13.g580700	GMM:29.5	protein.degradation	Secretory pathway	GO:0016787;GO:0008152	hydrolase activity;metabolic process	DAL2
-Cre13.g563300	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre13.g576800				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	HIF
-Cre13.g589250						
-Cre13.g586800			Mitochondrion			
-Cre13.g562550	GMM:1.1.5.3	PS.lightreaction.other electron carrier (ox/red).ferredoxin reductase	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	ARH1
-Cre13.g571800			Chloroplast			
-Cre13.g588150	GMM:21.2.1.2	redox.ascorbate and glutathione.ascorbate.GDP-L-galactose phosphorylase	Mitochondrion	GO:0080048	GDP-D-glucose phosphorylase activity	
-Cre13.g573300	GMM:23.2	nucleotide metabolism.degradation	Chloroplast	GO:0008270	zinc ion binding	CDD4
-Cre13.g575250				GO:0015031	protein transport	
-Cre13.g579300			Mitochondrion			
-Cre13.g583100			Mitochondrion			
-Cre13.g577950	GMM:27.3.71	RNA.regulation of transcription.SNF7		GO:0007034	vacuolar transport	VPS60
-Cre13.g576100	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre13.g565301						
-Cre13.g603800						
-Cre13.g580350			Mitochondrion			
-Cre13.g584551						
-Cre13.g567075						
-Cre13.g584850			Chloroplast	GO:0005515	protein binding	
-Cre13.g588959			Mitochondrion			
-Cre13.g580976			Mitochondrion			
-Cre13.g587250						
-Cre13.g570700	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis	Secretory pathway	GO:0008061;GO:0005975;GO:0004553	"chitin binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI4
-Cre13.g577850	GMM:29.6.3.1;GMM:1.1.1.3	protein.folding.immunophilins (IMM).FKBPs;PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Lumen			FKB20
-Cre13.g576760			Chloroplast			
-Cre13.g580100						
-Cre13.g568700	GMM:27.1	RNA.processing				
-Cre13.g578201			Chloroplast			
-Cre13.g590850						
-Cre13.g564950	GMM:29.2.4;GMM:29.2.2	protein.synthesis.elongation;protein.synthesis.ribosome biogenesis		GO:0005525	GTP binding	EFG13
-Cre13.g574750						
-Cre13.g569651						
-Cre13.g606750	GMM:28.1	DNA.synthesis/chromatin structure		GO:0046872;GO:0016787;GO:0005524	metal ion binding;hydrolase activity;ATP binding	
-Cre13.g576150			Chloroplast	GO:0006520	cellular amino acid metabolic process	
-Cre13.g590450						
-Cre13.g578950			Mitochondrion			
-Cre13.g563800	GMM:31.1.1.3.11;GMM:31.1	cell.organisation.cytoskeleton.Myosin.Class XI;cell.organisation		GO:0016459;GO:0005524;GO:0005515;GO:0003774	myosin complex;ATP binding;protein binding;motor activity	MYO3
-Cre13.g571200	GMM:30.11;GMM:29.4;GMM:27.3.34;GMM:17.5.2;GMM:17.4.2	signalling.light;protein.postranslational modification;RNA.regulation of transcription.orphan family;hormone metabolism.ethylene.signal transduction;hormone metabolism.cytokinin.signal transduction		GO:0007165;GO:0000160;GO:0000155	signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	HKR5
-Cre13.g581600	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion			ASA4
-Cre13.g575750						
-Cre13.g569000	GMM:26.17	misc.dynamin				
-Cre13.g574500	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast	GO:0008199;GO:0006879;GO:0006826	ferric iron binding;cellular iron ion homeostasis;iron ion transport	FER2
-Cre13.g586850			Chloroplast			
-Cre13.g604300						
-Cre13.g568467						
-Cre13.g588386						
-Cre13.g579850	GMM:21.1	redox.thioredoxin				
-Cre13.g577700	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre13.g570100	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA20
-Cre13.g565484			Chloroplast			
-Cre13.g577150			Secretory pathway			
-Cre13.g579326						
-Cre13.g589650						
-Cre13.g570851			Secretory pathway			
-Cre13.g604250						
-Cre13.g588453						
-Cre13.g582476			Chloroplast	GO:0016787	hydrolase activity	
-Cre13.g604450			Mitochondrion			
-Cre13.g571950	GMM:16.2.1.6	secondary metabolism.phenylpropanoids.lignin biosynthesis.CCoAOMT	Chloroplast	GO:0008171	O-methyltransferase activity	
-Cre13.g603000	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE19
-Cre13.g605386			Mitochondrion	GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
-Cre13.g573600			Mitochondrion			
-Cre13.g607300	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	FAP352
-Cre13.g606250	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG41
-Cre13.g563326			Secretory pathway			
-Cre13.g568300			Chloroplast			
-Cre13.g585400	GMM:30.1;GMM:3.1	signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family		GO:0016020;GO:0004970	membrane;ionotropic glutamate receptor activity	
-Cre13.g569326			Chloroplast			
-Cre13.g590200			Mitochondrion			
-Cre13.g604950			Mitochondrion			
-Cre13.g566750						
-Cre13.g575450						
-Cre13.g581300			Mitochondrion			
-Cre13.g566350	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre13.g583500						
-Cre13.g607650	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005509	calcium ion binding	
-Cre13.g570200						
-Cre13.g578501	GMM:33.99	development.unspecified		GO:0006355	"regulation of transcription, DNA-templated"	
-Cre13.g565675						
-Cre13.g577100	GMM:11.1.12	lipid metabolism.FA synthesis and FA elongation.ACP protein	Chloroplast			ACP2
-Cre13.g584619						
-Cre13.g572100						
-Cre13.g603050						
-Cre13.g563100						
-Cre13.g587450	GMM:25.4	C1-metabolism.5-formyltetrahydrofolate cyclo-ligase	Chloroplast			FCL2
-Cre13.g588800			Secretory pathway			
-Cre13.g591050	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre13.g605550				GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
-Cre13.g574900	GMM:3.6	minor CHO metabolism.callose		GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	FAP228
-Cre13.g563050						
-Cre13.g602600			Secretory pathway			
-Cre13.g566500						
-Cre13.g592050	GMM:23.2	nucleotide metabolism.degradation	Secretory pathway	GO:0016787	hydrolase activity	DAL1
-Cre13.g565290						CSB52
-Cre13.g586300	GMM:31.3.1;GMM:29.6.3.1;GMM:29.6	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs;protein.folding		GO:0006457	protein folding	FKBP12
-Cre13.g588310						MRPL47
-Cre13.g584200	GMM:34.99;GMM:21.4	transport.misc;redox.glutaredoxins		GO:0055085;GO:0045454;GO:0016021;GO:0015035;GO:0009055	transmembrane transport;cell redox homeostasis;integral component of membrane;protein disulfide oxidoreductase activity;electron carrier activity	
-Cre13.g575950	GMM:33.99;GMM:28.1.1	development.unspecified;DNA.synthesis/chromatin structure.retrotransposon/transposase		GO:0016568;GO:0006355;GO:0006351;GO:0005634;GO:0005515	"chromatin modification;regulation of transcription, DNA-templated;transcription, DNA-templated;nucleus;protein binding"	HIR1
-Cre13.g595114						
-Cre13.g570751						
-Cre13.g569100	GMM:26.17	misc.dynamin				
-Cre13.g603850						
-Cre13.g580050	GMM:29.5.9;GMM:29.5.11.20;GMM:27.3.99	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom;RNA.regulation of transcription.unclassified	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre13.g576600	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre13.g568750				GO:0005515	protein binding	
-Cre13.g581550				GO:0008193;GO:0006400;GO:0000287	tRNA guanylyltransferase activity;tRNA modification;magnesium ion binding	THG1
-Cre13.g564766			Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	
-Cre13.g568100	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
-Cre13.g562850	GMM:29.3;GMM:1.1.1	protein.targeting;PS.lightreaction.photosystem II	Chloroplast.Stroma.Thylakoid.Membrane	GO:0015979;GO:0010207	photosynthesis;photosystem II assembly	THF1
-Cre13.g562650						
-Cre13.g584400	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP189
-Cre13.g607100	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG6
-Cre13.g590010						
-Cre13.g588950			Chloroplast			
-Cre13.g603600	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre13.g606600	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CGK1
-Cre13.g577800	GMM:30.5;GMM:3.5;GMM:29.2.2.1	signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.export from nucleus	Mitochondrion	GO:0005525	GTP binding	
-Cre13.g578550			Mitochondrion			
-Cre13.g584901			Secretory pathway	GO:0042384;GO:0036038;GO:0010826	cilium assembly;TCTN-B9D complex;negative regulation of centrosome duplication	
-Cre13.g580750	GMM:29.5.11.4.2;GMM:17.1.2	protein.degradation.ubiquitin.E3.RING;hormone metabolism.abscisic acid.signal transduction	Mitochondrion	GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre13.g583824						
-Cre13.g568025			Mitochondrion			
-Cre13.g592400	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Secretory pathway			LCI21
-Cre13.g582112			Mitochondrion			
-Cre13.g563600	GMM:29.5.11.1;GMM:29.5.11;GMM:29.2.1.2.2.40;GMM:29.2.1.2.1.27;GMM:29.1	protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27;protein.aa activation		GO:0005515	protein binding	UBQ7
-Cre13.g564000	GMM:26.13	misc.acid and other phosphatases	Mitochondrion			PGM3
-Cre13.g590550	GMM:33.99;GMM:20.2.3;GMM:18.4.8	development.unspecified;stress.abiotic.drought/salt;Co-factor and vitamine metabolism.pantothenate.pantetheine-phosphate adenylyltransferase  (PPAT)				COA5
-Cre13.g585050			Secretory pathway			
-Cre13.g579000						
-Cre13.g563850	GMM:34.99	transport.misc				PRORP
-Cre13.g572850				GO:0008270;GO:0006508;GO:0004181	zinc ion binding;proteolysis;metallocarboxypeptidase activity	FBB17
-Cre13.g579350			Mitochondrion			
-Cre13.g574041	GMM:34.18	transport.unspecified anions	Secretory pathway			
-Cre13.g590500	GMM:11.2.4	lipid metabolism.FA desaturation.omega 6 desaturase	Chloroplast	GO:0006629	lipid metabolic process	FAD6
-Cre13.g575300	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre13.g601519	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre13.g567150	GMM:33.99	development.unspecified				
-Cre13.g572550						
-Cre13.g578050						
-Cre13.g567050			Mitochondrion	GO:0032775;GO:0009007;GO:0003677	DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding	
-Cre13.g587376						
-Cre13.g602350	GMM:13.1.6.5.4	amino acid metabolism.synthesis.aromatic aa.tryptophan.indole-3-glycerol phosphate synthase	Chloroplast	GO:0004425	indole-3-glycerol-phosphate synthase activity	
-Cre13.g586750						
-Cre13.g606900						
-Cre13.g567626			Chloroplast			
-Cre13.g581350			Chloroplast			
-Cre13.g573800	GMM:23.3.1.3	nucleotide metabolism.salvage.phosphoribosyltransferases.uracil phosphoribosyltransferase (UPP)	Secretory pathway			
-Cre13.g607250			Mitochondrion			
-Cre13.g587150	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases		GO:0016747;GO:0006355	"transferase activity, transferring acyl groups other than amino-acyl groups;regulation of transcription, DNA-templated"	HAT5
-Cre13.g575500			Mitochondrion			
-Cre13.g585350	GMM:21.1	redox.thioredoxin		GO:0055114;GO:0016491;GO:0016209	oxidation-reduction process;oxidoreductase activity;antioxidant activity	
-Cre13.g577201			Chloroplast			
-Cre13.g587500	GMM:16.1.4.2	secondary metabolism.isoprenoids.carotenoids.phytoene dehydrogenase	Chloroplast			AOF8
-Cre13.g572000	GMM:19.3;GMM:19	tetrapyrrole synthesis.GSA;tetrapyrrole synthesis	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	SUMT2
-Cre13.g607700						
-Cre13.g579901	GMM:29.5.5	protein.degradation.serine protease				DEG6
-Cre13.g581000						
-Cre13.g575550			Secretory pathway			
-Cre13.g574150			Mitochondrion			
-Cre13.g580450				GO:0005515	protein binding	
-Cre13.g582100						
-Cre13.g569300			Chloroplast	GO:0055114	oxidation-reduction process	
-Cre13.g562000						
-Cre13.g572900	GMM:29.5	protein.degradation	Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	THO3
-Cre13.g578051						
-Cre13.g588405						
-Cre13.g606000	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0005525	GTP binding	EFG7
-Cre13.g585000			Secretory pathway			
-Cre13.g570150	GMM:28.99;GMM:27.3.25	DNA.unspecified;RNA.regulation of transcription.MYB domain transcription factor family		GO:0017053;GO:0007049;GO:0006351	"transcriptional repressor complex;cell cycle;transcription, DNA-templated"	
-Cre13.g562800						FAP337
-Cre13.g566250			Mitochondrion			
-Cre13.g591300			Secretory pathway			
-Cre13.g583050	GMM:31.5.1;GMM:26.3	"cell.cell death.plants;misc.gluco-, galacto- and mannosidases"	Chloroplast	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	
-Cre13.g570050	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB20
-Cre13.g574950			Mitochondrion			
-Cre13.g591000			Secretory pathway			
-Cre13.g588250						
-Cre13.g565083						
-Cre13.g564750			Secretory pathway			PDE15
-Cre13.g606200				GO:0008168;GO:0003723	methyltransferase activity;RNA binding	
-Cre13.g566300	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases	Chloroplast	GO:0031167;GO:0008168	rRNA methylation;methyltransferase activity	
-Cre13.g570900	GMM:29.4	protein.postranslational modification		GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress"	MSRA1
-Cre13.g605404						
-Cre13.g608000			Mitochondrion			CPLD52
-Cre13.g581850	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion			
-Cre13.g589400			Secretory pathway			PRL6
-Cre13.g577650	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast			
-Cre13.g605200	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP29
-Cre13.g563006			Chloroplast			
-Cre13.g592000	GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre13.g564426			Secretory pathway			
-Cre13.g568650	GMM:29.2.1.2.1.53	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S3A		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS3A
-Cre13.g589700	GMM:31.4;GMM:27.3.71	cell.vesicle transport;RNA.regulation of transcription.SNF7		GO:0007034	vacuolar transport	VPS20
-Cre13.g573250	GMM:26.23	misc.rhodanese	Chloroplast			
-Cre13.g568900	GMM:29.2.1.2.2.17	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L17		GO:0015934;GO:0006412;GO:0005840;GO:0003735	large ribosomal subunit;translation;ribosome;structural constituent of ribosome	RPL17
-Cre13.g579017			Mitochondrion	GO:0051260	protein homooligomerization	
-Cre13.g584050	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB54
-Cre13.g567100	GMM:21.2.1.5	"redox.ascorbate and glutathione.ascorbate.L-galactono-1,4-lactone dehydrogenase"	Mitochondrion	GO:0055114;GO:0050660;GO:0016491;GO:0016020;GO:0003885	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;membrane;D-arabinono-1,4-lactone oxidase activity"	ALO1
-Cre13.g573900	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	NSS3
-Cre13.g606850	GMM:33.99;GMM:30.5;GMM:3.5	development.unspecified;signalling.G-proteins;minor CHO metabolism.others				
-Cre13.g605000	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre13.g602450			Chloroplast			
-Cre13.g579150				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	
-Cre13.g567327						
-Cre13.g604550						
-Cre13.g576900			Secretory pathway			
-Cre13.g582671						
-Cre13.g603750			Chloroplast	GO:0016020;GO:0015269;GO:0006813	membrane;calcium-activated potassium channel activity;potassium ion transport	KCA1
-Cre13.g569750			Mitochondrion			
-Cre13.g572050	GMM:33.30.1;GMM:33.3.1;GMM:31.3;GMM:3.4;GMM:29.4.1	development.multitarget.target of rapamycin;development.multitarget.target of rapamycin;cell.cycle;minor CHO metabolism.myo-inositol;protein.postranslational modification.kinase	Secretory pathway	GO:0016773;GO:0005515	"phosphotransferase activity, alcohol group as acceptor;protein binding"	SMG1
-Cre13.g568200			Secretory pathway			AXL1
-Cre13.g564151			Mitochondrion			
-Cre13.g566200	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family		GO:0046872	metal ion binding	CGL112
-Cre13.g569050						
-Cre13.g572800			Chloroplast			TILS
-Cre13.g604200			Mitochondrion			
-Cre13.g564050			Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	
-Cre13.g575850	GMM:30.11	signalling.light				
-Cre13.g575366						
-Cre13.g590600	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Mitochondrion	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE32
-Cre13.g586350	GMM:28.2	DNA.repair	Mitochondrion			
-Cre13.g580800			Mitochondrion			
-Cre13.g590150						
-Cre13.g606350	GMM:33.99	development.unspecified	Mitochondrion			
-Cre13.g585750			Mitochondrion	GO:0055114;GO:0051537;GO:0016491	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"	
-Cre13.g579250	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
-Cre13.g582600			Mitochondrion			
-Cre13.g580000			Secretory pathway			
-Cre13.g591851						
-Cre13.g570250	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification				
-Cre13.g573950	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZRT3
-Cre13.g572272						
-Cre13.g564450			Chloroplast			ELG43
-Cre13.g577026						
-Cre13.g580900	GMM:29.4;GMM:29.2.2.3.99	protein.postranslational modification;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc		GO:0004674	protein serine/threonine kinase activity	
-Cre13.g602850	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003676	nucleic acid binding	SRS8
-Cre13.g566626						
-Cre13.g565517			Mitochondrion			
-Cre13.g572750	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0055114;GO:0048038;GO:0009308;GO:0008131;GO:0005507	oxidation-reduction process;quinone binding;amine metabolic process;primary amine oxidase activity;copper ion binding	AMX3
-Cre13.g571540						
-Cre13.g607050	GMM:29.8;GMM:26.23;GMM:13.2.5.3	protein.assembly and cofactor ligation;misc.rhodanese;amino acid metabolism.degradation.serine-glycine-cysteine group.cysteine	Chloroplast			TSU1
-Cre13.g566925						
-Cre13.g567426						
-Cre13.g591350				GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT27
-Cre13.g579050	GMM:31.2	cell.division	Chloroplast			APC1:3frag
-Cre13.g588736			Secretory pathway			
-Cre13.g562501			Mitochondrion			
-Cre13.g565270						
-Cre13.g586550	GMM:21.2	redox.ascorbate and glutathione	Secretory pathway			CYB4
-Cre13.g578100				GO:0005643	nuclear pore	
-Cre13.g575200	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	
-Cre13.g577352			Secretory pathway			
-Cre13.g602500			Chloroplast			
-Cre13.g589350	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				FBB6
-Cre13.g569900						
-Cre13.g583787			Secretory pathway			
-Cre13.g603700	GMM:31.6.1.4.2.1;GMM:31.1.1.1.1;GMM:31.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.organisation.cytoskeleton.actin.Actin;cell.organisation				DII4
-Cre13.g606974						
-Cre13.g576000			Secretory pathway			
-Cre13.g563400				GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
-Cre13.g585500			Secretory pathway			
-Cre13.g562031						
-Cre13.g562300	GMM:28.1.3	DNA.synthesis/chromatin structure.histone		GO:0006334;GO:0005634;GO:0003677;GO:0000786	nucleosome assembly;nucleus;DNA binding;nucleosome	HON2
-Cre13.g605650	GMM:16.4.2.1	secondary metabolism.N misc.betaine.betaine-aldehyde dehydrogenase		GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	ALD7
-Cre13.g607800			Mitochondrion			
-Cre13.g571850	GMM:31.2;GMM:29.5.11.4.4	cell.division;protein.degradation.ubiquitin.E3.APC				APC10
-Cre13.g587950			Secretory pathway			
-Cre13.g571560			Chloroplast			
-Cre13.g604050			Secretory pathway			
-Cre13.g576550	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre13.g591951			Mitochondrion			
-Cre13.g562475	GMM:29.3.4.1	protein.targeting.secretory pathway.ER		GO:0046923;GO:0016021;GO:0006621	ER retention sequence binding;integral component of membrane;protein retention in ER lumen	
-Cre13.g564812						
-Cre13.g591100	GMM:30.99;GMM:27.3.67	signalling.unspecified;RNA.regulation of transcription.putative transcription regulator		GO:0055085;GO:0016020	transmembrane transport;membrane	MSC5
-Cre13.g578400	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion			
-Cre13.g573400			Chloroplast			
-Cre13.g588201						OPR58
-Cre13.g585800	GMM:29.5.1	protein.degradation.subtilases	Chloroplast	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB2
-Cre13.g603400	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
-Cre13.g578600						
-Cre13.g584100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre13.g568672						
-Cre13.g565400						
-Cre13.g569450			Secretory pathway			
-Cre13.g567950	GMM:2.1.2.1	major CHO metabolism.synthesis.starch.AGPase	Chloroplast	GO:0016779;GO:0009058	nucleotidyltransferase activity;biosynthetic process	STA1
-Cre13.g585301	GMM:11.10.1	lipid metabolism.glycolipid synthesis.MGDG synthase	Secretory pathway	GO:0016758	"transferase activity, transferring hexosyl groups"	CPLD55
-Cre13.g570650						
-Cre13.g604501				GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre13.g576433						
-Cre13.g585950			Chloroplast			
-Cre13.g568400	GMM:29.5.7	protein.degradation.metalloprotease		GO:0016887;GO:0006508;GO:0005524;GO:0004222	ATPase activity;proteolysis;ATP binding;metalloendopeptidase activity	FTSH4
-Cre13.g578650	GMM:30.11	signalling.light	Chloroplast			CPLD10
-Cre13.g584650			Chloroplast			
-Cre13.g567250			Mitochondrion			
-Cre13.g589750						
-Cre13.g565200	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre13.g563650						
-Cre13.g564900	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP3
-Cre13.g574375			Secretory pathway			
-Cre13.g591900			Mitochondrion			PLD1
-Cre13.g592300	GMM:12.4	N-metabolism.misc		GO:0055114;GO:0050660;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing	
-Cre13.g582650	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPK1
-Cre13.g605600				GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	OAS1
-Cre13.g577450	GMM:11.5.3	lipid metabolism.glycerol metabolism.FAD-dependent glycerol-3-phosphate dehydrogenase	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre13.g591400	GMM:18.4.5;GMM:18.4.1	Co-factor and vitamine metabolism.pantothenate.pantothenate kinase (PANK);Co-factor and vitamine metabolism.pantothenate.branched-chain amino acid aminotransferase		GO:0015937;GO:0005524;GO:0004594	coenzyme A biosynthetic process;ATP binding;pantothenate kinase activity	COA1
-Cre13.g573850						
-Cre13.g578150	GMM:25	C1-metabolism				RRA1
-Cre13.g586450			Chloroplast	GO:0008080	N-acetyltransferase activity	
-Cre13.g590626						
-Cre13.g606300			Secretory pathway	GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
-Cre13.g566900	GMM:31.3	cell.cycle		GO:0006281;GO:0000724	DNA repair;double-strand break repair via homologous recombination	
-Cre13.g577400	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG16
-Cre13.g563350						
-Cre13.g586400						
-Cre13.g571600				GO:0006888;GO:0005801;GO:0005622	ER to Golgi vesicle-mediated transport;cis-Golgi network;intracellular	TRS20
-Cre13.g582150						
-Cre13.g564100	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK2
-Cre13.g591200	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB22
-Cre13.g566150	GMM:27.1	RNA.processing		GO:0008173;GO:0008168;GO:0006396;GO:0003723	RNA methyltransferase activity;methyltransferase activity;RNA processing;RNA binding	RMR1
-Cre13.g583898						
-Cre13.g571100						
-Cre13.g605050						
-Cre13.g568176						
-Cre13.g606700			Mitochondrion			
-Cre13.g562526			Mitochondrion			
-Cre13.g571150	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOP1
-Cre13.g591073			Mitochondrion	GO:0005515	protein binding	
-Cre13.g588700						
-Cre13.g579650	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre13.g607350	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Chloroplast	GO:0008270;GO:0004089	zinc ion binding;carbonate dehydratase activity	CAH7
-Cre13.g587100			Chloroplast	GO:0055114;GO:0050897;GO:0016636;GO:0010024	"oxidation-reduction process;cobalt ion binding;oxidoreductase activity, acting on the CH-CH group of donors, iron-sulfur protein as acceptor;phytochromobilin biosynthetic process"	
-Cre13.g566650	GMM:11.1.9	lipid metabolism.FA synthesis and FA elongation.long chain fatty acid CoA ligase		GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre13.g603500			Chloroplast			
-Cre13.g579450			Secretory pathway			CST1
-Cre13.g597676						
-Cre13.g583217			Chloroplast	GO:0008080	N-acetyltransferase activity	
-Cre13.g602750	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"				
-Cre13.g587650						
-Cre13.g571876						
-Cre13.g573550	GMM:31.1	cell.organisation				ANK26
-Cre13.g563150			Chloroplast			CGLD8
-Cre13.g565650	GMM:16.1.5;GMM:16.1.2.8;GMM:16.1.1.10	secondary metabolism.isoprenoids.terpenoids;secondary metabolism.isoprenoids.mevalonate pathway.geranyl diphosphate synthase;secondary metabolism.isoprenoids.non-mevalonate pathway.geranylgeranyl pyrophosphate synthase	Chloroplast	GO:0016765;GO:0015979;GO:0008299	"transferase activity, transferring alkyl or aryl (other than methyl) groups;photosynthesis;isoprenoid biosynthetic process"	
-Cre13.g565450	GMM:23.1.2.8	nucleotide metabolism.synthesis.purine.SAICAR lyase	Chloroplast	GO:0006188;GO:0004018	"IMP biosynthetic process;N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity"	PURB
-Cre13.g565550	GMM:27.2	RNA.transcription				RPB11
-Cre13.g586500	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN17-2
-Cre13.g573500						FAP95
-Cre13.g605300			Chloroplast			
-Cre13.g569500	GMM:13.2.5.3	amino acid metabolism.degradation.serine-glycine-cysteine group.cysteine		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre13.g568550	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre13.g579976			Mitochondrion			
-Cre13.g589426						
-Cre13.g574050			Secretory pathway			
-Cre13.g583200			Mitochondrion			
-Cre13.g604150	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
-Cre13.g562250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP92
-Cre13.g577550	GMM:27.3.99	RNA.regulation of transcription.unclassified				DDB2
-Cre13.g579076						
-Cre13.g605500				GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
-Cre13.g569400	GMM:13.2.5.3	amino acid metabolism.degradation.serine-glycine-cysteine group.cysteine		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	TAUD1
-Cre13.g568000			Secretory pathway			
-Cre13.g567650	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Secretory pathway	GO:0008236;GO:0006508	serine-type peptidase activity;proteolysis	
-Cre13.g583861						
-Cre13.g575400			Secretory pathway			
-Cre13.g582800				GO:0046872;GO:0008716;GO:0005737;GO:0005524	metal ion binding;D-alanine-D-alanine ligase activity;cytoplasm;ATP binding	
-Cre13.g565150						
-Cre13.g574300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre13.g585450			Chloroplast			
-Cre13.g575900						CGL117
-Cre13.g567363	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase	Mitochondrion			FAP220
-Cre13.g564800	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383	intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity	CYG67
-Cre13.g588026						
-Cre13.g603650						
-Cre13.g587800						
-Cre13.g607850	GMM:27.1.1	RNA.processing.splicing	Mitochondrion	GO:0003676	nucleic acid binding	
-Cre13.g572250						
-Cre13.g607000	GMM:29.5.7	protein.degradation.metalloprotease		GO:0016787;GO:0008152	hydrolase activity;metabolic process	xhp1
-Cre13.g584350			Secretory pathway			
-Cre13.g592500	GMM:18.3	Co-factor and vitamine metabolism.riboflavin		GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre13.g577050	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Mitochondrion			ELG7
-Cre13.g573450	GMM:27.1.3.2;GMM:27.1	RNA.processing.3' end processing.CPSF160;RNA.processing	Secretory pathway	GO:0005634;GO:0003676	nucleus;nucleic acid binding	
-Cre13.g604905			Mitochondrion			
-Cre13.g573351	GMM:29.2.1.2.1.16	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S16		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	
-Cre13.g583450			Mitochondrion			EZY17
-Cre13.g574000	GMM:34.18	transport.unspecified anions		GO:0055085;GO:0016020;GO:0006821;GO:0005247	transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity	CLV1
-Cre13.g576850			Secretory pathway			
-Cre13.g587850			Mitochondrion;Chloroplast			
-Cre13.g578451	GMM:29.1.4;GMM:29.1	protein.aa activation.leucine-tRNA ligase;protein.aa activation	Chloroplast	GO:0006429;GO:0006418;GO:0005524;GO:0004823;GO:0004812;GO:0002161;GO:0000166	leucyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;ATP binding;leucine-tRNA ligase activity;aminoacyl-tRNA ligase activity;aminoacyl-tRNA editing activity;nucleotide binding	TSL1
-Cre13.g571750			Secretory pathway	GO:0016020	membrane	
-Cre13.g585250	GMM:34.15	transport.potassium		GO:0051260	protein homooligomerization	
-Cre13.g575776			Mitochondrion			
-Cre13.g603350	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG56
-Cre13.g567200	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre13.g563250			Secretory pathway			
-Cre13.g582734			Chloroplast			
-Cre13.g574700						PEX13
-Cre13.g576700						
-Cre13.g578676						
-Cre13.g607900			Mitochondrion			CPLD68
-Cre13.g572350	GMM:29.6.2.1	protein.folding.chaperones and co-chaperones.small HSPs	Chloroplast			HSP22G
-Cre13.g586600			Secretory pathway	GO:0016021	integral component of membrane	
-Cre13.g575150			Mitochondrion			
-Cre13.g580500				GO:0016020;GO:0006897	membrane;endocytosis	
-Cre13.g573700						
-Cre13.g586050	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	protein binding	
-Cre13.g573100			Secretory pathway			MAM3C
-Cre13.g585100				GO:0006886	intracellular protein transport	
-Cre13.g589450	GMM:31.6.1.1;GMM:20.1.7.6.1	cell.motility.eukaryotes.basal bodies;stress.biotic.PR-proteins.PR6 (proteinase inhibitors).trypsin inhibitor				
-Cre13.g606101	GMM:33.99	development.unspecified	Secretory pathway			
-Cre13.g570550	GMM:23.2	nucleotide metabolism.degradation	Mitochondrion	GO:0009972;GO:0008270;GO:0004126	cytidine deamination;zinc ion binding;cytidine deaminase activity	CDD1
-Cre13.g604750	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	CGL94
-Cre13.g576650	GMM:13.1.7.2	amino acid metabolism.synthesis.histidine.phosphoribosyl-ATP pyrophosphatase		GO:0004635;GO:0000105	phosphoribosyl-AMP cyclohydrolase activity;histidine biosynthetic process	HIS4
-Cre13.g603550			Chloroplast			
-Cre13.g567400	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE16
-Cre13.g566100						
-Cre13.g584700			Mitochondrion			
-Cre13.g569600			Chloroplast			
-Cre13.g585850	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases		GO:0016758	"transferase activity, transferring hexosyl groups"	
-Cre13.g590650						
-Cre13.g577300	GMM:24	biodegradation of xenobiotics	Mitochondrion			GOX13
-Cre13.g592200	GMM:12.2.1.2;GMM:12.2.1	N-metabolism.ammonia metabolism.glutamate synthase.NADH dependent;N-metabolism.ammonia metabolism.glutamate synthase	Chloroplast	GO:0055114;GO:0016638;GO:0016491;GO:0015930;GO:0008152;GO:0006807;GO:0006537	"oxidation-reduction process;oxidoreductase activity, acting on the CH-NH2 group of donors;oxidoreductase activity;glutamate synthase activity;metabolic process;nitrogen compound metabolic process;glutamate biosynthetic process"	GSN1
-Cre13.g576250						
-Cre13.g579598	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase				SSS3
-Cre13.g561800			Mitochondrion	GO:0005515	protein binding	
-Cre13.g588650			Secretory pathway			
-Cre13.g581650	GMM:29.2.1.1.1.2.12	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L12	Chloroplast	GO:0006412;GO:0003735	translation;structural constituent of ribosome	PRPL7
-Cre13.g563450						
-Cre13.g585651			Mitochondrion	GO:0006508;GO:0004176	proteolysis;ATP-dependent peptidase activity	
-Cre13.g571927			Secretory pathway			
-Cre13.g591250			Secretory pathway			EZY20
-Cre13.g587050	GMM:29.2.5	protein.synthesis.release		GO:0016149;GO:0006415;GO:0005737	"translation release factor activity, codon specific;translational termination;cytoplasm"	ERF1
-Cre13.g580200						
-Cre13.g562200						
-Cre13.g571580						CSB53
-Cre13.g563926						
-Cre13.g587750				GO:0017119;GO:0006891	Golgi transport complex;intra-Golgi vesicle-mediated transport	COG6
-Cre13.g569200	GMM:29.3.4.99;GMM:29.3	protein.targeting.secretory pathway.unspecified;protein.targeting		GO:0048500;GO:0008312;GO:0006614;GO:0005525	signal recognition particle;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane;GTP binding	SRP54
-Cre13.g567500						
-Cre13.g591450				GO:0016021;GO:0006813;GO:0005242	integral component of membrane;potassium ion transport;inward rectifier potassium channel activity	
-Cre13.g588000			Chloroplast			
-Cre13.g602400	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN8-1
-Cre13.g607400			Chloroplast			
-Cre13.g579100	GMM:29.5.11.4.4	protein.degradation.ubiquitin.E3.APC		GO:0005680	anaphase-promoting complex	APC1
-Cre13.g568150			Chloroplast	GO:0008168	methyltransferase activity	
-Cre13.g605100	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0005515;GO:0004114	"signal transduction;protein binding;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE20
-Cre13.g564200						
-Cre13.g575701						
-Cre13.g573000	GMM:31.2;GMM:27.3.69;GMM:27.3.18	cell.division;RNA.regulation of transcription.SET-domain transcriptional regulator family;RNA.regulation of transcription.E2F/DP transcription factor family	Chloroplast	GO:0005515	protein binding	E2FR1
-Cre13.g565250				GO:0006950	response to stress	
-Cre13.g606550			Mitochondrion			
-Cre13.g574350	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre13.g562750			Chloroplast			CGLD38
-Cre13.g606950			Chloroplast			
-Cre13.g582900						
-Cre13.g580850	GMM:29.2.1.1.1.2.22	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L22	Chloroplast	GO:0015934;GO:0006412;GO:0005840;GO:0003735	large ribosomal subunit;translation;ribosome;structural constituent of ribosome	PRPL22
-Cre13.g604650	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation				
-Cre13.g562900			Chloroplast			
-Cre13.g565800	GMM:3.5;GMM:10.5.5	minor CHO metabolism.others;cell wall.cell wall proteins.RGP		GO:0030244;GO:0016866	cellulose biosynthetic process;intramolecular transferase activity	UPT1
-Cre13.g570000	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO20
-Cre13.g563476						
-Cre13.g568450	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN7-3
-Cre13.g574551			Mitochondrion			
-Cre13.g571000						
-Cre13.g605800						
-Cre13.g590400				GO:0005515	protein binding	
-Cre13.g603225			Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre13.g574850	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM6
-Cre13.g589200	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre13.g583250				GO:0005515	protein binding	
-Cre13.g578200	GMM:29.4	protein.postranslational modification				
-Cre13.g583287						IQA3
-Cre13.g579400	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM8
-Cre13.g568600	GMM:26.13	misc.acid and other phosphatases		GO:0003993	acid phosphatase activity	
-Cre13.g567850	GMM:29.2.2.3.1;GMM:27.4	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;RNA.RNA binding		GO:0042254;GO:0031429;GO:0001522	ribosome biogenesis;box H/ACA snoRNP complex;pseudouridine synthesis	
-Cre13.g562400	GMM:27.3.1;GMM:17.1.2	RNA.regulation of transcription.ABI3/VP1-related B3-domain-containing transcription factor family;hormone metabolism.abscisic acid.signal transduction	Mitochondrion	GO:0003677	DNA binding	ABI3
-Cre13.g586200						
-Cre13.g605900			Mitochondrion			
-Cre13.g604000						
-Cre13.g607200	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG42
-Cre13.g584500			Mitochondrion			
-Cre13.g587300						
-Cre13.g572401						
-Cre13.g589100						
-Cre13.g584800						
-Cre13.g572700	GMM:31.6.1.3.2.1	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A		GO:0030117;GO:0016192;GO:0006886;GO:0005198	membrane coat;vesicle-mediated transport;intracellular protein transport;structural molecule activity	IFT144
-Cre13.g571400						
-Cre13.g579200	GMM:29.2.2	protein.synthesis.ribosome biogenesis		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	S6K1
-Cre13.g566600			Secretory pathway			
-Cre13.g590700			Chloroplast			
-Cre13.g603300			Chloroplast			
-Cre13.g567901			Secretory pathway	GO:0016021	integral component of membrane	
-Cre13.g581700			Mitochondrion	GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
-Cre13.g568350						
-Cre13.g562450	GMM:29.3.1	protein.targeting.nucleus	Secretory pathway	GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	IPB3
-Cre13.g565311						
-Cre13.g583400			Chloroplast			OPR57
-Cre13.g602650	GMM:26.23	misc.rhodanese	Chloroplast			
-Cre13.g575101						
-Cre13.g604600						
-Cre13.g573650	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	SRS5
-Cre13.g588850	GMM:29.5.11	protein.degradation.ubiquitin	Secretory pathway			
-Cre13.g564500	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	FAP377
-Cre13.g563200						HAD7
-Cre13.g578700			Chloroplast			
-Cre13.g576950			Secretory pathway			
-Cre13.g564250	GMM:29.2.3	protein.synthesis.initiation		GO:0005515	protein binding	EIF3A
-Cre13.g572312						
-Cre13.g586100						
-Cre13.g579734	GMM:26.4;GMM:26.3	"misc.beta 1,3 glucan hydrolases;misc.gluco-, galacto- and mannosidases"	Secretory pathway			GLC1
-Cre13.g605700			Chloroplast			
-Cre13.g604700	GMM:11.3	lipid metabolism.phospholipid synthesis	Chloroplast	GO:0016780;GO:0016020;GO:0008654	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	
-Cre13.g585150	GMM:29.2.3;GMM:29.2.2.3.99	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc		GO:0043022;GO:0042256	ribosome binding;mature ribosome assembly	EIF6
-Cre13.g575175						
-Cre13.g582850			Chloroplast			
-Cre13.g588600	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN1-1
-Cre13.g582755			Mitochondrion			
-Cre13.g606450	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB55
-Cre13.g603250			Chloroplast			OPR61
-Cre13.g585600			Chloroplast			
-Cre13.g572375			Mitochondrion			
-Cre13.g605150	GMM:21.6	redox.dismutases and catalases	Mitochondrion	GO:0055114;GO:0046872;GO:0006801;GO:0004784	oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity	MSD2
-Cre13.g589500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK9
-Cre13.g587000	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0005634	nucleus	
-Cre13.g590950						
-Cre13.g566450	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	ROC104
-Cre13.g573050	GMM:27.1	RNA.processing		GO:0032040;GO:0006364	small-subunit processome;rRNA processing	
-Cre13.g580550	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	hlm20
-Cre13.g580950			Secretory pathway			
-Cre13.g588626			Mitochondrion			
-Cre13.g578750	GMM:23.2.1.3;GMM:1.1.1.3	nucleotide metabolism.degradation.pyrimidine.dihydrouracil dehydrogenase;PS.lightreaction.photosystem II.biogenesis	Chloroplast	GO:0055114;GO:0016627;GO:0005737	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;cytoplasm"	TBA1
-Cre13.g583650			Mitochondrion			
-Cre13.g570600	GMM:34.12	transport.metal	Secretory pathway	GO:0035434;GO:0016021;GO:0005375	copper ion transmembrane transport;integral component of membrane;copper ion transmembrane transporter activity	CTR1
-Cre13.g579950						
-Cre13.g565900				GO:0035267;GO:0032777;GO:0006357	NuA4 histone acetyltransferase complex;Piccolo NuA4 histone acetyltransferase complex;regulation of transcription from RNA polymerase II promoter	
-Cre13.g586950				GO:0008080	N-acetyltransferase activity	
-Cre13.g589050			Chloroplast			
-Cre13.g591700	GMM:31.6.1.11	cell.motility.eukaryotes.other	Chloroplast	GO:0006464	cellular protein modification process	TTL15
-Cre13.g570300	GMM:29.5.11.3;GMM:29.5.11	protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin				UBC24
-Cre13.g565600			Chloroplast	GO:0008270;GO:0006508;GO:0004181	zinc ion binding;proteolysis;metallocarboxypeptidase activity	
-Cre13.g575333	GMM:31.2	cell.division	Secretory pathway			
-Cre13.g592250						
-Cre13.g576300			Secretory pathway	GO:0043085;GO:0016485;GO:0016021	positive regulation of catalytic activity;protein processing;integral component of membrane	APH1
-Cre13.g585900	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation		GO:0019370;GO:0008270;GO:0008237;GO:0006508	leukotriene biosynthetic process;zinc ion binding;metallopeptidase activity;proteolysis	LKHA4
-Cre13.g565850	GMM:31.4	cell.vesicle transport		GO:0030126;GO:0030117;GO:0016192;GO:0006886;GO:0005515;GO:0005198	COPI vesicle coat;membrane coat;vesicle-mediated transport;intracellular protein transport;protein binding;structural molecule activity	COPA1
-Cre13.g571700	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre13.g591150	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA22
-Cre13.g580250						
-Cre13.g598957						
-Cre13.g587700	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Secretory pathway	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre13.g566550			Chloroplast			
-Cre13.g569150						
-Cre13.g574600						
-Cre13.g563950						
-Cre13.g565280			Chloroplast			
-Cre13.g567450	GMM:28.1.3	DNA.synthesis/chromatin structure.histone		GO:0006334;GO:0005634;GO:0003677;GO:0000786	nucleosome assembly;nucleus;DNA binding;nucleosome	HON1
-Cre13.g568500						
-Cre13.g585700						
-Cre13.g579566			Mitochondrion			
-Cre13.g589150			Mitochondrion			
-Cre13.g576200			Chloroplast	GO:0009116;GO:0003824	nucleoside metabolic process;catalytic activity	
-Cre13.g582201	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases		GO:0016787	hydrolase activity	
-Cre13.g584750	GMM:18.6	Co-factor and vitamine metabolism.biotin	Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm46
-Cre13.g579550			Chloroplast			CGL27
-Cre13.g583150				GO:0005515	protein binding	
-Cre13.g583300			Mitochondrion			
-Cre13.g592450	GMM:31.4	cell.vesicle transport		GO:0006890;GO:0005198	"retrograde vesicle-mediated transport, Golgi to ER;structural molecule activity"	COPE1
-Cre13.g602901	GMM:18.6;GMM:18.1	Co-factor and vitamine metabolism.biotin;Co-factor and vitamine metabolism.molybdenum cofactor	Mitochondrion	GO:0051539;GO:0051536;GO:0019008;GO:0006777;GO:0003824	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;molybdopterin synthase complex;Mo-molybdopterin cofactor biosynthetic process;catalytic activity"	CNX2
-Cre13.g561850	GMM:2.2.1.1	major CHO metabolism.degradation.sucrose.fructokinase	Chloroplast			FRK2
-Cre13.g565260	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems	Chloroplast			
-Cre13.g569850	GMM:34.5	transport.ammonium	Secretory pathway	GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	AMT4
-Cre13.g564850			Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre13.g571050	GMM:27.3.62	RNA.regulation of transcription.nucleosome/chromatin assembly factor group		GO:0003677	DNA binding	
-Cre13.g562326			Chloroplast			
-Cre13.g565050			Secretory pathway			
-Cre13.g576500	GMM:33.99;GMM:27.3.34	development.unspecified;RNA.regulation of transcription.orphan family				
-Cre13.g567000			Chloroplast			
-Cre13.g582692						
-Cre13.g590350				GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre13.g572732			Secretory pathway			
-Cre13.g574200	GMM:27.1	RNA.processing	Chloroplast	GO:0016779	nucleotidyltransferase activity	PAP2
-Cre13.g592551			Chloroplast			
-Cre13.g578012			Chloroplast			
-Cre13.g566800			Mitochondrion			
-Cre13.g568316						
-Cre13.g562150	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast	GO:0005525	GTP binding	
-Cre13.g606962						
-Cre13.g584450	GMM:30.2.12;GMM:30.2.11;GMM:2.1	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;major CHO metabolism.synthesis	Secretory pathway	GO:0005515	protein binding	
-Cre13.g587350			Secretory pathway			
-Cre13.g591501	GMM:29.1.30	protein.aa activation.pseudouridylate synthase	Mitochondrion	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS2
-Cre13.g583935						
-Cre13.g585550			Secretory pathway			
-Cre13.g596395			Secretory pathway			
-Cre13.g577500	GMM:31.4	cell.vesicle transport		GO:0016020;GO:0006886	membrane;intracellular protein transport	VTI1
-Cre13.g577000			Secretory pathway			
-Cre13.g571520			Chloroplast			ANK12
-Cre13.g565350						TTL11
-Cre13.g605850			Chloroplast			
-Cre02.g117813	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g105900			Secretory pathway			
-Cre02.g104126						
-Cre02.g145450			Chloroplast			
-Cre02.g082651						
-Cre02.g080300			Mitochondrion			
-Cre02.g098350	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate	Secretory pathway	GO:0055114;GO:0016491;GO:0005507	oxidation-reduction process;oxidoreductase activity;copper ion binding	
-Cre02.g073750	GMM:31.6.1.6.5;GMM:31.1	cell.motility.eukaryotes.central pair.C2c;cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KLP1
-Cre02.g107600	GMM:10.1.30.3	cell wall.precursor synthesis.sugar kinases.glucuronic acid kinase		GO:0005524	ATP binding	GAK
-Cre02.g142606			Secretory pathway			
-Cre02.g088650			Secretory pathway			
-Cre02.g102600				GO:0008270	zinc ion binding	
-Cre02.g107213						
-Cre02.g093202						
-Cre02.g075250			Chloroplast			
-Cre02.g095500			Chloroplast			
-Cre02.g097227						
-Cre02.g074650	GMM:11.1.13	lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein		GO:0005515;GO:0000062	protein binding;fatty-acyl-CoA binding	
-Cre02.g080550	GMM:20.2.1	stress.abiotic.heat	Chloroplast	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE26
-Cre02.g115450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG47
-Cre02.g106600	GMM:29.2.1.2.1.19	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S19		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPS19
-Cre02.g091450			Mitochondrion			
-Cre02.g095060						
-Cre02.g144350	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	RJL1
-Cre02.g141346						
-Cre02.g073176						CSB10
-Cre02.g090400			Chloroplast			
-Cre02.g086500			Chloroplast			PGM10
-Cre02.g095850						
-Cre02.g096350			Chloroplast	GO:0071949;GO:0055114;GO:0046416;GO:0016491;GO:0003884	FAD binding;oxidation-reduction process;D-amino acid metabolic process;oxidoreductase activity;D-amino-acid oxidase activity	DAO1
-Cre02.g141004						
-Cre02.g142350						
-Cre02.g094450	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC38
-Cre02.g143267			Mitochondrion	GO:0015074;GO:0006310;GO:0003677	DNA integration;DNA recombination;DNA binding	
-Cre02.g119484						
-Cre02.g142486						
-Cre02.g077200						
-Cre02.g084150			Secretory pathway			
-Cre02.g145630						
-Cre02.g100700			Secretory pathway			
-Cre02.g113809				GO:0005515	protein binding	
-Cre02.g077250						
-Cre02.g085100	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG59
-Cre02.g144850			Chloroplast			CGLD26
-Cre02.g142767			Chloroplast			
-Cre02.g100666			Mitochondrion			
-Cre02.g095135			Secretory pathway			
-Cre02.g114600	GMM:21.5.1;GMM:21.5	redox.peroxiredoxin.BAS1;redox.peroxiredoxin		GO:0055114;GO:0051920;GO:0016491	oxidation-reduction process;peroxiredoxin activity;oxidoreductase activity	PRX2
-Cre02.g084350			Secretory pathway	GO:0016020	membrane	CGLD1
-Cre02.g095110						FAP255
-Cre02.g100150			Chloroplast			
-Cre02.g146500	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	DYRK1
-Cre02.g104951			Secretory pathway			
-Cre02.g108050			Secretory pathway	GO:0016021;GO:0006886;GO:0005783	integral component of membrane;intracellular protein transport;endoplasmic reticulum	
-Cre02.g144700	GMM:34.7	transport.phosphate		GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB5
-Cre02.g097650	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	protein binding	RPN6
-Cre02.g109950			Chloroplast			OHP1
-Cre02.g112701						
-Cre02.g146851	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g077900						
-Cre02.g077500	GMM:29.3.99	protein.targeting.unknown	Secretory pathway	GO:0006888;GO:0005801;GO:0005622	ER to Golgi vesicle-mediated transport;cis-Golgi network;intracellular	TRS23
-Cre02.g143147						
-Cre02.g114950						
-Cre02.g141400	GMM:6.4	gluconeogenesis / glyoxylate cycle.phosphoenolpyruvate carboxykinase (PEPCK)	Chloroplast	GO:0006094;GO:0005524;GO:0004612	gluconeogenesis;ATP binding;phosphoenolpyruvate carboxykinase (ATP) activity	PCK1
-Cre02.g108250						
-Cre02.g106950			Mitochondrion			
-Cre02.g102750			Secretory pathway	GO:0016757;GO:0006486	"transferase activity, transferring glycosyl groups;protein glycosylation"	
-Cre02.g111050	GMM:34.5	transport.ammonium	Secretory pathway	GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	AMT7
-Cre02.g075750			Chloroplast	GO:0005515	protein binding	
-Cre02.g118300	GMM:27.1.2	RNA.processing.RNA helicase		GO:0005634;GO:0005524;GO:0004386;GO:0003723;GO:0003676	nucleus;ATP binding;helicase activity;RNA binding;nucleic acid binding	HEL12
-Cre02.g092926						
-Cre02.g102300			Secretory pathway			
-Cre02.g086887	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion	GO:0006810;GO:0005643	transport;nuclear pore	
-Cre02.g088500	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion			CPLD29
-Cre02.g117410	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway			
-Cre02.g099400	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG31
-Cre02.g099700						
-Cre02.g109126			Secretory pathway			
-Cre02.g084750	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre02.g117100			Secretory pathway			
-Cre02.g087633	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors	Secretory pathway			
-Cre02.g141850			Chloroplast			
-Cre02.g079100						
-Cre02.g093900						
-Cre02.g098300	GMM:31.3	cell.cycle	Chloroplast			
-Cre02.g090550	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS9
-Cre02.g078500						
-Cre02.g091750			Mitochondrion	GO:2001070	starch binding	
-Cre02.g113500			Chloroplast			
-Cre02.g094850			Chloroplast			
-Cre02.g146250	GMM:13.1.5.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine	Mitochondrion			NFS1
-Cre02.g144100	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Mitochondrion			ELG12
-Cre02.g142000	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC4
-Cre02.g144008			Chloroplast			
-Cre02.g141766			Chloroplast			
-Cre02.g116750	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion	GO:0046961;GO:0046933;GO:0046034;GO:0045261;GO:0033178;GO:0016820;GO:0015992;GO:0015991;GO:0015986;GO:0005524	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;ATP metabolic process;proton-transporting ATP synthase complex, catalytic core F(1);proton-transporting two-sector ATPase complex, catalytic domain;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;proton transport;ATP hydrolysis coupled proton transport;ATP synthesis coupled proton transport;ATP binding"	ATP1A
-Cre02.g095057	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB13
-Cre02.g077024			Mitochondrion			
-Cre02.g119050				GO:0016787;GO:0008236;GO:0008152;GO:0006508	hydrolase activity;serine-type peptidase activity;metabolic process;proteolysis	CER1
-Cre02.g075350	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CNK1
-Cre02.g093401			Chloroplast			
-Cre02.g145650						
-Cre02.g101000	GMM:23.3.2.2	nucleotide metabolism.salvage.nucleoside kinases.uridine kinase	Chloroplast			URK1
-Cre02.g113950			Chloroplast			
-Cre02.g100250						
-Cre02.g146131						
-Cre02.g115950			Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
-Cre02.g111650	GMM:18.8	Co-factor and vitamine metabolism.ubiquinone				CGL8
-Cre02.g116100			Secretory pathway			
-Cre02.g142100			Secretory pathway			
-Cre02.g105700			Mitochondrion			
-Cre02.g077951	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
-Cre02.g092600	GMM:19.8	tetrapyrrole synthesis.coproporphyrinogen III oxidase	Chloroplast	GO:0055114;GO:0006779;GO:0004109	oxidation-reduction process;porphyrin-containing compound biosynthetic process;coproporphyrinogen oxidase activity	CPX2
-Cre02.g103450	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
-Cre02.g085850	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS6
-Cre02.g083180			Secretory pathway			
-Cre02.g101050			Secretory pathway			
-Cre02.g095142			Mitochondrion			
-Cre02.g089050						
-Cre02.g092100						
-Cre02.g073200	GMM:13.2.3.2;GMM:13.1.4.5.1	amino acid metabolism.degradation.aspartate family.threonine;amino acid metabolism.synthesis.branched chain group.isoleucine specific.threonine ammonia-lyase	Chloroplast			THD1
-Cre02.g105400				GO:0008138;GO:0007096;GO:0006470;GO:0004721	protein tyrosine/serine/threonine phosphatase activity;regulation of exit from mitosis;protein dephosphorylation;phosphoprotein phosphatase activity	CDC14
-Cre02.g088350						
-Cre02.g081000						EXN4
-Cre02.g147900	GMM:4.3.14;GMM:4.1.14;GMM:11.1.30	glycolysis.unclear/dually targeted.pyruvate kinase (PK);glycolysis.cytosolic branch.pyruvate kinase (PK);lipid metabolism.FA synthesis and FA elongation.pyruvate kinase		GO:0030955;GO:0006096;GO:0004743;GO:0000287	potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding	PYK5
-Cre02.g104350	GMM:21.1.1;GMM:21.1	redox.thioredoxin.PDIL;redox.thioredoxin	Secretory pathway	GO:0045454	cell redox homeostasis	PDI5
-Cre02.g147300						
-Cre02.g101550	GMM:34.12	transport.metal		GO:0005515	protein binding	
-Cre02.g078966	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0016887;GO:0006508;GO:0005524;GO:0004222	ATPase activity;proteolysis;ATP binding;metalloendopeptidase activity	FTSH9
-Cre02.g086100			Chloroplast			CGL40
-Cre02.g084050				GO:0016021;GO:0015031;GO:0008565	integral component of membrane;protein transport;protein transporter activity	SEC62
-Cre02.g145502						
-Cre02.g114200	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CSK3
-Cre02.g079750	GMM:30.11;GMM:29.5.11.4.3.2;GMM:29.4	signalling.light;protein.degradation.ubiquitin.E3.SCF.FBOX;protein.postranslational modification		GO:0007165;GO:0000160;GO:0000155	signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	HKR1
-Cre02.g080650	GMM:29.6.2.4;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP90s;stress.abiotic.heat	EndoplasmicReticulum	GO:0051082;GO:0006950;GO:0006457;GO:0005524	unfolded protein binding;response to stress;protein folding;ATP binding	HSP90B
-Cre02.g118200			Mitochondrion	GO:0016021	integral component of membrane	
-Cre02.g095047						
-Cre02.g095138						
-Cre02.g108800	GMM:29.9;GMM:29.6.2.6;GMM:29.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding	Chloroplast			DNJ26
-Cre02.g091900						FAP301
-Cre02.g118801			Chloroplast			
-Cre02.g108850	GMM:29.2.1.1.1.2.17	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L17	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL17
-Cre02.g095076	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	MFT10
-Cre02.g143507						
-Cre02.g082000	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0006284	base-excision repair	AGE1
-Cre02.g096650			Mitochondrion			
-Cre02.g113200	GMM:12.2.2	N-metabolism.ammonia metabolism.glutamine synthetase		GO:0006807;GO:0006542;GO:0004356	nitrogen compound metabolic process;glutamine biosynthetic process;glutamate-ammonia ligase activity	GLN1
-Cre02.g120050			Chloroplast			
-Cre02.g091250			Chloroplast			
-Cre02.g106200	GMM:34.8	transport.metabolite transporters at the envelope membrane	Secretory pathway	GO:0055085	transmembrane transport	
-Cre02.g095054			Mitochondrion;Chloroplast			
-Cre02.g143200	GMM:29.1.7	protein.aa activation.alanine-tRNA ligase	Secretory pathway	GO:0043039;GO:0016876;GO:0006419;GO:0005524;GO:0004813;GO:0003676;GO:0000166	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;alanyl-tRNA aminoacylation;ATP binding;alanine-tRNA ligase activity;nucleic acid binding;nucleotide binding"	TSA1
-Cre02.g110200				GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	THO1
-Cre02.g095153						
-Cre02.g141926	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g141746	GMM:17.4.2	hormone metabolism.cytokinin.signal transduction	Mitochondrion	GO:0005515	protein binding	
-Cre02.g078200	GMM:27.1	RNA.processing				
-Cre02.g141166						
-Cre02.g143635			Chloroplast			
-Cre02.g099100	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT	Chloroplast	GO:0004842	ubiquitin-protein transferase activity	
-Cre02.g110300						DNJ25
-Cre02.g095085				GO:0016020	membrane	
-Cre02.g113250			Secretory pathway	GO:0005515	protein binding	
-Cre02.g081650	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Secretory pathway			
-Cre02.g086800			Chloroplast			
-Cre02.g104000			Secretory pathway			
-Cre02.g095067			Secretory pathway			
-Cre02.g092350	GMM:17.3.1.2.3	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.CYP51	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP51G1
-Cre02.g095055			Mitochondrion			
-Cre02.g090276	GMM:27.1.19	RNA.processing.ribonucleases	Mitochondrion	GO:0005634	nucleus	
-Cre02.g100876			Chloroplast			CSB14
-Cre02.g082877	GMM:29.1.11	protein.aa activation.serine-tRNA ligase		GO:0006434;GO:0006418;GO:0005737;GO:0005524;GO:0004828;GO:0004812;GO:0003677;GO:0000166	seryl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;serine-tRNA ligase activity;aminoacyl-tRNA ligase activity;DNA binding;nucleotide binding	
-Cre02.g142286	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
-Cre02.g088600	GMM:8.2.11	TCA / organic transformation.other organic acid transformations.atp-citrate lyase		GO:0048037;GO:0046912;GO:0008152;GO:0003824	"cofactor binding;transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer;metabolic process;catalytic activity"	ACLB1
-Cre02.g085500			Chloroplast			
-Cre02.g116700	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK11
-Cre02.g087850	GMM:30.2.8.2;GMM:30.2.20;GMM:30.2.17;GMM:29.4.1.58;GMM:29.4.1.57;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 2;signalling.receptor kinases.wheat LRK10 like;signalling.receptor kinases.DUF 26;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VIII;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK19
-Cre02.g089550			Secretory pathway			
-Cre02.g101600						
-Cre02.g103750			Mitochondrion			
-Cre02.g095071	GMM:27.1.19	RNA.processing.ribonucleases	Chloroplast	GO:0005634	nucleus	
-Cre02.g091350			Chloroplast			
-Cre02.g141200	GMM:18	Co-factor and vitamine metabolism		GO:0016763;GO:0009435;GO:0004514	"transferase activity, transferring pentosyl groups;NAD biosynthetic process;nicotinate-nucleotide diphosphorylase (carboxylating) activity"	NIC2
-Cre02.g111750			Mitochondrion			
-Cre02.g076300	GMM:19.7	tetrapyrrole synthesis.uroporphyrinogen decarboxylase	Chloroplast	GO:0006779;GO:0004853	porphyrin-containing compound biosynthetic process;uroporphyrinogen decarboxylase activity	UROD2
-Cre02.g095650			Chloroplast	GO:0071949	FAD binding	
-Cre02.g075550						
-Cre02.g082576			Chloroplast			
-Cre02.g097213				GO:0016020;GO:0005044	membrane;scavenger receptor activity	
-Cre02.g104150			Secretory pathway			
-Cre02.g145350			Secretory pathway			
-Cre02.g102250	GMM:29.2.1.2.1.3	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S3		GO:0003723	RNA binding	RPS3
-Cre02.g106700			Mitochondrion			OPR4
-Cre02.g078750	GMM:29.1.30;GMM:23.5.2	protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase	Chloroplast	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS3
-Cre02.g076663						CSB12
-Cre02.g079005						
-Cre02.g110050						
-Cre02.g115700						
-Cre02.g087200						
-Cre02.g113751			Secretory pathway			
-Cre02.g141306			Secretory pathway			
-Cre02.g107800	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CNK9
-Cre02.g078300				GO:0055114;GO:0006979;GO:0004602	oxidation-reduction process;response to oxidative stress;glutathione peroxidase activity	GPX1
-Cre02.g112400				GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI1
-Cre02.g117750						
-Cre02.g095052				GO:0006355	"regulation of transcription, DNA-templated"	
-Cre02.g095400	GMM:29.2.2.50	protein.synthesis.ribosome biogenesis.BRIX	Chloroplast			
-Cre02.g084250	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre02.g142750			Mitochondrion			
-Cre02.g086428						
-Cre02.g108950						LF1
-Cre02.g079004						
-Cre02.g099200	GMM:27.1.3.16	RNA.processing.3' end processing.Symplekin				
-Cre02.g073600			Chloroplast			
-Cre02.g088900	GMM:29.2.1.1.1.2.1	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L1	Chloroplast			PRPL1
-Cre02.g084873			Mitochondrion			
-Cre02.g095050			Chloroplast			
-Cre02.g075850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g094400			Chloroplast			
-Cre02.g085000			Chloroplast			
-Cre02.g096200						
-Cre02.g095103			Secretory pathway			
-Cre02.g142727						
-Cre02.g078251			Mitochondrion			
-Cre02.g114550			Secretory pathway			
-Cre02.g111150	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG26
-Cre02.g095128			Mitochondrion			
-Cre02.g146700			Chloroplast			
-Cre02.g095041			Secretory pathway			
-Cre02.g105350			Secretory pathway			
-Cre02.g115050			Mitochondrion	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	RSEP3
-Cre02.g076150			Secretory pathway			
-Cre02.g097400	GMM:29.2.3	protein.synthesis.initiation		GO:0045905;GO:0045901;GO:0043022;GO:0006452;GO:0003746;GO:0003723	positive regulation of translational termination;positive regulation of translational elongation;ribosome binding;translational frameshifting;translation elongation factor activity;RNA binding	EIF5A
-Cre02.g095045	GMM:33.99;GMM:27.3.63	development.unspecified;RNA.regulation of transcription.PHD finger transcription factor	Mitochondrion	GO:0006355;GO:0005515	"regulation of transcription, DNA-templated;protein binding"	hlm15
-Cre02.g096450						
-Cre02.g098450	GMM:29.2.3	protein.synthesis.initiation		GO:0005525	GTP binding	EIF2G
-Cre02.g093051						
-Cre02.g095140			Mitochondrion			
-Cre02.g097550			Chloroplast			
-Cre02.g100050	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast			PFH11
-Cre02.g075150	GMM:27.2	RNA.transcription		GO:0032549;GO:0006351;GO:0003899;GO:0003677	"ribonucleoside binding;transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPB2
-Cre02.g095108			Mitochondrion			
-Cre02.g087500			Mitochondrion			
-Cre02.g142566						
-Cre02.g095063						
-Cre02.g111426						
-Cre02.g095062			Secretory pathway			
-Cre02.g073650	GMM:33.99;GMM:27.1.1	development.unspecified;RNA.processing.splicing		GO:0005515	protein binding	PRP19
-Cre02.g079250			Chloroplast	GO:0051382;GO:0019237;GO:0000776	kinetochore assembly;centromeric DNA binding;kinetochore	
-Cre02.g094551			Mitochondrion			
-Cre02.g097950						
-Cre02.g141706	GMM:3.5	minor CHO metabolism.others	Chloroplast	GO:0005525;GO:0003723	GTP binding;RNA binding	
-Cre02.g144007						
-Cre02.g113600	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g118950	GMM:29.2.1.1.1.1.17	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S17	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPS17
-Cre02.g095119						
-Cre02.g112100	GMM:31.6.1.6.1	cell.motility.eukaryotes.central pair.C1a				FAP101
-Cre02.g117450			Secretory pathway			
-Cre02.g082825	GMM:29.1.11	protein.aa activation.serine-tRNA ligase		GO:0006434;GO:0006418;GO:0005737;GO:0005524;GO:0004828;GO:0004812;GO:0000166	seryl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;serine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	TSS1
-Cre02.g089274	GMM:31.2	cell.division				
-Cre02.g144010			Secretory pathway			
-Cre02.g103100	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Secretory pathway			
-Cre02.g077600			Mitochondrion			FAP51
-Cre02.g113900			Chloroplast			
-Cre02.g101150	GMM:34.12;GMM:31.1	transport.metal;cell.organisation		GO:0005515	protein binding	
-Cre02.g105150			Mitochondrion	GO:0016740;GO:0003824	transferase activity;catalytic activity	
-Cre02.g097800	GMM:34.16;GMM:1.5.3	transport.ABC transporters and multidrug resistance systems;PS.carbon concentrating mechanism.algal		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP1
-Cre02.g142351	GMM:17.1.1	hormone metabolism.abscisic acid.synthesis-degradation	Chloroplast	GO:0045454	cell redox homeostasis	
-Cre02.g142386						
-Cre02.g143550	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELI4
-Cre02.g076350	GMM:34.1.1.1;GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit B;transport.p- and v-ATPases.H+-transporting two-sector ATPase		GO:0046034;GO:0033178;GO:0016820;GO:0015992;GO:0015991;GO:0005524	"ATP metabolic process;proton-transporting two-sector ATPase complex, catalytic domain;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;proton transport;ATP hydrolysis coupled proton transport;ATP binding"	ATPVB
-Cre02.g118700	GMM:31.6.1.11	cell.motility.eukaryotes.other	Mitochondrion			
-Cre02.g108700	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g103784						
-Cre02.g095149						FAP143
-Cre02.g141066			Chloroplast			
-Cre02.g087700	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate	Chloroplast	GO:0055114;GO:0020037;GO:0006979;GO:0004601	oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity	APX1
-Cre02.g083300						
-Cre02.g143227						
-Cre02.g089350						
-Cre02.g095066						
-Cre02.g146650	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0006464	cellular protein modification process	SSA11
-Cre02.g143467	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
-Cre02.g141226			Chloroplast			
-Cre02.g095134						
-Cre02.g105000			Secretory pathway			
-Cre02.g089608	GMM:28.1	DNA.synthesis/chromatin structure		GO:0016818;GO:0008026;GO:0006139;GO:0005524;GO:0004003;GO:0003677;GO:0003676	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;ATP-dependent helicase activity;nucleobase-containing compound metabolic process;ATP binding;ATP-dependent DNA helicase activity;DNA binding;nucleic acid binding"	
-Cre02.g096737						
-Cre02.g103700			Mitochondrion			
-Cre02.g109400			Secretory pathway	GO:0005515	protein binding	
-Cre02.g142927						
-Cre02.g083065	GMM:31.1;GMM:29.5	cell.organisation;protein.degradation	Mitochondrion	GO:0030145;GO:0004177	manganese ion binding;aminopeptidase activity	
-Cre02.g142807						
-Cre02.g113000						
-Cre02.g145750	GMM:34.3	transport.amino acids	Mitochondrion			AOT2
-Cre02.g095124			Chloroplast			
-Cre02.g134124			Chloroplast			
-Cre02.g142246			Mitochondrion			
-Cre02.g144001			Mitochondrion			
-Cre02.g095145			Secretory pathway			
-Cre02.g095034						
-Cre02.g145800	GMM:8.2.9	TCA / organic transformation.other organic acid transformations.cyt MDH		GO:0055114;GO:0016616;GO:0016615;GO:0016491;GO:0006108	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;malate dehydrogenase activity;oxidoreductase activity;malate metabolic process"	MDN3
-Cre02.g084550			Chloroplast	GO:0008080	N-acetyltransferase activity	
-Cre02.g141900				GO:0016021;GO:0006810	integral component of membrane;transport	
-Cre02.g143107			Chloroplast			
-Cre02.g141886	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g142950						
-Cre02.g142146			Chloroplast			CGL102
-Cre02.g106400	GMM:11.8.10	"lipid metabolism.exotics (steroids, squalene etc).phosphatidylcholine-sterol O-acyltransferase"	Chloroplast	GO:0008374;GO:0006629	O-acyltransferase activity;lipid metabolic process	LCA1
-Cre02.g080850	GMM:29.6.3.2	protein.folding.immunophilins (IMM).cyclophilins				CYN47
-Cre02.g084500			Secretory pathway			CGL134
-Cre02.g119150						
-Cre02.g093850			Mitochondrion	GO:0005515	protein binding	
-Cre02.g090850	GMM:29.6.2.5;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP100s;stress.abiotic.heat	Chloroplast	GO:0019538;GO:0016887;GO:0005524	protein metabolic process;ATPase activity;ATP binding	CLPB3
-Cre02.g147500			Mitochondrion			
-Cre02.g141086			Chloroplast			
-Cre02.g113050				GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	
-Cre02.g120350						
-Cre02.g145150			Secretory pathway			MAM3A
-Cre02.g104100			Chloroplast			
-Cre02.g095079						
-Cre02.g081950	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g116800						
-Cre02.g147100	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP265
-Cre02.g090689						
-Cre02.g105250						
-Cre02.g091200	GMM:13.2.6.2	amino acid metabolism.degradation.aromatic aa.tyrosine		GO:0055114;GO:0006570;GO:0006559;GO:0004411	"oxidation-reduction process;tyrosine metabolic process;L-phenylalanine catabolic process;homogentisate 1,2-dioxygenase activity"	
-Cre02.g117250	GMM:31.2;GMM:29.5.11.20	cell.division;protein.degradation.ubiquitin.proteasom		GO:0009341;GO:0005975;GO:0004565	beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity	
-Cre02.g085326			Secretory pathway			
-Cre02.g092850	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm				DLU1
-Cre02.g088100						
-Cre02.g114100	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE22
-Cre02.g079400	GMM:27.4	RNA.RNA binding	Mitochondrion	GO:0003676	nucleic acid binding	
-Cre02.g078912	GMM:34	transport	Mitochondrion			
-Cre02.g142326			Chloroplast			
-Cre02.g081750						
-Cre02.g079926			Chloroplast			PHC64
-Cre02.g102950	GMM:33.99;GMM:29.4;GMM:27.3;GMM:26.13	development.unspecified;protein.postranslational modification;RNA.regulation of transcription;misc.acid and other phosphatases				
-Cre02.g115350	GMM:13.99;GMM:13	amino acid metabolism.misc;amino acid metabolism				
-Cre02.g099050				GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR30
-Cre02.g082350	GMM:15.2	"metal handling.binding, chelation and storage"	Secretory pathway;Chloroplast	GO:0010038	response to metal ion	CUTA1
-Cre02.g095087	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
-Cre02.g101800	GMM:29.2.5	protein.synthesis.release	Chloroplast	GO:0006415;GO:0003747	translational termination;translation release factor activity	
-Cre02.g142086	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0050999	regulation of nitric-oxide synthase activity	
-Cre02.g091650			Chloroplast			
-Cre02.g119900	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP6
-Cre02.g092076			Secretory pathway			
-Cre02.g143650			Chloroplast			
-Cre02.g142466	GMM:30.2.17;GMM:29.4.1	signalling.receptor kinases.DUF 26;protein.postranslational modification.kinase				
-Cre02.g143307	GMM:29.6.2.5;GMM:29.5.5	protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease				CLPC1
-Cre02.g074050	GMM:20.2;GMM:2.2	stress.abiotic;major CHO metabolism.degradation	Secretory pathway			
-Cre02.g106100						
-Cre02.g095073			Mitochondrion			
-Cre02.g093117			Chloroplast			
-Cre02.g141806	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK16
-Cre02.g092500	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0008270;GO:0005737;GO:0005524;GO:0004386;GO:0003677;GO:0000184	"zinc ion binding;cytoplasm;ATP binding;helicase activity;DNA binding;nuclear-transcribed mRNA catabolic process, nonsense-mediated decay"	UPF1
-Cre02.g083800	GMM:3.5;GMM:10.1.10	minor CHO metabolism.others;cell wall.precursor synthesis.RHM		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	RHM2
-Cre02.g090000	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre02.g074437			Secretory pathway			
-Cre02.g073850	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Lumen	GO:0010207	photosystem II assembly	CGL54
-Cre02.g078550						FAP210
-Cre02.g083650			Secretory pathway			
-Cre02.g089900	GMM:34.99	transport.misc		GO:0016021;GO:0015031	integral component of membrane;protein transport	SCAMP5
-Cre02.g141050	GMM:33.99;GMM:32;GMM:29.2.3;GMM:27.3.36	"development.unspecified;micro RNA, natural antisense etc;protein.synthesis.initiation;RNA.regulation of transcription.argonaute transcription factor family"	Chloroplast	GO:0005515;GO:0003676	protein binding;nucleic acid binding	AGO1
-Cre02.g103400			Chloroplast			OPR118
-Cre02.g146400						CSB2
-Cre02.g088700						
-Cre02.g082550	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase	Chloroplast	GO:0071949;GO:0005515	FAD binding;protein binding	ZEP1
-Cre02.g141826	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g109716						
-Cre02.g146629						
-Cre02.g097450	GMM:25.9	C1-metabolism.dihydroneopterin aldolase		GO:0006760;GO:0004150	folic acid-containing compound metabolic process;dihydroneopterin aldolase activity	
-Cre02.g101700			Mitochondrion			
-Cre02.g142867			Secretory pathway			
-Cre02.g142206			Chloroplast			
-Cre02.g089700						
-Cre02.g101750			Chloroplast			
-Cre02.g095550	GMM:29.2.2	protein.synthesis.ribosome biogenesis	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre02.g141701						
-Cre02.g143207			Chloroplast			
-Cre02.g095084			Chloroplast			
-Cre02.g142650						
-Cre02.g142352	GMM:29.1.21	protein.aa activation.histidine-tRNA ligase		GO:0005737	cytoplasm	
-Cre02.g092200			Secretory pathway			
-Cre02.g087450						
-Cre02.g118650			Secretory pathway			PHC47
-Cre02.g112950				GO:0033588	Elongator holoenzyme complex	
-Cre02.g095064						
-Cre02.g086650	GMM:31.2;GMM:28.1	cell.division;DNA.synthesis/chromatin structure		GO:0051276;GO:0007076;GO:0005694;GO:0005524;GO:0005515;GO:0000796	chromosome organization;mitotic chromosome condensation;chromosome;ATP binding;protein binding;condensin complex	SMC2
-Cre02.g095081						
-Cre02.g141246						
-Cre02.g109501			Secretory pathway			
-Cre02.g116950	GMM:27.3.55	RNA.regulation of transcription.HDA				HDA1
-Cre02.g074370	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g103850	GMM:13.1.7.6;GMM:13.1.7	amino acid metabolism.synthesis.histidine.glutamine amidotransferase/cyclase;amino acid metabolism.synthesis.histidine	Chloroplast	GO:0004424;GO:0000105	imidazoleglycerol-phosphate dehydratase activity;histidine biosynthetic process	HIS3
-Cre02.g095150			Secretory pathway			
-Cre02.g104250			Mitochondrion	GO:0016021;GO:0016020;GO:0006811;GO:0006810;GO:0005230	integral component of membrane;membrane;ion transport;transport;extracellular ligand-gated ion channel activity	
-Cre02.g143151	GMM:31.1	cell.organisation		GO:0005815;GO:0000922;GO:0000226	microtubule organizing center;spindle pole;microtubule cytoskeleton organization	
-Cre02.g073500			Chloroplast			FAP241
-Cre02.g103650						
-Cre02.g099750	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g099500	GMM:33.99	development.unspecified	Mitochondrion			
-Cre02.g110350	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
-Cre02.g106150	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN18-1
-Cre02.g095117				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g095114			Secretory pathway			
-Cre02.g093600						TEH3
-Cre02.g141986				GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g074700			Chloroplast			
-Cre02.g142687	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	FAP332
-Cre02.g089500			Secretory pathway			
-Cre02.g147700				GO:0016787	hydrolase activity	
-Cre02.g143450			Chloroplast			
-Cre02.g078650	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway	GO:0016787;GO:0008152	hydrolase activity;metabolic process	
-Cre02.g105500	GMM:29.5;GMM:13.1.2.3	protein.degradation;amino acid metabolism.synthesis.glutamate family.arginine		GO:0016787;GO:0008152	hydrolase activity;metabolic process	AOD1
-Cre02.g142987			Secretory pathway	GO:0006281;GO:0005524;GO:0005515;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;protein binding;helicase activity;DNA helicase activity;telomere maintenance	
-Cre02.g107850	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast			MOB1
-Cre02.g086350						
-Cre02.g120250	GMM:29.4.1;GMM:29.4;GMM:1.1.30	protein.postranslational modification.kinase;protein.postranslational modification;PS.lightreaction.state transition	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	STT7
-Cre02.g078831	GMM:20.2.2	stress.abiotic.cold		GO:0006355;GO:0003677	"regulation of transcription, DNA-templated;DNA binding"	
-Cre02.g085350			Chloroplast			
-Cre02.g089200	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0042393;GO:0005515	histone binding;protein binding	HLM4
-Cre02.g091193						
-Cre02.g085300						
-Cre02.g096500				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g088000	GMM:9.1.1;GMM:31.6.1.1;GMM:31.3	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I;cell.motility.eukaryotes.basal bodies;cell.cycle	Mitochondrion	GO:0016020	membrane	PHB1
-Cre02.g141466			Chloroplast			
-Cre02.g141011			Chloroplast			
-Cre02.g079600	GMM:29.1.20	protein.aa activation.phenylalanine-tRNA ligase	Chloroplast	GO:0043039;GO:0008033;GO:0006432;GO:0005737;GO:0005524;GO:0004826;GO:0004812;GO:0000287;GO:0000049	tRNA aminoacylation;tRNA processing;phenylalanyl-tRNA aminoacylation;cytoplasm;ATP binding;phenylalanine-tRNA ligase activity;aminoacyl-tRNA ligase activity;magnesium ion binding;tRNA binding	TSF2
-Cre02.g146300	GMM:34.15	transport.potassium		GO:0016020;GO:0015269;GO:0006813	membrane;calcium-activated potassium channel activity;potassium ion transport	
-Cre02.g110500						
-Cre02.g083750	GMM:27.3.5;GMM:27.3.20;GMM:27.3	RNA.regulation of transcription.ARR;RNA.regulation of transcription.G2-like transcription factor family (GARP);RNA.regulation of transcription				ROC75
-Cre02.g079450			Secretory pathway			
-Cre02.g117650			Secretory pathway			
-Cre02.g093700	GMM:34.14	transport.unspecified cations		GO:0046872;GO:0016887;GO:0016021;GO:0006812;GO:0000166	metal ion binding;ATPase activity;integral component of membrane;cation transport;nucleotide binding	
-Cre02.g087800	GMM:30.2.20;GMM:29.4	signalling.receptor kinases.wheat LRK10 like;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK10
-Cre02.g144800	GMM:26.24	misc.GCN5-related N-acetyltransferase	Chloroplast	GO:0008080	N-acetyltransferase activity	LCI8
-Cre02.g143607			Chloroplast			
-Cre02.g099251			Chloroplast	GO:0016020	membrane	
-Cre02.g085800						
-Cre02.g083450	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase	Mitochondrion	GO:0071949	FAD binding	
-Cre02.g095090	GMM:14	S-assimilation		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	umm9
-Cre02.g111014	GMM:31.3;GMM:30.6	cell.cycle;signalling.MAP kinases		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g119250			Secretory pathway			
-Cre02.g082200	GMM:13.1.3.6.1.4	amino acid metabolism.synthesis.aspartate family.misc.homoserine.homoserine kinase	Mitochondrion	GO:0005524	ATP binding	HSK1
-Cre02.g077700	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
-Cre02.g103200			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre02.g076466			Chloroplast			
-Cre02.g118151						
-Cre02.g098850	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NTR2
-Cre02.g140981			Chloroplast			
-Cre02.g112000			Secretory pathway			AOT7
-Cre02.g143667			Chloroplast			PLPA9
-Cre02.g143327			Secretory pathway			
-Cre02.g075650	GMM:27.3.99;GMM:27.1.1	RNA.regulation of transcription.unclassified;RNA.processing.splicing		GO:0003676	nucleic acid binding	
-Cre02.g116850	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	HLM6
-Cre02.g087150			Chloroplast			
-Cre02.g095112						
-Cre02.g093300			Mitochondrion			
-Cre02.g144500	GMM:27.4	RNA.RNA binding		GO:0003723	RNA binding	
-Cre02.g078226						
-Cre02.g096800			Mitochondrion			
-Cre02.g115900						
-Cre02.g094150	GMM:27.3.66	RNA.regulation of transcription.pseudo ARR transcription factor family		GO:0005515;GO:0000160	protein binding;phosphorelay signal transduction system	HKR2
-Cre02.g092750				GO:0032259;GO:0008168;GO:0003676	methylation;methyltransferase activity;nucleic acid binding	SSA18
-Cre02.g095040						
-Cre02.g095126	GMM:2.2.2.4	major CHO metabolism.degradation.starch.D enzyme	Mitochondrion	GO:2001070;GO:0005975;GO:0004134	starch binding;carbohydrate metabolic process;4-alpha-glucanotransferase activity	DPE2
-Cre02.g141426						
-Cre02.g118100						
-Cre02.g145300				GO:0006397;GO:0005634;GO:0004721	mRNA processing;nucleus;phosphoprotein phosphatase activity	
-Cre02.g095350	GMM:23.3	nucleotide metabolism.salvage	Chloroplast			CGL116
-Cre02.g091100	GMM:29.2.1.2.2.15	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L15		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL15
-Cre02.g108601	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g143527						
-Cre02.g095143						
-Cre02.g112550	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre02.g108150			Chloroplast			
-Cre02.g141506	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
-Cre02.g104850			Mitochondrion			
-Cre02.g110843			Mitochondrion			
-Cre02.g074550						
-Cre02.g074300			Secretory pathway			
-Cre02.g143567						
-Cre02.g094250	GMM:34.9;GMM:34.17	transport.metabolite transporters at the mitochondrial membrane;transport.peroxisomes				
-Cre02.g094700						
-Cre02.g090050			Secretory pathway			FAP170
-Cre02.g142607	GMM:29.5.3	protein.degradation.cysteine protease	Chloroplast	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
-Cre02.g095077			Chloroplast			
-Cre02.g107700			Secretory pathway	GO:0005515	protein binding	
-Cre02.g143167						
-Cre02.g080000			Secretory pathway			
-Cre02.g114500	GMM:29.3.99;GMM:26.13	protein.targeting.unknown;misc.acid and other phosphatases		GO:0016791;GO:0008152	phosphatase activity;metabolic process	
-Cre02.g085950						
-Cre02.g076200	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation		GO:0008270;GO:0008237;GO:0006508	zinc ion binding;metallopeptidase activity;proteolysis	
-Cre02.g100450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG20
-Cre02.g097200						SRR14
-Cre02.g143067						
-Cre02.g095098						
-Cre02.g095000	GMM:11.9.3.4	lipid metabolism.lipid degradation.lysophospholipases.phospholipase A2	Secretory pathway	GO:0016042;GO:0005509;GO:0004623	lipid catabolic process;calcium ion binding;phospholipase A2 activity	PLA2
-Cre02.g115250	GMM:33.99;GMM:31.6.1.1;GMM:31.1;GMM:30.5;GMM:27.3.55;GMM:27.3.51;GMM:27.1;GMM:20.2.2	"development.unspecified;cell.motility.eukaryotes.basal bodies;cell.organisation;signalling.G-proteins;RNA.regulation of transcription.HDA;RNA.regulation of transcription.general transcription, TBP-binding protein;RNA.processing;stress.abiotic.cold"		GO:0005515	protein binding	POC1
-Cre02.g096900	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway	GO:0006388;GO:0000213	"tRNA splicing, via endonucleolytic cleavage and ligation;tRNA-intron endonuclease activity"	TIE1
-Cre02.g141150			Chloroplast			
-Cre02.g119751			Chloroplast			
-Cre02.g141546						
-Cre02.g115550			Chloroplast			
-Cre02.g113350				GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g095101	GMM:27.4	RNA.RNA binding	Mitochondrion	GO:0003676	nucleic acid binding	
-Cre02.g107350	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Mitochondrion	GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC4
-Cre02.g143427						
-Cre02.g114750	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g096000	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre02.g144606						
-Cre02.g117900	GMM:27.1.2;GMM:27.1.1;GMM:27.1	RNA.processing.RNA helicase;RNA.processing.splicing;RNA.processing		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL11
-Cre02.g113700	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005515;GO:0003677	protein binding;DNA binding	
-Cre02.g141646						
-Cre02.g095109			Secretory pathway	GO:0016021;GO:0008643;GO:0005351;GO:0000139	integral component of membrane;carbohydrate transport;sugar:proton symporter activity;Golgi membrane	
-Cre02.g115600			Secretory pathway	GO:0055085;GO:0016020	transmembrane transport;membrane	MSC7
-Cre02.g095300	GMM:31.3;GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	cell.cycle;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g074950						
-Cre02.g110600	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Chloroplast			DEG5
-Cre02.g140921						
-Cre02.g143900			Secretory pathway			
-Cre02.g093150						
-Cre02.g081250			Chloroplast			
-Cre02.g078000			Secretory pathway			
-Cre02.g117175						
-Cre02.g102000	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	ARL5
-Cre02.g100750			Secretory pathway			
-Cre02.g084950	GMM:23.4.2	nucleotide metabolism.phosphotransfer and pyrophosphatases.guanylate kinase	Chloroplast			GUK1
-Cre02.g141866						
-Cre02.g142586			Mitochondrion			
-Cre02.g095092	GMM:16.1.4.1	secondary metabolism.isoprenoids.carotenoids.phytoene synthase	Chloroplast	GO:0016740;GO:0009058	transferase activity;biosynthetic process	PSY1
-Cre02.g099850	GMM:8.1.1.1	TCA / organic transformation.TCA.pyruvate DH.E1		GO:0030976;GO:0003824	thiamine pyrophosphate binding;catalytic activity	PDC2
-Cre02.g143027			Mitochondrion			
-Cre02.g104650	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre02.g111450	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF4
-Cre02.g142426						
-Cre02.g083550	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase	Chloroplast	GO:0071949;GO:0016705;GO:0016117	"FAD binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;carotenoid biosynthetic process"	
-Cre02.g146950	GMM:29.4	protein.postranslational modification		GO:0016788;GO:0016787;GO:0006397	"hydrolase activity, acting on ester bonds;hydrolase activity;mRNA processing"	DBR1
-Cre02.g145902						
-Cre02.g112200	GMM:33.99	development.unspecified		GO:0055085;GO:0016020;GO:0006811;GO:0005515;GO:0005216	transmembrane transport;membrane;ion transport;protein binding;ion channel activity	
-Cre02.g073350	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase				
-Cre02.g093550	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG44
-Cre02.g084176				GO:0003677	DNA binding	
-Cre02.g073400	GMM:29.5	protein.degradation	Mitochondrion	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	
-Cre02.g114400	GMM:18.11	Co-factor and vitamine metabolism.lipoic acid	Chloroplast	GO:0051539;GO:0051536;GO:0016992;GO:0009107;GO:0003824	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;lipoate synthase activity;lipoate biosynthetic process;catalytic activity"	LAS2
-Cre02.g083050	GMM:31.1	cell.organisation				
-Cre02.g082750			Chloroplast	GO:0016020;GO:0015979;GO:0009523	membrane;photosynthesis;photosystem II	PSBX
-Cre02.g119550	GMM:1.1.99	PS.lightreaction.unspecified				NIP1
-Cre02.g097900	GMM:13.1.1.2.1	amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase	Chloroplast	GO:0030170;GO:0009058;GO:0008483;GO:0006520	pyridoxal phosphate binding;biosynthetic process;transaminase activity;cellular amino acid metabolic process	AST3
-Cre02.g076750	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Chloroplast			NUOAF1
-Cre02.g117500	GMM:2.2.1.4	major CHO metabolism.degradation.sucrose.hexokinase	Secretory pathway	GO:0046835;GO:0016773;GO:0005975;GO:0005536;GO:0005524;GO:0004396;GO:0001678	"carbohydrate phosphorylation;phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process;glucose binding;ATP binding;hexokinase activity;cellular glucose homeostasis"	HXK1
-Cre02.g078350			Chloroplast			
-Cre02.g098550	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g141366						
-Cre02.g142900						
-Cre02.g110263						CSB15
-Cre02.g144750	GMM:34.7	transport.phosphate		GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB4
-Cre02.g076600	GMM:29.2.2	protein.synthesis.ribosome biogenesis	Chloroplast	GO:0004045	aminoacyl-tRNA hydrolase activity	
-Cre02.g079700	GMM:23.1.1.2	nucleotide metabolism.synthesis.pyrimidine.aspartate transcarbamoylase	Chloroplast	GO:0016743;GO:0016597;GO:0006520	carboxyl- or carbamoyltransferase activity;amino acid binding;cellular amino acid metabolic process	PYR2
-Cre02.g117050	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g142366			Secretory pathway			
-Cre02.g099300						ANK21
-Cre02.g077401						
-Cre02.g111300	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			
-Cre02.g073950	GMM:17.1.1	hormone metabolism.abscisic acid.synthesis-degradation	Mitochondrion			
-Cre02.g074737			Chloroplast			
-Cre02.g102650	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g104550	GMM:27.2	RNA.transcription		GO:0016593;GO:0016570;GO:0006368	Cdc73/Paf1 complex;histone modification;transcription elongation from RNA polymerase II promoter	
-Cre02.g109600	GMM:3.4.5	minor CHO metabolism.myo-inositol.inositol phosphatase	Chloroplast	GO:0046854	phosphatidylinositol phosphorylation	
-Cre02.g142026						
-Cre02.g103250	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP5
-Cre02.g142947						CSU1
-Cre02.g105650	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			LPA2
-Cre02.g078400						
-Cre02.g098750	GMM:34.15	transport.potassium	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
-Cre02.g075900	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g095106	GMM:11.3.3;GMM:11.3	lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase;lipid metabolism.phospholipid synthesis		GO:0016780;GO:0016020;GO:0008654	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	
-Cre02.g084700						
-Cre02.g097334						
-Cre02.g101635			Mitochondrion			
-Cre02.g078476			Mitochondrion			
-Cre02.g075000						
-Cre02.g095116						
-Cre02.g109800			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	CPLD32
-Cre02.g115100			Chloroplast	GO:0055114	oxidation-reduction process	
-Cre02.g081600	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH8
-Cre02.g100800				GO:0005515	protein binding	
-Cre02.g087324						
-Cre02.g074150	GMM:31.9;GMM:17.4.2	cell.eyespot;hormone metabolism.cytokinin.signal transduction		GO:0035556;GO:0016849;GO:0016020;GO:0009190;GO:0007165;GO:0000160;GO:0000155	intracellular signal transduction;phosphorus-oxygen lyase activity;membrane;cyclic nucleotide biosynthetic process;signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	COP5
-Cre02.g147301						
-Cre02.g109250	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases	Chloroplast	GO:0051536;GO:0008173;GO:0006364;GO:0005737;GO:0003824	iron-sulfur cluster binding;RNA methyltransferase activity;rRNA processing;cytoplasm;catalytic activity	
-Cre02.g141126						
-Cre02.g073250				GO:0006351	"transcription, DNA-templated"	
-Cre02.g083850			Secretory pathway			
-Cre02.g127237			Mitochondrion			
-Cre02.g145231	GMM:27.3.99;GMM:11.1.20	RNA.regulation of transcription.unclassified;lipid metabolism.FA synthesis and FA elongation.MCD				
-Cre02.g095132						
-Cre02.g112800	GMM:31.1	cell.organisation				
-Cre02.g102500	GMM:31.2;GMM:28.2	cell.division;DNA.repair	Secretory pathway			RAD51C
-Cre02.g099601			Mitochondrion	GO:0003677	DNA binding	
-Cre02.g081450			Mitochondrion			CGL123
-Cre02.g118250	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005515	protein binding	SWB1
-Cre02.g143850				GO:0005515	protein binding	
-Cre02.g095069	GMM:21.5	redox.peroxiredoxin		GO:0055114;GO:0016491;GO:0016209	oxidation-reduction process;oxidoreductase activity;antioxidant activity	prx
-Cre02.g118500	GMM:31.4	cell.vesicle transport		GO:0030117;GO:0016192;GO:0006886;GO:0005515;GO:0005198	membrane coat;vesicle-mediated transport;intracellular protein transport;protein binding;structural molecule activity	COPB2
-Cre02.g142647						
-Cre02.g143487						
-Cre02.g142601			Secretory pathway			
-Cre02.g085701				GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre02.g078777	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC16
-Cre02.g089100	GMM:31.4	cell.vesicle transport				COPD1
-Cre02.g089000						
-Cre02.g088400	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0006508;GO:0005515;GO:0004252	proteolysis;protein binding;serine-type endopeptidase activity	DEG1A
-Cre02.g142186	GMM:31.2	cell.division	Chloroplast	GO:0003924	GTPase activity	FTSZ2
-Cre02.g090650						SEC20
-Cre02.g083950	GMM:29.2.1.1.1.1.83	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.PSRP3	Chloroplast	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	PSRP3
-Cre02.g144250			Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP769A1
-Cre02.g091567						
-Cre02.g085550			Mitochondrion			
-Cre02.g111000			Secretory pathway			RRA1
-Cre02.g142605			Chloroplast			
-Cre02.g102900	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g086550	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases	Chloroplast	GO:0051536;GO:0008173;GO:0006364;GO:0005737;GO:0003824	iron-sulfur cluster binding;RNA methyltransferase activity;rRNA processing;cytoplasm;catalytic activity	CGL122
-Cre02.g143600			Mitochondrion			FEE1
-Cre02.g119450			Chloroplast			
-Cre02.g100500	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG22
-Cre02.g097000	GMM:23.2.1.4;GMM:23.2	nucleotide metabolism.degradation.pyrimidine.dihydropyrimidinase;nucleotide metabolism.degradation	Secretory pathway	GO:0016787	hydrolase activity	DHP1
-Cre02.g101300	GMM:34.12	transport.metal		GO:0005515	protein binding	
-Cre02.g107150			Chloroplast			
-Cre02.g096150	GMM:21.6	redox.dismutases and catalases		GO:0055114;GO:0046872;GO:0006801;GO:0004784	oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity	MSD1
-Cre02.g120100	GMM:1.3.2	PS.calvin cycle.rubisco small subunit	Chloroplast			RBCS1
-Cre02.g119100				GO:0016787;GO:0008152	hydrolase activity;metabolic process	CER2
-Cre02.g076550			Mitochondrion			
-Cre02.g112266			Chloroplast			
-Cre02.g087050			Chloroplast			
-Cre02.g098950	GMM:31.4	cell.vesicle transport		GO:0005515	protein binding	SYP72
-Cre02.g074850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g103950						MIA1
-Cre02.g145500	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK24
-Cre02.g142046			Mitochondrion			
-Cre02.g096100			Chloroplast			
-Cre02.g119350			Mitochondrion			
-Cre02.g077100	GMM:21.2.2	redox.ascorbate and glutathione.glutathione	Chloroplast	GO:0042398;GO:0004357	cellular modified amino acid biosynthetic process;glutamate-cysteine ligase activity	GSH1
-Cre02.g096250				GO:0071949	FAD binding	FMO9
-Cre02.g083354	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
-Cre02.g103550	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0003743;GO:0003723	translational initiation;translation initiation factor activity;RNA binding	EIF1A
-Cre02.g091500						
-Cre02.g085257				GO:0016020	membrane	COP4
-Cre02.g117676						
-Cre02.g114850			Mitochondrion	GO:0016884;GO:0005515	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor;protein binding"	
-Cre02.g088300						CPK6
-Cre02.g073800						
-Cre02.g095096			Mitochondrion			
-Cre02.g078100	GMM:29.2.99;GMM:29.2.3	protein.synthesis.misc;protein.synthesis.initiation		GO:0005525;GO:0000049	GTP binding;tRNA binding	EIF5B1
-Cre02.g142066				GO:0005515	protein binding	
-Cre02.g091000			Chloroplast			
-Cre02.g080700	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Secretory pathway			BIP1
-Cre02.g111900			Secretory pathway			
-Cre02.g141586	GMM:27.3.54;GMM:27.3.42	RNA.regulation of transcription.histone acetyltransferases;RNA.regulation of transcription.bromodomain proteins		GO:0005515	protein binding	
-Cre02.g147800	GMM:34.99;GMM:29.3.4.99;GMM:28.99	transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified				SEC14
-Cre02.g092451						
-Cre02.g118400	GMM:31.1;GMM:27.2	cell.organisation;RNA.transcription				
-Cre02.g115200	GMM:29.2.1.2.2.527;GMM:29.2.1.2.2.0527	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L27A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L27A				RPL27A
-Cre02.g098400			Chloroplast			
-Cre02.g095048			Chloroplast			
-Cre02.g141006						
-Cre02.g105050						
-Cre02.g143367						
-Cre02.g075994			Chloroplast			
-Cre02.g102400	GMM:27.3.50;GMM:27.2	RNA.regulation of transcription.general transcription;RNA.transcription		GO:0008270;GO:0006351;GO:0003676	"zinc ion binding;transcription, DNA-templated;nucleic acid binding"	RPC1
-Cre02.g116600	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG23
-Cre02.g104900	GMM:3.5	minor CHO metabolism.others		GO:0005525	GTP binding	FAP204
-Cre02.g076100			Chloroplast			
-Cre02.g073150			Secretory pathway			
-Cre02.g079150						
-Cre02.g090900						MCP9
-Cre02.g084100			Chloroplast			
-Cre02.g110900						
-Cre02.g110700						
-Cre02.g097100			Mitochondrion			
-Cre02.g113652	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
-Cre02.g086250						
-Cre02.g102100			Mitochondrion			
-Cre02.g087900	GMM:30.6;GMM:30.2.8.2;GMM:30.2.20;GMM:30.2.17;GMM:30.2.1;GMM:29.4.1.57;GMM:29.4	signalling.MAP kinases;signalling.receptor kinases.leucine rich repeat VIII.type 2;signalling.receptor kinases.wheat LRK10 like;signalling.receptor kinases.DUF 26;signalling.receptor kinases.leucine rich repeat I;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g095107	GMM:34.2	transport.sugars		GO:0016021;GO:0008643;GO:0005351;GO:0000139	integral component of membrane;carbohydrate transport;sugar:proton symporter activity;Golgi membrane	
-Cre02.g142506						
-Cre02.g082100						
-Cre02.g142526						
-Cre02.g118550			Chloroplast			
-Cre02.g108750	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g107050	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Chloroplast	GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC5
-Cre02.g089800			Mitochondrion			
-Cre02.g095141				GO:0071949;GO:0055114;GO:0016491	FAD binding;oxidation-reduction process;oxidoreductase activity	
-Cre02.g081176				GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
-Cre02.g112850	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0071949	FAD binding	COQ6
-Cre02.g076950	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB4
-Cre02.g141500			Secretory pathway			
-Cre02.g113800						
-Cre02.g092950			Secretory pathway			
-Cre02.g117150	GMM:29.5.9	protein.degradation.AAA type	Mitochondrion			
-Cre02.g142200						
-Cre02.g095800				GO:0006352;GO:0005669	"DNA-templated transcription, initiation;transcription factor TFIID complex"	
-Cre02.g111550	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g090150	GMM:18.4.4;GMM:18.4.2	"Co-factor and vitamine metabolism.pantothenate.pantoate beta-alanine ligase (PANC, pantothenate synthetase);Co-factor and vitamine metabolism.pantothenate.3-methyl-2-oxobutanoate hydroxymethyltransferase (KPHMT,PANB)"		GO:0015940;GO:0004592	pantothenate biosynthetic process;pantoate-beta-alanine ligase activity	PAN3
-Cre02.g079003			Mitochondrion	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
-Cre02.g098150	GMM:3.7	minor CHO metabolism.sugar kinases		GO:0016773;GO:0005975	"phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process"	XYK1
-Cre02.g095154						
-Cre02.g141250	GMM:29.4;GMM:17.1.2	protein.postranslational modification;hormone metabolism.abscisic acid.signal transduction		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre02.g119650			Chloroplast			GNT3
-Cre02.g114300			Secretory pathway			
-Cre02.g101900			Mitochondrion	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	EXN6
-Cre02.g082450			Mitochondrion			
-Cre02.g116250			Chloroplast			
-Cre02.g118000	GMM:28.2	DNA.repair		GO:0006281;GO:0003904	DNA repair;deoxyribodipyrimidine photo-lyase activity	PHR2
-Cre02.g141606	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species		GO:0030286;GO:0007018;GO:0003777	dynein complex;microtubule-based movement;microtubule motor activity	DHC9
-Cre02.g115800						
-Cre02.g112433			Chloroplast			
-Cre02.g142847						
-Cre02.g081150						
-Cre02.g095250	GMM:29.2.2	protein.synthesis.ribosome biogenesis	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre02.g143861			Secretory pathway			
-Cre02.g080400			Chloroplast			
-Cre02.g076850	GMM:33.99	development.unspecified		GO:0005515	protein binding	
-Cre02.g117600	GMM:29.4	protein.postranslational modification	Secretory pathway			
-Cre02.g106000			Secretory pathway			
-Cre02.g098650			Chloroplast			
-Cre02.g074217			Mitochondrion			
-Cre02.g077925			Mitochondrion			
-Cre02.g082950						
-Cre02.g119850	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Mitochondrion	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE9
-Cre02.g143127						
-Cre02.g095094						
-Cre02.g107450	GMM:14.1;GMM:1.1.1.2	S-assimilation.APS;PS.lightreaction.photosystem II.PSII polypeptide subunits	Mitochondrion	GO:0004781	sulfate adenylyltransferase (ATP) activity	ATS2
-Cre02.g095123			Mitochondrion			
-Cre02.g146000						
-Cre02.g116200			Chloroplast			
-Cre02.g143392			Mitochondrion			
-Cre02.g098250			Chloroplast			
-Cre02.g141600	GMM:10.6.2	cell wall.degradation.mannan-xylose-arabinose-fucose	Secretory pathway			EBM3
-Cre02.g114001			Mitochondrion			
-Cre02.g095129	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g080100	GMM:27.1.3.5;GMM:27.1	RNA.processing.3' end processing.CPSF73b;RNA.processing				
-Cre02.g108500			Mitochondrion			
-Cre02.g142126						FAP115
-Cre02.g114000						
-Cre02.g076650			Chloroplast			
-Cre02.g086200			Secretory pathway			
-Cre02.g099000	GMM:31.4	cell.vesicle transport		GO:0005515	protein binding	SYP71
-Cre02.g078507			Chloroplast	GO:0010207	photosystem II assembly	
-Cre02.g113550			Mitochondrion			
-Cre02.g077650				GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	
-Cre02.g143500	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Mitochondrion	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE28
-Cre02.g141946	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g147750			Chloroplast			FAP209
-Cre02.g113850	GMM:19.5	tetrapyrrole synthesis.porphobilinogen deaminase	Chloroplast	GO:0033014;GO:0004418	tetrapyrrole biosynthetic process;hydroxymethylbilane synthase activity	PBGD2
-Cre02.g141950	GMM:34.99;GMM:29.3.4.99;GMM:28.99	transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified				MOT19
-Cre02.g147450			Secretory pathway	GO:0016020	membrane	
-Cre02.g101400	GMM:31.4	cell.vesicle transport		GO:0030132;GO:0030130;GO:0016192;GO:0006886;GO:0005198	clathrin coat of coated pit;clathrin coat of trans-Golgi network vesicle;vesicle-mediated transport;intracellular protein transport;structural molecule activity	CHC1
-Cre02.g141566			Secretory pathway			
-Cre02.g144009			Secretory pathway			
-Cre02.g108650	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g107750			Chloroplast			PCD1
-Cre02.g109366	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	
-Cre02.g109900						
-Cre02.g104050						
-Cre02.g095086				GO:0016020	membrane	
-Cre02.g143801			Mitochondrion			
-Cre02.g100566						
-Cre02.g143000	GMM:11.3.1;GMM:11.3	lipid metabolism.phospholipid synthesis.1-acylglycerol-3-phosphate O-acyltransferase;lipid metabolism.phospholipid synthesis	Chloroplast	GO:0016746;GO:0008152;GO:0004366	"transferase activity, transferring acyl groups;metabolic process;glycerol-3-phosphate O-acyltransferase activity"	PLSB1
-Cre02.g086150			Mitochondrion			
-Cre02.g144000				GO:0016798	"hydrolase activity, acting on glycosyl bonds"	
-Cre02.g143447			Secretory pathway			
-Cre02.g115500			Chloroplast			
-Cre02.g106300			Secretory pathway			
-Cre02.g104500	GMM:30.99;GMM:29.9;GMM:20.2.1	signalling.unspecified;protein.co-chaperones;stress.abiotic.heat	Chloroplast			CDJ4
-Cre02.g100000	GMM:29.1;GMM:28.1	protein.aa activation;DNA.synthesis/chromatin structure		GO:0003676	nucleic acid binding	RFA2
-Cre02.g081350			Mitochondrion	GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre02.g144050	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG36
-Cre02.g082150			Mitochondrion			
-Cre02.g119201						
-Cre02.g095035						
-Cre02.g084400	GMM:26.7;GMM:13.2.2.2	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH9
-Cre02.g108100	GMM:29.5	protein.degradation				
-Cre02.g090200						
-Cre02.g095046			Chloroplast			
-Cre02.g105287				GO:0003676	nucleic acid binding	
-Cre02.g092150	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI		GO:0005515	protein binding	CSL
-Cre02.g089600						XPD2
-Cre02.g085450	GMM:19.8	tetrapyrrole synthesis.coproporphyrinogen III oxidase	Chloroplast	GO:0055114;GO:0006779;GO:0004109	oxidation-reduction process;porphyrin-containing compound biosynthetic process;coproporphyrinogen oxidase activity	CPX1
-Cre02.g080600	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Secretory pathway			BIP2
-Cre02.g147050			Mitochondrion			
-Cre02.g103000			Secretory pathway			
-Cre02.g114250	GMM:18.5.2.5	Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.naphthoate synthase	Mitochondrion			MEN2
-Cre02.g077300	GMM:29.2.2.3.3;GMM:27.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases;RNA.processing		GO:0008168;GO:0008033;GO:0006364;GO:0003723	methyltransferase activity;tRNA processing;rRNA processing;RNA binding	NOP1
-Cre02.g113150			Chloroplast			
-Cre02.g101500	GMM:34.14	transport.unspecified cations				MRS1
-Cre02.g142150			Secretory pathway			
-Cre02.g092550	GMM:35.1.27;GMM:29.6	not assigned.no ontology.tetratricopeptide repeat (TPR);protein.folding				TPR1
-Cre02.g104876						
-Cre02.g081900			Secretory pathway			
-Cre02.g094801			Chloroplast			
-Cre02.g084000			Chloroplast			
-Cre02.g101950	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre02.g141186	GMM:20.2.1	stress.abiotic.heat				
-Cre02.g116000						
-Cre02.g111800			Chloroplast			
-Cre02.g106550				GO:0006397;GO:0005737;GO:0005634;GO:0003723	mRNA processing;cytoplasm;nucleus;RNA binding	
-Cre02.g092050	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP6
-Cre02.g087950	GMM:29.1.10	protein.aa activation.methionine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0000166;GO:0000049	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding;tRNA binding	TSM1
-Cre02.g095068			Chloroplast			
-Cre02.g142306				GO:0005515	protein binding	
-Cre02.g120301						SELH
-Cre02.g116650						
-Cre02.g098700	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre02.g095151	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre02.g075700	GMM:29.2.1.99.2.19;GMM:29.2.1.2.2.19	protein.synthesis.ribosomal protein.unknown.large subunit.L19;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L19		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL19
-Cre02.g142800	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXz
-Cre02.g085900	GMM:3.4.5	minor CHO metabolism.myo-inositol.inositol phosphatase	Chloroplast.Stroma	GO:0046854	phosphatidylinositol phosphorylation	IPP1
-Cre02.g088651						
-Cre02.g095137	GMM:5.8	fermentation.pyruvate:ferredoxin 2-oxidoreductase (CoA-acetylating)	Chloroplast	GO:0055114;GO:0030976;GO:0016903;GO:0016491;GO:0003824	"oxidation-reduction process;thiamine pyrophosphate binding;oxidoreductase activity, acting on the aldehyde or oxo group of donors;oxidoreductase activity;catalytic activity"	PFR1
-Cre02.g096601				GO:0005515	protein binding	
-Cre02.g104600						
-Cre02.g095093						
-Cre02.g120001			Secretory pathway			
-Cre02.g145133						
-Cre02.g142967						
-Cre02.g141726			Chloroplast			
-Cre02.g095072						FAP144
-Cre02.g100850	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
-Cre02.g119950			Secretory pathway			
-Cre02.g078150	GMM:33.99	development.unspecified		GO:0005515	protein binding	
-Cre02.g079800			Mitochondrion			ASA6
-Cre02.g081700						PHC66
-Cre02.g142827			Chloroplast			
-Cre02.g095152						
-Cre02.g105300						FAP231
-Cre02.g074400			Mitochondrion			
-Cre02.g118050	GMM:31.3	cell.cycle	Chloroplast			CYCU1
-Cre02.g094500	GMM:29.2.1.99.1.21	protein.synthesis.ribosomal protein.unknown.small subunit.S21		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	
-Cre02.g102200						
-Cre02.g099150	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0006886	intracellular protein transport	SNAPA1
-Cre02.g117700			Mitochondrion			
-Cre02.g095037			Mitochondrion			
-Cre02.g115650	GMM:4.3.10;GMM:4.1.10;GMM:1.3.6	glycolysis.unclear/dually targeted.aldolase;glycolysis.cytosolic branch.aldolase;PS.calvin cycle.aldolase	Chloroplast	GO:0006096;GO:0004332	glycolytic process;fructose-bisphosphate aldolase activity	FBA4
-Cre02.g074474						
-Cre02.g104201	GMM:30.2.25;GMM:29.4	signalling.receptor kinases.wall associated kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g141000	GMM:32;GMM:27.1.20	"micro RNA, natural antisense etc;RNA.processing.degradation dicer"		GO:0016891;GO:0006396;GO:0005524;GO:0004525;GO:0003723;GO:0003676	"endoribonuclease activity, producing 5'-phosphomonoesters;RNA processing;ATP binding;ribonuclease III activity;RNA binding;nucleic acid binding"	DCL1
-Cre02.g095095			Secretory pathway			PHC12
-Cre02.g091400	GMM:29.6.2.5;GMM:29.5.5;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease;stress.abiotic.heat	Mitochondrion	GO:0005524	ATP binding	CLPB2
-Cre02.g099350			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR8
-Cre02.g074100			Chloroplast			
-Cre02.g079650			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre02.g090350			Secretory pathway			
-Cre02.g097250	GMM:29.3.1	protein.targeting.nucleus		GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	
-Cre02.g097600			Secretory pathway			
-Cre02.g095118			Chloroplast			
-Cre02.g074626						CSB11
-Cre02.g095200	GMM:34.16;GMM:29.2.2.1	transport.ABC transporters and multidrug resistance systems;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre02.g145050	GMM:16.1.1.4	secondary metabolism.isoprenoids.non-mevalonate pathway.CMK	Chloroplast	GO:0050515;GO:0016114;GO:0005524	4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity;terpenoid biosynthetic process;ATP binding	CMK1
-Cre02.g108400	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis	Secretory pathway	GO:0016021;GO:0008250;GO:0004579	integral component of membrane;oligosaccharyltransferase complex;dolichyl-diphosphooligosaccharide-protein glycotransferase activity	DAD1
-Cre02.g099650				GO:0016021	integral component of membrane	
-Cre02.g084850						
-Cre02.g141626				GO:0008168;GO:0006479	methyltransferase activity;protein methylation	
-Cre02.g096400						
-Cre02.g095121	GMM:29.1.30;GMM:27.4;GMM:23.5.2	protein.aa activation.pseudouridylate synthase;RNA.RNA binding;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase	Chloroplast	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS9
-Cre02.g080250			Chloroplast	GO:0016020	membrane	YGG1
-Cre02.g095139			Secretory pathway			
-Cre02.g114650			Mitochondrion			
-Cre02.g087750	GMM:30.2.20;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.wheat LRK10 like;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g095061						
-Cre02.g079050			Mitochondrion	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	DGTT5
-Cre02.g109550	GMM:13.1.3.6.1.10;GMM:13.1.3.6.1.1	amino acid metabolism.synthesis.aspartate family.misc.homoserine.bifunctional aspartate kinase/homoserine dehydrogenase;amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate kinase		GO:0055114;GO:0050661;GO:0016491;GO:0006520	oxidation-reduction process;NADP binding;oxidoreductase activity;cellular amino acid metabolic process	HSD1
-Cre02.g107256			Mitochondrion			
-Cre02.g075200			Chloroplast			
-Cre02.g111700	GMM:18.8	Co-factor and vitamine metabolism.ubiquinone	Chloroplast	GO:0005509	calcium ion binding	EFH1
-Cre02.g112500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g095900			Chloroplast	GO:0005515	protein binding	ROC114
-Cre02.g095104			Chloroplast			
-Cre02.g083350			Secretory pathway	GO:0003677	DNA binding	
-Cre02.g078939	GMM:30.11;GMM:28.2	signalling.light;DNA.repair	Chloroplast			
-Cre02.g081800	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre02.g142050			Mitochondrion			
-Cre02.g144300	GMM:34.2	transport.sugars				
-Cre02.g077976						
-Cre02.g145452						
-Cre02.g143800	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0005524	ATP binding	
-Cre02.g087000			Secretory pathway			
-Cre02.g087666			Chloroplast	GO:0004867	serine-type endopeptidase inhibitor activity	
-Cre02.g112750	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Chloroplast	GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre02.g075800			Mitochondrion			
-Cre02.g077150			Chloroplast			CPLD14
-Cre02.g147350						
-Cre02.g115000			Chloroplast			
-Cre02.g088950			Mitochondrion			
-Cre02.g145600						
-Cre02.g073700	GMM:19.7	tetrapyrrole synthesis.uroporphyrinogen decarboxylase	Chloroplast	GO:0006779;GO:0004853	porphyrin-containing compound biosynthetic process;uroporphyrinogen decarboxylase activity	UROD3
-Cre02.g085050	GMM:33.99;GMM:30.11	development.unspecified;signalling.light		GO:0005515	protein binding	
-Cre02.g143352			Chloroplast			
-Cre02.g109683	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)		GO:0046983	protein dimerization activity	
-Cre02.g089400			Secretory pathway			HRP2
-Cre02.g098000	GMM:26.3;GMM:10.6.2	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	EBM2
-Cre02.g077850	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP212
-Cre02.g141350	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				DRC10
-Cre02.g146750			Mitochondrion			
-Cre02.g109333			Mitochondrion			
-Cre02.g095125			Secretory pathway			
-Cre02.g144605			Chloroplast			
-Cre02.g110800	GMM:34.4	transport.nitrate	Chloroplast	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NRT2.6
-Cre02.g141206						
-Cre02.g088450			Secretory pathway	GO:0035091	phosphatidylinositol binding	CPLD29
-Cre02.g145700	GMM:34.3	transport.amino acids	Mitochondrion			AOT1
-Cre02.g141800	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g080500	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway	GO:0016758;GO:0008152	"transferase activity, transferring hexosyl groups;metabolic process"	
-Cre02.g095044						
-Cre02.g112650						
-Cre02.g111108						
-Cre02.g142850	GMM:27.1	RNA.processing				SMP11
-Cre02.g107950			Secretory pathway			
-Cre02.g112366						
-Cre02.g107550	GMM:33.99	development.unspecified				
-Cre02.g095127	GMM:3.5	minor CHO metabolism.others	Chloroplast			
-Cre02.g089311			Secretory pathway	GO:0003993	acid phosphatase activity	
-Cre02.g098500			Mitochondrion			
-Cre02.g084800	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006259;GO:0005694;GO:0005524;GO:0003824;GO:0003677;GO:0000737	"DNA metabolic process;chromosome;ATP binding;catalytic activity;DNA binding;DNA catabolic process, endonucleolytic"	SPO11A
-Cre02.g143087						
-Cre02.g094050				GO:0003824	catalytic activity	PIGO
-Cre02.g142747						
-Cre02.g118900						MYG1
-Cre02.g082700	GMM:9.7;GMM:29.1	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase;protein.aa activation	Mitochondrion	GO:0055114;GO:0016627;GO:0016021;GO:0006784	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;integral component of membrane;heme a biosynthetic process"	COX15
-Cre02.g109100	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE23
-Cre02.g074000	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				POC18
-Cre02.g095058			Secretory pathway			
-Cre02.g116350			Secretory pathway			
-Cre02.g100200	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion			NUOP3
-Cre02.g092900	GMM:23.1.2.31	nucleotide metabolism.synthesis.purine.GMP synthetase		GO:0016787;GO:0006541;GO:0006177;GO:0006164;GO:0005524;GO:0003922	hydrolase activity;glutamine metabolic process;GMP biosynthetic process;purine nucleotide biosynthetic process;ATP binding;GMP synthase (glutamine-hydrolyzing) activity	GUA1
-Cre02.g096700	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre02.g095148			Chloroplast			
-Cre02.g100950			Mitochondrion			
-Cre02.g085750	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway			
-Cre02.g106900						
-Cre02.g143050	GMM:29.2.1.2.2.99	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.unknown				RPP2
-Cre02.g105026			Mitochondrion			
-Cre02.g089650			Secretory pathway			
-Cre02.g091850	GMM:13.2.6.3;GMM:11.9.4.3	amino acid metabolism.degradation.aromatic aa.tryptophan;lipid metabolism.lipid degradation.beta-oxidation.enoyl CoA hydratase	Mitochondrion	GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre02.g141046						
-Cre02.g077800	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP310
-Cre02.g095113	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation				TFC-E
-Cre02.g095059						
-Cre02.g099900			Chloroplast			
-Cre02.g090700	GMM:30.6;GMM:3.6;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK8
-Cre02.g147150			Chloroplast			
-Cre02.g077451			Mitochondrion			
-Cre02.g141550	GMM:29.5	protein.degradation		GO:0006508;GO:0004176	proteolysis;ATP-dependent peptidase activity	LON
-Cre02.g119526						
-Cre02.g147850	GMM:29.6.2.5	protein.folding.chaperones and co-chaperones.HSP100s	Mitochondrion	GO:0070011;GO:0016887;GO:0009376;GO:0005737;GO:0005524	"peptidase activity, acting on L-amino acid peptides;ATPase activity;HslUV protease complex;cytoplasm;ATP binding"	HSLU2
-Cre02.g143400	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE27
-Cre02.g144006			Mitochondrion			
-Cre02.g120200			Chloroplast			
-Cre02.g108550	GMM:34.3	transport.amino acids		GO:0016020;GO:0015171;GO:0003333	membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport	AOC3
-Cre02.g147550						
-Cre02.g142266	GMM:26.1;GMM:16.1.4.7	misc.misc2;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Chloroplast	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
-Cre02.g086076	GMM:29.1.30	protein.aa activation.pseudouridylate synthase	Chloroplast			PUS4
-Cre02.g101100			Chloroplast			
-Cre02.g146200	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre02.g100900						
-Cre02.g080800			Mitochondrion			
-Cre02.g109150			Secretory pathway			
-Cre02.g141906						
-Cre02.g108200			Chloroplast			CGL80
-Cre02.g106350						CGL68
-Cre02.g109200						
-Cre02.g075400						
-Cre02.g117300	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion			MRPL45
-Cre02.g144002			Chloroplast	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS20
-Cre02.g142106						
-Cre02.g143407						
-Cre02.g093800	GMM:21.1	redox.thioredoxin				NRX3
-Cre02.g090750						
-Cre02.g093350						
-Cre02.g106250	GMM:27.4	RNA.RNA binding				LAL2
-Cre02.g078885	GMM:34	transport	Mitochondrion	GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	
-Cre02.g084450	GMM:26.7;GMM:13.2.2.2	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH10
-Cre02.g095075						
-Cre02.g095082	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006334;GO:0005634	nucleosome assembly;nucleus	
-Cre02.g098050			Secretory pathway			
-Cre02.g142346						
-Cre02.g088151			Secretory pathway			
-Cre02.g142907			Chloroplast			
-Cre02.g113300			Chloroplast			OPR6
-Cre02.g143587						
-Cre02.g111400			Secretory pathway			
-Cre02.g141100	GMM:33.99;GMM:1.1.99	development.unspecified;PS.lightreaction.unspecified	Chloroplast			CPL23
-Cre02.g081050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP24
-Cre02.g104400			Secretory pathway	GO:0006355	"regulation of transcription, DNA-templated"	
-Cre02.g114150						
-Cre02.g103350	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"		GO:0016884	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor"	
-Cre02.g082050	GMM:31.3	cell.cycle				
-Cre02.g099055			Secretory pathway			
-Cre02.g146550						
-Cre02.g141786	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE25
-Cre02.g110100	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0016021;GO:0006952	integral component of membrane;defense response	MLO1
-Cre02.g109000			Secretory pathway	GO:0042546;GO:0016020;GO:0008107	cell wall biogenesis;membrane;galactoside 2-alpha-L-fucosyltransferase activity	
-Cre02.g118750						
-Cre02.g095088			Chloroplast			
-Cre02.g143287						
-Cre02.g089950	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B				IFT20
-Cre02.g076700			Chloroplast			
-Cre02.g091700	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				RIB72
-Cre02.g083700			Chloroplast			LSP1
-Cre02.g082300						SUR6
-Cre02.g115400	GMM:26.16	misc.myrosinases-lectin-jacalin	Secretory pathway			
-Cre02.g083273			Secretory pathway			
-Cre02.g091226			Secretory pathway			
-Cre02.g073826						
-Cre02.g113100				GO:0006850;GO:0005743	mitochondrial pyruvate transport;mitochondrial inner membrane	
-Cre02.g103770			Chloroplast			
-Cre02.g094900	GMM:29.7	protein.glycosylation				
-Cre02.g093084			Chloroplast			
-Cre02.g102551			Mitochondrion			CSV1
-Cre02.g110550						
-Cre02.g114575						
-Cre02.g097221			Secretory pathway			
-Cre02.g113752						
-Cre02.g075050	GMM:34.7	transport.phosphate		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	PTA1
-Cre02.g112300	GMM:29.5.3	protein.degradation.cysteine protease		GO:0006508;GO:0005622;GO:0004198	proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity	MOT15
-Cre02.g144400	GMM:29.2.1.1.4.1;GMM:29.2.1.1.3.1.12;GMM:29.2.1.1.2.2.2;GMM:29.2.1.1.1.1.12	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.30S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.30S subunit.S12;protein.synthesis.ribosomal protein.prokaryotic.mitochondrion.50S subunit.L2;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S12	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS12
-Cre02.g095074	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole				VPS11
-Cre02.g101850	GMM:26.24	misc.GCN5-related N-acetyltransferase		GO:0008080	N-acetyltransferase activity	
-Cre02.g094350			Mitochondrion			
-Cre02.g087600	GMM:28.99	DNA.unspecified		GO:0005524	ATP binding	
-Cre02.g115508				GO:0005515	protein binding	
-Cre02.g088850	GMM:18.3.2;GMM:18	Co-factor and vitamine metabolism.riboflavin.riboflavin synthase;Co-factor and vitamine metabolism	Chloroplast	GO:0009349;GO:0009231	riboflavin synthase complex;riboflavin biosynthetic process	RFS2
-Cre02.g110250			Chloroplast			PCD2
-Cre02.g106650	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g104725						
-Cre02.g087300	GMM:25	C1-metabolism		GO:0055114;GO:0004616	oxidation-reduction process;phosphogluconate dehydrogenase (decarboxylating) activity	
-Cre02.g086700	GMM:31.4	cell.vesicle transport		GO:0017119;GO:0006886	Golgi transport complex;intracellular protein transport	COG7
-Cre02.g141486						
-Cre02.g078950	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP17
-Cre02.g084300	GMM:18.8;GMM:18.5.2.8	"Co-factor and vitamine metabolism.ubiquinone;Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.2-phytyl-1,4-naphthoquinone methyltransferase"	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	COQ5
-Cre02.g076433						
-Cre02.g145628						
-Cre02.g116450	GMM:7.2.3	OPP.non-reductive PP.ribulose-phosphate 3-epimerase		GO:0016857;GO:0005975	"racemase and epimerase activity, acting on carbohydrates and derivatives;carbohydrate metabolic process"	RPE2
-Cre02.g080900	GMM:21.5	redox.peroxiredoxin	Mitochondrion	GO:0016491	oxidoreductase activity	PRX4
-Cre02.g107300	GMM:13.1.3.5.1;GMM:13.1.3.5	amino acid metabolism.synthesis.aspartate family.lysine.dihydrodipicolinate synthase;amino acid metabolism.synthesis.aspartate family.lysine	Chloroplast	GO:0016829;GO:0008152	lyase activity;metabolic process	DPS1
-Cre02.g086850			Chloroplast			
-Cre02.g095450	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs		GO:0006457	protein folding	FKB16-6
-Cre02.g106450	GMM:11.8.10	"lipid metabolism.exotics (steroids, squalene etc).phosphatidylcholine-sterol O-acyltransferase"	Secretory pathway	GO:0005524	ATP binding	
-Cre02.g110000			Secretory pathway			
-Cre02.g105800			Secretory pathway			
-Cre02.g075500			Mitochondrion			
-Cre02.g076250	GMM:29.2.4	protein.synthesis.elongation	Chloroplast	GO:0005525	GTP binding	EFG1
-Cre02.g103050			Chloroplast			
-Cre02.g084900						
-Cre02.g095111	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole	Secretory pathway			VSR1
-Cre02.g095053				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g112050						
-Cre02.g108900						CAM6
-Cre02.g145451						
-Cre02.g091950	GMM:30.1.1;GMM:23.1.2	signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG45
-Cre02.g141406	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	
-Cre02.g111200						
-Cre02.g105950				GO:0006355;GO:0003713	"regulation of transcription, DNA-templated;transcription coactivator activity"	FAP174
-Cre02.g105750						
-Cre02.g119000	GMM:31.1	cell.organisation		GO:0005777	peroxisome	PEX19
-Cre02.g073550	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0006334;GO:0005634	nucleosome assembly;nucleus	
-Cre02.g104300			Mitochondrion			
-Cre02.g082500	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0042651;GO:0015979;GO:0009522;GO:0005516	thylakoid membrane;photosynthesis;photosystem I;calmodulin binding	PSAN
-Cre02.g144650	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB12
-Cre02.g141106			Mitochondrion			
-Cre02.g147600			Chloroplast			
-Cre02.g086456						
-Cre02.g142700						
-Cre02.g095102	GMM:31.4;GMM:17.2.2	cell.vesicle transport;hormone metabolism.auxin.signal transduction		GO:0035091	phosphatidylinositol binding	VPS5C
-Cre02.g095042						
-Cre02.g097500	GMM:30.6;GMM:30.2.8.2;GMM:29.4	signalling.MAP kinases;signalling.receptor kinases.leucine rich repeat VIII.type 2;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g090500	GMM:29.2.3;GMM:29.2.2.3.5;GMM:28.1	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL10
-Cre02.g084600						
-Cre02.g095080			Secretory pathway			
-Cre02.g087551	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0042147	"retrograde transport, endosome to Golgi"	
-Cre02.g113450						
-Cre02.g096455						
-Cre02.g115583						
-Cre02.g141686			Mitochondrion			
-Cre02.g095133			Chloroplast			
-Cre02.g103426						
-Cre02.g141005						
-Cre02.g082600			Chloroplast			
-Cre02.g144900	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0016787	hydrolase activity	MPA4
-Cre02.g109750			Secretory pathway			
-Cre02.g087250			Secretory pathway			
-Cre02.g095032						
-Cre02.g143047						
-Cre02.g077550			Secretory pathway			PHC62
-Cre02.g080350	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0036459;GO:0016579;GO:0008270	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination;zinc ion binding	
-Cre02.g083100			Secretory pathway			PRL1
-Cre02.g142707						
-Cre02.g118350						MFT14
-Cre02.g105200			Secretory pathway	GO:0006629	lipid metabolic process	
-Cre02.g075100	GMM:35.1.27	not assigned.no ontology.tetratricopeptide repeat (TPR)	Mitochondrion			TPR3
-Cre02.g142667			Mitochondrion			
-Cre02.g117400				GO:0055114	oxidation-reduction process	
-Cre02.g093950	GMM:23.4.3	nucleotide metabolism.phosphotransfer and pyrophosphatases.uridylate kinase	Chloroplast	GO:0009041;GO:0006221	uridylate kinase activity;pyrimidine nucleotide biosynthetic process	
-Cre02.g095039			Chloroplast			
-Cre02.g090451			Chloroplast			
-Cre02.g117000	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG21
-Cre02.g108300			Chloroplast			
-Cre02.g086750	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899	"transcription, DNA-templated;DNA-directed RNA polymerase activity"	
-Cre02.g100350						
-Cre02.g095136			Chloroplast			
-Cre02.g094600			Chloroplast			
-Cre02.g076400	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole				VPS25
-Cre02.g079351			Secretory pathway			
-Cre02.g079850	GMM:28.2	DNA.repair		GO:0006281;GO:0003684	DNA repair;damaged DNA binding	POLK1
-Cre02.g096750			Secretory pathway			
-Cre02.g104750			Secretory pathway			
-Cre02.g144450						FAP1
-Cre02.g101200	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified				
-Cre02.g142446						
-Cre02.g119700	GMM:31.2;GMM:29.5.11.20	cell.division;protein.degradation.ubiquitin.proteasom	Secretory pathway	GO:0009341;GO:0005975;GO:0004565	beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity	
-Cre02.g080050				GO:0008270;GO:0003677	zinc ion binding;DNA binding	
-Cre02.g088200	GMM:21.1.1;GMM:21.1;GMM:1.1.1.3	redox.thioredoxin.PDIL;redox.thioredoxin;PS.lightreaction.photosystem II.biogenesis	Secretory pathway	GO:0045454	cell redox homeostasis	RB60
-Cre02.g143350	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Chloroplast	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE6
-Cre02.g091150	GMM:29.3.4.2	protein.targeting.secretory pathway.golgi		GO:0030127;GO:0008270;GO:0006888;GO:0006886	COPII vesicle coat;zinc ion binding;ER to Golgi vesicle-mediated transport;intracellular protein transport	SEC24A
-Cre02.g110650			Secretory pathway			
-Cre02.g095043						
-Cre02.g115850						
-Cre02.g074758	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG8
-Cre02.g141386	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0005524;GO:0004386	ATP binding;helicase activity	
-Cre02.g112150			Secretory pathway			
-Cre02.g081300			Mitochondrion	GO:0016787	hydrolase activity	
-Cre02.g114450			Chloroplast			
-Cre02.g143547						
-Cre02.g094650	GMM:3.5	minor CHO metabolism.others	Mitochondrion	GO:0005525	GTP binding	
-Cre02.g085650	GMM:28.99	DNA.unspecified		GO:0016888	"endodeoxyribonuclease activity, producing 5'-phosphomonoesters"	
-Cre02.g114800						
-Cre02.g085400						CSC1
-Cre02.g107000	GMM:31.3;GMM:31.2;GMM:29.4	cell.cycle;cell.division;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g111250						
-Cre02.g080750						
-Cre02.g088250	GMM:11.1.2	lipid metabolism.FA synthesis and FA elongation.acetyl CoA transacylase				MCT2
-Cre02.g107400						
-Cre02.g102350	GMM:29.5.2	protein.degradation.autophagy				ATG3
-Cre02.g112333	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g092400	GMM:29.3.1	protein.targeting.nucleus		GO:0006810;GO:0005622	transport;intracellular	
-Cre02.g114700	GMM:31.6.1.5.2;GMM:31.3.1;GMM:29.6.3.2	cell.motility.eukaryotes.radial spoke.stalk;cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	RSP12
-Cre02.g100533			Chloroplast			
-Cre02.g105100			Chloroplast			
-Cre02.g141351						
-Cre02.g145550						
-Cre02.g080950			Chloroplast			
-Cre02.g103800			Secretory pathway			
-Cre02.g106800			Chloroplast			
-Cre02.g145850	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP112
-Cre02.g095146						
-Cre02.g098100	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion			
-Cre02.g113376						
-Cre02.g144550	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	
-Cre02.g144005			Secretory pathway			
-Cre02.g086000	GMM:14.1	S-assimilation.APS		GO:0003824	catalytic activity	ARS8
-Cre02.g107650			Chloroplast			
-Cre02.g093450	GMM:4.3.10;GMM:4.1.10;GMM:1.3.6	glycolysis.unclear/dually targeted.aldolase;glycolysis.cytosolic branch.aldolase;PS.calvin cycle.aldolase		GO:0006096;GO:0004332	glycolytic process;fructose-bisphosphate aldolase activity	FBA2
-Cre02.g093500			Secretory pathway	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	SSD1
-Cre02.g096850			Secretory pathway			
-Cre02.g088551			Secretory pathway			
-Cre02.g082800			Secretory pathway	GO:0003677	DNA binding	
-Cre02.g119500						
-Cre02.g083000						
-Cre02.g116400						DII7
-Cre02.g091600						
-Cre02.g147302	GMM:13.1.1.2.1	amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase				
-Cre02.g081500	GMM:34.11	transport.NDP-sugars at the ER		GO:0016021;GO:0006810	integral component of membrane;transport	
-Cre02.g073300			Mitochondrion			
-Cre02.g098600	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g076050				GO:0005515	protein binding	
-Cre02.g100300	GMM:30.4;GMM:3.4;GMM:29.5.11	signalling.phosphinositides;minor CHO metabolism.myo-inositol;protein.degradation.ubiquitin		GO:0016773	"phosphotransferase activity, alcohol group as acceptor"	
-Cre02.g111526						
-Cre02.g140941			Chloroplast			
-Cre02.g111500	GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g086050	GMM:29.1.30	protein.aa activation.pseudouridylate synthase		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS4
-Cre02.g117200	GMM:31.2;GMM:29.6;GMM:29.5.11.20	cell.division;protein.folding;protein.degradation.ubiquitin.proteasom	Chloroplast	GO:0009341;GO:0005975;GO:0004565	beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity	
-Cre02.g095294						
-Cre02.g099550	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g145000	GMM:27.1	RNA.processing	Mitochondrion	GO:0006364	rRNA processing	
-Cre02.g074900	GMM:35.1.19	not assigned.no ontology.C2 domain-containing protein	Mitochondrion	GO:0005515	protein binding	
-Cre02.g141666			Secretory pathway			
-Cre02.g097150						AGG5
-Cre02.g117850	GMM:30;GMM:29.5.11.5;GMM:29.5.11;GMM:11	signalling;protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin;lipid metabolism		GO:0004843	thiol-dependent ubiquitin-specific protease activity	
-Cre02.g074250			Chloroplast			
-Cre02.g094100	GMM:35.1.26;GMM:21.1	not assigned.no ontology.DC1 domain containing protein;redox.thioredoxin				NRX1
-Cre02.g076800	GMM:17.3.1.2.4	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.FACKEL	Secretory pathway	GO:0016020	membrane	ERG4
-Cre02.g088800	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003676	nucleic acid binding	
-Cre02.g095115	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Chloroplast			
-Cre02.g115300						AOT6
-Cre02.g107900						
-Cre02.g147000			Chloroplast			
-Cre02.g112900	GMM:34.2;GMM:34.11	transport.sugars;transport.NDP-sugars at the ER		GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre02.g119600	GMM:11.3.8	lipid metabolism.phospholipid synthesis.phosphatidylserine decarboxylase		GO:0008654;GO:0004609	phospholipid biosynthetic process;phosphatidylserine decarboxylase activity	PSD1
-Cre02.g108450	GMM:17.5.3	hormone metabolism.ethylene.induced-regulated-responsive-activated		GO:0043565	sequence-specific DNA binding	FAP280
-Cre02.g095049			Chloroplast			
-Cre02.g116500	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	CPY3
-Cre02.g089850						
-Cre02.g089750			Chloroplast			
-Cre02.g141526			Mitochondrion			
-Cre02.g106850	GMM:35.1.27	not assigned.no ontology.tetratricopeptide repeat (TPR)				TPR6
-Cre02.g094300	GMM:9.3	mitochondrial electron transport / ATP synthesis.electron transfer flavoprotein	Mitochondrion	GO:0055114;GO:0004174	oxidation-reduction process;electron-transferring-flavoprotein dehydrogenase activity	FUO1
-Cre02.g074600						CGL60
-Cre02.g099950			Secretory pathway			
-Cre02.g074350			Secretory pathway			
-Cre02.g113400	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				
-Cre02.g086400			Chloroplast			
-Cre02.g095051						
-Cre02.g103150			Secretory pathway			
-Cre02.g078316						
-Cre02.g143347			Mitochondrion			
-Cre02.g082400				GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
-Cre02.g077350	GMM:13.1.7.9;GMM:13.1.7	amino acid metabolism.synthesis.histidine.histidinol-phosphate aminotransferase;amino acid metabolism.synthesis.histidine		GO:0055114;GO:0051287;GO:0008270;GO:0004399;GO:0000105	oxidation-reduction process;NAD binding;zinc ion binding;histidinol dehydrogenase activity;histidine biosynthetic process	HDH1
-Cre02.g103600						
-Cre02.g088750	GMM:30.4;GMM:3.4;GMM:29.4.1	signalling.phosphinositides;minor CHO metabolism.myo-inositol;protein.postranslational modification.kinase		GO:0016773;GO:0005515	"phosphotransferase activity, alcohol group as acceptor;protein binding"	ATR2
-Cre02.g143007						
-Cre02.g143052			Mitochondrion			
-Cre02.g104950			Mitochondrion			
-Cre02.g103300	GMM:34.16	transport.ABC transporters and multidrug resistance systems				CSE16
-Cre02.g116900	GMM:33.2	development.late embryogenesis abundant	Mitochondrion			SETB
-Cre02.g075600	GMM:27.2	RNA.transcription	Secretory pathway	GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	
-Cre02.g083600	GMM:3.5	minor CHO metabolism.others		GO:0005525	GTP binding	
-Cre02.g093252			Mitochondrion			
-Cre02.g095065			Secretory pathway			
-Cre02.g146600	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified				AP4M4
-Cre02.g084650	GMM:29.3.1	protein.targeting.nucleus		GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	
-Cre02.g083500	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase	Mitochondrion			
-Cre02.g093750	GMM:35.1.26;GMM:21.1	not assigned.no ontology.DC1 domain containing protein;redox.thioredoxin				NRX2
-Cre02.g095036			Chloroplast			
-Cre02.g142887			Chloroplast			
-Cre02.g095700						
-Cre02.g095100				GO:0055114;GO:0010181;GO:0008615;GO:0004733	oxidation-reduction process;FMN binding;pyridoxine biosynthetic process;pyridoxamine-phosphate oxidase activity	CPLD26
-Cre02.g144802						
-Cre02.g095122	GMM:29.6.3.1;GMM:29.6	protein.folding.immunophilins (IMM).FKBPs;protein.folding		GO:0006457	protein folding	FKB16-8
-Cre02.g146050	GMM:16.1.2.1;GMM:13.2.6.3;GMM:13.2.4.5	secondary metabolism.isoprenoids.mevalonate pathway.acetyl-CoA C-acyltransferase;amino acid metabolism.degradation.aromatic aa.tryptophan;amino acid metabolism.degradation.branched chain group.isoleucine	Mitochondrion	GO:0016747;GO:0008152	"transferase activity, transferring acyl groups other than amino-acyl groups;metabolic process"	ATO2
-Cre02.g078600	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP8
-Cre02.g101786			Chloroplast			
-Cre02.g074511	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003723	RNA binding	
-Cre02.g102700			Secretory pathway			
-Cre02.g099452						
-Cre02.g141266						
-Cre02.g144734						
-Cre02.g110150	GMM:27.3.28	RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0005515;GO:0003677	nucleus;protein binding;DNA binding	
-Cre02.g092000	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion			DEG2
-Cre02.g116150			Mitochondrion			
-Cre02.g106750			Mitochondrion	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPS9
-Cre02.g141966	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g141146			Chloroplast			
-Cre02.g143150						
-Cre02.g147650	GMM:3.5;GMM:10.1.20	minor CHO metabolism.others;cell wall.precursor synthesis.phosphomannose isomerase		GO:0009298;GO:0008270;GO:0005975;GO:0004476	GDP-mannose biosynthetic process;zinc ion binding;carbohydrate metabolic process;mannose-6-phosphate isomerase activity	MPI1
-Cre02.g079300	GMM:29.5.9;GMM:29.5.11.20;GMM:29.3.4.3	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom;protein.targeting.secretory pathway.vacuole		GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	VPS4
-Cre02.g081850				GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre02.g141846	GMM:31.2;GMM:28.2	cell.division;DNA.repair		GO:0009432;GO:0006281;GO:0005524;GO:0003697	SOS response;DNA repair;ATP binding;single-stranded DNA binding	DMC1
-Cre02.g143627			Secretory pathway			
-Cre02.g115150				GO:0016021	integral component of membrane	
-Cre02.g089237	GMM:29.5.11	protein.degradation.ubiquitin	Mitochondrion	GO:0008270	zinc ion binding	
-Cre02.g095950	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion			
-Cre02.g085279			Mitochondrion			
-Cre02.g144004			Chloroplast			
-Cre02.g101250						
-Cre02.g102800	GMM:27.2	RNA.transcription		GO:0006351	"transcription, DNA-templated"	RPB8
-Cre02.g111950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g118600	GMM:31.2	cell.division	Chloroplast	GO:0003924	GTPase activity	FTSZ1
-Cre02.g109450						
-Cre02.g141446			Mitochondrion			
-Cre02.g109850			Chloroplast	GO:0017176;GO:0016021;GO:0006506	phosphatidylinositol N-acetylglucosaminyltransferase activity;integral component of membrane;GPI anchor biosynthetic process	PIGC
-Cre02.g119300			Secretory pathway			
-Cre02.g083900				GO:0008408;GO:0006139;GO:0003676;GO:0002161	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding;aminoacyl-tRNA editing activity	EXN5
-Cre02.g073450						
-Cre02.g093650			Chloroplast	GO:0055114;GO:0051537;GO:0016491	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"	
-Cre02.g117376			Mitochondrion			
-Cre02.g095089				GO:0016787	hydrolase activity	
-Cre02.g095131						
-Cre02.g082852			Chloroplast	GO:0016020;GO:0015979;GO:0009523	membrane;photosynthesis;photosystem II	
-Cre02.g142600						
-Cre02.g095105			Chloroplast			
-Cre02.g088050	GMM:27.1.19	RNA.processing.ribonucleases	Secretory pathway	GO:0008033;GO:0004540	tRNA processing;ribonuclease activity	RPP30
-Cre02.g095147	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ALG2
-Cre02.g110450						
-Cre02.g082250	GMM:13.1.3.6.1.4	amino acid metabolism.synthesis.aspartate family.misc.homoserine.homoserine kinase	Chloroplast	GO:0005524	ATP binding	HSK2
-Cre02.g110850	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre02.g105851						
-Cre02.g078858	GMM:30.8;GMM:3.8;GMM:29.5.4	signalling.misc;minor CHO metabolism.galactose;protein.degradation.aspartate protease	Secretory pathway	GO:0016021;GO:0004190	integral component of membrane;aspartic-type endopeptidase activity	PSN1
-Cre02.g106500	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases		GO:0016787	hydrolase activity	DIPP
-Cre02.g146100			Mitochondrion			
-Cre02.g083259			Chloroplast			
-Cre02.g141286			Chloroplast			
-Cre02.g107100			Chloroplast			
-Cre02.g079500			Secretory pathway			
-Cre02.g090600						
-Cre02.g146450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG60
-Cre02.g076500						
-Cre02.g092700						FAP45
-Cre02.g145100	GMM:34.21;GMM:30.3;GMM:3.3	transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	FAP39
-Cre02.g108000			Chloroplast			
-Cre02.g102150						
-Cre02.g095038			Mitochondrion			
-Cre02.g086300						
-Cre02.g110750	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCB7
-Cre02.g095144			Mitochondrion			
-Cre02.g111029			Mitochondrion			
-Cre02.g095033						
-Cre02.g141026						
-Cre02.g100100	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre02.g091050	GMM:19.4	tetrapyrrole synthesis.ALA dehydratase	Chloroplast	GO:0046872;GO:0033014;GO:0004655	metal ion binding;tetrapyrrole biosynthetic process;porphobilinogen synthase activity	ALAD
-Cre02.g079200	GMM:28.1.3;GMM:27.3.15	"DNA.synthesis/chromatin structure.histone;RNA.regulation of transcription.CCAAT box binding factor family, HAP3"				
-Cre02.g092284	GMM:13.1.5.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine	Mitochondrion	GO:0055114;GO:0016702	"oxidation-reduction process;oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, incorporation of two atoms of oxygen"	
-Cre02.g115226						
-Cre02.g116050						
-Cre02.g140900			Chloroplast			
-Cre02.g118450	GMM:29.9	protein.co-chaperones	EndoplasmicReticulum			DNJ28
-Cre02.g074800	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG9
-Cre02.g098200	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	zinc ion binding	CGL103
-Cre02.g092800						FAP136
-Cre02.g095097	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs	Chloroplast	GO:0006457	protein folding	FKB21
-Cre02.g076987						
-Cre02.g117950						
-Cre02.g116550	GMM:29.9	protein.co-chaperones	Chloroplast	GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	DNJ24
-Cre02.g100633			Chloroplast			
-Cre02.g108350	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family	Chloroplast			
-Cre02.g143300			Chloroplast			
-Cre02.g144252	GMM:34.15	transport.potassium				
-Cre02.g100400			Chloroplast			
-Cre02.g092650						
-Cre02.g097050			Secretory pathway			
-Cre02.g076000	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	LAT3
-Cre02.g089150	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases		GO:0016573;GO:0008270;GO:0006357	histone acetylation;zinc ion binding;regulation of transcription from RNA polymerase II promoter	
-Cre02.g114350						
-Cre02.g105450						CGL141
-Cre02.g090100	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
-Cre02.g079550	GMM:26.17	misc.dynamin		GO:0005525;GO:0003924	GTP binding;GTPase activity	DRP2
-Cre02.g094200				GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
-Cre02.g095099	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g142602						
-Cre02.g109300						
-Cre02.g113750			Secretory pathway			
-Cre02.g102050	GMM:34.16;GMM:31.6.1.10	transport.ABC transporters and multidrug resistance systems;cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP328
-Cre02.g074720						
-Cre02.g145602			Chloroplast			CSB17
-Cre02.g082900				GO:0016021;GO:0006810;GO:0005337	integral component of membrane;transport;nucleoside transmembrane transporter activity	
-Cre02.g102850				GO:0008270;GO:0006508;GO:0004181	zinc ion binding;proteolysis;metallocarboxypeptidase activity	
-Cre02.g141326						
-Cre02.g112600						
-Cre02.g143387			Secretory pathway			
-Cre02.g094426						
-Cre02.g116300	GMM:27.2	RNA.transcription				
-Cre02.g119800			Secretory pathway	GO:0046872;GO:0005515	metal ion binding;protein binding	
-Cre02.g080150			Secretory pathway			
-Cre02.g114050			Secretory pathway			
-Cre02.g084200			Chloroplast			
-Cre02.g142406						
-Cre02.g145900						
-Cre02.g080200	GMM:7.2.1;GMM:1.3.8	OPP.non-reductive PP.transketolase;PS.calvin cycle.transketolase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	TRK1
-Cre02.g111600						
-Cre02.g111350			Chloroplast			
-Cre02.g089450			Secretory pathway			HRP5
-Cre02.g079000						
-Cre02.g081400	GMM:18.4.1;GMM:16.5.1.1.1.1;GMM:13.1.4.1.4	Co-factor and vitamine metabolism.pantothenate.branched-chain amino acid aminotransferase;secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.branched-chain amino acid aminotransferase  (BCAT/MAAT);amino acid metabolism.synthesis.branched chain group.common.branched-chain-amino-acid aminotransferase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	BCA1
-Cre02.g080450			Mitochondrion			
-Cre02.g107500			Secretory pathway			
-Cre02.g104700	GMM:33.99;GMM:33.3;GMM:27.3.28	development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre02.g097850				GO:0046872	metal ion binding	
-Cre02.g142353	GMM:29.1.21	protein.aa activation.histidine-tRNA ligase	Mitochondrion			
-Cre02.g144600	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB9
-Cre02.g095091			Mitochondrion			
-Cre02.g106050			Mitochondrion			
-Cre02.g145950			Secretory pathway			
-Cre02.g074200			Mitochondrion			
-Cre02.g109050			Chloroplast			OPR5
-Cre02.g095750				GO:0071949	FAD binding	
-Cre02.g146900			Mitochondrion			OPR14
-Cre02.g078050			Chloroplast	GO:0005509	calcium ion binding	CAM5
-Cre02.g143187						
-Cre02.g093017						
-Cre02.g081200	GMM:33.99	development.unspecified				
-Cre02.g143858						
-Cre02.g115750	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase		GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GPD9
-Cre02.g142400	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB16
-Cre02.g093975	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	
-Cre02.g086600			Mitochondrion			
-Cre02.g099879			Mitochondrion			
-Cre02.g119651				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre02.g141700						FAP315
-Cre02.g104450	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g098900			Chloroplast			
-Cre02.g076625			Mitochondrion			
-Cre02.g098800	GMM:21.1	redox.thioredoxin	Secretory pathway	GO:0009306;GO:0005788;GO:0005783	protein secretion;endoplasmic reticulum lumen;endoplasmic reticulum	
-Cre02.g081550	GMM:29.2.2.3.99;GMM:20.2	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;stress.abiotic				
-Cre02.g073900	GMM:17.1.1	hormone metabolism.abscisic acid.synthesis-degradation	Chloroplast			
-Cre02.g143247						
-Cre02.g099800			Mitochondrion			
-Cre02.g145200	GMM:11.1.20	lipid metabolism.FA synthesis and FA elongation.MCD	Chloroplast	GO:0050080;GO:0006633	malonyl-CoA decarboxylase activity;fatty acid biosynthetic process	
-Cre02.g091300			Chloroplast			
-Cre02.g104800	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTV1
-Cre02.g075301			Chloroplast			
-Cre02.g117550	GMM:31.1	cell.organisation				ANK13
-Cre02.g097300			Mitochondrion	GO:0022857;GO:0019898;GO:0016021;GO:0008092;GO:0005737	transmembrane transporter activity;extrinsic component of membrane;integral component of membrane;cytoskeletal protein binding;cytoplasm	
-Cre02.g113626			Secretory pathway			
-Cre02.g095130			Secretory pathway			
-Cre02.g142006						
-Cre02.g081100						
-Cre02.g110400	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0005515	protein binding	
-Cre02.g092250	GMM:29.6.3.1;GMM:29.6	protein.folding.immunophilins (IMM).FKBPs;protein.folding		GO:0006457	protein folding	FKB42
-Cre02.g105600	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems	Chloroplast			EYE3
-Cre02.g146850						
-Cre02.g095078						
-Cre02.g092983						
-Cre02.g077750	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP211
-Cre02.g112250	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0006508;GO:0005622;GO:0004198	proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity	CAL2
-Cre02.g095600			Chloroplast			
-Cre02.g118850				GO:0000062	fatty-acyl-CoA binding	
-Cre02.g074976						
-Cre02.g087400			Chloroplast			
-Cre02.g141450	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC14
-Cre02.g102302						
-Cre02.g102276						
-Cre02.g144950	GMM:34.15	transport.potassium	Mitochondrion			KCN4
-Cre02.g076900	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis				FAP19
-Cre02.g101350	GMM:29.2.1.2.2.510;GMM:29.2.1.1.3.2.510;GMM:29.2.1.1.3.2.0510	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L10A;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L10A;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L10A				RPL10A
-Cre02.g095083			Mitochondrion			
-Cre02.g101650			Mitochondrion			
-Cre02.g078700	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family				
-Cre02.g078450						
-Cre02.g094750						
-Cre02.g083935						
-Cre02.g090950			Chloroplast			
-Cre02.g143250	GMM:8.2.4	TCA / organic transformation.other organic acid transformations.IDH		GO:0055114;GO:0051287;GO:0016616;GO:0000287	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;magnesium ion binding"	IDH2
-Cre02.g105550			Chloroplast			
-Cre02.g117781						
-Cre02.g087350						
-Cre02.g095120	GMM:31.1	cell.organisation	Mitochondrion			ANK18
-Cre02.g142852						
-Cre02.g090526			Mitochondrion			
-Cre02.g085200				GO:0003676	nucleic acid binding	
-Cre02.g085150	GMM:27.3.28	RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Chloroplast	GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre02.g075676			Chloroplast			
-Cre02.g103900	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK11
-Cre02.g096551			Chloroplast			
-Cre02.g086326			Secretory pathway			
-Cre02.g102776						
-Cre02.g120150	GMM:1.3.2	PS.calvin cycle.rubisco small subunit	Chloroplast			RBCS2
-Cre02.g096950			Mitochondrion			
-Cre02.g087100			Chloroplast			
-Cre02.g083400						
-Cre02.g109650	GMM:31.6.1.9	cell.motility.eukaryotes.flagellar adhesion and gamete fusion		GO:0006355;GO:0003677	"regulation of transcription, DNA-templated;DNA binding"	GSP1
-Cre02.g095070	GMM:29.3.4.99;GMM:29.3.4.1	protein.targeting.secretory pathway.unspecified;protein.targeting.secretory pathway.ER		GO:0048500;GO:0008312;GO:0006614	signal recognition particle;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane	SRP19
-Cre02.g091550			Mitochondrion			WHI
-Cre02.g144251						
-Cre02.g103500	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"	Secretory pathway	GO:0055114;GO:0016491;GO:0006633;GO:0005506	oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding	
-Cre02.g102450	GMM:33.99	development.unspecified	Secretory pathway	GO:0005515	protein binding	
-Cre02.g115567			Chloroplast			
-Cre02.g096050						
-Cre02.g111850				GO:0005515	protein binding	
-Cre02.g075950			Chloroplast			
-Cre02.g142627			Secretory pathway			
-Cre02.g077061			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre02.g110950	GMM:31.6.1.3.1.2	cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.cytoplasmic dynein 1b subunits				DIC5
-Cre02.g117350	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0018095;GO:0006464	protein polyglutamylation;cellular protein modification process	MOT11
-Cre02.g142604						
-Cre02.g142226	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre02.g107200						
-Cre02.g145250	GMM:29.2.1.2.1.27	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS27E2
-Cre02.g095056			Chloroplast			
-Cre02.g142166	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified				
-Cre02.g078804	GMM:1.5	PS.carbon concentrating mechanism	Chloroplast			PHC40
-Cre02.g143647			Chloroplast			
-Cre02.g119400			Secretory pathway			
-Cre02.g100600			Secretory pathway			
-Cre02.g118125			Mitochondrion			
-Cre02.g114900						ANK23
-Cre02.g146150				GO:0006355;GO:0006351	"regulation of transcription, DNA-templated;transcription, DNA-templated"	
-Cre02.g085600			Mitochondrion			
-Cre02.g140961			Mitochondrion			
-Cre02.g096300						CCM1
-Cre02.g142787						
-Cre02.g142546						
-Cre27.g757197	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre27.g757347	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre27.g757147	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre27.g757447			Mitochondrion			
-Cre27.g757297						
-Cre27.g757397						
-Cre27.g757247			Mitochondrion			
-Cre51.g761597						
-Cre51.g761547				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g169550	GMM:9.4	mitochondrial electron transport / ATP synthesis.alternative oxidase	Mitochondrion	GO:0055114;GO:0009916	oxidation-reduction process;alternative oxidase activity	AOX2
-Cre03.g183050			Secretory pathway			MGT1
-Cre03.g174800						
-Cre03.g146347						
-Cre03.g187500				GO:0004725;GO:0004721	protein tyrosine phosphatase activity;phosphoprotein phosphatase activity	
-Cre03.g198750	GMM:28.1	DNA.synthesis/chromatin structure		GO:0003677;GO:0000166	DNA binding;nucleotide binding	
-Cre03.g190900						
-Cre03.g168950			Chloroplast			
-Cre03.g181300	GMM:13.1.6.1.6	amino acid metabolism.synthesis.aromatic aa.chorismate.5-enolpyruvylshikimate-3-phosphate synthase	Chloroplast	GO:0016765	"transferase activity, transferring alkyl or aryl (other than methyl) groups"	SHKG1
-Cre03.g207825				GO:0016779;GO:0009058	nucleotidyltransferase activity;biosynthetic process	
-Cre03.g160050						FAP184
-Cre03.g185600						OGD3
-Cre03.g187950	GMM:28.1;GMM:27.1.19	DNA.synthesis/chromatin structure;RNA.processing.ribonucleases				
-Cre03.g194300			Mitochondrion	GO:0016740;GO:0009058	transferase activity;biosynthetic process	
-Cre03.g203350			Mitochondrion			
-Cre03.g173750						
-Cre03.g203345			Mitochondrion			
-Cre03.g200150	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007023	post-chaperonin tubulin folding pathway	
-Cre03.g162850			Secretory pathway			FAP292
-Cre03.g162100	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006464;GO:0004719	cellular protein modification process;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	PIMT2
-Cre03.g155950			Secretory pathway			
-Cre03.g212753						
-Cre03.g182550				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PNO3
-Cre03.g198250						
-Cre03.g174525			Chloroplast			
-Cre03.g171250						
-Cre03.g146267	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family				
-Cre03.g170050						
-Cre03.g144464	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g166250			Chloroplast			
-Cre03.g172750			Secretory pathway			
-Cre03.g151600			Chloroplast			
-Cre03.g155926						
-Cre03.g179650	GMM:31.1	cell.organisation	Mitochondrion	GO:0005515	protein binding	
-Cre03.g176550	GMM:25	C1-metabolism		GO:0035246;GO:0008168;GO:0006479	peptidyl-arginine N-methylation;methyltransferase activity;protein methylation	PRMT5
-Cre03.g170400						
-Cre03.g199647	GMM:29.2.3;GMM:29.2.2.3.5	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
-Cre03.g187550				GO:0045892;GO:0005634	"negative regulation of transcription, DNA-templated;nucleus"	
-Cre03.g167400			Chloroplast			
-Cre03.g149201	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
-Cre03.g183550			Mitochondrion	GO:0004518	nuclease activity	
-Cre03.g196100						
-Cre03.g143927						
-Cre03.g203457						
-Cre03.g208550			Chloroplast			
-Cre03.g174300			Secretory pathway			
-Cre03.g151550			Secretory pathway			
-Cre03.g179150			Chloroplast			
-Cre03.g205137			Secretory pathway			
-Cre03.g198467			Chloroplast			
-Cre03.g183600			Chloroplast			
-Cre03.g167668						
-Cre03.g145127	GMM:31.6.1.4.2.1;GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0005515;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;protein binding;microtubule motor activity	DHC13
-Cre03.g145187			Chloroplast			
-Cre03.g156850			Secretory pathway			
-Cre03.g200750	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases				
-Cre03.g158000	GMM:19.3	tetrapyrrole synthesis.GSA	Chloroplast	GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	GSA1
-Cre03.g166950	GMM:4.3.12;GMM:4.2.12;GMM:4.1.12	glycolysis.unclear/dually targeted.phosphoglycerate mutase;glycolysis.plastid branch.phosphoglycerate mutase;glycolysis.cytosolic branch.phosphoglycerate mutase		GO:0016868;GO:0006096;GO:0004619	"intramolecular transferase activity, phosphotransferases;glycolytic process;phosphoglycerate mutase activity"	PGM5
-Cre03.g151850						
-Cre03.g193100			Mitochondrion			
-Cre03.g143727			Chloroplast			CSU2
-Cre03.g161606						
-Cre03.g158300	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK7
-Cre03.g194150			Chloroplast			
-Cre03.g149800	GMM:31.1	cell.organisation				TOG1
-Cre03.g197350	GMM:27.3.26;GMM:27.1.1	RNA.regulation of transcription.MYB-related transcription factor family;RNA.processing.splicing				
-Cre03.g163200	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0008270;GO:0006355;GO:0005634;GO:0003700	"zinc ion binding;regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding"	
-Cre03.g177750	GMM:34.99;GMM:20.1	transport.misc;stress.biotic		GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
-Cre03.g145567			Chloroplast			CGL18
-Cre03.g205600			Chloroplast			
-Cre03.g154400						MFT15
-Cre03.g158750	GMM:29.2.3;GMM:28.1;GMM:27.1.2;GMM:27.1;GMM:17.5.3	protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated	Mitochondrion	GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL14
-Cre03.g155400			Mitochondrion			
-Cre03.g146027						
-Cre03.g146647			Secretory pathway			
-Cre03.g154950	GMM:26.9	misc.glutathione S transferases	Secretory pathway	GO:0005515	protein binding	
-Cre03.g165471						
-Cre03.g189950	GMM:29.9;GMM:29.6.2.6;GMM:20	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress	Cytosol	GO:0005515	protein binding	HOP
-Cre03.g179941						
-Cre03.g184651			Secretory pathway			RAD51D
-Cre03.g211745	GMM:6;GMM:11.1.8	gluconeogenesis / glyoxylate cycle;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase		GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre03.g153450						
-Cre03.g203900			Mitochondrion			
-Cre03.g201650			Mitochondrion			
-Cre03.g205585						
-Cre03.g199150	GMM:23	nucleotide metabolism	Mitochondrion	GO:0050662;GO:0003824	coenzyme binding;catalytic activity	
-Cre03.g197800	GMM:31.1.1.3.11;GMM:31.1	cell.organisation.cytoskeleton.Myosin.Class XI;cell.organisation	Chloroplast			
-Cre03.g148700						PWR7
-Cre03.g163750						
-Cre03.g199300				GO:0051087;GO:0006950;GO:0001671	chaperone binding;response to stress;ATPase activator activity	
-Cre03.g206900			Mitochondrion			
-Cre03.g154600			Chloroplast			
-Cre03.g186500	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases	Mitochondrion	GO:0016573;GO:0016568;GO:0006348;GO:0005634;GO:0004402	histone acetylation;chromatin modification;chromatin silencing at telomere;nucleus;histone acetyltransferase activity	HAT2
-Cre03.g207265			Secretory pathway			
-Cre03.g208551	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre03.g153800	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0042765;GO:0016255;GO:0008233;GO:0006508;GO:0003923	GPI-anchor transamidase complex;attachment of GPI anchor to protein;peptidase activity;proteolysis;GPI-anchor transamidase activity	PIGK
-Cre03.g146447	GMM:26.16;GMM:17.7.3	misc.myrosinases-lectin-jacalin;hormone metabolism.jasmonate.induced-regulated-responsive-activated				
-Cre03.g181500	GMM:2.2.2.4	major CHO metabolism.degradation.starch.D enzyme	Chloroplast	GO:0005975;GO:0004134	carbohydrate metabolic process;4-alpha-glucanotransferase activity	STA11
-Cre03.g207600			Chloroplast			NSG6
-Cre03.g208555						
-Cre03.g205701			Mitochondrion			
-Cre03.g166800	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway	GO:0005515	protein binding	
-Cre03.g202450			Mitochondrion			
-Cre03.g176800	GMM:25.8	C1-metabolism.tetrahydrofolate synthase	Mitochondrion	GO:0009396;GO:0009058;GO:0005524;GO:0004326	folic acid-containing compound biosynthetic process;biosynthetic process;ATP binding;tetrahydrofolylpolyglutamate synthase activity	FPG1
-Cre03.g168650			Chloroplast			
-Cre03.g202250				GO:0006260;GO:0005634	DNA replication;nucleus	
-Cre03.g193300						CPLD56
-Cre03.g200550	GMM:33.99;GMM:1.1.7.1	development.unspecified;PS.lightreaction.hydrogenase.FeFe-hydrogenase				HYD3
-Cre03.g170750	GMM:29.2.1.99.1.4	protein.synthesis.ribosomal protein.unknown.small subunit.S4		GO:0019843;GO:0005622;GO:0003723	rRNA binding;intracellular;RNA binding	RNP3
-Cre03.g151100	GMM:20	stress				SSA15
-Cre03.g172350				GO:0008418	protein-N-terminal asparagine amidohydrolase activity	
-Cre03.g194900			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre03.g177400			Secretory pathway			
-Cre03.g164450			Chloroplast			
-Cre03.g175200	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0019867	outer membrane	TOC75
-Cre03.g165550			Mitochondrion			
-Cre03.g144807	GMM:6.2	gluconeogenesis / glyoxylate cycle.malate synthase		GO:0006097;GO:0004474	glyoxylate cycle;malate synthase activity	MAS1
-Cre03.g193700	GMM:29.5	protein.degradation	Chloroplast			
-Cre03.g166600			Mitochondrion			
-Cre03.g164200			Secretory pathway			
-Cre03.g177900			Mitochondrion			TOB38
-Cre03.g201050			Chloroplast			ZNJ2
-Cre03.g176150			Mitochondrion			
-Cre03.g143907	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases	Chloroplast	GO:0016747;GO:0006355	"transferase activity, transferring acyl groups other than amino-acyl groups;regulation of transcription, DNA-templated"	
-Cre03.g204000			Secretory pathway			
-Cre03.g153000						
-Cre03.g185950	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Mitochondrion			
-Cre03.g171461	GMM:19.8	tetrapyrrole synthesis.coproporphyrinogen III oxidase	Mitochondrion	GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	
-Cre03.g152200						
-Cre03.g163600			Mitochondrion			
-Cre03.g196300			Chloroplast	GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	
-Cre03.g194517						
-Cre03.g179300	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
-Cre03.g157050				GO:0015743	malate transport	
-Cre03.g195500	GMM:33.1	development.storage proteins	Mitochondrion	GO:0006629	lipid metabolic process	TGL9
-Cre03.g144987	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre03.g192300						
-Cre03.g198150			Chloroplast	GO:0051205;GO:0016021	protein insertion into membrane;integral component of membrane	ALB3.3
-Cre03.g153150	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre03.g173350	GMM:31.1;GMM:27.3.39	cell.organisation;RNA.regulation of transcription.AtSR transcription factor family				ANK22
-Cre03.g156200			Secretory pathway			
-Cre03.g144827						
-Cre03.g203905						
-Cre03.g152600						
-Cre03.g171800			Chloroplast			FAP123
-Cre03.g200400	GMM:26.28	misc.GDSL-motif lipase				
-Cre03.g148450			Secretory pathway			TEH1
-Cre03.g205500						
-Cre03.g177500	GMM:17.1.3;GMM:17.1.1	hormone metabolism.abscisic acid.induced-regulated-responsive-activated;hormone metabolism.abscisic acid.synthesis-degradation				
-Cre03.g152150						
-Cre03.g176350	GMM:31.1	cell.organisation	Chloroplast			PLAP5
-Cre03.g146407						
-Cre03.g184350	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre03.g209393	GMM:31.8;GMM:17.7.1.5	cell.contractile vacuole;hormone metabolism.jasmonate.synthesis-degradation.12-oxophytodienoate reductase 3	Mitochondrion	GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	
-Cre03.g189400	GMM:29.1.11	protein.aa activation.serine-tRNA ligase		GO:0006434;GO:0006418;GO:0005737;GO:0005524;GO:0004828;GO:0004812;GO:0000166	seryl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;serine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	TSS2
-Cre03.g153306						
-Cre03.g188026			Mitochondrion			
-Cre03.g161250	GMM:26.10;GMM:26.1	misc.cytochrome P450;misc.misc2		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP748A1
-Cre03.g209617			Secretory pathway			
-Cre03.g208050	GMM:11.1.5	lipid metabolism.FA synthesis and FA elongation.beta hydroxyacyl ACP dehydratase	Chloroplast			
-Cre03.g189050			Secretory pathway			EAM1
-Cre03.g168775						
-Cre03.g203550			Secretory pathway			
-Cre03.g190700						
-Cre03.g180300	GMM:26.10;GMM:14.3	misc.cytochrome P450;S-assimilation.sulfite redox		GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	SIR3
-Cre03.g200991						
-Cre03.g182750	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Secretory pathway			
-Cre03.g207918						
-Cre03.g204300			Chloroplast			
-Cre03.g148950	GMM:35.1.14;GMM:27.4	not assigned.no ontology.S RNA-binding domain-containing protein;RNA.RNA binding	Chloroplast	GO:0003676	nucleic acid binding	CGL43
-Cre03.g146867	GMM:31.1	cell.organisation				FAP17
-Cre03.g199983	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	
-Cre03.g178276			Secretory pathway			
-Cre03.g205050	GMM:26.5	misc.acyl transferases	Secretory pathway	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	DGTT4
-Cre03.g159700			Mitochondrion	GO:0016021	integral component of membrane	
-Cre03.g201332			Mitochondrion	GO:0005515	protein binding	
-Cre03.g160400	GMM:14.1	S-assimilation.APS		GO:0055085;GO:0016021;GO:0008324;GO:0006813	transmembrane transport;integral component of membrane;cation transmembrane transporter activity;potassium ion transport	SAC1
-Cre03.g172100	GMM:26.1	misc.misc2	Chloroplast	GO:0042586;GO:0005506	peptide deformylase activity;iron ion binding	PDF1A
-Cre03.g188750	GMM:29.2.3;GMM:29.2.2.3.5;GMM:27.1.2;GMM:17.5.3	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;RNA.processing.RNA helicase;hormone metabolism.ethylene.induced-regulated-responsive-activated		GO:0005524;GO:0005515;GO:0003676	ATP binding;protein binding;nucleic acid binding	HEL21
-Cre03.g172900			Chloroplast			
-Cre03.g197513				GO:0016021	integral component of membrane	
-Cre03.g150350	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase	Mitochondrion			CPLD70
-Cre03.g149900			Mitochondrion			
-Cre03.g194700	GMM:26.3.1;GMM:26.3	"misc.gluco-, galacto- and mannosidases.alpha-galactosidase;misc.gluco-, galacto- and mannosidases"		GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	AGL1
-Cre03.g156550				GO:0035556	intracellular signal transduction	
-Cre03.g150767						
-Cre03.g206369	GMM:29.4.1.57;GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g161900						
-Cre03.g180850	GMM:29.3.4.2	protein.targeting.secretory pathway.golgi		GO:0030127;GO:0008270;GO:0006888;GO:0006886	COPII vesicle coat;zinc ion binding;ER to Golgi vesicle-mediated transport;intracellular protein transport	SEC23A
-Cre03.g157200	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre03.g172150	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0032012;GO:0005086	regulation of ARF protein signal transduction;ARF guanyl-nucleotide exchange factor activity	
-Cre03.g208273			Chloroplast			
-Cre03.g206033				GO:0016021	integral component of membrane	
-Cre03.g144224						
-Cre03.g202850			Chloroplast			
-Cre03.g199600						
-Cre03.g179550	GMM:27.3.99;GMM:27.2	RNA.regulation of transcription.unclassified;RNA.transcription		GO:0008270;GO:0006351;GO:0006289;GO:0006281;GO:0000439	"zinc ion binding;transcription, DNA-templated;nucleotide-excision repair;DNA repair;core TFIIH complex"	TF2H2
-Cre03.g154500						
-Cre03.g203121			Mitochondrion			
-Cre03.g174400				GO:0055114;GO:0046439;GO:0017172;GO:0005506	oxidation-reduction process;L-cysteine metabolic process;cysteine dioxygenase activity;iron ion binding	CDO1
-Cre03.g148750				GO:0047746;GO:0015996	chlorophyllase activity;chlorophyll catabolic process	
-Cre03.g143687						
-Cre03.g182600						CPL1
-Cre03.g159950	GMM:33.99	development.unspecified		GO:0005634	nucleus	
-Cre03.g165900						PGM17
-Cre03.g206593						
-Cre03.g174600						
-Cre03.g175584						
-Cre03.g184850	GMM:34.8	transport.metabolite transporters at the envelope membrane				
-Cre03.g187400						
-Cre03.g173000			Chloroplast			
-Cre03.g201500						
-Cre03.g189650	GMM:27.3.72;GMM:27.3.54	RNA.regulation of transcription.Transcriptional Adaptor Zinc Bundle (TAZ) domain family;RNA.regulation of transcription.histone acetyltransferases		GO:0016573;GO:0008270;GO:0006355;GO:0005634;GO:0004402;GO:0003712	"histone acetylation;zinc ion binding;regulation of transcription, DNA-templated;nucleus;histone acetyltransferase activity;transcription cofactor activity"	
-Cre03.g170150	GMM:33.99;GMM:30.3;GMM:29.5.11.4.2	development.unspecified;signalling.calcium;protein.degradation.ubiquitin.E3.RING		GO:0005515	protein binding	
-Cre03.g178650	GMM:28.1	DNA.synthesis/chromatin structure		GO:0042555;GO:0006270;GO:0006260;GO:0005634;GO:0005524;GO:0003678;GO:0003677	MCM complex;DNA replication initiation;DNA replication;nucleus;ATP binding;DNA helicase activity;DNA binding	MCM6
-Cre03.g181200	GMM:13.2.4.4	amino acid metabolism.degradation.branched chain group.leucine	Mitochondrion			
-Cre03.g173250						
-Cre03.g144031			Secretory pathway			
-Cre03.g197050	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTV2
-Cre03.g187800			Chloroplast			
-Cre03.g167600						FAP61
-Cre03.g174900	GMM:11.9.2	lipid metabolism.lipid degradation.lipases		GO:0005515	protein binding	
-Cre03.g188650	GMM:31.1	cell.organisation	Chloroplast			PLAP2
-Cre03.g185700			Secretory pathway			
-Cre03.g165150			Chloroplast			
-Cre03.g153550						
-Cre03.g194400	GMM:29.2.3;GMM:17.3.2.99	protein.synthesis.initiation;hormone metabolism.brassinosteroid.signal transduction.other		GO:0005515	protein binding	EIF3I
-Cre03.g208554						
-Cre03.g191150	GMM:29.5	protein.degradation		GO:0005515	protein binding	
-Cre03.g162000	GMM:34.8	transport.metabolite transporters at the envelope membrane	Secretory pathway			
-Cre03.g203250						
-Cre03.g206203			Mitochondrion			
-Cre03.g189850				GO:0005515	protein binding	
-Cre03.g156750	GMM:29.6.2.2;GMM:29.4	protein.folding.chaperones and co-chaperones.HSP60s;protein.postranslational modification	Cytosol	GO:0005524	ATP binding	CCT5
-Cre03.g177700						NIT2
-Cre03.g210177	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0005509	calcium ion binding	cam21
-Cre03.g167622			Chloroplast			
-Cre03.g159600						
-Cre03.g153600						
-Cre03.g186400			Mitochondrion			SCR1
-Cre03.g173500						
-Cre03.g168500						
-Cre03.g164101	GMM:27.1	RNA.processing				LSM7
-Cre03.g198975			Secretory pathway			
-Cre03.g163050				GO:0046556;GO:0046373	alpha-L-arabinofuranosidase activity;L-arabinose metabolic process	
-Cre03.g173950			Mitochondrion			
-Cre03.g158400				GO:0046872	metal ion binding	FAP218
-Cre03.g146827			Secretory pathway			
-Cre03.g205249	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	
-Cre03.g196400	GMM:27.3.65	RNA.regulation of transcription.polycomb group (PcG)		GO:0035267;GO:0032777;GO:0006357	NuA4 histone acetyltransferase complex;Piccolo NuA4 histone acetyltransferase complex;regulation of transcription from RNA polymerase II promoter	
-Cre03.g155650			Mitochondrion	GO:0030132;GO:0030130;GO:0016192;GO:0006886;GO:0005198	clathrin coat of coated pit;clathrin coat of trans-Golgi network vesicle;vesicle-mediated transport;intracellular protein transport;structural molecule activity	CLC1
-Cre03.g205809			Mitochondrion	GO:0003824;GO:0003677	catalytic activity;DNA binding	
-Cre03.g145227	GMM:35.1.41	not assigned.no ontology.hydroxyproline rich proteins				
-Cre03.g195326			Chloroplast			
-Cre03.g150700			Secretory pathway			
-Cre03.g168250			Secretory pathway	GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	
-Cre03.g191450			Mitochondrion			
-Cre03.g208305	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre03.g161550						FAP55
-Cre03.g185350	GMM:3.6	minor CHO metabolism.callose	Mitochondrion	GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	CALS1
-Cre03.g207350						
-Cre03.g146487	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion	GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	XPO1
-Cre03.g153750			Chloroplast			
-Cre03.g175300	GMM:11.8	"lipid metabolism.exotics (steroids, squalene etc)"	Chloroplast			
-Cre03.g153650						
-Cre03.g201300			Secretory pathway	GO:0055114;GO:0016715;GO:0005507;GO:0004497	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;copper ion binding;monooxygenase activity"	SSA10
-Cre03.g150450						
-Cre03.g177300			Secretory pathway			
-Cre03.g201327	GMM:3.5	minor CHO metabolism.others	Chloroplast			AKR1
-Cre03.g145527	GMM:29.5	protein.degradation		GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL1
-Cre03.g199400	GMM:33.99;GMM:31.3;GMM:28.1	development.unspecified;cell.cycle;DNA.synthesis/chromatin structure	Chloroplast	GO:0006260;GO:0005634;GO:0000808	DNA replication;nucleus;origin recognition complex	ORC2
-Cre03.g146067	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g192850				GO:0008080	N-acetyltransferase activity	
-Cre03.g212529			Mitochondrion			
-Cre03.g184000						
-Cre03.g165400				GO:0031966	mitochondrial membrane	COX16
-Cre03.g208609						
-Cre03.g155150			Secretory pathway			
-Cre03.g151700			Secretory pathway			CGL26
-Cre03.g164300	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase	Chloroplast			
-Cre03.g183950	GMM:30.2.17	signalling.receptor kinases.DUF 26		GO:0015074	DNA integration	
-Cre03.g185850	GMM:3.5;GMM:23.3.2.1	minor CHO metabolism.others;nucleotide metabolism.salvage.nucleoside kinases.adenosine kinase	Chloroplast			CPK2
-Cre03.g162601	GMM:11.3.3;GMM:11.3	lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase;lipid metabolism.phospholipid synthesis	Mitochondrion	GO:0016780;GO:0016020;GO:0008654	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	
-Cre03.g198400						
-Cre03.g154750			Secretory pathway			
-Cre03.g190100	GMM:29.2.3	protein.synthesis.initiation		GO:0031369;GO:0006413;GO:0005852;GO:0003743;GO:0003723;GO:0003676	translation initiation factor binding;translational initiation;eukaryotic translation initiation factor 3 complex;translation initiation factor activity;RNA binding;nucleic acid binding	EIF3B
-Cre03.g188300	GMM:20.1.1	stress.biotic.respiratory burst	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	RBO1
-Cre03.g176450			Secretory pathway			
-Cre03.g146167	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast.Stroma.Thylakoid.Membrane			TEF10a
-Cre03.g148150			Mitochondrion			
-Cre03.g148000			Chloroplast			
-Cre03.g178750						
-Cre03.g185200	GMM:26.27	misc.calcineurin-like phosphoesterase family protein	Chloroplast	GO:0016787	hydrolase activity	CPL3
-Cre03.g193200						
-Cre03.g149050			Chloroplast	GO:0016021	integral component of membrane	
-Cre03.g203451			Secretory pathway			
-Cre03.g205250	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG4
-Cre03.g200250	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast	GO:0019752;GO:0004451	carboxylic acid metabolic process;isocitrate lyase activity	ICL3
-Cre03.g167500						
-Cre03.g156100				GO:0000398	"mRNA splicing, via spliceosome"	
-Cre03.g171387			Mitochondrion			
-Cre03.g146387						
-Cre03.g144324	GMM:30.2.7;GMM:30.2.3	signalling.receptor kinases.leucine rich repeat VII;signalling.receptor kinases.leucine rich repeat III				
-Cre03.g206250						
-Cre03.g202339			Mitochondrion			
-Cre03.g172000	GMM:26.22;GMM:11.1.4	misc.short chain dehydrogenase/reductase (SDR);lipid metabolism.FA synthesis and FA elongation.ACP oxoacyl reductase	Chloroplast			KAR1
-Cre03.g210401			Chloroplast			
-Cre03.g194567			Chloroplast			
-Cre03.g200651	GMM:31.1	cell.organisation		GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre03.g202550	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Mitochondrion			ELG11
-Cre03.g180017			Mitochondrion			
-Cre03.g207100			Secretory pathway			
-Cre03.g197250			Chloroplast			
-Cre03.g192450			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre03.g199900	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0005737;GO:0003743;GO:0003723	translational initiation;cytoplasm;translation initiation factor activity;RNA binding	EIF4E
-Cre03.g154100			Secretory pathway			
-Cre03.g165750	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	
-Cre03.g197950			Chloroplast			
-Cre03.g206700						
-Cre03.g178900	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway			PRD1
-Cre03.g156700	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			FAP185
-Cre03.g176833	GMM:31.1.1.1.1;GMM:31.1	cell.organisation.cytoskeleton.actin.Actin;cell.organisation	Chloroplast			NAP1
-Cre03.g186750			Mitochondrion			
-Cre03.g166350						
-Cre03.g152701			Mitochondrion			
-Cre03.g194050						
-Cre03.g204800	GMM:34.18.1	transport.unspecified anions.arsenite-transporting ATPase		GO:0016887;GO:0005524	ATPase activity;ATP binding	RTA2
-Cre03.g181100						
-Cre03.g144164	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	RSEP2
-Cre03.g173650						
-Cre03.g143967						
-Cre03.g165650				GO:0006888;GO:0005801;GO:0005622	ER to Golgi vesicle-mediated transport;cis-Golgi network;intracellular	
-Cre03.g206650	GMM:29.4.1	protein.postranslational modification.kinase		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g212193						
-Cre03.g181800			Secretory pathway			
-Cre03.g202561						
-Cre03.g145827	GMM:29.5.1	protein.degradation.subtilases		GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	sub3
-Cre03.g202113	GMM:23.1.2.7	nucleotide metabolism.synthesis.purine.SAICAR synthetase	Chloroplast			
-Cre03.g176300			Chloroplast			
-Cre03.g165976						
-Cre03.g153250						
-Cre03.g190800	GMM:23.4.4	nucleotide metabolism.phosphotransfer and pyrophosphatases.thymidylate kinase				TMPK
-Cre03.g190281						
-Cre03.g201150						
-Cre03.g193950	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0055114;GO:0016730	"oxidation-reduction process;oxidoreductase activity, acting on iron-sulfur proteins as donors"	
-Cre03.g198050			Mitochondrion			
-Cre03.g144284	GMM:29.5.11.4.5.2	protein.degradation.ubiquitin.E3.BTB/POZ Cullin3.BTB/POZ		GO:0005515	protein binding	CGL110
-Cre03.g186650						
-Cre03.g187976						
-Cre03.g165000	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	
-Cre03.g196900	GMM:31.4;GMM:29.3.4.1;GMM:28.99	cell.vesicle transport;protein.targeting.secretory pathway.ER;DNA.unspecified		GO:0005789	endoplasmic reticulum membrane	
-Cre03.g145787	GMM:29.6.2.1	protein.folding.chaperones and co-chaperones.small HSPs	Mitochondrion			HSP22C
-Cre03.g205150			Secretory pathway			
-Cre03.g202100	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases	Chloroplast			OPR18
-Cre03.g169250						
-Cre03.g188900			Secretory pathway			
-Cre03.g200655	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	DEG4
-Cre03.g180550				GO:0016787;GO:0009166	hydrolase activity;nucleotide catabolic process	FPN2
-Cre03.g192676						
-Cre03.g163450			Chloroplast			
-Cre03.g191950	GMM:27.1	RNA.processing	Chloroplast	GO:0006364	rRNA processing	CGLD31
-Cre03.g193550			Mitochondrion			MRPL46
-Cre03.g171650	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure		GO:0005524;GO:0004386;GO:0003676	ATP binding;helicase activity;nucleic acid binding	HEL16
-Cre03.g157800	GMM:21.1	redox.thioredoxin	Mitochondrion	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRX2
-Cre03.g174700			Chloroplast	GO:0006259;GO:0004531	DNA metabolic process;deoxyribonuclease II activity	
-Cre03.g145347			Chloroplast			
-Cre03.g190400						
-Cre03.g196700			Secretory pathway	GO:0016021	integral component of membrane	
-Cre03.g164800	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g144907	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family		GO:0043968;GO:0043967;GO:0035267;GO:0006338;GO:0006281	histone H2A acetylation;histone H4 acetylation;NuA4 histone acetyltransferase complex;chromatin remodeling;DNA repair	
-Cre03.g208833	GMM:28.1	DNA.synthesis/chromatin structure		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
-Cre03.g194616			Mitochondrion			
-Cre03.g191700			Mitochondrion			
-Cre03.g195000			Chloroplast			
-Cre03.g194650	GMM:33.99;GMM:33.2	development.unspecified;development.late embryogenesis abundant				FAP121
-Cre03.g202700						
-Cre03.g182300	GMM:4.3.12;GMM:4.1.12	glycolysis.unclear/dually targeted.phosphoglycerate mutase;glycolysis.cytosolic branch.phosphoglycerate mutase	Chloroplast			PGM7
-Cre03.g162950						
-Cre03.g208049			Chloroplast			
-Cre03.g145027			Mitochondrion			
-Cre03.g198651			Mitochondrion			
-Cre03.g200319						
-Cre03.g191776			Chloroplast			
-Cre03.g196200			Secretory pathway			
-Cre03.g176050						
-Cre03.g170850	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP19
-Cre03.g179860				GO:0008168	methyltransferase activity	
-Cre03.g195050	GMM:3.5	minor CHO metabolism.others	Secretory pathway			
-Cre03.g191250			Chloroplast			LCI34
-Cre03.g183700	GMM:3.6	minor CHO metabolism.callose		GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	GSL3
-Cre03.g157564						
-Cre03.g144584			Mitochondrion			
-Cre03.g169500	GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g158464						
-Cre03.g156300						FAP405
-Cre03.g201600						
-Cre03.g195100			Mitochondrion			
-Cre03.g144344	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre03.g157350						
-Cre03.g201552	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP8
-Cre03.g192201			Secretory pathway			PHC51
-Cre03.g175851	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast			
-Cre03.g208552						
-Cre03.g144244	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	
-Cre03.g180100			Chloroplast	GO:0016799;GO:0006281	"hydrolase activity, hydrolyzing N-glycosyl compounds;DNA repair"	UNG2
-Cre03.g206817			Secretory pathway			
-Cre03.g189200				GO:0009235	cobalamin metabolic process	
-Cre03.g157900						
-Cre03.g167000	GMM:29.5.11.3	protein.degradation.ubiquitin.E2		GO:0019789	SUMO transferase activity	UBC3
-Cre03.g205300			Mitochondrion	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	EXN7
-Cre03.g157475						
-Cre03.g184450	GMM:4.1.16;GMM:30.3;GMM:29.4.1;GMM:29.4	glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre03.g150600	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway			
-Cre03.g155550			Chloroplast			DNJ18
-Cre03.g164900	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g204752	GMM:27.1	RNA.processing	Mitochondrion			
-Cre03.g177200	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	CRB3
-Cre03.g199450			Chloroplast			MINE2
-Cre03.g161350			Secretory pathway			
-Cre03.g213313	GMM:11.1.4	lipid metabolism.FA synthesis and FA elongation.ACP oxoacyl reductase	Mitochondrion			
-Cre03.g166100						
-Cre03.g181650				GO:0030915;GO:0006281	Smc5-Smc6 complex;DNA repair	
-Cre03.g188200	GMM:27.1.19	RNA.processing.ribonucleases				RPH2
-Cre03.g150850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre03.g194200	GMM:8.1.1.1;GMM:11.1.31	TCA / organic transformation.TCA.pyruvate DH.E1;lipid metabolism.FA synthesis and FA elongation.pyruvate DH	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	PDH2
-Cre03.g187100						
-Cre03.g169900			Chloroplast			
-Cre03.g146767	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX11
-Cre03.g168400						
-Cre03.g192900						OPR17
-Cre03.g202001			Secretory pathway			
-Cre03.g209841			Chloroplast			
-Cre03.g169700	GMM:27.1	RNA.processing	Chloroplast	GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	tmg11
-Cre03.g201850	GMM:31.6.1.5.1;GMM:28.2;GMM:27.3.44	cell.motility.eukaryotes.radial spoke.head;DNA.repair;RNA.regulation of transcription.chromatin remodeling factors	Chloroplast	GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
-Cre03.g208300	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
-Cre03.g155350				GO:0055114;GO:0010181;GO:0004733	oxidation-reduction process;FMN binding;pyridoxamine-phosphate oxidase activity	
-Cre03.g200350			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre03.g182700				GO:0008270;GO:0005622	zinc ion binding;intracellular	
-Cre03.g144524	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	
-Cre03.g180200				GO:0005515	protein binding	
-Cre03.g146127						FAP96
-Cre03.g150000						
-Cre03.g195450	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				POC11
-Cre03.g192350			Secretory pathway	GO:0005515	protein binding	
-Cre03.g204689	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE21
-Cre03.g197900			Secretory pathway			
-Cre03.g183800						
-Cre03.g167924	GMM:29.4	protein.postranslational modification				
-Cre03.g156350			Mitochondrion			OPR15
-Cre03.g150101						NRT2.4
-Cre03.g204465			Secretory pathway			
-Cre03.g211073	GMM:29.4;GMM:17.1.3;GMM:17.1.2	protein.postranslational modification;hormone metabolism.abscisic acid.induced-regulated-responsive-activated;hormone metabolism.abscisic acid.signal transduction		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre03.g196550						
-Cre03.g173165				GO:0005515	protein binding	
-Cre03.g152326						
-Cre03.g182850			Secretory pathway			
-Cre03.g150750						
-Cre03.g152050	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX12
-Cre03.g186050						
-Cre03.g199700						PGM11
-Cre03.g146887						
-Cre03.g203100						
-Cre03.g165700	GMM:5.2	fermentation.PDC		GO:0030976;GO:0003824;GO:0000287	thiamine pyrophosphate binding;catalytic activity;magnesium ion binding	PDC3
-Cre03.g160300				GO:0005783	endoplasmic reticulum	RAMP4
-Cre03.g162450	GMM:34.99	transport.misc		GO:0016021;GO:0006810	integral component of membrane;transport	
-Cre03.g208303	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre03.g169200	GMM:23	nucleotide metabolism				
-Cre03.g201100	GMM:29.5.9;GMM:29.5.7	protein.degradation.AAA type;protein.degradation.metalloprotease	Chloroplast	GO:0005524	ATP binding	FHL1
-Cre03.g157501						
-Cre03.g191100			Secretory pathway			
-Cre03.g170200	GMM:33.99;GMM:30.3;GMM:3.3	development.unspecified;signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
-Cre03.g155250			Mitochondrion			
-Cre03.g202050						
-Cre03.g164750			Secretory pathway			
-Cre03.g199311	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole		GO:0007033;GO:0006886;GO:0005737	vacuole organization;intracellular protein transport;cytoplasm	VPS16
-Cre03.g159550						
-Cre03.g143807						
-Cre03.g191550			Mitochondrion			
-Cre03.g201417						
-Cre03.g200543	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP15
-Cre03.g180700						
-Cre03.g146567						
-Cre03.g204400	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0016021;GO:0004252	integral component of membrane;serine-type endopeptidase activity	
-Cre03.g179880			Mitochondrion			
-Cre03.g200000						
-Cre03.g206087			Mitochondrion			
-Cre03.g195700	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion			
-Cre03.g154225			Chloroplast			
-Cre03.g151200			Chloroplast			CGLD16
-Cre03.g183750			Chloroplast			OPR16
-Cre03.g163000	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				POC5
-Cre03.g169450			Chloroplast			
-Cre03.g165600			Secretory pathway			
-Cre03.g182000						
-Cre03.g202650	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase	Secretory pathway			
-Cre03.g154300						
-Cre03.g176700			Mitochondrion			CPL4
-Cre03.g151750	GMM:27.1	RNA.processing				SMP6A
-Cre03.g170625			Chloroplast			
-Cre03.g206452						
-Cre03.g145387						FAP239
-Cre03.g157300	GMM:27.2;GMM:27.1.19	RNA.transcription;RNA.processing.ribonucleases		GO:0005634	nucleus	CAF1
-Cre03.g184250	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CAM9
-Cre03.g145167	GMM:30.2.17	signalling.receptor kinases.DUF 26				
-Cre03.g148300			Mitochondrion			
-Cre03.g177650						
-Cre03.g199652			Chloroplast			
-Cre03.g191300			Chloroplast			LCI35
-Cre03.g174076						
-Cre03.g168800	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN4-1
-Cre03.g182350				GO:0006397;GO:0000445	mRNA processing;THO complex part of transcription export complex	
-Cre03.g199100						
-Cre03.g205800				GO:0005515;GO:0005096	protein binding;GTPase activator activity	
-Cre03.g145287						
-Cre03.g162400			Mitochondrion			
-Cre03.g162250				GO:0006281;GO:0005634	DNA repair;nucleus	CGL35
-Cre03.g170600						POC4
-Cre03.g144767						
-Cre03.g173100	GMM:26.3.4	"misc.gluco-, galacto- and mannosidases.endoglucanase"	Chloroplast	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
-Cre03.g166700	GMM:31.1	cell.organisation	Chloroplast			FOR1
-Cre03.g145487				GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre03.g200095	GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2;GMM:27.1;GMM:17.5.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
-Cre03.g194600			Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g143707			Secretory pathway			
-Cre03.g145547	GMM:21.99;GMM:12.1.1	redox.misc;N-metabolism.nitrate metabolism.NR	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	CBR1
-Cre03.g171050	GMM:26.3;GMM:20.1;GMM:16.5.1.3.1	"misc.gluco-, galacto- and mannosidases;stress.biotic;secondary metabolism.sulfur-containing.glucosinolates.degradation.myrosinase"		GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	GHL1
-Cre03.g145867			Mitochondrion			
-Cre03.g145687	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure		GO:0006281;GO:0004518	DNA repair;nuclease activity	
-Cre03.g185000	GMM:3.6	minor CHO metabolism.callose		GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	CALS2
-Cre03.g154000			Mitochondrion			
-Cre03.g188600	GMM:29.5	protein.degradation		GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL11
-Cre03.g187750			Chloroplast			
-Cre03.g170450						
-Cre03.g145647						
-Cre03.g145047						
-Cre03.g172550	GMM:31.3;GMM:26.6	cell.cycle;misc.O-methyl transferases		GO:0008168;GO:0006479	methyltransferase activity;protein methylation	PRMT1
-Cre03.g159851			Chloroplast			
-Cre03.g181000			Secretory pathway	GO:0016021;GO:0008146	integral component of membrane;sulfotransferase activity	
-Cre03.g203750	GMM:29.3.4.2	protein.targeting.secretory pathway.golgi	Chloroplast	GO:0016020;GO:0006886;GO:0005801	membrane;intracellular protein transport;cis-Golgi network	COG3
-Cre03.g160150						
-Cre03.g174000	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion			EFG11
-Cre03.g146507	GMM:11.8.1.2;GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids.serine C-palmitoyltransferase;lipid metabolism.exotics (steroids, squalene etc).sphingolipids"	Secretory pathway	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	SPT2
-Cre03.g145267	GMM:23.2.2.10	nucleotide metabolism.degradation.purine.guanine deaminase		GO:0008892;GO:0008270;GO:0006147	guanine deaminase activity;zinc ion binding;guanine catabolic process	
-Cre03.g178550	GMM:33.99;GMM:31.2;GMM:29.5.11.4.2	development.unspecified;cell.division;protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0016567;GO:0005515;GO:0004842	protein ubiquitination;protein binding;ubiquitin-protein transferase activity	
-Cre03.g160800	GMM:34.12	transport.metal	Mitochondrion	GO:0055085;GO:0016021;GO:0008324;GO:0006812	transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport	MTP2
-Cre03.g193450			Mitochondrion	GO:0005515	protein binding	
-Cre03.g211409			Mitochondrion			
-Cre03.g199000	GMM:30.11;GMM:29.4	signalling.light;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PHOT1
-Cre03.g173400	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525;GO:0003924	GTP binding;GTPase activity	
-Cre03.g166450			Mitochondrion			
-Cre03.g176400	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre03.g193850	GMM:8.1.6	TCA / organic transformation.TCA.succinyl-CoA ligase	Mitochondrion	GO:0048037;GO:0008152;GO:0003824	cofactor binding;metabolic process;catalytic activity	SCLA1
-Cre03.g174750	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN26-2
-Cre03.g163550						
-Cre03.g204850			Chloroplast			
-Cre03.g200650			Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI2
-Cre03.g170950						
-Cre03.g173900	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast			
-Cre03.g189700			Chloroplast			
-Cre03.g171300	GMM:1.2.2	PS.photorespiration.glycolate oxydase		GO:0016491	oxidoreductase activity	GYX1
-Cre03.g213537	GMM:27.3.67;GMM:27.3.50	RNA.regulation of transcription.putative transcription regulator;RNA.regulation of transcription.general transcription	Chloroplast			
-Cre03.g207601			Chloroplast	GO:0005515	protein binding	
-Cre03.g169000						
-Cre03.g154550	GMM:13.2.2.3;GMM:13.1.2.2.2	amino acid metabolism.degradation.glutamate family.arginine;amino acid metabolism.synthesis.glutamate family.proline.pyrroline-5-carboxylate reductase	Chloroplast	GO:0055114;GO:0006561;GO:0004735	oxidation-reduction process;proline biosynthetic process;pyrroline-5-carboxylate reductase activity	PCR1
-Cre03.g149350	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family				RWP4
-Cre03.g186150						
-Cre03.g201950	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			
-Cre03.g145747	GMM:13.1.6.1.7	amino acid metabolism.synthesis.aromatic aa.chorismate.chorismate synthase	Chloroplast	GO:0009073;GO:0004107	aromatic amino acid family biosynthetic process;chorismate synthase activity	
-Cre03.g185150						
-Cre03.g144011	GMM:30.6;GMM:30.2.99;GMM:30.2.20;GMM:30.2.10;GMM:30.2.1;GMM:29.4	signalling.MAP kinases;signalling.receptor kinases.misc;signalling.receptor kinases.wheat LRK10 like;signalling.receptor kinases.leucine rich repeat X;signalling.receptor kinases.leucine rich repeat I;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g158550	GMM:28.99;GMM:28.1;GMM:27.3.44	DNA.unspecified;DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors		GO:0006338;GO:0006281;GO:0005524;GO:0004003	chromatin remodeling;DNA repair;ATP binding;ATP-dependent DNA helicase activity	
-Cre03.g145507			Chloroplast			
-Cre03.g188550	GMM:29.2.2.3.1;GMM:29.2.2.2.1;GMM:28.1;GMM:27.1.2	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;protein.synthesis.ribosome biogenesis.assembly factors.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL20
-Cre03.g145927			Chloroplast			
-Cre03.g173600				GO:0005515	protein binding	
-Cre03.g167300						
-Cre03.g186550			Mitochondrion			
-Cre03.g144887			Chloroplast	GO:0005515	protein binding	
-Cre03.g179250	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family	Chloroplast			
-Cre03.g159016	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g186300	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species				DII2
-Cre03.g149300	GMM:18.7;GMM:15.2	"Co-factor and vitamine metabolism.iron-sulphur clusters;metal handling.binding, chelation and storage"		GO:0051539;GO:0051536;GO:0009451;GO:0003824	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;RNA modification;catalytic activity"	
-Cre03.g185750				GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre03.g185400						MAW2
-Cre03.g181700	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g202337			Mitochondrion			MOT28
-Cre03.g198851	GMM:27.3.26	RNA.regulation of transcription.MYB-related transcription factor family	Chloroplast			
-Cre03.g195350	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006464;GO:0004719	cellular protein modification process;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	PIMT1
-Cre03.g160700	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family	Chloroplast	GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre03.g183900			Chloroplast			
-Cre03.g152850			Secretory pathway	GO:0055114;GO:0016715;GO:0005515;GO:0005507;GO:0004497	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;protein binding;copper ion binding;monooxygenase activity"	
-Cre03.g202673			Secretory pathway			CSC2
-Cre03.g202400	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Chloroplast			MCP10
-Cre03.g148900	GMM:26.7	"misc.oxidases - copper, flavone etc"				FMO5
-Cre03.g190150			Chloroplast			CGL1
-Cre03.g144384						
-Cre03.g207901						
-Cre03.g193600			Secretory pathway			
-Cre03.g155800				GO:0006413;GO:0003743;GO:0003723	translational initiation;translation initiation factor activity;RNA binding	
-Cre03.g198224						
-Cre03.g144564	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP13
-Cre03.g204751			Mitochondrion	GO:0016780;GO:0016020;GO:0008654	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	
-Cre03.g146307	GMM:26.16;GMM:17.7.3	misc.myrosinases-lectin-jacalin;hormone metabolism.jasmonate.induced-regulated-responsive-activated				
-Cre03.g152425				GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	
-Cre03.g156450			Mitochondrion			
-Cre03.g198550	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g151050	GMM:29.5.11.5;GMM:28.99	protein.degradation.ubiquitin.ubiquitin protease;DNA.unspecified		GO:0005515	protein binding	
-Cre03.g170700			Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
-Cre03.g194100	GMM:30.6;GMM:3.6;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK3
-Cre03.g191850	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Mitochondrion			
-Cre03.g203000			Mitochondrion			
-Cre03.g144124						
-Cre03.g196800				GO:0016021	integral component of membrane	
-Cre03.g180500			Secretory pathway			
-Cre03.g202750			Mitochondrion			
-Cre03.g207041						
-Cre03.g195150						
-Cre03.g165169						
-Cre03.g190200						
-Cre03.g183451						
-Cre03.g198200	GMM:3.6	minor CHO metabolism.callose		GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	GSL4
-Cre03.g155450			Mitochondrion			
-Cre03.g157650						
-Cre03.g207000			Chloroplast			
-Cre03.g178700						
-Cre03.g150200						
-Cre03.g201750			Chloroplast			
-Cre03.g164650	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	MOT1
-Cre03.g146207	GMM:26.13	misc.acid and other phosphatases	Secretory pathway	GO:0016787	hydrolase activity	MPA1
-Cre03.g209057			Mitochondrion			
-Cre03.g145307						
-Cre03.g170300	GMM:29.5.1	protein.degradation.subtilases	Mitochondrion	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB5
-Cre03.g151450						
-Cre03.g156476						
-Cre03.g178350	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols				FAP272
-Cre03.g151300	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g187000	GMM:31.4	cell.vesicle transport				
-Cre03.g152750	GMM:29.6.2.6;GMM:20.2.1	protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat				BAG6
-Cre03.g173300			Secretory pathway			
-Cre03.g207750	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre03.g154900	GMM:35.1.41	not assigned.no ontology.hydroxyproline rich proteins				
-Cre03.g159400			Secretory pathway	GO:0008641	small protein activating enzyme activity	
-Cre03.g167778			Mitochondrion			FAP382
-Cre03.g148500			Secretory pathway			PWR6
-Cre03.g149001			Mitochondrion			
-Cre03.g201776				GO:0005515	protein binding	
-Cre03.g150950	GMM:29.7	protein.glycosylation				DPM1
-Cre03.g161450						
-Cre03.g143747						
-Cre03.g164000	GMM:1.1.40	PS.lightreaction.cyclic electron flow-chlororespiration	Chloroplast			ANR1
-Cre03.g176325						
-Cre03.g182800	GMM:13.2.4.1;GMM:13.1.1.3.11	amino acid metabolism.degradation.branched chain group.shared;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase		GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	AGT2
-Cre03.g168300						
-Cre03.g195250			Mitochondrion			
-Cre03.g161850						
-Cre03.g203681			Secretory pathway	GO:0006367;GO:0006366;GO:0005674	transcription initiation from RNA polymerase II promoter;transcription from RNA polymerase II promoter;transcription factor TFIIF complex	
-Cre03.g204500						CSE17
-Cre03.g206201			Mitochondrion			
-Cre03.g171850						
-Cre03.g187200	GMM:31.1	cell.organisation		GO:0007017;GO:0005875	microtubule-based process;microtubule associated complex	DLL2
-Cre03.g177100			Secretory pathway			
-Cre03.g144707	GMM:4.2.2;GMM:4.1.2	glycolysis.plastid branch.phosphoglucomutase (PGM);glycolysis.cytosolic branch.phosphoglucomutase (PGM)	Chloroplast	GO:0016868;GO:0005975	"intramolecular transferase activity, phosphotransferases;carbohydrate metabolic process"	
-Cre03.g178100	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	protein binding	
-Cre03.g143867			Secretory pathway			
-Cre03.g181350	GMM:29.2.1.1.3.2.17	protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L17		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL17
-Cre03.g146607			Secretory pathway			
-Cre03.g145607	GMM:34.99	transport.misc		GO:0016192	vesicle-mediated transport	BET3
-Cre03.g204600			Secretory pathway			
-Cre03.g177450			Chloroplast	GO:0004518	nuclease activity	
-Cre03.g168750						
-Cre03.g159254	GMM:34.5	transport.ammonium		GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	
-Cre03.g197850			Mitochondrion			
-Cre03.g175800			Chloroplast	GO:0008168;GO:0006364	methyltransferase activity;rRNA processing	
-Cre03.g179901			Mitochondrion			
-Cre03.g153050						RWP1
-Cre03.g168100						
-Cre03.g204241						
-Cre03.g148350			Chloroplast			
-Cre03.g184100				GO:0016818;GO:0008270;GO:0003676	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;zinc ion binding;nucleic acid binding"	
-Cre03.g204200						
-Cre03.g180750	GMM:13.1.3.4.3;GMM:13.1.3.4	amino acid metabolism.synthesis.aspartate family.methionine.methionine synthase;amino acid metabolism.synthesis.aspartate family.methionine		GO:0009086;GO:0008652;GO:0008270;GO:0003871	methionine biosynthetic process;cellular amino acid biosynthetic process;zinc ion binding;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity	METE
-Cre03.g184750						
-Cre03.g145447	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0006464	cellular protein modification process	
-Cre03.g161400	GMM:13.1.6.5.5	amino acid metabolism.synthesis.aromatic aa.tryptophan.tryptophan synthase	Chloroplast			MAA7
-Cre03.g201350			Chloroplast			
-Cre03.g179000			Mitochondrion			
-Cre03.g150500				GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SNE10
-Cre03.g204212			Chloroplast			
-Cre03.g205400			Secretory pathway	GO:0005515	protein binding	
-Cre03.g163350			Mitochondrion	GO:0055114;GO:0050661;GO:0016491;GO:0008677	oxidation-reduction process;NADP binding;oxidoreductase activity;2-dehydropantoate 2-reductase activity	PAN5
-Cre03.g186850			Mitochondrion			
-Cre03.g156050	GMM:31.2;GMM:29.2.5	cell.division;protein.synthesis.release	Chloroplast	GO:0006412	translation	
-Cre03.g163266			Chloroplast			
-Cre03.g146727	GMM:24	biodegradation of xenobiotics	Mitochondrion			GOX9
-Cre03.g194350						
-Cre03.g157100						
-Cre03.g174150	GMM:31.1	cell.organisation	Chloroplast	GO:0005515	protein binding	
-Cre03.g182150	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF8
-Cre03.g149700			Chloroplast			
-Cre03.g191650			Mitochondrion			
-Cre03.g155750			Secretory pathway			PHC65
-Cre03.g158100						
-Cre03.g185500	GMM:31.6.1.10;GMM:26.13	cell.motility.eukaryotes.flagellar associated proteins;misc.acid and other phosphatases		GO:0003993	acid phosphatase activity	VIP1
-Cre03.g201200			Mitochondrion			FAP283
-Cre03.g145087	GMM:34.12	transport.metal		GO:0055085;GO:0016021;GO:0008324;GO:0006812	transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport	MTP1
-Cre03.g172300	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Mitochondrion			MPC5
-Cre03.g145887	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0016021	integral component of membrane	TATC
-Cre03.g181250	GMM:30.11	signalling.light	Chloroplast			CGLD13
-Cre03.g172322						
-Cre03.g181576			Chloroplast			
-Cre03.g146247	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I		GO:0022900;GO:0016651	"electron transport chain;oxidoreductase activity, acting on NAD(P)H"	NUOS4
-Cre03.g170100			Mitochondrion			
-Cre03.g190550				GO:0016592;GO:0006357;GO:0001104	mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity	
-Cre03.g199800	GMM:5;GMM:33.99;GMM:1.1.7.1	fermentation;development.unspecified;PS.lightreaction.hydrogenase.FeFe-hydrogenase	Chloroplast			HYDA1
-Cre03.g155976						
-Cre03.g144947	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family				
-Cre03.g161100	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion			
-Cre03.g204950				GO:0003676	nucleic acid binding	
-Cre03.g199535	GMM:27.3.99;GMM:27.3.23;GMM:1.1.99	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.heat-shock transcription factor family (HSF);PS.lightreaction.unspecified	Chloroplast			LHL3
-Cre03.g145967	GMM:29.1.10;GMM:29.1	protein.aa activation.methionine-tRNA ligase;protein.aa activation	Mitochondrion	GO:0000049	tRNA binding	
-Cre03.g207152			Secretory pathway			
-Cre03.g204913						
-Cre03.g144667			Chloroplast			CLPT4
-Cre03.g166650	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	CGLD3
-Cre03.g187700	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL19
-Cre03.g192100			Secretory pathway			
-Cre03.g145207			Chloroplast			CPLD33
-Cre03.g159100			Secretory pathway			
-Cre03.g196050						
-Cre03.g190050	GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
-Cre03.g210737			Secretory pathway			
-Cre03.g172200						
-Cre03.g202150	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases				DMC2
-Cre03.g192600	GMM:23.3.2.3	nucleotide metabolism.salvage.nucleoside kinases.thymidine kinase	Chloroplast	GO:0005524;GO:0004797	ATP binding;thymidine kinase activity	THK1
-Cre03.g179840			Secretory pathway			
-Cre03.g207250	GMM:12.2.2	N-metabolism.ammonia metabolism.glutamine synthetase				GLN4
-Cre03.g163800						
-Cre03.g153076	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Mitochondrion			RWP1
-Cre03.g195388			Chloroplast			
-Cre03.g178450	GMM:29.9;GMM:29.6.2.6;GMM:29.6;GMM:29.4	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding;protein.postranslational modification	Mitochondrion	GO:0006457;GO:0005737	protein folding;cytoplasm	CPN10
-Cre03.g144444						
-Cre03.g197750	GMM:21.2.2;GMM:21.2	redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione	Chloroplast	GO:0055114;GO:0016491;GO:0016209;GO:0006979;GO:0004602	oxidation-reduction process;oxidoreductase activity;antioxidant activity;response to oxidative stress;glutathione peroxidase activity	GPX3
-Cre03.g167200				GO:0007165;GO:0005515	signal transduction;protein binding	
-Cre03.g169350			Chloroplast			
-Cre03.g184900						
-Cre03.g210065	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g150800	GMM:26.27;GMM:26.13	misc.calcineurin-like phosphoesterase family protein;misc.acid and other phosphatases				
-Cre03.g161000	GMM:23.2	nucleotide metabolism.degradation		GO:0019239	deaminase activity	
-Cre03.g155501			Mitochondrion	GO:0016021	integral component of membrane	
-Cre03.g208721	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Mitochondrion	GO:0015969	guanosine tetraphosphate metabolic process	CGL92
-Cre03.g160900	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre03.g163650			Chloroplast			
-Cre03.g158250			Mitochondrion	GO:0016020;GO:0015031	membrane;protein transport	SECY2
-Cre03.g183300			Chloroplast	GO:2001070	starch binding	
-Cre03.g193676			Chloroplast			
-Cre03.g189150						
-Cre03.g169100	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre03.g178050	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Mitochondrion	GO:0005515	protein binding	MOT51
-Cre03.g149550						
-Cre03.g166900	GMM:26.1	misc.misc2	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP767A1
-Cre03.g189605	GMM:33.99;GMM:27.3.44	development.unspecified;RNA.regulation of transcription.chromatin remodeling factors		GO:0016593;GO:0016570;GO:0006355	"Cdc73/Paf1 complex;histone modification;regulation of transcription, DNA-templated"	
-Cre03.g200950						FAP273
-Cre03.g144064			Chloroplast			
-Cre03.g174672			Mitochondrion			
-Cre03.g189500				GO:0016787	hydrolase activity	
-Cre03.g153100			Secretory pathway			
-Cre03.g175500			Mitochondrion	GO:0016021	integral component of membrane	
-Cre03.g194800	GMM:27.1.3.14;GMM:27.1	RNA.processing.3' end processing.Clp1;RNA.processing		GO:0031124	mRNA 3'-end processing	
-Cre03.g179450	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR7
-Cre03.g201215						
-Cre03.g165215	GMM:29.5.2	protein.degradation.autophagy		GO:0008641;GO:0006914;GO:0005737	small protein activating enzyme activity;autophagy;cytoplasm	APG7
-Cre03.g179800	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Chloroplast			LCI24
-Cre03.g148050	GMM:28.2	DNA.repair	Mitochondrion	GO:0006281;GO:0003684	DNA repair;damaged DNA binding	POLI1
-Cre03.g206550			Chloroplast			CPLD2
-Cre03.g158900	GMM:8.1.1.2;GMM:11.1.31	TCA / organic transformation.TCA.pyruvate DH.E2;lipid metabolism.FA synthesis and FA elongation.pyruvate DH	Chloroplast	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	DLA2
-Cre03.g166201						
-Cre03.g160600	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre03.g179700	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Mitochondrion			
-Cre03.g158650						
-Cre03.g164400			Chloroplast			
-Cre03.g175050	GMM:34.99	transport.misc		GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity	TRP13
-Cre03.g205900	GMM:22.1.2	polyamine metabolism.synthesis.SAM decarboxylase		GO:0008295;GO:0006597;GO:0004014	spermidine biosynthetic process;spermine biosynthetic process;adenosylmethionine decarboxylase activity	DCA1
-Cre03.g197150						
-Cre03.g172650	GMM:31.6.1.1;GMM:31.1.1.2;GMM:31.1	cell.motility.eukaryotes.basal bodies;cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007017;GO:0005874;GO:0003924	microtubule-based process;microtubule;GTPase activity	BLD2
-Cre03.g183150						
-Cre03.g169800	GMM:28.99;GMM:27.3.99	DNA.unspecified;RNA.regulation of transcription.unclassified		GO:0016888	"endodeoxyribonuclease activity, producing 5'-phosphomonoesters"	
-Cre03.g176961			Secretory pathway			
-Cre03.g157725						
-Cre03.g167550	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies		GO:0060271;GO:0005813;GO:0005634	cilium morphogenesis;centrosome;nucleus	CEP290
-Cre03.g186450	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	LNM1
-Cre03.g188450						PTX2
-Cre03.g166550			Secretory pathway			
-Cre03.g186250						
-Cre03.g149450			Chloroplast			
-Cre03.g206145			Mitochondrion			
-Cre03.g199200			Mitochondrion			
-Cre03.g175351			Chloroplast			LMR2
-Cre03.g206850			Secretory pathway			
-Cre03.g208557			Chloroplast			
-Cre03.g171600	GMM:26.13	misc.acid and other phosphatases	Chloroplast	GO:0016787	hydrolase activity	
-Cre03.g203600	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase		GO:0008081;GO:0006629	phosphoric diester hydrolase activity;lipid metabolic process	GDP6
-Cre03.g144847	GMM:4.3.14;GMM:4.2.14;GMM:4.1.14;GMM:11.1.30	glycolysis.unclear/dually targeted.pyruvate kinase (PK);glycolysis.plastid branch.pyruvate kinase (PK);glycolysis.cytosolic branch.pyruvate kinase (PK);lipid metabolism.FA synthesis and FA elongation.pyruvate kinase		GO:0030955;GO:0006096;GO:0004743;GO:0000287	potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding	PYK4
-Cre03.g153950	GMM:34.99	transport.misc		GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity	TRP12
-Cre03.g193750	GMM:13.2.5.2;GMM:1.2.4.2	amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;PS.photorespiration.glycine cleavage.T subunit	Mitochondrion			GCST
-Cre03.g177550	GMM:31.1	cell.organisation				
-Cre03.g182500	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0048500;GO:0008312;GO:0006614	signal recognition particle;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane	SRP72
-Cre03.g199850			Mitochondrion			
-Cre03.g194950	GMM:27.3.99;GMM:27.3.85;GMM:27.2	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.sigma like plant;RNA.transcription	Chloroplast	GO:0016987;GO:0006355;GO:0006352;GO:0003700;GO:0003677	"sigma factor activity;regulation of transcription, DNA-templated;DNA-templated transcription, initiation;transcription factor activity, sequence-specific DNA binding;DNA binding"	RPOD
-Cre03.g151150						
-Cre03.g155600						
-Cre03.g144184			Chloroplast			
-Cre03.g169300	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre03.g193150						
-Cre03.g194000	GMM:27.1.1	RNA.processing.splicing				
-Cre03.g170800	GMM:26.23	misc.rhodanese	Chloroplast			
-Cre03.g176866						
-Cre03.g200200	GMM:31.3;GMM:30.6;GMM:29.4.1;GMM:29.4	cell.cycle;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g171500			Chloroplast			
-Cre03.g193900	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF				
-Cre03.g163900			Chloroplast			PWR3
-Cre03.g149500	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0005737	cytoplasm	
-Cre03.g151900			Secretory pathway			LZY1A
-Cre03.g175250	GMM:11.8.8;GMM:11.8	"lipid metabolism.exotics (steroids, squalene etc).squalene synthase;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016740;GO:0009058	transferase activity;biosynthetic process	SQS1
-Cre03.g159150	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre03.g171751			Secretory pathway			
-Cre03.g196250	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP3
-Cre03.g164250	GMM:31.3;GMM:29.4.1;GMM:29.4	cell.cycle;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005515;GO:0004672	protein phosphorylation;protein binding;protein kinase activity	FAP262
-Cre03.g172376			Secretory pathway			
-Cre03.g206000				GO:0005515	protein binding	
-Cre03.g172050				GO:0006355;GO:0006289;GO:0000439	"regulation of transcription, DNA-templated;nucleotide-excision repair;core TFIIH complex"	TFB4
-Cre03.g203850	GMM:23.4.1;GMM:14.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase;S-assimilation.APS	Chloroplast	GO:0004781	sulfate adenylyltransferase (ATP) activity	ATS1
-Cre03.g152550	GMM:33.99	development.unspecified	Secretory pathway	GO:0005515	protein binding	
-Cre03.g144967	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0005524	ATP binding	
-Cre03.g146007			Chloroplast			
-Cre03.g157326			Mitochondrion			
-Cre03.g144204				GO:0051861;GO:0046836;GO:0017089;GO:0005737	glycolipid binding;glycolipid transport;glycolipid transporter activity;cytoplasm	
-Cre03.g198100						BET1
-Cre03.g200450			Mitochondrion			
-Cre03.g143847			Secretory pathway			
-Cre03.g193650			Chloroplast			
-Cre03.g157426			Mitochondrion			
-Cre03.g146847						
-Cre03.g156250						FAP186
-Cre03.g176750			Chloroplast			
-Cre03.g160953	GMM:27.1.19	RNA.processing.ribonucleases	Secretory pathway	GO:0055085;GO:0042626;GO:0033897;GO:0016021;GO:0006810;GO:0005524;GO:0003723	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ribonuclease T2 activity;integral component of membrane;transport;ATP binding;RNA binding"	
-Cre03.g195650	GMM:29.2.1.1.1.1.10	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S10	Chloroplast	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	PRPS10
-Cre03.g145987						
-Cre03.g168700	GMM:3.99;GMM:1.2.1	minor CHO metabolism.misc;PS.photorespiration.phosphoglycolate phosphatase				PGP1
-Cre03.g182400				GO:0008270	zinc ion binding	
-Cre03.g157150			Chloroplast			
-Cre03.g174476	GMM:31.3	cell.cycle		GO:0019901;GO:0016592;GO:0016538;GO:0006355;GO:0000079	"protein kinase binding;mediator complex;cyclin-dependent protein serine/threonine kinase regulator activity;regulation of transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	CYCC1
-Cre03.g172850	GMM:13.1.5.3.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.OASTL	Chloroplast			OASTL3
-Cre03.g177950			Secretory pathway			
-Cre03.g153300						
-Cre03.g144304						
-Cre03.g201103			Mitochondrion			RAA7
-Cre03.g210625	GMM:28.2;GMM:27.3.44	DNA.repair;RNA.regulation of transcription.chromatin remodeling factors	Chloroplast	GO:0008270;GO:0005524;GO:0005515	zinc ion binding;ATP binding;protein binding	
-Cre03.g188001						
-Cre03.g160200	GMM:26.7;GMM:13.2.2.2	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH12
-Cre03.g170428						
-Cre03.g196850	GMM:33.99;GMM:29.2.2.3.4;GMM:27.2	development.unspecified;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins;RNA.transcription		GO:0006364;GO:0005730;GO:0005515	rRNA processing;nucleolus;protein binding	
-Cre03.g189000	GMM:28.2;GMM:28.1;GMM:27.3.44	DNA.repair;DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors	Chloroplast	GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	RAD54A
-Cre03.g178300	GMM:27.1.1	RNA.processing.splicing				
-Cre03.g182200			Secretory pathway			
-Cre03.g145407				GO:0046872	metal ion binding	
-Cre03.g156500			Chloroplast			
-Cre03.g185300	GMM:3.8.1;GMM:10.1.30.2	minor CHO metabolism.galactose.galactokinases;cell wall.precursor synthesis.sugar kinases.arabinose-1-kinase		GO:0005524	ATP binding	
-Cre03.g208000	GMM:28.99;GMM:28.1;GMM:27.3.99	DNA.unspecified;DNA.synthesis/chromatin structure;RNA.regulation of transcription.unclassified	Chloroplast			
-Cre03.g199871						
-Cre03.g169050				GO:0007005;GO:0004842	mitochondrion organization;ubiquitin-protein transferase activity	
-Cre03.g195300						
-Cre03.g190750	GMM:23.4.4	nucleotide metabolism.phosphotransfer and pyrophosphatases.thymidylate kinase	Mitochondrion			
-Cre03.g198000	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722	protein dephosphorylation;protein serine/threonine phosphatase activity	
-Cre03.g209281	GMM:31.4	cell.vesicle transport		GO:0016192;GO:0006886	vesicle-mediated transport;intracellular protein transport	
-Cre03.g201301			Chloroplast	GO:0055114	oxidation-reduction process	
-Cre03.g171150			Secretory pathway			
-Cre03.g184400	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases		GO:0016787	hydrolase activity	
-Cre03.g176250	GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase		GO:0033179;GO:0015991;GO:0015078	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVD1
-Cre03.g204350	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			CLPR4
-Cre03.g210513	GMM:17.7.1.5	hormone metabolism.jasmonate.synthesis-degradation.12-oxophytodienoate reductase 3	Chloroplast	GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	nfo3
-Cre03.g189450				GO:0016787	hydrolase activity	
-Cre03.g159650	GMM:29.2.4	protein.synthesis.elongation				EFG6
-Cre03.g213649			Secretory pathway			
-Cre03.g149517			Mitochondrion			
-Cre03.g188950						
-Cre03.g180350	GMM:31.3;GMM:29.4.1	cell.cycle;protein.postranslational modification.kinase		GO:0016538;GO:0007049	cyclin-dependent protein serine/threonine kinase regulator activity;cell cycle	CKS1
-Cre03.g177826			Chloroplast			
-Cre03.g205000						IDA3
-Cre03.g202875			Mitochondrion			
-Cre03.g152250						
-Cre03.g160550	GMM:34.12	transport.metal		GO:0055085;GO:0016021;GO:0008324;GO:0006812	transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport	MTP4
-Cre03.g161950						
-Cre03.g158500	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast			
-Cre03.g160000	GMM:27.3.55	RNA.regulation of transcription.HDA	Mitochondrion			HDA3
-Cre03.g188400	GMM:20.1.1	stress.biotic.respiratory burst		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	RBO2
-Cre03.g168200	GMM:31.6.1.6.2	cell.motility.eukaryotes.central pair.C1b				FAP69
-Cre03.g176100						
-Cre03.g160650						
-Cre03.g188700	GMM:31.1	cell.organisation	Chloroplast			PLAP6
-Cre03.g184800	GMM:23.2	nucleotide metabolism.degradation	Secretory pathway	GO:0016787	hydrolase activity	
-Cre03.g191900	GMM:29.5.11.5;GMM:29.5.11	protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin	Secretory pathway			
-Cre03.g146707				GO:0008242	omega peptidase activity	
-Cre03.g197650			Chloroplast			
-Cre03.g152950	GMM:29.1.30	protein.aa activation.pseudouridylate synthase		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS12
-Cre03.g179500	GMM:26.7;GMM:13.2.2.2	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH13
-Cre03.g208385						
-Cre03.g150300	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols				CAM8
-Cre03.g164550	GMM:27.3	RNA.regulation of transcription				
-Cre03.g144727			Mitochondrion	GO:0016021;GO:0004252	integral component of membrane;serine-type endopeptidase activity	RBL2
-Cre03.g161150			Secretory pathway			PHC63
-Cre03.g193500	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	CGLD15
-Cre03.g197200			Mitochondrion			
-Cre03.g152500	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	
-Cre03.g180900			Chloroplast			
-Cre03.g153850			Secretory pathway			
-Cre03.g201550	GMM:29.5.7	protein.degradation.metalloprotease				MMP20
-Cre03.g149851			Chloroplast			
-Cre03.g208556	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre03.g162050	GMM:27.3.55	RNA.regulation of transcription.HDA	Mitochondrion			HDA4
-Cre03.g205697	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX		GO:0005515	protein binding	FAP350
-Cre03.g186900						
-Cre03.g180600				GO:0016787;GO:0009166	hydrolase activity;nucleotide catabolic process	FPN3
-Cre03.g186350			Mitochondrion			
-Cre03.g206257	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g174850	GMM:11.6	lipid metabolism.lipid transfer proteins etc	Secretory pathway	GO:0008289	lipid binding	CGL111
-Cre03.g196150						
-Cre03.g190250	GMM:29.5.1	protein.degradation.subtilases		GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB6
-Cre03.g181150	GMM:31.6.1.5.2;GMM:31.1	cell.motility.eukaryotes.radial spoke.stalk;cell.organisation		GO:0007017;GO:0005875	microtubule-based process;microtubule associated complex	FLA14
-Cre03.g183200	GMM:31.6.1.6.2	cell.motility.eukaryotes.central pair.C1b				CPC1
-Cre03.g144607			Chloroplast			
-Cre03.g167351			Chloroplast			
-Cre03.g146327			Secretory pathway			
-Cre03.g190850						ECH1
-Cre03.g167101			Mitochondrion			
-Cre03.g143947			Chloroplast			
-Cre03.g198800	GMM:27.3.26	RNA.regulation of transcription.MYB-related transcription factor family				
-Cre03.g151650			Chloroplast			
-Cre03.g154651						
-Cre03.g198500						
-Cre03.g207700	GMM:16.1.2.9	secondary metabolism.isoprenoids.mevalonate pathway.farnesyl pyrophosphate synthetase		GO:0008299	isoprenoid biosynthetic process	FPS1
-Cre03.g191400			Secretory pathway			
-Cre03.g187600						
-Cre03.g144484	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre03.g144544			Chloroplast			
-Cre03.g149150			Chloroplast			
-Cre03.g207650	GMM:34.12	transport.metal	Secretory pathway	GO:0046872;GO:0030001	metal ion binding;metal ion transport	
-Cre03.g167756			Secretory pathway			
-Cre03.g157000	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG1
-Cre03.g179600						
-Cre03.g192750			Chloroplast			
-Cre03.g198863				GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	
-Cre03.g162800	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Secretory pathway			LCI1
-Cre03.g203300			Mitochondrion			
-Cre03.g167644			Chloroplast			
-Cre03.g212305						FAP181
-Cre03.g174250				GO:0008171	O-methyltransferase activity	FAP111
-Cre03.g164850						
-Cre03.g155001	GMM:2.1.2.4	major CHO metabolism.synthesis.starch.debranching	Chloroplast	GO:0043169;GO:0005975;GO:0004553;GO:0003824	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	ISA1
-Cre03.g166300						
-Cre03.g201439			Chloroplast			
-Cre03.g179100	GMM:27.1	RNA.processing	Mitochondrion	GO:0006511;GO:0005515	ubiquitin-dependent protein catabolic process;protein binding	UFD1b
-Cre03.g175451						
-Cre03.g205550			Secretory pathway			
-Cre03.g165100			Chloroplast	GO:0015979;GO:0009522	photosynthesis;photosystem I	PSAI
-Cre03.g189901			Mitochondrion			
-Cre03.g200900						
-Cre03.g177350	GMM:33.99	development.unspecified	Chloroplast			
-Cre03.g146627	GMM:12.2.2	N-metabolism.ammonia metabolism.glutamine synthetase		GO:0006807;GO:0004356	nitrogen compound metabolic process;glutamate-ammonia ligase activity	
-Cre03.g199250	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG51
-Cre03.g168050	GMM:27.3.52;GMM:27.3.42	RNA.regulation of transcription.global transcription factor group;RNA.regulation of transcription.bromodomain proteins		GO:0005515	protein binding	
-Cre03.g178850			Chloroplast			
-Cre03.g153700						FAP347
-Cre03.g201163			Mitochondrion			
-Cre03.g207050	GMM:29.2.1.2.2.29	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L29		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL29
-Cre03.g165350			Secretory pathway			
-Cre03.g145907	GMM:29.2.2.3.3;GMM:27.3.67	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases;RNA.regulation of transcription.putative transcription regulator		GO:0032259;GO:0008168;GO:0001510	methylation;methyltransferase activity;RNA methylation	
-Cre03.g187150						
-Cre03.g184950			Secretory pathway			MAW3
-Cre03.g163700						
-Cre03.g145247	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF11
-Cre03.g197400						SEL1
-Cre03.g166000			Secretory pathway			
-Cre03.g157526						
-Cre03.g195950			Mitochondrion			
-Cre03.g161750			Secretory pathway			
-Cre03.g177800			Secretory pathway			
-Cre03.g154350	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Mitochondrion	GO:0022900;GO:0016021	electron transport chain;integral component of membrane	COX2A
-Cre03.g206952			Mitochondrion			
-Cre03.g206200			Secretory pathway			
-Cre03.g162650	GMM:25.5	C1-metabolism.methylenetetrahydrofolate dehydrogenase and methenyltetrahydrofolate cyclohydrolase	Mitochondrion	GO:0055114;GO:0009396;GO:0004488;GO:0003824	oxidation-reduction process;folic acid-containing compound biosynthetic process;methylenetetrahydrofolate dehydrogenase (NADP+) activity;catalytic activity	
-Cre03.g202897	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				ubc25
-Cre03.g202202			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre03.g145627						
-Cre03.g201851			Chloroplast			
-Cre03.g203233						
-Cre03.g185250	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase	Chloroplast			SSS2
-Cre03.g153400			Mitochondrion			
-Cre03.g178075			Chloroplast			
-Cre03.g208553			Mitochondrion			
-Cre03.g144787	GMM:21.1	redox.thioredoxin		GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	
-Cre03.g197450						
-Cre03.g175750						
-Cre03.g185900						
-Cre03.g163400						
-Cre03.g184050			Chloroplast	GO:0030677;GO:0008033;GO:0006379;GO:0006364;GO:0004540;GO:0003723;GO:0000172	ribonuclease P complex;tRNA processing;mRNA cleavage;rRNA processing;ribonuclease activity;RNA binding;ribonuclease MRP complex	
-Cre03.g163150						
-Cre03.g213089			Mitochondrion			
-Cre03.g211633			Mitochondrion	GO:0046677	response to antibiotic	
-Cre03.g175650			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre03.g205200	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB21
-Cre03.g165801			Chloroplast	GO:0005515	protein binding	
-Cre03.g162500	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
-Cre03.g187250			Secretory pathway			
-Cre03.g156150	GMM:29.2.2.3.5;GMM:28.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL13
-Cre03.g156600			Chloroplast			
-Cre03.g150783						
-Cre03.g181900			Chloroplast			
-Cre03.g143887	GMM:29.1.19	protein.aa activation.arginine-tRNA ligase		GO:0006420;GO:0005737;GO:0005524;GO:0004814;GO:0000166	arginyl-tRNA aminoacylation;cytoplasm;ATP binding;arginine-tRNA ligase activity;nucleotide binding	
-Cre03.g196950						
-Cre03.g193400	GMM:27.3.85;GMM:27.2	RNA.regulation of transcription.sigma like plant;RNA.transcription		GO:0016987;GO:0006355;GO:0006352;GO:0003700;GO:0003677	"sigma factor activity;regulation of transcription, DNA-templated;DNA-templated transcription, initiation;transcription factor activity, sequence-specific DNA binding;DNA binding"	
-Cre03.g192501			Chloroplast			
-Cre03.g166850	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion			
-Cre03.g195850	GMM:29.4;GMM:27.3.67	protein.postranslational modification;RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0055114;GO:0033743;GO:0030091;GO:0016671;GO:0006979	"oxidation-reduction process;peptide-methionine (R)-S-oxide reductase activity;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;response to oxidative stress"	
-Cre03.g183650	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase	Secretory pathway	GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GDP4
-Cre03.g174050	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP4
-Cre03.g198450						
-Cre03.g201000			Chloroplast			
-Cre03.g170900						
-Cre03.g205450			Secretory pathway			
-Cre03.g162550	GMM:13.1.3.4	amino acid metabolism.synthesis.aspartate family.methionine		GO:0009116;GO:0003824	nucleoside metabolic process;catalytic activity	
-Cre03.g165500						
-Cre03.g164500	GMM:27.3	RNA.regulation of transcription	Secretory pathway			
-Cre03.g158350			Mitochondrion			
-Cre03.g180000			Chloroplast			
-Cre03.g144144			Mitochondrion			
-Cre03.g152100	GMM:28.99;GMM:27.1.19	DNA.unspecified;RNA.processing.ribonucleases		GO:0004527;GO:0003676	exonuclease activity;nucleic acid binding	XRN2
-Cre03.g156650				GO:0006468;GO:0005524;GO:0004674	protein phosphorylation;ATP binding;protein serine/threonine kinase activity	
-Cre03.g202500			Mitochondrion			
-Cre03.g167450			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre03.g210289						
-Cre03.g170550			Chloroplast			
-Cre03.g206351			Secretory pathway			
-Cre03.g178500	GMM:31.6.1.11	cell.motility.eukaryotes.other				RIB43
-Cre03.g206750						
-Cre03.g193000						HAD5
-Cre03.g144264	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g208161						
-Cre03.g195550	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase				
-Cre03.g202600						
-Cre03.g154150	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005096	GTPase activator activity	
-Cre03.g207900	GMM:31.3;GMM:31.2	cell.cycle;cell.division	Mitochondrion	GO:0005634	nucleus	CYCA1
-Cre03.g207502	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast	GO:0008270	zinc ion binding	
-Cre03.g184550	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			CPLD28
-Cre03.g194500				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g189300	GMM:31.1	cell.organisation	Chloroplast			PLAP10
-Cre03.g196651	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RAD10
-Cre03.g188850			Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g176930						
-Cre03.g181450			Secretory pathway			
-Cre03.g200351			Chloroplast			
-Cre03.g193800	GMM:29.1.22	protein.aa activation.asparagine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	TSN1
-Cre03.g158950	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003676	nucleic acid binding	
-Cre03.g157250	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g181050			Secretory pathway			
-Cre03.g171700				GO:0080019	fatty-acyl-CoA reductase (alcohol-forming) activity	
-Cre03.g145007			Mitochondrion			
-Cre03.g146427			Mitochondrion			
-Cre03.g202225						
-Cre03.g171200	GMM:23.2	nucleotide metabolism.degradation	Secretory pathway	GO:0016787	hydrolase activity	
-Cre03.g169601	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB18
-Cre03.g181750			Secretory pathway			
-Cre03.g186700						
-Cre03.g208100	GMM:27.1.19	RNA.processing.ribonucleases	Mitochondrion			RNB1
-Cre03.g170500						
-Cre03.g208945						
-Cre03.g212081			Mitochondrion			
-Cre03.g200767						CSR9
-Cre03.g172950	GMM:29.2.2.3.1;GMM:28.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;DNA.synthesis/chromatin structure		GO:0006396;GO:0003723	RNA processing;RNA binding	PUS21
-Cre03.g205921				GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	
-Cre03.g171424						
-Cre03.g206600	GMM:13.1.4	amino acid metabolism.synthesis.branched chain group	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	AAD1
-Cre03.g204577	GMM:29.9	protein.co-chaperones	Chloroplast			DNJ31
-Cre03.g155900						
-Cre03.g191200				GO:0008173;GO:0008171;GO:0001510	RNA methyltransferase activity;O-methyltransferase activity;RNA methylation	RME3
-Cre03.g190311						
-Cre03.g145807						
-Cre03.g152900				GO:0016787	hydrolase activity	MPA5
-Cre03.g143987	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
-Cre03.g204750						
-Cre03.g173200			Mitochondrion	GO:0055114;GO:0016972	oxidation-reduction process;thiol oxidase activity	ERV2
-Cre03.g200500			Chloroplast			
-Cre03.g197300			Secretory pathway			
-Cre03.g200879			Secretory pathway;Chloroplast	GO:0008146	sulfotransferase activity	CSR10
-Cre03.g182950	GMM:27.1.2	RNA.processing.RNA helicase		GO:0004386	helicase activity	
-Cre03.g165050	GMM:34.1.2;GMM:34.1	transport.p- and v-ATPases.H+-exporting ATPase;transport.p- and v-ATPases		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	PMA4
-Cre03.g197550			Secretory pathway			
-Cre03.g211969	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Chloroplast			
-Cre03.g149250	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast	GO:0019752;GO:0004451	carboxylic acid metabolic process;isocitrate lyase activity	ICL2
-Cre03.g160450	GMM:33.99;GMM:31.1	development.unspecified;cell.organisation		GO:0051013;GO:0008352;GO:0008017;GO:0005515	microtubule severing;katanin complex;microtubule binding;protein binding	KAT2
-Cre03.g200207	GMM:27.1.2	RNA.processing.RNA helicase	Chloroplast			
-Cre03.g190450	GMM:3.5	minor CHO metabolism.others	Mitochondrion			
-Cre03.g191750			Mitochondrion			
-Cre03.g180250	GMM:3.4.3	minor CHO metabolism.myo-inositol.InsP synthases		GO:0008654;GO:0006021;GO:0004512	phospholipid biosynthetic process;inositol biosynthetic process;inositol-3-phosphate synthase activity	INO1
-Cre03.g178200			Cytosol	GO:0005524	ATP binding	CCT10
-Cre03.g167250			Chloroplast			
-Cre03.g203500	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g145587			Chloroplast			CPLD1
-Cre03.g188350						
-Cre03.g194450						CGL24
-Cre03.g168900				GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO12
-Cre03.g146527	GMM:13.1.2.2.1;GMM:13.1.2.2	amino acid metabolism.synthesis.glutamate family.proline.delta 1-pyrroline-5-carboxylate synthetase;amino acid metabolism.synthesis.glutamate family.proline	Chloroplast	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	GSD1
-Cre03.g203009			Mitochondrion			
-Cre03.g197100	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
-Cre03.g185650				GO:0005515	protein binding	FAP251
-Cre03.g207377			Chloroplast			
-Cre03.g167051	GMM:18	Co-factor and vitamine metabolism		GO:0009236;GO:0003824	cobalamin biosynthetic process;catalytic activity	
-Cre03.g191500						
-Cre03.g160250			Mitochondrion			
-Cre03.g162333	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre03.g192000						SEC13L
-Cre03.g144647						
-Cre03.g187450	GMM:7.2.4;GMM:1.3.10	OPP.non-reductive PP.ribose 5-phosphate isomerase;PS.calvin cycle.Rib5P Isomerase	Chloroplast	GO:0009052;GO:0004751	"pentose-phosphate shunt, non-oxidative branch;ribose-5-phosphate isomerase activity"	RPI1
-Cre03.g174350			Chloroplast			PWR2
-Cre03.g178014			Chloroplast			
-Cre03.g204650	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion			NUOB4
-Cre03.g200100	GMM:29.5	protein.degradation	Mitochondrion	GO:0005515	protein binding	
-Cre03.g186800	GMM:30.2.17	signalling.receptor kinases.DUF 26		GO:0015074	DNA integration	
-Cre03.g206481	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
-Cre03.g183100	GMM:29.3.2	protein.targeting.mitochondria				TIM22B
-Cre03.g158800	GMM:25	C1-metabolism		GO:0046294;GO:0018738	formaldehyde catabolic process;S-formylglutathione hydrolase activity	
-Cre03.g204801				GO:0043240;GO:0006281;GO:0004842	Fanconi anaemia nuclear complex;DNA repair;ubiquitin-protein transferase activity	
-Cre03.g159750	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole				VPS36
-Cre03.g199550	GMM:27.4	RNA.RNA binding				
-Cre03.g203450	GMM:29.2.1.2.1.21	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S21		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS21
-Cre03.g157850						TRXL1
-Cre03.g176600						FAP374
-Cre03.g153500						
-Cre03.g177711			Mitochondrion			
-Cre03.g174950	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	TGL7
-Cre03.g178600	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006265;GO:0005694;GO:0003918;GO:0003917;GO:0003677	DNA topological change;chromosome;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA topoisomerase type I activity;DNA binding	TOP1
-Cre03.g158600			Mitochondrion			
-Cre03.g165950			Mitochondrion			
-Cre03.g173700	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIL14
-Cre03.g212865			Chloroplast			
-Cre03.g208306						
-Cre03.g187850			Chloroplast			
-Cre03.g164150	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre03.g172451			Chloroplast			
-Cre03.g185800			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre03.g149950			Secretory pathway			
-Cre03.g159350				GO:0005515	protein binding	
-Cre03.g146667			Chloroplast			
-Cre03.g200800	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG61
-Cre03.g204017			Chloroplast			
-Cre03.g165250						
-Cre03.g199350	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
-Cre03.g156900	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM5
-Cre03.g161578			Mitochondrion;Secretory pathway			
-Cre03.g161976						
-Cre03.g177250			Secretory pathway			
-Cre03.g203950						
-Cre03.g176000			Mitochondrion			
-Cre03.g159900	GMM:29.2.2.3.99;GMM:29.2.2.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;protein.synthesis.ribosome biogenesis.export from nucleus				
-Cre03.g170001			Secretory pathway			
-Cre03.g146047						
-Cre03.g148800	GMM:26.6	misc.O-methyl transferases		GO:0008171	O-methyltransferase activity	
-Cre03.g204100	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG5
-Cre03.g175600	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g143767			Secretory pathway			
-Cre03.g202900			Mitochondrion			
-Cre03.g150400			Secretory pathway	GO:0016021;GO:0006506	integral component of membrane;GPI anchor biosynthetic process	PIGU
-Cre03.g148201			Chloroplast			
-Cre03.g205361						
-Cre03.g167734						
-Cre03.g189800	GMM:29.6.3.2;GMM:29.6	protein.folding.immunophilins (IMM).cyclophilins;protein.folding	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN38
-Cre03.g149100	GMM:6.1	gluconeogenesis / glyoxylate cycle.citrate synthase	Mitochondrion	GO:0046912	"transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer"	CIS2
-Cre03.g146367				GO:0046983	protein dimerization activity	
-Cre03.g203700						
-Cre03.g179350				GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT16
-Cre03.g201700						
-Cre03.g154726						
-Cre03.g162900	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre03.g205100			Chloroplast			
-Cre03.g179200			Chloroplast			
-Cre03.g204450	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
-Cre03.g164350	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase				
-Cre03.g158050	GMM:29.4	protein.postranslational modification	Chloroplast	GO:2001070;GO:0003824	starch binding;catalytic activity	
-Cre03.g205700			Chloroplast			
-Cre03.g155100			Mitochondrion			
-Cre03.g211185						
-Cre03.g151250	GMM:17.1.2	hormone metabolism.abscisic acid.signal transduction	Mitochondrion			LAN1
-Cre03.g159581			Chloroplast	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
-Cre03.g207550	GMM:16.2.1.10	secondary metabolism.phenylpropanoids.lignin biosynthesis.CAD	Mitochondrion	GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH8
-Cre03.g203150			Mitochondrion			
-Cre03.g172400						
-Cre03.g154425	GMM:31.2	cell.division	Mitochondrion			CLASP
-Cre03.g158450			Secretory pathway			
-Cre03.g203200			Mitochondrion			
-Cre03.g207351						
-Cre03.g205025			Chloroplast			
-Cre03.g199087						
-Cre03.g200787			Secretory pathway			
-Cre03.g152650						
-Cre03.g181600						
-Cre03.g168850			Mitochondrion			
-Cre03.g148850	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre03.g197000	GMM:29.2.2.50	protein.synthesis.ribosome biogenesis.BRIX				
-Cre03.g148400			Secretory pathway			
-Cre03.g200600	GMM:31.1	cell.organisation	Mitochondrion	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN14A-1
-Cre03.g144364				GO:0005515	protein binding	
-Cre03.g180650	GMM:29.5.5	protein.degradation.serine protease				DEG7
-Cre03.g174100	GMM:26.16	misc.myrosinases-lectin-jacalin	Mitochondrion			
-Cre03.g146187	GMM:13.1.2.3.3;GMM:13.1.2.3	amino acid metabolism.synthesis.glutamate family.arginine.N-acetylglutamate-5-P reductase;amino acid metabolism.synthesis.glutamate family.arginine	Chloroplast	GO:0055114;GO:0051287;GO:0046983;GO:0016620;GO:0008652;GO:0005737;GO:0003942	"oxidation-reduction process;NAD binding;protein dimerization activity;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor;cellular amino acid biosynthetic process;cytoplasm;N-acetyl-gamma-glutamyl-phosphate reductase activity"	
-Cre03.g161050						
-Cre03.g178950	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL17
-Cre03.g166400			Secretory pathway	GO:0003824	catalytic activity	
-Cre03.g199050	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis				
-Cre03.g200850			Secretory pathway			
-Cre03.g171900						FAP56
-Cre03.g190000			Mitochondrion	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre03.g195366	GMM:29.4	protein.postranslational modification				
-Cre03.g158200	GMM:27.3.55	RNA.regulation of transcription.HDA				HDA2
-Cre03.g187650			Chloroplast			
-Cre03.g153200						
-Cre03.g163300						CDT1
-Cre03.g149400	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family				RWP11
-Cre03.g207489			Mitochondrion			
-Cre03.g148250	GMM:34.1.1;GMM:27.3.99;GMM:27.3.67;GMM:27.3.63	transport.p- and v-ATPases.H+-transporting two-sector ATPase;RNA.regulation of transcription.unclassified;RNA.regulation of transcription.putative transcription regulator;RNA.regulation of transcription.PHD finger transcription factor		GO:0005515	protein binding	CGL58
-Cre03.g144747	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
-Cre03.g159000			Mitochondrion			
-Cre03.g205473						
-Cre03.g162300				GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre03.g178400			Mitochondrion			
-Cre03.g189600			Mitochondrion			
-Cre03.g203351			Mitochondrion			
-Cre03.g171100			Chloroplast			
-Cre03.g178000						
-Cre03.g164700			Chloroplast			
-Cre03.g160850			Mitochondrion			
-Cre03.g205750				GO:0005096	GTPase activator activity	
-Cre03.g184300						
-Cre03.g207200			Chloroplast			
-Cre03.g172500	GMM:1.1.40	PS.lightreaction.cyclic electron flow-chlororespiration	Chloroplast	GO:0055114;GO:0009916	oxidation-reduction process;alternative oxidase activity	PTOX2
-Cre03.g199650			Secretory pathway			
-Cre03.g166750	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion			PTK3
-Cre03.g209953	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre03.g159800	GMM:3.3;GMM:20.1.5	minor CHO metabolism.sugar alcohols;stress.biotic.regulation of transcription	Chloroplast	GO:0015969	guanosine tetraphosphate metabolic process	
-Cre03.g145767	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure	Chloroplast	GO:0008408;GO:0006139;GO:0005622;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;intracellular;nucleic acid binding	
-Cre03.g175000	GMM:27.1.19	RNA.processing.ribonucleases				RPH3
-Cre03.g167150	GMM:26.7;GMM:16.5.1.1.1.10	"misc.oxidases - copper, flavone etc;secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.flavin-containing monooxygenase"	Chloroplast	GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO1
-Cre03.g196500						
-Cre03.g194535			Mitochondrion			
-Cre03.g144084	GMM:29.5	protein.degradation		GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL7
-Cre03.g157450						
-Cre03.g162750	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre03.g192150			Mitochondrion			
-Cre03.g213201			Chloroplast			CCS2
-Cre03.g161301			Mitochondrion			
-Cre03.g189350						
-Cre03.g173450	GMM:31.5.1;GMM:29.3.3;GMM:26.30	cell.cell death.plants;protein.targeting.chloroplast;misc.other Ferredoxins and Rieske domain	Chloroplast	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	
-Cre03.g183250						
-Cre03.g173050			Chloroplast			
-Cre03.g178250	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOS6
-Cre03.g207800	GMM:16.2.1.10	secondary metabolism.phenylpropanoids.lignin biosynthesis.CAD	Mitochondrion	GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH5
-Cre03.g151400	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
-Cre03.g198700						
-Cre03.g171350	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified	Secretory pathway	GO:0016020;GO:0015031	membrane;protein transport	SEC61A
-Cre03.g203730	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion			DEGO1
-Cre03.g145847			Chloroplast			
-Cre03.g169850	GMM:29.1.16	protein.aa activation.cysteine-tRNA ligase		GO:0006423;GO:0005737;GO:0005524;GO:0004817;GO:0000166	cysteinyl-tRNA aminoacylation;cytoplasm;ATP binding;cysteine-tRNA ligase activity;nucleotide binding	TSC1
-Cre03.g177007	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family	Mitochondrion			
-Cre03.g188500	GMM:27.3.71	RNA.regulation of transcription.SNF7		GO:0007034	vacuolar transport	VPS46
-Cre03.g171000			Mitochondrion			
-Cre03.g197500	GMM:31.6.1.11	cell.motility.eukaryotes.other	Chloroplast			MOT6
-Cre03.g165200			Mitochondrion			ATG7
-Cre03.g202950	GMM:30.3;GMM:3.3;GMM:21.1	signalling.calcium;minor CHO metabolism.sugar alcohols;redox.thioredoxin	Chloroplast	GO:0045454	cell redox homeostasis	TRX14
-Cre03.g155527			Mitochondrion			
-Cre03.g198236						
-Cre03.g151351						
-Cre03.g185450			Chloroplast			
-Cre03.g202300			Chloroplast			
-Cre03.g186600			Secretory pathway			
-Cre03.g199199						
-Cre03.g185100			Mitochondrion			
-Cre03.g188250	GMM:2.1.2.1	major CHO metabolism.synthesis.starch.AGPase	Chloroplast	GO:0016779;GO:0009058	nucleotidyltransferase activity;biosynthetic process	STA6
-Cre03.g204050	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG6
-Cre03.g198950	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	CGL30
-Cre03.g200700						FAP166
-Cre03.g202449			Chloroplast	GO:0005515	protein binding	
-Cre03.g191800				GO:0005515	protein binding	
-Cre03.g145327						
-Cre03.g196750			Secretory pathway	GO:0016021	integral component of membrane	
-Cre03.g144927			Mitochondrion			
-Cre03.g158700			Secretory pathway			
-Cre03.g144504			Chloroplast			
-Cre03.g157600			Mitochondrion			
-Cre03.g172700			Chloroplast			
-Cre03.g146787			Chloroplast			
-Cre03.g181950						
-Cre03.g171550			Mitochondrion			SSA13
-Cre03.g174550						
-Cre03.g146227						
-Cre03.g195900			Chloroplast			
-Cre03.g206350			Mitochondrion			OPR19
-Cre03.g165300			Chloroplast			
-Cre03.g187350	GMM:31.6.1.1;GMM:31.1.1.2;GMM:31.1	cell.motility.eukaryotes.basal bodies;cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007017;GO:0005874;GO:0005525;GO:0005200;GO:0003924	microtubule-based process;microtubule;GTP binding;structural constituent of cytoskeleton;GTPase activity	UNI3
-Cre03.g155500	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX				
-Cre03.g169150	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre03.g188100			Secretory pathway			
-Cre03.g152400			Chloroplast	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	EXN1
-Cre03.g152300			Secretory pathway			
-Cre03.g201888			Mitochondrion			
-Cre03.g205350			Chloroplast	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	EXN8
-Cre03.g193050						
-Cre03.g186200	GMM:11.3.3	lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase				PCT1
-Cre03.g169650						
-Cre03.g179921			Secretory pathway			
-Cre03.g182551	GMM:1.1.5.1	PS.lightreaction.other electron carrier (ox/red).plastocyanin	Chloroplast			PCY1
-Cre03.g155300			Secretory pathway			PHC29
-Cre03.g175926			Secretory pathway			
-Cre03.g180151			Chloroplast			
-Cre03.g150650						
-Cre03.g201450			Secretory pathway			
-Cre03.g154200				GO:0032783;GO:0006355	"ELL-EAF complex;regulation of transcription, DNA-templated"	
-Cre03.g207400	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion			
-Cre03.g148100	GMM:28.2;GMM:21.2	DNA.repair;redox.ascorbate and glutathione				
-Cre03.g209505	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre03.g175550			Mitochondrion			
-Cre03.g173550			Mitochondrion			
-Cre03.g167712	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
-Cre03.g143787			Mitochondrion			
-Cre03.g207500						
-Cre03.g199759	GMM:31.4	cell.vesicle transport				
-Cre03.g183400			Chloroplast			
-Cre03.g180800	GMM:35.1.25;GMM:27.3.67	not assigned.no ontology.paired amphipathic helix repeat-containing protein;RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0006355	"regulation of transcription, DNA-templated"	HDA16
-Cre03.g167050						PDX3
-Cre03.g206705	GMM:29.5.11	protein.degradation.ubiquitin				
-Cre03.g156800						
-Cre03.g168550	GMM:34.3	transport.amino acids	Chloroplast			AOT3
-Cre03.g188800			Chloroplast			
-Cre03.g184600	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family	Mitochondrion			RWP7
-Cre03.g146147	GMM:20.2.5;GMM:1.1.1.2	stress.abiotic.light;PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			
-Cre03.g204602						
-Cre03.g164050	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN15-1
-Cre03.g160350	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	ANK7
-Cre03.g171950	GMM:4.1.15	glycolysis.cytosolic branch.phospho-enol-pyruvate carboxylase (PEPC)		GO:0015977;GO:0008964;GO:0006099	carbon fixation;phosphoenolpyruvate carboxylase activity;tricarboxylic acid cycle	PEPC2
-Cre03.g208304						
-Cre03.g191600			Mitochondrion			
-Cre03.g186100				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre03.g146287						
-Cre03.g191050	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAN1
-Cre03.g187300				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g203050			Mitochondrion			
-Cre03.g149650	GMM:17.1.1.1.10;GMM:16.1.4.10	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.9-cis-epoxycarotenoid dioxygenase;secondary metabolism.isoprenoids.carotenoids.carotenoid cleavage dioxygenase	Secretory pathway			CCD1
-Cre03.g183000			Secretory pathway			
-Cre03.g211297			Chloroplast			
-Cre03.g150050			Chloroplast			
-Cre03.g168000						
-Cre03.g168605	GMM:34.14;GMM:29.1.30;GMM:23.5.2	transport.unspecified cations;protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase		GO:0003723	RNA binding	
-Cre03.g177150			Chloroplast			
-Cre03.g173132						CSB19
-Cre03.g159300						
-Cre03.g203793			Chloroplast			
-Cre03.g183350	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
-Cre03.g156400	GMM:33.99	development.unspecified	Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm8
-Cre03.g145667			Mitochondrion			
-Cre03.g212641	GMM:27.3.72;GMM:27.3.54	RNA.regulation of transcription.Transcriptional Adaptor Zinc Bundle (TAZ) domain family;RNA.regulation of transcription.histone acetyltransferases		GO:0008270;GO:0006355;GO:0005634;GO:0004402;GO:0003712	"zinc ion binding;regulation of transcription, DNA-templated;nucleus;histone acetyltransferase activity;transcription cofactor activity"	
-Cre03.g179400			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT17
-Cre03.g176900			Mitochondrion			
-Cre03.g180050						
-Cre03.g174450			Chloroplast			PWR1
-Cre03.g190500	GMM:26.3.1;GMM:26.3;GMM:2.2.2.1	"misc.gluco-, galacto- and mannosidases.alpha-galactosidase;misc.gluco-, galacto- and mannosidases;major CHO metabolism.degradation.starch.starch cleavage"	Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	GLC2A
-Cre03.g204353	GMM:30.5;GMM:3.5;GMM:29.3.4.99	signalling.G-proteins;minor CHO metabolism.others;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	
-Cre03.g211857	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Chloroplast			
-Cre03.g152350			Chloroplast			
-Cre03.g154800			Mitochondrion			
-Cre03.g204601	GMM:23.3.2.1	nucleotide metabolism.salvage.nucleoside kinases.adenosine kinase		GO:0006166;GO:0004001	purine ribonucleoside salvage;adenosine kinase activity	CPK3
-Cre03.g161500	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre03.g146807			Secretory pathway			
-Cre03.g159500	GMM:22.1.1;GMM:13.1.3.5.5	polyamine metabolism.synthesis.ornithine decarboxylase;amino acid metabolism.synthesis.aspartate family.lysine.diaminopimelate decarboxylase	Mitochondrion	GO:0003824	catalytic activity	ODC1
-Cre03.g155200	GMM:13.1.6.2.1	amino acid metabolism.synthesis.aromatic aa.phenylalanine and tyrosine.chorismate mutase	Chloroplast	GO:0009073;GO:0004106	aromatic amino acid family biosynthetic process;chorismate mutase activity	CHM1
-Cre03.g152000	GMM:18.1;GMM:17.1.1	Co-factor and vitamine metabolism.molybdenum cofactor;hormone metabolism.abscisic acid.synthesis-degradation		GO:0030170;GO:0030151;GO:0003824	pyridoxal phosphate binding;molybdenum ion binding;catalytic activity	MCS1
-Cre03.g143827	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Mitochondrion			FBB7
-Cre03.g157950						
-Cre03.g202851			Mitochondrion			
-Cre03.g193250				GO:0016772;GO:0006388	"transferase activity, transferring phosphorus-containing groups;tRNA splicing, via endonucleolytic cleavage and ligation"	
-Cre03.g196350						
-Cre03.g213425	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase				COX23
-Cre03.g204250	GMM:13.2.3.4	amino acid metabolism.degradation.aspartate family.methionine		GO:0055114;GO:0051287;GO:0006730;GO:0004013	oxidation-reduction process;NAD binding;one-carbon metabolic process;adenosylhomocysteinase activity	SAH1
-Cre03.g210961	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified				
-Cre03.g169400	GMM:3.5;GMM:10.1.5	minor CHO metabolism.others;cell wall.precursor synthesis.UXS		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	UXS1
-Cre03.g195200			Chloroplast			CGL76
-Cre03.g170250	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722	protein dephosphorylation;protein serine/threonine phosphatase activity	
-Cre03.g146547			Secretory pathway			
-Cre03.g144627	GMM:13.1.3.4.1	amino acid metabolism.synthesis.aspartate family.methionine.cystathionine gamma-synthase	Chloroplast	GO:0030170	pyridoxal phosphate binding	CGS1
-Cre03.g203625						
-Cre03.g200050						CAL1
-Cre03.g176500			Mitochondrion			
-Cre03.g145147			Secretory pathway	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
-Cre03.g192050				GO:0033573;GO:0016020;GO:0006827;GO:0005381	high-affinity iron permease complex;membrane;high-affinity iron ion transmembrane transport;iron ion transmembrane transporter activity	FTR1
-Cre03.g172250	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion	GO:0005525	GTP binding	
-Cre03.g144687	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast			
-Cre03.g179820						
-Cre03.g160950						
-Cre03.g175400	GMM:4.1.3	glycolysis.cytosolic branch.glucose-6-phosphate isomerase	Chloroplast	GO:0006096;GO:0006094;GO:0004347	glycolytic process;gluconeogenesis;glucose-6-phosphate isomerase activity	PGI1
-Cre03.g171179			Mitochondrion			
-Cre03.g157550	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre03.g199423	GMM:23.1.1.4	nucleotide metabolism.synthesis.pyrimidine.dihydroorotate dehydrogenase		GO:0055114;GO:0016627;GO:0005737	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;cytoplasm"	PYR4
-Cre03.g145947			Mitochondrion			
-Cre03.g204900			Mitochondrion	GO:0006282	regulation of DNA repair	
-Cre03.g146087						
-Cre03.g177600			Secretory pathway	GO:0055114;GO:0050660;GO:0016491;GO:0016020;GO:0003885	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;membrane;D-arabinono-1,4-lactone oxidase activity"	
-Cre03.g144424	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre03.g194250	GMM:29.5	protein.degradation		GO:0006511;GO:0005622;GO:0004843	ubiquitin-dependent protein catabolic process;intracellular;thiol-dependent ubiquitin-specific protease activity	
-Cre03.g145067			Mitochondrion			
-Cre03.g176651				GO:0005515	protein binding	MYSM1
-Cre03.g202200						
-Cre03.g166150						
-Cre03.g144404			Chloroplast	GO:0006464	cellular protein modification process	
-Cre03.g177850	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion			
-Cre03.g207153						
-Cre03.g154050						
-Cre03.g196000				GO:0033588	Elongator holoenzyme complex	
-Cre03.g175100						
-Cre03.g153900				GO:0071949	FAD binding	FMO11
-Cre03.g200431			Secretory pathway			
-Cre03.g161081			Chloroplast			
-Cre03.g174200				GO:0005515	protein binding	
-Cre03.g194850	GMM:8.2.9;GMM:8.1.9;GMM:6.3	TCA / organic transformation.other organic acid transformations.cyt MDH;TCA / organic transformation.TCA.malate DH;gluconeogenesis / glyoxylate cycle.malate dehydrogenase	Chloroplast	GO:0055114;GO:0019752;GO:0016616;GO:0016491	"oxidation-reduction process;carboxylic acid metabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;oxidoreductase activity"	MDN1
-Cre03.g184200			Chloroplast			
-Cre03.g176200				GO:0005515	protein binding	
-Cre03.g201250				GO:0003676	nucleic acid binding	
-Cre03.g172600						
-Cre03.g146687	GMM:27.1	RNA.processing				
-Cre03.g182900			Secretory pathway	GO:0016020	membrane	
-Cre03.g190650			Mitochondrion			
-Cre03.g145427	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			
-Cre03.g158150	GMM:27.4	RNA.RNA binding		GO:0006396;GO:0003723;GO:0003676	RNA processing;RNA binding;nucleic acid binding	
-Cre03.g156950	GMM:9.5	mitochondrial electron transport / ATP synthesis.cytochrome c reductase		GO:0070469;GO:0022900;GO:0005743	respiratory chain;electron transport chain;mitochondrial inner membrane	QCR8
-Cre03.g150151			Mitochondrion			NRT2.5
-Cre03.g155850			Chloroplast			
-Cre03.g145367						
-Cre03.g192550	GMM:28.2	DNA.repair		GO:0030870;GO:0016887;GO:0006281;GO:0005634;GO:0000723	Mre11 complex;ATPase activity;DNA repair;nucleus;telomere maintenance	RAD50
-Cre03.g155051	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"	Mitochondrion	GO:0030170;GO:0019752;GO:0016831	pyridoxal phosphate binding;carboxylic acid metabolic process;carboxy-lyase activity	
-Cre03.g154700			Chloroplast			
-Cre03.g155700	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			
-Cre03.g197700	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005634;GO:0005515	nucleus;protein binding	HLM8
-Cre03.g206202	GMM:31.3;GMM:29.4.1;GMM:29.4	cell.cycle;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g212417	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors				
-Cre03.g163250			Chloroplast			
-Cre03.g204150	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B		GO:0005515	protein binding	IFT80
-Cre03.g197600						
-Cre03.g162366	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0055114;GO:0016491;GO:0005507	oxidation-reduction process;oxidoreductase activity;copper ion binding	
-Cre03.g174650	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB20
-Cre03.g206500			Secretory pathway			
-Cre03.g157400	GMM:34.15	transport.potassium	Chloroplast			
-Cre03.g185050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP53
-Cre03.g203800			Chloroplast			
-Cre03.g172800	GMM:27.3.99;GMM:27.3.12	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.C3H zinc finger family		GO:0046872	metal ion binding	
-Cre03.g159083						
-Cre03.g157751						
-Cre03.g173800	GMM:3.5	minor CHO metabolism.others	Chloroplast	GO:0009443;GO:0008478	pyridoxal 5'-phosphate salvage;pyridoxal kinase activity	PDX2
-Cre03.g168600			Mitochondrion			
-Cre03.g205950	GMM:4.3.16;GMM:4.1.16;GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	glycolysis.unclear/dually targeted.phosphoenolpyruvate carboxykinase (PEPCK);glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre03.g188050			Chloroplast			
-Cre03.g203650			Mitochondrion			
-Cre03.g144867						
-Cre03.g198212						
-Cre03.g195410			Secretory pathway			
-Cre03.g206950	GMM:27.2	RNA.transcription	Chloroplast	GO:0003968	RNA-directed RNA polymerase activity	
-Cre03.g149600	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG53
-Cre03.g202350						
-Cre03.g198850	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	TL19
-Cre03.g182450	GMM:25.5	C1-metabolism.methylenetetrahydrofolate dehydrogenase and methenyltetrahydrofolate cyclohydrolase	Chloroplast	GO:0055114;GO:0009396;GO:0004488;GO:0003824	oxidation-reduction process;folic acid-containing compound biosynthetic process;methylenetetrahydrofolate dehydrogenase (NADP+) activity;catalytic activity	
-Cre03.g145727	GMM:29.1.1	protein.aa activation.tyrosine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	
-Cre03.g207150	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion			
-Cre03.g196600	GMM:28.2	DNA.repair		GO:0007049;GO:0006281;GO:0005634	cell cycle;DNA repair;nucleus	RAD17
-Cre03.g160100	GMM:33.99	development.unspecified				
-Cre03.g165850						
-Cre03.g162200			Chloroplast			
-Cre03.g194750						
-Cre03.g202785			Mitochondrion			
-Cre03.g146107						
-Cre03.g212977				GO:0008270;GO:0006355;GO:0005634;GO:0004402;GO:0003712	"zinc ion binding;regulation of transcription, DNA-templated;nucleus;histone acetyltransferase activity;transcription cofactor activity"	
-Cre03.g207937			Chloroplast			
-Cre03.g166500			Mitochondrion			
-Cre03.g199090						
-Cre03.g166050	GMM:15.2;GMM:15	"metal handling.binding, chelation and storage;metal handling"		GO:0008430	selenium binding	SBD1
-Cre03.g145107	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	
-Cre03.g169950	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family	Secretory pathway			
-Cre03.g202000	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN4-2
-Cre03.g179961	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0008270;GO:0006260;GO:0005634;GO:0003887	zinc ion binding;DNA replication;nucleus;DNA-directed DNA polymerase activity	
-Cre03.g207713	GMM:2.2.2.8;GMM:2.1.2.4	major CHO metabolism.degradation.starch.ISA3;major CHO metabolism.synthesis.starch.debranching	Chloroplast	GO:0043169;GO:0005975;GO:0004553;GO:0003824	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	ISA3
-Cre03.g174500	GMM:27.3.22	RNA.regulation of transcription.homeobox transcription factor family (HB)		GO:0006355;GO:0006351;GO:0003677	"regulation of transcription, DNA-templated;transcription, DNA-templated;DNA binding"	HDZ1
-Cre03.g206800	GMM:34.2;GMM:2.2.2.6	transport.sugars;major CHO metabolism.degradation.starch.transporter	Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	HXT1
-Cre03.g189550	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZIP3
-Cre03.g189100						
-Cre03.g181550			Mitochondrion			
-Cre03.g205850	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	MFT6
-Cre03.g185550	GMM:1.3.9	PS.calvin cycle.sedoheptulose bisphosphatase	Chloroplast	GO:0042578;GO:0042132;GO:0005975	"phosphoric ester hydrolase activity;fructose 1,6-bisphosphate 1-phosphatase activity;carbohydrate metabolic process"	SEBP1
-Cre03.g152800						
-Cre03.g198600						
-Cre03.g150900	GMM:27.1	RNA.processing				
-Cre03.g192950			Chloroplast			
-Cre03.g208558						
-Cre03.g164600	GMM:34.1.2;GMM:34.1	transport.p- and v-ATPases.H+-exporting ATPase;transport.p- and v-ATPases		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	PMA3
-Cre03.g165186			Chloroplast			
-Cre03.g204129			Secretory pathway			
-Cre03.g161363			Chloroplast			
-Cre03.g144104						
-Cre03.g162701	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0005524	ATP binding	
-Cre03.g151950			Secretory pathway			LZY1B
-Cre03.g167850			Chloroplast	GO:0005515	protein binding	
-Cre03.g151000	GMM:29.4;GMM:2.2.2.10;GMM:2.2.2	protein.postranslational modification;major CHO metabolism.degradation.starch.laforin like phosphoglucan phosphatase (SEX4);major CHO metabolism.degradation.starch	Chloroplast	GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	DSP8
-Cre03.g170350	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified				SEC12
-Cre03.g163950	GMM:13.2.5.3	amino acid metabolism.degradation.serine-glycine-cysteine group.cysteine		GO:0055114;GO:0046439;GO:0017172;GO:0005506	oxidation-reduction process;L-cysteine metabolic process;cysteine dioxygenase activity;iron ion binding	CDO2
-Cre03.g146747	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX10
-Cre03.g168450	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0005524	ATP binding	CCT8
-Cre03.g175850	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway	GO:0006281;GO:0004518	DNA repair;nuclease activity	
-Cre03.g157700	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase				COX5C
-Cre03.g208497						
-Cre03.g201900	GMM:31.6.1.5.1	cell.motility.eukaryotes.radial spoke.head				RSP1
-Cre03.g193576			Chloroplast			
-Cre03.g189250	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAB11
-Cre03.g161800	GMM:29.2.2	protein.synthesis.ribosome biogenesis	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre03.g183500						
-Cre03.g175700	GMM:31.1	cell.organisation				
-Cre03.g162150	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion			
-Cre03.g160750	GMM:34.12	transport.metal		GO:0055085;GO:0016021;GO:0008324;GO:0006812	transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport	MTP3
-Cre03.g146467	GMM:34.99	transport.misc				TRS31
-Cre03.g206929	GMM:29.5	protein.degradation	Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	EGY1
-Cre03.g190950	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007017;GO:0005874;GO:0003924	microtubule-based process;microtubule;GTPase activity	TUA1
-Cre03.g180450				GO:0016787;GO:0009166	hydrolase activity;nucleotide catabolic process	FAP215
-Cre03.g158850	GMM:35.1.9	not assigned.no ontology.BTB/POZ domain-containing protein				
-Cre03.g164950	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003676	nucleic acid binding	SRS3
-Cre03.g167887			Secretory pathway	GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	
-Cre03.g209729			Secretory pathway			
-Cre03.g180400			Chloroplast			
-Cre03.g184500			Chloroplast			
-Cre03.g178150	GMM:31.6.1.6.1;GMM:30.3;GMM:3.3	cell.motility.eukaryotes.central pair.C1a;signalling.calcium;minor CHO metabolism.sugar alcohols				CAM1
-Cre03.g165450						
-Cre03.g186950	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre03.g203569			Secretory pathway			
-Cre03.g187050	GMM:34.7;GMM:34.2	transport.phosphate;transport.sugars	Chloroplast			PHT3
-Cre03.g183850	GMM:26.30;GMM:21.99;GMM:1.1.5.2	misc.other Ferredoxins and Rieske domain;redox.misc;PS.lightreaction.other electron carrier (ox/red).ferredoxin	Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX6
-Cre03.g201664	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0042765;GO:0016021	GPI-anchor transamidase complex;integral component of membrane	GIT2
-Cre03.g163500			Chloroplast			CGLD21
-Cre03.g154850	GMM:9.99	mitochondrial electron transport / ATP synthesis.unspecified	Mitochondrion	GO:0006744	ubiquinone biosynthetic process	COQ4
-Cre03.g173850			Chloroplast			
-Cre03.g151500			Chloroplast			
-Cre03.g169750						FAP371
-Cre03.g151800			Secretory pathway			
-Cre03.g163376						
-Cre03.g205650	GMM:29.5.11	protein.degradation.ubiquitin				
-Cre03.g168350	GMM:27.1	RNA.processing				
-Cre03.g198288			Secretory pathway			
-Cre03.g192400						
-Cre03.g211521				GO:0006950	response to stress	FAP165
-Cre03.g206450						
-Cre03.g146587						
-Cre03.g196450			Chloroplast	GO:0016593;GO:0016570;GO:0006368;GO:0003677	Cdc73/Paf1 complex;histone modification;transcription elongation from RNA polymerase II promoter;DNA binding	
-Cre03.g145467			Mitochondrion			
-Cre03.g179750			Mitochondrion	GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre03.g195750	GMM:33.99	development.unspecified		GO:0005515	protein binding	
-Cre03.g184151	GMM:26.24	misc.GCN5-related N-acetyltransferase		GO:0008080	N-acetyltransferase activity	
-Cre03.g192250			Secretory pathway			PHC69
-Cre03.g191350	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
-Cre03.g176440						
-Cre03.g193350	GMM:29.4	protein.postranslational modification		GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	DSP7
-Cre03.g167690						
-Cre03.g182650	GMM:11.3	lipid metabolism.phospholipid synthesis		GO:0016746;GO:0008152;GO:0006644	"transferase activity, transferring acyl groups;metabolic process;phospholipid metabolic process"	PGA1
-Cre03.g207950	GMM:27.1	RNA.processing				
-Cre03.g199950			Secretory pathway			
-Cre03.g210849	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g150550						
-Cre03.g156000						
-Cre03.g170601			Mitochondrion			
-Cre03.g186000			Chloroplast			
-Cre03.g145707						
-Cre03.g201400	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre03.g184700	GMM:29.5	protein.degradation		GO:0006508;GO:0004197	proteolysis;cysteine-type endopeptidase activity	
-Cre03.g177476						
-Cre03.g199500						FAP129
-Cre03.g179050			Mitochondrion			
-Cre03.g160500	GMM:29.1.6	protein.aa activation.lysine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0003676;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleic acid binding;nucleotide binding	TSK1
-Cre03.g209169			Mitochondrion			
-Cre03.g181400	GMM:13.1.6.5.1	amino acid metabolism.synthesis.aromatic aa.tryptophan.anthranilate synthase		GO:0016833;GO:0009058	oxo-acid-lyase activity;biosynthetic process	ADC1
-Cre03.g159200	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT	Chloroplast	GO:0005515;GO:0004842	protein binding;ubiquitin-protein transferase activity	UBC8
-Cre03.g154250	GMM:3.6;GMM:29.4.1;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK6
-Cre03.g205428			Secretory pathway			
-Cre03.g170650						
-Cre03.g168150	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre03.g195600	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase		GO:0005991;GO:0004555	"trehalose metabolic process;alpha,alpha-trehalase activity"	
-Cre03.g163850	GMM:29.5.11.4.2;GMM:27.3.11	protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.C2H2 zinc finger family		GO:0042393	histone binding	
-Cre03.g150251			Mitochondrion			
-Cre03.g149750			Mitochondrion			DMA2
-Cre03.g182100	GMM:30.4.5	signalling.phosphinositides.inositol-tetrakisphosphate 1-kinase	Mitochondrion	GO:0052726;GO:0052725;GO:0047325;GO:0032957;GO:0005622;GO:0005524;GO:0000287	"inositol-1,3,4-trisphosphate 5-kinase activity;inositol-1,3,4-trisphosphate 6-kinase activity;inositol tetrakisphosphate 1-kinase activity;inositol trisphosphate metabolic process;intracellular;ATP binding;magnesium ion binding"	ITPK1
-Cre03.g182050	GMM:11.1.9	lipid metabolism.FA synthesis and FA elongation.long chain fatty acid CoA ligase		GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre03.g152450	GMM:31.4;GMM:27.3.48	cell.vesicle transport;RNA.regulation of transcription.FHA transcription factor		GO:0005515	protein binding	
-Cre03.g177053	GMM:33.99;GMM:17.2.2	development.unspecified;hormone metabolism.auxin.signal transduction				
-Cre03.g199750	GMM:26.23	misc.rhodanese	Chloroplast			
-Cre01.g013800				GO:0008270;GO:0003676	zinc ion binding;nucleic acid binding	TCY1
-Cre01.g061077	GMM:13	amino acid metabolism	Chloroplast			CGL93
-Cre01.g003508			Chloroplast			
-Cre01.g052650	GMM:31.6.1.10;GMM:26.13	cell.motility.eukaryotes.flagellar associated proteins;misc.acid and other phosphatases	Mitochondrion	GO:0003993	acid phosphatase activity	VIP2
-Cre01.g024300				GO:0005515	protein binding	
-Cre01.g007774						
-Cre01.g028050			Secretory pathway			
-Cre01.g049750						
-Cre01.g054050			Chloroplast			
-Cre01.g051050			Chloroplast			FAP225
-Cre01.g055100	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
-Cre01.g014500	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0016773;GO:0016020;GO:0005524	"phosphotransferase activity, alcohol group as acceptor;membrane;ATP binding"	
-Cre01.g025700			Mitochondrion	GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity	
-Cre01.g033532						
-Cre01.g024250			Secretory pathway			HEL4
-Cre01.g048850	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0003677	DNA binding	
-Cre01.g019950	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ7
-Cre01.g066917	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM1
-Cre01.g055600	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIL15
-Cre01.g024200	GMM:27.1.3.9;GMM:27.1	RNA.processing.3' end processing.CstF64;RNA.processing		GO:0031124;GO:0003676	mRNA 3'-end processing;nucleic acid binding	
-Cre01.g028900			Mitochondrion			
-Cre01.g051174			Mitochondrion	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre01.g016900			Chloroplast			
-Cre01.g031550	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0016787	hydrolase activity	CSB6
-Cre01.g041450	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre01.g026050			Mitochondrion			
-Cre01.g006450	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
-Cre01.g013050	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX	Secretory pathway	GO:0005515	protein binding	
-Cre01.g055500	GMM:11.1.8	lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase	Mitochondrion			
-Cre01.g041700						
-Cre01.g042700						
-Cre01.g053288	GMM:33.99	development.unspecified	Secretory pathway	GO:0006396	RNA processing	
-Cre01.g008402				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g024950						
-Cre01.g013100			Chloroplast			PRL10
-Cre01.g021050	GMM:34.9;GMM:29.3.2	transport.metabolite transporters at the mitochondrial membrane;protein.targeting.mitochondria				TIM22A
-Cre01.g008100	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family				
-Cre01.g039900	GMM:27.1.19	RNA.processing.ribonucleases		GO:0008033	tRNA processing	TRZ4
-Cre01.g029300	GMM:4.1.7;GMM:1.3.5	glycolysis.cytosolic branch.triosephosphate isomerase (TPI);PS.calvin cycle.TPI	Chloroplast	GO:0008152;GO:0004807	metabolic process;triose-phosphate isomerase activity	TPIC1
-Cre01.g002500	GMM:30.11	signalling.light				COP1
-Cre01.g008950						
-Cre01.g003376	GMM:31.2;GMM:20.2.1	cell.division;stress.abiotic.heat				
-Cre01.g019700	GMM:27.1	RNA.processing	Mitochondrion			PAP7
-Cre01.g036850	GMM:13.2.2.2	amino acid metabolism.degradation.glutamate family.proline	Chloroplast	GO:0006562;GO:0004657	proline catabolic process;proline dehydrogenase activity	PDY1
-Cre01.g019650			Chloroplast			
-Cre01.g006700						
-Cre01.g002234						
-Cre01.g000500						AXL5
-Cre01.g010550			Mitochondrion			HLD2
-Cre01.g029800			Mitochondrion			
-Cre01.g014150	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	MFT5
-Cre01.g050200	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB9
-Cre01.g001000						
-Cre01.g030450	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease				
-Cre01.g046500			Chloroplast			
-Cre01.g010900	GMM:4.1.8;GMM:1.3.4	glycolysis.cytosolic branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH);PS.calvin cycle.GAP	Chloroplast	GO:0055114;GO:0016620	"oxidation-reduction process;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor"	GAP3
-Cre01.g010296						
-Cre01.g032150				GO:0005515	protein binding	FAP187
-Cre01.g002750			Mitochondrion			
-Cre01.g025726	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				
-Cre01.g004400			Secretory pathway			
-Cre01.g008051	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			
-Cre01.g005850	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				CBA2
-Cre01.g030800	GMM:30.11.1	signalling.light.COP9 signalosome		GO:0005515	protein binding	CSN2
-Cre01.g022750	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP159
-Cre01.g040750	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
-Cre01.g028000						
-Cre01.g032550			Chloroplast			CGL127
-Cre01.g022900			Mitochondrion			
-Cre01.g012222						
-Cre01.g004800	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family	Mitochondrion			
-Cre01.g033091	GMM:27.1.19	RNA.processing.ribonucleases				
-Cre01.g042000				GO:0005515	protein binding	
-Cre01.g014950			Mitochondrion			
-Cre01.g027450	GMM:21.1	redox.thioredoxin		GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRX10
-Cre01.g034500						
-Cre01.g048150			Chloroplast			HLA8
-Cre01.g040450	GMM:30.2.99;GMM:30.10;GMM:3.1	signalling.receptor kinases.misc;signalling.phosphorelay;minor CHO metabolism.raffinose family		GO:0004871;GO:0000160	signal transducer activity;phosphorelay signal transduction system	HDT1
-Cre01.g052450			Chloroplast			
-Cre01.g051850			Chloroplast			
-Cre01.g004651				GO:0005622;GO:0003676	intracellular;nucleic acid binding	
-Cre01.g011660						
-Cre01.g001685						
-Cre01.g040476						
-Cre01.g038350			Chloroplast			
-Cre01.g035500	GMM:30.9;GMM:30.4.2;GMM:3.9	signalling.lipids;signalling.phosphinositides.phosphatidylinositol 4-kinase;signalling.lipids	Mitochondrion	GO:0048015;GO:0046854;GO:0016773	"phosphatidylinositol-mediated signaling;phosphatidylinositol phosphorylation;phosphotransferase activity, alcohol group as acceptor"	VPS34
-Cre01.g055050	GMM:29.5.3	protein.degradation.cysteine protease				
-Cre01.g032450			Secretory pathway	GO:0016020	membrane	
-Cre01.g057426						
-Cre01.g025450				GO:0005515	protein binding	DRC9
-Cre01.g034050	GMM:16.2	secondary metabolism.phenylpropanoids				
-Cre01.g009300	GMM:30.4	signalling.phosphinositides		GO:0042578;GO:0005515	phosphoric ester hydrolase activity;protein binding	
-Cre01.g033900	GMM:27.3.28	RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre01.g032950						
-Cre01.g055436			Chloroplast			
-Cre01.g009800						FAP289
-Cre01.g030950						
-Cre01.g006733						
-Cre01.g041900				GO:0034477;GO:0004518	U6 snRNA 3'-end processing;nuclease activity	
-Cre01.g016001			Mitochondrion			
-Cre01.g027000	GMM:29.2.1.99.2.5;GMM:29.2.1.2.2.16;GMM:29.2.1.2.2.11	protein.synthesis.ribosomal protein.unknown.large subunit.L5;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L16;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L11				RPL11
-Cre01.g053200	GMM:28.99	DNA.unspecified	Chloroplast	GO:0008081;GO:0006281;GO:0005634	phosphoric diester hydrolase activity;DNA repair;nucleus	
-Cre01.g045426			Chloroplast			
-Cre01.g018650			Mitochondrion	GO:0003677	DNA binding	
-Cre01.g029450	GMM:27.3.62;GMM:27.3.53	RNA.regulation of transcription.nucleosome/chromatin assembly factor group;RNA.regulation of transcription.high mobility group family (HMG)				
-Cre01.g042250			Secretory pathway			
-Cre01.g006150	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	GTP binding	EFG9
-Cre01.g038050	GMM:31.9	cell.eyespot	Secretory pathway	GO:0016020;GO:0007165;GO:0000160;GO:0000155	membrane;signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	COP7
-Cre01.g050900			Mitochondrion			
-Cre01.g003950			Chloroplast			
-Cre01.g013850						
-Cre01.g017850			Secretory pathway			
-Cre01.g000200			Mitochondrion			
-Cre01.g017600						
-Cre01.g017250			Secretory pathway			
-Cre01.g007150				GO:0005515	protein binding	
-Cre01.g047850	GMM:16.2	secondary metabolism.phenylpropanoids	Mitochondrion	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	
-Cre01.g036400	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
-Cre01.g027200	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC12
-Cre01.g030150						
-Cre01.g024050			Chloroplast			
-Cre01.g045200	GMM:17.7.1.4	hormone metabolism.jasmonate.synthesis-degradation.allene oxidase cyclase	Secretory pathway	GO:0016853;GO:0009507	isomerase activity;chloroplast	
-Cre01.g043300			Mitochondrion			
-Cre01.g054650						
-Cre01.g015700	GMM:29.5;GMM:13.1.3.4.12	protein.degradation;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm1
-Cre01.g049450			Secretory pathway			
-Cre01.g046450			Chloroplast			
-Cre01.g028450	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases		GO:0051536;GO:0008173;GO:0006364;GO:0005737;GO:0003824	iron-sulfur cluster binding;RNA methyltransferase activity;rRNA processing;cytoplasm;catalytic activity	
-Cre01.g000250			Mitochondrion	GO:0016021	integral component of membrane	SNR1
-Cre01.g020400	GMM:33.99	development.unspecified		GO:0005515	protein binding	
-Cre01.g009025						
-Cre01.g007200	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
-Cre01.g021800	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
-Cre01.g019400						
-Cre01.g049132			Chloroplast	GO:0007165;GO:0005515	signal transduction;protein binding	
-Cre01.g018500	GMM:29.4	protein.postranslational modification		GO:0008897;GO:0000287	holo-[acyl-carrier-protein] synthase activity;magnesium ion binding	
-Cre01.g037250			Mitochondrion			
-Cre01.g001983						
-Cre01.g027950	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B	Mitochondrion	GO:0048487;GO:0042384;GO:0042073;GO:0030992	beta-tubulin binding;cilium assembly;intraciliary transport;intraciliary transport particle B	IFT74
-Cre01.g064727	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g068377	GMM:33.99	development.unspecified	Mitochondrion	GO:0042254	ribosome biogenesis	
-Cre01.g053450				GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre01.g016100			Secretory pathway			
-Cre01.g027100	GMM:29.5;GMM:29.3.2	protein.degradation;protein.targeting.mitochondria		GO:0016020;GO:0008236;GO:0006508	membrane;serine-type peptidase activity;proteolysis	IMP2
-Cre01.g007500	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	NSS1
-Cre01.g044450			Mitochondrion	GO:0016021;GO:0004252	integral component of membrane;serine-type endopeptidase activity	
-Cre01.g027550	GMM:26.10	misc.cytochrome P450		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
-Cre01.g018800	GMM:9.9;GMM:34.1.1	mitochondrial electron transport / ATP synthesis.F1-ATPase;transport.p- and v-ATPases.H+-transporting two-sector ATPase	Mitochondrion	GO:0015986;GO:0015078	ATP synthesis coupled proton transport;hydrogen ion transmembrane transporter activity	ATP6
-Cre01.g049250						
-Cre01.g054700			Mitochondrion			
-Cre01.g004950						
-Cre01.g023650	GMM:34.3	transport.amino acids	Chloroplast	GO:0055085;GO:0016020;GO:0015171;GO:0006810;GO:0003333	transmembrane transport;membrane;amino acid transmembrane transporter activity;transport;amino acid transmembrane transport	
-Cre01.g026350						
-Cre01.g040100						
-Cre01.g045950						
-Cre01.g038000	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
-Cre01.g053600	GMM:29.2.1.99.2.27	protein.synthesis.ribosomal protein.unknown.large subunit.L27		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL27
-Cre01.g025350						FAP235
-Cre01.g000350	GMM:1.1.5.4	PS.lightreaction.other electron carrier (ox/red).ferredoxin oxireductase		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre01.g014200			Mitochondrion			
-Cre01.g028150						CPLD69
-Cre01.g044550			Chloroplast			
-Cre01.g048501	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
-Cre01.g013750			Chloroplast			
-Cre01.g053100						
-Cre01.g025808			Chloroplast			
-Cre01.g020182			Mitochondrion			
-Cre01.g039702						
-Cre01.g036250	GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g010700	GMM:31.4	cell.vesicle transport		GO:0005515	protein binding	SYP2
-Cre01.g025600			Mitochondrion			
-Cre01.g039050			Mitochondrion			
-Cre01.g040000	GMM:29.2.1.2.2.26	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L26	Chloroplast	GO:0015934;GO:0006412;GO:0003735	large ribosomal subunit;translation;structural constituent of ribosome	RPL26
-Cre01.g044150				GO:0008168	methyltransferase activity	
-Cre01.g055473						
-Cre01.g006800	GMM:29.4	protein.postranslational modification				PIGA
-Cre01.g052800	GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g001250			Secretory pathway			
-Cre01.g012175						
-Cre01.g016700						
-Cre01.g052200	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre01.g015250	GMM:28.1	DNA.synthesis/chromatin structure		GO:0008408;GO:0003677;GO:0000166	3'-5' exonuclease activity;DNA binding;nucleotide binding	POLD1
-Cre01.g047950	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	IFT27
-Cre01.g035950			Mitochondrion	GO:0055085;GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0008271	transmembrane transport;integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;secondary active sulfate transmembrane transporter activity	
-Cre01.g038650	GMM:27.4;GMM:27.1.1	RNA.RNA binding;RNA.processing.splicing	Chloroplast	GO:0003676	nucleic acid binding	SRS2
-Cre01.g030050	GMM:29.2.1.99.2.34	protein.synthesis.ribosomal protein.unknown.large subunit.L34	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL34
-Cre01.g038250	GMM:13.2.7;GMM:11.3	amino acid metabolism.degradation.histidine;lipid metabolism.phospholipid synthesis	Chloroplast	GO:0030170;GO:0019752;GO:0016831	pyridoxal phosphate binding;carboxylic acid metabolic process;carboxy-lyase activity	SDC1
-Cre01.g046237	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0046872;GO:0005524	metal ion binding;ATP binding	
-Cre01.g010800	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease	Mitochondrion	GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
-Cre01.g036750						DMA1
-Cre01.g005150	GMM:13.1.5.2.3;GMM:13.1.1.3.11;GMM:1.2.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.serine glyoxylate aminotransferase;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase;PS.photorespiration.aminotransferases peroxisomal	Mitochondrion			SGA1
-Cre01.g036150			Chloroplast			
-Cre01.g050600	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0008168;GO:0006139	methyltransferase activity;nucleobase-containing compound metabolic process	
-Cre01.g012750	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	KCN7
-Cre01.g025250	GMM:18.3	Co-factor and vitamine metabolism.riboflavin	Chloroplast	GO:0009231;GO:0008531	riboflavin biosynthetic process;riboflavin kinase activity	RFK2
-Cre01.g051250	GMM:31.6.1.6.1;GMM:31.6.1.4.1	cell.motility.eukaryotes.central pair.C1a;cell.motility.eukaryotes.axonemal dyneins.outer arm				DLE1
-Cre01.g001800	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	FAP403
-Cre01.g014600	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CSK2
-Cre01.g025150						CPLD15
-Cre01.g040801			Chloroplast			
-Cre01.g063997	GMM:35.1.41	not assigned.no ontology.hydroxyproline rich proteins	Chloroplast			
-Cre01.g007950	GMM:26.1	misc.misc2		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP55B1
-Cre01.g027800	GMM:34.1.1.6;GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit H;transport.p- and v-ATPases.H+-transporting two-sector ATPase		GO:0046961;GO:0016820;GO:0015991;GO:0000221	"proton-transporting ATPase activity, rotational mechanism;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;ATP hydrolysis coupled proton transport;vacuolar proton-transporting V-type ATPase, V1 domain"	ATPVH
-Cre01.g038151	GMM:31.2;GMM:29.5.11.20;GMM:27.3.42	cell.division;protein.degradation.ubiquitin.proteasom;RNA.regulation of transcription.bromodomain proteins		GO:0005524;GO:0005515	ATP binding;protein binding	
-Cre01.g014700			Mitochondrion			
-Cre01.g021450	GMM:20.1.3	stress.biotic.signalling		GO:0005515	protein binding	TPR4
-Cre01.g003650						
-Cre01.g000800			Secretory pathway			CGL136
-Cre01.g028950	GMM:26.23	misc.rhodanese	Secretory pathway			
-Cre01.g038400	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0051082;GO:0006457;GO:0005783;GO:0005509	unfolded protein binding;protein folding;endoplasmic reticulum;calcium ion binding	CRT2
-Cre01.g016200	GMM:34.14;GMM:20.1.3.1	transport.unspecified cations;stress.biotic.signalling.MLO-like		GO:0016021;GO:0006952	integral component of membrane;defense response	MLO4
-Cre01.g036550			Secretory pathway	GO:0035556;GO:0016020	intracellular signal transduction;membrane	ERV14
-Cre01.g030700	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK14
-Cre01.g002824	GMM:26.16	misc.myrosinases-lectin-jacalin	Mitochondrion			SRR24B
-Cre01.g020950	GMM:29.2.6	protein.synthesis.ribosomal RNA		GO:0042254;GO:0005634	ribosome biogenesis;nucleus	
-Cre01.g063632	GMM:28.2	DNA.repair		GO:0008534;GO:0006289;GO:0006284;GO:0003684	oxidized purine nucleobase lesion DNA N-glycosylase activity;nucleotide-excision repair;base-excision repair;damaged DNA binding	
-Cre01.g001100						
-Cre01.g037650						
-Cre01.g046650						
-Cre01.g011200	GMM:27.3	RNA.regulation of transcription		GO:0006367;GO:0005669	transcription initiation from RNA polymerase II promoter;transcription factor TFIID complex	
-Cre01.g003475			Secretory pathway			
-Cre01.g021350			Chloroplast			
-Cre01.g047265			Secretory pathway			PHC52
-Cre01.g061807	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis	Secretory pathway			
-Cre01.g021700	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG36
-Cre01.g041752	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Chloroplast			
-Cre01.g035200			Secretory pathway	GO:0008270	zinc ion binding	
-Cre01.g008300			Mitochondrion			
-Cre01.g053950			Chloroplast			
-Cre01.g039250	GMM:29.2.1.2.1.2	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S2		GO:0006412;GO:0005840;GO:0003735;GO:0003723	translation;ribosome;structural constituent of ribosome;RNA binding	RPS2
-Cre01.g010150				GO:0005525	GTP binding	
-Cre01.g029900	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre01.g009200			Chloroplast			
-Cre01.g039350	GMM:26.10;GMM:26.1;GMM:16.2	misc.cytochrome P450;misc.misc2;secondary metabolism.phenylpropanoids	Secretory pathway	GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	NCR2
-Cre01.g043700						
-Cre01.g024400	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Secretory pathway			TRS85
-Cre01.g022100	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	
-Cre01.g043850	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g019300			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre01.g048250						
-Cre01.g009500	GMM:30.3;GMM:29.4	signalling.calcium;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDPK3
-Cre01.g040517						
-Cre01.g047700	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN40
-Cre01.g033700						
-Cre01.g005050			Secretory pathway	GO:0016020	membrane	
-Cre01.g041000						
-Cre01.g049100			Secretory pathway	GO:0005515	protein binding	
-Cre01.g007051	GMM:29.5.11;GMM:29.2.1.2.2.40	protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL40
-Cre01.g020701			Mitochondrion			
-Cre01.g012650	GMM:34.15	transport.potassium	Secretory pathway	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	KCN9
-Cre01.g029400	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
-Cre01.g053360						
-Cre01.g037500			Chloroplast	GO:0005515	protein binding	
-Cre01.g013500						
-Cre01.g001400	GMM:29.5	protein.degradation	Secretory pathway	GO:0016020;GO:0007155;GO:0006508;GO:0004222	membrane;cell adhesion;proteolysis;metalloendopeptidase activity	ZMP1
-Cre01.g023200						
-Cre01.g005950			Chloroplast			
-Cre01.g029550						
-Cre01.g026700			Chloroplast			
-Cre01.g054950	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion			
-Cre01.g030900	GMM:18.5.2.4;GMM:11.1.8	Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.succinyl-benzoyl CoA synthetase;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase	Secretory pathway	GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre01.g049950	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	VLE1
-Cre01.g050616						
-Cre01.g037751						
-Cre01.g016750	GMM:20.2.5;GMM:1.1.1.2	stress.abiotic.light;PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			PSBS2
-Cre01.g028713						
-Cre01.g016500			Secretory pathway			DLD2
-Cre01.g016514	GMM:8.1.1.3;GMM:11.1.31	TCA / organic transformation.TCA.pyruvate DH.E3;lipid metabolism.FA synthesis and FA elongation.pyruvate DH	Chloroplast	GO:0055114;GO:0050660;GO:0045454;GO:0016491;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;cell redox homeostasis;oxidoreductase activity;tRNA processing	
-Cre01.g031050	GMM:27.3.52	RNA.regulation of transcription.global transcription factor group				
-Cre01.g006000			Mitochondrion			
-Cre01.g035850	GMM:31.4;GMM:29.3.4.2	cell.vesicle transport;protein.targeting.secretory pathway.golgi		GO:0030127;GO:0008270;GO:0006888;GO:0006886	COPII vesicle coat;zinc ion binding;ER to Golgi vesicle-mediated transport;intracellular protein transport	SEC24B
-Cre01.g032350			Secretory pathway			PIG8
-Cre01.g027350	GMM:27.1	RNA.processing		GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	tmg10
-Cre01.g055432	GMM:34.99;GMM:31.2.5	transport.misc;cell.division.plastid	Mitochondrion	GO:0055085;GO:0016020	transmembrane transport;membrane	
-Cre01.g069837						
-Cre01.g023950			Mitochondrion			
-Cre01.g003050	GMM:31.4	cell.vesicle transport		GO:0015031;GO:0006904;GO:0000145	protein transport;vesicle docking involved in exocytosis;exocyst	SEC8
-Cre01.g000450						AXL2
-Cre01.g043150						
-Cre01.g047600	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
-Cre01.g029200	GMM:31.2	cell.division	Secretory pathway	GO:0008233;GO:0006508;GO:0005634	peptidase activity;proteolysis;nucleus	ESP1
-Cre01.g051000	GMM:26.6	misc.O-methyl transferases	Chloroplast	GO:0008168;GO:0006479	methyltransferase activity;protein methylation	
-Cre01.g017500	GMM:29.5.11.4.2;GMM:29.2.2.3.99;GMM:29.2.2.1	protein.degradation.ubiquitin.E3.RING;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0042254	ribosome biogenesis	
-Cre01.g005600			Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX8
-Cre01.g022666			Chloroplast			
-Cre01.g031250						
-Cre01.g006550						
-Cre01.g017450	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway	GO:0006260;GO:0003887;GO:0003677	DNA replication;DNA-directed DNA polymerase activity;DNA binding	POLA2
-Cre01.g037350			Mitochondrion			CGLD2
-Cre01.g005701			Secretory pathway			
-Cre01.g022550						
-Cre01.g043450			Chloroplast			
-Cre01.g028600	GMM:26.8;GMM:16.4.1	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;secondary metabolism.N misc.alkaloid-like"	Mitochondrion			
-Cre01.g034800						
-Cre01.g012950	GMM:30.2.99;GMM:30.11;GMM:29.4.1	signalling.receptor kinases.misc;signalling.light;protein.postranslational modification.kinase		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g023500						
-Cre01.g033550	GMM:21.1.1;GMM:21.1	redox.thioredoxin.PDIL;redox.thioredoxin	Secretory pathway	GO:0045454;GO:0005783	cell redox homeostasis;endoplasmic reticulum	PDI2
-Cre01.g045500						
-Cre01.g035400				GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre01.g004350	GMM:35.1.41	not assigned.no ontology.hydroxyproline rich proteins		GO:0005515	protein binding	HLM1
-Cre01.g031726			Secretory pathway			
-Cre01.g070932	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre01.g022450			Mitochondrion			
-Cre01.g031951						
-Cre01.g019850	GMM:29.5.9;GMM:29.5.7	protein.degradation.AAA type;protein.degradation.metalloprotease	Mitochondrion	GO:0016021;GO:0008270;GO:0006508;GO:0005524;GO:0004222	integral component of membrane;zinc ion binding;proteolysis;ATP binding;metalloendopeptidase activity	FTSH3
-Cre01.g017900			Secretory pathway			
-Cre01.g033050						
-Cre01.g039626						
-Cre01.g042100						
-Cre01.g046800			Chloroplast			
-Cre01.g046850	GMM:29.5.11.3;GMM:29.5.11	protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin				UBC13
-Cre01.g018900	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0016567;GO:0005515;GO:0004842	protein ubiquitination;protein binding;ubiquitin-protein transferase activity	
-Cre01.g042352	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0016020;GO:0006508;GO:0005044;GO:0004252	membrane;proteolysis;scavenger receptor activity;serine-type endopeptidase activity	SRR19
-Cre01.g054550						
-Cre01.g008850						HLM2
-Cre01.g015850						FAP68
-Cre01.g026450	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	SRS1
-Cre01.g044200						
-Cre01.g002300	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN19-2
-Cre01.g027700			Chloroplast			
-Cre01.g055461			Chloroplast			
-Cre01.g044400			Chloroplast			
-Cre01.g012800			Chloroplast			FAP230
-Cre01.g026500	GMM:29.5.4;GMM:27.3.99	protein.degradation.aspartate protease;RNA.regulation of transcription.unclassified	Secretory pathway	GO:0006508;GO:0004190	proteolysis;aspartic-type endopeptidase activity	ASP3
-Cre01.g032250			Chloroplast			
-Cre01.g003700			Mitochondrion			
-Cre01.g022462						
-Cre01.g041650			Chloroplast			
-Cre01.g011630			Chloroplast			
-Cre01.g033832	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
-Cre01.g033350	GMM:16.4.2.1	secondary metabolism.N misc.betaine.betaine-aldehyde dehydrogenase	Secretory pathway	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	ALD2
-Cre01.g025500			Mitochondrion			
-Cre01.g001501			Chloroplast			OPR1
-Cre01.g012450	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	
-Cre01.g029100	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005634	DNA replication;nucleus	
-Cre01.g018200	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
-Cre01.g044650	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Mitochondrion	GO:0005515	protein binding	
-Cre01.g048050	GMM:18.4.6	Co-factor and vitamine metabolism.pantothenate.phosphopantothenoylcysteine synthetase (PPCS)				COA3
-Cre01.g049550			Mitochondrion			
-Cre01.g038850	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre01.g029950						
-Cre01.g029700			Secretory pathway			
-Cre01.g030600	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPKKK4
-Cre01.g040900			Secretory pathway			
-Cre01.g046600						
-Cre01.g046501			Chloroplast			
-Cre01.g034850						
-Cre01.g004750	GMM:3.3	minor CHO metabolism.sugar alcohols	Chloroplast			
-Cre01.g036350	GMM:34.21;GMM:30.3;GMM:3.3	transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols	Mitochondrion	GO:0046872;GO:0000166	metal ion binding;nucleotide binding	PMA1
-Cre01.g016528	GMM:3.5	minor CHO metabolism.others		GO:0046872;GO:0019509;GO:0005737	metal ion binding;L-methionine biosynthetic process from methylthioadenosine;cytoplasm	
-Cre01.g039750	GMM:26.1	misc.misc2	Chloroplast	GO:0042586;GO:0005506	peptide deformylase activity;iron ion binding	PDF1B
-Cre01.g019000	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis				
-Cre01.g013350			Chloroplast			
-Cre01.g007400			Chloroplast			
-Cre01.g045700	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate	Secretory pathway	GO:0055114;GO:0020037;GO:0006979;GO:0004601	oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity	CAT2
-Cre01.g027400			Mitochondrion			
-Cre01.g034451	GMM:29.5	protein.degradation		GO:0005515	protein binding	
-Cre01.g011901	GMM:14.1	S-assimilation.APS		GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS7
-Cre01.g016300			Chloroplast			CAM3
-Cre01.g007700	GMM:29.5	protein.degradation	Chloroplast	GO:0006508;GO:0005622;GO:0004177	proteolysis;intracellular;aminopeptidase activity	
-Cre01.g055250	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			
-Cre01.g010864	GMM:29.2.5	protein.synthesis.release	Secretory pathway	GO:0016149;GO:0006415;GO:0005737;GO:0003747	"translation release factor activity, codon specific;translational termination;cytoplasm;translation release factor activity"	
-Cre01.g055416	GMM:33.99	development.unspecified		GO:0005681;GO:0000398	"spliceosomal complex;mRNA splicing, via spliceosome"	
-Cre01.g001750	GMM:29.6.1;GMM:29.6	protein.folding.prefoldin and trigger factor;protein.folding	Chloroplast.Stroma	GO:0015031;GO:0006457	protein transport;protein folding	TIG1
-Cre01.g041850			Secretory pathway			
-Cre01.g015150			Chloroplast			
-Cre01.g030750			Mitochondrion			
-Cre01.g013600			Chloroplast			
-Cre01.g037600			Mitochondrion			
-Cre01.g044950			Chloroplast			
-Cre01.g047550	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAB6
-Cre01.g006670			Mitochondrion			
-Cre01.g025100						
-Cre01.g011300	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	
-Cre01.g008600			Chloroplast	GO:0016757;GO:0006486	"transferase activity, transferring glycosyl groups;protein glycosylation"	
-Cre01.g017400						
-Cre01.g049900						
-Cre01.g029000			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	COQD2
-Cre01.g011350	GMM:27.2	RNA.transcription		GO:0006367;GO:0005634	transcription initiation from RNA polymerase II promoter;nucleus	
-Cre01.g047500			Chloroplast	GO:0005515	protein binding	
-Cre01.g053850	GMM:33.99;GMM:30.11;GMM:29.5.11.4.99	development.unspecified;signalling.light;protein.degradation.ubiquitin.E3.unspecified	Mitochondrion	GO:0005515	protein binding	
-Cre01.g004124			Mitochondrion			
-Cre01.g048350	GMM:3.5;GMM:26.3;GMM:10.6.2	"minor CHO metabolism.others;misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Chloroplast	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CGL53
-Cre01.g055465	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified				
-Cre01.g058886	GMM:34.5	transport.ammonium		GO:0005525	GTP binding	
-Cre01.g045450						
-Cre01.g055300			Mitochondrion			
-Cre01.g000700				GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre01.g037050				GO:0008270;GO:0003677	zinc ion binding;DNA binding	
-Cre01.g046950			Mitochondrion			
-Cre01.g065822	GMM:31.6.1.3.2.1	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A		GO:0005515	protein binding	IFT122
-Cre01.g005200	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	TGL2
-Cre01.g053000	GMM:11.5.2	lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)	Chloroplast	GO:0055114;GO:0051287;GO:0046168;GO:0016616;GO:0009331;GO:0006072;GO:0005975;GO:0004367	"oxidation-reduction process;NAD binding;glycerol-3-phosphate catabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;glycerol-3-phosphate dehydrogenase complex;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity"	GPD2
-Cre01.g041200						
-Cre01.g031750	GMM:29.2.2	protein.synthesis.ribosome biogenesis	Chloroplast			
-Cre01.g048200	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase	Mitochondrion			
-Cre01.g044000			Chloroplast			
-Cre01.g062902				GO:0016592;GO:0006357;GO:0001104	mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity	
-Cre01.g026150				GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	
-Cre01.g033200						
-Cre01.g039000						
-Cre01.g034950	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre01.g016950	GMM:29.4	protein.postranslational modification		GO:0018342;GO:0008318	protein prenylation;protein prenyltransferase activity	
-Cre01.g035750			Secretory pathway	GO:0055085;GO:0016020	transmembrane transport;membrane	MSC3
-Cre01.g006950	GMM:4.3.10;GMM:4.1.10;GMM:1.3.6	glycolysis.unclear/dually targeted.aldolase;glycolysis.cytosolic branch.aldolase;PS.calvin cycle.aldolase	Chloroplast	GO:0006096;GO:0004332	glycolytic process;fructose-bisphosphate aldolase activity	FBA1
-Cre01.g031650			Chloroplast	GO:0016757;GO:0016021	"transferase activity, transferring glycosyl groups;integral component of membrane"	CGLD12
-Cre01.g050350	GMM:29.5.11.3	protein.degradation.ubiquitin.E2		GO:0016021;GO:0004252	integral component of membrane;serine-type endopeptidase activity	RBL6
-Cre01.g000050			Chloroplast			RWP14
-Cre01.g043950			Mitochondrion			
-Cre01.g039850	GMM:3.5;GMM:13.2.3.5.1;GMM:13.2.3.5	minor CHO metabolism.others;amino acid metabolism.degradation.aspartate family.lysine.lysine decarboxylase;amino acid metabolism.degradation.aspartate family.lysine	Mitochondrion			CGL48
-Cre01.g010100			Secretory pathway	GO:0008080	N-acetyltransferase activity	
-Cre01.g008900						
-Cre01.g019200				GO:0030688;GO:0006364	"preribosome, small subunit precursor;rRNA processing"	NOP52
-Cre01.g025950	GMM:35.1.5;GMM:33.99	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;development.unspecified	Mitochondrion			PPR8
-Cre01.g030400						
-Cre01.g041400			Chloroplast			
-Cre01.g005450	GMM:31.6.1.5.1	cell.motility.eukaryotes.radial spoke.head				RSP10
-Cre01.g038900	GMM:11.9.2.2	lipid metabolism.lipid degradation.lipases.acylglycerol lipase				
-Cre01.g050700						
-Cre01.g048701	GMM:11.6	lipid metabolism.lipid transfer proteins etc	Chloroplast			
-Cre01.g043200			Chloroplast			
-Cre01.g023800			Mitochondrion			
-Cre01.g011050						
-Cre01.g045850	GMM:30.2.17;GMM:27.1.19	signalling.receptor kinases.DUF 26;RNA.processing.ribonucleases		GO:0015074	DNA integration	
-Cre01.g020141						
-Cre01.g051700	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre01.g010832	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
-Cre01.g020575	GMM:29.6.2.1	protein.folding.chaperones and co-chaperones.small HSPs	Chloroplast			HSP22D
-Cre01.g035300	GMM:26.8;GMM:22.1.5	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;polyamine metabolism.synthesis.N-carbamoylputrescine amidohydrolase"	Chloroplast	GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	CPA2
-Cre01.g042600						
-Cre01.g051400	GMM:29.3.4.1	protein.targeting.secretory pathway.ER	Secretory pathway	GO:0046923;GO:0016021;GO:0006621	ER retention sequence binding;integral component of membrane;protein retention in ER lumen	ERD2A
-Cre01.g053750			Secretory pathway			LPL3
-Cre01.g023400			Secretory pathway			
-Cre01.g016570	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g031450						
-Cre01.g031850			Chloroplast			
-Cre01.g022650	GMM:26.8;GMM:23.2.1.5;GMM:23	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;nucleotide metabolism.degradation.pyrimidine.beta-ureidopropionase;nucleotide metabolism"		GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	
-Cre01.g014300			Secretory pathway			
-Cre01.g052000	GMM:31.1	cell.organisation				
-Cre01.g018450						
-Cre01.g020887	GMM:23.1.2	nucleotide metabolism.synthesis.purine				CYG49
-Cre01.g009950				GO:0008168	methyltransferase activity	NEP1
-Cre01.g009101	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre01.g035150				GO:0046872	metal ion binding	
-Cre01.g036100			Mitochondrion	GO:0005515	protein binding	
-Cre01.g008350			Secretory pathway			
-Cre01.g051875			Mitochondrion			
-Cre01.g049050						
-Cre01.g031100	GMM:1.1.1	PS.lightreaction.photosystem II	Chloroplast.Stroma.Thylakoid.Membrane			TEF30
-Cre01.g006600	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre01.g018750						
-Cre01.g013200			Secretory pathway			
-Cre01.g043650						DLU2
-Cre01.g032650	GMM:7.2.2	OPP.non-reductive PP.transaldolase	Chloroplast	GO:0005975	carbohydrate metabolic process	TAL1
-Cre01.g021650						
-Cre01.g018000	GMM:27.2	RNA.transcription		GO:0008270;GO:0006351;GO:0003676	"zinc ion binding;transcription, DNA-templated;nucleic acid binding"	RPA12
-Cre01.g002400	GMM:11.9.2.1;GMM:11.9.2	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase;lipid metabolism.lipid degradation.lipases		GO:0006629	lipid metabolic process	TGL1
-Cre01.g021200				GO:0005515	protein binding	CGL47
-Cre01.g057791						
-Cre01.g012000			Mitochondrion			
-Cre01.g054500			Mitochondrion	GO:0055114;GO:0050661;GO:0016021;GO:0008750	oxidation-reduction process;NADP binding;integral component of membrane;NAD(P)+ transhydrogenase (AB-specific) activity	
-Cre01.g030200	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	FAP6
-Cre01.g071662	GMM:2.2.1.3;GMM:11.1.8	major CHO metabolism.degradation.sucrose.invertases;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase		GO:0008152;GO:0003824	metabolic process;catalytic activity	ACS1
-Cre01.g041050	GMM:34.3	transport.amino acids		GO:0016020;GO:0015171;GO:0003333	membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport	AOC6
-Cre01.g055408	GMM:2.2.1.3;GMM:11.1.8	major CHO metabolism.degradation.sucrose.invertases;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	ACS2
-Cre01.g009601			Chloroplast			
-Cre01.g050800			Mitochondrion			
-Cre01.g060347			Mitochondrion			
-Cre01.g003532						
-Cre01.g014400						
-Cre01.g009676	GMM:33.99;GMM:27.3.3	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"				BUG25
-Cre01.g022700						
-Cre01.g004250	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm				DLT3
-Cre01.g043750						BBS7
-Cre01.g054433						
-Cre01.g003524	GMM:30.3;GMM:29.4	signalling.calcium;protein.postranslational modification				
-Cre01.g025767			Secretory pathway			
-Cre01.g051500	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ULP1
-Cre01.g008750			Chloroplast			
-Cre01.g008500						
-Cre01.g010400			Secretory pathway			FAP380
-Cre01.g001350	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding;transporter activity"	
-Cre01.g002950						
-Cre01.g011800	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g031350						
-Cre01.g022850			Mitochondrion			
-Cre01.g044850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
-Cre01.g007300						
-Cre01.g024650	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g001600	GMM:35.1.9;GMM:31.1	not assigned.no ontology.BTB/POZ domain-containing protein;cell.organisation		GO:0005515	protein binding	
-Cre01.g009400	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	NSS2
-Cre01.g015000	GMM:23.4.99;GMM:13.1.2.3.2	nucleotide metabolism.phosphotransfer and pyrophosphatases.misc;amino acid metabolism.synthesis.glutamate family.arginine.acetylglutamate kinase	Chloroplast			NAGK1
-Cre01.g020750			Chloroplast			
-Cre01.g056331	GMM:21.99;GMM:18.2	redox.misc;Co-factor and vitamine metabolism.thiamine				
-Cre01.g033500						
-Cre01.g049600	GMM:1.1.4	PS.lightreaction.ATP synthase	Chloroplast			CGLD22
-Cre01.g025400	GMM:31.6.1.6.4	cell.motility.eukaryotes.central pair.C2b				HYDIN
-Cre01.g015550			Chloroplast	GO:0003824	catalytic activity	
-Cre01.g000900			Chloroplast			CPLD20
-Cre01.g026800			Mitochondrion			
-Cre01.g000650	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114;GO:0048038;GO:0009308;GO:0008131;GO:0005507	oxidation-reduction process;quinone binding;amine metabolic process;primary amine oxidase activity;copper ion binding	AMX2
-Cre01.g034300						
-Cre01.g022000	GMM:29.5.9	protein.degradation.AAA type		GO:0005524	ATP binding	
-Cre01.g013450						
-Cre01.g057061			Mitochondrion			
-Cre01.g014850						
-Cre01.g011600	GMM:11.1.13	lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein		GO:0006355;GO:0005634;GO:0003700	"regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding"	
-Cre01.g055457	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g022350	GMM:29.2.2.3.5;GMM:28.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL3
-Cre01.g018100			Secretory pathway	GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	
-Cre01.g048900	GMM:27.3.42	RNA.regulation of transcription.bromodomain proteins		GO:0005515	protein binding	
-Cre01.g008250			Chloroplast			
-Cre01.g041550	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g016850			Chloroplast			
-Cre01.g000033			Mitochondrion			
-Cre01.g039101	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB7
-Cre01.g027300						
-Cre01.g048102						
-Cre01.g045800						
-Cre01.g041100	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	HLM3
-Cre01.g002600			Chloroplast			
-Cre01.g045050			Mitochondrion			
-Cre01.g034380	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family	Mitochondrion			
-Cre01.g020450			Secretory pathway			
-Cre01.g020264	GMM:31.1;GMM:29.5.2	cell.organisation;protein.degradation.autophagy		GO:0006914	autophagy	ATG6
-Cre01.g018550			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG69
-Cre01.g047800	GMM:34.21;GMM:21.4	transport.calcium;redox.glutaredoxins	Chloroplast	GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	GRX6
-Cre01.g039550	GMM:31.1	cell.organisation	Chloroplast			PLAP1
-Cre01.g030500	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG58
-Cre01.g003200				GO:0016491	oxidoreductase activity	
-Cre01.g055428						
-Cre01.g037850	GMM:11.1.1	lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation	Chloroplast			BCC2
-Cre01.g047100			Chloroplast			
-Cre01.g036650	GMM:30.3;GMM:29.4.1;GMM:29.4;GMM:29.2.2	signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g037950						
-Cre01.g045640	GMM:3.5;GMM:29.4.1	minor CHO metabolism.others;protein.postranslational modification.kinase				SRR12
-Cre01.g037700	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase	Chloroplast	GO:0006629	lipid metabolic process	FAD3
-Cre01.g032800	GMM:34.14	transport.unspecified cations				MRS6
-Cre01.g012350				GO:0006351;GO:0003887;GO:0003677	"transcription, DNA-templated;DNA-directed DNA polymerase activity;DNA binding"	
-Cre01.g006766			Secretory pathway			
-Cre01.g052550						
-Cre01.g020050			Mitochondrion			
-Cre01.g023750						
-Cre01.g054300			Mitochondrion			
-Cre01.g026250	GMM:3.8.2	minor CHO metabolism.galactose.alpha-galactosidases				AGA1
-Cre01.g004000						
-Cre01.g003800	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g023350	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	THO2
-Cre01.g025025				GO:0003677	DNA binding	
-Cre01.g045550	GMM:34.8;GMM:2.2.2.6	transport.metabolite transporters at the envelope membrane;major CHO metabolism.degradation.starch.transporter	Chloroplast	GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre01.g036451						
-Cre01.g007811			Chloroplast			
-Cre01.g043100			Chloroplast			
-Cre01.g009731	GMM:29.4	protein.postranslational modification	Mitochondrion			
-Cre01.g005350	GMM:28.1.1	DNA.synthesis/chromatin structure.retrotransposon/transposase				tnp3
-Cre01.g041300				GO:0006488;GO:0005789;GO:0004583	dolichol-linked oligosaccharide biosynthetic process;endoplasmic reticulum membrane;dolichyl-phosphate-glucose-glycolipid alpha-glucosyltransferase activity	ALG10
-Cre01.g004550	GMM:11.9.2	lipid metabolism.lipid degradation.lipases		GO:0005515	protein binding	FAP190
-Cre01.g006876			Mitochondrion			
-Cre01.g015451	GMM:29.1	protein.aa activation		GO:0055114	oxidation-reduction process	
-Cre01.g034600			Chloroplast	GO:0005515	protein binding	
-Cre01.g024550	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g021900	GMM:29.1.30	protein.aa activation.pseudouridylate synthase		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS11
-Cre01.g046250			Secretory pathway			
-Cre01.g034750						
-Cre01.g040200	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	WNK2
-Cre01.g054350						
-Cre01.g018850	GMM:28.1	DNA.synthesis/chromatin structure				
-Cre01.g006628						
-Cre01.g051100	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005681;GO:0000398	"spliceosomal complex;mRNA splicing, via spliceosome"	
-Cre01.g007251			Mitochondrion			
-Cre01.g045600			Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	SRR12
-Cre01.g034200	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre01.g048800				GO:0008080	N-acetyltransferase activity	
-Cre01.g043550	GMM:27.3.28	RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Secretory pathway	GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre01.g023050						UBX2
-Cre01.g008976			Chloroplast			
-Cre01.g035050						
-Cre01.g011400						
-Cre01.g052350	GMM:29.2.1.1.3.2.20	protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L20	Chloroplast	GO:0019843;GO:0006412;GO:0005840;GO:0005622;GO:0003735	rRNA binding;translation;ribosome;intracellular;structural constituent of ribosome	MRPL20
-Cre01.g014000			Chloroplast			
-Cre01.g051550	GMM:27.1.2;GMM:27.1	RNA.processing.RNA helicase;RNA.processing		GO:0004386	helicase activity	HEL8
-Cre01.g017750						
-Cre01.g069472	GMM:29.1.16	protein.aa activation.cysteine-tRNA ligase	Chloroplast			
-Cre01.g019550						
-Cre01.g028300						
-Cre01.g028550	GMM:29.5.3	protein.degradation.cysteine protease				OTU1
-Cre01.g050150	GMM:17.7.1.5	hormone metabolism.jasmonate.synthesis-degradation.12-oxophytodienoate reductase 3	Chloroplast	GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	NFO1
-Cre01.g017300			Chloroplast			PRPS21
-Cre01.g025983			Secretory pathway			
-Cre01.g047400						
-Cre01.g002900						
-Cre01.g027575	GMM:26.1	misc.misc2	Chloroplast			
-Cre01.g036000	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g040379	GMM:28.2;GMM:27.1.2	DNA.repair;RNA.processing.RNA helicase				
-Cre01.g050000			Secretory pathway			
-Cre01.g047900	GMM:31.1	cell.organisation				
-Cre01.g003100			Chloroplast			
-Cre01.g050500	GMM:27.3	RNA.regulation of transcription	Mitochondrion			TCB1
-Cre01.g027600			Chloroplast			
-Cre01.g002100			Mitochondrion			
-Cre01.g017701	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre01.g006301						
-Cre01.g017150			Chloroplast			
-Cre01.g012126	GMM:14.1	S-assimilation.APS	Secretory pathway;Chloroplast	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS4
-Cre01.g004900						
-Cre01.g052300	GMM:27.3.18	RNA.regulation of transcription.E2F/DP transcription factor family		GO:0006355;GO:0005667;GO:0003700	"regulation of transcription, DNA-templated;transcription factor complex;transcription factor activity, sequence-specific DNA binding"	E2F1
-Cre01.g042150	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway	GO:0016020	membrane	
-Cre01.g055444			Mitochondrion			
-Cre01.g021100			Mitochondrion			
-Cre01.g002227						
-Cre01.g038500	GMM:26.10;GMM:26.1	misc.cytochrome P450;misc.misc2	Chloroplast	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP746A1
-Cre01.g059617			Chloroplast			
-Cre01.g054800	GMM:29.4	protein.postranslational modification				
-Cre01.g011000	GMM:29.2.1.2.2.6	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L6		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL6
-Cre01.g022800						
-Cre01.g052100	GMM:29.2.1.1.1.2.18	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L18	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL18
-Cre01.g002700			Mitochondrion			
-Cre01.g053700	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
-Cre01.g045350						DRC5
-Cre01.g031004	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family				
-Cre01.g005534			Chloroplast			
-Cre01.g008150	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006470;GO:0006468;GO:0005524;GO:0004722;GO:0004672;GO:0003824	protein dephosphorylation;protein phosphorylation;ATP binding;protein serine/threonine phosphatase activity;protein kinase activity;catalytic activity	RPK1
-Cre01.g016556	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0019887;GO:0005956	protein kinase regulator activity;protein kinase CK2 complex	
-Cre01.g030300						
-Cre01.g037150	GMM:34.18	transport.unspecified anions	Chloroplast	GO:0055085;GO:0016020;GO:0006821;GO:0005247	transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity	
-Cre01.g015400						
-Cre01.g050451	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0006464	cellular protein modification process	TTL6
-Cre01.g021550						
-Cre01.g055151			Mitochondrion			
-Cre01.g027850	GMM:30.11	signalling.light				NUOAF2
-Cre01.g042950						
-Cre01.g033950			Chloroplast	GO:0008270	zinc ion binding	EXN2
-Cre01.g051300						
-Cre01.g040533						
-Cre01.g015100			Chloroplast			CSB5
-Cre01.g007600	GMM:16.8.2	secondary metabolism.flavonoids.chalcones		GO:0016872	intramolecular lyase activity	
-Cre01.g049350	GMM:29.5	protein.degradation	Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	
-Cre01.g048450						
-Cre01.g002200	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPB6
-Cre01.g050624			Secretory pathway			
-Cre01.g027750			Chloroplast			MFT7
-Cre01.g051466			Secretory pathway			
-Cre01.g041950			Chloroplast			
-Cre01.g055400						
-Cre01.g043817			Chloroplast			
-Cre01.g006402						
-Cre01.g014900			Chloroplast			
-Cre01.g030968			Mitochondrion			
-Cre01.g032900			Chloroplast			
-Cre01.g039300	GMM:27.1;GMM:1.1.1.3	RNA.processing;PS.lightreaction.photosystem II.biogenesis		GO:0003723;GO:0003676	RNA binding;nucleic acid binding	RB47
-Cre01.g045150						FAP304
-Cre01.g004300	GMM:13.1.3.1.1;GMM:13.1.3.1	amino acid metabolism.synthesis.aspartate family.asparagine.asparagine synthetase;amino acid metabolism.synthesis.aspartate family.asparagine	Chloroplast	GO:0006529;GO:0004066	asparagine biosynthetic process;asparagine synthase (glutamine-hydrolyzing) activity	ASN1
-Cre01.g029500	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CDPKK3
-Cre01.g022150				GO:0008076;GO:0006813;GO:0005249	voltage-gated potassium channel complex;potassium ion transport;voltage-gated potassium channel activity	KCN3
-Cre01.g045400	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			CSB8
-Cre01.g009900	GMM:30.99;GMM:29.9;GMM:20.2.1	signalling.unspecified;protein.co-chaperones;stress.abiotic.heat	Chloroplast			CDJ3
-Cre01.g001657						DAB1
-Cre01.g042900	GMM:29.2.2.3.99;GMM:27.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;RNA.processing				
-Cre01.g015950			Chloroplast	GO:0003725	double-stranded RNA binding	CPL11
-Cre01.g017200	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs		GO:0006457	protein folding	FKB99
-Cre01.g012244						
-Cre01.g026550	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0051082;GO:0006457;GO:0005524	unfolded protein binding;protein folding;ATP binding	CCT7
-Cre01.g013550			Mitochondrion			
-Cre01.g055448			Chloroplast			
-Cre01.g000300			Mitochondrion			GDP8
-Cre01.g001450						
-Cre01.g034650						
-Cre01.g053150	GMM:11.5.2	lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)		GO:0055114;GO:0051287;GO:0046168;GO:0016616;GO:0009331;GO:0006072;GO:0005975;GO:0004367	"oxidation-reduction process;NAD binding;glycerol-3-phosphate catabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;glycerol-3-phosphate dehydrogenase complex;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity"	GPD3
-Cre01.g010500						
-Cre01.g047350			Chloroplast			
-Cre01.g037800	GMM:21.1	redox.thioredoxin		GO:0045454	cell redox homeostasis	TRX21
-Cre01.g004926						
-Cre01.g070567				GO:0006351;GO:0005634;GO:0003899;GO:0003677	"transcription, DNA-templated;nucleus;DNA-directed RNA polymerase activity;DNA binding"	
-Cre01.g054200						
-Cre01.g034000	GMM:29.3.1	protein.targeting.nucleus	Secretory pathway	GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	IPB1
-Cre01.g026600	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC11
-Cre01.g053300	GMM:22.1.4	polyamine metabolism.synthesis.agmatine deiminase	Mitochondrion	GO:0009446;GO:0004668	putrescine biosynthetic process;protein-arginine deiminase activity	AIH1
-Cre01.g011500	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	protein binding	RPN11
-Cre01.g025300	GMM:28.2	DNA.repair	Secretory pathway	GO:0033063;GO:0006281;GO:0003677;GO:0000724	Rad51B-Rad51C-Rad51D-XRCC2 complex;DNA repair;DNA binding;double-strand break repair via homologous recombination	RAD51B
-Cre01.g011450			Secretory pathway			
-Cre01.g045825			Chloroplast			
-Cre01.g041500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification				
-Cre01.g035450						
-Cre01.g049117						
-Cre01.g016050	GMM:27.1.1	RNA.processing.splicing		GO:0030623;GO:0017070;GO:0005681;GO:0005515;GO:0003723;GO:0000398	"U5 snRNA binding;U6 snRNA binding;spliceosomal complex;protein binding;RNA binding;mRNA splicing, via spliceosome"	PRP8
-Cre01.g027150	GMM:28.1;GMM:27.1	DNA.synthesis/chromatin structure;RNA.processing	Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL5
-Cre01.g038550	GMM:11.10.4	lipid metabolism.glycolipid synthesis.sulfolipid synthase	Chloroplast			SQD2
-Cre01.g038100			Chloroplast			
-Cre01.g050950	GMM:16.1.1	secondary metabolism.isoprenoids.non-mevalonate pathway	Chloroplast	GO:0071949	FAD binding	GGR1
-Cre01.g023550				GO:0005515	protein binding	FAP234
-Cre01.g043250						
-Cre01.g064362	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g040150	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g018950	GMM:29.2.4.1;GMM:29.2.3.1	protein.synthesis.elongation.deoxyhypusine synthase;protein.synthesis.initiation.deoxyhypusine synthase		GO:0008612	peptidyl-lysine modification to peptidyl-hypusine	DHS1
-Cre01.g052500			Secretory pathway			
-Cre01.g039450			Chloroplast			
-Cre01.g030100	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK13
-Cre01.g048400			Mitochondrion			
-Cre01.g032139				GO:0005515	protein binding	
-Cre01.g032400			Chloroplast	GO:0018193	peptidyl-amino acid modification	
-Cre01.g005100			Secretory pathway			
-Cre01.g024100			Mitochondrion			
-Cre01.g044250						CAM4
-Cre01.g007651				GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS10
-Cre01.g018600			Secretory pathway			
-Cre01.g048550			Mitochondrion			
-Cre01.g026850			Chloroplast			
-Cre01.g055469				GO:0032259;GO:0008168	methylation;methyltransferase activity	
-Cre01.g054750	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g019450	GMM:29.5.11.3	protein.degradation.ubiquitin.E2		GO:0019789	SUMO transferase activity	
-Cre01.g015650						
-Cre01.g002050			Secretory pathway	GO:0003993	acid phosphatase activity	APT1
-Cre01.g049300			Mitochondrion			
-Cre01.g037300			Chloroplast			
-Cre01.g050100	GMM:13.1.3.5.5	amino acid metabolism.synthesis.aspartate family.lysine.diaminopimelate decarboxylase	Chloroplast	GO:0003824	catalytic activity	DPD1
-Cre01.g020350	GMM:8.1.7	TCA / organic transformation.TCA.succinate dehydrogenase	Mitochondrion	GO:0016627	"oxidoreductase activity, acting on the CH-CH group of donors"	SDH3
-Cre01.g036200			Mitochondrion	GO:0005515;GO:0003824	protein binding;catalytic activity	
-Cre01.g040500			Chloroplast			
-Cre01.g000400			Secretory pathway			AXL3
-Cre01.g023600	GMM:26.11.1;GMM:26.11	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	
-Cre01.g040050	GMM:18.2.1;GMM:18	Co-factor and vitamine metabolism.thiamine.thiamine diphosphokinase;Co-factor and vitamine metabolism		GO:0030975;GO:0009229;GO:0005524;GO:0004788	thiamine binding;thiamine diphosphate biosynthetic process;ATP binding;thiamine diphosphokinase activity	TPK1
-Cre01.g006202						CSB4
-Cre01.g031500	GMM:21.2.1;GMM:16.1	redox.ascorbate and glutathione.ascorbate;secondary metabolism.isoprenoids	Secretory pathway	GO:0055114;GO:0016491;GO:0005507	oxidation-reduction process;oxidoreductase activity;copper ion binding	
-Cre01.g008000				GO:0003723	RNA binding	
-Cre01.g042450	GMM:29.5.5	protein.degradation.serine protease				
-Cre01.g006500	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
-Cre01.g040600			Mitochondrion			FAP327
-Cre01.g013769						
-Cre01.g003500	GMM:28.2	DNA.repair				MSH2
-Cre01.g025000						SSA12
-Cre01.g065092			Mitochondrion			
-Cre01.g034875			Chloroplast			
-Cre01.g018184						
-Cre01.g022283						
-Cre01.g042650				GO:0005509	calcium ion binding	
-Cre01.g014100						
-Cre01.g055420	GMM:29.4	protein.postranslational modification		GO:0008601;GO:0000159	protein phosphatase type 2A regulator activity;protein phosphatase type 2A complex	
-Cre01.g008550	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g007350	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				MOT42
-Cre01.g053550			Secretory pathway			
-Cre01.g037900			Secretory pathway			
-Cre01.g048000						
-Cre01.g036900	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g001678	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g055966						
-Cre01.g014250			Mitochondrion			OPR2
-Cre01.g041150						
-Cre01.g043400						
-Cre01.g035650						
-Cre01.g024251	GMM:27.1.2	RNA.processing.RNA helicase	Chloroplast	GO:0005524;GO:0004386;GO:0003676	ATP binding;helicase activity;nucleic acid binding	
-Cre01.g033516				GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre01.g020918	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation	Chloroplast	GO:0006508	proteolysis	PREP1
-Cre01.g028777						
-Cre01.g022950	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
-Cre01.g001150	GMM:29.4.1	protein.postranslational modification.kinase				
-Cre01.g032050	GMM:34.11	transport.NDP-sugars at the ER	Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre01.g031200				GO:0030942;GO:0008312;GO:0006614	endoplasmic reticulum signal peptide binding;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane	SRP14
-Cre01.g004450			Chloroplast			CPLD42
-Cre01.g052750			Secretory pathway			
-Cre01.g009765			Chloroplast			
-Cre01.g030550	GMM:29.5.11	protein.degradation.ubiquitin				
-Cre01.g003300			Secretory pathway	GO:0006865	amino acid transport	
-Cre01.g013000			Secretory pathway			
-Cre01.g003487						
-Cre01.g005550	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	ARL4
-Cre01.g039950	GMM:33.99	development.unspecified	Mitochondrion			MFT32
-Cre01.g033150						
-Cre01.g016400						
-Cre01.g020000			Chloroplast			
-Cre01.g000017						
-Cre01.g028400			Mitochondrion			DDC1
-Cre01.g029850	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004674;GO:0004672	protein phosphorylation;ATP binding;protein serine/threonine kinase activity;protein kinase activity	
-Cre01.g051625						
-Cre01.g042800	GMM:19.13	tetrapyrrole synthesis.divinyl chlorophyllide-a 8-vinyl-reductase	Chloroplast			DVR1
-Cre01.g002787				GO:0016020;GO:0005975;GO:0005044;GO:0004553	"membrane;carbohydrate metabolic process;scavenger receptor activity;hydrolase activity, hydrolyzing O-glycosyl compounds"	SRR24A
-Cre01.g005900	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX	Chloroplast	GO:0005515	protein binding	
-Cre01.g010880	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	protein binding	
-Cre01.g023150	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005524;GO:0003677	DNA replication;ATP binding;DNA binding	MCM5
-Cre01.g009325						
-Cre01.g009000			Chloroplast			
-Cre01.g000550			Secretory pathway			
-Cre01.g046324						
-Cre01.g047300						
-Cre01.g002250	GMM:27.3.54;GMM:26.24	RNA.regulation of transcription.histone acetyltransferases;misc.GCN5-related N-acetyltransferase	Chloroplast	GO:0008080	N-acetyltransferase activity	
-Cre01.g021400						
-Cre01.g011750						
-Cre01.g043901						
-Cre01.g032200			Mitochondrion			
-Cre01.g033250			Mitochondrion			
-Cre01.g055000			Mitochondrion	GO:0016787	hydrolase activity	
-Cre01.g016450	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	
-Cre01.g028423	GMM:27.3.99;GMM:16.4.1;GMM:13.2.6.2	RNA.regulation of transcription.unclassified;secondary metabolism.N misc.alkaloid-like;amino acid metabolism.degradation.aromatic aa.tyrosine		GO:0030170;GO:0019752;GO:0016831	pyridoxal phosphate binding;carboxylic acid metabolic process;carboxy-lyase activity	DDC1
-Cre01.g001671			Mitochondrion			
-Cre01.g017951			Chloroplast	GO:0005515	protein binding	
-Cre01.g047650			Secretory pathway			
-Cre01.g020650			Chloroplast			
-Cre01.g028650			Secretory pathway			
-Cre01.g044300			Mitochondrion			
-Cre01.g050316	GMM:29.2.1.1.1.2.3	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L3		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	
-Cre01.g029600	GMM:33.99;GMM:30.3	development.unspecified;signalling.calcium	Chloroplast			
-Cre01.g004200						
-Cre01.g002201						
-Cre01.g045752						
-Cre01.g033071						
-Cre01.g012600	GMM:4.1.2	glycolysis.cytosolic branch.phosphoglucomutase (PGM)	Chloroplast	GO:0071704;GO:0016868;GO:0005975	"organic substance metabolic process;intramolecular transferase activity, phosphotransferases;carbohydrate metabolic process"	GPM2
-Cre01.g001950			Secretory pathway			
-Cre01.g006250	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
-Cre01.g024900	GMM:27.4	RNA.RNA binding		GO:0017069;GO:0003676;GO:0000398	"snRNA binding;nucleic acid binding;mRNA splicing, via spliceosome"	
-Cre01.g032300	GMM:28.99	DNA.unspecified		GO:0003676	nucleic acid binding	GBP1
-Cre01.g049200						
-Cre01.g003463	GMM:28.2	DNA.repair		GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	
-Cre01.g009150			Secretory pathway			
-Cre01.g012550						
-Cre01.g055440						CSR8
-Cre01.g019750	GMM:17.3.3	hormone metabolism.brassinosteroid.induced-regulated-responsive-activated		GO:0006265;GO:0005524;GO:0003918;GO:0003677	DNA topological change;ATP binding;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA binding	
-Cre01.g005126						CSB3
-Cre01.g027500			Chloroplast	GO:0005515	protein binding	
-Cre01.g016800				GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre01.g035550	GMM:28.2	DNA.repair	Mitochondrion			
-Cre01.g045000			Secretory pathway			PRL9
-Cre01.g035350	GMM:11.8.7	"lipid metabolism.exotics (steroids, squalene etc).trans-2-enoyl-CoA reductase (NADPH)"		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	
-Cre01.g037400	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN19-1
-Cre01.g023250						
-Cre01.g039600			Mitochondrion			
-Cre01.g026950			Secretory pathway			
-Cre01.g006050						LF3
-Cre01.g005400	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
-Cre01.g000150	GMM:34.12	transport.metal	Chloroplast	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZRT2
-Cre01.g003000						
-Cre01.g033000						FAP334
-Cre01.g031900	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems	Secretory pathway			
-Cre01.g019100	GMM:26.1;GMM:13.2.5.2;GMM:13.1.5.1.1	misc.misc2;amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase		GO:0055114;GO:0051287;GO:0016616;GO:0008152	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process"	
-Cre01.g019900			Mitochondrion			FAP384
-Cre01.g023450			Chloroplast			
-Cre01.g035800				GO:0016021;GO:0006813;GO:0005242	integral component of membrane;potassium ion transport;inward rectifier potassium channel activity	IRK2
-Cre01.g053500	GMM:16.1.1	secondary metabolism.isoprenoids.non-mevalonate pathway		GO:0003824	catalytic activity	
-Cre01.g027050						
-Cre01.g049826			Chloroplast			PHC59
-Cre01.g053250	GMM:33.99	development.unspecified	Mitochondrion	GO:0006355	"regulation of transcription, DNA-templated"	
-Cre01.g070202						
-Cre01.g022600			Secretory pathway	GO:0016021;GO:0008146	integral component of membrane;sulfotransferase activity	CGL13
-Cre01.g029250	GMM:13.1.6.4	amino acid metabolism.synthesis.aromatic aa.tyrosine	Mitochondrion	GO:0055114;GO:0016714;GO:0009072;GO:0005506;GO:0004497	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced pteridine as one donor, and incorporation of one atom of oxygen;aromatic amino acid family metabolic process;iron ion binding;monooxygenase activity"	AAH1
-Cre01.g032700			Chloroplast	GO:0051156;GO:0006096;GO:0005524;GO:0004340	glucose 6-phosphate metabolic process;glycolytic process;ATP binding;glucokinase activity	GLK1
-Cre01.g051137						
-Cre01.g034100	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation	Chloroplast			
-Cre01.g008800			Secretory pathway			
-Cre01.g034400	GMM:7.1.2	OPP.oxidative PP.6-phosphogluconolactonase	Chloroplast	GO:0005975	carbohydrate metabolic process	PGL1
-Cre01.g001550	GMM:29.2.3	protein.synthesis.initiation	Chloroplast	GO:0006413;GO:0003743	translational initiation;translation initiation factor activity	TIF3
-Cre01.g042050	GMM:29.4;GMM:27.3.67	protein.postranslational modification;RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0055114;GO:0033743;GO:0030091;GO:0016671;GO:0006979	"oxidation-reduction process;peptide-methionine (R)-S-oxide reductase activity;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;response to oxidative stress"	
-Cre01.g003450			Chloroplast			
-Cre01.g055412						
-Cre01.g012900	GMM:29.2.4;GMM:13.99	protein.synthesis.elongation;amino acid metabolism.misc	Mitochondrion			
-Cre01.g041426						
-Cre01.g005651						
-Cre01.g034550						FAP109
-Cre01.g051900	GMM:9.5	mitochondrial electron transport / ATP synthesis.cytochrome c reductase	Mitochondrion	GO:0055114;GO:0051537;GO:0016679;GO:0016491;GO:0008121	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity, acting on diphenols and related substances as donors;oxidoreductase activity;ubiquinol-cytochrome-c reductase activity"	RIP1
-Cre01.g015750			Mitochondrion			
-Cre01.g024000			Mitochondrion			
-Cre01.g060712	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre01.g027764	GMM:34.99;GMM:34.16	transport.misc;transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
-Cre01.g054600						
-Cre01.g046052	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g026400	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016021	integral component of membrane	EXS
-Cre01.g007550			Secretory pathway			
-Cre01.g007100			Secretory pathway			
-Cre01.g013150			Chloroplast			CGLD35
-Cre01.g068012			Mitochondrion			PPR5
-Cre01.g031700						
-Cre01.g049500	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase		GO:0016020;GO:0005507;GO:0004129	membrane;copper ion binding;cytochrome-c oxidase activity	COX2B
-Cre01.g043500				GO:0034227;GO:0002098;GO:0000049	tRNA thio-modification;tRNA wobble uridine modification;tRNA binding	
-Cre01.g008700						
-Cre01.g022400			Secretory pathway			
-Cre01.g017550			Secretory pathway	GO:0005515	protein binding	
-Cre01.g055316			Secretory pathway			
-Cre01.g047218			Chloroplast			
-Cre01.g035900						
-Cre01.g013700	GMM:34.2;GMM:34.18	transport.sugars;transport.unspecified anions		GO:0055085;GO:0005741	transmembrane transport;mitochondrial outer membrane	VDAC1
-Cre01.g014650	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH5
-Cre01.g044600	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols				
-Cre01.g016651						
-Cre01.g028101			Mitochondrion			
-Cre01.g006642			Chloroplast			
-Cre01.g000850			Chloroplast			CPLD38
-Cre01.g040701			Secretory pathway			
-Cre01.g025650			Secretory pathway			
-Cre01.g036800	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN9-1
-Cre01.g050608						
-Cre01.g040850						
-Cre01.g032750			Chloroplast			
-Cre01.g046150	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0030145;GO:0004177	manganese ion binding;aminopeptidase activity	
-Cre01.g030850	GMM:29.5.11.20;GMM:29.5	protein.degradation.ubiquitin.proteasom;protein.degradation		GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA4
-Cre01.g010650			Secretory pathway			
-Cre01.g011250						
-Cre01.g006850						
-Cre01.g025850	GMM:3.4.4	minor CHO metabolism.myo-inositol.myo-inositol oxygenases	Mitochondrion	GO:0055114;GO:0050113;GO:0019310;GO:0005737;GO:0005506	oxidation-reduction process;inositol oxygenase activity;inositol catabolic process;cytoplasm;iron ion binding	INO
-Cre01.g010201			Secretory pathway			
-Cre01.g047200			Chloroplast			
-Cre01.g051800	GMM:13.1.6.2	amino acid metabolism.synthesis.aromatic aa.phenylalanine and tyrosine	Chloroplast	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	AST2
-Cre01.g052850	GMM:31.3;GMM:30.6	cell.cycle;signalling.MAP kinases		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g058156						
-Cre01.g038300			Mitochondrion	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
-Cre01.g054100	GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XI	Mitochondrion	GO:0005515	protein binding	
-Cre01.g031400						
-Cre01.g055550	GMM:9.7;GMM:29.8	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase;protein.assembly and cofactor ligation	Mitochondrion	GO:0005507	copper ion binding	COX11
-Cre01.g044100	GMM:2.2.2.1.2;GMM:2.2.2.1	major CHO metabolism.degradation.starch.starch cleavage.beta amylase;major CHO metabolism.degradation.starch.starch cleavage		GO:0016161;GO:0000272	beta-amylase activity;polysaccharide catabolic process	AMB3
-Cre01.g009550	GMM:26.24	misc.GCN5-related N-acetyltransferase	Mitochondrion	GO:0008080	N-acetyltransferase activity	
-Cre01.g029350				GO:0022900;GO:0016651	"electron transport chain;oxidoreductase activity, acting on NAD(P)H"	FAP297
-Cre01.g023900			Mitochondrion			
-Cre01.g006576			Mitochondrion			
-Cre01.g019600			Chloroplast			
-Cre01.g038600	GMM:11.2.3	lipid metabolism.FA desaturation.omega 3 desaturase	Chloroplast	GO:0055114;GO:0016717;GO:0006629	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water;lipid metabolic process"	FAD7
-Cre01.g055477			Mitochondrion			
-Cre01.g012700	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	KCN6
-Cre01.g067647			Chloroplast			
-Cre01.g010350	GMM:18.11;GMM:18;GMM:11.5	Co-factor and vitamine metabolism.lipoic acid;Co-factor and vitamine metabolism;lipid metabolism.glycerol metabolism	Secretory pathway	GO:0006464	cellular protein modification process	LIPB
-Cre01.g020800			Mitochondrion			
-Cre01.g008450				GO:0007067;GO:0000775	"mitotic nuclear division;chromosome, centromeric region"	
-Cre01.g022250	GMM:29.2.1.1.1.2.3	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L3	Mitochondrion	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL3
-Cre01.g009850						
-Cre01.g001200	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK14
-Cre01.g045903	GMM:11.4	lipid metabolism.TAG synthesis	Chloroplast	GO:0019432;GO:0008374;GO:0004144	triglyceride biosynthetic process;O-acyltransferase activity;diacylglycerol O-acyltransferase activity	DGAT1
-Cre01.g024800	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g050300						
-Cre01.g034150				GO:0016021;GO:0015299;GO:0006812	integral component of membrane;solute:proton antiporter activity;cation transport	
-Cre01.g042550			Secretory pathway	GO:0072546	ER membrane protein complex	
-Cre01.g047229						
-Cre01.g011150	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)		GO:0046983	protein dimerization activity	
-Cre01.g002861	GMM:26.16	misc.myrosinases-lectin-jacalin				
-Cre01.g014751			Chloroplast			
-Cre01.g012100			Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS4
-Cre01.g036500			Secretory pathway;Chloroplast			
-Cre01.g007901	GMM:34.99	transport.misc	Mitochondrion;Secretory pathway	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
-Cre01.g024350	GMM:28.99	DNA.unspecified	Secretory pathway	GO:0016021	integral component of membrane	
-Cre01.g065457						
-Cre01.g015300			Mitochondrion	GO:0055114	oxidation-reduction process	
-Cre01.g004600	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RWP12
-Cre01.g025200	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP4
-Cre01.g038376						
-Cre01.g009250	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006265;GO:0005524;GO:0003918;GO:0003677	DNA topological change;ATP binding;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA binding	TOP2
-Cre01.g013900			Mitochondrion			
-Cre01.g021750				GO:0006355	"regulation of transcription, DNA-templated"	
-Cre01.g004850			Mitochondrion	GO:0016787;GO:0006351;GO:0005634;GO:0005524;GO:0003677	"hydrolase activity;transcription, DNA-templated;nucleus;ATP binding;DNA binding"	TXE1
-Cre01.g021300			Secretory pathway			
-Cre01.g050750						
-Cre01.g030250	GMM:23.2	nucleotide metabolism.degradation	Mitochondrion	GO:0046854	phosphatidylinositol phosphorylation	
-Cre01.g021600	GMM:27.1.2	RNA.processing.RNA helicase		GO:0005524;GO:0005515;GO:0003676	ATP binding;protein binding;nucleic acid binding	HEL1
-Cre01.g048600			Mitochondrion			
-Cre01.g066552	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	
-Cre01.g026650	GMM:18.1;GMM:18	Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism	Secretory pathway			
-Cre01.g050400	GMM:29.3.2	protein.targeting.mitochondria	Chloroplast			TIM22C
-Cre01.g005500						
-Cre01.g002350	GMM:29.5.11.2;GMM:17.2.2	protein.degradation.ubiquitin.E1;hormone metabolism.auxin.signal transduction		GO:0008641	small protein activating enzyme activity	
-Cre01.g035250	GMM:22.1.5	polyamine metabolism.synthesis.N-carbamoylputrescine amidohydrolase	Mitochondrion			
-Cre01.g023100	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0006355;GO:0003700	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre01.g041256	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			
-Cre01.g039500	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others		GO:0005515	protein binding	FAP89
-Cre01.g043050			Mitochondrion	GO:0016021	integral component of membrane	SNR2
-Cre01.g007050			Chloroplast			CPLD11
-Cre01.g020500			Secretory pathway			
-Cre01.g026016						
-Cre01.g025900	GMM:31.2;GMM:20.2.5	cell.division;stress.abiotic.light				
-Cre01.g042850	GMM:21.2	redox.ascorbate and glutathione	Secretory pathway			
-Cre01.g014350	GMM:21.5	redox.peroxiredoxin	Chloroplast	GO:0055114;GO:0016491;GO:0016209	oxidation-reduction process;oxidoreductase activity;antioxidant activity	PRX5
-Cre01.g041351						
-Cre01.g023913						
-Cre01.g021251	GMM:13.1.2.3.23;GMM:13.1.2.3	amino acid metabolism.synthesis.glutamate family.arginine.argininosuccinate lyase;amino acid metabolism.synthesis.glutamate family.arginine	Chloroplast	GO:0042450;GO:0004056	arginine biosynthetic process via ornithine;argininosuccinate lyase activity	ARG7
-Cre01.g048950	GMM:23.1.1.5	nucleotide metabolism.synthesis.pyrimidine.uridine 5'-monophosphate synthase	Chloroplast	GO:0009116;GO:0006207;GO:0004590	nucleoside metabolic process;'de novo' pyrimidine nucleobase biosynthetic process;orotidine-5'-phosphate decarboxylase activity	PYR5
-Cre01.g032600			Secretory pathway			HPAT1
-Cre01.g010050						
-Cre01.g034350	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
-Cre01.g000100	GMM:34.12	transport.metal				
-Cre01.g010300						
-Cre01.g050650						
-Cre01.g028250	GMM:11.9.2.2	lipid metabolism.lipid degradation.lipases.acylglycerol lipase				GEA1
-Cre01.g028500						
-Cre01.g056696			Mitochondrion			
-Cre01.g031875						
-Cre01.g042502	GMM:29.4.1	protein.postranslational modification.kinase		GO:0016020;GO:0006508;GO:0005044;GO:0004252	membrane;proteolysis;scavenger receptor activity;serine-type endopeptidase activity	SRR11
-Cre01.g007000	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre01.g069107						COX191
-Cre01.g022050						
-Cre01.g016600	GMM:20.2.5;GMM:1.1.1.2	stress.abiotic.light;PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			PSBS1
-Cre01.g016250			Secretory pathway	GO:0016021;GO:0006952	integral component of membrane;defense response	MLO3
-Cre01.g009650	GMM:33.99;GMM:27.3.3	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"	Mitochondrion	GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	BUG25
-Cre01.g038950			Secretory pathway			
-Cre01.g042200			Chloroplast			
-Cre01.g030986						
-Cre01.g018050			Chloroplast			
-Cre01.g043600			Chloroplast			
-Cre01.g027900	GMM:17.1.1	hormone metabolism.abscisic acid.synthesis-degradation				
-Cre01.g014800	GMM:28.2	DNA.repair	Chloroplast	GO:0045910;GO:0030983;GO:0016887;GO:0006298;GO:0005524;GO:0004519	negative regulation of DNA recombination;mismatched DNA binding;ATPase activity;mismatch repair;ATP binding;endonuclease activity	MSH7
-Cre01.g050550			Chloroplast	GO:0051537;GO:0043231	"2 iron, 2 sulfur cluster binding;intracellular membrane-bounded organelle"	
-Cre01.g040550						
-Cre01.g039650	GMM:26.1	misc.misc2		GO:0042586;GO:0005506	peptide deformylase activity;iron ion binding	PDF1C
-Cre01.g055404						
-Cre01.g051211	GMM:34.99;GMM:34.16	transport.misc;transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
-Cre01.g040350	GMM:28.2	DNA.repair	Chloroplast	GO:0045910;GO:0030983;GO:0016887;GO:0006298;GO:0005524;GO:0004519	negative regulation of DNA recombination;mismatched DNA binding;ATPase activity;mismatch repair;ATP binding;endonuclease activity	MSH8
-Cre01.g022200			Secretory pathway			
-Cre01.g051950	GMM:29.5.4;GMM:27.3.99	protein.degradation.aspartate protease;RNA.regulation of transcription.unclassified		GO:0006508;GO:0004190	proteolysis;aspartic-type endopeptidase activity	ASP2
-Cre01.g049000			Chloroplast	GO:0008124;GO:0006729	4-alpha-hydroxytetrahydrobiopterin dehydratase activity;tetrahydrobiopterin biosynthetic process	CGL31
-Cre01.g015500	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	CGL91
-Cre01.g013300	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0005515	protein binding	DEG10
-Cre01.g038800	GMM:34.19	transport.major intrinsic proteins		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	MIP3
-Cre01.g036050	GMM:28.2	DNA.repair	Mitochondrion	GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	MLH1
-Cre01.g043800						
-Cre01.g004157	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			
-Cre01.g033300	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
-Cre01.g021950	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Mitochondrion	GO:0007018;GO:0003777	microtubule-based movement;microtubule motor activity	
-Cre01.g003541						
-Cre01.g009050						
-Cre01.g062172	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HBV1
-Cre01.g059982			Mitochondrion			
-Cre01.g015103	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre01.g018700						
-Cre01.g012050	GMM:34.4;GMM:1.5.3	transport.nitrate;PS.carbon concentrating mechanism.algal	Mitochondrion	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NAR1.6
-Cre01.g052150	GMM:31.1	cell.organisation				FAP87
-Cre01.g010750	GMM:9.7;GMM:27.3.44	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase;RNA.regulation of transcription.chromatin remodeling factors				
-Cre01.g030000			Secretory pathway			
-Cre01.g040950				GO:0006468;GO:0005524;GO:0004674	protein phosphorylation;ATP binding;protein serine/threonine kinase activity	
-Cre01.g002150			Chloroplast			
-Cre01.g045902	GMM:29.8	protein.assembly and cofactor ligation	Chloroplast			
-Cre01.g000750			Secretory pathway			
-Cre01.g024850	GMM:26.23	misc.rhodanese				RDP2
-Cre01.g066187	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZRT4
-Cre01.g015200	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE4
-Cre01.g048100						
-Cre01.g009450	GMM:29.9	protein.co-chaperones	Cytosol			DNJ22
-Cre01.g038700	GMM:34.18	transport.unspecified anions	Mitochondrion	GO:0055085;GO:0016020;GO:0006821;GO:0005247	transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity	CLV5
-Cre01.g026200	GMM:3.8.2	minor CHO metabolism.galactose.alpha-galactosidases	Mitochondrion			PPR9
-Cre01.g012150	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979;GO:0006457	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress;protein folding"	MSRA4
-Cre01.g041667			Mitochondrion;Chloroplast			
-Cre01.g028200	GMM:27.1.2;GMM:27.1;GMM:17.5.3	RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL6
-Cre01.g006656			Chloroplast			
-Cre01.g004700			Secretory pathway	GO:0016021	integral component of membrane	
-Cre01.g037100	GMM:30.1;GMM:29.4;GMM:29.2.2	signalling.in sugar and nutrient physiology;protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g002203			Secretory pathway			
-Cre01.g044276			Secretory pathway			
-Cre01.g016542			Chloroplast			
-Cre01.g032000						
-Cre01.g012200	GMM:33.99;GMM:33.3;GMM:27.3.28	development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0005515;GO:0003677	nucleus;protein binding;DNA binding	
-Cre01.g012500	GMM:31.4;GMM:30.5;GMM:3.5	cell.vesicle transport;signalling.G-proteins;minor CHO metabolism.others				PRA1
-Cre01.g037450	GMM:31.3.1	cell.cycle.peptidylprolyl isomerase	Secretory pathway			
-Cre01.g037476			Chloroplast			
-Cre01.g016150						
-Cre01.g038200			Mitochondrion			
-Cre01.g011950			Chloroplast			
-Cre01.g000950			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT13
-Cre01.g010848			Chloroplast			
-Cre01.g053050			Mitochondrion			
-Cre01.g055200						CPL7
-Cre01.g007737	GMM:34.99	transport.misc	Chloroplast	GO:0016021;GO:0006810	integral component of membrane;transport	FBT1
-Cre01.g045650			Mitochondrion			ZNJ3
-Cre01.g029050				GO:0005515	protein binding	
-Cre01.g054000	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre01.g040300			Mitochondrion	GO:0008171	O-methyltransferase activity	
-Cre01.g054850			Chloroplast			
-Cre01.g005750			Secretory pathway			
-Cre01.g019150	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0005815;GO:0000922;GO:0000226	microtubule organizing center;spindle pole;microtubule cytoskeleton organization	GCP4
-Cre01.g006352						
-Cre01.g027250						
-Cre01.g034250			Secretory pathway			
-Cre01.g054900						
-Cre01.g022500	GMM:8.2.10	TCA / organic transformation.other organic acid transformations.malic	Mitochondrion	GO:0055114;GO:0051287;GO:0004471	oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity	MME5
-Cre01.g007850	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Mitochondrion			TEF29
-Cre01.g024500				GO:0044782;GO:0036064;GO:0005813	cilium organization;ciliary basal body;centrosome	
-Cre01.g036700	GMM:30.3;GMM:29.4.1;GMM:29.4;GMM:29.2.2	signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g042402						
-Cre01.g023300				GO:0016491	oxidoreductase activity	
-Cre01.g058521			Secretory pathway			ALG11
-Cre01.g047450	GMM:29.5.3	protein.degradation.cysteine protease				CPLD17
-Cre01.g003150			Mitochondrion			
-Cre01.g055424			Secretory pathway			PIGP
-Cre01.g009575	GMM:33.99;GMM:27.3.3	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"	Mitochondrion	GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre01.g036600	GMM:28.99	DNA.unspecified				EXN3
-Cre01.g041800			Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre01.g012400			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
-Cre01.g035700						
-Cre01.g019250	GMM:21.2.1.1	redox.ascorbate and glutathione.ascorbate.GME				GME
-Cre01.g010450			Secretory pathway	GO:0005515	protein binding	
-Cre01.g029650	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole		GO:0042147;GO:0030904;GO:0015031;GO:0008565	"retrograde transport, endosome to Golgi;retromer complex;protein transport;protein transporter activity"	VPS35
-Cre01.g033750			Chloroplast			
-Cre01.g053800			Chloroplast			
-Cre01.g037000	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Mitochondrion	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	
-Cre01.g026100				GO:0008033;GO:0004540	tRNA processing;ribonuclease activity	RPP14
-Cre01.g033763			Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre01.g063267						BLP1
-Cre01.g020223	GMM:8.1.8	TCA / organic transformation.TCA.fumarase		GO:0016829;GO:0006099	lyase activity;tricarboxylic acid cycle	FUM2
-Cre01.g012850	GMM:34.15	transport.potassium	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	KCN8
-Cre01.g044900			Mitochondrion			
-Cre01.g048300						
-Cre01.g031800			Secretory pathway			
-Cre01.g054250	GMM:26.10;GMM:26.1;GMM:25.4;GMM:17.2.2	misc.cytochrome P450;misc.misc2;C1-metabolism.5-formyltetrahydrofolate cyclo-ligase;hormone metabolism.auxin.signal transduction	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743A1
-Cre01.g003751			Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
-Cre01.g039400						
-Cre01.g010250	GMM:29.4;GMM:26.13	protein.postranslational modification;misc.acid and other phosphatases	Chloroplast	GO:0003824	catalytic activity	
-Cre01.g035000				GO:0005515	protein binding	
-Cre01.g001700	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g027650			Mitochondrion			
-Cre01.g006900						
-Cre01.g052400	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast	GO:0016020	membrane	CCB3
-Cre01.g043350	GMM:19.16	tetrapyrrole synthesis.chlorophyll b synthase	Chloroplast	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	CAO1
-Cre01.g052050	GMM:9.5;GMM:29.3.99	mitochondrial electron transport / ATP synthesis.cytochrome c reductase;protein.targeting.unknown	Mitochondrion			UQCC1
-Cre01.g021850	GMM:28.99	DNA.unspecified	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL2
-Cre01.g004500	GMM:16.5.1.1.1.3;GMM:13.1.4.4.3	secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.methylthioalkylmalate isomerase large subunit (MAM-IL);amino acid metabolism.synthesis.branched chain group.leucine specific.3-isopropylmalate dehydrogenase	Chloroplast	GO:0008152	metabolic process	LEU1
-Cre01.g014450						
-Cre01.g005300				GO:0006865	amino acid transport	
-Cre01.g018150						
-Cre01.g003250	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB1
-Cre01.g039200	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	IFT22
-Cre01.g014050	GMM:27.3.99;GMM:27.3.12	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.C3H zinc finger family				
-Cre01.g072027						
-Cre01.g036950			Chloroplast	GO:0051073;GO:0009236;GO:0008818	adenosylcobinamide-GDP ribazoletransferase activity;cobalamin biosynthetic process;cobalamin 5'-phosphate synthase activity	CBA1
-Cre01.g008891			Chloroplast			
-Cre01.g053350			Mitochondrion			
-Cre01.g023000	GMM:34.7	transport.phosphate	Chloroplast			PHT1
-Cre01.g050850	GMM:29.5.11.4.3.2;GMM:29.4	protein.degradation.ubiquitin.E3.SCF.FBOX;protein.postranslational modification		GO:0016787	hydrolase activity	PKL1
-Cre01.g011376						
-Cre01.g017350						
-Cre01.g048750			Chloroplast			PPR7
-Cre01.g044750			Secretory pathway			
-Cre01.g002451	GMM:35.1.19	not assigned.no ontology.C2 domain-containing protein	Mitochondrion	GO:0005515	protein binding	
-Cre01.g001300	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway			
-Cre01.g040250	GMM:29.9	protein.co-chaperones	Cytosol			DNJ9
-Cre01.g024150			Mitochondrion			
-Cre01.g034700			Secretory pathway			
-Cre01.g048650	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g024601			Mitochondrion			
-Cre01.g042300	GMM:29.4.1	protein.postranslational modification.kinase	Chloroplast	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR6
-Cre01.g051450			Chloroplast	GO:0005515	protein binding	
-Cre01.g021000			Secretory pathway	GO:0031083	BLOC-1 complex	
-Cre01.g015350	GMM:19.14	tetrapyrrole synthesis.protochlorophyllide reductase	Chloroplast	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	POR1
-Cre01.g010950				GO:0005515	protein binding	
-Cre01.g037200			Chloroplast			
-Cre01.g052250	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXx
-Cre01.g049400						
-Cre01.g028850	GMM:26.23	misc.rhodanese	Secretory pathway			
-Cre01.g030350			Secretory pathway			CGL41
-Cre01.g005543						
-Cre01.g042750	GMM:8.1.3	TCA / organic transformation.TCA.aconitase	Chloroplast	GO:0008152	metabolic process	ACH1
-Cre01.g041855	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation	Chloroplast			
-Cre01.g028350	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0005515	protein binding	DEG8
-Cre01.g010000	GMM:30.6;GMM:3.6;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPK8
-Cre01.g050050	GMM:31.1	cell.organisation				GUM1
-Cre01.g043000	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases	Mitochondrion	GO:0051536;GO:0008173;GO:0006364;GO:0005737;GO:0003824	iron-sulfur cluster binding;RNA methyltransferase activity;rRNA processing;cytoplasm;catalytic activity	
-Cre01.g067282						
-Cre01.g011100	GMM:17.3.1.2.99;GMM:16.1.5;GMM:11.8.6	"hormone metabolism.brassinosteroid.synthesis-degradation.sterols.other;secondary metabolism.isoprenoids.terpenoids;lipid metabolism.exotics (steroids, squalene etc).cycloartenol synthase"		GO:0003824	catalytic activity	CAS1
-Cre01.g038450			Chloroplast			
-Cre01.g071297						
-Cre01.g051350			Chloroplast			
-Cre01.g005001			Mitochondrion			CPLD9
-Cre01.g040650						
-Cre01.g016350						
-Cre01.g009700			Chloroplast	GO:0003824	catalytic activity	
-Cre01.g000600	GMM:33.99	development.unspecified		GO:0005515	protein binding	
-Cre01.g046502			Chloroplast			
-Cre01.g017100	GMM:26.5;GMM:11.7	misc.acyl transferases;lipid metabolism.unassigned	Chloroplast			
-Cre01.g010816						
-Cre01.g044350			Secretory pathway			
-Cre01.g022681						
-Cre01.g002650						
-Cre01.g021500	GMM:34.99	transport.misc	Secretory pathway			
-Cre01.g033400	GMM:29.3.2	protein.targeting.mitochondria				TIM9
-Cre01.g021150				GO:0008173;GO:0006396	RNA methyltransferase activity;RNA processing	
-Cre01.g008200			Secretory pathway			
-Cre01.g003516			Mitochondrion			
-Cre01.g015050						AGK1
-Cre01.g001664						
-Cre01.g054400						
-Cre01.g040400						
-Cre01.g046652	GMM:29.1.10;GMM:27.4	protein.aa activation.methionine-tRNA ligase;RNA.RNA binding	Chloroplast	GO:0000049	tRNA binding	
-Cre01.g020850			Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG49
-Cre01.g009350	GMM:22.1.4	polyamine metabolism.synthesis.agmatine deiminase	Mitochondrion	GO:0009446;GO:0004668	putrescine biosynthetic process;protein-arginine deiminase activity	AIH2
-Cre01.g025750						
-Cre01.g051482						
-Cre01.g007450			Mitochondrion			
-Cre01.g044800			Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	PFL1
-Cre01.g029150	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm				DAU1
-Cre01.g031300	GMM:30.3;GMM:3.3;GMM:29.4.1	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CDPK4
-Cre01.g018400	GMM:30.4.5;GMM:29.4.1	signalling.phosphinositides.inositol-tetrakisphosphate 1-kinase;protein.postranslational modification.kinase		GO:0052726;GO:0052725;GO:0047325;GO:0032957;GO:0005622;GO:0005524;GO:0000287	"inositol-1,3,4-trisphosphate 5-kinase activity;inositol-1,3,4-trisphosphate 6-kinase activity;inositol tetrakisphosphate 1-kinase activity;inositol trisphosphate metabolic process;intracellular;ATP binding;magnesium ion binding"	ITPK2
-Cre01.g055350			Chloroplast			
-Cre01.g006100	GMM:21.99	redox.misc		GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX7
-Cre01.g020751			Mitochondrion			
-Cre01.g034325			Chloroplast			
-Cre01.g045100			Secretory pathway			
-Cre01.g023787	GMM:29.2.2.1	protein.synthesis.ribosome biogenesis.export from nucleus		GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre01.g001650			Secretory pathway			
-Cre01.g033450			Mitochondrion			
-Cre01.g026900			Chloroplast	GO:0071949	FAD binding	SSA14
-Cre01.g052601			Chloroplast	GO:0008233;GO:0006508	peptidase activity;proteolysis	
-Cre01.g068742			Mitochondrion	GO:0003676	nucleic acid binding	
-Cre01.g025551			Chloroplast			
-Cre01.g038750						MOT7
-Cre01.g018350	GMM:11.9.2	lipid metabolism.lipid degradation.lipases				
-Cre01.g044700	GMM:21.2.2;GMM:21.2.1	redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione.ascorbate		GO:0005515	protein binding	
-Cre01.g031600			Secretory pathway			
-Cre01.g011850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g032850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK23
-Cre01.g013250						
-Cre01.g036300	GMM:3.3	minor CHO metabolism.sugar alcohols				
-Cre01.g055453	GMM:13.1.4.1.1	amino acid metabolism.synthesis.branched chain group.common.acetolactate synthase	Chloroplast	GO:0016597;GO:0008152	amino acid binding;metabolic process	ALS2
-Cre01.g062537						
-Cre01.g015600	GMM:29.2	protein.synthesis				
-Cre01.g011550						
-Cre01.g032100				GO:0005515	protein binding	
-Cre01.g049650				GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	
-Cre01.g054150	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0055114;GO:0045454;GO:0016491	oxidation-reduction process;cell redox homeostasis;oxidoreductase activity	NTRC1
-Cre01.g013801	GMM:16.1.3.4	secondary metabolism.isoprenoids.tocopherol biosynthesis.tocopherol cyclase	Chloroplast	GO:0009976	tocopherol cyclase activity	
-Cre01.g030650	GMM:30.11;GMM:28.2	signalling.light;DNA.repair	Secretory pathway			PHR5
-Cre01.g035100			Chloroplast	GO:0006189	'de novo' IMP biosynthetic process	
-Cre01.g006614						
-Cre01.g013400			Secretory pathway	GO:0042765;GO:0016255	GPI-anchor transamidase complex;attachment of GPI anchor to protein	PIGS
-Cre01.g041583				GO:0006355	"regulation of transcription, DNA-templated"	
-Cre01.g018075						
-Cre01.g059252			Chloroplast			
-Cre01.g004050			Mitochondrion			
-Cre01.g037550						
-Cre01.g026750			Mitochondrion			
-Cre01.g051750	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
-Cre01.g061442	GMM:29.5.11.4.3.1	protein.degradation.ubiquitin.E3.SCF.SKP		GO:0006511	ubiquitin-dependent protein catabolic process	
-Cre01.g019500						
-Cre01.g008650	GMM:29.4.1	protein.postranslational modification.kinase		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDK1
-Cre01.g047001			Chloroplast			
-Cre01.g017050						MCP1
-Cre01.g005250						
-Cre01.g002550	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	FAP335
-Cre01.g023773			Chloroplast	GO:0005515	protein binding	
-Cre01.g017650						FAP34
-Cre01.g053900	GMM:29.5	protein.degradation	Mitochondrion			
-Cre01.g019051			Secretory pathway			
-Cre01.g026300						
-Cre01.g023850						
-Cre01.g039800						
-Cre01.g032500	GMM:29.9;GMM:29.6.2.6;GMM:20.2.1	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat	Cytosol	GO:0005515	protein binding	DNJ8
-Cre01.g045601			Chloroplast	GO:0016020;GO:0006508;GO:0005044;GO:0004252	membrane;proteolysis;scavenger receptor activity;serine-type endopeptidase activity	
-Cre01.g047750	GMM:29.2.1.2.2.518;GMM:29.2.1.2.2.0518	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L18A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L18A		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL18A
-Cre01.g034900	GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4;GMM:29.2.2	signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CDPK5
-Cre01.g039150	GMM:29.3.3	protein.targeting.chloroplast				TIC21
-Cre01.g029750	GMM:23.4.3;GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.uridylate kinase;nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase		GO:0019205;GO:0006139;GO:0005524	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding	DAAK1
-Cre01.g012300			Chloroplast			
-Cre01.g035600			Chloroplast	GO:0055085;GO:0016020	transmembrane transport;membrane	MSC2
-Cre01.g005813						
-Cre01.g024750	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre01.g003826	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification				
-Cre01.g052950	GMM:28.2	DNA.repair				PSO2
-Cre01.g013650						
-Cre01.g020100			Secretory pathway			
-Cre01.g047050	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase	Mitochondrion			
-Cre01.g025050	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre01.g003550	GMM:26.23	misc.rhodanese	Chloroplast			
-Cre01.g003600			Mitochondrion			
-Cre01.g020305						SDH4
-Cre01.g044050	GMM:34.1	transport.p- and v-ATPases		GO:0033179;GO:0015991;GO:0015078	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	
-Cre01.g003850	GMM:26.10;GMM:26.1	misc.cytochrome P450;misc.misc2		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP747A1
-Cre29.g757797			Chloroplast			
-Cre29.g757947						
-Cre29.g757897			Secretory pathway			
-Cre29.g757847						
-Cre10.g427900	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre10.g466050			Mitochondrion;Chloroplast			
-Cre10.g419250						
-Cre10.g455500	GMM:27.3.42	RNA.regulation of transcription.bromodomain proteins		GO:0005515	protein binding	
-Cre10.g443850	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			
-Cre10.g438783			Mitochondrion			
-Cre10.g434750	GMM:13.1.4.1.2;GMM:13.1.4.1	amino acid metabolism.synthesis.branched chain group.common.ketol-acid reductoisomerase;amino acid metabolism.synthesis.branched chain group.common	Chloroplast	GO:0055114;GO:0016491;GO:0009082;GO:0004455	oxidation-reduction process;oxidoreductase activity;branched-chain amino acid biosynthetic process;ketol-acid reductoisomerase activity	AAI1
-Cre10.g425400			Secretory pathway			
-Cre10.g444044			Chloroplast			
-Cre10.g434300						
-Cre10.g433650			Mitochondrion	GO:0008168	methyltransferase activity	
-Cre10.g421079						
-Cre10.g428525						
-Cre10.g441350						
-Cre10.g465600						
-Cre10.g423600	GMM:33.99	development.unspecified	Chloroplast	GO:0005515;GO:0005509	protein binding;calcium ion binding	
-Cre10.g426292	GMM:4.1.14	glycolysis.cytosolic branch.pyruvate kinase (PK)		GO:0030955;GO:0006096;GO:0004743;GO:0000287	potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding	PYK6
-Cre10.g443650			Secretory pathway			
-Cre10.g462350	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre10.g427350	GMM:26.10;GMM:26.1;GMM:17.6.1.4	misc.cytochrome P450;misc.misc2;hormone metabolism.gibberelin.synthesis-degradation.ent-kaurenoic acid hydroxylase/oxygenase		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP39A2
-Cre10.g419150			Mitochondrion			
-Cre10.g453850			Secretory pathway			
-Cre10.g422250						
-Cre10.g451450	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g461874						
-Cre10.g453800						TSP3
-Cre10.g422700				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre10.g426850				GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
-Cre10.g464450			Mitochondrion	GO:0005515	protein binding	
-Cre10.g424400	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	PBB1
-Cre10.g444950						
-Cre10.g450650				GO:0005515	protein binding	
-Cre10.g454700						
-Cre10.g426350			Chloroplast			
-Cre10.g436650	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL45
-Cre10.g458500	GMM:13.1.3.6.1.1	amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate kinase	Chloroplast			ASK1
-Cre10.g445000			Secretory pathway	GO:0055085;GO:0016020;GO:0008324;GO:0006814;GO:0006813;GO:0005215	transmembrane transport;membrane;cation transmembrane transporter activity;sodium ion transport;potassium ion transport;transporter activity	SLT2
-Cre10.g454450	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre10.g441700						
-Cre10.g419350						
-Cre10.g433550	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0051103;GO:0006310;GO:0006281;GO:0005524;GO:0003910;GO:0003677	DNA ligation involved in DNA repair;DNA recombination;DNA repair;ATP binding;DNA ligase (ATP) activity;DNA binding	DNL4
-Cre10.g456150	GMM:28.2	DNA.repair				HLD3
-Cre10.g458600	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP245
-Cre10.g427896			Secretory pathway			CSB38
-Cre10.g450000						
-Cre10.g459450	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB10
-Cre10.g447300	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	protein binding	DDI1
-Cre10.g428734				GO:0055114	oxidation-reduction process	
-Cre10.g417650	GMM:27.1	RNA.processing	Mitochondrion	GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
-Cre10.g449020			Mitochondrion	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	
-Cre10.g433800	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				CSE21
-Cre10.g461100						
-Cre10.g422650			Mitochondrion			
-Cre10.g431650	GMM:20.2.5;GMM:18	stress.abiotic.light;Co-factor and vitamine metabolism		GO:0008152;GO:0006741;GO:0003951	metabolic process;NADP biosynthetic process;NAD+ kinase activity	
-Cre10.g428650	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification				CDPKK1
-Cre10.g451800	GMM:29.5	protein.degradation				
-Cre10.g451400	GMM:18.1.1;GMM:18	Co-factor and vitamine metabolism.molybdenum cofactor.gephyrin;Co-factor and vitamine metabolism		GO:0032324	molybdopterin cofactor biosynthetic process	CNX1E
-Cre10.g443900	GMM:34.18	transport.unspecified anions	Secretory pathway	GO:0016021;GO:0016020;GO:0006820;GO:0005452	integral component of membrane;membrane;anion transport;inorganic anion exchanger activity	BOR1
-Cre10.g465026						
-Cre10.g428000						
-Cre10.g418100	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA3
-Cre10.g445177			Mitochondrion			
-Cre10.g465850						
-Cre10.g440300	GMM:31.2	cell.division		GO:0030915;GO:0006281;GO:0000724	Smc5-Smc6 complex;DNA repair;double-strand break repair via homologous recombination	SMC5A
-Cre10.g446550	GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase		GO:0046961;GO:0034220;GO:0033180;GO:0015991	"proton-transporting ATPase activity, rotational mechanism;ion transmembrane transport;proton-transporting V-type ATPase, V1 domain;ATP hydrolysis coupled proton transport"	ATPVF
-Cre10.g430700						FAP308
-Cre10.g435650	GMM:34.99	transport.misc		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	HPT1
-Cre10.g432200						
-Cre10.g425650			Secretory pathway	GO:0016021	integral component of membrane	
-Cre10.g445251						
-Cre10.g443500			Mitochondrion			PCD3
-Cre10.g449100	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Chloroplast			MCP25
-Cre10.g455750	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0046872;GO:0005524	metal ion binding;ATP binding	
-Cre10.g427550			Secretory pathway	GO:0016757;GO:0006486	"transferase activity, transferring glycosyl groups;protein glycosylation"	
-Cre10.g461950	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	PBE1
-Cre10.g427500	GMM:26.1	misc.misc2		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A1
-Cre10.g465101						
-Cre10.g463350			Secretory pathway			HRP3
-Cre10.g453250			Secretory pathway			
-Cre10.g466450	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre10.g446900	GMM:33.99;GMM:30.1;GMM:3.1;GMM:29.4	development.unspecified;signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family;protein.postranslational modification		GO:0005515	protein binding	
-Cre10.g456350	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN7-2
-Cre10.g439700	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	CGL28
-Cre10.g459050	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0070008;GO:0008236;GO:0006508;GO:0004252	serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity	
-Cre10.g432301			Chloroplast			
-Cre10.g419850			Mitochondrion			
-Cre10.g442050						
-Cre10.g427000				GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	MOC2
-Cre10.g453450	GMM:27.1	RNA.processing		GO:0030532;GO:0008380	small nuclear ribonucleoprotein complex;RNA splicing	SMP4
-Cre10.g418000						
-Cre10.g427050	GMM:29.8	protein.assembly and cofactor ligation	Mitochondrion			MNP1
-Cre10.g428800			Secretory pathway			
-Cre10.g435100						
-Cre10.g439250						
-Cre10.g441850						
-Cre10.g437650			Mitochondrion			
-Cre10.g455400						RME2
-Cre10.g450100	GMM:34.15	transport.potassium	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
-Cre10.g458626			Chloroplast			
-Cre10.g431000						
-Cre10.g457900						
-Cre10.g424500	GMM:3.5	minor CHO metabolism.others				CPK4
-Cre10.g433100	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast	GO:0005525;GO:0000166	GTP binding;nucleotide binding	
-Cre10.g465450			Secretory pathway	GO:0008476;GO:0006478	protein-tyrosine sulfotransferase activity;peptidyl-tyrosine sulfation	
-Cre10.g442300			Chloroplast			
-Cre10.g420950			Chloroplast			
-Cre10.g417900						
-Cre10.g448051	GMM:34.99	transport.misc				
-Cre10.g435850						CPLD24
-Cre10.g420400						
-Cre10.g437400			Secretory pathway			
-Cre10.g418626			Chloroplast			
-Cre10.g459226						
-Cre10.g430400	GMM:29.2.1.2.2.37	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L37		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL37
-Cre10.g464650			Chloroplast			CGL36
-Cre10.g442700	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure		GO:0043141;GO:0005524;GO:0003678	ATP-dependent 5'-3' DNA helicase activity;ATP binding;DNA helicase activity	
-Cre10.g451100						
-Cre10.g462950			Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL33
-Cre10.g423300	GMM:29.5	protein.degradation				
-Cre10.g449300						
-Cre10.g452850						
-Cre10.g456650						AOF6
-Cre10.g449750	GMM:26.22;GMM:11.1.12	misc.short chain dehydrogenase/reductase (SDR);lipid metabolism.FA synthesis and FA elongation.ACP protein		GO:0055114;GO:0016788;GO:0009058;GO:0008152;GO:0003824	"oxidation-reduction process;hydrolase activity, acting on ester bonds;biosynthetic process;metabolic process;catalytic activity"	PKS1
-Cre10.g440900	GMM:27.1.19	RNA.processing.ribonucleases				RRP43
-Cre10.g432900	GMM:3.5	minor CHO metabolism.others				
-Cre10.g431950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre10.g421150			Secretory pathway			
-Cre10.g441250			Secretory pathway			
-Cre10.g466650				GO:0005509	calcium ion binding	FAP252
-Cre10.g440650				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre10.g427950	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre10.g462300	GMM:31.4;GMM:17.2.2	cell.vesicle transport;hormone metabolism.auxin.signal transduction		GO:0035091	phosphatidylinositol binding	
-Cre10.g449650			Chloroplast			
-Cre10.g440400			Mitochondrion			
-Cre10.g437700	GMM:29.4	protein.postranslational modification				
-Cre10.g434650	GMM:34.12	transport.metal	Secretory pathway	GO:0035434;GO:0016021;GO:0005375	copper ion transmembrane transport;integral component of membrane;copper ion transmembrane transporter activity	CTR3
-Cre10.g451300	GMM:28.99	DNA.unspecified	Chloroplast	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	EXN13
-Cre10.g448350			Secretory pathway	GO:0016020	membrane	
-Cre10.g425550	GMM:3.5	minor CHO metabolism.others				
-Cre10.g438450						LTH1
-Cre10.g444150	GMM:29.5.11.4.2;GMM:29.4.1.59	protein.degradation.ubiquitin.E3.RING;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX		GO:0016020;GO:0005525	membrane;GTP binding	
-Cre10.g431750			Secretory pathway			
-Cre10.g427150						
-Cre10.g457050			Secretory pathway			
-Cre10.g430350			Chloroplast			
-Cre10.g422750				GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	MOT10
-Cre10.g421250	GMM:31.4	cell.vesicle transport	Mitochondrion	GO:0006887;GO:0000145	exocytosis;exocyst	EXO70
-Cre10.g456420			Secretory pathway			
-Cre10.g456460			Chloroplast			
-Cre10.g466000				GO:0005739;GO:0004129	mitochondrion;cytochrome-c oxidase activity	
-Cre10.g426950	GMM:26.1	misc.misc2		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A3
-Cre10.g428600						
-Cre10.g445100			Chloroplast	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	CGL50
-Cre10.g426200			Mitochondrion			OPR44
-Cre10.g450254			Chloroplast			
-Cre10.g446850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
-Cre10.g446450			Mitochondrion	GO:0000160	phosphorelay signal transduction system	
-Cre10.g436150	GMM:18.4.9	Co-factor and vitamine metabolism.pantothenate.dephospho-CoA kinase (DPCK)		GO:0015937;GO:0005524;GO:0004140	coenzyme A biosynthetic process;ATP binding;dephospho-CoA kinase activity	COA6
-Cre10.g464325			Secretory pathway			
-Cre10.g459950						
-Cre10.g431850						PGM18
-Cre10.g421750			Secretory pathway;Chloroplast	GO:0016020	membrane	CGL32
-Cre10.g426632			Chloroplast			
-Cre10.g454550	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase				COX19
-Cre10.g450600	GMM:29.2.2.50	protein.synthesis.ribosome biogenesis.BRIX	Chloroplast	GO:0005515	protein binding	
-Cre10.g417450						
-Cre10.g462250	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	REF1
-Cre10.g459350			Chloroplast			OPR49
-Cre10.g452650	GMM:29.3.2	protein.targeting.mitochondria		GO:0015450;GO:0006886;GO:0005744	P-P-bond-hydrolysis-driven protein transmembrane transporter activity;intracellular protein transport;mitochondrial inner membrane presequence translocase complex	TIM17
-Cre10.g455300	GMM:27.1	RNA.processing		GO:0006396	RNA processing	SMP1
-Cre10.g452300			Chloroplast	GO:0008168;GO:0006139	methyltransferase activity;nucleobase-containing compound metabolic process	
-Cre10.g437100						
-Cre10.g454025				GO:0016560;GO:0005778;GO:0005515	"protein import into peroxisome matrix, docking;peroxisomal membrane;protein binding"	
-Cre10.g430626			Mitochondrion			
-Cre10.g445153			Chloroplast			
-Cre10.g442600	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	XUV5
-Cre10.g442900	GMM:28.1.1	DNA.synthesis/chromatin structure.retrotransposon/transposase				tnp25
-Cre10.g449950						
-Cre10.g445226	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre10.g430900	GMM:31.1	cell.organisation		GO:0005815;GO:0000922;GO:0000226	microtubule organizing center;spindle pole;microtubule cytoskeleton organization	
-Cre10.g435550						DOH1
-Cre10.g418500						
-Cre10.g461850						
-Cre10.g465793			Mitochondrion			
-Cre10.g467200	GMM:33.3.1;GMM:31.3	development.multitarget.target of rapamycin;cell.cycle	Mitochondrion	GO:0016773;GO:0005515	"phosphotransferase activity, alcohol group as acceptor;protein binding"	ATR1
-Cre10.g459550						
-Cre10.g462650						
-Cre10.g421021						
-Cre10.g446700	GMM:31.1;GMM:27.3.99	cell.organisation;RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	ANK28
-Cre10.g447450						
-Cre10.g439850	GMM:28.99	DNA.unspecified	Secretory pathway	GO:0016021	integral component of membrane	
-Cre10.g420250			Mitochondrion			
-Cre10.g448850	GMM:29.5.3	protein.degradation.cysteine protease	Chloroplast	GO:0006508;GO:0005622;GO:0004198	proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity	FAP135
-Cre10.g436500	GMM:26.13	misc.acid and other phosphatases		GO:0016787	hydrolase activity	
-Cre10.g456440			Chloroplast			
-Cre10.g463100						
-Cre10.g454951						
-Cre10.g447400						
-Cre10.g430250	GMM:26.2;GMM:10.3.2	misc.UDP glucosyl and glucoronyl transferases;cell wall.hemicellulose synthesis.glucuronoxylan				ELG21
-Cre10.g460250			Secretory pathway			
-Cre10.g446100	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXy
-Cre10.g420512			Secretory pathway			
-Cre10.g465200						
-Cre10.g448600						
-Cre10.g429350						
-Cre10.g439050	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Chloroplast			MCP7
-Cre10.g455600	GMM:31.2;GMM:28.99;GMM:28.1;GMM:27.3.63	cell.division;DNA.unspecified;DNA.synthesis/chromatin structure;RNA.regulation of transcription.PHD finger transcription factor	Chloroplast	GO:0005524;GO:0005515	ATP binding;protein binding	ORC1
-Cre10.g460466	GMM:29.5.11.4.4	protein.degradation.ubiquitin.E3.APC				APC2:3frag
-Cre10.g424050			Mitochondrion			
-Cre10.g442800	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	XUV6
-Cre10.g438400						LTH2
-Cre10.g417675			Secretory pathway			
-Cre10.g439800			Secretory pathway			
-Cre10.g447650						
-Cre10.g417700	GMM:29.2.1.2.2.3	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L3	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL3
-Cre10.g427800	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI	Secretory pathway			
-Cre10.g452950				GO:0070588;GO:0055085;GO:0034704;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;calcium channel complex;membrane;ion transport;calcium channel activity;ion channel activity	TRP1
-Cre10.g453350				GO:0046872	metal ion binding	
-Cre10.g448750			Chloroplast			
-Cre10.g459300			Mitochondrion			
-Cre10.g458000			Secretory pathway			
-Cre10.g458183			Mitochondrion	GO:0055114;GO:0045300;GO:0006631	oxidation-reduction process;acyl-[acyl-carrier-protein] desaturase activity;fatty acid metabolic process	
-Cre10.g434150			Chloroplast			
-Cre10.g463500	GMM:29.4.1;GMM:29.4;GMM:28.1	protein.postranslational modification.kinase;protein.postranslational modification;DNA.synthesis/chromatin structure		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre10.g439026						
-Cre10.g423700						
-Cre10.g463400			Mitochondrion			
-Cre10.g430550						
-Cre10.g456554						CSC5
-Cre10.g419050	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion	GO:0046961;GO:0046933;GO:0045261;GO:0015986;GO:0005524	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;proton-transporting ATP synthase complex, catalytic core F(1);ATP synthesis coupled proton transport;ATP binding"	ATP1B
-Cre10.g445419						
-Cre10.g453700						
-Cre10.g429650						
-Cre10.g447735						
-Cre10.g418700				GO:0008168	methyltransferase activity	DMA4
-Cre10.g419443						
-Cre10.g446275						
-Cre10.g464133	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion;Chloroplast			
-Cre10.g455100						SOUL6
-Cre10.g463750	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG27
-Cre10.g466526			Secretory pathway			
-Cre10.g450500	GMM:2	major CHO metabolism	Chloroplast	GO:2001070	starch binding	
-Cre10.g458900						SRR33
-Cre10.g450950						
-Cre10.g442150			Mitochondrion			
-Cre10.g439350			Chloroplast			
-Cre10.g452750	GMM:34.8	transport.metabolite transporters at the envelope membrane				
-Cre10.g456800						
-Cre10.g422500						
-Cre10.g449138						
-Cre10.g456050	GMM:26.7;GMM:11.8	"misc.oxidases - copper, flavone etc;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016491	oxidoreductase activity	
-Cre10.g453766			Mitochondrion			
-Cre10.g420600						
-Cre10.g438700	GMM:33.99;GMM:29.2.2.3.4	development.unspecified;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins		GO:0005515	protein binding	
-Cre10.g438883			Chloroplast			
-Cre10.g462816			Chloroplast			
-Cre10.g460800	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g461300			Mitochondrion			
-Cre10.g427750	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN9-3
-Cre10.g453050	GMM:31.3	cell.cycle		GO:0019901;GO:0006355;GO:0000079	"protein kinase binding;regulation of transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	CYCM1
-Cre10.g429850						
-Cre10.g424600						
-Cre10.g457750	GMM:34.6	transport.sulphate		GO:0055085;GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0008271	transmembrane transport;integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;secondary active sulfate transmembrane transporter activity	SULTR1
-Cre10.g436450						
-Cre10.g465300			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre10.g440550						
-Cre10.g428400	GMM:29.1.30;GMM:23.5.2	protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase	Mitochondrion	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS7
-Cre10.g435350						ESU1
-Cre10.g435500	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0006414;GO:0005622;GO:0003746	translational elongation;intracellular;translation elongation factor activity	EFT2
-Cre10.g455625			Chloroplast			
-Cre10.g442350						
-Cre10.g457600						
-Cre10.g447500	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN16-2
-Cre10.g417730			Mitochondrion			
-Cre10.g442500			Chloroplast			
-Cre10.g455900						
-Cre10.g429100	GMM:29.1.40;GMM:29.1.15	protein.aa activation.bifunctional aminoacyl-tRNA synthetase;protein.aa activation.proline-tRNA ligase		GO:0006433;GO:0006418;GO:0005737;GO:0005524;GO:0004827;GO:0004812;GO:0000166	prolyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;proline-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	
-Cre10.g431800	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS5
-Cre10.g434250	GMM:29.3.2	protein.targeting.mitochondria				
-Cre10.g444650						
-Cre10.g423350						
-Cre10.g452900						SMY2
-Cre10.g449850	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre10.g420150			Chloroplast			
-Cre10.g426500			Mitochondrion			
-Cre10.g461400	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
-Cre10.g463250						
-Cre10.g426000				GO:0034227;GO:0005737	tRNA thio-modification;cytoplasm	URM1
-Cre10.g438100	GMM:3.99;GMM:1.2.1	minor CHO metabolism.misc;PS.photorespiration.phosphoglycolate phosphatase				PGP2
-Cre10.g449200	GMM:31.1	cell.organisation		GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	ANK5
-Cre10.g448900			Secretory pathway			
-Cre10.g463934						
-Cre10.g445150	GMM:28.99	DNA.unspecified		GO:0008408;GO:0006139;GO:0003676;GO:0002161	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding;aminoacyl-tRNA editing activity	EXN12
-Cre10.g437829	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				CGL89
-Cre10.g466200	GMM:31.3;GMM:31.2	cell.cycle;cell.division	Mitochondrion	GO:0005634	nucleus	CYCAB1
-Cre10.g430501	GMM:27.1	RNA.processing		GO:0005515	protein binding	
-Cre10.g454800			Mitochondrion			
-Cre10.g421800			Mitochondrion			
-Cre10.g443400						
-Cre10.g458850			Chloroplast			SRR32
-Cre10.g456226						
-Cre10.g434850			Secretory pathway			
-Cre10.g462750				GO:0005515	protein binding	
-Cre10.g453400	GMM:34.99;GMM:30.99;GMM:27.3.67	transport.misc;signalling.unspecified;RNA.regulation of transcription.putative transcription regulator		GO:0055085;GO:0016020;GO:0005509	transmembrane transport;membrane;calcium ion binding	MSC4
-Cre10.g431250	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG5
-Cre10.g419000	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre10.g437550			Chloroplast			
-Cre10.g453750						
-Cre10.g436300			Secretory pathway			
-Cre10.g462000			Mitochondrion			
-Cre10.g445850	GMM:34.99;GMM:34.16	transport.misc;transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
-Cre10.g460400			Chloroplast	GO:0046872	metal ion binding	
-Cre10.g456950	GMM:29.5.3	protein.degradation.cysteine protease		GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP10
-Cre10.g454250	GMM:29.6.3.1	protein.folding.immunophilins (IMM).FKBPs	Chloroplast	GO:0006457	protein folding	FKB16-9
-Cre10.g420800	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP46
-Cre10.g446300	GMM:29.5;GMM:13.1.3.4.12	protein.degradation;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm36
-Cre10.g450900			Chloroplast			
-Cre10.g451600	GMM:26.16	misc.myrosinases-lectin-jacalin	Chloroplast	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	SRR28B
-Cre10.g436550	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Chloroplast.Stroma			LCI5
-Cre10.g450879	GMM:29.2.2.50	protein.synthesis.ribosome biogenesis.BRIX				
-Cre10.g421576						
-Cre10.g460532	GMM:29.5.11.4.4	protein.degradation.ubiquitin.E3.APC	Mitochondrion	GO:0031625;GO:0006511	ubiquitin protein ligase binding;ubiquitin-dependent protein catabolic process	APC2
-Cre10.g432700				GO:0006397	mRNA processing	SMP10
-Cre10.g441200						LAL3
-Cre10.g456000	GMM:31.6.1.10;GMM:11.8	"cell.motility.eukaryotes.flagellar associated proteins;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016491	oxidoreductase activity	FAP191
-Cre10.g442041						
-Cre10.g424700	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g455050						
-Cre10.g447850			Chloroplast			YEE2
-Cre10.g465700			Secretory pathway	GO:0055114;GO:0016715;GO:0005507;GO:0004497	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;copper ion binding;monooxygenase activity"	
-Cre10.g418350			Secretory pathway			
-Cre10.g437000			Secretory pathway			
-Cre10.g425501	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases		GO:0005515	protein binding	
-Cre10.g454600						
-Cre10.g423550	GMM:13.2.5.2.11;GMM:13.2.5.2;GMM:13.1.5.2.11	amino acid metabolism.degradation.serine-glycine-cysteine group.glycine.threonine aldolase;amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.threonine aldolase		GO:0016829;GO:0006520	lyase activity;cellular amino acid metabolic process	
-Cre10.g445050			Secretory pathway	GO:0055085;GO:0016020;GO:0008324;GO:0006814;GO:0006813;GO:0005215	transmembrane transport;membrane;cation transmembrane transporter activity;sodium ion transport;potassium ion transport;transporter activity	SLT3
-Cre10.g430950	GMM:28.2;GMM:27.3.44	DNA.repair;RNA.regulation of transcription.chromatin remodeling factors		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	RAD54B
-Cre10.g422150	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Secretory pathway	GO:0008236;GO:0006508	serine-type peptidase activity;proteolysis	
-Cre10.g425251						
-Cre10.g452076			Secretory pathway			
-Cre10.g438650	GMM:23.4.3;GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.uridylate kinase;nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase	Chloroplast	GO:0019205;GO:0006139;GO:0005524	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding	ADK2
-Cre10.g465757			Mitochondrion			
-Cre10.g466800						
-Cre10.g443700			Secretory pathway	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre10.g456480			Mitochondrion			
-Cre10.g439450						
-Cre10.g466350	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g456851			Mitochondrion			
-Cre10.g441050	GMM:27.3.2	RNA.regulation of transcription.alfin-like		GO:0042393;GO:0006355	"histone binding;regulation of transcription, DNA-templated"	
-Cre10.g444300			Chloroplast			IQA4
-Cre10.g461750	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases				DMC5
-Cre10.g419500						
-Cre10.g445347			Secretory pathway			
-Cre10.g433150				GO:0005515	protein binding	
-Cre10.g464264			Chloroplast	GO:0008080	N-acetyltransferase activity	
-Cre10.g424775	GMM:34.12	transport.metal	Secretory pathway;Chloroplast	GO:0046872;GO:0030001;GO:0000166	metal ion binding;metal ion transport;nucleotide binding	CTP2
-Cre10.g451700			Chloroplast			
-Cre10.g418950	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN10-2
-Cre10.g433300						
-Cre10.g459100						
-Cre10.g421400			Secretory pathway			
-Cre10.g429750	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified				
-Cre10.g425800	GMM:28.99	DNA.unspecified				ORN1
-Cre10.g433700			Secretory pathway			
-Cre10.g426650			Secretory pathway			
-Cre10.g458050	GMM:26.26.1	misc.aminotransferases.aminotransferase class IV family protein		GO:0008152;GO:0003824	metabolic process;catalytic activity	BCA3
-Cre10.g444850	GMM:34.21	transport.calcium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV7
-Cre10.g432500	GMM:28.1	DNA.synthesis/chromatin structure		GO:0007076	mitotic chromosome condensation	
-Cre10.g432050						FAP284
-Cre10.g429600	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway	GO:0008270	zinc ion binding	
-Cre10.g420450						
-Cre10.g420050	GMM:28.1.1	DNA.synthesis/chromatin structure.retrotransposon/transposase				
-Cre10.g429500			Mitochondrion			
-Cre10.g446000						
-Cre10.g434700			Chloroplast			
-Cre10.g433350	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre10.g430150	GMM:35.1.5;GMM:1.1.1.3	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			LPA1
-Cre10.g441450						
-Cre10.g426750	GMM:26.10;GMM:26.1	misc.cytochrome P450;misc.misc2	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A5
-Cre10.g452200			Secretory pathway			
-Cre10.g428350			Chloroplast			
-Cre10.g449550	GMM:21.5	redox.peroxiredoxin		GO:0055114;GO:0016491;GO:0016209	oxidation-reduction process;oxidoreductase activity;antioxidant activity	PRX3
-Cre10.g439100	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0005524	ATP binding	CCT1
-Cre10.g464250			Chloroplast			
-Cre10.g440100						
-Cre10.g423050	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
-Cre10.g466750	GMM:15.2;GMM:13.1.5.3.2	"metal handling.binding, chelation and storage;amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.SAT"	Chloroplast	GO:0009001;GO:0006535;GO:0005737	serine O-acetyltransferase activity;cysteine biosynthetic process from serine;cytoplasm	SAT1
-Cre10.g435250	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Secretory pathway	GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	NIC13
-Cre10.g465226			Secretory pathway			
-Cre10.g454100	GMM:29.2.2.50	protein.synthesis.ribosome biogenesis.BRIX				
-Cre10.g464950			Chloroplast			
-Cre10.g458350	GMM:26.16	misc.myrosinases-lectin-jacalin	Secretory pathway	GO:0016020;GO:0005975;GO:0005044;GO:0004553	"membrane;carbohydrate metabolic process;scavenger receptor activity;hydrolase activity, hydrolyzing O-glycosyl compounds"	SRR16
-Cre10.g445650	GMM:31.2	cell.division		GO:0051276;GO:0005694;GO:0005524;GO:0005515	chromosome organization;chromosome;ATP binding;protein binding	SMC3
-Cre10.g450300				GO:0055114	oxidation-reduction process	
-Cre10.g444450	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	protein binding	SSA17
-Cre10.g420700	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase		GO:0046961;GO:0046933;GO:0015986;GO:0000275	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;ATP synthesis coupled proton transport;mitochondrial proton-transporting ATP synthase complex, catalytic core F(1)"	ATP15
-Cre10.g422800			Mitochondrion	GO:0005622;GO:0003676	intracellular;nucleic acid binding	
-Cre10.g462500						PUS16
-Cre10.g422850			Chloroplast			
-Cre10.g439950						
-Cre10.g464800	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre10.g460950						
-Cre10.g459900	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway			PFH4
-Cre10.g443050	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH3
-Cre10.g448250			Mitochondrion	GO:0005515	protein binding	
-Cre10.g457500	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0005515	protein binding	
-Cre10.g459700						
-Cre10.g454000				GO:0007165;GO:0005515	signal transduction;protein binding	
-Cre10.g421900	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR27
-Cre10.g466850	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs		GO:0006457	protein folding	FKB18
-Cre10.g438950						
-Cre10.g425900	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA5
-Cre10.g449350			Mitochondrion	GO:0004045	aminoacyl-tRNA hydrolase activity	
-Cre10.g434950						
-Cre10.g459800	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
-Cre10.g444550	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Mitochondrion	GO:0008233;GO:0006508	peptidase activity;proteolysis	SPP1A
-Cre10.g434400	GMM:31.6.1.6.1	cell.motility.eukaryotes.central pair.C1a				PF6
-Cre10.g465900	GMM:31.3;GMM:31.2;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDKA1
-Cre10.g420226			Mitochondrion			
-Cre10.g461900	GMM:3.5;GMM:17.2.3	minor CHO metabolism.others;hormone metabolism.auxin.induced-regulated-responsive-activated	Chloroplast			
-Cre10.g440450	GMM:1.1.1.3;GMM:1.1.1.2	PS.lightreaction.photosystem II.biogenesis;PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast.Stroma.Thylakoid.Membrane	GO:0016020;GO:0015979;GO:0009654;GO:0009523	membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II	PSB28
-Cre10.g434983						
-Cre10.g457650			Chloroplast			
-Cre10.g458700						
-Cre10.g428100	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008033;GO:0004809;GO:0003723	tRNA processing;tRNA (guanine-N2-)-methyltransferase activity;RNA binding	tmg5
-Cre10.g436950	GMM:28.1	DNA.synthesis/chromatin structure				
-Cre10.g467050	GMM:31.6.1.11	cell.motility.eukaryotes.other				DAP2
-Cre10.g442250						
-Cre10.g456300	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast			MBD1
-Cre10.g420350	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0015979;GO:0009538;GO:0009522	photosynthesis;photosystem I reaction center;photosystem I	PSAE
-Cre10.g461319						
-Cre10.g466500	GMM:24.2	biodegradation of xenobiotics.lactoylglutathione lyase	Chloroplast			CPL12
-Cre10.g429200	GMM:29.4.1	protein.postranslational modification.kinase	Mitochondrion	GO:0005515	protein binding	
-Cre10.g431450			Chloroplast	GO:0008080	N-acetyltransferase activity	
-Cre10.g436000	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	protein binding	
-Cre10.g446650	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
-Cre10.g433450				GO:0005515	protein binding	
-Cre10.g448977			Secretory pathway			
-Cre10.g457297	GMM:3.3	minor CHO metabolism.sugar alcohols				tnp27
-Cre10.g426600	GMM:26.1;GMM:17.3.1.1.99	misc.misc2;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.other	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A6
-Cre10.g451900	GMM:13.1.3.2.1	amino acid metabolism.synthesis.aspartate family.threonine.threonine synthase	Chloroplast			THS1
-Cre10.g460326			Secretory pathway			
-Cre10.g422400			Secretory pathway			
-Cre10.g465550	GMM:20.2.1	stress.abiotic.heat	Chloroplast	GO:0019538;GO:0016887;GO:0005524	protein metabolic process;ATPase activity;ATP binding	CLPD1
-Cre10.g461500						
-Cre10.g420900	GMM:29.2.2.2.1;GMM:28.1;GMM:27.1.2	protein.synthesis.ribosome biogenesis.assembly factors.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL44
-Cre10.g453550			Mitochondrion			
-Cre10.g448550			Mitochondrion			
-Cre10.g418250	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				BLD10
-Cre10.g451477						
-Cre10.g436800			Secretory pathway	GO:0005515	protein binding	
-Cre10.g445750			Mitochondrion			
-Cre10.g463850						
-Cre10.g431550	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH6
-Cre10.g424900	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH1
-Cre10.g448650	GMM:11.3.5	lipid metabolism.phospholipid synthesis.diacylglycerol kinase		GO:0016301	kinase activity	KDG5
-Cre10.g457194			Chloroplast			
-Cre10.g453650				GO:0006281	DNA repair	
-Cre10.g451150			Chloroplast			
-Cre10.g445151						
-Cre10.g448450	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006863;GO:0006810;GO:0005345;GO:0005215	transmembrane transport;membrane;purine nucleobase transport;transport;purine nucleobase transmembrane transporter activity;transporter activity	XUV2
-Cre10.g445900						
-Cre10.g427700	GMM:27.1.2	RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL47
-Cre10.g431150	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP256
-Cre10.g421500			Mitochondrion			
-Cre10.g455800			Secretory pathway			
-Cre10.g424350	GMM:33.99;GMM:29.5.7;GMM:29.5.11	development.unspecified;protein.degradation.metalloprotease;protein.degradation.ubiquitin	Chloroplast	GO:0008270	zinc ion binding	
-Cre10.g447600			Chloroplast			
-Cre10.g462901			Secretory pathway			
-Cre10.g433866			Chloroplast			
-Cre10.g447000						
-Cre10.g417750			Mitochondrion	GO:0006629	lipid metabolic process	
-Cre10.g423650	GMM:29.2.1.1.4.2;GMM:29.2.1.1.1.2.11	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L11	Chloroplast	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	PRPL11
-Cre10.g432600	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS18
-Cre10.g437950				GO:0015923;GO:0008270;GO:0006013;GO:0005975;GO:0004559;GO:0004553	"mannosidase activity;zinc ion binding;mannose metabolic process;carbohydrate metabolic process;alpha-mannosidase activity;hydrolase activity, hydrolyzing O-glycosyl compounds"	
-Cre10.g462100						
-Cre10.g430800	GMM:35.1.1	not assigned.no ontology.ABC1 family protein	Chloroplast			
-Cre10.g452000	GMM:34.14	transport.unspecified cations				
-Cre10.g464050			Chloroplast			
-Cre10.g422350	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				
-Cre10.g444000	GMM:29.5.11.4.2;GMM:29.4.1.59	protein.degradation.ubiquitin.E3.RING;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX		GO:0016020;GO:0005525	membrane;GTP binding	
-Cre10.g445299			Mitochondrion			
-Cre10.g450800						
-Cre10.g465750						
-Cre10.g458250						
-Cre10.g428900	GMM:27.4	RNA.RNA binding		GO:0032259;GO:0008168;GO:0003723	methylation;methyltransferase activity;RNA binding	CGL72
-Cre10.g419950				GO:0005515	protein binding	
-Cre10.g423450	GMM:3.8;GMM:20.2.3;GMM:18.4.7;GMM:18.4	minor CHO metabolism.galactose;stress.abiotic.drought/salt;Co-factor and vitamine metabolism.pantothenate.phosphopantothenoylcysteine decarboxylase (PPCDC);Co-factor and vitamine metabolism.pantothenate	Secretory pathway	GO:0003824	catalytic activity	COA4
-Cre10.g435050			Mitochondrion			
-Cre10.g443000	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	ATM3
-Cre10.g419700			Secretory pathway	GO:0016021;GO:0015693;GO:0015095	integral component of membrane;magnesium ion transport;magnesium ion transmembrane transporter activity	CGL6
-Cre10.g441550			Secretory pathway			MAM3B
-Cre10.g444094						
-Cre10.g444800						CGL63
-Cre10.g454150						SAT3
-Cre10.g430050	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC20
-Cre10.g422326			Mitochondrion			
-Cre10.g464750				GO:0008080	N-acetyltransferase activity	
-Cre10.g435775						
-Cre10.g459500	GMM:30.5;GMM:3.5;GMM:29.2.2.1	signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0005525	GTP binding	NGB1
-Cre10.g419600				GO:0004112	cyclic-nucleotide phosphodiesterase activity	
-Cre10.g438200						
-Cre10.g438550	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0015031;GO:0008565	protein transport;protein transporter activity	TATA
-Cre10.g441000	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0006351;GO:0005634;GO:0003677	"transcription, DNA-templated;nucleus;DNA binding"	
-Cre10.g422050	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre10.g464850	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress"	MSRA5
-Cre10.g424200	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0003887;GO:0003677	DNA replication;DNA-directed DNA polymerase activity;DNA binding	
-Cre10.g453707						
-Cre10.g433600	GMM:25.6;GMM:25	C1-metabolism.methylenetetrahydrofolate reductase;C1-metabolism		GO:0055114;GO:0006555;GO:0004489	oxidation-reduction process;methionine metabolic process;methylenetetrahydrofolate reductase (NAD(P)H) activity	
-Cre10.g461050	GMM:34.1.1;GMM:34.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase;transport.p- and v-ATPases		GO:0046034;GO:0033178;GO:0016820;GO:0015992;GO:0015991;GO:0005524	"ATP metabolic process;proton-transporting two-sector ATPase complex, catalytic domain;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;proton transport;ATP hydrolysis coupled proton transport;ATP binding"	ATPVA1
-Cre10.g425700						
-Cre10.g446250	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	
-Cre10.g456750	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate		GO:0005515	protein binding	
-Cre10.g452150			Secretory pathway			
-Cre10.g423950	GMM:31.4	cell.vesicle transport	Secretory pathway			
-Cre10.g432400			Chloroplast			OPR46
-Cre10.g452500				GO:0005634	nucleus	
-Cre10.g438000						
-Cre10.g441800				GO:0006355;GO:0006351	"regulation of transcription, DNA-templated;transcription, DNA-templated"	
-Cre10.g422900	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g423150	GMM:29.4.1	protein.postranslational modification.kinase				
-Cre10.g441950	GMM:27.1	RNA.processing		GO:0006397	mRNA processing	LSM2
-Cre10.g432150	GMM:31.3;GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	cell.cycle;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre10.g427250	GMM:31.1	cell.organisation				PRO1
-Cre10.g461650			Mitochondrion			
-Cre10.g428750	GMM:35.1.14	not assigned.no ontology.S RNA-binding domain-containing protein		GO:0006397;GO:0005634;GO:0003676	mRNA processing;nucleus;nucleic acid binding	
-Cre10.g453200			Chloroplast			
-Cre10.g445443			Chloroplast			
-Cre10.g464550	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	LAT1
-Cre10.g436400			Chloroplast			
-Cre10.g428706				GO:0055114	oxidation-reduction process	
-Cre10.g449450						
-Cre10.g439200	GMM:23.5.3	nucleotide metabolism.deoxynucleotide metabolism.cytosine deaminase	Secretory pathway	GO:0008270	zinc ion binding	CDD5
-Cre10.g428250			Chloroplast			
-Cre10.g457801			Chloroplast			
-Cre10.g437300			Secretory pathway			
-Cre10.g463600	GMM:11.9.2	lipid metabolism.lipid degradation.lipases		GO:0006629	lipid metabolic process	TGL17
-Cre10.g439550	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway			
-Cre10.g455190			Chloroplast	GO:0008610;GO:0008168	lipid biosynthetic process;methyltransferase activity	
-Cre10.g465375			Mitochondrion			
-Cre10.g422600	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0051539	"4 iron, 4 sulfur cluster binding"	NUO6
-Cre10.g418800				GO:0005515	protein binding	
-Cre10.g462700	GMM:27.1.3.13	RNA.processing.3' end processing.CFIm25		GO:0006378;GO:0005849;GO:0003729	mRNA polyadenylation;mRNA cleavage factor complex;mRNA binding	
-Cre10.g422450	GMM:26.2;GMM:2.1.2	misc.UDP glucosyl and glucoronyl transferases;major CHO metabolism.synthesis.starch	Secretory pathway			GGT1
-Cre10.g467150			Mitochondrion			ROC69
-Cre10.g456600						
-Cre10.g421600	GMM:29.1.3	protein.aa activation.threonine-tRNA ligase	Secretory pathway	GO:0043039;GO:0016876;GO:0006418;GO:0005524;GO:0004812;GO:0000166	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"	TST2
-Cre10.g466550				GO:0006351;GO:0006289;GO:0000439	"transcription, DNA-templated;nucleotide-excision repair;core TFIIH complex"	
-Cre10.g463026				GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	
-Cre10.g460201			Mitochondrion			
-Cre10.g439300			Mitochondrion	GO:0055114	oxidation-reduction process	
-Cre10.g449127			Mitochondrion			
-Cre10.g464600			Chloroplast	GO:0005509	calcium ion binding	CAM14
-Cre10.g424750	GMM:6.5	gluconeogenesis / glyoxylate cycle.pyruvate dikinase		GO:0016772;GO:0016310;GO:0016301;GO:0005524	"transferase activity, transferring phosphorus-containing groups;phosphorylation;kinase activity;ATP binding"	PPD1
-Cre10.g455350			Chloroplast			
-Cre10.g440950				GO:0005515	protein binding	FAP192
-Cre10.g465822			Chloroplast			
-Cre10.g459200	GMM:34.1.2;GMM:34.1	transport.p- and v-ATPases.H+-exporting ATPase;transport.p- and v-ATPases		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	PMA2
-Cre10.g465400				GO:0034244;GO:0032021	negative regulation of transcription elongation from RNA polymerase II promoter;NELF complex	
-Cre10.g456100	GMM:31.6.1.9;GMM:11.8	"cell.motility.eukaryotes.flagellar adhesion and gamete fusion;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016491	oxidoreductase activity	AGG3
-Cre10.g425150	GMM:29.4	protein.postranslational modification				
-Cre10.g429702						
-Cre10.g460700	GMM:29.4.1	protein.postranslational modification.kinase		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g423000			Secretory pathway			
-Cre10.g436850						
-Cre10.g420551			Secretory pathway			
-Cre10.g449250	GMM:31.6.1.3.1.1	cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.kinesin-2 subunits		GO:0019894;GO:0005871	kinesin binding;kinesin complex	KAP1
-Cre10.g439750						
-Cre10.g438300						LTH4
-Cre10.g419900			Chloroplast			
-Cre10.g460901						
-Cre10.g430300			Mitochondrion			
-Cre10.g444726			Mitochondrion			
-Cre10.g446150			Secretory pathway			
-Cre10.g442950			Chloroplast			
-Cre10.g466950			Mitochondrion			
-Cre10.g433050	GMM:26.17	misc.dynamin	Mitochondrion			DRP8
-Cre10.g417550			Chloroplast			CLPT3
-Cre10.g457850						
-Cre10.g463450	GMM:29.4.1;GMM:28.1	protein.postranslational modification.kinase;DNA.synthesis/chromatin structure	Chloroplast			
-Cre10.g425675			Mitochondrion	GO:0006810;GO:0005643	transport;nuclear pore	
-Cre10.g440800						
-Cre10.g435800	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast	GO:0050662;GO:0003824	coenzyme binding;catalytic activity	CSP41B
-Cre10.g425600			Chloroplast			
-Cre10.g417850			Chloroplast	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre10.g458750						
-Cre10.g439000	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
-Cre10.g428200	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre10.g440200	GMM:31.2	cell.division		GO:0030915;GO:0006281;GO:0000724	Smc5-Smc6 complex;DNA repair;double-strand break repair via homologous recombination	SMC5B
-Cre10.g441326						
-Cre10.g430376						
-Cre10.g424450	GMM:34.9;GMM:34.20;GMM:29.3.2	transport.metabolite transporters at the mitochondrial membrane;transport.porins;protein.targeting.mitochondria		GO:0055085;GO:0005741	transmembrane transport;mitochondrial outer membrane	TOM40
-Cre10.g456550						
-Cre10.g418150	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family	Chloroplast			FAP178
-Cre10.g448300						
-Cre10.g451000				GO:0008616;GO:0008479;GO:0006400	queuosine biosynthetic process;queuine tRNA-ribosyltransferase activity;tRNA modification	
-Cre10.g447950			Chloroplast			
-Cre10.g441400	GMM:29.2.2.3.1;GMM:27.3.67	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;RNA.regulation of transcription.putative transcription regulator				NOP58
-Cre10.g445395						
-Cre10.g429300			Secretory pathway	GO:0005515	protein binding	
-Cre10.g452100			Chloroplast	GO:0030145;GO:0016021;GO:0015979;GO:0009523	manganese ion binding;integral component of membrane;photosynthesis;photosystem II	PSBY
-Cre10.g425350	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre10.g452350			Chloroplast			
-Cre10.g457400	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified				
-Cre10.g431050	GMM:26.16	misc.myrosinases-lectin-jacalin		GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR13
-Cre10.g439400	GMM:19.1	tetrapyrrole synthesis.glu-tRNA synthetase	Chloroplast	GO:0016884	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor"	GAT1
-Cre10.g457450	GMM:30.99	signalling.unspecified				
-Cre10.g455700	GMM:27.1	RNA.processing				PAP5
-Cre10.g451050			Secretory pathway			
-Cre10.g432950						
-Cre10.g438050	GMM:11.1.3	lipid metabolism.FA synthesis and FA elongation.ketoacyl ACP synthase	Secretory pathway			KAS3
-Cre10.g453100			Secretory pathway			
-Cre10.g443250	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0051082;GO:0006457;GO:0005524	unfolded protein binding;protein folding;ATP binding	CCT3
-Cre10.g450550	GMM:31.5.1;GMM:26.30;GMM:26.3	"cell.cell death.plants;misc.other Ferredoxins and Rieske domain;misc.gluco-, galacto- and mannosidases"		GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	PAO3
-Cre10.g443600						
-Cre10.g418600	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Chloroplast			RLS3
-Cre10.g453782			Mitochondrion			
-Cre10.g458400						
-Cre10.g419200						
-Cre10.g449000			Secretory pathway			LZY1
-Cre10.g438850	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family	Mitochondrion	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	ROC76
-Cre10.g444500	GMM:26.23	misc.rhodanese	Chloroplast			
-Cre10.g446500			Chloroplast			CPL24
-Cre10.g431100			Mitochondrion			
-Cre10.g421100			Mitochondrion			
-Cre10.g464400	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SSA20
-Cre10.g442200	GMM:16.8.4;GMM:16.8.3;GMM:11.8.4	"secondary metabolism.flavonoids.flavonols;secondary metabolism.flavonoids.dihydroflavonols;lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"	Secretory pathway			ERG6
-Cre10.g444086			Chloroplast			
-Cre10.g450700	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB39
-Cre10.g461350						BUG23
-Cre10.g422718						
-Cre10.g427400						
-Cre10.g453807	GMM:29.5	protein.degradation	Chloroplast	GO:0008236;GO:0006508;GO:0005515	serine-type peptidase activity;proteolysis;protein binding	
-Cre10.g434350	GMM:34.12	transport.metal	Mitochondrion	GO:0035434;GO:0016021;GO:0005375	copper ion transmembrane transport;integral component of membrane;copper ion transmembrane transporter activity	CTR2
-Cre10.g454650				GO:0006351;GO:0005634;GO:0003899	"transcription, DNA-templated;nucleus;DNA-directed RNA polymerase activity"	RPC5
-Cre10.g441650			Secretory pathway			
-Cre10.g426335				GO:0008270	zinc ion binding	
-Cre10.g450150			Secretory pathway			
-Cre10.g455451			Chloroplast			
-Cre10.g428966						
-Cre10.g457100			Secretory pathway			
-Cre10.g421450						
-Cre10.g432250	GMM:31.3;GMM:30.6;GMM:3.6;GMM:29.4.1	cell.cycle;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre10.g466100						
-Cre10.g465050			Chloroplast	GO:0003676	nucleic acid binding	
-Cre10.g421950						TEF26
-Cre10.g418400						
-Cre10.g433500						PWR10
-Cre10.g459400						
-Cre10.g425050	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Mitochondrion	GO:0005515	protein binding	ROC59
-Cre10.g427850	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast	GO:0006355	"regulation of transcription, DNA-templated"	
-Cre10.g458150						
-Cre10.g437250						
-Cre10.g451850	GMM:33.99;GMM:31.1;GMM:29.5.9;GMM:29.5.11.20	development.unspecified;cell.organisation;protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0005524	ATP binding	
-Cre10.g426400				GO:0045454	cell redox homeostasis	TRX22
-Cre10.g458550			Chloroplast			
-Cre10.g450450						FAP18
-Cre10.g434600	GMM:33.99;GMM:31.6.1.10;GMM:30.5	development.unspecified;cell.motility.eukaryotes.flagellar associated proteins;signalling.G-proteins		GO:0055085;GO:0016020;GO:0006811;GO:0005515;GO:0005216	transmembrane transport;membrane;ion transport;protein binding;ion channel activity	FAP148
-Cre10.g423850	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR26
-Cre10.g435600						
-Cre10.g465575			Chloroplast			
-Cre10.g462200	GMM:27.3.55	RNA.regulation of transcription.HDA		GO:0070403	NAD+ binding	HDA17
-Cre10.g444100	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0016567;GO:0016020;GO:0005525;GO:0004842	protein ubiquitination;membrane;GTP binding;ubiquitin-protein transferase activity	
-Cre10.g428150	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems	Mitochondrion			
-Cre10.g463900			Secretory pathway			
-Cre10.g431602			Chloroplast			
-Cre10.g440250						PGM19
-Cre10.g428692				GO:0055114	oxidation-reduction process	
-Cre10.g424000						
-Cre10.g450050						
-Cre10.g461150	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g443950	GMM:29.5.11.4.2;GMM:29.4.1.59	protein.degradation.ubiquitin.E3.RING;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX	Secretory pathway	GO:0016567;GO:0016020;GO:0005525;GO:0004842	protein ubiquitination;membrane;GTP binding;ubiquitin-protein transferase activity	
-Cre10.g452400			Secretory pathway			CSF1
-Cre10.g424100	GMM:23.4.99	nucleotide metabolism.phosphotransfer and pyrophosphatases.misc	Chloroplast	GO:0006796;GO:0005737;GO:0004427;GO:0000287	phosphate-containing compound metabolic process;cytoplasm;inorganic diphosphatase activity;magnesium ion binding	IPY1
-Cre10.g436100	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	MLK1
-Cre10.g417600			Chloroplast			
-Cre10.g464350				GO:0008270;GO:0003676	zinc ion binding;nucleic acid binding	
-Cre10.g428720			Secretory pathway			
-Cre10.g430650						
-Cre10.g461000						
-Cre10.g454400	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre10.g446400	GMM:31.1;GMM:29.5.9;GMM:29.5.11.20	cell.organisation;protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom		GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	KAT3
-Cre10.g445275	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre10.g443350						
-Cre10.g419800	GMM:11.3.4	lipid metabolism.phospholipid synthesis.CDP-diacylglycerol-inositol 3-phosphatidyltransferase	Secretory pathway	GO:0016780;GO:0016020;GO:0008654	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	PIS1
-Cre10.g452800	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Chloroplast			LCIB
-Cre10.g465763			Mitochondrion			CSB40
-Cre10.g448800			Mitochondrion			
-Cre10.g453500			Mitochondrion			
-Cre10.g434200						
-Cre10.g423083	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre10.g462783			Secretory pathway			
-Cre10.g453300						
-Cre10.g459250	GMM:29.2.1.2.2.535;GMM:29.2.1.2.2.0535	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L35A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L35A		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL35A
-Cre10.g439900	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Secretory pathway			HSP70G
-Cre10.g454900	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE29
-Cre10.g447050						
-Cre10.g420537	GMM:34.99	transport.misc				
-Cre10.g447350	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Chloroplast	GO:0030127;GO:0008270;GO:0006888;GO:0006886	COPII vesicle coat;zinc ion binding;ER to Golgi vesicle-mediated transport;intracellular protein transport	SEC23B
-Cre10.g431900						
-Cre10.g448700	GMM:31.1;GMM:27.3.44	cell.organisation;RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0005515	protein binding	
-Cre10.g463800						
-Cre10.g418650			Mitochondrion			
-Cre10.g426102			Mitochondrion			
-Cre10.g457950	GMM:29.5	protein.degradation	Chloroplast			
-Cre10.g459000						
-Cre10.g430200	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS3
-Cre10.g429601	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0016888	"endodeoxyribonuclease activity, producing 5'-phosphomonoesters"	
-Cre10.g432350						
-Cre10.g463370			Secretory pathway			
-Cre10.g436700						
-Cre10.g424850	GMM:27.1.1;GMM:27.1	RNA.processing.splicing;RNA.processing		GO:0046540;GO:0000398;GO:0000244	"U4/U6 x U5 tri-snRNP complex;mRNA splicing, via spliceosome;spliceosomal tri-snRNP complex assembly"	
-Cre10.g438350			Secretory pathway			LTH3
-Cre10.g455250			Mitochondrion			
-Cre10.g464100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g451752	GMM:1.5	PS.carbon concentrating mechanism	Mitochondrion			PHC25
-Cre10.g427600	GMM:33.99;GMM:31.1;GMM:29.5.11.20	development.unspecified;cell.organisation;protein.degradation.ubiquitin.proteasom		GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	KAT1
-Cre10.g463700						
-Cre10.g460000			Mitochondrion			
-Cre10.g419400						
-Cre10.g441150			Mitochondrion;Chloroplast			
-Cre10.g449150			Secretory pathway			
-Cre10.g429450						
-Cre10.g460100	GMM:33.99	development.unspecified	Mitochondrion	GO:0005515	protein binding	
-Cre10.g429400						MCG1
-Cre10.g448000						
-Cre10.g442750	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre10.g458650						
-Cre10.g463200						
-Cre10.g450926						
-Cre10.g419100						
-Cre10.g432850						FAP77
-Cre10.g458950	GMM:29.8	protein.assembly and cofactor ligation	Secretory pathway			
-Cre10.g466300						
-Cre10.g461700			Mitochondrion			
-Cre10.g428850	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm				DLT1
-Cre10.g447700			Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre10.g446050			Secretory pathway			
-Cre10.g454350			Mitochondrion			
-Cre10.g465000				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g417500	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Secretory pathway	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN20-5
-Cre10.g437150	GMM:35.1.5;GMM:33.99	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;development.unspecified	Mitochondrion			PPR6
-Cre10.g435400						
-Cre10.g426250						
-Cre10.g418851			Secretory pathway			
-Cre10.g421000				GO:0005515	protein binding	
-Cre10.g421200			Mitochondrion	GO:0003723	RNA binding	
-Cre10.g449700				GO:0006950	response to stress	
-Cre10.g445600	GMM:29.2.2.3.99;GMM:29.2.2.2.2	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;protein.synthesis.ribosome biogenesis.assembly factors.GTPases		GO:0042254;GO:0005634	ribosome biogenesis;nucleus	
-Cre10.g443801			Secretory pathway			
-Cre10.g427453			Mitochondrion			
-Cre10.g428500	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH2
-Cre10.g465950						CGL148
-Cre10.g427200						
-Cre10.g422201	GMM:34.12	transport.metal	Mitochondrion	GO:0046872;GO:0030001;GO:0000166	metal ion binding;metal ion transport;nucleotide binding	CTP4
-Cre10.g442550			Chloroplast			
-Cre10.g462600				GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS15
-Cre10.g423750	GMM:18.8.1	Co-factor and vitamine metabolism.ubiquinone.hexaprenyldihydroxybenzoate methyltransferase	Chloroplast			COQ3
-Cre10.g443150						
-Cre10.g424550			Mitochondrion			
-Cre10.g455551			Chloroplast			
-Cre10.g428050			Mitochondrion			
-Cre10.g421850						
-Cre10.g441300	GMM:33.99;GMM:27.3.3	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"		GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre10.g444400						
-Cre10.g445371						
-Cre10.g428664						DIC6
-Cre10.g440700			Secretory pathway			
-Cre10.g461895						
-Cre10.g424250						FAP90
-Cre10.g431700						
-Cre10.g457000	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN65
-Cre10.g432750						
-Cre10.g444183			Secretory pathway			
-Cre10.g452700						
-Cre10.g421550	GMM:27.3.28	RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre10.g429017			Mitochondrion			
-Cre10.g436250			Secretory pathway			
-Cre10.g459600	GMM:27.3.13	"RNA.regulation of transcription.CCAAT box binding factor family, DR1"				
-Cre10.g458450	GMM:21.2.2;GMM:21.2	redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione		GO:0055114;GO:0006979;GO:0004602	oxidation-reduction process;response to oxidative stress;glutathione peroxidase activity	GPX5
-Cre10.g423500	GMM:19.21	tetrapyrrole synthesis.heme oxygenase	Chloroplast	GO:0055114;GO:0006788;GO:0004392	oxidation-reduction process;heme oxidation;heme oxygenase (decyclizing) activity	HMO1
-Cre10.g426616			Mitochondrion			
-Cre10.g435900			Mitochondrion			
-Cre10.g437601			Mitochondrion			
-Cre10.g417426			Mitochondrion			
-Cre10.g444216						
-Cre10.g450200						
-Cre10.g460600	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN53
-Cre10.g421700	GMM:11.5.2	lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)	Chloroplast	GO:0055114;GO:0051287;GO:0046168;GO:0016616;GO:0009331;GO:0006072;GO:0005975;GO:0004367	"oxidation-reduction process;NAD binding;glycerol-3-phosphate catabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;glycerol-3-phosphate dehydrogenase complex;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity"	GPD4
-Cre10.g436200			Mitochondrion			
-Cre10.g421300						
-Cre10.g444600			Mitochondrion			
-Cre10.g465650	GMM:33.99	development.unspecified		GO:0005515	protein binding	
-Cre10.g442850	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0006265;GO:0005694;GO:0003917;GO:0003916;GO:0003677	DNA topological change;chromosome;DNA topoisomerase type I activity;DNA topoisomerase activity;DNA binding	TOP1A
-Cre10.g434500	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g438150						
-Cre10.g450626			Chloroplast			
-Cre10.g465150						
-Cre10.g451350						
-Cre10.g432770						
-Cre10.g454500			Mitochondrion			
-Cre10.g446800	GMM:16.8.2	secondary metabolism.flavonoids.chalcones				
-Cre10.g446950			Mitochondrion	GO:0005515	protein binding	
-Cre10.g451250	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre10.g433750	GMM:27.1.3.1;GMM:27.1	RNA.processing.3' end processing.PAP;RNA.processing		GO:0043631;GO:0016779;GO:0005634;GO:0004652;GO:0003723	RNA polyadenylation;nucleotidyltransferase activity;nucleus;polynucleotide adenylyltransferase activity;RNA binding	PAP1
-Cre10.g444750			Mitochondrion			
-Cre10.g445323			Secretory pathway			
-Cre10.g438600						
-Cre10.g433250	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	XUV4
-Cre10.g447800				GO:0003723	RNA binding	
-Cre10.g465726						
-Cre10.g464200			Secretory pathway			
-Cre10.g447200						
-Cre10.g452550	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Mitochondrion			HOP1
-Cre10.g422100						
-Cre10.g443450			Secretory pathway			
-Cre10.g462150			Chloroplast			
-Cre10.g440350				GO:0006950;GO:0005516	response to stress;calmodulin binding	
-Cre10.g456500						
-Cre10.g441100			Secretory pathway	GO:0042765;GO:0016255	GPI-anchor transamidase complex;attachment of GPI anchor to protein	PIGT
-Cre10.g451200						
-Cre10.g444250	GMM:34.99;GMM:29.3.4.99;GMM:28.99	transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified				
-Cre10.g442000						
-Cre10.g464300			Mitochondrion			
-Cre10.g464900	GMM:11.9.3	lipid metabolism.lipid degradation.lysophospholipases				
-Cre10.g447767	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion			AOF2
-Cre10.g425450			Mitochondrion			AOF5
-Cre10.g445700	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g432000	GMM:29.5.11.4.6;GMM:28.2;GMM:20.2.5	protein.degradation.ubiquitin.E3.DCX;DNA.repair;stress.abiotic.light		GO:0006281;GO:0005634;GO:0003676	DNA repair;nucleus;nucleic acid binding	DDB1
-Cre10.g422000	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008033;GO:0004809;GO:0003723	tRNA processing;tRNA (guanine-N2-)-methyltransferase activity;RNA binding	
-Cre10.g423900				GO:0003677	DNA binding	
-Cre10.g421350	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP25
-Cre10.g431350			Chloroplast			TGL16
-Cre10.g440850	GMM:21.2.2;GMM:21.2	redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione	Chloroplast	GO:0055114;GO:0016491;GO:0016209;GO:0006979;GO:0004602	oxidation-reduction process;oxidoreductase activity;antioxidant activity;response to oxidative stress;glutathione peroxidase activity	GPX4
-Cre10.g449050			Mitochondrion			
-Cre10.g452600						
-Cre10.g425200	GMM:29.4	protein.postranslational modification		GO:0055114;GO:0030328;GO:0016670;GO:0001735	"oxidation-reduction process;prenylcysteine catabolic process;oxidoreductase activity, acting on a sulfur group of donors, oxygen as acceptor;prenylcysteine oxidase activity"	
-Cre10.g455000						
-Cre10.g435300	GMM:29.5.4	protein.degradation.aspartate protease		GO:0008270;GO:0006508;GO:0004177	zinc ion binding;proteolysis;aminopeptidase activity	AAP1
-Cre10.g464776						
-Cre10.g432550				GO:0008076;GO:0006813;GO:0005249	voltage-gated potassium channel complex;potassium ion transport;voltage-gated potassium channel activity	KCN2
-Cre10.g438750						
-Cre10.g463650						
-Cre10.g439500			Secretory pathway			
-Cre10.g425850						
-Cre10.g465250	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP11
-Cre10.g440000			Chloroplast			RAA8
-Cre10.g419450	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre10.g466400						
-Cre10.g418450			Secretory pathway			
-Cre10.g435950			Secretory pathway			OPR47
-Cre10.g450350						IFT25
-Cre10.g429050	GMM:28.2	DNA.repair		GO:0006289;GO:0006281;GO:0005634;GO:0004519;GO:0004518;GO:0003697	nucleotide-excision repair;DNA repair;nucleus;endonuclease activity;nuclease activity;single-stranded DNA binding	
-Cre10.g430100	GMM:26.2;GMM:10.3.2	misc.UDP glucosyl and glucoronyl transferases;cell wall.hemicellulose synthesis.glucuronoxylan	Secretory pathway			ELG22
-Cre10.g420561	GMM:29.5.5	protein.degradation.serine protease				
-Cre10.g426800			Secretory pathway	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
-Cre10.g420500				GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity	
-Cre10.g433400				GO:0006850;GO:0005743	mitochondrial pyruvate transport;mitochondrial inner membrane	
-Cre10.g420100	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ35
-Cre10.g418750						
-Cre10.g462550						
-Cre10.g420200			Secretory pathway			PHC55
-Cre10.g434967						
-Cre10.g434550			Secretory pathway			
-Cre10.g429550				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS16
-Cre10.g442400				GO:0005634	nucleus	
-Cre10.g466600			Chloroplast			
-Cre10.g423200	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre10.g446750						
-Cre10.g461575			Mitochondrion			
-Cre10.g427300	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP2
-Cre10.g426700	GMM:26.1	misc.misc2	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A4
-Cre10.g439150	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0016887;GO:0005524	ATPase activity;ATP binding	RPT5
-Cre10.g443100			Chloroplast			
-Cre10.g434726			Chloroplast			
-Cre10.g458300						
-Cre10.g445952			Secretory pathway			
-Cre10.g449501			Mitochondrion			
-Cre10.g444900	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	MFT4
-Cre10.g448200	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	ARL9
-Cre10.g455650	GMM:13.1.3.4.12;GMM:13.1.3.4	amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase;amino acid metabolism.synthesis.aspartate family.methionine				
-Cre10.g455231						CSR4
-Cre10.g425000	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g461851			Mitochondrion			
-Cre10.g433900	GMM:29.5.11.4.1;GMM:29.4.1.59	protein.degradation.ubiquitin.E3.HECT;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX	Mitochondrion	GO:0006464;GO:0005515;GO:0004842;GO:0004719	cellular protein modification process;protein binding;ubiquitin-protein transferase activity;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	
-Cre10.g453900	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0005515;GO:0003755;GO:0000413	protein folding;protein binding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN71
-Cre10.g434001			Chloroplast			
-Cre10.g463150	GMM:13.2.6.3;GMM:13.2.4.1;GMM:13.2.3.5;GMM:11.9.4.14	amino acid metabolism.degradation.aromatic aa.tryptophan;amino acid metabolism.degradation.branched chain group.shared;amino acid metabolism.degradation.aspartate family.lysine;lipid metabolism.lipid degradation.beta-oxidation.enoyl isomerase		GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre10.g447550			Chloroplast			
-Cre10.g432800	GMM:29.2.1.2.1.31	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.SA		GO:0015935;GO:0006412;GO:0005840;GO:0005622;GO:0003735	small ribosomal subunit;translation;ribosome;intracellular;structural constituent of ribosome	RPSA
-Cre10.g420650	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	protein binding	
-Cre10.g426050	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation		GO:0008236;GO:0006508;GO:0005515	serine-type peptidase activity;proteolysis;protein binding	TSP1
-Cre10.g460850			Chloroplast			
-Cre10.g442450			Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre10.g457700	GMM:4.1.16;GMM:31.6.1.6.3;GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4	glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);cell.motility.eukaryotes.central pair.C1;signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g463300			Secretory pathway			
-Cre10.g441500						
-Cre10.g437800			Mitochondrion	GO:0006810;GO:0005215	transport;transporter activity	
-Cre10.g455950	GMM:31.6.1.10;GMM:11.8	"cell.motility.eukaryotes.flagellar associated proteins;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016491	oxidoreductase activity	FAP407
-Cre10.g431400	GMM:27.1.19	RNA.processing.ribonucleases				TRZ1
-Cre10.g466900						
-Cre10.g434900	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0055114;GO:0050660;GO:0016491;GO:0003824	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;catalytic activity	
-Cre10.g459650			Mitochondrion			
-Cre10.g433476						
-Cre10.g461250	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	
-Cre10.g426550						
-Cre10.g418050						
-Cre10.g457262			Secretory pathway			
-Cre10.g461200						
-Cre10.g443300	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CNK5
-Cre10.g453000						
-Cre10.g454850			Mitochondrion	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre10.g448100			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
-Cre10.g443750						
-Cre10.g419750	GMM:27.2	RNA.transcription		GO:0046983;GO:0006351;GO:0003899	"protein dimerization activity;transcription, DNA-templated;DNA-directed RNA polymerase activity"	RPB3
-Cre10.g420750	GMM:29.2.1.2.2.30	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L30		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL30
-Cre10.g457550	GMM:34.99	transport.misc				ATG18
-Cre10.g449600	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Mitochondrion			SPR1
-Cre10.g428550	GMM:25.3	C1-metabolism.dihydropteridine diphosphokinase	Mitochondrion	GO:0042558;GO:0009396;GO:0003848	pteridine-containing compound metabolic process;folic acid-containing compound biosynthetic process;2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity	
-Cre10.g462850			Secretory pathway	GO:0016021;GO:0015700;GO:0015105	integral component of membrane;arsenite transport;arsenite transmembrane transporter activity	
-Cre10.g437500	GMM:29.3.2	protein.targeting.mitochondria		GO:0030150;GO:0005742	protein import into mitochondrial matrix;mitochondrial outer membrane translocase complex	TOM7
-Cre10.g436050	GMM:21.6	redox.dismutases and catalases	Chloroplast	GO:0055114;GO:0046872;GO:0006801;GO:0004784	oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity	FSD1
-Cre10.g456900	GMM:29.5.3;GMM:23.3	protein.degradation.cysteine protease;nucleotide metabolism.salvage	Mitochondrion			
-Cre10.g430600			Chloroplast			
-Cre10.g458800			Secretory pathway			SRR31
-Cre10.g424300	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN16-1
-Cre10.g466250	GMM:29.2.2.3.4	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins		GO:0032040;GO:0006364;GO:0005515	small-subunit processome;rRNA processing;protein binding	PRP20
-Cre10.g430450	GMM:18.5.1;GMM:1.2	Co-factor and vitamine metabolism.folate and vitamine K.folate;PS.photorespiration	Chloroplast	GO:0016742;GO:0009058;GO:0008864;GO:0006189	"hydroxymethyl-, formyl- and related transferase activity;biosynthetic process;formyltetrahydrofolate deformylase activity;'de novo' IMP biosynthetic process"	
-Cre10.g450750			Secretory pathway			
-Cre10.g449800			Mitochondrion			
-Cre10.g436600	GMM:33.99	development.unspecified	Chloroplast	GO:0005525;GO:0003924	GTP binding;GTPase activity	
-Cre10.g418976						
-Cre10.g460350	GMM:3.3;GMM:26.5	minor CHO metabolism.sugar alcohols;misc.acyl transferases	Secretory pathway	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	PGA4
-Cre10.g446350	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	CGLD14
-Cre10.g460150	GMM:20.2.3	stress.abiotic.drought/salt		GO:0016020	membrane	ERM9
-Cre10.g435450	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	CPL2
-Cre10.g448500				GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre10.g440600						
-Cre10.g436900	GMM:29.3.2	protein.targeting.mitochondria				TAM41
-Cre10.g457228						
-Cre10.g456200	GMM:29.2.1.2.1.24	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S24		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS24
-Cre10.g451950	GMM:13.1.5.2.2;GMM:13.1.1.3.1;GMM:1.2.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.glycine transaminase;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine aminotransferase;PS.photorespiration.aminotransferases peroxisomal	Mitochondrion	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	AAT1
-Cre10.g436350	GMM:13.1.6.1.5	amino acid metabolism.synthesis.aromatic aa.chorismate.shikimate kinase	Chloroplast			SHKF1
-Cre10.g424150	GMM:27.2	RNA.transcription		GO:0006367;GO:0005672	transcription initiation from RNA polymerase II promoter;transcription factor TFIIA complex	TF2A4
-Cre10.g464037						
-Cre10.g425300	GMM:13.1.3.1	amino acid metabolism.synthesis.aspartate family.asparagine	Secretory pathway	GO:0006529;GO:0004066	asparagine biosynthetic process;asparagine synthase (glutamine-hydrolyzing) activity	
-Cre10.g432650				GO:0016787;GO:0000290	hydrolase activity;deadenylation-dependent decapping of nuclear-transcribed mRNA	
-Cre10.g435750	GMM:30.2.7;GMM:30.2.25;GMM:30.2.13;GMM:29.4	signalling.receptor kinases.leucine rich repeat VII;signalling.receptor kinases.wall associated kinase;signalling.receptor kinases.leucine rich repeat XIII;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g433000	GMM:29.1.14;GMM:29.1	protein.aa activation.glycine-tRNA ligase;protein.aa activation	Chloroplast	GO:0006426;GO:0005737;GO:0005524;GO:0004820;GO:0000166	glycyl-tRNA aminoacylation;cytoplasm;ATP binding;glycine-tRNA ligase activity;nucleotide binding	TSG2
-Cre10.g453728			Mitochondrion			
-Cre10.g443550	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672;GO:0003824	protein phosphorylation;protein kinase activity;catalytic activity	
-Cre10.g437900						
-Cre10.g458216						
-Cre10.g419650			Chloroplast			
-Cre10.g420000						
-Cre10.g432100			Chloroplast			
-Cre10.g417741						
-Cre10.g466175			Mitochondrion			
-Cre10.g429000	GMM:29.5.11.3	protein.degradation.ubiquitin.E2	Chloroplast			
-Cre10.g460050	GMM:19.40;GMM:19.4	tetrapyrrole synthesis.regulation;tetrapyrrole synthesis.ALA dehydratase	Chloroplast			FLU
-Cre10.g454300	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre10.g422300	GMM:21.5	redox.peroxiredoxin	Chloroplast	GO:0016491	oxidoreductase activity	PRX6
-Cre10.g418550						
-Cre10.g445201						
-Cre10.g454200			Chloroplast			
-Cre10.g430850						
-Cre10.g437050			Mitochondrion	GO:0006461;GO:0005739	protein complex assembly;mitochondrion	ATP11
-Cre10.g434450	GMM:9.1.2;GMM:11.8	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;lipid metabolism.exotics (steroids, squalene etc)"	Mitochondrion			NUOA9
-Cre10.g419550			Secretory pathway	GO:0004112	cyclic-nucleotide phosphodiesterase activity	
-Cre10.g430000			Chloroplast			
-Cre10.g447100			Mitochondrion	GO:0005759	mitochondrial matrix	
-Cre10.g463355			Chloroplast			
-Cre10.g444317						
-Cre10.g437850	GMM:27.4;GMM:27.1.1	RNA.RNA binding;RNA.processing.splicing		GO:0045292;GO:0005846;GO:0003676;GO:0000339	"mRNA cis splicing, via spliceosome;nuclear cap binding complex;nucleic acid binding;RNA cap binding"	
-Cre10.g437201				GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre10.g444700	GMM:2.1.2.3	major CHO metabolism.synthesis.starch.starch branching	Chloroplast	GO:0043169;GO:0005975;GO:0004553;GO:0003824	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	SBE3
-Cre10.g452050	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA4
-Cre10.g429800	GMM:9.99;GMM:34.16;GMM:29.4.1	mitochondrial electron transport / ATP synthesis.unspecified;transport.ABC transporters and multidrug resistance systems;protein.postranslational modification.kinase				COQ8
-Cre10.g464500			Chloroplast	GO:0015035	protein disulfide oxidoreductase activity	PDO1
-Cre10.g433200	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	XUV3
-Cre10.g439600	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others				
-Cre10.g426900			Chloroplast	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
-Cre10.g445467			Chloroplast			
-Cre10.g425100	GMM:29.4	protein.postranslational modification		GO:0005515	protein binding	
-Cre10.g435200						
-Cre10.g428300			Chloroplast			
-Cre10.g466700	GMM:17.6.1;GMM:16.4.1	hormone metabolism.gibberelin.synthesis-degradation;secondary metabolism.N misc.alkaloid-like		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
-Cre10.g462400			Mitochondrion			
-Cre10.g446200			Secretory pathway			
-Cre10.g455150			Secretory pathway			
-Cre10.g438250						LAT2
-Cre10.g456700						EJC1
-Cre10.g424650			Mitochondrion			
-Cre10.g432450						
-Cre10.g450850				GO:0005515	protein binding	
-Cre10.g465350			Secretory pathway			
-Cre10.g437450						
-Cre10.g420550	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0008236;GO:0006508;GO:0005515	serine-type peptidase activity;proteolysis;protein binding	TSP4
-Cre10.g435000						
-Cre10.g439650	GMM:3.5;GMM:29.3.4.2	minor CHO metabolism.others;protein.targeting.secretory pathway.golgi		GO:0017119	Golgi transport complex	COG8
-Cre10.g462450						
-Cre10.g452450	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast			TIC110
-Cre10.g450400	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion			NUO5
-Cre10.g423800	GMM:28.2	DNA.repair	Secretory pathway	GO:0016817;GO:0006303;GO:0003677	"hydrolase activity, acting on acid anhydrides;double-strand break repair via nonhomologous end joining;DNA binding"	
-Cre10.g423250	GMM:8.2.9;GMM:8.1.9;GMM:6.3	TCA / organic transformation.other organic acid transformations.cyt MDH;TCA / organic transformation.TCA.malate DH;gluconeogenesis / glyoxylate cycle.malate dehydrogenase		GO:0055114;GO:0019752;GO:0016616;GO:0016491	"oxidation-reduction process;carboxylic acid metabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;oxidoreductase activity"	MDN2
-Cre10.g422550						
-Cre10.g441600			Chloroplast			OPR48
-Cre10.g441900			Chloroplast			FAP145
-Cre10.g437350	GMM:34.9;GMM:34.8	transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane	Mitochondrion			MCP12
-Cre10.g428678	GMM:30.1;GMM:3.1	signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family	Mitochondrion	GO:0050660;GO:0008033	flavin adenine dinucleotide binding;tRNA processing	GID1
-Cre10.g458100			Chloroplast			YEE1
-Cre10.g429250	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre10.g422876						
-Cre10.g464700			Chloroplast			
-Cre10.g421650	GMM:33.99	development.unspecified	Secretory pathway			
-Cre10.g456250			Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRX25
-Cre10.g422419			Mitochondrion			
-Cre10.g429880	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0003677	DNA binding	CGL156
-Cre10.g431200			Secretory pathway			
-Cre10.g452250			Mitochondrion			FAP41
-Cre10.g440050	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast	GO:0050662;GO:0003824	coenzyme binding;catalytic activity	CSP41A
-Cre10.g448150						
-Cre10.g419300			Secretory pathway			
-Cre10.g463968			Secretory pathway			
-Cre10.g436053						
-Cre10.g417950	GMM:33.99;GMM:29.2.2.3.4	development.unspecified;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins		GO:0006364;GO:0005515	rRNA processing;protein binding	
-Cre10.g467000	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B				IFT57
-Cre10.g425950	GMM:29.1.15	protein.aa activation.proline-tRNA ligase		GO:0002161	aminoacyl-tRNA editing activity	
-Cre10.g459850						
-Cre10.g455850	GMM:28.1	DNA.synthesis/chromatin structure		GO:0042555;GO:0006270;GO:0006260;GO:0005634;GO:0005524;GO:0003678;GO:0003677	MCM complex;DNA replication initiation;DNA replication;nucleus;ATP binding;DNA helicase activity;DNA binding	MCM7
-Cre10.g417576			Mitochondrion			
-Cre10.g441750						
-Cre10.g428433	GMM:28.2	DNA.repair		GO:0016799;GO:0008270;GO:0006289;GO:0006284;GO:0003906;GO:0003684	"hydrolase activity, hydrolyzing N-glycosyl compounds;zinc ion binding;nucleotide-excision repair;base-excision repair;DNA-(apurinic or apyrimidinic site) lyase activity;damaged DNA binding"	
-Cre10.g425750	GMM:34.99;GMM:29.5.2	transport.misc;protein.degradation.autophagy				
-Cre10.g434800			Chloroplast	GO:0005515	protein binding	
-Cre10.g460750			Chloroplast			
-Cre10.g465500						
-Cre10.g446600	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor	Chloroplast	GO:0015074;GO:0005515	DNA integration;protein binding	
-Cre10.g440150						
-Cre10.g442650	GMM:28.99	DNA.unspecified	Chloroplast	GO:0003676	nucleic acid binding	
-Cre10.g426450			Chloroplast			
-Cre10.g460300	GMM:4.1.12	glycolysis.cytosolic branch.phosphoglycerate mutase	Chloroplast			PGM2
-Cre10.g460650	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Secretory pathway	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN52
-Cre10.g429150	GMM:13.1.6.5.2	amino acid metabolism.synthesis.aromatic aa.tryptophan.anthranilate phosphoribosyltransferase	Secretory pathway	GO:0016757;GO:0008152	"transferase activity, transferring glycosyl groups;metabolic process"	PRT1
-Cre10.g463550	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre10.g447250			Mitochondrion			
-Cre10.g449901			Secretory pathway			
-Cre10.g457331	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				
-Cre10.g467100				GO:0042254;GO:0001522	ribosome biogenesis;pseudouridine synthesis	
-Cre10.g461450						
-Cre10.g445800			Chloroplast			
-Cre10.g466150			Secretory pathway	GO:0005515	protein binding	
-Cre10.g430750	GMM:27.3.26	RNA.regulation of transcription.MYB-related transcription factor family				
-Cre10.g420850			Secretory pathway			
-Cre10.g456400			Mitochondrion	GO:0017153;GO:0016020;GO:0006835	sodium:dicarboxylate symporter activity;membrane;dicarboxylic acid transport	DAT1
-Cre10.g459151			Secretory pathway			
-Cre10.g431500						
-Cre10.g447225						
-Cre10.g449400			Secretory pathway			
-Cre10.g438500	GMM:33.99	development.unspecified				FAP264
-Cre10.g454734	GMM:1.1.2.1;GMM:1.1.1.1	PS.lightreaction.photosystem I.LHC-I;PS.lightreaction.photosystem II.LHC-II	Chloroplast			LHCP2
-Cre10.g421050						
-Cre10.g433850	GMM:27.3.99	RNA.regulation of transcription.unclassified				
-Cre10.g447900						
-Cre10.g433950	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			CURTL2
-Cre10.g448950			Chloroplast			
-Cre10.g457150						
-Cre10.g448400			Mitochondrion			
-Cre10.g453600	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase		GO:0006629	lipid metabolic process	
-Cre10.g428950			Secretory pathway			
-Cre10.g451500				GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR28A
-Cre10.g459750						NUOA1
-Cre10.g440750	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure		GO:0006265;GO:0005524;GO:0003918;GO:0003677	DNA topological change;ATP binding;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA binding	TOP3
-Cre10.g440500						
-Cre10.g462050	GMM:30.2.8.2;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 2;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK20
-Cre10.g418300						
-Cre10.g418900	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre10.g427650						
-Cre10.g418200			Secretory pathway			
-Cre10.g426152	GMM:13.2.3.4.1	amino acid metabolism.degradation.aspartate family.methionine.methionine gamma-lyase		GO:0030170	pyridoxal phosphate binding	MGL1
-Cre10.g423400	GMM:27.3.12;GMM:12.4	RNA.regulation of transcription.C3H zinc finger family;N-metabolism.misc	Chloroplast	GO:0055114;GO:0050660;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing	
-Cre10.g461550			Mitochondrion			
-Cre04.g224450	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre04.g212100	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre04.g228700			Mitochondrion			
-Cre04.g229800						
-Cre04.g225200	GMM:33.99	development.unspecified	Mitochondrion			FAP311
-Cre04.g220387			Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP770A1
-Cre04.g231418			Chloroplast			
-Cre04.g213652	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway	GO:0003964	RNA-directed DNA polymerase activity	
-Cre04.g214433			Mitochondrion			
-Cre04.g213250	GMM:29.5	protein.degradation		GO:0006508	proteolysis	
-Cre04.g213152			Chloroplast			
-Cre04.g220750			Mitochondrion			
-Cre04.g218300	GMM:29.2.2.3.5	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases	Mitochondrion	GO:0005634	nucleus	
-Cre04.g223375						
-Cre04.g217975			Secretory pathway			
-Cre04.g226001			Mitochondrion			
-Cre04.g224947						
-Cre04.g223550			Chloroplast			
-Cre04.g214504			Mitochondrion	GO:0016020;GO:0005044	membrane;scavenger receptor activity	
-Cre04.g219851			Mitochondrion			
-Cre04.g217932	GMM:29.2.1.1.4.2	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL35
-Cre04.g226350	GMM:3.3	minor CHO metabolism.sugar alcohols	Chloroplast			CSB23
-Cre04.g217953	GMM:27.4	RNA.RNA binding	Mitochondrion	GO:0003676	nucleic acid binding	
-Cre04.g226500			Mitochondrion			
-Cre04.g223050	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Secretory pathway			CAH2
-Cre04.g227500			Mitochondrion	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR18
-Cre04.g232602	GMM:21.4;GMM:21.1	redox.glutaredoxins;redox.thioredoxin		GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	GRX4
-Cre04.g222100	GMM:28.1.3	DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0006366	transcription from RNA polymerase II promoter	
-Cre04.g219000	GMM:31.1;GMM:28.1	cell.organisation;DNA.synthesis/chromatin structure	Secretory pathway	GO:0005524	ATP binding	
-Cre04.g224750	GMM:31.4	cell.vesicle transport	Mitochondrion	GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	VAM1
-Cre04.g215800						
-Cre04.g217986						
-Cre04.g227450	GMM:34.8	transport.metabolite transporters at the envelope membrane				
-Cre04.g220600			Mitochondrion			
-Cre04.g212801						
-Cre04.g224800	GMM:31.4	cell.vesicle transport		GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	VAM4
-Cre04.g226811			Mitochondrion			
-Cre04.g225500			Chloroplast			
-Cre04.g217960						
-Cre04.g217903	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0004519;GO:0003676	endonuclease activity;nucleic acid binding	
-Cre04.g217925	GMM:26.16	misc.myrosinases-lectin-jacalin				
-Cre04.g217100						
-Cre04.g215400	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems	Chloroplast			AKC3
-Cre04.g222200						
-Cre04.g223700						
-Cre04.g228208	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre04.g211900	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG37
-Cre04.g229163						
-Cre04.g233003			Mitochondrion			
-Cre04.g226650			Secretory pathway			
-Cre04.g214351			Chloroplast			
-Cre04.g233302				GO:0008716;GO:0005737;GO:0005515	D-alanine-D-alanine ligase activity;cytoplasm;protein binding	
-Cre04.g215702			Mitochondrion			
-Cre04.g217943			Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre04.g211800	GMM:29.2.1.2.2.23	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L23		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL23
-Cre04.g228900	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	protein binding	
-Cre04.g217910	GMM:26.23	misc.rhodanese	Chloroplast			
-Cre04.g229472						CSB25
-Cre04.g218700	GMM:29.2.3	protein.synthesis.initiation	Chloroplast	GO:0006413;GO:0003743;GO:0003723	translational initiation;translation initiation factor activity;RNA binding	INFA
-Cre04.g217987			Mitochondrion			
-Cre04.g219600	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre04.g212401	GMM:29.5.11.3;GMM:29.5.11	protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin	Mitochondrion			
-Cre04.g216650			Chloroplast			
-Cre04.g229750			Chloroplast			
-Cre04.g229536			Secretory pathway			
-Cre04.g221550			Chloroplast			
-Cre04.g229776			Mitochondrion			
-Cre04.g216600	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	RPT6
-Cre04.g221100			Chloroplast			
-Cre04.g228100						
-Cre04.g220350	GMM:34.1	transport.p- and v-ATPases		GO:0033179;GO:0015991;GO:0015078	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVA3
-Cre04.g218250	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified				FAP313
-Cre04.g231320						
-Cre04.g213985						
-Cre04.g229398						
-Cre04.g218500			Secretory pathway			
-Cre04.g227800			Secretory pathway			
-Cre04.g217931	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH14
-Cre04.g225450			Chloroplast			FDX10
-Cre04.g224500	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre04.g224700	GMM:34.3;GMM:34.13	transport.amino acids;transport.peptides and oligopeptides		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NRT1.1
-Cre04.g227350	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0006355;GO:0005634	"regulation of transcription, DNA-templated;nucleus"	CCR4
-Cre04.g224867			Mitochondrion			
-Cre04.g218750				GO:0019825	oxygen binding	THB4
-Cre04.g226700			Secretory pathway			
-Cre04.g218950						
-Cre04.g214503	GMM:29.2.1.2.1.12	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S12		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	
-Cre04.g218350						
-Cre04.g222150			Mitochondrion			
-Cre04.g219800	GMM:16.1	secondary metabolism.isoprenoids	Mitochondrion			
-Cre04.g219576						
-Cre04.g213150	GMM:34.99;GMM:15.1	transport.misc;metal handling.acquisition	Secretory pathway	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
-Cre04.g226450	GMM:27.1	RNA.processing		GO:0005515	protein binding	PRP17
-Cre04.g212800						
-Cre04.g226926						
-Cre04.g215750	GMM:31.2	cell.division		GO:0005515	protein binding	
-Cre04.g214750	GMM:31.4	cell.vesicle transport		GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	VMP7
-Cre04.g219925						
-Cre04.g217979			Chloroplast			
-Cre04.g217904			Mitochondrion			
-Cre04.g214550			Secretory pathway			
-Cre04.g214150	GMM:18.2	Co-factor and vitamine metabolism.thiamine	Chloroplast			THI4
-Cre04.g217989						
-Cre04.g215350	GMM:33.99	development.unspecified		GO:0005515	protein binding	
-Cre04.g223750				GO:0005515;GO:0003677	protein binding;DNA binding	
-Cre04.g221301	GMM:31.3	cell.cycle				CYCD5
-Cre04.g219950	GMM:29.4.1.59	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX	Mitochondrion			
-Cre04.g212700	GMM:33.99;GMM:27.3.28	development.unspecified;RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Chloroplast	GO:0005634;GO:0003677	nucleus;DNA binding	
-Cre04.g225650			Secretory pathway	GO:0004869	cysteine-type endopeptidase inhibitor activity	
-Cre04.g224826						
-Cre04.g225950	GMM:27.3.42	RNA.regulation of transcription.bromodomain proteins	Chloroplast	GO:0005515	protein binding	
-Cre04.g215700	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins				
-Cre04.g221250			Chloroplast			
-Cre04.g222550						
-Cre04.g217050						
-Cre04.g218000			Mitochondrion			
-Cre04.g232202			Secretory pathway			
-Cre04.g217909			Chloroplast			
-Cre04.g220550						
-Cre04.g229494				GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre04.g228250	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB24
-Cre04.g211650			Chloroplast			
-Cre04.g217917						
-Cre04.g230242						MOT40
-Cre04.g222500						
-Cre04.g217974	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
-Cre04.g222450						
-Cre04.g217929	GMM:14.5;GMM:12.1.1	S-assimilation.sulfite oxidase;N-metabolism.nitrate metabolism.NR	Mitochondrion	GO:0055114;GO:0042128;GO:0030151;GO:0016491	oxidation-reduction process;nitrate assimilation;molybdenum ion binding;oxidoreductase activity	
-Cre04.g229700	GMM:4.1.1	glycolysis.cytosolic branch.UGPase		GO:0070569;GO:0008152	uridylyltransferase activity;metabolic process	UGP1
-Cre04.g230536	GMM:29.4	protein.postranslational modification		GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR25
-Cre04.g225100						
-Cre04.g229374			Secretory pathway			
-Cre04.g218450	GMM:17.1.2	hormone metabolism.abscisic acid.signal transduction				
-Cre04.g223150			Mitochondrion			NCL1
-Cre04.g220787			Chloroplast			
-Cre04.g228050			Secretory pathway			
-Cre04.g231222	GMM:29.6.2.2;GMM:1.3.13	protein.folding.chaperones and co-chaperones.HSP60s;PS.calvin cycle.rubisco interacting	Chloroplast.Stroma;Chloroplast	GO:0016020;GO:0005524;GO:0005044	membrane;ATP binding;scavenger receptor activity	CPN60A
-Cre04.g225750			Chloroplast	GO:0016791;GO:0009117;GO:0000287	phosphatase activity;nucleotide metabolic process;magnesium ion binding	
-Cre04.g229948	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family		GO:0055114;GO:0050660;GO:0046872;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;metal ion binding;tRNA dihydrouridine synthase activity;tRNA processing	
-Cre04.g224883			Mitochondrion			
-Cre04.g212850						
-Cre04.g224550			Secretory pathway			
-Cre04.g229250						
-Cre04.g230634	GMM:29.4	protein.postranslational modification	Secretory pathway			
-Cre04.g217937	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast			
-Cre04.g232402			Secretory pathway			
-Cre04.g217965			Secretory pathway			
-Cre04.g213400	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB7
-Cre04.g216000						
-Cre04.g214500	GMM:8.1.4	TCA / organic transformation.TCA.IDH	Mitochondrion	GO:0055114;GO:0016616;GO:0006102;GO:0004450	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;isocitrate metabolic process;isocitrate dehydrogenase (NADP+) activity"	IDH3
-Cre04.g223300	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				CCP1
-Cre04.g211600	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification				SNF1
-Cre04.g228450	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Chloroplast			CPL10
-Cre04.g216050	GMM:30.2.7;GMM:30.2.11;GMM:30.2.10	signalling.receptor kinases.leucine rich repeat VII;signalling.receptor kinases.leucine rich repeat XI;signalling.receptor kinases.leucine rich repeat X	Secretory pathway	GO:0005515	protein binding	
-Cre04.g225700			Chloroplast			
-Cre04.g217907						
-Cre04.g220461						
-Cre04.g213050						
-Cre04.g227550						
-Cre04.g222650	GMM:31.6.1.11	cell.motility.eukaryotes.other				
-Cre04.g227750			Mitochondrion	GO:0006281;GO:0000077;GO:0000014	DNA repair;DNA damage checkpoint;single-stranded DNA endodeoxyribonuclease activity	
-Cre04.g219700				GO:0034464	BBSome	BBS9
-Cre04.g229350				GO:0032259;GO:0008168	methylation;methyltransferase activity	
-Cre04.g217400			Mitochondrion			
-Cre04.g219796						
-Cre04.g227200			Secretory pathway			
-Cre04.g224150	GMM:11.5.1	lipid metabolism.glycerol metabolism.glycerol kinase		GO:0016773;GO:0005975	"phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process"	
-Cre04.g216902	GMM:33.99;GMM:30.5	development.unspecified;signalling.G-proteins		GO:0005515	protein binding	DAW1
-Cre04.g221700	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Mitochondrion	GO:0019646;GO:0016020;GO:0015002	aerobic electron transport chain;membrane;heme-copper terminal oxidase activity	COX3
-Cre04.g228750			Chloroplast			
-Cre04.g217951						LCI33
-Cre04.g217952	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Chloroplast			
-Cre04.g223250	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Mitochondrion			LCIE
-Cre04.g218900	GMM:31.1;GMM:28.1	cell.organisation;DNA.synthesis/chromatin structure		GO:0005524	ATP binding	
-Cre04.g217921	GMM:31.4	cell.vesicle transport		GO:0030126;GO:0016192;GO:0006886;GO:0005737;GO:0005198	COPI vesicle coat;vesicle-mediated transport;intracellular protein transport;cytoplasm;structural molecule activity	COPB1
-Cre04.g217946			Chloroplast	GO:0016787	hydrolase activity	
-Cre04.g220100						
-Cre04.g216700			Secretory pathway			PHO5
-Cre04.g217981			Chloroplast			
-Cre04.g214200						
-Cre04.g216203						FAP339
-Cre04.g213873						
-Cre04.g217912	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Secretory pathway	GO:0016811	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides"	
-Cre04.g217967				GO:0046983	protein dimerization activity	
-Cre04.g231908						
-Cre04.g212150	GMM:27.1	RNA.processing				
-Cre04.g213750			Mitochondrion			
-Cre04.g214800				GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	VMP6
-Cre04.g217961						
-Cre04.g217000						
-Cre04.g219150	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway			
-Cre04.g218200	GMM:29.4	protein.postranslational modification				
-Cre04.g225350			Mitochondrion	GO:0005515	protein binding	
-Cre04.g217750	GMM:33.99;GMM:27.3.67	development.unspecified;RNA.regulation of transcription.putative transcription regulator	Mitochondrion	GO:0005515	protein binding	
-Cre04.g219250	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B				IFT52
-Cre04.g225050	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast			
-Cre04.g217988						
-Cre04.g226138						
-Cre04.g215250						FAP26
-Cre04.g221750						
-Cre04.g215100			Chloroplast			
-Cre04.g221950			Secretory pathway			
-Cre04.g223500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre04.g219650			Secretory pathway			
-Cre04.g223000						HLM9
-Cre04.g217968			Mitochondrion			
-Cre04.g217200						
-Cre04.g224200						
-Cre04.g217949						AXL6
-Cre04.g217918			Chloroplast			
-Cre04.g220424			Secretory pathway			
-Cre04.g220500						
-Cre04.g217984			Mitochondrion			
-Cre04.g218600						
-Cre04.g217300						
-Cre04.g230732	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0008146	sulfotransferase activity	CSR2
-Cre04.g216976						
-Cre04.g226301						
-Cre04.g216200				GO:0046983	protein dimerization activity	
-Cre04.g213900			Chloroplast			
-Cre04.g218400	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre04.g213100			Chloroplast			CGLD7
-Cre04.g225600			Chloroplast	GO:0005759	mitochondrial matrix	CGL104
-Cre04.g229226						
-Cre04.g212900						
-Cre04.g217450				GO:0043666;GO:0009966;GO:0004864	regulation of phosphoprotein phosphatase activity;regulation of signal transduction;protein phosphatase inhibitor activity	
-Cre04.g229518						
-Cre04.g226550	GMM:14.1	S-assimilation.APS		GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS11
-Cre04.g217959	GMM:13.1.5.1.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoserine phosphatase		GO:0006564;GO:0004647	L-serine biosynthetic process;phosphoserine phosphatase activity	PSP1
-Cre04.g221650	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0006265;GO:0005694;GO:0005524;GO:0003918;GO:0003916;GO:0003677	DNA topological change;chromosome;ATP binding;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA topoisomerase activity;DNA binding	TOP4
-Cre04.g228500						
-Cre04.g213450	GMM:27.3.71	RNA.regulation of transcription.SNF7		GO:0007034	vacuolar transport	VPS2A
-Cre04.g222600			Mitochondrion			PHC46
-Cre04.g226600	GMM:14.1	S-assimilation.APS	Chloroplast	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS12
-Cre04.g221400						
-Cre04.g223800				GO:0008124;GO:0006729	4-alpha-hydroxytetrahydrobiopterin dehydratase activity;tetrahydrobiopterin biosynthetic process	
-Cre04.g225400	GMM:3.3	minor CHO metabolism.sugar alcohols	Chloroplast			
-Cre04.g228150	GMM:16.7;GMM:16.1;GMM:11.1.11;GMM:11.1.10	secondary metabolism.wax;secondary metabolism.isoprenoids;lipid metabolism.FA synthesis and FA elongation.fatty acid elongase;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase		GO:0016747;GO:0016020;GO:0008610;GO:0006633	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;lipid biosynthetic process;fatty acid biosynthetic process"	FAE1
-Cre04.g211599			Secretory pathway			
-Cre04.g228000				GO:0005096	GTPase activator activity	
-Cre04.g229050						
-Cre04.g213002						
-Cre04.g212200	GMM:27.1	RNA.processing				
-Cre04.g217650			Secretory pathway			
-Cre04.g214000			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	
-Cre04.g226900						
-Cre04.g225301			Chloroplast			
-Cre04.g214505						
-Cre04.g211700	GMM:31.1	cell.organisation	Mitochondrion	GO:0005515	protein binding	
-Cre04.g215200			Secretory pathway			
-Cre04.g217966						
-Cre04.g229100				GO:0035299;GO:0005524	inositol pentakisphosphate 2-kinase activity;ATP binding	
-Cre04.g220700	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0007049;GO:0006468;GO:0005524;GO:0004672	cell cycle;protein phosphorylation;ATP binding;protein kinase activity	ALK2
-Cre04.g217980						
-Cre04.g232006						
-Cre04.g224899						
-Cre04.g226114			Mitochondrion			
-Cre04.g217908	GMM:31.1;GMM:29.4.1	cell.organisation;protein.postranslational modification.kinase				FAP79
-Cre04.g233102						
-Cre04.g213800	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0046872	metal ion binding	
-Cre04.g217962						LCI12
-Cre04.g217800	GMM:33.99	development.unspecified	Mitochondrion			
-Cre04.g217922	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre04.g214801			Chloroplast			
-Cre04.g221900				GO:0005515	protein binding	
-Cre04.g232902						
-Cre04.g213904	GMM:29.4;GMM:27.3.99	protein.postranslational modification;RNA.regulation of transcription.unclassified		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre04.g218650	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Mitochondrion			UCP3
-Cre04.g217150						
-Cre04.g217911	GMM:27.1	RNA.processing				
-Cre04.g231810	GMM:3.5	minor CHO metabolism.others				
-Cre04.g215650				GO:0030915;GO:0006281;GO:0005634	Smc5-Smc6 complex;DNA repair;nucleus	
-Cre04.g226126			Mitochondrion			
-Cre04.g218150	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre04.g227700			Secretory pathway			
-Cre04.g219787	GMM:28.1;GMM:18.5.2.7	DNA.synthesis/chromatin structure;Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.DHNA phytyltransferase	Mitochondrion	GO:0016021;GO:0004659	integral component of membrane;prenyltransferase activity	
-Cre04.g214209						
-Cre04.g217969						
-Cre04.g224667						
-Cre04.g217915	GMM:34.4;GMM:1.5.3	transport.nitrate;PS.carbon concentrating mechanism.algal	Mitochondrion	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NAR1.3
-Cre04.g230830			Secretory pathway	GO:0005515	protein binding	
-Cre04.g225800						CPLD71
-Cre04.g220050				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre04.g211950						ELG32
-Cre04.g212000			Chloroplast			
-Cre04.g217500						URN3
-Cre04.g223540			Chloroplast			CSB22
-Cre04.g217920			Secretory pathway			
-Cre04.g222850						
-Cre04.g226200	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre04.g233202			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre04.g224250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP147
-Cre04.g215952			Chloroplast			
-Cre04.g222300	GMM:27.1	RNA.processing		GO:0006396;GO:0003723	RNA processing;RNA binding	
-Cre04.g212300	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006470;GO:0005515;GO:0004722;GO:0004721;GO:0003824	protein dephosphorylation;protein binding;protein serine/threonine phosphatase activity;phosphoprotein phosphatase activity;catalytic activity	
-Cre04.g219200						CPL19
-Cre04.g231026	GMM:29.3.3;GMM:28.1	protein.targeting.chloroplast;DNA.synthesis/chromatin structure	Chloroplast	GO:0080085;GO:0045038;GO:0009507;GO:0009416	"signal recognition particle, chloroplast targeting;protein import into chloroplast thylakoid membrane;chloroplast;response to light stimulus"	SRP43
-Cre04.g217240			Mitochondrion			
-Cre04.g229000				GO:0035299;GO:0005524	inositol pentakisphosphate 2-kinase activity;ATP binding	IPK1
-Cre04.g216250						FAP276
-Cre04.g212250			Secretory pathway			
-Cre04.g217957						
-Cre04.g220850	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre04.g226226						
-Cre04.g223200	GMM:31.3;GMM:31.2	cell.cycle;cell.division		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre04.g216102			Mitochondrion			
-Cre04.g227950						
-Cre04.g217971						
-Cre04.g228350	GMM:13.2.4.1	amino acid metabolism.degradation.branched chain group.shared	Mitochondrion	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	DLA4
-Cre04.g214600			Secretory pathway			
-Cre04.g212500			Chloroplast			CGL42
-Cre04.g217939	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase				FAD5C
-Cre04.g219350	GMM:29.9	protein.co-chaperones	Chloroplast			
-Cre04.g221350						
-Cre04.g224915						
-Cre04.g217700				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre04.g224683				GO:0016459;GO:0005524;GO:0003774	myosin complex;ATP binding;motor activity	
-Cre04.g212550			Chloroplast	GO:0006464	cellular protein modification process	TTL7
-Cre04.g215150	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase	Chloroplast			SSS1
-Cre04.g222750	GMM:34.9;GMM:1.5.3	transport.metabolite transporters at the mitochondrial membrane;PS.carbon concentrating mechanism.algal				CCP2
-Cre04.g230928	GMM:21.1.2;GMM:21.1	redox.thioredoxin.QSOX;redox.thioredoxin		GO:0055114;GO:0045454;GO:0016972	oxidation-reduction process;cell redox homeostasis;thiol oxidase activity	
-Cre04.g214900			Mitochondrion			
-Cre04.g220200	GMM:34.15	transport.potassium	Chloroplast	GO:0055085;GO:0016021;GO:0015299;GO:0006813;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;potassium ion transport;cation transport	
-Cre04.g230144	GMM:11.8.1.2	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids.serine C-palmitoyltransferase"	Secretory pathway	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	SPT1
-Cre04.g216774			Chloroplast			
-Cre04.g220576			Mitochondrion			
-Cre04.g217948			Mitochondrion;Chloroplast			
-Cre04.g214612			Chloroplast			
-Cre04.g227650			Secretory pathway			
-Cre04.g217958						
-Cre04.g227000	GMM:28.2	DNA.repair		GO:0032300;GO:0030983;GO:0006298;GO:0005524	mismatch repair complex;mismatched DNA binding;mismatch repair;ATP binding	MLH2
-Cre04.g227251	GMM:31.6.1.11	cell.motility.eukaryotes.other				
-Cre04.g228550			Mitochondrion			
-Cre04.g231124	GMM:27.4	RNA.RNA binding		GO:0046872;GO:0005515	metal ion binding;protein binding	
-Cre04.g214097	GMM:33.99	development.unspecified	Secretory pathway			
-Cre04.g220800						
-Cre04.g215050	GMM:16.1.4.6;GMM:16.1.4	secondary metabolism.isoprenoids.carotenoids.carotenoid beta ring hydroxylase;secondary metabolism.isoprenoids.carotenoids	Chloroplast	GO:0055114;GO:0016491;GO:0006633;GO:0005506	oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding	CHYB
-Cre04.g216875						
-Cre04.g213905	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre04.g217916	GMM:34.15	transport.potassium				
-Cre04.g217905			Mitochondrion			
-Cre04.g224931						
-Cre04.g220900			Secretory pathway			
-Cre04.g223850	GMM:28.1	DNA.synthesis/chromatin structure		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL23
-Cre04.g218100	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP25
-Cre04.g223100	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Secretory pathway			CAH1
-Cre04.g215600	GMM:13.1.3.4.13	amino acid metabolism.synthesis.aspartate family.methionine.methionine S-methyltransferase		GO:0008757	S-adenosylmethionine-dependent methyltransferase activity	
-Cre04.g229850						
-Cre04.g217850	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre04.g227526			Mitochondrion			
-Cre04.g224850						
-Cre04.g224300						CGL84
-Cre04.g215950	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN57
-Cre04.g232303						
-Cre04.g228950						
-Cre04.g214690	GMM:3.6	minor CHO metabolism.callose		GO:0006396;GO:0004526;GO:0001682	RNA processing;ribonuclease P activity;tRNA 5'-leader removal	
-Cre04.g216300			Chloroplast			
-Cre04.g217935	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				
-Cre04.g217919			Mitochondrion			
-Cre04.g213950				GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR23
-Cre04.g217906						
-Cre04.g217550	GMM:29.2.3	protein.synthesis.initiation		GO:0031369;GO:0006413;GO:0005852;GO:0005515;GO:0003743	translation initiation factor binding;translational initiation;eukaryotic translation initiation factor 3 complex;protein binding;translation initiation factor activity	EIF3C
-Cre04.g220768			Mitochondrion			
-Cre04.g221500			Mitochondrion			
-Cre04.g212350			Chloroplast			
-Cre04.g221850			Chloroplast			
-Cre04.g213000	GMM:34.99;GMM:15.1	transport.misc;metal handling.acquisition	Mitochondrion;Secretory pathway	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
-Cre04.g217923	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre04.g223600						
-Cre04.g228400	GMM:27.3.32	RNA.regulation of transcription.WRKY domain transcription factor family	Mitochondrion	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	WRK1
-Cre04.g217990						
-Cre04.g212450						
-Cre04.g225776						
-Cre04.g215550						
-Cre04.g229026			Mitochondrion			
-Cre04.g216950	GMM:11.1.3	lipid metabolism.FA synthesis and FA elongation.ketoacyl ACP synthase	Chloroplast	GO:0016747;GO:0008610;GO:0008152	"transferase activity, transferring acyl groups other than amino-acyl groups;lipid biosynthetic process;metabolic process"	
-Cre04.g217913	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Secretory pathway			MCP19
-Cre04.g216100	GMM:24.2;GMM:13.2.3.2	biodegradation of xenobiotics.lactoylglutathione lyase;amino acid metabolism.degradation.aspartate family.threonine	Chloroplast			
-Cre04.g226800						
-Cre04.g220150			Mitochondrion			
-Cre04.g217945	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase	Chloroplast	GO:0006629	lipid metabolic process	
-Cre04.g229550			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR15
-Cre04.g228600			Mitochondrion			
-Cre04.g217220			Mitochondrion			
-Cre04.g217942						
-Cre04.g227301						
-Cre04.g214545	GMM:34.15	transport.potassium	Chloroplast			
-Cre04.g221000				GO:0016787;GO:0008152	hydrolase activity;metabolic process	
-Cre04.g214502	GMM:10.1.2	cell wall.precursor synthesis.UGE		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	UGE
-Cre04.g217938			Chloroplast	GO:0005515	protein binding	
-Cre04.g217940	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre04.g222250			Mitochondrion			
-Cre04.g225176			Mitochondrion			
-Cre04.g226950						
-Cre04.g227600	GMM:30.2.8.2;GMM:30.2.11;GMM:17.3.2.1	signalling.receptor kinases.leucine rich repeat VIII.type 2;signalling.receptor kinases.leucine rich repeat XI;hormone metabolism.brassinosteroid.signal transduction.BRI	Chloroplast	GO:0005515	protein binding	
-Cre04.g213650	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre04.g226150	GMM:34.3	transport.amino acids		GO:0055085;GO:0016020;GO:0015171;GO:0006810;GO:0003333	transmembrane transport;membrane;amino acid transmembrane transporter activity;transport;amino acid transmembrane transport	AOC1
-Cre04.g224650	GMM:29.3.1	protein.targeting.nucleus		GO:0005515	protein binding	FAP296
-Cre04.g218550						
-Cre04.g217928	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre04.g227050			Secretory pathway			
-Cre04.g231712	GMM:1.5	PS.carbon concentrating mechanism	Chloroplast			
-Cre04.g217976						
-Cre04.g223876	GMM:29.2.3	protein.synthesis.initiation				
-Cre04.g214850						
-Cre04.g217350	GMM:34.15	transport.potassium		GO:0071805;GO:0016020;GO:0015079	potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity	KUP4
-Cre04.g218050	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RWP8
-Cre04.g222000	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	protein binding	
-Cre04.g211850	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELIP5
-Cre04.g227900	GMM:31.6.1.6.6	cell.motility.eukaryotes.central pair.C1-C2 bridge		GO:0005515	protein binding	PF20
-Cre04.g217991			Secretory pathway	GO:0005515	protein binding	
-Cre04.g213300			Secretory pathway			
-Cre04.g219300						
-Cre04.g232702			Mitochondrion			
-Cre04.g216840						
-Cre04.g216737						
-Cre04.g220300				GO:0005515	protein binding	
-Cre04.g213350			Mitochondrion			
-Cre04.g215850	GMM:29.3.1	protein.targeting.nucleus		GO:0008565;GO:0006606;GO:0005737;GO:0005634;GO:0005515	protein transporter activity;protein import into nucleus;cytoplasm;nucleus;protein binding	IPA1
-Cre04.g224600				GO:0046983	protein dimerization activity	
-Cre04.g219750	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure		GO:0043140;GO:0006281;GO:0006260;GO:0005524;GO:0003676	ATP-dependent 3'-5' DNA helicase activity;DNA repair;DNA replication;ATP binding;nucleic acid binding	HEL22
-Cre04.g226250						
-Cre04.g216550						
-Cre04.g224350			Secretory pathway			MOT55
-Cre04.g232802	GMM:29.4;GMM:17.1.3;GMM:17.1.2	protein.postranslational modification;hormone metabolism.abscisic acid.induced-regulated-responsive-activated;hormone metabolism.abscisic acid.signal transduction		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre04.g225150			Secretory pathway			
-Cre04.g228650	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
-Cre04.g218800			Mitochondrion	GO:0019825	oxygen binding	THB3
-Cre04.g215000	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase		GO:0006629	lipid metabolic process	BKT1
-Cre04.g219100			Secretory pathway			
-Cre04.g230340						FAP206
-Cre04.g221800			Mitochondrion			
-Cre04.g220825			Mitochondrion			
-Cre04.g218526			Secretory pathway			
-Cre04.g218850	GMM:29.2.2.50	protein.synthesis.ribosome biogenesis.BRIX				
-Cre04.g212400						UBC15
-Cre04.g221150			Secretory pathway			
-Cre04.g220633			Mitochondrion			
-Cre04.g216350	GMM:3.5	minor CHO metabolism.others				CPLD3
-Cre04.g217924	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase	Chloroplast			
-Cre04.g225900	GMM:31.4	cell.vesicle transport		GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	VAMP72
-Cre04.g214100	GMM:19.32	tetrapyrrole synthesis.sirohydrochlorin ferrochelatase	Chloroplast	GO:0016852;GO:0009236	sirohydrochlorin cobaltochelatase activity;cobalamin biosynthetic process	SIRB
-Cre04.g214657	GMM:34.15	transport.potassium	Mitochondrion	GO:0071805;GO:0016020;GO:0015079	potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity	
-Cre04.g222950						SUR2
-Cre04.g228925			Mitochondrion			
-Cre04.g228625	GMM:27.3.41	RNA.regulation of transcription.B3 transcription factor family	Secretory pathway			
-Cre04.g217978						
-Cre04.g217934				GO:0009116	nucleoside metabolic process	
-Cre04.g217950	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre04.g217941	GMM:29.4	protein.postranslational modification				
-Cre04.g228800	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre04.g212650				GO:0003924	GTPase activity	
-Cre04.g222402						
-Cre04.g219550						
-Cre04.g214501	GMM:27.1	RNA.processing	Chloroplast	GO:0006402;GO:0004654;GO:0003723	mRNA catabolic process;polyribonucleotide nucleotidyltransferase activity;RNA binding	PNP1
-Cre04.g214350	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0008408;GO:0006260;GO:0003887;GO:0003677;GO:0001882;GO:0000166	3'-5' exonuclease activity;DNA replication;DNA-directed DNA polymerase activity;DNA binding;nucleoside binding;nucleotide binding	POLA1
-Cre04.g215500						
-Cre04.g226100						
-Cre04.g219450				GO:0055114;GO:0051537;GO:0016491	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"	
-Cre04.g229422						
-Cre04.g217985						
-Cre04.g217956						
-Cre04.g214700			Secretory pathway			
-Cre04.g220000	GMM:29.4.1.59;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre04.g229650			Mitochondrion;Chloroplast	GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH10
-Cre04.g213751						
-Cre04.g220076	GMM:29.4	protein.postranslational modification				
-Cre04.g217900			Chloroplast			
-Cre04.g217977						CSU3
-Cre04.g219725						
-Cre04.g217973						
-Cre04.g231614	GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XI		GO:0005515	protein binding	
-Cre04.g217963			Secretory pathway			
-Cre04.g216811			Mitochondrion			
-Cre04.g221450			Mitochondrion			PHC54
-Cre04.g216826			Mitochondrion			
-Cre04.g220950			Mitochondrion			
-Cre04.g226750			Secretory pathway			
-Cre04.g223400						
-Cre04.g216150						
-Cre04.g226400	GMM:28.1.3	DNA.synthesis/chromatin structure.histone				
-Cre04.g223900				GO:0030173;GO:0006891	integral component of Golgi membrane;intra-Golgi vesicle-mediated transport	
-Cre04.g217930						
-Cre04.g232502			Secretory pathway			
-Cre04.g219050	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR10
-Cre04.g217936						
-Cre04.g217982			Mitochondrion			
-Cre04.g217927	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
-Cre04.g227568			Chloroplast			
-Cre04.g223350	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG62
-Cre04.g224400	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre04.g219400	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre04.g213251	GMM:29.5.31;GMM:29.5	protein.degradation.alanine protease;protein.degradation	Mitochondrion	GO:0006508	proteolysis	
-Cre04.g214050				GO:0016021;GO:0015689;GO:0015098	integral component of membrane;molybdate ion transport;molybdate ion transmembrane transporter activity	SULTR4
-Cre04.g226850	GMM:29.5.4	protein.degradation.aspartate protease	Secretory pathway	GO:0006629;GO:0006508;GO:0004190	lipid metabolic process;proteolysis;aspartic-type endopeptidase activity	ASP1
-Cre04.g222050			Mitochondrion			
-Cre04.g217964			Mitochondrion			
-Cre04.g229300	GMM:1.3.13	PS.calvin cycle.rubisco interacting	Chloroplast	GO:0005524	ATP binding	RCA1
-Cre04.g227850			Secretory pathway			
-Cre04.g226050	GMM:14.1	S-assimilation.APS		GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS10
-Cre04.g228675			Secretory pathway			
-Cre04.g225250						
-Cre04.g226176			Chloroplast			
-Cre04.g213500			Chloroplast	GO:0008176;GO:0006400	tRNA (guanine-N7-)-methyltransferase activity;tRNA modification	
-Cre04.g232104	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM3
-Cre04.g223650			Secretory pathway			FAP30
-Cre04.g217926						
-Cre04.g225000						
-Cre04.g223225	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification				
-Cre04.g219900			Chloroplast			
-Cre04.g230438	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre04.g217970						
-Cre04.g219500	GMM:29.9	protein.co-chaperones	Mitochondrion			DNJ30
-Cre04.g225850	GMM:31.4	cell.vesicle transport	Secretory pathway	GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	VAM3
-Cre04.g220250	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre04.g222800	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Mitochondrion			LCID
-Cre04.g215001						
-Cre04.g214250	GMM:33.99;GMM:32;GMM:29.2.3;GMM:27.3.36	"development.unspecified;micro RNA, natural antisense etc;protein.synthesis.initiation;RNA.regulation of transcription.argonaute transcription factor family"		GO:0005515;GO:0003676	protein binding;nucleic acid binding	AGO2
-Cre04.g221200	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				CGL109
-Cre04.g221770				GO:0005515	protein binding	
-Cre04.g217914				GO:0005515	protein binding	FAP57
-Cre04.g212600			Chloroplast			
-Cre04.g213761	GMM:11.9.4.5	lipid metabolism.lipid degradation.beta-oxidation.acyl-CoA thioesterase	Chloroplast			
-Cre04.g221600						
-Cre04.g224002				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
-Cre04.g217947						
-Cre04.g215450	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre04.g228850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre04.g217933						
-Cre04.g230046			Secretory pathway			
-Cre04.g211750			Chloroplast	GO:0016021	integral component of membrane	
-Cre04.g217955	GMM:13.1.5.1.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoserine phosphatase		GO:0006564;GO:0004647	L-serine biosynthetic process;phosphoserine phosphatase activity	
-Cre04.g222350						
-Cre04.g217954	GMM:34.21;GMM:30.3;GMM:3.3	transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols	Chloroplast	GO:0046872;GO:0000166	metal ion binding;nucleotide binding	
-Cre04.g217944	GMM:29.4	protein.postranslational modification				
-Cre04.g214769			Mitochondrion			
-Cre04.g217972						
-Cre04.g228300	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre04.g224100	GMM:23.2	nucleotide metabolism.degradation				URN2
-Cre04.g212050	GMM:27.3.48	RNA.regulation of transcription.FHA transcription factor	Secretory pathway	GO:0005515	protein binding	
-Cre04.g222700	GMM:34.16;GMM:29.2.4;GMM:29.2.2.1	transport.ABC transporters and multidrug resistance systems;protein.synthesis.elongation;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre04.g216204				GO:0046983	protein dimerization activity	
-Cre04.g216850	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007017;GO:0005874;GO:0003924	microtubule-based process;microtubule;GTPase activity	TUA2
-Cre04.g216500						
-Cre04.g214650	GMM:3.6	minor CHO metabolism.callose		GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	GSL1
-Cre04.g229450			Secretory pathway			
-Cre04.g221050	GMM:30.9;GMM:20.1;GMM:2.1	signalling.lipids;stress.biotic;major CHO metabolism.synthesis				
-Cre04.g223450						
-Cre04.g217983						
-Cre04.g231516	GMM:35.1.3	not assigned.no ontology.armadillo/beta-catenin repeat family protein	Mitochondrion	GO:0005515	protein binding	
-Cre04.g214321			Secretory pathway			
-Cre04.g227400	GMM:15.1	metal handling.acquisition	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	FRE1
-Cre04.g215900	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins	Secretory pathway			
-Cre21.g752947						
-Cre21.g753297			Chloroplast			
-Cre21.g752397						
-Cre21.g753097			Mitochondrion			
-Cre21.g752997				GO:0032775;GO:0009007;GO:0003677	DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding	
-Cre21.g752247						
-Cre21.g751947						
-Cre21.g752147			Chloroplast			
-Cre21.g752197			Chloroplast			
-Cre21.g752597			Secretory pathway			
-Cre21.g752847						
-Cre21.g752447						
-Cre21.g751897			Secretory pathway			
-Cre21.g752547			Secretory pathway			
-Cre21.g753147	GMM:20.2.3	stress.abiotic.drought/salt				
-Cre21.g752497						
-Cre21.g753247			Mitochondrion			
-Cre21.g752897			Mitochondrion			
-Cre21.g752647						
-Cre21.g753197			Mitochondrion			
-Cre21.g752797						
-Cre21.g752297			Secretory pathway			
-Cre21.g753047			Chloroplast			
-Cre21.g752347						
-Cre21.g751847			Secretory pathway			
-Cre21.g752697			Mitochondrion			
-Cre21.g752747			Chloroplast			
-Cre21.g752097						
-Cre21.g751997			Chloroplast			
-Cre21.g752047			Mitochondrion			
-Cre12.g511400	GMM:33.99;GMM:27.3	development.unspecified;RNA.regulation of transcription				PPR4
-Cre12.g526131				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g498950						
-Cre12.g497350						PPR13
-Cre12.g500850						
-Cre12.g544752						
-Cre12.g546300			Mitochondrion	GO:0019905	syntaxin binding	
-Cre12.g521450	GMM:29.5.5	protein.degradation.serine protease				CLPP2
-Cre12.g497652	GMM:26.11.1	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	
-Cre12.g505750	GMM:27.2	RNA.transcription		GO:0008270;GO:0006351;GO:0003899;GO:0003677;GO:0003676	"zinc ion binding;transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding;nucleic acid binding"	RPB9
-Cre12.g543303	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0008270;GO:0005634	zinc ion binding;nucleus	CGLD6
-Cre12.g554300	GMM:991.1	Mineral Nutrition.phosphatie				NSS6
-Cre12.g528200	GMM:28.1	DNA.synthesis/chromatin structure				
-Cre12.g513400	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis		GO:0052862;GO:0052861;GO:0016998	"glucan endo-1,4-beta-glucanase activity, C-3 substituted reducing group;glucan endo-1,3-beta-glucanase activity, C-3 substituted reducing group;cell wall macromolecule catabolic process"	EBG1
-Cre12.g542450	GMM:28.1;GMM:27.3.11;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.regulation of transcription.C2H2 zinc finger family;RNA.processing.RNA helicase	Chloroplast			
-Cre12.g526326			Chloroplast	GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g526883			Secretory pathway	GO:0008270	zinc ion binding	
-Cre12.g511650	GMM:31.4;GMM:20.2.5	cell.vesicle transport;stress.abiotic.light				
-Cre12.g507700						
-Cre12.g509050	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP3
-Cre12.g486850			Chloroplast			
-Cre12.g487850	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	CGL49
-Cre12.g559553						
-Cre12.g508750	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA2
-Cre12.g510800	GMM:19.10;GMM:19.1	tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase	Chloroplast	GO:0016851;GO:0015995;GO:0015979	magnesium chelatase activity;chlorophyll biosynthetic process;photosynthesis	CHLI2
-Cre12.g547450	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole				VPS9
-Cre12.g544327			Mitochondrion	GO:0008270;GO:0005515	zinc ion binding;protein binding	
-Cre12.g552350			Secretory pathway			
-Cre12.g560668	GMM:31.3;GMM:30.6;GMM:29.4	cell.cycle;signalling.MAP kinases;protein.postranslational modification				
-Cre12.g532550	GMM:29.2.1.2.2.513;GMM:29.2.1.2.2.0513	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L13A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L13A		GO:0015934;GO:0006412;GO:0005840;GO:0003735	large ribosomal subunit;translation;ribosome;structural constituent of ribosome	RPL13A
-Cre12.g538700			Chloroplast			CPLD62
-Cre12.g537300						
-Cre12.g516750	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g525400	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK15
-Cre12.g512950			Mitochondrion	GO:0015703;GO:0015109	chromate transport;chromate transmembrane transporter activity	CIT1
-Cre12.g494400	GMM:29.8;GMM:18.7	protein.assembly and cofactor ligation;Co-factor and vitamine metabolism.iron-sulphur clusters				MNP2
-Cre12.g556911	GMM:28.2	DNA.repair		GO:0030145;GO:0016787;GO:0006302;GO:0006259;GO:0005634;GO:0004527;GO:0004519	manganese ion binding;hydrolase activity;double-strand break repair;DNA metabolic process;nucleus;exonuclease activity;endonuclease activity	
-Cre12.g540927	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway	GO:0016887;GO:0006260;GO:0005524;GO:0003677	ATPase activity;DNA replication;ATP binding;DNA binding	
-Cre12.g510100	GMM:29.5.2	protein.degradation.autophagy	Mitochondrion			ATG4
-Cre12.g544450	GMM:34.16;GMM:31.6.1.10	transport.ABC transporters and multidrug resistance systems;cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			CSE20
-Cre12.g517600	GMM:30.2.18;GMM:29.4.1.59;GMM:29.4.1.57;GMM:29.4;GMM:20.1	signalling.receptor kinases.extensin;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification;stress.biotic				
-Cre12.g555100						
-Cre12.g517950			Mitochondrion			
-Cre12.g539200						
-Cre12.g525500	GMM:31.1	cell.organisation	Chloroplast	GO:0005815;GO:0000922;GO:0000226	microtubule organizing center;spindle pole;microtubule cytoskeleton organization	GCP2
-Cre12.g561601						
-Cre12.g500000						
-Cre12.g500100			Secretory pathway			
-Cre12.g492050						
-Cre12.g516700						
-Cre12.g517800	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	zinc ion binding	
-Cre12.g498550	GMM:19.11	tetrapyrrole synthesis.magnesium protoporphyrin IX methyltransferase	Chloroplast			CHLM
-Cre12.g544110						
-Cre12.g487750			Mitochondrion			
-Cre12.g538750	GMM:27.1	RNA.processing				LSM1
-Cre12.g537371			Secretory pathway			
-Cre12.g511700	GMM:16.1.2.8;GMM:16.1.1.10	secondary metabolism.isoprenoids.mevalonate pathway.geranyl diphosphate synthase;secondary metabolism.isoprenoids.non-mevalonate pathway.geranylgeranyl pyrophosphate synthase	Mitochondrion	GO:0008299	isoprenoid biosynthetic process	
-Cre12.g553252			Mitochondrion			
-Cre12.g495950						
-Cre12.g503000	GMM:34.98;GMM:34.9	transport.membrane system unknown;transport.metabolite transporters at the mitochondrial membrane		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	GPT3
-Cre12.g503450			Secretory pathway	GO:0005515	protein binding	
-Cre12.g551500	GMM:29.9	protein.co-chaperones	Cytosol			DNJ14
-Cre12.g542850	GMM:15.3	metal handling.regulation		GO:0055114;GO:0010309	oxidation-reduction process;acireductone dioxygenase [iron(II)-requiring] activity	ARD1
-Cre12.g523800						
-Cre12.g502100						
-Cre12.g553950			Secretory pathway			
-Cre12.g548702						
-Cre12.g520550	GMM:29.3.1	protein.targeting.nucleus		GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	TRN1
-Cre12.g550850	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP1
-Cre12.g558352						
-Cre12.g505400	GMM:19.99	tetrapyrrole synthesis.unspecified		GO:0016042;GO:0003847	lipid catabolic process;1-alkyl-2-acetylglycerophosphocholine esterase activity	
-Cre12.g519180	GMM:29.2.4	protein.synthesis.elongation	Chloroplast	GO:0006414;GO:0005622;GO:0003746;GO:0003676	translational elongation;intracellular;translation elongation factor activity;nucleic acid binding	EFT1a
-Cre12.g530200						
-Cre12.g492300	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I		GO:0055114;GO:0051536	oxidation-reduction process;iron-sulfur cluster binding	NUO10
-Cre12.g557450	GMM:28.2	DNA.repair	Mitochondrion			
-Cre12.g513300						CGL23
-Cre12.g516333			Chloroplast	GO:0003677	DNA binding	
-Cre12.g531100	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	PBA2
-Cre12.g506400						
-Cre12.g544802			Chloroplast			
-Cre12.g555350	GMM:31.4;GMM:29.3.4.1	cell.vesicle transport;protein.targeting.secretory pathway.ER	Secretory pathway	GO:0016021	integral component of membrane	RER1
-Cre12.g487601			Chloroplast			
-Cre12.g554100			Chloroplast			
-Cre12.g535550						
-Cre12.g549852	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre12.g488600	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0006810;GO:0005215	transport;transporter activity	
-Cre12.g536050	GMM:34.99;GMM:34.1;GMM:27.3.35	transport.misc;transport.p- and v-ATPases;RNA.regulation of transcription.bZIP transcription factor family		GO:0046872;GO:0016021;GO:0015914;GO:0005524;GO:0004012;GO:0000287;GO:0000166	metal ion binding;integral component of membrane;phospholipid transport;ATP binding;phospholipid-translocating ATPase activity;magnesium ion binding;nucleotide binding	ALA1
-Cre12.g508550	GMM:18.4.2	"Co-factor and vitamine metabolism.pantothenate.3-methyl-2-oxobutanoate hydroxymethyltransferase (KPHMT,PANB)"	Chloroplast	GO:0015940;GO:0003864	pantothenate biosynthetic process;3-methyl-2-oxobutanoate hydroxymethyltransferase activity	PAN2
-Cre12.g546450			Mitochondrion	GO:0043087	regulation of GTPase activity	
-Cre12.g535300						
-Cre12.g530500			Chloroplast			
-Cre12.g552150	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
-Cre12.g537150			Secretory pathway			
-Cre12.g519900	GMM:33.99	development.unspecified	Chloroplast	GO:0016874;GO:0009058;GO:0005524	ligase activity;biosynthetic process;ATP binding	
-Cre12.g553678			Chloroplast			
-Cre12.g486650						
-Cre12.g502350	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL50
-Cre12.g494450	GMM:29.2.1.1.1.1.16	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S16	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPS16
-Cre12.g504302						
-Cre12.g530934						
-Cre12.g546800			Mitochondrion			PHC53
-Cre12.g548250	GMM:27.3.48	RNA.regulation of transcription.FHA transcription factor		GO:0005515	protein binding	
-Cre12.g541550						
-Cre12.g537800	GMM:29.2.1.2.2.7	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7				RPL7
-Cre12.g514600			Chloroplast	GO:0016772;GO:0005524	"transferase activity, transferring phosphorus-containing groups;ATP binding"	
-Cre12.g513701	GMM:29.2.3;GMM:29.2.2.3.5;GMM:29.2.2.2.1;GMM:28.1	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;protein.synthesis.ribosome biogenesis.assembly factors.DExD-box helicases;DNA.synthesis/chromatin structure		GO:0016818;GO:0016787;GO:0005634;GO:0005524;GO:0003723;GO:0003677	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;hydrolase activity;nucleus;ATP binding;RNA binding;DNA binding"	
-Cre12.g533500			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre12.g509850	GMM:31.9	cell.eyespot				MLT1
-Cre12.g495850	GMM:26.8;GMM:26.22;GMM:11.1.4	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;misc.short chain dehydrogenase/reductase (SDR);lipid metabolism.FA synthesis and FA elongation.ACP oxoacyl reductase"	Mitochondrion			HBD1
-Cre12.g539202			Secretory pathway			
-Cre12.g518150						
-Cre12.g514200	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Chloroplast	GO:0055114;GO:0050660;GO:0016614	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity, acting on CH-OH group of donors"	
-Cre12.g523550						UMM11
-Cre12.g534250			Chloroplast			
-Cre12.g493400	GMM:31.2	cell.division		GO:0051276;GO:0005694;GO:0005524;GO:0005515	chromosome organization;chromosome;ATP binding;protein binding	SMC4
-Cre12.g518300						
-Cre12.g557928			Secretory pathway			
-Cre12.g531400	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Mitochondrion	GO:0090090;GO:0031513;GO:0005856;GO:0005515	negative regulation of canonical Wnt signaling pathway;nonmotile primary cilium;cytoskeleton;protein binding	NPHP4
-Cre12.g527450						CAM17
-Cre12.g526515						
-Cre12.g534750			Mitochondrion			
-Cre12.g539900	GMM:13.2.4.1	amino acid metabolism.degradation.branched chain group.shared	Mitochondrion	GO:0016624;GO:0008152	"oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor;metabolic process"	
-Cre12.g527500	GMM:33.99;GMM:27.3.55;GMM:20.2.2	development.unspecified;RNA.regulation of transcription.HDA;stress.abiotic.cold		GO:0005515	protein binding	
-Cre12.g559350	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
-Cre12.g501717						
-Cre12.g534450			Chloroplast	GO:0005515	protein binding	CGL86
-Cre12.g518350	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG18
-Cre12.g521900			Chloroplast			
-Cre12.g484750			Chloroplast	GO:0047746;GO:0015996	chlorophyllase activity;chlorophyll catabolic process	
-Cre12.g531550	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0003743	translational initiation;translation initiation factor activity	EIF5B3
-Cre12.g557050			Mitochondrion	GO:0016020	membrane	YGG2
-Cre12.g495550						FAP385
-Cre12.g489600			Chloroplast	GO:0003676	nucleic acid binding	
-Cre12.g533000	GMM:28.2	DNA.repair		GO:0006281;GO:0003904	DNA repair;deoxyribodipyrimidine photo-lyase activity	PHR1
-Cre12.g498000			Mitochondrion			
-Cre12.g536650						
-Cre12.g535650						
-Cre12.g523276			Secretory pathway			
-Cre12.g527750	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm				DLT2
-Cre12.g487350						CEP19
-Cre12.g545900	GMM:3.6	minor CHO metabolism.callose				
-Cre12.g484834						
-Cre12.g485900						
-Cre12.g502600			Secretory pathway	GO:0055085;GO:0016020;GO:0008324;GO:0006814;GO:0006813;GO:0005215	transmembrane transport;membrane;cation transmembrane transporter activity;sodium ion transport;potassium ion transport;transporter activity	SLT1
-Cre12.g532450	GMM:3.5;GMM:10.1.4	minor CHO metabolism.others;cell wall.precursor synthesis.UGD		GO:0055114;GO:0051287;GO:0016616;GO:0003979	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;UDP-glucose 6-dehydrogenase activity"	
-Cre12.g532000						
-Cre12.g560450						
-Cre12.g540480			Chloroplast			
-Cre12.g514700	GMM:28.2	DNA.repair				
-Cre12.g547950						
-Cre12.g492700			Mitochondrion			FAS1
-Cre12.g504900	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX	Chloroplast	GO:0005515	protein binding	
-Cre12.g507300	GMM:29.2.1.2.1.8	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S8				LCI30
-Cre12.g554600			Chloroplast			CGL146
-Cre12.g534300			Mitochondrion			
-Cre12.g512300	GMM:17.7.1.2	hormone metabolism.jasmonate.synthesis-degradation.lipoxygenase	Mitochondrion	GO:0055114;GO:0046872;GO:0016702	"oxidation-reduction process;metal ion binding;oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, incorporation of two atoms of oxygen"	
-Cre12.g517100	GMM:16.8.2	secondary metabolism.flavonoids.chalcones	Chloroplast	GO:0016872	intramolecular lyase activity	
-Cre12.g509400	GMM:23.5.4	nucleotide metabolism.deoxynucleotide metabolism.ribonucleoside-diphosphate reductase		GO:0055114;GO:0009186	oxidation-reduction process;deoxyribonucleoside diphosphate metabolic process	RIR2L
-Cre12.g500300						
-Cre12.g513800						
-Cre12.g528614	GMM:3.3	minor CHO metabolism.sugar alcohols				tnp31
-Cre12.g547400						
-Cre12.g501850	GMM:3.5;GMM:2.2.1.3.2	minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.cell wall	Chloroplast			FFT1
-Cre12.g552900	GMM:33.99;GMM:30.5	development.unspecified;signalling.G-proteins	Mitochondrion	GO:0005515	protein binding	DOI1
-Cre12.g560000			Chloroplast			
-Cre12.g489750	GMM:33.99;GMM:31.6.1.10	development.unspecified;cell.motility.eukaryotes.flagellar associated proteins		GO:0005515	protein binding	FAP52
-Cre12.g528350	GMM:31.2;GMM:20.2.5	cell.division;stress.abiotic.light	Chloroplast			
-Cre12.g556350	GMM:3.5;GMM:10.6.3	minor CHO metabolism.others;cell wall.degradation.pectate lyases and polygalacturonases		GO:0005975;GO:0004650	carbohydrate metabolic process;polygalacturonase activity	
-Cre12.g556200			Secretory pathway			
-Cre12.g553702						
-Cre12.g495175			Chloroplast			
-Cre12.g543700	GMM:28.1.1	DNA.synthesis/chromatin structure.retrotransposon/transposase				tnp32
-Cre12.g534350	GMM:24.3;GMM:11.9.4.9	biodegradation of xenobiotics.3-hydroxybutyryl-CoA dehydrogenase;lipid metabolism.lipid degradation.beta-oxidation.multifunctional		GO:0055114;GO:0016491;GO:0006631;GO:0004616;GO:0003857	oxidation-reduction process;oxidoreductase activity;fatty acid metabolic process;phosphogluconate dehydrogenase (decarboxylating) activity;3-hydroxyacyl-CoA dehydrogenase activity	HCD2
-Cre12.g502900						
-Cre12.g509500			Mitochondrion	GO:0005509	calcium ion binding	
-Cre12.g490500			Chloroplast			CGL78
-Cre12.g524750						
-Cre12.g551552			Secretory pathway			PHC60
-Cre12.g545450			Mitochondrion			
-Cre12.g515350	GMM:26.16	misc.myrosinases-lectin-jacalin	Secretory pathway	GO:0030246;GO:0007155	carbohydrate binding;cell adhesion	
-Cre12.g526220				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g552600			Secretory pathway			
-Cre12.g525300	GMM:30.2.8.2;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 2;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g522050	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			
-Cre12.g541211	GMM:34.4;GMM:1.5.3	transport.nitrate;PS.carbon concentrating mechanism.algal				
-Cre12.g560500						
-Cre12.g506750	GMM:1.5	PS.carbon concentrating mechanism	Mitochondrion			PHC41
-Cre12.g515050	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515;GO:0003677	protein binding;DNA binding	
-Cre12.g524450	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006470;GO:0004725	protein dephosphorylation;protein tyrosine phosphatase activity	PTP3
-Cre12.g491150	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole	Secretory pathway			VPS55
-Cre12.g522600	GMM:9.6	mitochondrial electron transport / ATP synthesis.cytochrome c		GO:0020037;GO:0009055	heme binding;electron carrier activity	CYC2
-Cre12.g522750			Mitochondrion			
-Cre12.g493250	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	FAP358
-Cre12.g489950						
-Cre12.g507950			Mitochondrion	GO:0016021;GO:0016020	integral component of membrane;membrane	CGL98
-Cre12.g491250						
-Cre12.g544900				GO:0005515	protein binding	
-Cre12.g529751			Secretory pathway			
-Cre12.g486207			Mitochondrion			
-Cre12.g529301				GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre12.g545101	GMM:23.2	nucleotide metabolism.degradation		GO:0055114;GO:0051536;GO:0046872;GO:0016491;GO:0009055	oxidation-reduction process;iron-sulfur cluster binding;metal ion binding;oxidoreductase activity;electron carrier activity	XDH1
-Cre12.g524200	GMM:29.3.4.1	protein.targeting.secretory pathway.ER		GO:0016021;GO:0008233;GO:0006465;GO:0005787	integral component of membrane;peptidase activity;signal peptide processing;signal peptidase complex	SPC25
-Cre12.g494950			Chloroplast			
-Cre12.g525750	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g494200	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Chloroplast			
-Cre12.g487100	GMM:29.1.10	protein.aa activation.methionine-tRNA ligase	Chloroplast	GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	TSM2
-Cre12.g526000				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g550152			Secretory pathway			
-Cre12.g486000			Secretory pathway			
-Cre12.g540700			Chloroplast			
-Cre12.g543450	GMM:29.5.11.4.3.4	protein.degradation.ubiquitin.E3.SCF.RBX		GO:0008270	zinc ion binding	RBX1
-Cre12.g500350	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	
-Cre12.g485400			Secretory pathway			
-Cre12.g505000						
-Cre12.g499800						
-Cre12.g511902						
-Cre12.g507800			Secretory pathway			
-Cre12.g538350	GMM:33.99	development.unspecified	Secretory pathway	GO:0016226;GO:0008199	iron-sulfur cluster assembly;ferric iron binding	FTX1
-Cre12.g492851	GMM:26.3;GMM:10.6.2	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Mitochondrion	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	EBM7
-Cre12.g490850	GMM:29.3.1	protein.targeting.nucleus		GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	
-Cre12.g549650			Mitochondrion			
-Cre12.g561150			Secretory pathway			
-Cre12.g559800	GMM:26.9	misc.glutathione S transferases				
-Cre12.g507200			Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre12.g519000	GMM:13.1.6.5.3	amino acid metabolism.synthesis.aromatic aa.tryptophan.phosphoribosyanthranilate isomerase	Chloroplast	GO:0006568;GO:0004640	tryptophan metabolic process;phosphoribosylanthranilate isomerase activity	ASB2
-Cre12.g496650	GMM:11.8.1;GMM:11.2.2	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids;lipid metabolism.FA desaturation.a hydroxylase"	Mitochondrion	GO:0055114;GO:0016491;GO:0006633;GO:0005506	oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding	
-Cre12.g551001			Chloroplast			
-Cre12.g519401			Secretory pathway			
-Cre12.g486750			Chloroplast			
-Cre12.g497101			Mitochondrion			
-Cre12.g522550	GMM:31.6.1.3.1.1;GMM:31.1	cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.kinesin-2 subunits;cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	FLA8
-Cre12.g545300						
-Cre12.g483600						
-Cre12.g559600						
-Cre12.g495959			Chloroplast			
-Cre12.g485300			Secretory pathway			CSV6
-Cre12.g498800						
-Cre12.g527150			Mitochondrion			
-Cre12.g541904			Secretory pathway	GO:0003677	DNA binding	
-Cre12.g539203						
-Cre12.g552450						
-Cre12.g501600			Chloroplast	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre12.g504650	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR15
-Cre12.g490600						
-Cre12.g494750	GMM:29.2.1.1.1.1.20	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S20	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723	translation;ribosome;intracellular;structural constituent of ribosome;RNA binding	PRPS20
-Cre12.g546600			Secretory pathway			FEA2
-Cre12.g555950	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC11
-Cre12.g516100				GO:0016021;GO:0005789	integral component of membrane;endoplasmic reticulum membrane	
-Cre12.g553250	GMM:4.2.4;GMM:4.1.4	glycolysis.plastid branch.phosphofructokinase (PFK);glycolysis.cytosolic branch.phosphofructokinase (PFK)	Chloroplast	GO:0006096;GO:0003872	glycolytic process;6-phosphofructokinase activity	PFK2
-Cre12.g533600						
-Cre12.g537450	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Mitochondrion			COX13
-Cre12.g535476			Mitochondrion			
-Cre12.g498350						SRE1
-Cre12.g513500	GMM:28.2	DNA.repair				XAB2
-Cre12.g532650						
-Cre12.g549250			Chloroplast	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
-Cre12.g525600			Chloroplast			
-Cre12.g540900			Secretory pathway			
-Cre12.g487050			Secretory pathway			
-Cre12.g544112						
-Cre12.g558300	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g538850	GMM:31.6.1.11	cell.motility.eukaryotes.other				
-Cre12.g544150	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN20-2
-Cre12.g535201			Mitochondrion			
-Cre12.g497700	GMM:26.11.1;GMM:26.11;GMM:16.8.3	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SNE8
-Cre12.g501351			Secretory pathway			
-Cre12.g542950			Mitochondrion	GO:0005643	nuclear pore	CGL137
-Cre12.g551050						
-Cre12.g523832						
-Cre12.g513000				GO:0016020;GO:0008378;GO:0006486	membrane;galactosyltransferase activity;protein glycosylation	GTR17
-Cre12.g509750	GMM:29.5;GMM:29.3.2	protein.degradation;protein.targeting.mitochondria	Mitochondrion			MPPA2
-Cre12.g510950						
-Cre12.g524900			Secretory pathway			
-Cre12.g505700	GMM:27.2	RNA.transcription		GO:0006352;GO:0003677	"DNA-templated transcription, initiation;DNA binding"	
-Cre12.g545700						
-Cre12.g503600	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	protein binding	
-Cre12.g531900			Chloroplast	GO:0010181	FMN binding	FLVA
-Cre12.g510900	GMM:29.6.2.5;GMM:29.5.5	protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease	Mitochondrion	GO:0070011;GO:0016887;GO:0009376;GO:0005737;GO:0005524	"peptidase activity, acting on L-amino acid peptides;ATPase activity;HslUV protease complex;cytoplasm;ATP binding"	HSLU1
-Cre12.g484450			Mitochondrion			
-Cre12.g549300	GMM:34.19.2;GMM:34.19.1	transport.major intrinsic proteins.TIP;transport.major intrinsic proteins.PIP		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	MIP1
-Cre12.g485500	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0070008;GO:0008236;GO:0006508;GO:0004252	serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity	
-Cre12.g486100	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			CLPP5
-Cre12.g533650			Mitochondrion	GO:0016021	integral component of membrane	
-Cre12.g541777	GMM:35.1.13;GMM:27.3.69	not assigned.no ontology.SET domain-containing protein;RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	CGL95
-Cre12.g486400	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast			
-Cre12.g517700	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				NYC1
-Cre12.g549700				GO:0003723	RNA binding	
-Cre12.g507600						
-Cre12.g527000	GMM:30.3;GMM:29.4.1;GMM:29.4	signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005509;GO:0004672	protein phosphorylation;calcium ion binding;protein kinase activity	
-Cre12.g508250	GMM:29.5.11	protein.degradation.ubiquitin		GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
-Cre12.g485800	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0006508;GO:0005524;GO:0004222	proteolysis;ATP binding;metalloendopeptidase activity	FTSH1
-Cre12.g484200	GMM:16.1.1.10	secondary metabolism.isoprenoids.non-mevalonate pathway.geranylgeranyl pyrophosphate synthase	Chloroplast	GO:0008299	isoprenoid biosynthetic process	GGPS
-Cre12.g530400	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	IRT1
-Cre12.g523650	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	HLM19
-Cre12.g551650			Secretory pathway			
-Cre12.g488450	GMM:10.5.2	cell wall.cell wall proteins.proline rich proteins	Secretory pathway			VSP3
-Cre12.g546250	GMM:29.3.4.1	protein.targeting.secretory pathway.ER		GO:0048500;GO:0045900;GO:0008312;GO:0006614	signal recognition particle;negative regulation of translational elongation;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane	SRP9
-Cre12.g490200	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g529000			Chloroplast			
-Cre12.g550553			Mitochondrion			
-Cre12.g561550	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	CDS1
-Cre12.g514750	GMM:8.1.2	TCA / organic transformation.TCA.CS	Mitochondrion	GO:0046912	"transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer"	CIS1
-Cre12.g537050						
-Cre12.g550600				GO:0016021	integral component of membrane	
-Cre12.g555378						
-Cre12.g511952						
-Cre12.g534650	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre12.g545619	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
-Cre12.g544700	GMM:35.1.12;GMM:27.4	not assigned.no ontology.pumilio/Puf RNA-binding domain-containing protein;RNA.RNA binding		GO:0003723	RNA binding	PUF3
-Cre12.g489450			Chloroplast			
-Cre12.g541450						
-Cre12.g500950	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			CLPP4
-Cre12.g487652			Chloroplast			
-Cre12.g512788			Chloroplast			
-Cre12.g500750						CSB45
-Cre12.g554700	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	SEC22
-Cre12.g513200	GMM:4.1.13	glycolysis.cytosolic branch.enolase		GO:0006096;GO:0004634;GO:0000287;GO:0000015	glycolytic process;phosphopyruvate hydratase activity;magnesium ion binding;phosphopyruvate hydratase complex	PGH1
-Cre12.g537700			Mitochondrion			
-Cre12.g493903			Secretory pathway			CSC7
-Cre12.g543000						
-Cre12.g545602			Mitochondrion			
-Cre12.g555450	GMM:3.4.2	minor CHO metabolism.myo-inositol.InsP kinases	Mitochondrion	GO:0008440	"inositol-1,4,5-trisphosphate 3-kinase activity"	PMK
-Cre12.g484950			Mitochondrion			
-Cre12.g547350						CYG31
-Cre12.g487000			Mitochondrion			CSV8
-Cre12.g494550	GMM:27.4	RNA.RNA binding				RNP10
-Cre12.g506550						
-Cre12.g542400			Mitochondrion			
-Cre12.g486900	GMM:12.4	N-metabolism.misc		GO:0055114;GO:0050660;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing	
-Cre12.g503950	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified				
-Cre12.g503800	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
-Cre12.g534550	GMM:30.11;GMM:28.2	signalling.light;DNA.repair	Secretory pathway			PHR4
-Cre12.g516851			Mitochondrion			
-Cre12.g539800			Mitochondrion			
-Cre12.g502450	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG8
-Cre12.g506000	GMM:31.6.1.4.2;GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.inner arm;cell.motility.eukaryotes.axonemal dyneins.outer arm				DIC2
-Cre12.g541851			Chloroplast	GO:0019478;GO:0016788;GO:0005737	"D-amino acid catabolic process;hydrolase activity, acting on ester bonds;cytoplasm"	
-Cre12.g515650	GMM:29.2.3	protein.synthesis.initiation		GO:0005852;GO:0005737;GO:0003743	eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity	EIF3K
-Cre12.g522900			Chloroplast			LYR4
-Cre12.g499205			Mitochondrion			
-Cre12.g535800			Mitochondrion			
-Cre12.g529700						FAP401
-Cre12.g523340			Chloroplast			
-Cre12.g540550			Secretory pathway			
-Cre12.g554528			Mitochondrion			PPR10
-Cre12.g498100	GMM:29.2.3	protein.synthesis.initiation		GO:0005852;GO:0005737;GO:0005515;GO:0003743	eukaryotic translation initiation factor 3 complex;cytoplasm;protein binding;translation initiation factor activity	EIF3E
-Cre12.g533150			Secretory pathway			
-Cre12.g515900	GMM:31.3;GMM:28.2	cell.cycle;DNA.repair	Mitochondrion			TOPBP1
-Cre12.g502678			Chloroplast			
-Cre12.g531283			Mitochondrion			
-Cre12.g495450			Mitochondrion			
-Cre12.g560950	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0016020;GO:0015979;GO:0009522	membrane;photosynthesis;photosystem I	PSAG
-Cre12.g551502			Mitochondrion			
-Cre12.g541250	GMM:34.4;GMM:1.5.3	transport.nitrate;PS.carbon concentrating mechanism.algal	Chloroplast	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NAR1.5
-Cre12.g558400			Chloroplast	GO:0008616;GO:0008479;GO:0006400	queuosine biosynthetic process;queuine tRNA-ribosyltransferase activity;tRNA modification	
-Cre12.g522850	GMM:29.2.3;GMM:28.1;GMM:27.1.2	protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL55
-Cre12.g560900	GMM:16.1.4	secondary metabolism.isoprenoids.carotenoids	Chloroplast			AOF7
-Cre12.g534900						
-Cre12.g526210						
-Cre12.g484550			Mitochondrion			
-Cre12.g510500			Secretory pathway			
-Cre12.g519500	GMM:34.21	transport.calcium	Chloroplast	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	CAX1
-Cre12.g552952						
-Cre12.g531200			Mitochondrion	GO:0055114;GO:0016491;GO:0005507	oxidation-reduction process;oxidoreductase activity;copper ion binding	FOX2
-Cre12.g506900						
-Cre12.g514950			Mitochondrion	GO:0043139;GO:0003697	5'-3' DNA helicase activity;single-stranded DNA binding	CGLD17
-Cre12.g487950			Secretory pathway			
-Cre12.g552550						
-Cre12.g546900			Chloroplast			
-Cre12.g490300	GMM:21.6	redox.dismutases and catalases	Secretory pathway	GO:0055114;GO:0046872;GO:0006801;GO:0004784	oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity	MSD4
-Cre12.g504200	GMM:29.2.1.2.1.23	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S23		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS23
-Cre12.g549950				GO:0016192;GO:0016021;GO:0006810	vesicle-mediated transport;integral component of membrane;transport	
-Cre12.g539150						
-Cre12.g517500						
-Cre12.g558526			Mitochondrion			
-Cre12.g519100	GMM:16.99;GMM:11.1.1.2.1	secondary metabolism.unspecified;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.alpha carboxyltransferase	Chloroplast			ACC1
-Cre12.g501950			Secretory pathway	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
-Cre12.g556653						
-Cre12.g548800			Chloroplast			
-Cre12.g507900						
-Cre12.g517900	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0017038;GO:0016020;GO:0005524	protein import;membrane;ATP binding	SECA1
-Cre12.g528300			Mitochondrion			
-Cre12.g536550	GMM:31.6.1.4.2;GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.inner arm;cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0005515	protein binding	DIC1
-Cre12.g544950						
-Cre12.g558650	GMM:29.2.3	protein.synthesis.initiation		GO:0044237	cellular metabolic process	EIF2BD
-Cre12.g557350				GO:0055114;GO:0051537;GO:0016491	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"	
-Cre12.g494252			Mitochondrion			
-Cre12.g498900	GMM:29.2.1.2.1.7	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S7		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS7
-Cre12.g520072						
-Cre12.g491950						
-Cre12.g546550	GMM:15.2	"metal handling.binding, chelation and storage"	Secretory pathway			FEA1
-Cre12.g534850			Mitochondrion			
-Cre12.g545150			Mitochondrion			
-Cre12.g556450				GO:0016592;GO:0006357;GO:0001104	mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity	
-Cre12.g523900						
-Cre12.g546950						
-Cre12.g553600	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
-Cre12.g484050	GMM:29.2.1.2.2.36	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L36		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL36
-Cre12.g485600	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre12.g517350	GMM:27.3.99	RNA.regulation of transcription.unclassified				LSD1
-Cre12.g499902			Mitochondrion			
-Cre12.g556950						
-Cre12.g526339				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g523150	GMM:29.6.1	protein.folding.prefoldin and trigger factor	Mitochondrion			PFD5
-Cre12.g551350			Secretory pathway			LAO2
-Cre12.g497450						
-Cre12.g526603			Chloroplast	GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g515250						ROC7
-Cre12.g529600	GMM:27.2	RNA.transcription		GO:0008270;GO:0006351;GO:0005634;GO:0003899;GO:0003677	"zinc ion binding;transcription, DNA-templated;nucleus;DNA-directed RNA polymerase activity;DNA binding"	RPA1
-Cre12.g487450						
-Cre12.g529950	GMM:29.2.3	protein.synthesis.initiation		GO:0005515;GO:0003723	protein binding;RNA binding	EIF4G1
-Cre12.g491952	GMM:30.2.12	signalling.receptor kinases.leucine rich repeat XII	Secretory pathway			
-Cre12.g529550	GMM:29.4	protein.postranslational modification				ALK1
-Cre12.g535100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g517000	GMM:30.2.20;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.wheat LRK10 like;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPKKK7
-Cre12.g544401						
-Cre12.g527350						
-Cre12.g543800			Mitochondrion			
-Cre12.g522200						
-Cre12.g509150			Mitochondrion			
-Cre12.g507005			Chloroplast			
-Cre12.g523850	GMM:9.5;GMM:29.3.2	mitochondrial electron transport / ATP synthesis.cytochrome c reductase;protein.targeting.mitochondria	Mitochondrion			MPPB
-Cre12.g556802	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre12.g521350	GMM:29.3.4.4	protein.targeting.secretory pathway.plasma membrane		GO:0016192;GO:0006904	vesicle-mediated transport;vesicle docking involved in exocytosis	SLY1
-Cre12.g483500	GMM:35.1.19	not assigned.no ontology.C2 domain-containing protein				
-Cre12.g526750	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	RBM8
-Cre12.g495250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			FAP31
-Cre12.g485250			Secretory pathway			CSV5
-Cre12.g542200						
-Cre12.g495957						
-Cre12.g534200			Chloroplast			
-Cre12.g490050	GMM:34.2;GMM:34.11	transport.sugars;transport.NDP-sugars at the ER	Chloroplast			
-Cre12.g532050	GMM:29.4.1.59;GMM:29.4.1.57;GMM:29.4;GMM:20.1	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification;stress.biotic		GO:0016567;GO:0006468;GO:0005524;GO:0004842;GO:0004672	protein ubiquitination;protein phosphorylation;ATP binding;ubiquitin-protein transferase activity;protein kinase activity	
-Cre12.g555000			Secretory pathway			
-Cre12.g489200	GMM:33.99;GMM:33.2	development.unspecified;development.late embryogenesis abundant	Secretory pathway			
-Cre12.g492504						
-Cre12.g495050			Secretory pathway			OPR51
-Cre12.g521050						
-Cre12.g489002			Chloroplast			
-Cre12.g544650						
-Cre12.g512790						
-Cre12.g558000	GMM:29.2.1.99.1.6	protein.synthesis.ribosomal protein.unknown.small subunit.S6		GO:0019843;GO:0006412;GO:0005840;GO:0003735	rRNA binding;translation;ribosome;structural constituent of ribosome	MRPS6
-Cre12.g505100			Mitochondrion	GO:0009411;GO:0006289;GO:0004519	response to UV;nucleotide-excision repair;endonuclease activity	
-Cre12.g528550	GMM:17.3.1.1.1	hormone metabolism.brassinosteroid.synthesis-degradation.BRs.DET2	Secretory pathway			
-Cre12.g560750			Mitochondrion	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
-Cre12.g500200	GMM:26.13	misc.acid and other phosphatases	Secretory pathway	GO:0016787	hydrolase activity	MPA2
-Cre12.g504450			Mitochondrion			
-Cre12.g556050	GMM:29.2.1.1.1.2.9	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L9	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL9
-Cre12.g514300				GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	
-Cre12.g533201			Secretory pathway			
-Cre12.g496850			Mitochondrion			
-Cre12.g512200	GMM:34.99;GMM:34.2;GMM:34.16	transport.misc;transport.sugars;transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT26
-Cre12.g560200	GMM:26.24	misc.GCN5-related N-acetyltransferase		GO:0008080	N-acetyltransferase activity	NAT2
-Cre12.g498200						FAP128
-Cre12.g493854			Secretory pathway			
-Cre12.g512650						
-Cre12.g490950			Chloroplast			
-Cre12.g522950	GMM:31.2.5	cell.division.plastid	Chloroplast			MIND1
-Cre12.g510650	GMM:1.3.7	PS.calvin cycle.FBPase	Chloroplast	GO:0042578;GO:0042132;GO:0005975	"phosphoric ester hydrolase activity;fructose 1,6-bisphosphate 1-phosphatase activity;carbohydrate metabolic process"	FBP2
-Cre12.g536412			Mitochondrion			
-Cre12.g518550	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP54
-Cre12.g523600						
-Cre12.g560350	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CNK2
-Cre12.g508300						CGL144
-Cre12.g557300				GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre12.g540800			Mitochondrion			
-Cre12.g538100	GMM:26.9	misc.glutathione S transferases		GO:0005515	protein binding	
-Cre12.g555500				GO:0009236;GO:0008939	cobalamin biosynthetic process;nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity	
-Cre12.g535700	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Chloroplast			HSP70D
-Cre12.g518500						
-Cre12.g530250						
-Cre12.g515550	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole		GO:0016192;GO:0006904	vesicle-mediated transport;vesicle docking involved in exocytosis	VPS33
-Cre12.g548901			Mitochondrion			
-Cre12.g494650			Secretory pathway			CSV10
-Cre12.g552200	GMM:2.2.2.2	major CHO metabolism.degradation.starch.starch phosphorylase	Chloroplast	GO:0008184;GO:0005975	glycogen phosphorylase activity;carbohydrate metabolic process	STA4
-Cre12.g527250			Chloroplast			
-Cre12.g492750			Chloroplast	GO:2001070	starch binding	
-Cre12.g499500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	SAC3
-Cre12.g501900	GMM:3.5;GMM:2.2.1.3.2	minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.cell wall	Mitochondrion			FFT2
-Cre12.g520900						
-Cre12.g507556						
-Cre12.g510250						VTC1
-Cre12.g544250						
-Cre12.g488800			Mitochondrion			
-Cre12.g488050	GMM:3.5;GMM:2.2.1.3.2	minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.cell wall				FFT5
-Cre12.g491050	GMM:23.5.4	nucleotide metabolism.deoxynucleotide metabolism.ribonucleoside-diphosphate reductase	Chloroplast	GO:0055114;GO:0009186	oxidation-reduction process;deoxyribonucleoside diphosphate metabolic process	RIR2
-Cre12.g552700	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	
-Cre12.g548955						
-Cre12.g540200	GMM:29.2.3;GMM:27.1.2;GMM:27.1;GMM:17.5.3	protein.synthesis.initiation;RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL58
-Cre12.g553000						
-Cre12.g531500						DRC3
-Cre12.g524550						
-Cre12.g534302						
-Cre12.g545600				GO:0046872	metal ion binding	
-Cre12.g532800			Secretory pathway			
-Cre12.g488200			Chloroplast			
-Cre12.g497800			Chloroplast			
-Cre12.g508644	GMM:27.3.22	RNA.regulation of transcription.homeobox transcription factor family (HB)	Secretory pathway	GO:0006355;GO:0003677	"regulation of transcription, DNA-templated;DNA binding"	HDG1
-Cre12.g488400	GMM:29.5.9	protein.degradation.AAA type	Secretory pathway	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre12.g527650			Secretory pathway			
-Cre12.g558200			Chloroplast			
-Cre12.g488000	GMM:3.5;GMM:2.2.1.3.3;GMM:2.2.1.3.2	minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.vacuolar;major CHO metabolism.degradation.sucrose.invertases.cell wall	Chloroplast			FFT4
-Cre12.g561101	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG42
-Cre12.g511100	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion			
-Cre12.g526201				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g526559				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g544114	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN20-6
-Cre12.g503850	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	ARL12
-Cre12.g551852			Mitochondrion			
-Cre12.g505300						
-Cre12.g539204			Mitochondrion			
-Cre12.g549800	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CSK5
-Cre12.g511550						
-Cre12.g520050			Secretory pathway			
-Cre12.g554150			Chloroplast	GO:0008270	zinc ion binding	
-Cre12.g504750	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA16
-Cre12.g508642						
-Cre12.g525650	GMM:30.1.1;GMM:30.1	signalling.in sugar and nutrient physiology.misc;signalling.in sugar and nutrient physiology				SUFS1
-Cre12.g543052				GO:0071949	FAD binding	
-Cre12.g536950						
-Cre12.g554350						
-Cre12.g529500	GMM:29.2.6;GMM:29.2.2.3.3;GMM:27.3.67	protein.synthesis.ribosomal RNA;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases;RNA.regulation of transcription.putative transcription regulator		GO:0032259;GO:0031167;GO:0008649;GO:0008168;GO:0006364;GO:0005634;GO:0001510	methylation;rRNA methylation;rRNA methyltransferase activity;methyltransferase activity;rRNA processing;nucleus;RNA methylation	
-Cre12.g496450	GMM:28.99;GMM:27.1.19	DNA.unspecified;RNA.processing.ribonucleases	Chloroplast	GO:0003723;GO:0000178	RNA binding;exosome (RNase complex)	RRP4
-Cre12.g545250				GO:0055114	oxidation-reduction process	
-Cre12.g513650						FAP342
-Cre12.g486478						
-Cre12.g486702			Mitochondrion			
-Cre12.g511250						
-Cre12.g508200	GMM:27.4	RNA.RNA binding				
-Cre12.g551977						PHC74
-Cre12.g558050						
-Cre12.g546100	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	FAP125
-Cre12.g550501						
-Cre12.g483720			Chloroplast	GO:0006260;GO:0003697	DNA replication;single-stranded DNA binding	
-Cre12.g536750			Mitochondrion			
-Cre12.g504100			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PHX20
-Cre12.g534600	GMM:29.3.2	protein.targeting.mitochondria		GO:0045040;GO:0005742	protein import into mitochondrial outer membrane;mitochondrial outer membrane translocase complex	TOM20
-Cre12.g500150	GMM:5.10;GMM:5.1;GMM:16.4.2.1	fermentation.aldehyde dehydrogenase;fermentation.LDH;secondary metabolism.N misc.betaine.betaine-aldehyde dehydrogenase	Mitochondrion	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	ALD5
-Cre12.g509700						
-Cre12.g554929			Chloroplast			
-Cre12.g525950	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g508900	GMM:30.6;GMM:3.6;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPK6
-Cre12.g537500	GMM:30.4;GMM:3.4	signalling.phosphinositides;minor CHO metabolism.myo-inositol		GO:0042578	phosphoric ester hydrolase activity	
-Cre12.g490450			Chloroplast			
-Cre12.g486550						
-Cre12.g550702	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF13
-Cre12.g559054						
-Cre12.g521336						
-Cre12.g492950	GMM:23.5.4	nucleotide metabolism.deoxynucleotide metabolism.ribonucleoside-diphosphate reductase		GO:0055114;GO:0006260;GO:0005524;GO:0004748	"oxidation-reduction process;DNA replication;ATP binding;ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor"	RIR1
-Cre12.g521750						
-Cre12.g545800						ROC55
-Cre12.g497400	GMM:27.2	RNA.transcription		GO:0006383;GO:0005666;GO:0003899;GO:0003677	transcription from RNA polymerase III promoter;DNA-directed RNA polymerase III complex;DNA-directed RNA polymerase activity;DNA binding	CGL119
-Cre12.g516550				GO:0016757	"transferase activity, transferring glycosyl groups"	GTR16
-Cre12.g540351						SELW2
-Cre12.g548051						
-Cre12.g533800	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN22
-Cre12.g487700			Secretory pathway			
-Cre12.g543350	GMM:5.3;GMM:26.11	fermentation.ADH;misc.alcohol dehydrogenases		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	FDH2
-Cre12.g517750			Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g558700	GMM:23.4.10	nucleotide metabolism.phosphotransfer and pyrophosphatases.nucleoside diphosphate kinase		GO:0006241;GO:0006228;GO:0006183;GO:0006165;GO:0004550	CTP biosynthetic process;UTP biosynthetic process;GTP biosynthetic process;nucleoside diphosphate phosphorylation;nucleoside diphosphate kinase activity	FAP67
-Cre12.g559950	GMM:9.99;GMM:26.30	mitochondrial electron transport / ATP synthesis.unspecified;misc.other Ferredoxins and Rieske domain	Mitochondrion	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	MFDX
-Cre12.g522350	GMM:29.1.13;GMM:29.1	protein.aa activation.tryptophan-tRNA ligase;protein.aa activation		GO:0006436;GO:0006418;GO:0005737;GO:0005524;GO:0004830;GO:0004812;GO:0000166	tryptophanyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;tryptophan-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	TSW1
-Cre12.g497100						
-Cre12.g485150	GMM:4.2.8;GMM:4.1.8	glycolysis.plastid branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH);glycolysis.cytosolic branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH)	Chloroplast	GO:0055114;GO:0016620	"oxidation-reduction process;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor"	GAP1
-Cre12.g500500	GMM:17.3.1.2.2	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.SMT2		GO:0008168;GO:0008152;GO:0006694	methyltransferase activity;metabolic process;steroid biosynthetic process	SMT1
-Cre12.g542300	GMM:1.2.7	PS.photorespiration.glycerate kinase	Chloroplast			GLYK1
-Cre12.g493050				GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
-Cre12.g546650	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC23
-Cre12.g541950			Mitochondrion			
-Cre12.g535150			Mitochondrion			
-Cre12.g485550	GMM:13.2.4.4	amino acid metabolism.degradation.branched chain group.leucine	Mitochondrion	GO:0003824	catalytic activity	
-Cre12.g492450	GMM:28.1	DNA.synthesis/chromatin structure		GO:0004386	helicase activity	
-Cre12.g506300	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR18
-Cre12.g515750	GMM:34.7;GMM:34.2	transport.phosphate;transport.sugars		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NTP5
-Cre12.g493550				GO:0006412;GO:0005840;GO:0005622;GO:0005515;GO:0003735	translation;ribosome;intracellular;protein binding;structural constituent of ribosome	THK3
-Cre12.g539207						
-Cre12.g494900	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	
-Cre12.g550300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g519700	GMM:33.99	development.unspecified	Chloroplast	GO:0005525	GTP binding	
-Cre12.g496250			Mitochondrion			
-Cre12.g504300			Mitochondrion			
-Cre12.g505600	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB17
-Cre12.g520400	GMM:29.2.1.1.3.2.4	protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L4	Mitochondrion	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPL4
-Cre12.g561400			Secretory pathway			
-Cre12.g533850			Secretory pathway			
-Cre12.g489550						
-Cre12.g531750			Secretory pathway			
-Cre12.g485276			Secretory pathway			
-Cre12.g491600	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB1
-Cre12.g499200			Chloroplast			
-Cre12.g486050				GO:0008270;GO:0005515;GO:0003676	zinc ion binding;protein binding;nucleic acid binding	
-Cre12.g549450	GMM:13.2.6.2	amino acid metabolism.degradation.aromatic aa.tyrosine		GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre12.g503200						
-Cre12.g547651			Mitochondrion			
-Cre12.g549500			Chloroplast			
-Cre12.g513550	GMM:29.5.11.2	protein.degradation.ubiquitin.E1	Mitochondrion			
-Cre12.g495953				GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	
-Cre12.g547734			Secretory pathway			
-Cre12.g560550	GMM:13.2.3.4	amino acid metabolism.degradation.aspartate family.methionine	Chloroplast	GO:0016742;GO:0009058	"hydroxymethyl-, formyl- and related transferase activity;biosynthetic process"	MTF1
-Cre12.g551127			Mitochondrion			
-Cre12.g523050	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase	Mitochondrion	GO:0046488;GO:0016307;GO:0005524	phosphatidylinositol metabolic process;phosphatidylinositol phosphate kinase activity;ATP binding	CCT11
-Cre12.g504550	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB15
-Cre12.g532327	GMM:29.5.7	protein.degradation.metalloprotease				APG10
-Cre12.g515150						
-Cre12.g536150						
-Cre12.g539121						
-Cre12.g510450				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS28
-Cre12.g529100	GMM:34.1.1.2;GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit C;transport.p- and v-ATPases.H+-transporting two-sector ATPase		GO:0033177;GO:0015991;GO:0015078	"proton-transporting two-sector ATPase complex, proton-transporting domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVL2
-Cre12.g556400	GMM:28.1.3;GMM:27.3.16	"DNA.synthesis/chromatin structure.histone;RNA.regulation of transcription.CCAAT box binding factor family, HAP5"				
-Cre12.g501150						MLT2
-Cre12.g551353			Secretory pathway			LAO1
-Cre12.g505450	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO17
-Cre12.g556550						
-Cre12.g526010				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g512550						
-Cre12.g525802	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g503250			Secretory pathway			
-Cre12.g529150	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	FAP314
-Cre12.g519600			Secretory pathway			
-Cre12.g494052			Mitochondrion			
-Cre12.g532151	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM7
-Cre12.g509250	GMM:21.1	redox.thioredoxin	Mitochondrion	GO:0045454	cell redox homeostasis	EYE2
-Cre12.g539208			Secretory pathway			
-Cre12.g498700			Chloroplast			CPLD13
-Cre12.g512600	GMM:29.2.1.2.2.18	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L18	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL18
-Cre12.g551100						
-Cre12.g553052			Secretory pathway			
-Cre12.g557078			Secretory pathway	GO:0055114;GO:0016715;GO:0005507;GO:0004497	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;copper ion binding;monooxygenase activity"	
-Cre12.g490100	GMM:34.2;GMM:34.11	transport.sugars;transport.NDP-sugars at the ER				
-Cre12.g514900	GMM:29.3.2	protein.targeting.mitochondria		GO:0045039	protein import into mitochondrial inner membrane	TIM10
-Cre12.g484375						
-Cre12.g530700	GMM:28.1.3	DNA.synthesis/chromatin structure.histone		GO:0006352;GO:0005669	"DNA-templated transcription, initiation;transcription factor TFIID complex"	
-Cre12.g484650						
-Cre12.g537226			Secretory pathway			
-Cre12.g534915						
-Cre12.g539141						
-Cre12.g557850	GMM:24.1	biodegradation of xenobiotics.hydroxyacylglutathione hydrolase	Secretory pathway	GO:0005515	protein binding	
-Cre12.g557600	GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase		GO:0019205;GO:0006139;GO:0005524;GO:0004017	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding;adenylate kinase activity	ADK4
-Cre12.g560902						
-Cre12.g553300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre12.g547000			Chloroplast	GO:0002949	tRNA threonylcarbamoyladenosine modification	
-Cre12.g510034	GMM:35.1.27	not assigned.no ontology.tetratricopeptide repeat (TPR)	Mitochondrion			
-Cre12.g557800			Mitochondrion	GO:0003677	DNA binding	
-Cre12.g521150	GMM:27.3.8	RNA.regulation of transcription.C2C2(Zn) DOF zinc finger family		GO:0006355;GO:0003677	"regulation of transcription, DNA-templated;DNA binding"	CGL19
-Cre12.g543550			Mitochondrion			
-Cre12.g506600			Chloroplast			LPN1
-Cre12.g527850			Secretory pathway	GO:0043565	sequence-specific DNA binding	
-Cre12.g543900			Chloroplast	GO:0006470;GO:0004725	protein dephosphorylation;protein tyrosine phosphatase activity	PTP6
-Cre12.g528850	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0045454	cell redox homeostasis	DLX1
-Cre12.g556750	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre12.g550650	GMM:29.2.1	protein.synthesis.ribosomal protein		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPL14
-Cre12.g485200	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
-Cre12.g559400	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE12
-Cre12.g492151			Mitochondrion			
-Cre12.g537950			Chloroplast			
-Cre12.g553850			Chloroplast			TUL1
-Cre12.g536776						
-Cre12.g512450			Secretory pathway			
-Cre12.g541650						
-Cre12.g547250			Chloroplast			
-Cre12.g526800	GMM:7.1.3	OPP.oxidative PP.6-phosphogluconate dehydrogenase	Chloroplast	GO:0055114;GO:0050661;GO:0006098;GO:0004616	oxidation-reduction process;NADP binding;pentose-phosphate shunt;phosphogluconate dehydrogenase (decarboxylating) activity	GND1
-Cre12.g531450						HPAT3
-Cre12.g551900						
-Cre12.g559850				GO:0005515	protein binding	
-Cre12.g512202			Chloroplast			
-Cre12.g497500	GMM:26.11.1;GMM:26.11;GMM:16.8.3	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SNE7
-Cre12.g503100			Secretory pathway			
-Cre12.g550450						
-Cre12.g512750	GMM:33.99;GMM:30.5;GMM:3.5;GMM:27.1	development.unspecified;signalling.G-proteins;minor CHO metabolism.others;RNA.processing		GO:0005515	protein binding	TEF20
-Cre12.g509600	GMM:23.5.3	nucleotide metabolism.deoxynucleotide metabolism.cytosine deaminase	Secretory pathway	GO:0008270	zinc ion binding	CDD2
-Cre12.g495955						
-Cre12.g503350						
-Cre12.g500650	GMM:27.1.19	RNA.processing.ribonucleases	Chloroplast			RNB2
-Cre12.g537581	GMM:23.1.2.9	nucleotide metabolism.synthesis.purine.AICAR transformylase and IMP synthase	Chloroplast	GO:0006164;GO:0004643;GO:0003937	purine nucleotide biosynthetic process;phosphoribosylaminoimidazolecarboxamide formyltransferase activity;IMP cyclohydrolase activity	
-Cre12.g484000	GMM:11.1.1.2.2	lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.beta carboxyltransferase	Chloroplast			BCX1
-Cre12.g537850			Chloroplast			CCB2
-Cre12.g523700			Chloroplast			
-Cre12.g537641			Secretory pathway			
-Cre12.g525850						
-Cre12.g497950						
-Cre12.g535019	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway			
-Cre12.g555600			Mitochondrion			
-Cre12.g496100						FAP149
-Cre12.g488152			Secretory pathway			
-Cre12.g495750						
-Cre12.g504850	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO16
-Cre12.g534100	GMM:33.99;GMM:27.3.7	development.unspecified;RNA.regulation of transcription.C2C2(Zn) Constans-like zinc finger family (CO-like)	Secretory pathway	GO:0005515	protein binding	CON2
-Cre12.g499150						
-Cre12.g558850			Mitochondrion			
-Cre12.g535600			Mitochondrion			DNJ17
-Cre12.g500600				GO:0070072	vacuolar proton-transporting V-type ATPase complex assembly	VMA21
-Cre12.g502250	GMM:31.1	cell.organisation	Chloroplast			PLAP4
-Cre12.g509000	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPK3
-Cre12.g499050	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB44
-Cre12.g521550	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase	Mitochondrion			
-Cre12.g508100						
-Cre12.g542569	GMM:30.1;GMM:3.1;GMM:27.3.99	signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family;RNA.regulation of transcription.unclassified		GO:0016020;GO:0004970	membrane;ionotropic glutamate receptor activity	
-Cre12.g494050	GMM:29.2.2;GMM:29.2.1.2.2.9	protein.synthesis.ribosome biogenesis;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L9		GO:0019843;GO:0006412;GO:0005840;GO:0003735	rRNA binding;translation;ribosome;structural constituent of ribosome	RPL9
-Cre12.g518700	GMM:27.1.1	RNA.processing.splicing	Secretory pathway			
-Cre12.g554850	GMM:21.1	redox.thioredoxin		GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXH1
-Cre12.g499350	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Mitochondrion	GO:0005509	calcium ion binding	EFH7
-Cre12.g538500						
-Cre12.g531050	GMM:34.5	transport.ammonium	Chloroplast			RAA3
-Cre12.g547727			Chloroplast			
-Cre12.g549050	GMM:16.4.1	secondary metabolism.N misc.alkaloid-like	Secretory pathway	GO:0016844;GO:0009058	strictosidine synthase activity;biosynthetic process	STR1
-Cre12.g509950			Secretory pathway			
-Cre12.g541200			Secretory pathway	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	
-Cre12.g490891	GMM:29.3.1	protein.targeting.nucleus				
-Cre12.g561350						
-Cre12.g554050						
-Cre12.g553400			Mitochondrion;Chloroplast			
-Cre12.g538300	GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	LF5
-Cre12.g495951	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN20-3
-Cre12.g511800						
-Cre12.g539205						
-Cre12.g548550						
-Cre12.g559050						
-Cre12.g536850			Mitochondrion			
-Cre12.g544111						CSB49
-Cre12.g517681			Chloroplast			
-Cre12.g539000	GMM:33.99;GMM:31.2;GMM:11.3.6	development.unspecified;cell.division;lipid metabolism.phospholipid synthesis.choline-phosphate cytidylyltransferase	Secretory pathway	GO:0009058;GO:0003824	biosynthetic process;catalytic activity	ECT1
-Cre12.g520750						
-Cre12.g554200	GMM:31.4;GMM:29.3.4.2	cell.vesicle transport;protein.targeting.secretory pathway.golgi	Mitochondrion			VTI4
-Cre12.g520173			Chloroplast			
-Cre12.g496402						
-Cre12.g484700						
-Cre12.g516650	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g524000	GMM:2.1.1.1	major CHO metabolism.synthesis.sucrose.SPS	Mitochondrion	GO:0016157;GO:0005985	sucrose synthase activity;sucrose metabolic process	SUC1
-Cre12.g521250				GO:0052689;GO:0006482	carboxylic ester hydrolase activity;protein demethylation	PPE1
-Cre12.g495350	GMM:31.6.1.2;GMM:31.6.1.1	cell.motility.eukaryotes.deflagellation;cell.motility.eukaryotes.basal bodies				POC12
-Cre12.g502750	GMM:29.6.1	protein.folding.prefoldin and trigger factor		GO:0051082;GO:0016272;GO:0006457	unfolded protein binding;prefoldin complex;protein folding	PFD6
-Cre12.g487800						
-Cre12.g530800			Mitochondrion			
-Cre12.g556913			Chloroplast			
-Cre12.g548651			Mitochondrion			
-Cre12.g515450	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC22
-Cre12.g520650	GMM:31.1;GMM:29.5.11.4.3.2;GMM:27.3.31	cell.organisation;protein.degradation.ubiquitin.E3.SCF.FBOX;RNA.regulation of transcription.TUB transcription factor family				TLP1
-Cre12.g549100			Chloroplast			UAF3
-Cre12.g513950	GMM:34.16;GMM:29.8	transport.ABC transporters and multidrug resistance systems;protein.assembly and cofactor ligation	Chloroplast	GO:0016226	iron-sulfur cluster assembly	SUFD
-Cre12.g507050						
-Cre12.g499601			Mitochondrion			
-Cre12.g560100			Mitochondrion			
-Cre12.g533400						
-Cre12.g489300			Secretory pathway			
-Cre12.g538200	GMM:3.5	minor CHO metabolism.others		GO:0005525;GO:0005515	GTP binding;protein binding	
-Cre12.g517300			Secretory pathway			
-Cre12.g529400	GMM:29.2.1.2.1.27	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS27E1
-Cre12.g530876						
-Cre12.g485632						CSB41
-Cre12.g496350			Secretory pathway	GO:0016020;GO:0008158	membrane;hedgehog receptor activity	SSD2
-Cre12.g545000	GMM:31.1	cell.organisation				ARP7
-Cre12.g499900	GMM:26.27	misc.calcineurin-like phosphoesterase family protein				VPS29
-Cre12.g557252						
-Cre12.g502200	GMM:29.2.3;GMM:27.3.38	protein.synthesis.initiation;RNA.regulation of transcription.AT-rich interaction domain containing transcription factor family		GO:0016779;GO:0009058;GO:0005515	nucleotidyltransferase activity;biosynthetic process;protein binding	
-Cre12.g502000	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP253
-Cre12.g559200			Mitochondrion			
-Cre12.g507559	GMM:20.2.1	stress.abiotic.heat	Mitochondrion	GO:0051259;GO:0051087;GO:0006457	protein oligomerization;chaperone binding;protein folding	HSC20B
-Cre12.g501700						
-Cre12.g545401			Secretory pathway			
-Cre12.g529376			Chloroplast			
-Cre12.g496900			Chloroplast	GO:0004519;GO:0003676	endonuclease activity;nucleic acid binding	
-Cre12.g483650	GMM:29.4;GMM:1.1.30	protein.postranslational modification;PS.lightreaction.state transition		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g494300			Chloroplast			
-Cre12.g484350	GMM:29.4	protein.postranslational modification				
-Cre12.g497200	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP216
-Cre12.g506650						
-Cre12.g483900			Mitochondrion	GO:0008324;GO:0006812	cation transmembrane transporter activity;cation transport	
-Cre12.g559250	GMM:31.6.1.1;GMM:30.7;GMM:3.7	cell.motility.eukaryotes.basal bodies;signalling.14-3-3 proteins;minor CHO metabolism.sugar kinases		GO:0019904	protein domain specific binding	FTT1
-Cre12.g520300			Secretory pathway			
-Cre12.g543902	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0016857;GO:0016773;GO:0005975	"racemase and epimerase activity, acting on carbohydrates and derivatives;phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process"	
-Cre12.g535400			Secretory pathway			
-Cre12.g487150	GMM:26.13	misc.acid and other phosphatases	Chloroplast			PGM20
-Cre12.g548450			Secretory pathway			
-Cre12.g531651						
-Cre12.g526240				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g504000	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast			
-Cre12.g544050	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre12.g493650						
-Cre12.g546750						
-Cre12.g514400	GMM:27.3.26;GMM:27.3.25	RNA.regulation of transcription.MYB-related transcription factor family;RNA.regulation of transcription.MYB domain transcription factor family				
-Cre12.g491500	GMM:29.5.11.2	protein.degradation.ubiquitin.E1		GO:0045116;GO:0019781;GO:0016881;GO:0008641;GO:0005524	protein neddylation;NEDD8 activating enzyme activity;acid-amino acid ligase activity;small protein activating enzyme activity;ATP binding	UBC1
-Cre12.g528926						
-Cre12.g555200			Chloroplast			
-Cre12.g553800						
-Cre12.g491400	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	Chloroplast	GO:0005515	protein binding	
-Cre12.g541400						
-Cre12.g532900	GMM:31.1	cell.organisation		GO:0005515	protein binding	
-Cre12.g526950	GMM:27.3.99;GMM:27.3.51	"RNA.regulation of transcription.unclassified;RNA.regulation of transcription.general transcription, TBP-binding protein"		GO:0006355;GO:0005634;GO:0005515	"regulation of transcription, DNA-templated;nucleus;protein binding"	
-Cre12.g510050	GMM:19.12	tetrapyrrole synthesis.magnesium-protoporphyrin IX monomethyl ester (oxidative) cyclase	Chloroplast	GO:0055114;GO:0046872;GO:0016491	oxidation-reduction process;metal ion binding;oxidoreductase activity	CTH1
-Cre12.g523026	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family				
-Cre12.g485850			Chloroplast			CPLD64
-Cre12.g498600	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	GTP binding	EEF1A1
-Cre12.g560650						
-Cre12.g551801			Secretory pathway	GO:0048278;GO:0006887;GO:0005737	vesicle docking;exocytosis;cytoplasm	
-Cre12.g492500						
-Cre12.g510752						
-Cre12.g508350			Mitochondrion			TPR2
-Cre12.g549600						
-Cre12.g488750			Chloroplast			
-Cre12.g516200	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	GTP binding	EFG2
-Cre12.g507750	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g487400						
-Cre12.g548350			Mitochondrion			
-Cre12.g515950			Chloroplast			
-Cre12.g542650			Mitochondrion	GO:0005515	protein binding	
-Cre12.g501400						CSB46
-Cre12.g512850						
-Cre12.g493100						
-Cre12.g557700	GMM:24.1	biodegradation of xenobiotics.hydroxyacylglutathione hydrolase		GO:0019243;GO:0004416	methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione;hydroxyacylglutathione hydrolase activity	
-Cre12.g492600	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			FAP346
-Cre12.g493700	GMM:26.7;GMM:17.1.1.1.1	"misc.oxidases - copper, flavone etc;hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase"	Chloroplast	GO:0071949	FAD binding	ZXE2
-Cre12.g544109				GO:0003676	nucleic acid binding	
-Cre12.g510200			Mitochondrion			
-Cre12.g555152			Secretory pathway			
-Cre12.g495650				GO:0005515	protein binding	
-Cre12.g485050	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Chloroplast	GO:0008270;GO:0004089	zinc ion binding;carbonate dehydratase activity	CAH6
-Cre12.g511350						
-Cre12.g525200	GMM:29.2.2.3.1;GMM:27.3.67	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;RNA.regulation of transcription.putative transcription regulator				NOP56
-Cre12.g489152			Mitochondrion			
-Cre12.g489250						
-Cre12.g526650	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g510350	GMM:26.16	misc.myrosinases-lectin-jacalin	Chloroplast			
-Cre12.g526427			Chloroplast			
-Cre12.g527950			Secretory pathway	GO:0030259;GO:0016758;GO:0005975	"lipid glycosylation;transferase activity, transferring hexosyl groups;carbohydrate metabolic process"	
-Cre12.g546877						
-Cre12.g556100				GO:0005515	protein binding	SPAG1
-Cre12.g516400	GMM:27.4;GMM:27.3.99	RNA.RNA binding;RNA.regulation of transcription.unclassified				
-Cre12.g496150	GMM:29.5	protein.degradation	Chloroplast	GO:0005524	ATP binding	
-Cre12.g492250			Mitochondrion			TRZ3
-Cre12.g514500	GMM:29.2.1.2.1.11	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S11		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS11
-Cre12.g552050			Chloroplast			
-Cre12.g526051			Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g550000						
-Cre12.g555850						
-Cre12.g511200	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOS5
-Cre12.g522450	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Secretory pathway			SEC31
-Cre12.g553100			Mitochondrion			
-Cre12.g521800			Mitochondrion			
-Cre12.g542050			Chloroplast			
-Cre12.g493350						
-Cre12.g501703			Secretory pathway			
-Cre12.g539650	GMM:26.16	misc.myrosinases-lectin-jacalin	Secretory pathway	GO:0055114	oxidation-reduction process	
-Cre12.g550400	GMM:21.4	redox.glutaredoxins		GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	GRX2
-Cre12.g542550			Secretory pathway	GO:0008270	zinc ion binding	
-Cre12.g501750						
-Cre12.g541050			Secretory pathway			
-Cre12.g527550						
-Cre12.g545750	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g559555	GMM:11.8.10	"lipid metabolism.exotics (steroids, squalene etc).phosphatidylcholine-sterol O-acyltransferase"	Mitochondrion	GO:0008374;GO:0006629	O-acyltransferase activity;lipid metabolic process	
-Cre12.g554450			Mitochondrion			
-Cre12.g504250	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre12.g536350						
-Cre12.g486209	GMM:20.2.1	stress.abiotic.heat				
-Cre12.g485438				GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	
-Cre12.g545500						
-Cre12.g525000				GO:0055114	oxidation-reduction process	
-Cre12.g547150						
-Cre12.g544600			Secretory pathway			
-Cre12.g514050	GMM:12.2.1.1	N-metabolism.ammonia metabolism.glutamate synthase.ferredoxin dependent	Chloroplast	GO:0055114;GO:0016638;GO:0016491;GO:0015930;GO:0008152;GO:0006807;GO:0006537	"oxidation-reduction process;oxidoreductase activity, acting on the CH-NH2 group of donors;oxidoreductase activity;glutamate synthase activity;metabolic process;nitrogen compound metabolic process;glutamate biosynthetic process"	GSF1
-Cre12.g493950	GMM:29.2.1.1.1.1.13	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S13	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723	translation;ribosome;intracellular;structural constituent of ribosome;RNA binding	PRPS13
-Cre12.g550750			Mitochondrion			
-Cre12.g534945			Secretory pathway			
-Cre12.g518000	GMM:29.3.3	protein.targeting.chloroplast		GO:0017038;GO:0016020;GO:0005524	protein import;membrane;ATP binding	SECA2
-Cre12.g523400						
-Cre12.g538550			Mitochondrion			
-Cre12.g507002			Secretory pathway			
-Cre12.g518900	GMM:3.5	minor CHO metabolism.others	Chloroplast			
-Cre12.g540350	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway	GO:0030014;GO:0006402	CCR4-NOT complex;mRNA catabolic process	RCD2
-Cre12.g551200			Chloroplast	GO:2001070	starch binding	
-Cre12.g551550			Chloroplast	GO:0008270;GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0003676;GO:0000723	zinc ion binding;DNA repair;ATP binding;helicase activity;DNA helicase activity;nucleic acid binding;telomere maintenance	
-Cre12.g528450	GMM:13.2.1.2	amino acid metabolism.degradation.central amino acid metabolism.aspartate	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	ASO1
-Cre12.g509450			Secretory pathway			
-Cre12.g517050						FAP117
-Cre12.g489001	GMM:29.4	protein.postranslational modification				
-Cre12.g548391			Chloroplast			
-Cre12.g505950	GMM:34.9;GMM:29.3.99	transport.metabolite transporters at the mitochondrial membrane;protein.targeting.unknown	Mitochondrion	GO:0015031;GO:0005744;GO:0005743	protein transport;mitochondrial inner membrane presequence translocase complex;mitochondrial inner membrane	TIM50
-Cre12.g551950			Chloroplast			CGL38
-Cre12.g506850						
-Cre12.g489900	GMM:30.1.1;GMM:23.1.2	signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG54
-Cre12.g540500	GMM:31.1	cell.organisation		GO:0016559;GO:0005779	peroxisome fission;integral component of peroxisomal membrane	CGL108
-Cre12.g524300	GMM:35.1.27	not assigned.no ontology.tetratricopeptide repeat (TPR)	Chloroplast			CGL71
-Cre12.g523300	GMM:29.7	protein.glycosylation	Secretory pathway	GO:0016021;GO:0006486;GO:0005783;GO:0004579	integral component of membrane;protein glycosylation;endoplasmic reticulum;dolichyl-diphosphooligosaccharide-protein glycotransferase activity	GTR22
-Cre12.g531350			Mitochondrion			CGL62
-Cre12.g502901	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI	Mitochondrion			
-Cre12.g512250	GMM:28.1	DNA.synthesis/chromatin structure		GO:0008408;GO:0006139;GO:0005622;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;intracellular;nucleic acid binding	RRP7
-Cre12.g526150			Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g518107	GMM:31.6.1.10;GMM:27.3.67	cell.motility.eukaryotes.flagellar associated proteins;RNA.regulation of transcription.putative transcription regulator				
-Cre12.g528650			Chloroplast			
-Cre12.g500715	GMM:11.1.9	lipid metabolism.FA synthesis and FA elongation.long chain fatty acid CoA ligase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	
-Cre12.g498050	GMM:27.1.3.4;GMM:27.1	RNA.processing.3' end processing.CPSF73a;RNA.processing				CPS3
-Cre12.g541300	GMM:33.99;GMM:31.1;GMM:29.5.9	development.unspecified;cell.organisation;protein.degradation.AAA type	Mitochondrion	GO:0005524	ATP binding	
-Cre12.g539100	GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL57
-Cre12.g484800	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g545100			Mitochondrion			
-Cre12.g489850	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre12.g519950	GMM:31.6.1.6.2;GMM:23.4.1	cell.motility.eukaryotes.central pair.C1b;nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase		GO:0019205;GO:0006508;GO:0006139;GO:0005622;GO:0005524;GO:0004198	nucleobase-containing compound kinase activity;proteolysis;nucleobase-containing compound metabolic process;intracellular;ATP binding;calcium-dependent cysteine-type endopeptidase activity	FAP42
-Cre12.g527700	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG19
-Cre12.g527400	GMM:4.1.12	glycolysis.cytosolic branch.phosphoglycerate mutase		GO:0046872;GO:0046537;GO:0003824	"metal ion binding;2,3-bisphosphoglycerate-independent phosphoglycerate mutase activity;catalytic activity"	PGM9
-Cre12.g541252						
-Cre12.g550500						
-Cre12.g493750	GMM:29.4	protein.postranslational modification	Secretory pathway			
-Cre12.g509350			Chloroplast			FAP238
-Cre12.g513852						
-Cre12.g559704			Mitochondrion			
-Cre12.g556300	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				CFAP300
-Cre12.g551503			Mitochondrion			
-Cre12.g556650	GMM:31.2;GMM:29.5.11.4.4	cell.division;protein.degradation.ubiquitin.E3.APC		GO:0031145;GO:0030071;GO:0005680	anaphase-promoting complex-dependent proteasomal ubiquitin-dependent protein catabolic process;regulation of mitotic metaphase/anaphase transition;anaphase-promoting complex	APC4
-Cre12.g528400	GMM:29.5.11.4.2;GMM:27.3.11	protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.C2H2 zinc finger family				
-Cre12.g497300	GMM:3.3;GMM:1.1.40	minor CHO metabolism.sugar alcohols;PS.lightreaction.cyclic electron flow-chlororespiration	Chloroplast			CAS1
-Cre12.g497750	GMM:3.2.2	minor CHO metabolism.trehalose.TPP	Mitochondrion	GO:0005992;GO:0003824	trehalose biosynthetic process;catalytic activity	TPS2
-Cre12.g506500	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR19
-Cre12.g550800	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure	Mitochondrion	GO:0006281;GO:0003684	DNA repair;damaged DNA binding	REV1
-Cre12.g543650			Mitochondrion			
-Cre12.g546500			Secretory pathway	GO:0016021	integral component of membrane	TEF22
-Cre12.g533950	GMM:34.12	transport.metal	Mitochondrion			COT1
-Cre12.g514100				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g503650			Mitochondrion			
-Cre12.g489700	GMM:13.1.2.3.21;GMM:13.1.2.3	amino acid metabolism.synthesis.glutamate family.arginine.ornithine carbamoyltransferase;amino acid metabolism.synthesis.glutamate family.arginine	Chloroplast	GO:0016743;GO:0016597;GO:0006520	carboxyl- or carbamoyltransferase activity;amino acid binding;cellular amino acid metabolic process	OTC1
-Cre12.g495000						
-Cre12.g491300			Chloroplast			
-Cre12.g499450						
-Cre12.g517925			Mitochondrion			
-Cre12.g528050			Chloroplast			
-Cre12.g505900			Secretory pathway			
-Cre12.g507004			Secretory pathway			
-Cre12.g521500						
-Cre12.g538376			Mitochondrion			
-Cre12.g506851	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	BBS3A
-Cre12.g522250	GMM:26.17	misc.dynamin				
-Cre12.g513254	GMM:28.2	DNA.repair				
-Cre12.g517200						
-Cre12.g484150	GMM:26.13;GMM:15.2	"misc.acid and other phosphatases;metal handling.binding, chelation and storage"				
-Cre12.g558800						
-Cre12.g544662			Secretory pathway			
-Cre12.g524150	GMM:28.2	DNA.repair		GO:0006281;GO:0003684	DNA repair;damaged DNA binding	POLH2
-Cre12.g485418						
-Cre12.g515100			Mitochondrion			
-Cre12.g546633			Mitochondrion			
-Cre12.g545400						
-Cre12.g496700	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRX17
-Cre12.g539076			Mitochondrion			
-Cre12.g559750	GMM:20.2.99;GMM:20.1.7;GMM:20.1;GMM:2.1	stress.abiotic.unspecified;stress.biotic.PR-proteins;stress.biotic;major CHO metabolism.synthesis	Secretory pathway			PRL2
-Cre12.g557950	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ27
-Cre12.g508000	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast.Membrane.Inner			TIC40
-Cre12.g493200			Mitochondrion			
-Cre12.g539181						
-Cre12.g500250						
-Cre12.g503050			Secretory pathway			
-Cre12.g507450	GMM:31.4	cell.vesicle transport		GO:0005515	protein binding	SYP4
-Cre12.g524700						HAD4
-Cre12.g518200	GMM:21.1.1;GMM:21.1	redox.thioredoxin.PDIL;redox.thioredoxin	Secretory pathway	GO:0045454	cell redox homeostasis	DNJ3
-Cre12.g494150			Chloroplast			
-Cre12.g518750	GMM:27.1.1	RNA.processing.splicing	Secretory pathway			
-Cre12.g513350			Secretory pathway			
-Cre12.g515400						
-Cre12.g495138			Secretory pathway			
-Cre12.g517550	GMM:27.1	RNA.processing				
-Cre12.g483550	GMM:29.5.3;GMM:29.3.4.3	protein.degradation.cysteine protease;protein.targeting.secretory pathway.vacuole	Mitochondrion	GO:0008233;GO:0006508	peptidase activity;proteolysis	VPE1
-Cre12.g550250	GMM:27.3.17	RNA.regulation of transcription.CPP(Zn) CPP1-related transcription factor family	Secretory pathway			
-Cre12.g546000			Mitochondrion			MRPL54
-Cre12.g540502			Secretory pathway			
-Cre12.g547800	GMM:26.11.1;GMM:26.11;GMM:16.8.3	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	SNE15
-Cre12.g499300	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Chloroplast	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE31
-Cre12.g485350						
-Cre12.g485950	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family	Secretory pathway			
-Cre12.g522700			Secretory pathway			
-Cre12.g558450	GMM:22.1.6	polyamine metabolism.synthesis.spermidine synthase				SPD1
-Cre12.g532300			Chloroplast			ATG10
-Cre12.g483850						
-Cre12.g508700	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases		GO:0016021;GO:0015012;GO:0006024	integral component of membrane;heparan sulfate proteoglycan biosynthetic process;glycosaminoglycan biosynthetic process	ELG2
-Cre12.g519350	GMM:31.3;GMM:31.2	cell.cycle;cell.division		GO:0016020	membrane	PHB2
-Cre12.g545550			Chloroplast			
-Cre12.g505151						
-Cre12.g495600						
-Cre12.g499650						
-Cre12.g511900	GMM:1.3.11	PS.calvin cycle.RPE	Chloroplast	GO:0016857;GO:0005975	"racemase and epimerase activity, acting on carbohydrates and derivatives;carbohydrate metabolic process"	RPE1
-Cre12.g498300			Chloroplast			
-Cre12.g518950	GMM:4.1.12;GMM:26.13	glycolysis.cytosolic branch.phosphoglycerate mutase;misc.acid and other phosphatases				PGM13
-Cre12.g487402						CSB43
-Cre12.g549400			Chloroplast			
-Cre12.g532100						
-Cre12.g544850						
-Cre12.g522500			Mitochondrion			
-Cre12.g485750						CGL128
-Cre12.g545177	GMM:31.2	cell.division	Mitochondrion	GO:0006412	translation	
-Cre12.g500900	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0031668;GO:0019789;GO:0016925;GO:0016049;GO:0008270;GO:0005634;GO:0005515	cellular response to extracellular stimulus;SUMO transferase activity;protein sumoylation;cell growth;zinc ion binding;nucleus;protein binding	
-Cre12.g556905	GMM:28.2	DNA.repair	Chloroplast			
-Cre12.g542800	GMM:27.2	RNA.transcription		GO:0032549;GO:0006351;GO:0003899;GO:0003677	"ribonucleoside binding;transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPC2
-Cre12.g507150						
-Cre12.g543100	GMM:29.2.3	protein.synthesis.initiation		GO:0031515;GO:0030488	tRNA (m1A) methyltransferase complex;tRNA methylation	
-Cre12.g486800						
-Cre12.g525350			Secretory pathway			
-Cre12.g501550			Chloroplast			
-Cre12.g502950	GMM:35.1.14	not assigned.no ontology.S RNA-binding domain-containing protein		GO:0003723	RNA binding	CPL15
-Cre12.g540950			Chloroplast			
-Cre12.g499000						
-Cre12.g527050	GMM:34.99;GMM:29.3.4.99;GMM:28.99	transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified				
-Cre12.g561602						
-Cre12.g556600	GMM:4.1.9	glycolysis.cytosolic branch.non-phosphorylating glyceraldehyde 3-phosphate dehydrogenase (NPGAP-DH)		GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	GAPN1
-Cre12.g551501						
-Cre12.g537350			Secretory pathway			NZP1
-Cre12.g510750			Mitochondrion			
-Cre12.g530050	GMM:3.4.5;GMM:28.1	minor CHO metabolism.myo-inositol.inositol phosphatase;DNA.synthesis/chromatin structure	Mitochondrion			
-Cre12.g561300			Chloroplast	GO:0005815	microtubule organizing center	
-Cre12.g549200						
-Cre12.g559550			Chloroplast			
-Cre12.g537900						
-Cre12.g516300						CGL154
-Cre12.g488351			Secretory pathway			
-Cre12.g544113			Mitochondrion	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	
-Cre12.g533550	GMM:4.3.14;GMM:4.2.14;GMM:4.1.14;GMM:11.1.30	glycolysis.unclear/dually targeted.pyruvate kinase (PK);glycolysis.plastid branch.pyruvate kinase (PK);glycolysis.cytosolic branch.pyruvate kinase (PK);lipid metabolism.FA synthesis and FA elongation.pyruvate kinase		GO:0030955;GO:0006096;GO:0004743;GO:0000287	potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding	PYK1
-Cre12.g555050	GMM:28.1	DNA.synthesis/chromatin structure		GO:0004518;GO:0003677	nuclease activity;DNA binding	MUS81
-Cre12.g525450						
-Cre12.g512400				GO:0008134;GO:0006355;GO:0005524	"transcription factor binding;regulation of transcription, DNA-templated;ATP binding"	
-Cre12.g492350						
-Cre12.g503400	GMM:27.1.1;GMM:27.1	RNA.processing.splicing;RNA.processing				PRP38
-Cre12.g537400	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g555300			Mitochondrion			
-Cre12.g545703			Chloroplast			
-Cre12.g526383				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g484500	GMM:31.1	cell.organisation				
-Cre12.g505650						
-Cre12.g542750						
-Cre12.g520700						
-Cre12.g505800	GMM:30.99;GMM:27.3.67	signalling.unspecified;RNA.regulation of transcription.putative transcription regulator		GO:0055085;GO:0016020	transmembrane transport;membrane	MSC6
-Cre12.g500050				GO:0005515	protein binding	
-Cre12.g517850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	zinc ion binding	
-Cre12.g521000			Chloroplast			
-Cre12.g553700				GO:0015035	protein disulfide oxidoreductase activity	PDO2
-Cre12.g507650	GMM:29.9;GMM:29.6.2.6;GMM:20.2.1	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat	Chloroplast	GO:0051082;GO:0031072	unfolded protein binding;heat shock protein binding	CDJ1
-Cre12.g527800	GMM:31.6.1.4.1;GMM:31.1	cell.motility.eukaryotes.axonemal dyneins.outer arm;cell.organisation		GO:0007017;GO:0005875	microtubule-based process;microtubule associated complex	DLL3
-Cre12.g486450			Chloroplast			
-Cre12.g507333						
-Cre12.g559150	GMM:29.5	protein.degradation	Chloroplast	GO:0030163	protein catabolic process	CLPS2
-Cre12.g551250	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g530900	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre12.g535050	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity	
-Cre12.g508500	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			
-Cre12.g532500	GMM:34.14	transport.unspecified cations	Chloroplast	GO:0016020	membrane	
-Cre12.g517976						
-Cre12.g548650						BBS4
-Cre12.g539201			Secretory pathway			
-Cre12.g491951			Secretory pathway			
-Cre12.g502400			Secretory pathway			
-Cre12.g514550			Chloroplast			
-Cre12.g486851			Chloroplast			
-Cre12.g520600	GMM:29.2.1.99.1.6	protein.synthesis.ribosomal protein.unknown.small subunit.S6	Chloroplast	GO:0019843;GO:0006412;GO:0005840;GO:0003735	rRNA binding;translation;ribosome;structural constituent of ribosome	PRPS6
-Cre12.g511750						FAP105
-Cre12.g490800	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g510550	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
-Cre12.g490250	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation				
-Cre12.g546850	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)	Mitochondrion	GO:0016021	integral component of membrane	
-Cre12.g526701	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	RBL9
-Cre12.g542500	GMM:27.2	RNA.transcription	Mitochondrion	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	MOC1
-Cre12.g519150	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0016567;GO:0005515;GO:0004842	protein ubiquitination;protein binding;ubiquitin-protein transferase activity	
-Cre12.g553500			Mitochondrion			ANK15
-Cre12.g555750			Secretory pathway			CPK7
-Cre12.g558550	GMM:28.2	DNA.repair	Chloroplast			CPLD60
-Cre12.g541800	GMM:29.5	protein.degradation	Chloroplast	GO:0070008;GO:0008236;GO:0006508;GO:0004252	serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity	
-Cre12.g544750			Chloroplast			
-Cre12.g488752						
-Cre12.g525100	GMM:31.2	cell.division				SMC6B
-Cre12.g501702						
-Cre12.g554750				GO:0005515	protein binding	
-Cre12.g538650	GMM:19.30;GMM:19.3	tetrapyrrole synthesis.urogen III methylase;tetrapyrrole synthesis.GSA	Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	HEM4
-Cre12.g556000			Secretory pathway			ECP88
-Cre12.g495900			Mitochondrion			
-Cre12.g535900	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	ARL1
-Cre12.g542350	GMM:20	stress		GO:0006950	response to stress	
-Cre12.g522000			Mitochondrion;Chloroplast			
-Cre12.g526200			Chloroplast			
-Cre12.g498450	GMM:31.2;GMM:27.3.99;GMM:20.2.5	cell.division;RNA.regulation of transcription.unclassified;stress.abiotic.light				
-Cre12.g532600	GMM:3.5	minor CHO metabolism.others	Chloroplast			CGL44
-Cre12.g541600			Chloroplast			
-Cre12.g531950	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
-Cre12.g537200	GMM:8.1.5	TCA / organic transformation.TCA.2-oxoglutarate dehydrogenase	Mitochondrion	GO:0055114;GO:0030976;GO:0016624;GO:0008152;GO:0006099;GO:0004591	"oxidation-reduction process;thiamine pyrophosphate binding;oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor;metabolic process;tricarboxylic acid cycle;oxoglutarate dehydrogenase (succinyl-transferring) activity"	OGD1
-Cre12.g504150	GMM:29.8	protein.assembly and cofactor ligation	Mitochondrion	GO:0051536;GO:0016226;GO:0005506	iron-sulfur cluster binding;iron-sulfur cluster assembly;iron ion binding	NFU2
-Cre12.g526388						
-Cre12.g536251						
-Cre12.g544551						
-Cre12.g509800	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP286
-Cre12.g544200	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Mitochondrion	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN13
-Cre12.g530150			Mitochondrion			
-Cre12.g528950	GMM:27.4	RNA.RNA binding		GO:0003723	RNA binding	PUF1
-Cre12.g520800						
-Cre12.g537750	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
-Cre12.g512050				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g532850			Secretory pathway	GO:0016020;GO:0004970	membrane;ionotropic glutamate receptor activity	PHR3
-Cre12.g560700	GMM:29.9;GMM:29.6.2.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones	Mitochondrion			CDJ6
-Cre12.g515600			Secretory pathway			
-Cre12.g551700						
-Cre12.g528150			Secretory pathway			OST3
-Cre12.g520150	GMM:27.1.2	RNA.processing.RNA helicase		GO:0005524;GO:0004386;GO:0003676	ATP binding;helicase activity;nucleic acid binding	
-Cre12.g558353			Secretory pathway			
-Cre12.g513750	GMM:21.4	redox.glutaredoxins		GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	GRX1
-Cre12.g548577						
-Cre12.g531700	GMM:23.2	nucleotide metabolism.degradation	Mitochondrion	GO:0032264;GO:0019239;GO:0003876	IMP salvage;deaminase activity;AMP deaminase activity	
-Cre12.g502650						
-Cre12.g548300			Secretory pathway			
-Cre12.g530450	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway			
-Cre12.g492954			Mitochondrion			
-Cre12.g552827	GMM:29.5.7	protein.degradation.metalloprotease				umm15
-Cre12.g490350	GMM:16.1.1.6	secondary metabolism.isoprenoids.non-mevalonate pathway.HDS		GO:0055114;GO:0046429;GO:0016114	oxidation-reduction process;4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase activity;terpenoid biosynthetic process	HDS1
-Cre12.g540100						
-Cre12.g523500	GMM:9.1.2;GMM:29.5	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;protein.degradation	Secretory pathway			DER1
-Cre12.g532350	GMM:29.5.7	protein.degradation.metalloprotease		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV8
-Cre12.g540450						
-Cre12.g536600	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP78
-Cre12.g524600			Secretory pathway			
-Cre12.g507001						
-Cre12.g520100	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG66
-Cre12.g526471						
-Cre12.g523250	GMM:34.99;GMM:34.16	transport.misc;transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
-Cre12.g496302						
-Cre12.g498150						
-Cre12.g536450			Chloroplast			
-Cre12.g506050	GMM:27.1.3.8	RNA.processing.3' end processing.CstF77		GO:0006397;GO:0005634	mRNA processing;nucleus	
-Cre12.g531250			Mitochondrion	GO:0071949	FAD binding	
-Cre12.g495100	GMM:27.3.26;GMM:27.3.25;GMM:27.3.20	RNA.regulation of transcription.MYB-related transcription factor family;RNA.regulation of transcription.MYB domain transcription factor family;RNA.regulation of transcription.G2-like transcription factor family (GARP)				PSR1
-Cre12.g524250			Chloroplast			
-Cre12.g547700	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0006464	cellular protein modification process	TTL14
-Cre12.g558600						
-Cre12.g487900	GMM:21.99	redox.misc		GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX9
-Cre12.g484600	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases	Chloroplast			DMC6
-Cre12.g495958						
-Cre12.g557400	GMM:28.2	DNA.repair		GO:0006289;GO:0005634;GO:0003684;GO:0003677	nucleotide-excision repair;nucleus;damaged DNA binding;DNA binding	
-Cre12.g559300			Chloroplast			ARM1
-Cre12.g519450	GMM:11.6	lipid metabolism.lipid transfer proteins etc		GO:0051861;GO:0046836;GO:0017089;GO:0005737	glycolipid binding;glycolipid transport;glycolipid transporter activity;cytoplasm	
-Cre12.g526500				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g534876						
-Cre12.g550150						
-Cre12.g497150						
-Cre12.g554103			Mitochondrion	GO:0005515	protein binding	CGL74
-Cre12.g515000			Mitochondrion			
-Cre12.g537671	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors		GO:0008270;GO:0005524	zinc ion binding;ATP binding	
-Cre12.g503900			Chloroplast			
-Cre12.g518800			Secretory pathway			
-Cre12.g519050			Chloroplast			
-Cre12.g495500			Chloroplast			
-Cre12.g553650				GO:0015035	protein disulfide oxidoreductase activity	
-Cre12.g507350						
-Cre12.g524350				GO:0030896;GO:0006281;GO:0000077	checkpoint clamp complex;DNA repair;DNA damage checkpoint	HUS1
-Cre12.g501800						
-Cre12.g539209			Mitochondrion			
-Cre12.g519750			Mitochondrion			
-Cre12.g552500			Chloroplast			
-Cre12.g533100			Secretory pathway			
-Cre12.g530100						CGL83
-Cre12.g489650			Mitochondrion			
-Cre12.g493500	GMM:13.1.5.2.41	amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.sarcosine oxidase	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	SOX1
-Cre12.g548201						
-Cre12.g493450						
-Cre12.g531600			Secretory pathway			
-Cre12.g548750						
-Cre12.g523200	GMM:33.99	development.unspecified		GO:0005515	protein binding	NURF55
-Cre12.g551352						
-Cre12.g547351			Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
-Cre12.g547302			Secretory pathway			
-Cre12.g507909			Mitochondrion			
-Cre12.g561000	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN28
-Cre12.g550468			Mitochondrion			
-Cre12.g516950	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				SAS6
-Cre12.g531150						
-Cre12.g509550	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE5
-Cre12.g500400						
-Cre12.g497900			Secretory pathway			
-Cre12.g507558			Chloroplast	GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	
-Cre12.g534151	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006281;GO:0004518	DNA repair;nuclease activity	
-Cre12.g489050	GMM:11.3.3;GMM:11.3	lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase;lipid metabolism.phospholipid synthesis				PCT2
-Cre12.g507007			Mitochondrion			
-Cre12.g544952						
-Cre12.g511640			Secretory pathway	GO:0006506;GO:0005789	GPI anchor biosynthetic process;endoplasmic reticulum membrane	PIGX
-Cre12.g517451	GMM:29.5	protein.degradation		GO:0006508;GO:0004197	proteolysis;cysteine-type endopeptidase activity	
-Cre12.g529725			Secretory pathway			
-Cre12.g521650	GMM:11.7	lipid metabolism.unassigned	Chloroplast	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
-Cre12.g532867						
-Cre12.g560300	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre12.g526295				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g522800						
-Cre12.g492850			Secretory pathway			
-Cre12.g490000	GMM:29.2.3	protein.synthesis.initiation		GO:0005850;GO:0003743;GO:0003723;GO:0003676	eukaryotic translation initiation factor 2 complex;translation initiation factor activity;RNA binding;nucleic acid binding	EIF2A
-Cre12.g492152						
-Cre12.g515301			Mitochondrion			
-Cre12.g521400				GO:0009236;GO:0003824	cobalamin biosynthetic process;catalytic activity	
-Cre12.g483476			Mitochondrion			
-Cre12.g557500			Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	
-Cre12.g514250	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family		GO:0055114;GO:0016706;GO:0005515;GO:0003677	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors;protein binding;DNA binding"	HLM17
-Cre12.g560400	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003723	RNA binding	DNJ16
-Cre12.g525550				GO:0016787	hydrolase activity	MPA10
-Cre12.g530000	GMM:30.6;GMM:3.6	signalling.MAP kinases;minor CHO metabolism.callose		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g489150						SHD1
-Cre12.g529250						
-Cre12.g508853						BPL2
-Cre12.g529200			Mitochondrion			
-Cre12.g522626			Mitochondrion			
-Cre12.g542627			Mitochondrion			
-Cre12.g552850	GMM:13.2.5.2	amino acid metabolism.degradation.serine-glycine-cysteine group.glycine	Mitochondrion			CGL77
-Cre12.g522100	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified				
-Cre12.g518100						
-Cre12.g505200	GMM:29.2.3;GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL51
-Cre12.g538450	GMM:26.1;GMM:11.3	misc.misc2;lipid metabolism.phospholipid synthesis	Secretory pathway	GO:0016780;GO:0016020;GO:0008654	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	EPT1
-Cre12.g528600						CSB47
-Cre12.g543050						
-Cre12.g543302	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
-Cre12.g495300	GMM:13.1.7.4;GMM:13.1.7.3	amino acid metabolism.synthesis.histidine.bifunctional phosphoribosyl-ATP pyrophosphatase / phosphoribosyl-AMP cyclohydrolase;amino acid metabolism.synthesis.histidine.phosphoribosyl-AMP cyclohydrolase	Chloroplast	GO:0000105	histidine biosynthetic process	HIS6
-Cre12.g485478						
-Cre12.g487250	GMM:27.3.99;GMM:20.1;GMM:2.1	RNA.regulation of transcription.unclassified;stress.biotic;major CHO metabolism.synthesis	Mitochondrion			
-Cre12.g507250	GMM:31.2;GMM:27.1.19	cell.division;RNA.processing.ribonucleases				
-Cre12.g538492			Mitochondrion			
-Cre12.g545950	GMM:30.2.23;GMM:29.4.1.57;GMM:29.4.1.56;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.RKF3 like;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VI;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK9
-Cre12.g527300	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005524	ATP binding	RFC5
-Cre12.g510600	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g530950	GMM:33.1	development.storage proteins		GO:0006629	lipid metabolic process	TGL18
-Cre12.g492400						
-Cre12.g531850			Chloroplast			
-Cre12.g555650			Chloroplast			
-Cre12.g498850	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP12
-Cre12.g510252			Mitochondrion			
-Cre12.g541352	GMM:11.9.2.1;GMM:11.9.2	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase;lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	LIP1
-Cre12.g488550						
-Cre12.g524850			Mitochondrion			
-Cre12.g501050	GMM:27.1	RNA.processing				ALD6
-Cre12.g508233			Secretory pathway			
-Cre12.g544300						
-Cre12.g494800						DII1
-Cre12.g561500			Chloroplast			
-Cre12.g499100	GMM:29.3.4.2	protein.targeting.secretory pathway.golgi		GO:0005515;GO:0000042	protein binding;protein targeting to Golgi	
-Cre12.g497000						FAP14
-Cre12.g512350			Mitochondrion			
-Cre12.g486700						FAP271
-Cre12.g541850						
-Cre12.g504600	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO15
-Cre12.g555951	GMM:23.5.3	nucleotide metabolism.deoxynucleotide metabolism.cytosine deaminase		GO:0008270	zinc ion binding	RFD1
-Cre12.g545704						
-Cre12.g527100	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0005524	ATPase activity;ATP binding	
-Cre12.g511000			Mitochondrion			
-Cre12.g496500			Secretory pathway			PHC70
-Cre12.g501250						
-Cre12.g524950	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others	Mitochondrion	GO:0005525	GTP binding	
-Cre12.g516800	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g559700			Chloroplast			
-Cre12.g521600						
-Cre12.g556800			Mitochondrion			
-Cre12.g508643			Chloroplast			
-Cre12.g530600	GMM:12.2.2	N-metabolism.ammonia metabolism.glutamine synthetase	Chloroplast	GO:0006807;GO:0006542;GO:0004356	nitrogen compound metabolic process;glutamine biosynthetic process;glutamate-ammonia ligase activity	GLN3
-Cre12.g488173			Chloroplast			
-Cre12.g516717			Secretory pathway			
-Cre12.g513450	GMM:31.1	cell.organisation	Mitochondrion	GO:0007017;GO:0005874;GO:0003924	microtubule-based process;microtubule;GTPase activity	TUH1
-Cre12.g484100	GMM:27.2	RNA.transcription				RPC19
-Cre12.g525990			Chloroplast			HCS5
-Cre12.g504400			Mitochondrion			
-Cre12.g526111				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g533700	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity	cya12
-Cre12.g554250			Chloroplast	GO:0070569;GO:0008152	uridylyltransferase activity;metabolic process	LPB1
-Cre12.g511050	GMM:31.6.1.5.2;GMM:20.2.1	cell.motility.eukaryotes.radial spoke.stalk;stress.abiotic.heat				RSP16
-Cre12.g542900	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g541500						
-Cre12.g499750	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre12.g532700						
-Cre12.g549350			Chloroplast			
-Cre12.g528250						FAP379
-Cre12.g537100	GMM:29.1.9;GMM:29.1	protein.aa activation.valine-tRNA ligase;protein.aa activation		GO:0006438;GO:0006418;GO:0005524;GO:0004832;GO:0004812;GO:0000166	valyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;ATP binding;valine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	TSV2
-Cre12.g555400			Chloroplast			CGLD32
-Cre12.g552005	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			
-Cre12.g550550	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG48
-Cre12.g513600	GMM:29.5.11.2;GMM:29.4	protein.degradation.ubiquitin.E1;protein.postranslational modification		GO:0005515	protein binding	
-Cre12.g513150	GMM:29.3.2	protein.targeting.mitochondria				MIA40
-Cre12.g559000	GMM:27.1	RNA.processing	Secretory pathway			
-Cre12.g530350	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	IRT2
-Cre12.g554953	GMM:9.3	mitochondrial electron transport / ATP synthesis.electron transfer flavoprotein		GO:0009055	electron carrier activity	ETF2
-Cre12.g547300	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre12.g519850			Mitochondrion			
-Cre12.g489400	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB7
-Cre12.g486950			Secretory pathway			CSV7
-Cre12.g501403	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0016021;GO:0006952	integral component of membrane;defense response	MLO2
-Cre12.g514800			Chloroplast	GO:0005737	cytoplasm	
-Cre12.g503550	GMM:16.1.1.5	secondary metabolism.isoprenoids.non-mevalonate pathway.MCS	Chloroplast	GO:0016114;GO:0008685	"terpenoid biosynthetic process;2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase activity"	MEC1
-Cre12.g484300						
-Cre12.g516350	GMM:29.8;GMM:19.99	protein.assembly and cofactor ligation;tetrapyrrole synthesis.unspecified	Secretory pathway	GO:0016021;GO:0004659	integral component of membrane;prenyltransferase activity	COX10
-Cre12.g504050			Secretory pathway	GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	LAG2
-Cre12.g490700				GO:0005515	protein binding	MIN1
-Cre12.g538801						
-Cre12.g507550			Chloroplast			OPR3
-Cre12.g503500			Secretory pathway	GO:0016020	membrane	
-Cre12.g499301			Secretory pathway			
-Cre12.g503750						FMO14
-Cre12.g490150	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure	Mitochondrion	GO:0043140;GO:0006281;GO:0006260;GO:0005622;GO:0005524;GO:0003676	ATP-dependent 3'-5' DNA helicase activity;DNA repair;DNA replication;intracellular;ATP binding;nucleic acid binding	HEL48
-Cre12.g511950	GMM:30.2.12;GMM:30.2.11;GMM:29.4.1	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;protein.postranslational modification.kinase	Secretory pathway			
-Cre12.g520500	GMM:29.2.1.2.2.80	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.P0		GO:0042254;GO:0005622	ribosome biogenesis;intracellular	RPP0
-Cre12.g501000	GMM:34.8	transport.metabolite transporters at the envelope membrane	Secretory pathway	GO:0055085	transmembrane transport	
-Cre12.g529050			Mitochondrion			
-Cre12.g520950	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm		GO:0005515	protein binding	DIC4
-Cre12.g535250			Mitochondrion			
-Cre12.g502500	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG34
-Cre12.g536000	GMM:34.99;GMM:34.1;GMM:27.3.35	transport.misc;transport.p- and v-ATPases;RNA.regulation of transcription.bZIP transcription factor family		GO:0046872;GO:0016021;GO:0015914;GO:0005524;GO:0004012;GO:0000287;GO:0000166	metal ion binding;integral component of membrane;phospholipid transport;ATP binding;phospholipid-translocating ATPase activity;magnesium ion binding;nucleotide binding	ALA2
-Cre12.g518400			Mitochondrion			
-Cre12.g484900						FAP83
-Cre12.g499550			Chloroplast			
-Cre12.g496550						
-Cre12.g547900	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP27
-Cre12.g558350						
-Cre12.g552100			Chloroplast			
-Cre12.g535500						
-Cre12.g554051	GMM:30.2.8.1;GMM:30.2.20;GMM:30.2.19;GMM:30.2.10;GMM:30.2.1;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 1;signalling.receptor kinases.wheat LRK10 like;signalling.receptor kinases.legume-lectin;signalling.receptor kinases.leucine rich repeat X;signalling.receptor kinases.leucine rich repeat I;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g494500	GMM:31.3;GMM:31.2;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	LF2
-Cre12.g516050				GO:0005515	protein binding	
-Cre12.g546027			Secretory pathway			
-Cre12.g558900	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast			PETO
-Cre12.g488500	GMM:20.2.1	stress.abiotic.heat	Chloroplast			ARC6
-Cre12.g549427			Mitochondrion			
-Cre12.g507850			Chloroplast			
-Cre12.g515700			Chloroplast			
-Cre12.g558250				GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	SNR7
-Cre12.g561200						COPZ2
-Cre12.g509100						FAP307
-Cre12.g490650			Mitochondrion			
-Cre12.g544115						
-Cre12.g534400						
-Cre12.g505550	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA17
-Cre12.g514650	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Chloroplast			CNK6
-Cre12.g555001			Mitochondrion			
-Cre12.g548700			Chloroplast			
-Cre12.g510850			Chloroplast			CGL73
-Cre12.g520200			Chloroplast			CPL8
-Cre12.g539750						
-Cre12.g487500			Chloroplast			NYE1
-Cre12.g540051			Secretory pathway			
-Cre12.g553552			Mitochondrion			
-Cre12.g500450	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion			TPD1
-Cre12.g487600	GMM:27.1.3.3;GMM:27.1	RNA.processing.3' end processing.CPSF100;RNA.processing		GO:0006379;GO:0006378;GO:0005847	mRNA cleavage;mRNA polyadenylation;mRNA cleavage and polyadenylation specificity factor complex	CPS2
-Cre12.g546150	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast	GO:0009512	cytochrome b6f complex	PETM
-Cre12.g546700	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
-Cre12.g527918						
-Cre12.g532950				GO:0016020;GO:0004970	membrane;ionotropic glutamate receptor activity	
-Cre12.g514350						
-Cre12.g550277	GMM:34.14	transport.unspecified cations				MRS2
-Cre12.g511850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	GSK3
-Cre12.g531800	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			FAP7
-Cre12.g506250	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA18
-Cre12.g533900						
-Cre12.g522300			Secretory pathway			
-Cre12.g491200			Secretory pathway			
-Cre12.g552950						
-Cre12.g522650						
-Cre12.g515901			Chloroplast			
-Cre12.g538400	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899	"transcription, DNA-templated;DNA-directed RNA polymerase activity"	RPB4
-Cre12.g520450						SGT1
-Cre12.g547650						
-Cre12.g534700	GMM:29.6.3.1	protein.folding.immunophilins (IMM).FKBPs	Secretory pathway	GO:0006457	protein folding	FKB19
-Cre12.g495401	GMM:29.4	protein.postranslational modification	Chloroplast			
-Cre12.g493150	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			VKE1
-Cre12.g486208			Mitochondrion			
-Cre12.g539206			Mitochondrion			
-Cre12.g499950				GO:0016788;GO:0006886;GO:0006505	"hydrolase activity, acting on ester bonds;intracellular protein transport;GPI anchor metabolic process"	CPL18
-Cre12.g557750	GMM:11.4	lipid metabolism.TAG synthesis	Secretory pathway	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	DGTT1
-Cre12.g499204						
-Cre12.g501100	GMM:27.1.21;GMM:27.1	RNA.processing.siRNA methyltransferase;RNA.processing	Mitochondrion	GO:0008173;GO:0006396	RNA methyltransferase activity;RNA processing	
-Cre12.g532400						
-Cre12.g514850	GMM:29.6.2.4;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP90s;stress.abiotic.heat	Chloroplast.Stroma	GO:0051082;GO:0006950;GO:0006457;GO:0005524	unfolded protein binding;response to stress;protein folding;ATP binding	HSP90C
-Cre12.g506200	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB18
-Cre12.g487300	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB42
-Cre12.g523100	GMM:34.1	transport.p- and v-ATPases		GO:0016021;GO:0015693;GO:0015095	integral component of membrane;magnesium ion transport;magnesium ion transmembrane transporter activity	
-Cre12.g510400	GMM:29.8	protein.assembly and cofactor ligation	Chloroplast			CPLD30
-Cre12.g532314			Secretory pathway			
-Cre12.g559703						
-Cre12.g497250				GO:0005813;GO:0000922	centrosome;spindle pole	
-Cre12.g533750	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT	Mitochondrion	GO:0004842	ubiquitin-protein transferase activity	
-Cre12.g536100						FAP126
-Cre12.g526250	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g545650			Chloroplast			
-Cre12.g539700			Mitochondrion			
-Cre12.g523950			Secretory pathway	GO:0016021	integral component of membrane	
-Cre12.g516150			Mitochondrion	GO:0008080	N-acetyltransferase activity	
-Cre12.g542000	GMM:27.3.34	RNA.regulation of transcription.orphan family		GO:0019478;GO:0016788;GO:0005737	"D-amino acid catabolic process;hydrolase activity, acting on ester bonds;cytoplasm"	
-Cre12.g489500						
-Cre12.g505150			Mitochondrion			OPR52
-Cre12.g547750			Mitochondrion	GO:0097056;GO:0016785;GO:0016740	"selenocysteinyl-tRNA(Sec) biosynthetic process;transferase activity, transferring selenium-containing groups;transferase activity"	SPCS
-Cre12.g560250			Mitochondrion			
-Cre12.g496200	GMM:34.99	transport.misc				
-Cre12.g519550			Mitochondrion			OPR53
-Cre12.g553550						
-Cre12.g499850	GMM:29.4	protein.postranslational modification				CNK7
-Cre12.g540400	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0030014;GO:0006402	CCR4-NOT complex;mRNA catabolic process	RCD1
-Cre12.g526030				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g490750			Chloroplast			
-Cre12.g555803	GMM:9.2.2	mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NDA6
-Cre12.g507872			Chloroplast			
-Cre12.g548200						
-Cre12.g541150			Chloroplast			
-Cre12.g504500	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA15
-Cre12.g555800	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g527600			Mitochondrion	GO:0005515	protein binding	
-Cre12.g548500	GMM:29.4	protein.postranslational modification	Secretory pathway			
-Cre12.g553750	GMM:27.4;GMM:27.1.1	RNA.RNA binding;RNA.processing.splicing		GO:0045131;GO:0003723;GO:0003676;GO:0000398	"pre-mRNA branch point binding;RNA binding;nucleic acid binding;mRNA splicing, via spliceosome"	
-Cre12.g541100	GMM:29.5.3	protein.degradation.cysteine protease				OTU7
-Cre12.g528750	GMM:29.2.1.2.2.12	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L12		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL12
-Cre12.g552400			Mitochondrion			
-Cre12.g556500			Chloroplast			
-Cre12.g536301						
-Cre12.g486252						
-Cre12.g560800	GMM:17.2.1	hormone metabolism.auxin.synthesis-degradation	Secretory pathway	GO:0016787;GO:0008152	hydrolase activity;metabolic process	
-Cre12.g501450	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	SDIR1
-Cre12.g525050	GMM:31.2	cell.division				SMC6A
-Cre12.g494850	GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase	Chloroplast	GO:0019205;GO:0006139;GO:0005524	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding	ADK3
-Cre12.g551201			Secretory pathway	GO:0008080	N-acetyltransferase activity	
-Cre12.g504950	GMM:23.2	nucleotide metabolism.degradation				UOX1
-Cre12.g541350			Chloroplast			
-Cre12.g529651	GMM:29.2.1.2.2.57	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7A				RPL7A
-Cre12.g484400			Secretory pathway			
-Cre12.g528800						
-Cre12.g554550						
-Cre12.g494000	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	CGL82
-Cre12.g561450			Chloroplast	GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	
-Cre12.g530650	GMM:12.2.2	N-metabolism.ammonia metabolism.glutamine synthetase	Chloroplast	GO:0006807;GO:0006542;GO:0004356	nitrogen compound metabolic process;glutamine biosynthetic process;glutamate-ammonia ligase activity	GLN2
-Cre12.g503300	GMM:23.1.2.6	nucleotide metabolism.synthesis.purine.AIR carboxylase	Chloroplast	GO:0006189	'de novo' IMP biosynthetic process	
-Cre12.g518450				GO:0003677	DNA binding	
-Cre12.g498750	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase	Secretory pathway	GO:0006629	lipid metabolic process	LIP2
-Cre12.g540850			Secretory pathway			
-Cre12.g550700	GMM:23.1.2.3	nucleotide metabolism.synthesis.purine.GAR transformylase	Chloroplast	GO:0016742;GO:0009058	"hydroxymethyl-, formyl- and related transferase activity;biosynthetic process"	
-Cre12.g534930						
-Cre12.g550350			Mitochondrion			
-Cre12.g542250	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007017;GO:0005874;GO:0003924	microtubule-based process;microtubule;GTPase activity	TUB1
-Cre12.g492550			Chloroplast			
-Cre12.g539161						
-Cre12.g532200	GMM:33.99	development.unspecified				
-Cre12.g556228	GMM:9.2.2	mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NDA7
-Cre12.g498400			Chloroplast			
-Cre12.g559450				GO:0005515	protein binding	
-Cre12.g547001			Mitochondrion			
-Cre12.g544400	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification				
-Cre12.g543850				GO:0016592;GO:0006357;GO:0001104	mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity	
-Cre12.g538000						EZY5
-Cre12.g542202			Chloroplast			
-Cre12.g552001			Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	
-Cre12.g553302						
-Cre12.g537550			Mitochondrion			
-Cre12.g521100						
-Cre12.g529850	GMM:34.99	transport.misc				
-Cre12.g534050				GO:0009395;GO:0004620	phospholipid catabolic process;phospholipase activity	FAP366
-Cre12.g518650	GMM:11.8.4	"lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"				BSD1
-Cre12.g552250			Mitochondrion			
-Cre12.g536500			Chloroplast			CGL10
-Cre12.g488100	GMM:27.1	RNA.processing				UPF3
-Cre12.g540050			Chloroplast			
-Cre12.g486250	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	FAP333
-Cre12.g557900	GMM:17.3.1.2.5	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.HYD1		GO:0047750;GO:0016125;GO:0016021	cholestenol delta-isomerase activity;sterol metabolic process;integral component of membrane	CDI1
-Cre12.g494600			Secretory pathway			
-Cre12.g504700	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB16
-Cre12.g529450	GMM:26.17	misc.dynamin				DRP5
-Cre12.g561050	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG18
-Cre12.g497653	GMM:26.11.1;GMM:26.11;GMM:16.8.3	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SNE13
-Cre12.g552851	GMM:17.6.2	hormone metabolism.gibberelin.signal transduction				OGT1
-Cre12.g535450						
-Cre12.g540750						
-Cre12.g542150						
-Cre12.g515500			Secretory pathway			
-Cre12.g538050						
-Cre12.g491100				GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
-Cre12.g520850	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0016592;GO:0006355;GO:0001104	"mediator complex;regulation of transcription, DNA-templated;RNA polymerase II transcription cofactor activity"	
-Cre12.g508150	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors		GO:0043044;GO:0031491;GO:0016818;GO:0016787;GO:0006338;GO:0005634;GO:0005524;GO:0003677;GO:0003676	"ATP-dependent chromatin remodeling;nucleosome binding;hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;hydrolase activity;chromatin remodeling;nucleus;ATP binding;DNA binding;nucleic acid binding"	
-Cre12.g493404	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	
-Cre12.g533351	GMM:20.2.1	stress.abiotic.heat	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	CLPB5
-Cre12.g553350	GMM:1.5.3	PS.carbon concentrating mechanism.algal				LCI6
-Cre12.g550153			Chloroplast			
-Cre12.g553253			Chloroplast	GO:0006260;GO:0003896	DNA replication;DNA primase activity	
-Cre12.g513100						
-Cre12.g533250	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease	Mitochondrion	GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
-Cre12.g526264				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g524500	GMM:27.3.69;GMM:1.3.13	RNA.regulation of transcription.SET-domain transcriptional regulator family;PS.calvin cycle.rubisco interacting				RMT2
-Cre12.g518772	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	
-Cre12.g499400	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN18-2
-Cre12.g538900						
-Cre12.g503150			Chloroplast	GO:0043139;GO:0003697	5'-3' DNA helicase activity;single-stranded DNA binding	
-Cre12.g517400	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Secretory pathway	GO:0005525	GTP binding	RAB5
-Cre12.g525700	GMM:9.6	mitochondrial electron transport / ATP synthesis.cytochrome c		GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	HCS1
-Cre12.g552750						
-Cre12.g515200	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				DRC6
-Cre12.g483950	GMM:8.1.9;GMM:6.3	TCA / organic transformation.TCA.malate DH;gluconeogenesis / glyoxylate cycle.malate dehydrogenase	Chloroplast	GO:0055114;GO:0019752;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;carboxylic acid metabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	MDN4
-Cre12.g507000			Mitochondrion			FFT6
-Cre12.g549000	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC4
-Cre12.g540150			Secretory pathway			
-Cre12.g526450	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g497850			Chloroplast			
-Cre12.g524800						
-Cre12.g516450	GMM:9.1.1.5	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I.carbonic anhydrase	Mitochondrion			CAG1
-Cre12.g551800	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases		GO:0016787	hydrolase activity	
-Cre12.g499600						CSD5
-Cre12.g555550	GMM:31.1.1.1.3;GMM:31.1	cell.organisation.cytoskeleton.actin.actin binding;cell.organisation		GO:0003779	actin binding	
-Cre12.g549750	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	FAP4
-Cre12.g502550			Chloroplast			
-Cre12.g548152	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				
-Cre12.g486551				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PHX19
-Cre12.g538950						
-Cre12.g483800			Mitochondrion			
-Cre12.g554116			Mitochondrion			
-Cre12.g509200						
-Cre12.g557250	GMM:26.17	misc.dynamin				
-Cre12.g485000						FAP182
-Cre12.g520000	GMM:31.1	cell.organisation	Mitochondrion	GO:0005515	protein binding	
-Cre12.g521300						
-Cre12.g494250			Mitochondrion			
-Cre12.g518050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			FAP261
-Cre12.g508850			Chloroplast	GO:0005515	protein binding	
-Cre12.g554400			Mitochondrion			
-Cre12.g557000	GMM:29.5.2	protein.degradation.autophagy	Chloroplast	GO:0005737;GO:0000045	cytoplasm;autophagosome assembly	ATG12
-Cre12.g521700	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase	Chloroplast			SSS6
-Cre12.g558150						
-Cre12.g516500	GMM:29.5.11.4.3.3	protein.degradation.ubiquitin.E3.SCF.cullin	Mitochondrion	GO:0031625;GO:0006511	ubiquitin protein ligase binding;ubiquitin-dependent protein catabolic process	CUL2
-Cre12.g505350	GMM:34.21;GMM:30.3;GMM:3.3	transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	FAP10
-Cre12.g502251			Chloroplast			
-Cre12.g542600			Chloroplast			
-Cre12.g530550	GMM:11.8.1;GMM:11.3.5	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids;lipid metabolism.phospholipid synthesis.diacylglycerol kinase"		GO:0016301	kinase activity	KDG2
-Cre12.g543477			Mitochondrion			
-Cre12.g508650			Secretory pathway			
-Cre12.g526091						
-Cre12.g511300			Mitochondrion			
-Cre12.g559053						CSB50
-Cre12.g504350	GMM:11.9.2.2;GMM:11.9.2	lipid metabolism.lipid degradation.lipases.acylglycerol lipase;lipid metabolism.lipid degradation.lipases				
-Cre12.g537000			Secretory pathway	GO:0004872	receptor activity	
-Cre12.g534500			Secretory pathway	GO:0007029;GO:0005789	endoplasmic reticulum organization;endoplasmic reticulum membrane	
-Cre12.g486481			Secretory pathway			
-Cre12.g516900			Chloroplast	GO:0005515	protein binding	
-Cre12.g489000				GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
-Cre12.g526850	GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL56
-Cre12.g541750	GMM:16.1.4	secondary metabolism.isoprenoids.carotenoids	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	ZPD1
-Cre12.g489350						
-Cre12.g553900	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CNG2
-Cre12.g491000	GMM:29.3.1	protein.targeting.nucleus	Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
-Cre12.g486300	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0015979;GO:0009538;GO:0009522	photosynthesis;photosystem I reaction center;photosystem I	PSAL
-Cre12.g549850	GMM:29.1	protein.aa activation		GO:0009452;GO:0008168;GO:0001510	7-methylguanosine RNA capping;methyltransferase activity;RNA methylation	
-Cre12.g543301			Mitochondrion			CSV11
-Cre12.g506450	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO19
-Cre12.g483750						
-Cre12.g535851	GMM:29.2.1.2.2.8	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L8	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL8
-Cre12.g548000	GMM:29.2.2.3.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs	Mitochondrion			
-Cre12.g505850	GMM:29.9;GMM:29.6.2.6;GMM:29.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding	Chloroplast	GO:0006457;GO:0005737	protein folding;cytoplasm	CPN23
-Cre12.g519300	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF9
-Cre12.g502700						
-Cre12.g558750				GO:0015934;GO:0006412;GO:0003735	large ribosomal subunit;translation;structural constituent of ribosome	
-Cre12.g507051	GMM:3.5;GMM:2.2.1.3.3;GMM:2.2.1.3.2	minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.vacuolar;major CHO metabolism.degradation.sucrose.invertases.cell wall	Chloroplast			
-Cre12.g555150	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOB10
-Cre12.g517250			Chloroplast			
-Cre12.g496400						
-Cre12.g556912			Chloroplast			
-Cre12.g545850	GMM:20.2.1	stress.abiotic.heat				FAP363
-Cre12.g543500						FAP364
-Cre12.g543300			Mitochondrion			
-Cre12.g508852			Chloroplast	GO:0006464;GO:0004077	cellular protein modification process;biotin-[acetyl-CoA-carboxylase] ligase activity	
-Cre12.g517650						
-Cre12.g495952			Chloroplast			
-Cre12.g500550	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion			
-Cre12.g507500						
-Cre12.g521851						
-Cre12.g524650	GMM:27.3.55	RNA.regulation of transcription.HDA	Mitochondrion	GO:0070403	NAD+ binding	HDA18
-Cre12.g525970				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g560150	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	FAP353
-Cre12.g511600						
-Cre12.g546200			Chloroplast	GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL5
-Cre12.g490451			Mitochondrion			
-Cre12.g495956						
-Cre12.g510751						
-Cre12.g539850						
-Cre12.g520250				GO:0016593;GO:0016570;GO:0006368	Cdc73/Paf1 complex;histone modification;transcription elongation from RNA polymerase II promoter	PAF1
-Cre12.g509650	GMM:16.1.4.2	secondary metabolism.isoprenoids.carotenoids.phytoene dehydrogenase	Chloroplast			PDS1
-Cre12.g506700						
-Cre12.g506350	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO18
-Cre12.g560600	GMM:18	Co-factor and vitamine metabolism		GO:0008152;GO:0006741;GO:0003951	metabolic process;NADP biosynthetic process;NAD+ kinase activity	
-Cre12.g515850	GMM:28.1;GMM:27.3.67	DNA.synthesis/chromatin structure;RNA.regulation of transcription.putative transcription regulator		GO:0030896;GO:0030337;GO:0006275;GO:0003677;GO:0000077	checkpoint clamp complex;DNA polymerase processivity factor activity;regulation of DNA replication;DNA binding;DNA damage checkpoint	PCN1
-Cre12.g489153	GMM:29.2.1.2.2.31	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L31		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL31
-Cre12.g487650						
-Cre12.g519651			Mitochondrion			
-Cre12.g491450			Mitochondrion			
-Cre12.g520350	GMM:13.2.2.2	amino acid metabolism.degradation.glutamate family.proline	Mitochondrion	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	ALD1
-Cre12.g528500			Chloroplast	GO:0016787	hydrolase activity	
-Cre12.g552402			Mitochondrion			
-Cre12.g534800	GMM:25;GMM:13.2.5.2;GMM:1.2.4.1	C1-metabolism;amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;PS.photorespiration.glycine cleavage.P subunit	Mitochondrion	GO:0055114;GO:0006546;GO:0004375	oxidation-reduction process;glycine catabolic process;glycine dehydrogenase (decarboxylating) activity	GCSP
-Cre12.g532250						
-Cre12.g551802				GO:0048278;GO:0006887;GO:0005737	vesicle docking;exocytosis;cytoplasm	
-Cre12.g555250	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOB14
-Cre12.g516000						
-Cre12.g544800						
-Cre12.g492503			Chloroplast			
-Cre12.g549900			Chloroplast			
-Cre12.g535350						
-Cre12.g502179			Mitochondrion			
-Cre12.g554650				GO:0005515;GO:0000228	protein binding;nuclear chromosome	REC8
-Cre12.g546050	GMM:16.1.1.2	secondary metabolism.isoprenoids.non-mevalonate pathway.DXR	Chloroplast	GO:0070402;GO:0055114;GO:0046872;GO:0030604;GO:0008299;GO:0005515	NADPH binding;oxidation-reduction process;metal ion binding;1-deoxy-D-xylulose-5-phosphate reductoisomerase activity;isoprenoid biosynthetic process;protein binding	DXR1
-Cre12.g543950						
-Cre12.g544100						
-Cre12.g551600			Secretory pathway			
-Cre12.g484250	GMM:31.6.1.4.2.1;GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.inner arm		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC1
-Cre12.g493600			Secretory pathway			
-Cre12.g536683						
-Cre12.g516250			Mitochondrion			
-Cre12.g540076	GMM:27.3.52	RNA.regulation of transcription.global transcription factor group				
-Cre12.g498650	GMM:29.4	protein.postranslational modification				ALK3
-Cre12.g522400	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
-Cre12.g547100			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	CGL2
-Cre12.g491550			Mitochondrion			
-Cre12.g549002						
-Cre12.g549550	GMM:31.6.1.5.2;GMM:31.1.1.2;GMM:31.1	cell.motility.eukaryotes.radial spoke.stalk;cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007017;GO:0005874;GO:0003924	microtubule-based process;microtubule;GTPase activity	TUB2
-Cre12.g544000	GMM:31.6.1.5.2;GMM:3.5	cell.motility.eukaryotes.radial spoke.stalk;minor CHO metabolism.others				RSP5
-Cre12.g492900						
-Cre12.g528700	GMM:13.1.6.5.5;GMM:13.1.6.5	amino acid metabolism.synthesis.aromatic aa.tryptophan.tryptophan synthase;amino acid metabolism.synthesis.aromatic aa.tryptophan	Chloroplast	GO:0006568;GO:0004834	tryptophan metabolic process;tryptophan synthase activity	TRPA1
-Cre12.g507006			Mitochondrion			
-Cre12.g487200	GMM:33.99	development.unspecified		GO:0005515	protein binding	
-Cre12.g542700						FAP373
-Cre12.g526700			Chloroplast	GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL9
-Cre12.g534000						
-Cre12.g540650	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
-Cre12.g528100				GO:0008270;GO:0006508;GO:0004181	zinc ion binding;proteolysis;metallocarboxypeptidase activity	
-Cre12.g557650						
-Cre12.g556250	GMM:31.2	cell.division		GO:0005525	GTP binding	
-Cre12.g499250	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE10
-Cre12.g502150						
-Cre12.g505050			Chloroplast	GO:0005515	protein binding	
-Cre12.g550900			Chloroplast	GO:0016020;GO:0008158	membrane;hedgehog receptor activity	SSD3
-Cre12.g548400	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM2
-Cre12.g546452			Chloroplast			
-Cre12.g501200	GMM:29.5.11.4.3.1	protein.degradation.ubiquitin.E3.SCF.SKP		GO:0006511	ubiquitin-dependent protein catabolic process	SKP1
-Cre12.g508450			Secretory pathway			
-Cre12.g488850	GMM:31.4	cell.vesicle transport		GO:0030131;GO:0030117;GO:0016192;GO:0006886	clathrin adaptor complex;membrane coat;vesicle-mediated transport;intracellular protein transport	AP2A1
-Cre12.g499451				GO:0003676	nucleic acid binding	
-Cre12.g556700			Mitochondrion			
-Cre12.g551000						
-Cre12.g514000			Secretory pathway	GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	LAG1
-Cre12.g488250	GMM:17.2.2	hormone metabolism.auxin.signal transduction				
-Cre12.g525150			Mitochondrion			
-Cre12.g510150	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family		GO:0005515	protein binding	
-Cre12.g525776			Mitochondrion	GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g545752			Secretory pathway			
-Cre12.g492200	GMM:27.3.63;GMM:27.3.22;GMM:20.1	RNA.regulation of transcription.PHD finger transcription factor;RNA.regulation of transcription.homeobox transcription factor family (HB);stress.biotic		GO:0005515	protein binding	
-Cre12.g492150			Secretory pathway			
-Cre12.g548100	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	UBC7
-Cre12.g526068						
-Cre12.g495701			Mitochondrion	GO:0016020;GO:0005044	membrane;scavenger receptor activity	
-Cre12.g487101			Mitochondrion			CSV9
-Cre12.g493900						
-Cre12.g547050			Secretory pathway			
-Cre12.g526230				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g493300	GMM:34.99	transport.misc				
-Cre12.g530750			Secretory pathway			
-Cre12.g489800			Mitochondrion	GO:0000062	fatty-acyl-CoA binding	
-Cre12.g527200			Mitochondrion			
-Cre12.g511150	GMM:11.5.2	lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)		GO:0055114;GO:0009331;GO:0008677;GO:0006072;GO:0005975;GO:0004367	oxidation-reduction process;glycerol-3-phosphate dehydrogenase complex;2-dehydropantoate 2-reductase activity;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity	GPD1
-Cre12.g548950	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM7
-Cre12.g510000			Chloroplast			
-Cre12.g510300	GMM:29.5.11.3;GMM:29.5.11	protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin	Chloroplast	GO:0034450;GO:0016567;GO:0006511;GO:0000151	ubiquitin-ubiquitin ligase activity;protein ubiquitination;ubiquitin-dependent protein catabolic process;ubiquitin ligase complex	UBC21
-Cre12.g548900				GO:0005515	protein binding	ROC23
-Cre12.g505500	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR17
-Cre12.g557503				GO:0007165;GO:0005515	signal transduction;protein binding	
-Cre12.g555700	GMM:29.9	protein.co-chaperones	Chloroplast			DNJ15
-Cre12.g534961			Secretory pathway			
-Cre12.g518002	GMM:29.3.3	protein.targeting.chloroplast				
-Cre12.g528000			Mitochondrion			FAP303
-Cre12.g494350	GMM:28.99	DNA.unspecified	Secretory pathway	GO:0016021	integral component of membrane	
-Cre12.g523816						
-Cre12.g528900	GMM:29.2.2	protein.synthesis.ribosome biogenesis				RBG1
-Cre12.g559554						
-Cre12.g541000			Secretory pathway			
-Cre12.g483926						
-Cre12.g524400	GMM:31.1	cell.organisation	Chloroplast	GO:0051014;GO:0030036;GO:0007010;GO:0003779	actin filament severing;actin cytoskeleton organization;cytoskeleton organization;actin binding	
-Cre12.g536200						
-Cre12.g542100	GMM:29.5.30;GMM:29.5	protein.degradation.prolyl protease;protein.degradation	Chloroplast	GO:0070008;GO:0008236;GO:0006508;GO:0004252	serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity	
-Cre12.g535950	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0055114;GO:0051536;GO:0016651;GO:0016491	"oxidation-reduction process;iron-sulfur cluster binding;oxidoreductase activity, acting on NAD(P)H;oxidoreductase activity"	NUOS1
-Cre12.g553050						
-Cre12.g558950						
-Cre12.g518851						
-Cre12.g538600			Secretory pathway	GO:0005515	protein binding	
-Cre12.g512000			Secretory pathway	GO:0016020	membrane	
-Cre12.g492650			Secretory pathway			FAS2
-Cre12.g497650						THY28
-Cre12.g485458						
-Cre12.g552650	GMM:27.1	RNA.processing				PAP8
-Cre12.g547200	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK6
-Cre12.g488350	GMM:17.1.1.1.10	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.9-cis-epoxycarotenoid dioxygenase	Chloroplast			
-Cre12.g546350	GMM:34.99;GMM:34.10;GMM:34.1	transport.misc;transport.nucleotides;transport.p- and v-ATPases		GO:0016021;GO:0015693;GO:0015095	integral component of membrane;magnesium ion transport;magnesium ion transmembrane transporter activity	
-Cre12.g523000				GO:0046872	metal ion binding	
-Cre12.g556803						
-Cre12.g512100	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	PIF1
-Cre12.g536800			Chloroplast			CGL52
-Cre12.g512700			Chloroplast	GO:0006367	transcription initiation from RNA polymerase II promoter	
-Cre12.g525827						
-Cre12.g504800	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR16
-Cre12.g537611			Secretory pathway			
-Cre12.g547500			Chloroplast			
-Cre12.g551850	GMM:26.1;GMM:19.99;GMM:16.2	misc.misc2;tetrapyrrole synthesis.unspecified;secondary metabolism.phenylpropanoids		GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	NFR1
-Cre12.g535750	GMM:22.1.5	polyamine metabolism.synthesis.N-carbamoylputrescine amidohydrolase		GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	CPA1
-Cre12.g534980						
-Cre12.g530300	GMM:29.6.3.1;GMM:29.6	protein.folding.immunophilins (IMM).FKBPs;protein.folding	Chloroplast	GO:0006457	protein folding	FKB16-3
-Cre12.g530850			Secretory pathway;Chloroplast			
-Cre12.g508302						
-Cre12.g499152						
-Cre12.g494100	GMM:27.1.1	RNA.processing.splicing				
-Cre12.g523750						
-Cre12.g488150						
-Cre12.g561100				GO:0008270	zinc ion binding	
-Cre12.g544550	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g500700			Mitochondrion			LCL2
-Cre12.g559900			Chloroplast			
-Cre12.g486350	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g508050				GO:0003677	DNA binding	
-Cre12.g522150	GMM:31.6.1.6.3	cell.motility.eukaryotes.central pair.C1				FAP194
-Cre12.g509300			Chloroplast			
-Cre12.g495954			Mitochondrion			
-Cre12.g542601						CSB48
-Cre12.g496800						
-Cre12.g531000	GMM:34.5	transport.ammonium	Secretory pathway	GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	AMT8
-Cre12.g529800						
-Cre12.g553450	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CNG1
-Cre12.g498500	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0006508;GO:0005515;GO:0004252	proteolysis;protein binding;serine-type endopeptidase activity	DEG1C
-Cre12.g537250			Secretory pathway			
-Cre12.g495800			Chloroplast			
-Cre12.g556150	GMM:29.5	protein.degradation		GO:0016020	membrane	CGL100
-Cre12.g554800	GMM:1.3.12	PS.calvin cycle.PRK	Chloroplast	GO:0016301;GO:0008152;GO:0005524	kinase activity;metabolic process;ATP binding	PRK1
-Cre12.g503700			Mitochondrion			
-Cre12.g552006						
-Cre12.g502800	GMM:33.99;GMM:31.3	development.unspecified;cell.cycle		GO:0005515	protein binding	
-Cre12.g548050	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG32
-Cre12.g541700						OPR54
-Cre12.g512500			Chloroplast	GO:0048478;GO:0007049;GO:0006974;GO:0005634	replication fork protection;cell cycle;cellular response to DNA damage stimulus;nucleus	
-Cre12.g546770			Mitochondrion	GO:0016021	integral component of membrane	
-Cre12.g523320			Mitochondrion			
-Cre12.g505250				GO:0005509	calcium ion binding	FAP288
-Cre12.g534576						
-Cre12.g539050			Chloroplast			
-Cre12.g550200						
-Cre12.g486600	GMM:34.8;GMM:2.2.2.6	transport.metabolite transporters at the envelope membrane;major CHO metabolism.degradation.starch.transporter	Chloroplast			MEX1
-Cre12.g559100						
-Cre12.g496300			Chloroplast			
-Cre12.g558100	GMM:31.3;GMM:26.6	cell.cycle;misc.O-methyl transferases		GO:0008168;GO:0006479	methyltransferase activity;protein methylation	PRMT2
-Cre12.g502300						
-Cre12.g521200	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005663;GO:0005524;GO:0003689	DNA replication;DNA replication factor C complex;ATP binding;DNA clamp loader activity	RFC1
-Cre12.g552300			Secretory pathway			CTL3
-Cre12.g493000	GMM:34.15	transport.potassium	Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	
-Cre12.g509001	GMM:30.6;GMM:3.6	signalling.MAP kinases;minor CHO metabolism.callose		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	RPK2
-Cre12.g526071				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
-Cre12.g490550						
-Cre12.g514450	GMM:27.1.1	RNA.processing.splicing		GO:0005634	nucleus	
-Cre12.g496950	GMM:29.5.7	protein.degradation.metalloprotease		GO:0016787;GO:0008152;GO:0005515	hydrolase activity;metabolic process;protein binding	
-Cre12.g516600	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
-Cre12.g538250			Chloroplast			
-Cre12.g499352						
-Cre12.g536900	GMM:31.1;GMM:27.2	cell.organisation;RNA.transcription				
-Cre12.g513700			Chloroplast			HEL52
-Cre12.g498250	GMM:29.2.1.2.1.17	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S17		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS17
-Cre12.g496750	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion			NUO8
-Cre12.g501350			Secretory pathway			
-Cre12.g546400	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm				DLR2
-Cre12.g533450						
-Cre12.g524050						
-Cre12.g538150	GMM:34.18	transport.unspecified anions		GO:0034715;GO:0034709;GO:0006884;GO:0006821;GO:0005886;GO:0005829;GO:0000387	pICln-Sm protein complex;methylosome;cell volume homeostasis;chloride transport;plasma membrane;cytosol;spliceosomal snRNP assembly	
-Cre12.g513900			Secretory pathway			
-Cre12.g507100						
-Cre12.g533050	GMM:30.5;GMM:3.5;GMM:29.2.2.1	signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0005525	GTP binding	
-Cre12.g547850						
-Cre12.g509900						
-Cre12.g549150						
-Cre12.g533426			Secretory pathway			
-Cre12.g502050						
-Cre12.g536716						
-Cre12.g524100	GMM:29.2.3;GMM:27.4	protein.synthesis.initiation;RNA.RNA binding		GO:0051028;GO:0045292;GO:0016070;GO:0005846;GO:0000339	"mRNA transport;mRNA cis splicing, via spliceosome;RNA metabolic process;nuclear cap binding complex;RNA cap binding"	CBP80
-Cre12.g529350			Chloroplast			
-Cre12.g540250						SELW1
-Cre12.g485100						FAP326
-Cre12.g507400	GMM:11.1.9	lipid metabolism.FA synthesis and FA elongation.long chain fatty acid CoA ligase	Mitochondrion	GO:0008152;GO:0003824	metabolic process;catalytic activity	CGL105
-Cre12.g521950			Secretory pathway			
-Cre12.g536425						
-Cre12.g560050	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM12
-Cre12.g525900	GMM:29.4	protein.postranslational modification	Mitochondrion			
-Cre12.g532750	GMM:28.1	DNA.synthesis/chromatin structure		GO:0008270;GO:0006281;GO:0004518	zinc ion binding;DNA repair;nuclease activity	
-Cre12.g483700	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast	GO:0006260;GO:0003697	DNA replication;single-stranded DNA binding	RB38
-Cre12.g499700	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	MFT3
-Cre12.g517150	GMM:14.2;GMM:1.1.1.2	S-assimilation.APR;PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0045454;GO:0008152;GO:0003824	cell redox homeostasis;metabolic process;catalytic activity	MET16
-Cre12.g501752						
-Cre12.g543400	GMM:5.3;GMM:26.11;GMM:25.1	fermentation.ADH;misc.alcohol dehydrogenases;C1-metabolism.glycine hydroxymethyltransferase		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	FDH1
-Cre12.g533300			Chloroplast	GO:0003676	nucleic acid binding	SRE2
-Cre12.g507557			Chloroplast			
-Cre12.g557100	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006464;GO:0004719	cellular protein modification process;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	
-Cre12.g515426	GMM:26.16	misc.myrosinases-lectin-jacalin	Secretory pathway			
-Cre12.g490141			Mitochondrion			
-Cre47.g761097			Secretory pathway			
-Cre-1.g2717034	GMM:1.1.4	PS.lightreaction.ATP synthase	Chloroplast			atpB
-Cre-1.g2716995			Chloroplast			psbL
-Cre-1.g2716992			Chloroplast			rpoB-2
-Cre-1.g2716994	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbF
-Cre-1.g2717015	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			clpP
-Cre-2.g801494			Mitochondrion			nad4
-Cre-1.g2717009	GMM:1.1.2.3	PS.lightreaction.photosystem I.biogenesis	Chloroplast			ycf4
-Cre-1.g2716966	GMM:19.14	tetrapyrrole synthesis.protochlorophyllide reductase	Chloroplast			chlB
-Cre-1.g2717046	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast			psaC
-Cre-1.g2717012	GMM:29.2.1.1.1.2.20	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L20	Chloroplast			rpl20
-Cre-1.g2717058	GMM:29.2.1.1.1.2.14	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L14	Chloroplast			rpl14
-Cre-1.g2716962			Chloroplast			ORF2971
-Cre-1.g2716961	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbD
-Cre-1.g2717004			Chloroplast			rpoA
-Cre-1.g2717038	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast			psaB
-Cre-1.g2717030	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbH
-Cre-1.g2716976			Chloroplast			psbZ
-Cre-1.g2717050			Chloroplast			rpoC1a
-Cre-1.g2716955	GMM:29.2.1.1.1.1.4	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S4	Chloroplast			rps4
-Cre-1.g2716973	GMM:29.2.1.1.1.1.7	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S7	Chloroplast			rps7
-Cre-1.g2717031	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast			psbN
-Cre-2.g801492	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion			nad5
-Cre-1.g2717056	GMM:29.2.1.1.1.1.19	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S19	Chloroplast			rps19
-Cre-1.g2717054	GMM:29.2.1.1.1.2.23	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L23	Chloroplast			rpl23
-Cre-1.g2716987	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbA
-Cre-1.g2717040	GMM:1.3.1	PS.calvin cycle.rubisco large subunit	Chloroplast			rbcL
-Cre-1.g000030			Chloroplast			ORF140b
-Cre-1.g2717055	GMM:29.2.1.1.1.2.2	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L2	Chloroplast			rpl2
-Cre-1.g2716958	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast			psaJ
-Cre-1.g2717049			Chloroplast			rpoC1b
-Cre-1.g2716996			Chloroplast			petG
-Cre-1.g2716990	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbE
-Cre-1.g2717007	GMM:29.2.1.1.1.1.18	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S18	Chloroplast			rps18
-Cre-1.g000010			Chloroplast			ORF140a
-Cre-1.g2717053			Chloroplast			rpl36
-Cre-1.g2716960			Chloroplast			psbJ
-Cre-1.g2716979	GMM:29.2.4	protein.synthesis.elongation	Chloroplast			tufA
-Cre-1.g000005			Chloroplast			ORF271
-Cre-2.g801495			Mitochondrion			cox1
-Cre-1.g2717005	GMM:29.2.1.1.1.1.2	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S2	Chloroplast			rps2
-Cre-1.g000035			Chloroplast			ORF1995
-Cre-2.g801499			Mitochondrion			nad1
-Cre-1.g2716971			Chloroplast			ycf12
-Cre-1.g2716959	GMM:1.1.4	PS.lightreaction.ATP synthase	Chloroplast			atpI
-Cre-1.g000045			Chloroplast			ORF58
-Cre-2.g801500			Mitochondrion			nad6
-Cre-1.g2717021	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast			petD
-Cre-2.g801489			Mitochondrion			rtl
-Cre-1.g2716978			Chloroplast			psbK
-Cre-1.g2716997	GMM:29.2.1.1.1.1.3	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S3	Chloroplast			rps3
-Cre-1.g2717044			Chloroplast			atpH
-Cre-1.g2717010	GMM:29.2.1.1.1.1.9	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S9	Chloroplast			rps9
-Cre-1.g2717047			Chloroplast			petL
-Cre-1.g2717052	GMM:19.14	tetrapyrrole synthesis.protochlorophyllide reductase	Chloroplast			chlL
-Cre-1.g2717042			Chloroplast			psbI
-Cre-1.g2716986	GMM:19.14	tetrapyrrole synthesis.protochlorophyllide reductase	Chloroplast			chlN
-Cre-1.g2717002	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbB
-Cre-1.g2717006	GMM:29.2.1.1.1.1.2	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S2	Chloroplast			rps2
-Cre-2.g801484			Mitochondrion			cob
-Cre-1.g2717027			Chloroplast			ccsA
-Cre-1.g2716952	GMM:29.2.1.1.1.1.8	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S8	Chloroplast			rps8
-Cre-1.g000020			Chloroplast			ORF59
-Cre-1.g2717041	GMM:1.1.4	PS.lightreaction.ATP synthase	Chloroplast			atpA
-Cre-2.g801491			Mitochondrion			nad2
-Cre-1.g2717036	GMM:29.2.1.1.1.1.12	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S12	Chloroplast			rps12
-Cre-1.g2717000	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast			psaA
-Cre-1.g2716989	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast			petA
-Cre-1.g2716998	GMM:27.2	RNA.transcription	Chloroplast			rpoC2
-Cre-1.g2717008	GMM:1.1.2.3	PS.lightreaction.photosystem I.biogenesis	Chloroplast			ycf3
-Cre-1.g2716972	GMM:1.1.4	PS.lightreaction.ATP synthase	Chloroplast			atpE
-Cre-1.g2716993			Chloroplast			rpoB-1
-Cre-1.g2716983	GMM:1.1.4	PS.lightreaction.ATP synthase	Chloroplast			atpF
-Cre-1.g2716974	GMM:29.2.1.1.1.1.14	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S14	Chloroplast			rps14
-Cre-1.g2717057			Chloroplast			rpl16
-Cre-1.g2717043			Chloroplast			cemA
-Cre-1.g2717001	GMM:29.2.1.1.1.1.11	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S11	Chloroplast			rps11
-Cre-1.g000015			Chloroplast			ORF112
-Cre-1.g000025			Chloroplast			ORF50
-Cre-1.g2716975			Chloroplast			psbM
-Cre-1.g2717032			Chloroplast			psbT
-Cre-1.g2717059	GMM:29.2.1.1.1.2.5	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L5	Chloroplast			rpl5
-Cre-1.g2717017	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast			petB
-Cre-1.g2716963	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbC
+Identifier	MapMan	MapManDescription	Localization	GO	GODescription	Synonym	Synonym_Phytozome_61	GeneName_Phytozome_61	Description_Phytozome_61
+Cre38.g759997									
+Cre08.g363350							g8510.t1		
+Cre08.g379050	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					g8921.t1		
+Cre08.g364751							"BLZ16;g8540.t1;g8540.t1;BLZ16;g8540.t1;BLZ16;g8540.t1;BLZ16"		"Putative asic-leucine zipper (bZIP) transcription factor;Putative asic-leucine zipper (bZIP) transcription factor;Putative asic-leucine zipper (bZIP) transcription factor;Putative asic-leucine zipper (bZIP) transcription factor"
+Cre08.g372000			Chloroplast				"CGLD11;g8714.t1;CGLD6;Cre08.g372000.t1.1;CGLD11;g8714.t1;CGLD6;Cre08.g372000.t1.1;Cre08.g372000.t1.1;CGLD6;g8714.t1;CGLD11"	"BAF3;BAF3;BAF3"	"Arabidopsis ortholog associates with beta subunit near the catalytic site and promotes formation of alpha/beta heterooligomers in the stroma;Arabidopsis ortholog associates with beta subunit near the catalytic site and promotes formation of alpha/beta heterooligomers in the stroma;Arabidopsis ortholog associates with beta subunit near the catalytic site and promotes formation of alpha/beta heterooligomers in the stroma"
+Cre08.g378150	GMM:7.1.1	"OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)"	Chloroplast	"GO:0055114;GO:0050661;GO:0006006;GO:0004345"	"oxidation-reduction process;NADP binding;glucose metabolic process;glucose-6-phosphate dehydrogenase activity"	GLD2	"g8902.t1;g8902.t1"	"GLD2;GLD2"	
+Cre08.g358567			Mitochondrion				"g8382.t1;Cre28.g776750.t1.1;g8382.t1;Cre28.g776750.t1.1;g8382.t1;Cre28.g776750.t1.1;Cre28.g776750.t1.1;g8382.t1;g8382.t1;Cre28.g776750.t1.1;g8382.t1;Cre28.g776750.t1.1"		
+Cre08.g373352									
+Cre08.g360700									
+Cre08.g374850	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Mitochondrion				g8830.t1		
+Cre08.g358459									
+Cre08.g361063							"Cre08.g361063.t1.1;g8455.t1"		
+Cre08.g367700				GO:0016021	"integral component of membrane"		g8615.t1		
+Cre08.g375200	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"		"g8840.t1;Cre08.g375200.t1.1"		
+Cre08.g368550							"g8637.t1;g8637.t1;g8637.t1"		
+Cre08.g383450			Mitochondrion				g9027.t1		
+Cre08.g378601			Chloroplast				g8912.t1		
+Cre08.g371200			Mitochondrion				"g8695.t1;Cre08.g371200.t1.1"		
+Cre08.g384850							"SDR16;g9056.t1"		"contains SH3 domain"
+Cre08.g361925			Chloroplast						
+Cre08.g367000							"Cre08.g367000.t1.1;g8600.t1;g8600.t1;Cre08.g367000.t1.1;g8600.t1;Cre08.g367000.t1.1"		
+Cre08.g373436			Mitochondrion						
+Cre08.g358534	GMM:27.3.9	"RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family"		"GO:0043565;GO:0008270;GO:0006355;GO:0003700"	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g8350.t1;Cre28.g777500.t1.1;g8350.t1;Cre28.g777500.t1.1"		
+Cre08.g370250			Mitochondrion				"g8677.t2;Cre08.g370250.t1.1"		
+Cre08.g358582			Chloroplast				"Cre28.g776050.t1.1;Cre28.g776050.t1.2;g8397.t1"		
+Cre08.g363283			Chloroplast						
+Cre08.g362400	GMM:3.2.4	"minor CHO metabolism.trehalose.trehalase"	Chloroplast				"g8487.t1;g8487.t1"		
+Cre08.g382350	GMM:34.8	"transport.metabolite transporters at the envelope membrane"				EZY14	"TPT14;g8995.t1;TPT16;EZY14;Cre08.g382350.t1.1;Cre08.g382350.t1.1;EZY14;g8995.t1;TPT16;TPT14"	"EZY14;EZY14"	"Triose phosphate transporter family protein, possibly also a multidrug resistance efflux transporter; Early zygote expressed protein; activated upon fus mating [PMID: 18487630];Triose phosphate transporter family protein, possibly also a multidrug resistance efflux transporter; Early zygote expressed protein; activated upon fus mating [PMID: 18487630]"
+Cre08.g369600	GMM:34.99	transport.misc	Mitochondrion	"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"	MFT2	"MAE2; MFT2;MFT2;g8659.t1;MAE2; MFT2;g8659.t1;MFT2"		"putative MATE efflux family protein, related to Arabidopsis MATE family protein;putative MATE efflux family protein, related to Arabidopsis MATE family protein"
+Cre08.g376650			"Secretory pathway"	GO:0008146	"sulfotransferase activity"	CSR5	"CSR5;Cre08.g376650.t1.1;g8871.t1"		
+Cre08.g366550							"g8588.t1;g8588.t1"		
+Cre08.g384355			Mitochondrion				"g9046.t1;g9046.t1"		
+Cre08.g359051							"g8410.t1;Cre08.g359050.t1.3"		
+Cre08.g378100			Chloroplast				g8901.t1		
+Cre08.g359800							"g8427.t1;Cre08.g359800.t1.1;Cre08.g359800.t1.1;g8427.t1"		
+Cre08.g382476			Mitochondrion						
+Cre08.g371533									
+Cre08.g366650							"g8591.t1;g8591.t1;g8591.t1"		
+Cre08.g377800							g8895.t1		
+Cre08.g370116			Mitochondrion				g8674.t1		
+Cre08.g375676									
+Cre08.g374100			Mitochondrion				"g8815.t2;g8815.t2"		
+Cre08.g371500			"Secretory pathway"						
+Cre08.g383702	"GMM:29.5.11.3;GMM:29.5.11"	"protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin"	Mitochondrion				"g9032.t1;g9032.t1"	"UBC38;UBC38"	"E2 ubiquitin conjugating enzyme, subclass XI;E2 ubiquitin conjugating enzyme, subclass XI"
+Cre08.g365851	GMM:17.1.1	"hormone metabolism.abscisic acid.synthesis-degradation"	Chloroplast				g8573.t1		
+Cre08.g383250							"g9023.t1;Cre08.g383250.t1.1"		
+Cre08.g369300	GMM:26.7	"misc.oxidases - copper, flavone etc"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH16	"PHX1;Cre08.g369300.t1.1;P4H16;g8653.t1;g8653.t1;P4H16;Cre08.g369300.t1.1;PHX1;PHX1;P4H16;Cre08.g369300.t1.1;g8653.t1"	"PFH16;PFH16;PFH16"	"ProcProcollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al.[PMID: 17220203] as v2 C_2500005; contains C-terminal ShK domain;;ProcProcollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al.[PMID: 17220203] as v2 C_2500005; contains C-terminal ShK domain;;ProcProcollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al.[PMID: 17220203] as v2 C_2500005; contains C-terminal ShK domain;"
+Cre08.g379400			Mitochondrion				"g8932.t1;g8932.t1;g8932.t1;g8932.t1;g8932.t1"		
+Cre08.g380452				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g8954.t1;g8954.t1"		
+Cre08.g360250	GMM:34.14	"transport.unspecified cations"	"Secretory pathway"	"GO:0055085;GO:0016020;GO:0006810;GO:0005215"	"transmembrane transport;membrane;transport;transporter activity"	DUR3B	"Cre08.g360250.t1.1;DUR3B;DUR4;DUR31;g8436.t1"	DUR3B	"Na+/solute symporter family"
+Cre08.g366450	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"				"g8586.t1;Cre08.g366450.t1.1"		
+Cre08.g362900	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"	PSBP4	"PSBP4;g8499.t1"		"Mutant cannot grow without acetate, shows similarity to PSBP (OEE2, oxygen-evolving enhancer protein 2 of photosystem II, OEC23, 23 kDa subunit of oxygen evolving complex : PMID: 3468511); orthologous to At4g15510; targeted to thylakoid lumen by TAT pathway"
+Cre08.g366950							"g8599.t1;Cre08.g366950.t1.1;Cre08.g366950.t1.1;g8599.t1;Cre08.g366950.t1.1;g8599.t1"		
+Cre08.g373358									
+Cre08.g358540			Chloroplast				"g8356.t1;Cre41.g787000.t1.2;Cre41.g787000.t1.1"		
+Cre08.g373361							"g8768.t1;Cre21.g761800.t1.1;Cre21.g761800.t1.2"		
+Cre08.g365300	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			FAP359	"CSE11;g8559.t1;Cre08.g365300.t1.1"	FAP359	"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre08.g363600	GMM:34.8	"transport.metabolite transporters at the envelope membrane"					"g8516.t1;TPT11;Cre08.g363600.t1.1;TPT12;TPT12;Cre08.g363600.t1.1;TPT11;g8516.t1"		
+Cre08.g375800			Mitochondrion				"g8853.t1;g8853.t1"		
+Cre08.g369451	GMM:20.2.3	stress.abiotic.drought/salt					g8656.t1		
+Cre08.g385850	"GMM:31.3;GMM:29.4"	"cell.cycle;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CDKC1	"CDKC1;Cre08.g385850.t1.1;g9078.t1;g9078.t1;CDKC1;Cre08.g385850.t1.1;g9078.t1;Cre08.g385850.t1.1;CDKC1"	"CDKC1;CDKC1;CDKC1"	"Plant specific CDKC ortholog; PITAIRE motif;Plant specific CDKC ortholog; PITAIRE motif;Plant specific CDKC ortholog; PITAIRE motif"
+Cre08.g375650	GMM:29.4	"protein.postranslational modification"					g8849.t1	CNS1	"Co-chaperone of cytosolic HSP90; TTC4 in mammalian cells; essential in yeast"
+Cre08.g382530			Chloroplast						
+Cre08.g368450			"Secretory pathway"	"GO:0016021;GO:0008250;GO:0006487"	"integral component of membrane;oligosaccharyltransferase complex;protein N-linked glycosylation"		"g8635.t1;Cre08.g368450.t1.1;Cre08.g368450.t1.1;g8635.t1"		
+Cre08.g374750			Chloroplast				g8828.t1		
+Cre08.g360200	GMM:34.14	"transport.unspecified cations"	"Secretory pathway"	"GO:0055085;GO:0016020;GO:0006810;GO:0005215"	"transmembrane transport;membrane;transport;transporter activity"	DUR3A	"DUR3;g8435.t1;DUR3A;Cre08.g360200.t1.1;DUR3;g8435.t1;Cre08.g360200.t1.1;DUR3A;g8435.t1;DUR3;DUR3A;Cre08.g360200.t1.1;g8435.t1;DUR3;DUR3A;Cre08.g360200.t1.1"	"DUR3A;DUR3A;DUR3A;DUR3A"	"Na+/solute symporter family;Na+/solute symporter family;Na+/solute symporter family;Na+/solute symporter family"
+Cre08.g360950			Chloroplast				g8452.t1		
+Cre08.g381250							"g8972.t1;Cre08.g381250.t1.1"		
+Cre08.g373450			Chloroplast	"GO:0043169;GO:0005975;GO:0004553;GO:0003824"	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	SBE4	"SBE4;g8801.t1"	SBE4	"catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position"
+Cre08.g373347			"Secretory pathway"				g8754.t1		
+Cre08.g364800	GMM:23.1.2.4	"nucleotide metabolism.synthesis.purine.FGAR amidotransferase"	Chloroplast				"Cre08.g364800.t1.1;g8542.t1"		
+Cre08.g364351							"FAL12;Cre08.g364350.t1.2;g8531.t1"		
+Cre08.g374436	GMM:3.5	"minor CHO metabolism.others"	Mitochondrion				"Cre08.g374436.t1.1;g8822.t1"		
+Cre08.g364650	"GMM:29.1.10;GMM:27.4"	"protein.aa activation.methionine-tRNA ligase;RNA.RNA binding"	Chloroplast	"GO:0006450;GO:0000049"	"regulation of translational fidelity;tRNA binding"		g8537.t1		
+Cre08.g379950	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast			PFH17	"PHX12;g8944.t1;P4H17;PFH17;g8944.t1;PHX12;PFH17;P4H17;PFH17;P4H17;PHX12;g8944.t1"		"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate"
+Cre08.g385750	GMM:13.1.6.1.5	"amino acid metabolism.synthesis.aromatic aa.chorismate.shikimate kinase"	Mitochondrion			CHK1	"CHK1;g9076.t1;Cre08.g385750.t1.1"	CHK1	"glucokinase (carbohydrate kinase) (partial sequence)"
+Cre08.g359500				"GO:0008716;GO:0005737;GO:0005515"	"D-alanine-D-alanine ligase activity;cytoplasm;protein binding"		"g8420.t1;g8420.t1"		
+Cre08.g381483							"g8977.t1;SDR15"		
+Cre08.g361700			Chloroplast				"g8468.t1;Cre08.g361700.t1.1"		
+Cre08.g377150			Mitochondrion	GO:0003824	"catalytic activity"		"g8882.t1;Cre08.g377150.t1.1"		
+Cre08.g360564	GMM:20.2.3	stress.abiotic.drought/salt		GO:0016020	membrane	ERM3	"g8444.t1;ERM3;Cre08.g360564.t1.1"		"transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration); belongs to a cluster of 4 closely linked and related Chlamydomonas ERM genes"
+Cre08.g358556	GMM:29.2.1	"protein.synthesis.ribosomal protein"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS29	"g8372.t1;Cre28.g777200.t1.2;Cre28.g777200.t1.1;RPS29"	RPS29	"Cytosolic 40S small ribosomal subunit protein S29"
+Cre08.g382825							"Cre08.g382844.t1.2;g9014.t1"		
+Cre08.g385900			"Secretory pathway"				"Cre08.g385900.t1.1;g9079.t1"	BOLA3	"Targeting factor, involved in Fe-S cluster trafficking; Similar to BOLA3 in Homo sapiens and BOL3 in Saccharomyces cerevisiae;"
+Cre08.g378450							"g8909.t1;g8909.t1"		
+Cre08.g376200							"g8862.t1;Cre08.g376200.t1.1;Cre08.g376200.t1.1;g8862.t1"		
+Cre08.g358544			Chloroplast						
+Cre08.g378250							"g8904.t2;SMM32;Cre08.g378250.t1.1;SMM32;g8904.t2;Cre08.g378250.t1.1;SMM32;g8904.t2;Cre08.g378250.t1.1"		
+Cre08.g368700	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Chloroplast	GO:0005515	"protein binding"		"RMT4;g8641.t1"		"SET domain-containing methyltransferase; Similar to At1g143 F7A19.12, F16A14.25; putative ribulose-1,5 bisphosphate carboxylase/oxygenase large subunit N-methyltransferase [EC:2.1.1.127]. ChromoDB SDG3414"
+Cre08.g371350							"Cre08.g371350.t1.1;g8698.t1"		
+Cre08.g379650			Mitochondrion			TIC20	"g8938.t1;TIC20;Cre08.g379650.t1.1;g8938.t1;TIC20;Cre08.g379650.t1.1;Cre08.g379650.t1.1;TIC20;g8938.t1"	"TIC20;TIC20;TIC20"	"Forms the 1-MD TIC complex mediating chlorolast protein import, along with TIC56, TIC100 and TIC214 (Ycf1);Forms the 1-MD TIC complex mediating chlorolast protein import, along with TIC56, TIC100 and TIC214 (Ycf1);Forms the 1-MD TIC complex mediating chlorolast protein import, along with TIC56, TIC100 and TIC214 (Ycf1)"
+Cre08.g368950	"GMM:18.5;GMM:13.1.6.1.2"	"Co-factor and vitamine metabolism.folate and vitamine K;amino acid metabolism.synthesis.aromatic aa.chorismate.3-dehydroquinate synthase"	Chloroplast			DHQS	"Cre08.g368950.t1.1;DQS1;g8646.t1; DHQS;SHK2;DHQS;DHQS;SHK2; DHQS;DQS1;g8646.t1;Cre08.g368950.t1.1"	"DHQS1;DHQS1"	"catalyzes conversion of 3-deoxy-arabino-heptulosonate-7-phosphate to dehydroquinate in the chorismate biosynthesis pathway; plastid location predicted by homology;catalyzes conversion of 3-deoxy-arabino-heptulosonate-7-phosphate to dehydroquinate in the chorismate biosynthesis pathway; plastid location predicted by homology"
+Cre08.g381450			Mitochondrion			OPR35	"g8976.t2;Cre08.g381450.t1.1"	OPR35	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; two alternative transcripts starting with either MEIVASRawrs.. or by MPASLKHWawrs.."
+Cre08.g358563	GMM:27.1	RNA.processing		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"		"Cre28.g776850.t1.1;g8379.t1;Cre28.g776850.t1.2;Cre28.g776850.t1.1;g8379.t1;Cre28.g776850.t1.2;g8379.t1;Cre28.g776850.t1.1;Cre28.g776850.t1.2;g8379.t1;Cre28.g776850.t1.2;Cre28.g776850.t1.1;Cre28.g776850.t1.1;Cre28.g776850.t1.2;g8379.t1;g8379.t1;Cre28.g776850.t1.2;Cre28.g776850.t1.1;Cre28.g776850.t1.1;g8379.t1;Cre28.g776850.t1.2"		
+Cre08.g359100							"Cre08.g359100.t1.1;g8411.t1;TMG14;TRM11"	TRM11	
+Cre08.g363267									
+Cre08.g383800			"Secretory pathway"				g9034.t1		
+Cre08.g374150							g8816.t1		
+Cre08.g373350	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"				"Cre08.g373350.t1.1;g8791.t1"		
+Cre08.g359550							g8421.t1		
+Cre08.g382605									
+Cre08.g379800	GMM:27.3.66	"RNA.regulation of transcription.pseudo ARR transcription factor family"		GO:0004866	"endopeptidase inhibitor activity"		"Cre08.g379800.t1.1;g8941.t1;Cre08.g379800.t1.1;g8941.t1;g8941.t1;Cre08.g379800.t1.1;g8941.t1;Cre08.g379800.t1.1;Cre08.g379800.t1.1;g8941.t1;Cre08.g379800.t1.1;g8941.t1;Cre08.g379800.t1.1;g8941.t1;Cre08.g379800.t1.1;g8941.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre08.g368176									
+Cre08.g368400	GMM:21.2.2	"redox.ascorbate and glutathione.glutathione"		"GO:0055114;GO:0045454;GO:0016491;GO:0004791"	"oxidation-reduction process;cell redox homeostasis;oxidoreductase activity;thioredoxin-disulfide reductase activity"	NTR1	"TR1;Cre08.g368400.t1.1;g8634.t1;TR"	NTR1	"cytosolic selenoprotein; mammalian type (large TR); UGA codon encode carboxy-terminal penultimate selenocysteine; the sequence differs slightly from AAN32903 due to error in the latter"
+Cre08.g383300			Chloroplast	GO:0016020	membrane		"Cre08.g383300.t1.1;g9024.t1"		
+Cre08.g371450	"GMM:31.4;GMM:29.3.4.99"	"cell.vesicle transport;protein.targeting.secretory pathway.unspecified"				COPZ1	"Cre08.g371450.t1.1;g8700.t2;COPZ1;COPZ1;g8700.t2;Cre08.g371450.t1.1;COPZ1;Cre08.g371450.t1.1;g8700.t2"	"COPZ1;COPZ1;COPZ1"	"Zeta-COP, subunit of COP-I complex involved in vesicle trafficking;Zeta-COP, subunit of COP-I complex involved in vesicle trafficking;Zeta-COP, subunit of COP-I complex involved in vesicle trafficking"
+Cre08.g364450	GMM:13.2.2.1	"amino acid metabolism.degradation.glutamate family.glutamine"		GO:0008080	"N-acetyltransferase activity"	NAT1	"g8533.t1;Cre08.g364450.t1.1;NAT1"		"N-acetyltransferase-like protein"
+Cre08.g377650							"Cre08.g377650.t1.1;g8892.t1"		
+Cre08.g376700	"GMM:28.1;GMM:27.1"	"DNA.synthesis/chromatin structure;RNA.processing"		"GO:0008138;GO:0006470;GO:0006397;GO:0006370;GO:0004484"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation;mRNA processing;7-methylguanosine mRNA capping;mRNA guanylyltransferase activity"	MRCE1	"Cre08.g376700.t1.1;MRC1;g8872.t1"	MRCE1	"Catalyzes the first two steps of 5'-cap addition on mRNAs: removal of the terminal 5'-phosphate and 5'-addition of a guanosine residue with formation of a 5'-ppp-5' linkage. Although the two activities are found on two separate polypeptides in yeast, they are present on one single protein in Chlamydomonas, as in humans"
+Cre08.g371150							"Cre08.g371150.t1.1;g8694.t1"		
+Cre08.g371400	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	"zinc ion binding"	CPL16	g8699.t1	CPL16	"Conserved in the Plant Lineage"
+Cre08.g366750			Mitochondrion				g8594.t1		
+Cre08.g366150			Mitochondrion			ATG16	"ATG16;g8580.t1;g8580.t1;ATG16"		"Conserved protein involved in autophagy; interacts with Atg12-Atg5 conjugates to form Atg12-Atg5-Atg16 multimers, which binds to membranes and localizes to the pre-autophagosomal structure and are required for autophagy;Conserved protein involved in autophagy; interacts with Atg12-Atg5 conjugates to form Atg12-Atg5-Atg16 multimers, which binds to membranes and localizes to the pre-autophagosomal structure and are required for autophagy"
+Cre08.g384800			Chloroplast				"g9055.t1;Cre08.g384800.t1.1"		
+Cre08.g364700	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"Cre08.g364700.t1.1;g8538.t2;Cre08.g364700.t1.1;g8538.t2;g8538.t2;Cre08.g364700.t1.1;g8538.t2;Cre08.g364700.t1.1;g8538.t2;Cre08.g364700.t1.1"		
+Cre08.g370200	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		GO:0005515	"protein binding"		"g8676.t2;g8676.t2"		
+Cre08.g358541	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"	Chloroplast						
+Cre08.g364400	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	"GO:0006355;GO:0003700"	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		g8532.t1		
+Cre08.g367550	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP291	"g8612.t1;Cre08.g367550.t1.1"	FAP291	"Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre08.g358700			"Secretory pathway"				"g8403.t1;Cre08.g358700.t1.1"		
+Cre08.g358565			Chloroplast						
+Cre08.g385550							g9071.t1		
+Cre08.g373000							"g8735.t1;Cre08.g373000.t1.1;g8735.t1;Cre08.g373000.t1.1"		
+Cre08.g373650							g8805.t1		
+Cre08.g371566			Chloroplast				"Cre08.g371550.t1.3;g8703.t1"		
+Cre08.g379200			Chloroplast			CPLD18	g8929.t1	CPLD18	"contains a HExxH motif typical of Zn-binding metalloproteases, embedded in a transmembrane segment as in RseP"
+Cre08.g362350	GMM:3.2.4	"minor CHO metabolism.trehalose.trehalase"	"Secretory pathway"				"g8486.t1;g8486.t1"		
+Cre08.g384100	GMM:16.1	"secondary metabolism.isoprenoids"					"g9040.t1;g9040.t1"		
+Cre08.g383200							"Cre08.g383200.t1.1;g9022.t1"		
+Cre08.g358350	GMM:1.1.4.1	"PS.lightreaction.ATP synthase.alpha subunit"	Chloroplast			TDA1	"OPR34;g8334.t1;OPR34;g8334.t1"	"TDA1;TDA1"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; activates translation of atpA mRNA;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; activates translation of atpA mRNA"
+Cre08.g376150				GO:0017183	"peptidyl-diphthamide biosynthetic process from peptidyl-histidine"	CGL150	g8861.t2	CGL150	
+Cre08.g369800	GMM:29.2.3.1	"protein.synthesis.initiation.deoxyhypusine synthase"		GO:0008612	"peptidyl-lysine modification to peptidyl-hypusine"	DHS2	"g8666.t1;Cre08.g369800.t1.1"	DHS2	"Transfers the aminobutyl moiety of spermidine to a specific lysine residue of eIF5A, forming deoxyhypusine (PMID: 17476569); deoxypusine will then be hydroxylated to generate the unusual aminoacid hypusine; an important mechanism controlling cell proliferation and growth (PMID: 16600425)"
+Cre08.g383850			Mitochondrion						
+Cre08.g372150			Mitochondrion				"Cre08.g372150.t1.1;g8717.t1"		
+Cre08.g377500			Mitochondrion				"g8889.t1;Cre08.g377500.t1.1"		
+Cre08.g381750			Chloroplast				g8983.t1		
+Cre08.g379100			"Secretory pathway"	GO:0003723	"RNA binding"				
+Cre08.g367900			"Secretory pathway"						
+Cre08.g376550	GMM:31.6.1.4.2	"cell.motility.eukaryotes.axonemal dyneins.inner arm"				DLR1	"ROC63;Cre08.g376550.t1.1;ODA-LC7a;DLC7a;g8869.t1;DLR1"	LC7A	"LC7a component of outer arm dynein; member of LC7/Roadblock family; interacts with both the outer arm and inner arm I1/f; Matsuo et al.'s (2008) roc63 (rhythm of chloroplast 63) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618]"
+Cre08.g385500	"GMM:2.2.2.1.1;GMM:2.2.2.1"	"major CHO metabolism.degradation.starch.starch cleavage.alpha amylase;major CHO metabolism.degradation.starch.starch cleavage"		"GO:0043169;GO:0005975;GO:0005509;GO:0004556;GO:0003824"	"cation binding;carbohydrate metabolic process;calcium ion binding;alpha-amylase activity;catalytic activity"	AMA1	"AMA1;AMYA1;g9070.t2;g9070.t2;AMYA1;AMA1;AMA1;g9070.t2;AMYA1;g9070.t2;AMYA1;AMA1"	"AMA1;AMA1;AMA1;AMA1"	"Belongs to glycoside hydrolase family 13; catalyses hydrolysis of (1-4)-alpha-D-glucosidic linkages in polysaccharides so as to remove successive alpha-maltose residues from the non-reducing ends of the chains in the conversion of starch to maltose, arabidopsis are named AMY;Belongs to glycoside hydrolase family 13; catalyses hydrolysis of (1-4)-alpha-D-glucosidic linkages in polysaccharides so as to remove successive alpha-maltose residues from the non-reducing ends of the chains in the conversion of starch to maltose, arabidopsis are named AMY;Belongs to glycoside hydrolase family 13; catalyses hydrolysis of (1-4)-alpha-D-glucosidic linkages in polysaccharides so as to remove successive alpha-maltose residues from the non-reducing ends of the chains in the conversion of starch to maltose, arabidopsis are named AMY;Belongs to glycoside hydrolase family 13; catalyses hydrolysis of (1-4)-alpha-D-glucosidic linkages in polysaccharides so as to remove successive alpha-maltose residues from the non-reducing ends of the chains in the conversion of starch to maltose, arabidopsis are named AMY"
+Cre08.g369200	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"				"g8651.t1;g8651.t1"		
+Cre08.g359400			Mitochondrion				"Cre08.g359400.t1.1;g8418.t1"		
+Cre08.g368500	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g8636.t1;Cre08.g368500.t1.1;Cre08.g368500.t1.1;g8636.t1"		
+Cre08.g362682			Mitochondrion				"g8493.t1;Cre08.g362682.t1.1"		
+Cre08.g375900	GMM:29.2.3	protein.synthesis.initiation				EIF2X	"g8856.t1;EIF2Aa;EIF2X;EIF2A-1"	EIF2X	"contains pfam domain 08662- EIF2A eukaryotic initiation factor family. Putative eukaryotic initiation factor (eIF), possibly eIF2A."
+Cre08.g385450			Mitochondrion	GO:0016787	"hydrolase activity"		"Cre08.g385450.t1.1;g9069.t1;g9069.t1;Cre08.g385450.t1.1"		
+Cre08.g377200	"GMM:28.99;GMM:28.1;GMM:27.3.63;GMM:27.3.44"	"DNA.unspecified;DNA.synthesis/chromatin structure;RNA.regulation of transcription.PHD finger transcription factor;RNA.regulation of transcription.chromatin remodeling factors"		GO:0005515	"protein binding"		"g8883.t1;SRH16"		"SWI/SNF chromatin remodeling complex component, ChromDB CHR345; SNF2 domain-containing protein/helicase domain-containing chromatin remodeling protein"
+Cre08.g373376									
+Cre08.g380950							"g8964.t1;Cre08.g380950.t1.1;Cre08.g380950.t1.1;g8964.t1"		
+Cre08.g374600			"Secretory pathway"						
+Cre08.g358545									
+Cre08.g368900	GMM:29.1.7	"protein.aa activation.alanine-tRNA ligase"	Chloroplast	"GO:0043039;GO:0016876;GO:0006419;GO:0005524;GO:0004813;GO:0003676;GO:0000166"	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;alanyl-tRNA aminoacylation;ATP binding;alanine-tRNA ligase activity;nucleic acid binding;nucleotide binding"	TSA2	"TSA2;Cre08.g368900.t1.1;g8645.t2;TSA2;Cre08.g368900.t1.1;g8645.t2;g8645.t2;Cre08.g368900.t1.1;TSA2;TSA2;g8645.t2;Cre08.g368900.t1.1;Cre08.g368900.t1.1;TSA2;g8645.t2"	"TSA2;TSA2;TSA2;TSA2;TSA2"	"Likely organellar alanyl-tRNA-synthetase, more related to bacterial alaS than TSA1;Likely organellar alanyl-tRNA-synthetase, more related to bacterial alaS than TSA1;Likely organellar alanyl-tRNA-synthetase, more related to bacterial alaS than TSA1;Likely organellar alanyl-tRNA-synthetase, more related to bacterial alaS than TSA1;Likely organellar alanyl-tRNA-synthetase, more related to bacterial alaS than TSA1"
+Cre08.g373370									
+Cre08.g373354							g8761.t1		
+Cre08.g365825	GMM:16.1.4.10	"secondary metabolism.isoprenoids.carotenoids.carotenoid cleavage dioxygenase"	Chloroplast				"g8572.t2;Cre08.g365801.t2.1;Cre08.g365801.t2.1;g8572.t2;Cre08.g365801.t2.1;g8572.t2;Cre08.g365801.t2.1;g8572.t2;g8572.t2;Cre08.g365801.t2.1;g8572.t2;Cre08.g365801.t2.1"		
+Cre08.g373344							"g8749.t1;Cre21.g761400.t1.1"		
+Cre08.g369400							"Cre08.g369400.t1.1;g8655.t1"		
+Cre08.g380500							"g8955.t1;Cre08.g380500.t1.1"		
+Cre08.g381650			Mitochondrion				g8981.t1		
+Cre08.g377300			Mitochondrion	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"		"DGAT2;g8885.t1"	DGTT6	
+Cre08.g376050									
+Cre08.g379600	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g8937.t1;g8937.t1"		
+Cre08.g361900							"g8472.t1;Cre08.g361900.t1.1;Cre08.g361900.t1.1;g8472.t1;Cre08.g361900.t1.1;g8472.t1"		
+Cre08.g366874			Chloroplast				"g8597.t1;Cre08.g366874.t1.1;Cre08.g366874.t1.1;g8597.t1"		
+Cre08.g378550	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"				NUOP4	"g8911.t1;Cre08.g378550.t1.1"	NUOP4	"Mitochondrial NADH:ubiquinone oxidoreductase (Complex I) 9 kDa subunit precursor, mitochondrial [AAS58498.1; Plant-specific subunit;"
+Cre08.g367150	GMM:34.99	transport.misc	"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT23	"g8603.t2;MFT23;g8603.t2;MFT23;MFT23;g8603.t2;MFT23;g8603.t2"		"Permease;Permease;Permease;Permease"
+Cre08.g373369			Mitochondrion						
+Cre08.g366400	GMM:28.2	DNA.repair		"GO:0043161;GO:0006289;GO:0005515;GO:0003684"	"proteasome-mediated ubiquitin-dependent protein catabolic process;nucleotide-excision repair;protein binding;damaged DNA binding"	RAD23	"Cre08.g366400.t1.1;g8585.t2;RAD23"	RAD23	"yeast Rad23 homolog [PMID: 17992532]"
+Cre08.g358575	GMM:34.99	transport.misc	Mitochondrion	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	TRP7	"g8390.t1;TRP7"		
+Cre08.g385050	"GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	MAPK2	"MAPK2;g9061.t1"		"Mitogen-Activated Protein Kinase 2; downstream kinase in the canonical MAP kinase pathway"
+Cre08.g361950			Chloroplast			FAP153	"g8474.t2;FAL10;FAL10;g8474.t2;FAL10;g8474.t2"	"FAP153;FAP153;FAP153"	"Similar to a small family of Flagellar Associated membrane Proteins and closely linked with them on Chromosome_8; null-allele mutant was isolated (PMID 29743196);Similar to a small family of Flagellar Associated membrane Proteins and closely linked with them on Chromosome_8; null-allele mutant was isolated (PMID 29743196);Similar to a small family of Flagellar Associated membrane Proteins and closely linked with them on Chromosome_8; null-allele mutant was isolated (PMID 29743196)"
+Cre08.g358561							"g8377.t1;Cre28.g776950.t1.1;Cre28.g776950.t1.2"		
+Cre08.g365664			Chloroplast				"g8567.t1;Cre08.g365664.t1.1"		
+Cre08.g381200							"g8971.t1;g8971.t1"		
+Cre08.g372500	GMM:27.3.54	"RNA.regulation of transcription.histone acetyltransferases"					"Cre08.g372500.t1.1;g8724.t1;Cre08.g372500.t1.1;g8724.t1"		
+Cre08.g375500	"GMM:3.5;GMM:26.26"	"minor CHO metabolism.others;misc.aminotransferases"		"GO:1901137;GO:0030246;GO:0005975;GO:0004360"	"carbohydrate derivative biosynthetic process;carbohydrate binding;carbohydrate metabolic process;glutamine-fructose-6-phosphate transaminase (isomerizing) activity"	ATF1	"Cre08.g375500.t1.1;ATF1;g8846.t1"	ATF1	"glucosamine-6-phosphate synthase; hexosephosphate aminotransferase [EC:2.6.1.16]; contains amidotransferase and phosphosugar isomerase domains; pathway: glutamate metabolism - aminosugars metabolism; ts-lethal mutation blocks at S/M (PMID 29743196)"
+Cre08.g382800	"GMM:30.3;GMM:29.4.1;GMM:29.4"	"signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005509;GO:0004672"	"protein phosphorylation;calcium ion binding;protein kinase activity"		"g9013.t1;Cre08.g382800.t1.1;g9013.t1;Cre08.g382800.t1.1;g9013.t1;Cre08.g382800.t1.1"	"CDPK13;CDPK13;CDPK13"	"Identified as CrCDPK13 in [PMID: 23936117];Identified as CrCDPK13 in [PMID: 23936117];Identified as CrCDPK13 in [PMID: 23936117]"
+Cre08.g368750			"Secretory pathway"				g8642.t1		
+Cre08.g373349			Chloroplast						
+Cre08.g381400									
+Cre08.g358527									
+Cre08.g358554				"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"		"Cre28.g777300.t1.1;g8370.t1;Cre28.g777300.t1.2"		
+Cre08.g361750							"g8469.t1;g8469.t1;g8469.t1;g8469.t1"		
+Cre08.g361400	GMM:27.3.17	"RNA.regulation of transcription.CPP(Zn) CPP1-related transcription factor family"					"g8462.t1;Cre08.g361400.t1.1;g8462.t1;Cre08.g361400.t1.1"		
+Cre08.g385300	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion	GO:0005515	"protein binding"	HLM14	"Cre08.g385300.t1.1;HLM14;g9066.t1;g9066.t1;HLM14;Cre08.g385300.t1.1;g9066.t1;HLM14;Cre08.g385300.t1.1"		"Contains SET domain. ChromoDB SDG3410;Contains SET domain. ChromoDB SDG3410;Contains SET domain. ChromoDB SDG3410"
+Cre08.g364775									
+Cre08.g358553							"Cre28.g777350.t1.2;g8369.t1;Cre28.g777350.t1.1"		
+Cre08.g373100	GMM:16.1.4.7	"secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase"	Chloroplast	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP97C3	"g8737.t1;CYP25;g8737.t1;CYP25;CYP25;g8737.t1"	"CYP97C3;CYP97C3;CYP97C3"	"Probabale carotenoid hydroxylase;Probabale carotenoid hydroxylase;Probabale carotenoid hydroxylase"
+Cre08.g371801							"Cre08.g371801.t1.1;g8709.t1"		
+Cre08.g374300	GMM:33.99	development.unspecified				CGL115	"g8819.t1;g8819.t1;g8819.t1"	"CGL115;CGL115;CGL115"	
+Cre08.g374200	"GMM:31.2;GMM:3.6;GMM:29.4.1;GMM:29.4"	"cell.division;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g8817.t1		
+Cre08.g360600	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"	GO:0016020	membrane	ERM4	"g8445.t1;ERM4"		"transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration); belongs to a cluster of 4 closely linked and related Chlamydomonas ERM genes"
+Cre08.g360750			Chloroplast						
+Cre08.g370850	"GMM:29.5.11.3;GMM:29.5"	"protein.degradation.ubiquitin.E2;protein.degradation"				UBC18	"UBC18;g8689.t1"	RCE1	"ts-lethal mutant was isolated"
+Cre08.g358547									
+Cre08.g378200	GMM:18	"Co-factor and vitamine metabolism"		"GO:0055114;GO:0016638;GO:0010181;GO:0004733"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-NH2 group of donors;FMN binding;pyridoxamine-phosphate oxidase activity"		"Cre08.g378200.t1.1;PPO1;g8903.t1;PPO1;g8903.t1;Cre08.g378200.t1.1"		
+Cre08.g381000			Mitochondrion				"g8966.t1;Cre08.g381000.t1.1;g8966.t1;Cre08.g381000.t1.1;Cre08.g381000.t1.1;g8966.t1"		
+Cre08.g369250						FAP400	"g8652.t1;Cre08.g369250.t1.1"	FAP400	"Found in Cr and Volvox but not strongly conserved elsewhere"
+Cre08.g383550				"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g9029.t1;Cre08.g383550.t1.1;g9029.t1;Cre08.g383550.t1.1"		
+Cre08.g365720			Chloroplast				g8569.t1		
+Cre08.g362300	GMM:3.2.4	"minor CHO metabolism.trehalose.trehalase"					"g8485.t1;g8485.t1;g8485.t1;g8485.t1;g8485.t1;g8485.t1"		
+Cre08.g362800							"Cre08.g362800.t1.1;g8497.t1"		
+Cre08.g376250							g8863.t1		
+Cre08.g371600							"Cre08.g371600.t1.1;g8704.t1"		
+Cre08.g369000			Chloroplast				g8647.t1		
+Cre08.g358555	GMM:27.3.55	"RNA.regulation of transcription.HDA"	Chloroplast				"Cre28.g777250.t1.1;Cre28.g777250.t1.2;g8371.t1"		
+Cre08.g382515	GMM:33.99	development.unspecified		GO:0005515	"protein binding"		g9000.t1		
+Cre08.g372400	"GMM:29.5.11.3;GMM:29.5.11"	"protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin"				UBC19	"g8722.t1;Cre08.g372400.t1.1;UBC19"	UBC19	"E2 Ubiquitin conjugating enzyme, subclass XIV"
+Cre08.g377700	GMM:29.5.5	"protein.degradation.serine protease"		"GO:0006508;GO:0004176"	"proteolysis;ATP-dependent peptidase activity"		"g8893.t1;g8893.t1"		
+Cre08.g361650	GMM:29.5.11	protein.degradation.ubiquitin	"Secretory pathway"				"g8467.t1;g8467.t1"		
+Cre08.g373764									
+Cre08.g379750			Mitochondrion				"MKS2;Cre08.g379750.t1.1;g8940.t1"	TMEM216	"Ortholog of TMEM216 in humans; Mutations of human TMEM216 have been associated with Meckel-Gruber Syndrome Type 2, and Joubert Syndrome 2;"
+Cre08.g385200	GMM:27.1	RNA.processing		"GO:0005681;GO:0000398"	"spliceosomal complex;mRNA splicing, via spliceosome"	SMP3	"SMP3;g9064.t1"		"putative small nuclear ribonucleoprotein E (snRNP-E) (Sm protein E) (Sm-E)"
+Cre08.g362150	"GMM:31.6.1.10;GMM:30.99"	"cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified"				FAP361	"g8482.t1;FAP154;FAP154;g8482.t1"	"FAP361;FAP361"	"Flagellar Associated Protein with PAS sensory domain, found in the flagellar proteome;Flagellar Associated Protein with PAS sensory domain, found in the flagellar proteome"
+Cre08.g383900			Mitochondrion				g9036.t1		
+Cre08.g373375									
+Cre08.g374550			Mitochondrion			FDX12	"FDX12;Cre08.g374550.t1.1;g8824.t1"	FDX12	
+Cre08.g382750	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	"Secretory pathway"				g9012.t1		
+Cre08.g376720	GMM:29.5.3	"protein.degradation.cysteine protease"	"Mitochondrion;Chloroplast"	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP7	"Cre08.g376750.t2.1;CEP7;g8873.t1"		"Cysteine-type endopeptidase, papain type"
+Cre08.g378650						CGl131	"Cre08.g378650.t1.1;g8913.t1"	CGl131	
+Cre08.g358200				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g8330.t2;ACV4"		"described in AAK14340, next to MCA1 gene"
+Cre08.g358570			Chloroplast			MCP23	"g8385.t1;Cre28.g776600.t1.2;MCP23;Cre28.g776600.t1.1"		
+Cre08.g369500			"Secretory pathway"				"g8657.t1;Cre08.g369500.t1.1"		
+Cre08.g370450	"GMM:29.9;GMM:29.6.2.6;GMM:29.6"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding"	Mitochondrion	"GO:0051087;GO:0042803;GO:0006457;GO:0000774"	"chaperone binding;protein homodimerization activity;protein folding;adenyl-nucleotide exchange factor activity"	MGE1	"MGE1;Cre08.g370450.t1.1;g8681.t1"	MGE1	"mitochondrial grpE-type co-chaperone of the HSP70 system; probable co-chaperone of the HSP70C chaperone; assists matrix Hsp70 in both protein translocation across the mitochondrial membranes and subsequent protein folding; similar to At4g26780 and At5g55200"
+Cre08.g358529							"g8346.t1;Cre41.g786700.t1.1"		
+Cre08.g384750	"GMM:2.2.2.1.1;GMM:2.2.2.1"	"major CHO metabolism.degradation.starch.starch cleavage.alpha amylase;major CHO metabolism.degradation.starch.starch cleavage"	Chloroplast	"GO:0043169;GO:0005975;GO:0005509;GO:0004556;GO:0003824"	"cation binding;carbohydrate metabolic process;calcium ion binding;alpha-amylase activity;catalytic activity"	AMA3	"AMYA3;AMA3;g9054.t1;g9054.t1;AMYA3;AMA3"	"AMA3;AMA3"	"Belongs to glycoside hydrolase family 13; catalyses hydrolysis of (1-4)-alpha-D-glucosidic linkages in polysaccharides so as to remove successive alpha-maltose residues from the non-reducing ends of the chains in the conversion of starch to maltose;Belongs to glycoside hydrolase family 13; catalyses hydrolysis of (1-4)-alpha-D-glucosidic linkages in polysaccharides so as to remove successive alpha-maltose residues from the non-reducing ends of the chains in the conversion of starch to maltose"
+Cre08.g382545							g9002.t1	CNX7	
+Cre08.g367950						FAP323	g8621.t1	FAP323	
+Cre08.g358569	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"				"Cre28.g776650.t1.1;g8384.t1;Cre28.g776650.t1.2;g8384.t1;Cre28.g776650.t1.2;Cre28.g776650.t1.1"		
+Cre08.g373428			Mitochondrion				g8799.t1		
+Cre08.g366300			Chloroplast				"g8583.t1;g8583.t1;g8583.t1;g8583.t1;g8583.t1;g8583.t1;g8583.t1"		
+Cre08.g362650	GMM:31.6.1.3.2.1	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A"				IFT140	g8492.t1	IFT140	"Component of core of IFT-A particle"
+Cre08.g382575			Chloroplast				g9004.t1		
+Cre08.g358535							"g8351.t1;Cre41.g786750.t1.2;Cre41.g786750.t1.1;Cre41.g786750.t1.1;g8351.t1;Cre41.g786750.t1.2"		
+Cre08.g373583			Mitochondrion	"GO:0051205;GO:0016021"	"protein insertion into membrane;integral component of membrane"	ALB3.4	"OXA2;ALB3.4;g8804.t1;ALB3D;Cre08.g373600.t2.1;ALB3.4;g8804.t1;OXA2;Cre08.g373600.t2.1;ALB3D"		"Previously annotated as being related to the Arabidopsis ALBINO3 and yeast OXA1 proteins, but similarity is poor; Probably mitochondrial rather than chloroplastic, as it contains a C-terminal TPR repeat like Arabidopsis mitochondrial OXA1;Previously annotated as being related to the Arabidopsis ALBINO3 and yeast OXA1 proteins, but similarity is poor; Probably mitochondrial rather than chloroplastic, as it contains a C-terminal TPR repeat like Arabidopsis mitochondrial OXA1"
+Cre08.g372650			"Secretory pathway"				"g8727.t1;Cre08.g372650.t1.1"		
+Cre08.g367350			Chloroplast				"Cre08.g367350.t1.1;g8607.t1"		
+Cre08.g365103			"Secretory pathway"			FAP319	g8557.t1	FAP319	
+Cre08.g358522	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP5	"CEP5;Cre41.g786400.t1.2;g8339.t1;Cre41.g786400.t1.1;Cre41.g786400.t1.2;g8339.t1;Cre41.g786400.t1.1;CEP5"		"Cysteine endopeptidases (EC 3.4.22), C1A family (papain-type); most similar to insect proteinases possibly involved in defense mechanisms (PMID: 10050046); contains N-terminal cathepsin propeptide inhibitor domain (I29) domain; targeted to secretory pathw;Cysteine endopeptidases (EC 3.4.22), C1A family (papain-type); most similar to insect proteinases possibly involved in defense mechanisms (PMID: 10050046); contains N-terminal cathepsin propeptide inhibitor domain (I29) domain; targeted to secretory pathw"
+Cre08.g373407							g8794.t1		
+Cre08.g379576				GO:0003677	"DNA binding"		g8936.t1		
+Cre08.g359450							"g8419.t1;Cre08.g359450.t1.1"		
+Cre08.g374900	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"					"g8831.t1;Cre08.g374900.t1.1"		
+Cre08.g373362									
+Cre08.g380350							"Cre08.g380350.t1.1;g8952.t1"		
+Cre08.g378351									
+Cre08.g367800	GMM:23.3.3	"nucleotide metabolism.salvage.NUDIX hydrolases"		GO:0016787	"hydrolase activity"	NDH2	"g8617.t1;NDH2;Cre08.g367800.t1.1"		"probably an ADP-ribose diphosphatase"
+Cre08.g375550				"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"g8847.t1;Cre08.g375550.t1.1"		
+Cre08.g363800							g8520.t1		
+Cre08.g373300	"GMM:30.6;GMM:3.6;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	MAPKKK1	"g8742.t1;MAPKKK1;MAPKKK1;g8742.t1"		"Mitogen-Activated Protein Kinase Kinase Kinase 1 (MAP Kinase Kinase Kinase 1)(MEK Kinase 1) (MEKK1). First kinase in the canonical MAP Kinase pathway;Mitogen-Activated Protein Kinase Kinase Kinase 1 (MAP Kinase Kinase Kinase 1)(MEK Kinase 1) (MEKK1). First kinase in the canonical MAP Kinase pathway"
+Cre08.g368800							"g8643.t2;g8643.t2"		
+Cre08.g365027									
+Cre08.g361984	"GMM:31.6.1.10;GMM:30.99"	"cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified"					"Cre08.g361984.t1.1;g8475.t1;Cre08.g361984.t1.1;g8475.t1;Cre08.g361984.t1.1;g8475.t1"		
+Cre08.g378000							"g8899.t1;Cre08.g378000.t1.1"		
+Cre08.g368350							"g8633.t1;g8633.t1;g8633.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre08.g362450	"GMM:2.2.2.1.1;GMM:2.2.2.1"	"major CHO metabolism.degradation.starch.starch cleavage.alpha amylase;major CHO metabolism.degradation.starch.starch cleavage"	Chloroplast	"GO:0043169;GO:0005975;GO:0005509;GO:0004556;GO:0003824"	"cation binding;carbohydrate metabolic process;calcium ion binding;alpha-amylase activity;catalytic activity"	AMA2	"AMA2;g8488.t1;Cre08.g362450.t1.1;AMYA2;AMYA2;AMA2;Cre08.g362450.t1.1;g8488.t1;g8488.t1;AMA2;Cre08.g362450.t1.1;AMYA2;g8488.t1;AMYA2;Cre08.g362450.t1.1;AMA2"	"AMA2;AMA2;AMA2;AMA2"	"Belongs to glycoside hydrolase family 13; catalyses hydrolysis of (1-4)-alpha-D-glucosidic linkages in polysaccharides so as to remove successive alpha-maltose residues from the non-reducing ends of the chains in the conversion of starch to maltose;Belongs to glycoside hydrolase family 13; catalyses hydrolysis of (1-4)-alpha-D-glucosidic linkages in polysaccharides so as to remove successive alpha-maltose residues from the non-reducing ends of the chains in the conversion of starch to maltose;Belongs to glycoside hydrolase family 13; catalyses hydrolysis of (1-4)-alpha-D-glucosidic linkages in polysaccharides so as to remove successive alpha-maltose residues from the non-reducing ends of the chains in the conversion of starch to maltose;Belongs to glycoside hydrolase family 13; catalyses hydrolysis of (1-4)-alpha-D-glucosidic linkages in polysaccharides so as to remove successive alpha-maltose residues from the non-reducing ends of the chains in the conversion of starch to maltose"
+Cre08.g385675							"Cre08.g385683.t1.2;g9074.t1"		
+Cre08.g359567			Mitochondrion				"g8422.t2;Cre08.g359567.t1.1"		
+Cre08.g373373									
+Cre08.g363650			Mitochondrion				g8517.t1		
+Cre08.g358650			"Secretory pathway"	GO:0016020	membrane		g8402.t1		
+Cre08.g369950			"Secretory pathway"				g8669.t1		
+Cre08.g381983									
+Cre08.g384200	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		"GO:0005525;GO:0003924"	"GTP binding;GTPase activity"		"g9042.t1;Cre08.g384200.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre08.g382250							"Cre08.g382250.t1.1;g8993.t1"		
+Cre08.g374250	GMM:31.6.1.9	"cell.motility.eukaryotes.flagellar adhesion and gamete fusion"	"Secretory pathway"			SAG1	g8818.t1	SAG1	"Sexual adhesion protein located on the flagellar surface of plus gametes [PMID: 15659633]; see AY450930;"
+Cre08.g383350									
+Cre08.g358542									
+Cre08.g378500							"g8910.t1;g8910.t1"		
+Cre08.g377251			Mitochondrion						
+Cre08.g370500			Chloroplast	"GO:0006750;GO:0003839"	"glutathione biosynthetic process;gamma-glutamylcyclotransferase activity"		g8682.t1		
+Cre08.g359850			Chloroplast			FBB11	"FBB11;g8428.t1"	FBB11	"Conserved protein of unknown function, found in ciliated organisms; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation; Coiled-Coil Protein"
+Cre08.g368150	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g8626.t1		
+Cre08.g361300			Mitochondrion	"GO:0016021;GO:0008146"	"integral component of membrane;sulfotransferase activity"		g8460.t1		
+Cre08.g365692	GMM:14.3	"S-assimilation.sulfite redox"	Chloroplast	"GO:0055114;GO:0051536;GO:0020037;GO:0016491"	"oxidation-reduction process;iron-sulfur cluster binding;heme binding;oxidoreductase activity"	SIR4	"g8568.t1;SIR4"	SIR2	
+Cre08.g358500			Chloroplast				"g8398.t1;Cre08.g358500.t1.1"		
+Cre08.g368300			"Secretory pathway"	"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"	HEL43	"HEL43;g8632.t1;g8632.t1;HEL43"		"contains ResIII and HeliC domains;contains ResIII and HeliC domains"
+Cre08.g385800							g9077.t1		
+Cre08.g367050			Mitochondrion				g8601.t1		
+Cre08.g358568			"Secretory pathway"	GO:0016757	"transferase activity, transferring glycosyl groups"		"Cre28.g776700.t1.1;g8383.t1;Cre28.g776700.t1.2;Cre28.g776700.t1.1;g8383.t1;Cre28.g776700.t1.2"		
+Cre08.g359600	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Chloroplast			CSE22	"CSE22;g8423.t1;Cre08.g359600.t1.1"		"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre08.g382716	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	"protein binding"	UBQ3	"g9011.t1;Cre08.g382709.t1.2"		
+Cre08.g370300							"g8678.t1;Cre08.g370300.t1.1"		
+Cre08.g383950	GMM:16.1	"secondary metabolism.isoprenoids"					g9037.t1		
+Cre08.g358450									
+Cre08.g358250	"GMM:35.1.5;GMM:1.1.3.5"	"not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;PS.lightreaction.cytochrome b6/f.biogenesis"	Chloroplast			MCA1	"Cre08.g358250.t1.1;g8331.t1;PPR14;PPR14;Cre08.g358250.t1.1;g8331.t1;PPR14;g8331.t1;Cre08.g358250.t1.1;g8331.t1;Cre08.g358250.t1.1;PPR14;PPR14;Cre08.g358250.t1.1;g8331.t1"	"MCA1;MCA1;MCA1;MCA1;MCA1"	"PentatricoPeptide Repeat protein that stabilizes petA mRNA in the chloroplast;PentatricoPeptide Repeat protein that stabilizes petA mRNA in the chloroplast;PentatricoPeptide Repeat protein that stabilizes petA mRNA in the chloroplast;PentatricoPeptide Repeat protein that stabilizes petA mRNA in the chloroplast;PentatricoPeptide Repeat protein that stabilizes petA mRNA in the chloroplast"
+Cre08.g386050	GMM:29.5.11	protein.degradation.ubiquitin	Chloroplast				"Cre08.g386050.t1.1;g9083.t1"		
+Cre08.g373346			"Secretory pathway"				"g8752.t1;Cre21.g761407.t1.1;g8752.t1;Cre21.g761407.t1.1;g8752.t1;Cre21.g761407.t1.1"		
+Cre08.g360300	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"		"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"g8437.t1;SDR11;Cre08.g360300.t1.1;SDR11;Cre08.g360300.t1.1;g8437.t1;Cre08.g360300.t1.1;g8437.t1;SDR11"		"(SDR), linked on same scaffold to genes involved in urea/arginine metabolism;(SDR), linked on same scaffold to genes involved in urea/arginine metabolism;(SDR), linked on same scaffold to genes involved in urea/arginine metabolism"
+Cre08.g372050							"Cre08.g372050.t1.1;g8715.t1"		
+Cre08.g372350	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP188	"g8721.t1;g8721.t1;g8721.t1;g8721.t1"	"FAP188;FAP188;FAP188;FAP188"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre08.g385350	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		"GO:0007275;GO:0006355;GO:0003700"	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g9067.t1;g9067.t1;g9067.t1;g9067.t1;g9067.t1;g9067.t1"		
+Cre08.g358528	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP157	"Cre41.g786650.t1.1;g8345.t1;Cre41.g786650.t1.2"	FAP157	
+Cre08.g373341									
+Cre08.g384650			Chloroplast				"g9052.t1;ELI7;Cre08.g384650.t1.1"	ELIP7	
+Cre08.g378700							"Cre08.g378700.t1.1;g8914.t1"		
+Cre08.g361250			Chloroplast	GO:0016757	"transferase activity, transferring glycosyl groups"		g8459.t1		
+Cre08.g373374							g8787.t1		
+Cre08.g362950			"Secretory pathway"				g8500.t1		
+Cre08.g376000							g8858.t1		
+Cre08.g366676									
+Cre08.g384950	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g9059.t1;Cre08.g384950.t1.1"		
+Cre08.g363300			Mitochondrion	"GO:0009116;GO:0003824"	"nucleoside metabolic process;catalytic activity"		"g8509.t1;Cre08.g363300.t1.1;Cre08.g363300.t1.1;g8509.t1;g8509.t1;Cre08.g363300.t1.1"		
+Cre08.g366101	GMM:31.1	cell.organisation					"g8579.t1;Cre08.g366100.t1.3;Cre08.g366100.t1.3;g8579.t1"		
+Cre08.g373400						CSU6			
+Cre08.g365900	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCSR1	"LI818;g8574.t1;Cre08.g365900.t1.1;LI818;g8574.t1;Cre08.g365900.t1.1;Cre08.g365900.t1.1;LI818;g8574.t1;Cre08.g365900.t1.1;g8574.t1;LI818"	"LHCSR1;LHCSR1;LHCSR1;LHCSR1"	"LI818r-1; involved in protection against UV-B and induced by UVR8; Low-CO2 and high-light inducible chlorophyll a/b binding protein; regulated by CCM1 [PMID: 15235119];LI818r-1; involved in protection against UV-B and induced by UVR8; Low-CO2 and high-light inducible chlorophyll a/b binding protein; regulated by CCM1 [PMID: 15235119];LI818r-1; involved in protection against UV-B and induced by UVR8; Low-CO2 and high-light inducible chlorophyll a/b binding protein; regulated by CCM1 [PMID: 15235119];LI818r-1; involved in protection against UV-B and induced by UVR8; Low-CO2 and high-light inducible chlorophyll a/b binding protein; regulated by CCM1 [PMID: 15235119]"
+Cre08.g380700			"Secretory pathway"				"Cre08.g380700.t1.1;g8959.t1"		
+Cre08.g362250	GMM:3.2.4	"minor CHO metabolism.trehalose.trehalase"					"g8484.t1;g8484.t1;g8484.t1;g8484.t1;g8484.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre08.g362776			Chloroplast				g8496.t1		
+Cre08.g373840			Chloroplast				g8810.t1		
+Cre08.g363700				GO:0005515	"protein binding"		"g8518.t1;g8518.t1"		
+Cre08.g382400			Mitochondrion				"g8996.t1;g8996.t1;g8996.t1;g8996.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre08.g384700	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"				DMA3	"DMA3;g9053.t1"	DMA3	"Putative DNA methylase, N-6 adenine-specific; possibly a ribosomal L11 methyltransferase"
+Cre08.g381850			"Secretory pathway"				"g8985.t1;Cre08.g381850.t1.1"		
+Cre08.g365150	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			FAP320	"g8549.t2;CSE7;Cre08.g365150.t1.1"	FAP320	"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre08.g373726									
+Cre08.g379550	"GMM:34.7;GMM:34.2"	"transport.phosphate;transport.sugars"	Mitochondrion	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	PHT4	"MFT11;g8935.t1;PHT4;PHT4-4;PHT4;g8935.t1;PHT4-4;MFT11;g8935.t1;MFT11;PHT4-4;PHT4;PHT4-4;MFT11;g8935.t1;PHT4;MFT11;PHT4-4;PHT4;g8935.t1;PHT4-4;MFT11;PHT4;g8935.t1;PHT4;g8935.t1;PHT4-4;MFT11;PHT4-4;g8935.t1;MFT11;PHT4;g8935.t1;MFT11;PHT4-4;PHT4"	"PHT4D;PHT4D;PHT4D;PHT4D;PHT4D;PHT4D;PHT4D;PHT4D;PHT4D"	"related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters"
+Cre08.g360350			Chloroplast			ADI1	"g8438.t1;ADI1;ADI1;g8438.t1;ADI1;g8438.t1;ADI1;g8438.t1;ADI1;g8438.t1"	"ADI1;ADI1;ADI1;ADI1;ADI1"	"part of the arginine dihydrolase pathway, allowing use of arginine as a carbon source in anaerobic conditions;part of the arginine dihydrolase pathway, allowing use of arginine as a carbon source in anaerobic conditions;part of the arginine dihydrolase pathway, allowing use of arginine as a carbon source in anaerobic conditions;part of the arginine dihydrolase pathway, allowing use of arginine as a carbon source in anaerobic conditions;part of the arginine dihydrolase pathway, allowing use of arginine as a carbon source in anaerobic conditions"
+Cre08.g365200	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			FAP321	"Cre08.g365200.t1.1;g8550.t1;CSE8;CSE8;g8550.t1;Cre08.g365200.t1.1"	"FAP321;FAP321"	"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome;Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre08.g361350							"Cre08.g361350.t1.1;g8461.t1;Cre08.g361350.t1.1;g8461.t1"		
+Cre08.g368850			"Secretory pathway"				"g8644.t1;Cre08.g368850.t1.1"		
+Cre08.g370350							"Cre08.g370350.t1.1;g8679.t1"		
+Cre08.g361000			"Secretory pathway"	"GO:0016021;GO:0006810;GO:0005524;GO:0005471"	"integral component of membrane;transport;ATP binding;ATP:ADP antiporter activity"		"g8453.t1;g8453.t1"		
+Cre08.g363837	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0006260;GO:0003887;GO:0003677"	"DNA replication;DNA-directed DNA polymerase activity;DNA binding"	POLG1X	"g8521.t1;POLG1X;POL1A;POL1A;POLG1X;g8521.t1;POL1A;POLG1X;g8521.t1;g8521.t1;POLG1X;POL1A"	"POLG1X;POLG1X;POLG1X;POLG1X"	"Homologous to E. coli PolI-like DNA polymerase; POLA family DNA polymerase; probably functions in mitochondria and/or chloroplast.;Homologous to E. coli PolI-like DNA polymerase; POLA family DNA polymerase; probably functions in mitochondria and/or chloroplast.;Homologous to E. coli PolI-like DNA polymerase; POLA family DNA polymerase; probably functions in mitochondria and/or chloroplast.;Homologous to E. coli PolI-like DNA polymerase; POLA family DNA polymerase; probably functions in mitochondria and/or chloroplast."
+Cre08.g370401	"GMM:31.3;GMM:31.2"	"cell.cycle;cell.division"	Chloroplast			CYCB1	"DIV80;Cre08.g370400.t1.2;g8680.t1;g8680.t1;Cre08.g370400.t1.2;DIV80;g8680.t1;DIV80;Cre08.g370400.t1.2;g8680.t1;DIV80;Cre08.g370400.t1.2"	"CYCB1;CYCB1;CYCB1;CYCB1"	"Probable essential activator of CDKB1; ts-lethal mutations block before mitosis;Probable essential activator of CDKB1; ts-lethal mutations block before mitosis;Probable essential activator of CDKB1; ts-lethal mutations block before mitosis;Probable essential activator of CDKB1; ts-lethal mutations block before mitosis"
+Cre08.g360500	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"	GO:0016020	membrane	ERM2	"g8442.t1;ERM2;ERM2;g8442.t1"		"transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration); belongs to a cluster of 4 closely linked and related Chlamydomonas ERM genes;transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration); belongs to a cluster of 4 closely linked and related Chlamydomonas ERM genes"
+Cre08.g364501							g8534.t1		
+Cre08.g373802			Chloroplast						
+Cre08.g367400	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCSR3.2	"LHCSR3.2;g8608.t1;LHCSR3;LI818r"	LHCSR3B	LHCSR3.2
+Cre08.g358600							"g8401.t1;g8401.t1;g8401.t1"		
+Cre08.g386000							"g9082.t1;g9082.t1"		
+Cre08.g379900	GMM:34.14	"transport.unspecified cations"		"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"				
+Cre08.g376740	GMM:29.5.3	"protein.degradation.cysteine protease"					"g8874.t1;g8874.t1"		
+Cre08.g382560	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG39	"g9003.t1;ELG39;g9003.t1;ELG39;ELG39;g9003.t1;g9003.t1;ELG39"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre08.g373359			"Secretory pathway"				"Cre21.g761738.t1.2;GT90-40;Cre21.g761738.t1.1;GT90F40;g8766.t1;Cre21.g761738.t1.1;GT90F40;g8766.t1;GT90-40;Cre21.g761738.t1.2"		
+Cre08.g384150			Chloroplast				g9041.t1		
+Cre08.g362000			Chloroplast			FAP72	"g8476.t1;FAP408;Cre08.g362000.t1.1"	FAP72	"Flagellar Associated Protein, found in the flagellar proteome; A single transcript exists that codes for the fusion of FAP408 and FAP72, but distinct transcripts my code only for the former or latter, generated by alternative splicing leading to intron retention or by an internal promoter"
+Cre08.g377950			Chloroplast				"Cre08.g377950.t1.1;g8898.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre08.g383500							"g9028.t1;g9028.t1;g9028.t1"		
+Cre08.g380400	GMM:31.2	cell.division		GO:0007094	"mitotic spindle assembly checkpoint"	MAD2	"g8953.t1;Cre08.g380400.t1.1;MAD2"	MAD2	"Similar to MAD2 mitotic spindle assembly checkpoint protein"
+Cre08.g373050	"GMM:26.1;GMM:11.1.1.1"	"misc.misc2;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.homomeric enzyme"	Mitochondrion	"GO:0006633;GO:0005524;GO:0003989"	"fatty acid biosynthetic process;ATP binding;acetyl-CoA carboxylase activity"	BCC3	"g8736.t1;BCC3;GEX104"	BCC3	"Encodes the homomeric acetyl-CoA biotin carboxylase/carboxyl carrier (hoACCase); TS-lethal mutant was isolated"
+Cre08.g361200			Chloroplast			ODA10	"CCDC151;g8458.t2"	ODA10	"Coiled-coil ODA assembly factor, dimerizes with ODA5; Null mutations block late steps in ODA assembly and transport [PMID: 24088566]; Functions in cytoplasm, but also localizes to proximal axoneme [PMID: 26310446];"
+Cre08.g381516	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"		"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"g8978.t1;g8978.t1"		
+Cre08.g358576	GMM:34.14	"transport.unspecified cations"					"Cre28.g776300.t1.1;g8391.t1"		
+Cre08.g381900	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"Cre08.g381900.t1.1;g8986.t1;Cre08.g381900.t1.1;g8986.t1;g8986.t1;Cre08.g381900.t1.1"		
+Cre08.g379175			"Secretory pathway"						
+Cre08.g359900	GMM:29.4	"protein.postranslational modification"					"g8429.t1;g8429.t1"		
+Cre08.g358543			"Secretory pathway"	"GO:0015074;GO:0005515"	"DNA integration;protein binding"		g8359.t1		
+Cre08.g365065						FAP318			
+Cre08.g379850	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g8942.t1;Cre08.g379850.t1.1;Cre08.g379850.t1.1;g8942.t1"		
+Cre08.g381702	"GMM:8.2.99;GMM:16.4.2;GMM:13.1.1.1.3"	"TCA / organic transformation.other organic acid transformations.misc;secondary metabolism.N misc.betaine;amino acid metabolism.synthesis.central amino acid metabolism.GABA.SSADH"	Mitochondrion	"GO:0055114;GO:0016491;GO:0008152"	"oxidation-reduction process;oxidoreductase activity;metabolic process"		"g8982.t1;ALDH5G1;g8982.t1;ALDH5G1"	"ALDH5;ALDH5"	"Family 5 aldehyde dehydrogenase;Family 5 aldehyde dehydrogenase"
+Cre08.g359300			"Secretory pathway"	"GO:0016787;GO:0009166"	"hydrolase activity;nucleotide catabolic process"	PHO1	"PHO1;g8416.t1;Cre08.g359300.t1.1"	PHO1	"Similar to C-terminal half of 145 kDa, phosphate-deficiency inducible alkaline phosphatase, encoded by phoA, from Synechococcus sp. PCC 7942."
+Cre08.g379350	GMM:34.8	"transport.metabolite transporters at the envelope membrane"	Chloroplast			TPT1	"TPT10;g8931.t1;TPT"		
+Cre08.g382590	GMM:31.1	cell.organisation		"GO:0035267;GO:0031011;GO:0006355;GO:0006338;GO:0006281"	"NuA4 histone acetyltransferase complex;Ino80 complex;regulation of transcription, DNA-templated;chromatin remodeling;DNA repair"		g9005.t2		
+Cre08.g367650	"GMM:33.99;GMM:30.5;GMM:27.3.70"	"development.unspecified;signalling.G-proteins;RNA.regulation of transcription.silencing group"		GO:0005515	"protein binding"	MUT11	"Cre08.g367650.t1.1;MUT11;g8614.t1"	MUT11	"WD40-repeat-containing protein involved in transcriptional gene silencing (AAL60198); subunit of histone methyltransferase complexes"
+Cre08.g358536			Mitochondrion	"GO:0008716;GO:0005737"	"D-alanine-D-alanine ligase activity;cytoplasm"				
+Cre08.g359950			"Secretory pathway"				"g8430.t1;Cre08.g359950.t1.1"		
+Cre08.g373367									
+Cre08.g377400			Chloroplast				"g8887.t1;g8887.t1;g8887.t1;g8887.t1;g8887.t1"		
+Cre08.g365141			"Secretory pathway"			CSE6			
+Cre08.g379187			"Secretory pathway"				g8927.t1		
+Cre08.g368100							"g8625.t1;g8625.t1;g8625.t1;g8625.t1;g8625.t1"		
+Cre08.g363383									
+Cre08.g375751			Chloroplast				g8852.t1		
+Cre08.g373343									
+Cre08.g360900	"GMM:29.2.1.99.1.19;GMM:29.2.1.2.1.15"	"protein.synthesis.ribosomal protein.unknown.small subunit.S19;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S15"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	RPS15	"g8451.t1;Cre08.g360900.t1.1;g8451.t1;Cre08.g360900.t1.1"	"RPS15;RPS15"	"Cytosolic 40S small ribosomal subunit protein S15;Cytosolic 40S small ribosomal subunit protein S15"
+Cre08.g363750				GO:0005509	"calcium ion binding"		g8519.t1		
+Cre08.g376350	GMM:27.3.70	"RNA.regulation of transcription.silencing group"		"GO:0006333;GO:0005634"	"chromatin assembly or disassembly;nucleus"	ASF1	"g8865.t2;ASF1"	ASF1	"Anti-silencing factor, Silencing Group A, ChromDB SGA3401; homologous to yeast ASF1"
+Cre08.g375850							"Cre08.g375850.t1.1;g8855.t1;g8855.t1;Cre08.g375850.t1.1"		
+Cre08.g358578			"Secretory pathway"				"g8393.t1;Cre28.g776200.t1.1"		
+Cre08.g381100							"g8969.t1;g8969.t1;g8969.t1"		
+Cre08.g358537			Chloroplast				g8353.t1		
+Cre08.g369700			Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g8663.t1;Cre08.g369700.t1.1"		
+Cre08.g374400				GO:0005515	"protein binding"		"g8821.t1;g8821.t1;g8821.t1"		
+Cre08.g384628			"Secretory pathway"				"g9051.t1;g9051.t1;g9051.t1"		
+Cre08.g362036			"Secretory pathway"						
+Cre08.g374650	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"				DII3	"DII3;TPR5;g8826.t1;p44"	DII3	"Tetratricopeptide repeat protein associated with inner dynein arm d"
+Cre08.g369150	"GMM:35.1.1;GMM:34.16"	"not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems"	Chloroplast				"g8650.t1;g8650.t1"		
+Cre08.g373500			Chloroplast				"g8802.t1;g8802.t1;g8802.t1"		
+Cre08.g363950			"Secretory pathway"	"GO:0016788;GO:0006886;GO:0006505"	"hydrolase activity, acting on ester bonds;intracellular protein transport;GPI anchor metabolic process"		"g8523.t1;g8523.t1"		"Null-allele mutant was isolated [PMID: 29743196];Null-allele mutant was isolated [PMID: 29743196]"
+Cre08.g383650							"Cre08.g383650.t1.1;g9031.t1"	NUP85	"85 kDa Nuclear Pore Complex Protein"
+Cre08.g361551	GMM:29.5.11	protein.degradation.ubiquitin					"g8465.t1;Cre08.g361550.t1.3"		
+Cre08.g362700	"GMM:29.5;GMM:13.1.3.4.12"	"protein.degradation;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase"	"Secretory pathway"	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	smm30	"g8494.t1;SMM30;Cre08.g362700.t1.1;Cre08.g362700.t1.1;SMM30;g8494.t1"		
+Cre08.g381300							"g8973.t1;Cre08.g381300.t1.1"		
+Cre08.g358572	GMM:34.14	"transport.unspecified cations"		"GO:0016021;GO:0006952"	"integral component of membrane;defense response"		"g8387.t1;Cre28.g776500.t1.1"		
+Cre08.g385600	GMM:29.4	"protein.postranslational modification"					"g9072.t2;g9072.t2"		
+Cre08.g360400	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"	GO:0016020	membrane	ERM1	"ERM1;g8439.t1;ERM1;g8439.t1"		"transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration); belongs to a cluster of 4 closely linked and related Chlamydomonas ERM genes;transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration); belongs to a cluster of 4 closely linked and related Chlamydomonas ERM genes"
+Cre08.g371700									
+Cre08.g365500							g8563.t1		
+Cre08.g358850			"Secretory pathway"			FAP386	"Cre08.g358850.t1.1;g8406.t1"	FAP386	"Cr specific protein"
+Cre08.g373878			Mitochondrion				"Cre08.g373800.t1.3;g8811.t1"	RAA13	"Necessary for trans-splicing of psaA mRNA; Component of psaA trans-splicing sub complex I"
+Cre08.g382200							"g8992.t1;g8992.t1"		
+Cre08.g358524			Chloroplast				"g8341.t1;Cre41.g786450.t1.2;Cre41.g786450.t1.1"		
+Cre08.g362750				"GO:0046872;GO:0016787;GO:0003676"	"metal ion binding;hydrolase activity;nucleic acid binding"		"g8495.t1;Cre08.g362750.t1.1;Cre08.g362750.t1.1;g8495.t1"		
+Cre08.g363100			"Secretory pathway"	"GO:0008061;GO:0006030;GO:0005576"	"chitin binding;chitin metabolic process;extracellular region"		"g8503.t1;g8503.t1"		
+Cre08.g360050	"GMM:13.2.4.4;GMM:11.1.1.2.4"	"amino acid metabolism.degradation.branched chain group.leucine;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.biotin carboxylase"				DUR1	"DUR1;g8432.t1;g8432.t1;DUR1;DUR1;g8432.t1;g8432.t1;DUR1;g8432.t1;DUR1;DUR1;g8432.t1;g8432.t1;DUR1;DUR1;g8432.t1;g8432.t1;DUR1;DUR1;g8432.t1;g8432.t1;DUR1;DUR1;g8432.t1;g8432.t1;DUR1"	"DUR1;DUR1;DUR1;DUR1;DUR1;DUR1;DUR1;DUR1;DUR1;DUR1;DUR1;DUR1;DUR1"	"urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level;urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level;urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level;urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level;urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level;urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level;urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level;urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level;urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level;urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level;urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level;urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level;urea carboxylase [EC:6.3.4.]; Allophanate hydrolase subunit 2; catalyses first reaction of ATP:urea amidolyase; homologous to C-terminus of yeast protein, whose N-terminus is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level"
+Cre08.g359650							"Cre08.g359650.t1.1;g8424.t1"		
+Cre08.g358557							"Cre28.g777150.t1.1;g8373.t1;Cre28.g777150.t1.2"		
+Cre08.g360550			Mitochondrion	GO:0005507	"copper ion binding"	ERM3	"ERM3;g8443.t1;NIRK"	NIRK1	"Homologous to fungal and bacterial NirK, which participates in denitrification by converting NO2 to NO; very few homologs in algae (C. leiostraca, Chlorella sorokiniana, Galdieria suphuraria, Emiliania huxleyi) and in Amoebas; probably mitochondrial, like CYP55 which converts NO to N2O; induced by anaerobiosis, nitrate and darkness, repressed by Fe-limitation in TAP"
+Cre08.g378300							g8905.t1		
+Cre08.g372850				GO:0008270	"zinc ion binding"		"g8732.t1;Cre08.g372850.t1.1"		
+Cre08.g373688			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		g8806.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre08.g358560							"g8376.t1;Cre28.g777000.t1.1"		
+Cre08.g372300			Mitochondrion	"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		"g8720.t1;Cre08.g372300.t1.1"		
+Cre08.g366800							"g8595.t1;g8595.t1;g8595.t1"		
+Cre08.g358300									
+Cre08.g373225			Chloroplast						
+Cre08.g384285							g9044.t1		
+Cre08.g365100	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			FAP242	"g8548.t2;CSE5"	FAP242	"Coiled-Coil Flagellar Associated Protein, found in the flagellar proteome; Belongs to family E of Chlamydomonadales-specific proteins, all on chromosome 8; function unknown"
+Cre08.g376800	"GMM:29.2.3;GMM:11.9.4.2"	"protein.synthesis.initiation;lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH"	Mitochondrion				g8875.t1	MIF2	"Highly similar to chloroplast-targeted homolog CIF2, but carries an insertion in C-term part that is typical of IF2 proteins involved in initiation of leaderless mRNAs, as found in the Chlamydomonas mitochondrion"
+Cre08.g362076									
+Cre08.g367876									
+Cre08.g366600			Mitochondrion				"g8590.t1;g8590.t1"		
+Cre08.g369976			Chloroplast				g8670.t1		
+Cre08.g372200			"Secretory pathway"				"Cre08.g372200.t1.1;g8718.t1"		"Target of CRR1"
+Cre08.g363450			Chloroplast				"Cre08.g363450.t1.1;g8514.t1"		
+Cre08.g370083			Mitochondrion						
+Cre08.g373421			"Secretory pathway;Chloroplast"						
+Cre08.g358616	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"	FAP398	g8400.t1	FAP398	"Similar to Protein Phosphatase"
+Cre08.g364550	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	"ubiquitin-protein transferase activity"		"g8535.t1;g8535.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre08.g373365									
+Cre08.g363874	GMM:2.2.2.3	"major CHO metabolism.degradation.starch.glucan water dikinase"	Mitochondrion				"g8522.t2;g8522.t2;g8522.t2;g8522.t2"		
+Cre08.g370950							"Cre08.g370950.t1.1;g8691.t1"		
+Cre08.g367200	"GMM:33.99;GMM:31.4"	"development.unspecified;cell.vesicle transport"				VPS52	"g8604.t1;VPS52"	VPS52	"Conserved Protein. Similar to VPS52/SAC2, a component of the GARP (Golgi-associated retrograde protein) complex"
+Cre08.g371957	"GMM:33.99;GMM:31.99"	"development.unspecified;cell.unspecified"		"GO:0031931;GO:0031929"	"TORC1 complex;TOR signaling"	RAPTOR	"g8713.t1;RAPTOR"	RAPTOR1	"Subunit of TORC1; TORC1 is a rapamycin-sensitive complex involved in growth control; contains four HEAT repeats and seven WD-40 repeats; may act as a scaffold protein to couple TOR and its effectors"
+Cre08.g371840			Mitochondrion				"g8710.t1;g8710.t1"		
+Cre08.g380800							g8961.t2		
+Cre08.g373353			Chloroplast						
+Cre08.g382689	"GMM:33.99;GMM:29.5.11.1;GMM:29.5.11;GMM:29.2.1.2.2.40;GMM:29.2.1.2.1.27;GMM:29.1"	"development.unspecified;protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27;protein.aa activation"		GO:0005515	"protein binding"	UBQ4	"Cre08.g382689.t1.1;g9009.t1;g9009.t1;Cre08.g382689.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre08.g358531				GO:0016021	"integral component of membrane"		"Cre28.g777550.t1.2;g8348.t1;Cre28.g777550.t1.1;Cre28.g777550.t1.1;Cre28.g777550.t1.2;g8348.t1"		
+Cre08.g372900	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"		GO:0005515	"protein binding"	VFL1	"g8733.t1;VFL1"	VFL1	"Mutations alter number and position of basal bodies. Protein localizes to basal bodies and probasal bodies."
+Cre08.g369900	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g8668.t1;Cre08.g369900.t1.1"		
+Cre08.g368050			Chloroplast	"GO:0006281;GO:0003824"	"DNA repair;catalytic activity"		"Cre08.g368050.t1.1;MGMT;g8624.t1"		"contains 6-O-methylguanine DNA methyltransferase, DNA binding domain"
+Cre08.g360100				GO:0016884	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor"	DUR2	"g8433.t1;DUR2;Cre08.g360100.t1.1"	DUR2	"allophanate hydrolase [EC:3.5.1.54]; catalyses second reaction of ATP:urea amidolyase; homologous to N-terminal domain of yeast protein, whose C-terminal domain (carboxylase activity) is homologous to DUR2, upstream divergent; in green algae, the two activities are separated at the protein level (Harris, p243)"
+Cre08.g361600	GMM:29.5.11	protein.degradation.ubiquitin	"Secretory pathway"				g8466.t1		
+Cre08.g383000	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Chloroplast	"GO:0007275;GO:0006355;GO:0003700"	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		g9018.t2		
+Cre08.g382500	"GMM:29.2.1.99.1.25;GMM:29.2.1.2.1.25"	"protein.synthesis.ribosomal protein.unknown.small subunit.S25;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S25"				RPS25	"g8999.t1;Cre08.g382500.t1.1;Cre08.g382500.t1.1;g8999.t1"	"RPS25;RPS25"	"Cytosolic 40S small ribosomal subunit protein S25;Cytosolic 40S small ribosomal subunit protein S25"
+Cre08.g365000			Mitochondrion	"GO:0006950;GO:0005516"	"response to stress;calmodulin binding"		"CSE1;g8546.t1;g8546.t1;CSE1"		"contains a calmodulin-binding domain;contains a calmodulin-binding domain"
+Cre08.g373345									
+Cre08.g374700						FAP244	g8827.t1	FAP244	"Found in the flagellar proteome; Null-allele mutant was isolated"
+Cre08.g378750							g8915.t1	CTAP7	"Copurifies with both Tic20 and Tic214 and may be part of the chloroplast translocon"
+Cre08.g369550							"Cre08.g369550.t1.1;g8658.t1"		
+Cre08.g359350	"GMM:13.2.4.4;GMM:11.1.1.2.4;GMM:11.1.1"	"amino acid metabolism.degradation.branched chain group.leucine;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.biotin carboxylase;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation"	Chloroplast			CARB1	"CMP2; CARB1;g8417.t1;Cre08.g359350.t1.1"	BC1	"Carbamoyl-phosphate synthase; acetyl-CoA carboxylase, biotin carboxylase"
+Cre08.g377550							"g8890.t1;Cre08.g377550.t1.1"		
+Cre08.g364950						FAP317	"g8553.t2;CSE1;CSE2"	FAP317	"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre08.g380650			"Secretory pathway"				"g8958.t1;GT90F13;GT90-13"		
+Cre08.g375084	GMM:27.1.1	RNA.processing.splicing		"GO:0006397;GO:0003676"	"mRNA processing;nucleic acid binding"		g8838.t2		
+Cre08.g379450	GMM:26.3	"misc.gluco-, galacto- and mannosidases"		"GO:0009341;GO:0005975;GO:0004565;GO:0004553"	"beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity;hydrolase activity, hydrolyzing O-glycosyl compounds"		"g8933.t1;g8933.t1;g8933.t1;g8933.t1;g8933.t1"		
+Cre08.g376300			Chloroplast				"g8864.t1;Cre08.g376300.t1.1;LIL5, SEP2"		"LHC family protein with two transmembrane helices, one of which has an LHC motif; Light harvesting-like 5; Part of a conserved clade of LIL5/SEP2 proteins in land plants and green algae."
+Cre08.g380201	GMM:13.1.6.1.10	"amino acid metabolism.synthesis.aromatic aa.chorismate.3-dehydroquinate dehydratase/shikimate dehydrogenase"	Mitochondrion	"GO:0055114;GO:0004764;GO:0003855"	"oxidation-reduction process;shikimate 3-dehydrogenase (NADP+) activity;3-dehydroquinate dehydratase activity"	SHKD1	"g8949.t1;SHKD1"	SHKD1	"(EC:4.2.1.1 -- 1.1.1.25); fusion protein similar to that described for tomato [PMID: 11299368]; predicted mitochondrial by Target-P, but plastidic by homology"
+Cre08.g358583			"Secretory pathway"				g8399.t1		
+Cre08.g373368									
+Cre08.g358523			Mitochondrion				"g8340.t1;g8340.t1"		
+Cre08.g358577	GMM:34.14	"transport.unspecified cations"		GO:0005515	"protein binding"		"Cre28.g776250.t1.2;Cre28.g776250.t1.1;g8392.t1"		
+Cre08.g360001							"g8431.t1;g8431.t1"		
+Cre08.g371650			Chloroplast	"GO:0015031;GO:0008565"	"protein transport;protein transporter activity"	TATB	"g8705.t1;TATB;Cre08.g371650.t1.1;TAT2"	TATB1	"The TAT translocon translocates proteins with a Twin Arginine Transit peptide through the thylakoid membrane"
+Cre08.g385700	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"		GO:0006886	"intracellular protein transport"	SNAPG1	"Cre08.g385700.t1.1;SNAPG1;g9075.t1;Cre08.g385700.t1.1;g9075.t1;SNAPG1"	"SNAPG1;SNAPG1"	"Gamma-SNAP, adaptor protein connecting NSF to cis-SNARE complex; hypothetical conserved protein.;Gamma-SNAP, adaptor protein connecting NSF to cis-SNARE complex; hypothetical conserved protein."
+Cre08.g373342									
+Cre08.g372800	GMM:27.1.1	RNA.processing.splicing		"GO:0005634;GO:0003676"	"nucleus;nucleic acid binding"		"g8731.t1;g8731.t1"		"CPSF is involved in mRNA polyadenylation and binds the AAUAAA conserved sequence in pre-mRNA. CPSF has also been found to be necessary for splicing of single-intron pre-mRNAs;CPSF is involved in mRNA polyadenylation and binds the AAUAAA conserved sequence in pre-mRNA. CPSF has also been found to be necessary for splicing of single-intron pre-mRNAs"
+Cre08.g380000						UMM7	"Cre08.g380000.t1.1;UMM7;g8945.t1;UMM7;g8945.t1;Cre08.g380000.t1.1;Cre08.g380000.t1.1;g8945.t1;UMM7;Cre08.g380000.t1.1;UMM7;g8945.t1"		"UbiE/COQ5 methyltransferase family;UbiE/COQ5 methyltransferase family;UbiE/COQ5 methyltransferase family;UbiE/COQ5 methyltransferase family"
+Cre08.g377350	"GMM:23.4.3;GMM:23.4.2;GMM:23.4.1"	"nucleotide metabolism.phosphotransfer and pyrophosphatases.uridylate kinase;nucleotide metabolism.phosphotransfer and pyrophosphatases.guanylate kinase;nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase"		GO:0005515	"protein binding"	FAP180	"ADK5;FAP180;g8886.t1;FAP121;FAP18"	FAP180	"Contains adenylate and gualylate kinase domains, and calmodulin binding IQ motifs and a C-terminal Dpy30 motif; linked to ADK6; found in the flagellar proteome and previously annotated as FAP18 and FAP121; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre08.g365550							g8564.t1		
+Cre08.g362050	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Chloroplast			FAP49	"g8479.t1;Cre08.g362050.t1.1"	FAP49	"Flagella Associated Membrane Protein with PAS sensory domain; found in the flagellar proteome [PMID: 15998802]; FAP153 likely is a part of FAP49."
+Cre08.g358558									
+Cre08.g358538	GMM:16.1.4.5	"secondary metabolism.isoprenoids.carotenoids.lycopene beta cyclase"	Chloroplast	"GO:0016705;GO:0016117"	"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;carotenoid biosynthetic process"		"g8354.t1;Cre41.g786900.t1.1;Cre41.g786900.t1.2"		
+Cre08.g364000	"GMM:33.99;GMM:3.5;GMM:29.2.2.3.4"	"development.unspecified;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins"		GO:0005515	"protein binding"		"g8524.t1;g8524.t1;g8524.t1;g8524.t1"	"FAP413;FAP413;FAP413;FAP413"	"Found in the flagellar proteome;Found in the flagellar proteome;Found in the flagellar proteome;Found in the flagellar proteome"
+Cre08.g358571	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	cyg70	"Cre28.g776550.t1.1;g8386.t1;g8386.t1;Cre28.g776550.t1.1;g8386.t1;Cre28.g776550.t1.1"		
+Cre08.g359700	GMM:18.11	"Co-factor and vitamine metabolism.lipoic acid"	Mitochondrion	"GO:0051539;GO:0051536;GO:0016992;GO:0009107;GO:0003824"	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;lipoate synthase activity;lipoate biosynthetic process;catalytic activity"	LAS1	"g8425.t1;LIPA1;Cre08.g359700.t1.1;LAS1;LAS1;Cre08.g359700.t1.1;LIPA1;g8425.t1"	"LAS1;LAS1"	"lipoate biosynthesis, possible mitochondrial precursor;lipoate biosynthesis, possible mitochondrial precursor"
+Cre08.g369050			"Secretory pathway"				"g8648.t1;Cre08.g369050.t1.1"		
+Cre08.g373357									
+Cre08.g375350	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"		"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"g8843.t1;Cre08.g375350.t1.1;SDR12"		
+Cre08.g381950	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	TAR1	"TAR1;Cre08.g381950.t1.1;g8987.t1;Cre08.g381950.t1.1;TAR1;g8987.t1"	"YAK1;YAK1"	"Dual-specificity regulated protein kinase; regulator of triacylglycerol accumulation; its mutation abolishes storage lipid accumulation in S and N starvation; shows conserved functional features of the DYRK family (ATP anchor, phosphate anchor, catalytic loop, cation-binding site, activation loop); residues 495 to 830 are 47% identical to yeast Yak1p;Dual-specificity regulated protein kinase; regulator of triacylglycerol accumulation; its mutation abolishes storage lipid accumulation in S and N starvation; shows conserved functional features of the DYRK family (ATP anchor, phosphate anchor, catalytic loop, cation-binding site, activation loop); residues 495 to 830 are 47% identical to yeast Yak1p"
+Cre08.g374350							"g8820.t1;Cre08.g374350.t1.1"		
+Cre08.g381050	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP8	"g8967.t1;CEP8"		"Cysteine-type endopeptidase, papain type"
+Cre08.g382900			Chloroplast				g9016.t1		
+Cre08.g358530			Mitochondrion			OPR113	"Cre41.g786711.t1.1;OPR113;Cre41.g786711.t1.2;g8347.t1"	MDE1	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre08.g381600			Mitochondrion				"Cre08.g381600.t1.1;g8980.t1"		
+Cre08.g364250	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0016480	"negative regulation of transcription from RNA polymerase III promoter"		"Cre08.g364250.t1.1;g8529.t1"		
+Cre08.g368250							"g8631.t1;g8631.t1"		
+Cre08.g384000	"GMM:26.10;GMM:26.1;GMM:17.3.1.1.5"	"misc.cytochrome P450;misc.misc2;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.metabolic regulation"	Mitochondrion	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP771A1	"CYP26;g9038.t1;CYP26;g9038.t1;CYP26;g9038.t1;g9038.t1;CYP26"	"CYP771A1;CYP771A1;CYP771A1;CYP771A1"	"cytochrome P450, unknown function;cytochrome P450, unknown function;cytochrome P450, unknown function;cytochrome P450, unknown function"
+Cre08.g362500			Chloroplast	"GO:0007076;GO:0000796"	"mitotic chromosome condensation;condensin complex"		"Cre08.g362500.t1.1;g8489.t1;g8489.t1;Cre08.g362500.t1.1"		
+Cre08.g358546							"g8363.t1;Cre50.g790000.t1.1;Cre50.g790000.t1.2"		
+Cre08.g372450	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"	PSBQ	"OEE3, PSBQ;Cre08.g372450.t1.1;g8723.t1;g8723.t1;Cre08.g372450.t1.1;OEE3, PSBQ;Cre08.g372450.t1.1;OEE3, PSBQ;g8723.t1;Cre08.g372450.t1.1;OEE3, PSBQ;g8723.t1;Cre08.g372450.t1.1;OEE3, PSBQ;g8723.t1;g8723.t1;OEE3, PSBQ;Cre08.g372450.t1.1;OEE3, PSBQ;g8723.t1;Cre08.g372450.t1.1;OEE3, PSBQ;g8723.t1;Cre08.g372450.t1.1;Cre08.g372450.t1.1;OEE3, PSBQ;g8723.t1"	"PSBQ1;PSBQ1;PSBQ1;PSBQ1;PSBQ1;PSBQ1;PSBQ1;PSBQ1;PSBQ1"	"gi:131395; gi:18164;gi:131395; gi:18164;gi:131395; gi:18164;gi:131395; gi:18164;gi:131395; gi:18164;gi:131395; gi:18164;gi:131395; gi:18164;gi:131395; gi:18164;gi:131395; gi:18164"
+Cre08.g375450	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Mitochondrion	"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"Cre08.g375450.t1.1;g8845.t1;SDR13"		"Possible retinol dehydrogenase"
+Cre08.g365450							"Cre08.g365450.t1.1;g8562.t1;Cre08.g365450.t1.1;g8562.t1;Cre08.g365450.t1.1;g8562.t1"		
+Cre08.g367850									
+Cre08.g382950			Mitochondrion				"g9017.t1;Cre08.g382950.t1.1"		
+Cre08.g358900	GMM:23.3.1.2	"nucleotide metabolism.salvage.phosphoribosyltransferases.hypoxanthine-guanine phosphoribosyltransferase (HPRT)"	Chloroplast	GO:0009116	"nucleoside metabolic process"		"g8407.t1;Cre08.g358900.t1.1"		
+Cre08.g371250							g8696.t1		
+Cre08.g363367									
+Cre08.g362200	GMM:3.2.4	"minor CHO metabolism.trehalose.trehalase"					"g8483.t1;g8483.t1;g8483.t1"		
+Cre08.g373550				GO:0016787	"hydrolase activity"		"Cre08.g373550.t1.1;g8803.t1"		
+Cre08.g385100						EFH5	"g9062.t1;Cre08.g385100.t1.1;EFH5"		
+Cre08.g385250							"g9065.t1;g9065.t1;g9065.t1"		
+Cre08.g373916	GMM:27.1.19	RNA.processing.ribonucleases		"GO:0004527;GO:0003676"	"exonuclease activity;nucleic acid binding"				
+Cre08.g359200	"GMM:31.2;GMM:20.2.5"	"cell.division;stress.abiotic.light"					"g8414.t1;g8414.t1;g8414.t1"		
+Cre08.g360801			Chloroplast						
+Cre08.g363150				"GO:0008061;GO:0006030;GO:0005576"	"chitin binding;chitin metabolic process;extracellular region"		"g8504.t1;Cre08.g363150.t1.1;Cre08.g363150.t1.1;g8504.t1;g8504.t1;Cre08.g363150.t1.1;Cre08.g363150.t1.1;g8504.t1;Cre08.g363150.t1.1;g8504.t1"		
+Cre08.g360444									
+Cre08.g365050			"Secretory pathway"			FAP409			
+Cre08.g369850	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"		"g8667.t1;g8667.t1"		
+Cre08.g358549									
+Cre08.g384900	"GMM:30.6;GMM:3.6;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	FAP356	"g9058.t1;Cre08.g384900.t1.1"	FAP356	"Similar to MAP3K delta-1 Protein Kinase"
+Cre08.g370550			Mitochondrion	"GO:0055114;GO:0050660;GO:0016491;GO:0003824"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;catalytic activity"		"g8683.t1;g8683.t1;g8683.t1;g8683.t1"		
+Cre08.g370900			"Secretory pathway"				g8690.t1		
+Cre08.g376850							"g8876.t2;g8876.t2"		
+Cre08.g367750			"Secretory pathway"				"GT90F12;GT90-12;g8616.t1;DIV144"		"ts-lethal mutant block at S/M (PMID 29743196)"
+Cre08.g369100			"Secretory pathway"				"Cre08.g369100.t1.1;g8649.t1"		
+Cre08.g366579							"g8589.t1;Cre08.g366579.t1.1"		
+Cre08.g360850			Mitochondrion	GO:0005524	"ATP binding"		"Cre08.g360850.t1.1;g8450.t1"		
+Cre08.g361100	"GMM:18.1;GMM:18"	"Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism"	"Secretory pathway"	GO:0005515	"protein binding"		g8456.t2		
+Cre08.g372716			Mitochondrion				"Cre08.g372716.t1.1;g8729.t1"		
+Cre08.g377600			"Secretory pathway"	GO:0010508	"positive regulation of autophagy"	ATG14	g8891.t1	ATG14	"Autophagy-specific subunit of phosphatidylinositol 3-kinase complex I; Atg14 targets complex I to the phagophore assembly site (PAS); required for localizing additional ATG proteins to the PAS"
+Cre08.g373356	GMM:29.4	"protein.postranslational modification"	Chloroplast						
+Cre08.g373363									
+Cre08.g373414			"Secretory pathway"						
+Cre08.g373250	"GMM:29.5.11.20;GMM:29.5"	"protein.degradation.ubiquitin.proteasom;protein.degradation"		"GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175"	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA2	"Cre08.g373250.t1.1;POA2;g8741.t1;POA2;g8741.t1;Cre08.g373250.t1.1;Cre08.g373250.t1.1;POA2;g8741.t1;POA2;g8741.t1;Cre08.g373250.t1.1;POA2;g8741.t1;Cre08.g373250.t1.1"	"POA2;POA2;POA2;POA2;POA2"	"(PSA2) 20S proteasome alpha subunit B (type 2);(PSA2) 20S proteasome alpha subunit B (type 2);(PSA2) 20S proteasome alpha subunit B (type 2);(PSA2) 20S proteasome alpha subunit B (type 2);(PSA2) 20S proteasome alpha subunit B (type 2)"
+Cre08.g380763			"Secretory pathway"				g8960.t2		
+Cre08.g378850	GMM:23.1.3	"nucleotide metabolism.synthesis.PRS-PP"	Chloroplast	"GO:0009165;GO:0004749;GO:0000287"	"nucleotide biosynthetic process;ribose phosphate diphosphokinase activity;magnesium ion binding"	RPPK1	"RPPK1;Cre08.g378850.t1.1;g8917.t1;g8917.t1;Cre08.g378850.t1.1;RPPK1;g8917.t1;Cre08.g378850.t1.1;RPPK1;RPPK1;Cre08.g378850.t1.1;g8917.t1"	"RPPK1;RPPK1;RPPK1;RPPK1"	"ribose-phosphate pyrophosphokinase (RPPK) = phosphoribosylpyrophosphate synthetase (P-Rib-PP synthetase) (PRPP synthetase); normally highly regulated enzyme; PRPP is an essential precursor for purine and pyrimidine nucleotides;ribose-phosphate pyrophosphokinase (RPPK) = phosphoribosylpyrophosphate synthetase (P-Rib-PP synthetase) (PRPP synthetase); normally highly regulated enzyme; PRPP is an essential precursor for purine and pyrimidine nucleotides;ribose-phosphate pyrophosphokinase (RPPK) = phosphoribosylpyrophosphate synthetase (P-Rib-PP synthetase) (PRPP synthetase); normally highly regulated enzyme; PRPP is an essential precursor for purine and pyrimidine nucleotides;ribose-phosphate pyrophosphokinase (RPPK) = phosphoribosylpyrophosphate synthetase (P-Rib-PP synthetase) (PRPP synthetase); normally highly regulated enzyme; PRPP is an essential precursor for purine and pyrimidine nucleotides"
+Cre08.g358521							g8338.t1		
+Cre08.g371918			Chloroplast						
+Cre08.g358326			Chloroplast						
+Cre08.g382700	"GMM:29.5.11.1;GMM:29.5.11;GMM:29.2.1.2.2.40;GMM:29.2.1.2.1.27;GMM:29.1"	"protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27;protein.aa activation"	"Secretory pathway"	GO:0005515	"protein binding"	UBQ3	"UBQ3;g9010.t1"	UBQ3	"Post-translationally modifies proteins to tag them for proteasome-mediated degradation, internalization etc..; contains two ubiquitin domains in tandem. Discussed by Wang et al. 28 [PMID: 184935] as ubiquitin, XP_17244"
+Cre08.g366350							"g8584.t1;g8584.t1;g8584.t1"		
+Cre08.g368650			"Secretory pathway"				"g8640.t1;Cre08.g368650.t1.1"		
+Cre08.g381550			Chloroplast				"Cre08.g381550.t1.1;g8979.t1"		
+Cre08.g377850			"Secretory pathway"				"g8896.t1;Cre08.g377850.t1.1;g8896.t1;Cre08.g377850.t1.1"		
+Cre08.g384600			Mitochondrion				"g9050.t1;Cre08.g384600.t1.1;Cre08.g384600.t1.1;g9050.t1"		
+Cre08.g368026			Mitochondrion						
+Cre08.g373351			"Secretory pathway"						
+Cre08.g363250							"g8506.t1;g8506.t1;g8506.t1"		
+Cre08.g380300	GMM:29.4	"protein.postranslational modification"		"GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979"	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress"	MSRA3	g8951.t1	MSRA3	"catalyzes the thioredoxin-dependent reduction of L-methionine (S)-S-oxide in oxidized proteins"
+Cre08.g362019	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Chloroplast			FAP408			
+Cre08.g375400	"GMM:31.6.1.9;GMM:27.3.22"	"cell.motility.eukaryotes.flagellar adhesion and gamete fusion;RNA.regulation of transcription.homeobox transcription factor family (HB)"	Mitochondrion	"GO:0006355;GO:0003677"	"regulation of transcription, DNA-templated;DNA binding"	GSM1	"GSM1;g8844.t1"	GSM1	"Homeobox transcription factor expressed in minus gametes that interacts with the plus-specific protein GSP1 to initiated zygote development; gsm1/gsm1 and gsp1/GSP1 zygotes lack the GSM1/GSP1 dimer and show absence of pellicle formation and selective chloroplast nucleoid degradation; they inactivate SAD1 and SAG1 agglutinins upon cell fusion, but fail to repress their do novo production, leading to polygamy; fusion of nuclei, chloroplasts, mitochondria, contractile vacuoles and ER membranes is also impaire"
+Cre08.g383050			"Secretory pathway"				"g9019.t1;g9019.t1;g9019.t1"		
+Cre08.g364989			Mitochondrion						
+Cre08.g364600							"Cre08.g364600.t1.1;g8536.t1"		
+Cre08.g386100	GMM:26.1	misc.misc2				CYP744A5P	"g9084.t1;g9084.t1;g9084.t1;g9084.t1;g9084.t1;g9084.t1"	"CYP744A5P;CYP744A5P;CYP744A5P;CYP744A5P;CYP744A5P;CYP744A5P"	"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre08.g364931	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP316			
+Cre08.g358100							"g8327.t1;g8327.t1;g8327.t1"		
+Cre08.g380600	"GMM:29.4;GMM:27.1.1"	"protein.postranslational modification;RNA.processing.splicing"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g8957.t1;g8957.t1"		
+Cre08.g384250	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"CKIN2.15;g9043.t1;Cre08.g384250.t1.1"	SNRK2O	"Mediates abiotic stress responses"
+Cre08.g363400			Mitochondrion				g8513.t1		
+Cre08.g382300	GMM:29.8	"protein.assembly and cofactor ligation"	Chloroplast			CCB4	"CGLD23;g8994.t1;Cre08.g382300.t1.1"	CCB4	"involved in heme c covalent linkage to cyt b6; conserved in plant lineage and diatoms (organisms performing oxygenic photosynthesis). The protein is localized to the chloroplast and homologous to CCB2. PMID: 17535914"
+Cre08.g372950	GMM:16.1.1.7	"secondary metabolism.isoprenoids.non-mevalonate pathway.HDR"	Chloroplast	"GO:0051745;GO:0050992;GO:0046872;GO:0019288"	"4-hydroxy-3-methylbut-2-en-1-yl diphosphate reductase activity;dimethylallyl diphosphate biosynthetic process;metal ion binding;isopentenyl diphosphate biosynthetic process, methylerythritol 4-phosphate pathway"	IDS1	"IDS1;g8734.t1;IDS;Cre08.g372950.t1.1;IDS;Cre08.g372950.t1.1;g8734.t1;IDS1;g8734.t1;IDS1;IDS;Cre08.g372950.t1.1;IDS;Cre08.g372950.t1.1;g8734.t1;IDS1;g8734.t1;IDS1;IDS;Cre08.g372950.t1.1;IDS1;g8734.t1;Cre08.g372950.t1.1;IDS"	"IDS1;IDS1;IDS1;IDS1;IDS1;IDS1"	"4-hydroxy-3-methylbut-2-enyl diphosphate reductase (isopentenyl diphosphate/dimethylallyl diphosphate synthase) (ispH) (lytB) [PMID:11004185]; chloroplast precursor;4-hydroxy-3-methylbut-2-enyl diphosphate reductase (isopentenyl diphosphate/dimethylallyl diphosphate synthase) (ispH) (lytB) [PMID:11004185]; chloroplast precursor;4-hydroxy-3-methylbut-2-enyl diphosphate reductase (isopentenyl diphosphate/dimethylallyl diphosphate synthase) (ispH) (lytB) [PMID:11004185]; chloroplast precursor;4-hydroxy-3-methylbut-2-enyl diphosphate reductase (isopentenyl diphosphate/dimethylallyl diphosphate synthase) (ispH) (lytB) [PMID:11004185]; chloroplast precursor;4-hydroxy-3-methylbut-2-enyl diphosphate reductase (isopentenyl diphosphate/dimethylallyl diphosphate synthase) (ispH) (lytB) [PMID:11004185]; chloroplast precursor;4-hydroxy-3-methylbut-2-enyl diphosphate reductase (isopentenyl diphosphate/dimethylallyl diphosphate synthase) (ispH) (lytB) [PMID:11004185]; chloroplast precursor"
+Cre08.g369720	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"		"Cre08.g369756.t2.1;g8664.t2;Cre08.g369756.t2.1;g8664.t2"		
+Cre08.g375050			Chloroplast			FAP86	"Cre08.g375050.t1.1;g8837.t1"	FAP86	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]"
+Cre08.g378800	GMM:27.3.9	"RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family"		"GO:0043565;GO:0008270;GO:0006355;GO:0003700"	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"Cre08.g378800.t1.1;g8916.t1;g8916.t1;Cre08.g378800.t1.1"		
+Cre08.g365950	"GMM:26.5;GMM:11.7"	"misc.acyl transferases;lipid metabolism.unassigned"	Chloroplast	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"		"Cre08.g365950.t1.1;g8576.t1"		
+Cre08.g366200			Mitochondrion				g8581.t1		
+Cre08.g367300	GMM:27.3.52	"RNA.regulation of transcription.global transcription factor group"		GO:0005515	"protein binding"		"ESS101;g8606.t1;ESS101;g8606.t1"		"ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196)"
+Cre08.g384320			Mitochondrion						
+Cre08.g370000			Chloroplast				"g8671.t1;g8671.t1;g8671.t1"		
+Cre08.g373200	GMM:30.99	signalling.unspecified					"g8739.t1;Cre08.g373200.t1.1;Cre08.g373200.t1.1;g8739.t1;Cre08.g373200.t1.1;g8739.t1"	"FXL7;FXL7;FXL7"	"FixL like homolog 7 (FXL). PAS region shows high identity to Rhizobial FixL proteins.; null-allele passenger mutation was isolated (PMID 29743196);FixL like homolog 7 (FXL). PAS region shows high identity to Rhizobial FixL proteins.; null-allele passenger mutation was isolated (PMID 29743196);FixL like homolog 7 (FXL). PAS region shows high identity to Rhizobial FixL proteins.; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre08.g365400	GMM:29.2.1.1.1.2.31	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L31"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPL31	"Cre08.g365400.t1.1;g8561.t1"	PRPL31	"imported to chloroplast; Chloroplast large ribosomal subunit protein L31"
+Cre08.g364200	GMM:29.4	"protein.postranslational modification"					g8528.t1		
+Cre08.g374950			Chloroplast				g8835.t1		
+Cre08.g358562	"GMM:29.9;GMM:29.6.2.6;GMM:29.6"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding"	Chloroplast	"GO:0006457;GO:0005737"	"protein folding;cytoplasm"	CPN20	"CPN20;Cre28.g776900.t1.2;g8378.t1;Cre28.g776900.t1.1"	CPN20	"Co-chaperonin assisting the CPN60 chaperonin in protein folding; homologous to bacterial GroES; contains two cpn10 domains; located in the chloroplast, where one Cpn23 form with Cpn10 and two Cpn20 a tetramer with seven cpn10 domains; heptamers of Cpn10-like co-chaperonins bind to one of the two Cpn60 heptameric rings and trigger ATP hydrolysis; also found in association with the ClpPR complex"
+Cre08.g364050							"g8525.t1;Cre08.g364050.t1.1"		
+Cre08.g377450	GMM:29.3.1	protein.targeting.nucleus		"GO:0008536;GO:0006886"	"Ran GTPase binding;intracellular protein transport"		g8888.t1		
+Cre08.g371052	"GMM:29.4;GMM:27.3.12"	"protein.postranslational modification;RNA.regulation of transcription.C3H zinc finger family"	Mitochondrion	"GO:0046872;GO:0006468;GO:0006397;GO:0004672;GO:0004540"	"metal ion binding;protein phosphorylation;mRNA processing;protein kinase activity;ribonuclease activity"	IRE1:5frag	"IRE1;g8693.t1;g8693.t1;IRE1;g8693.t1;IRE1"		"ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196)"
+Cre08.g373360									
+Cre08.g385951							"g9081.t1;Cre08.g385951.t1.1"		
+Cre08.g369350							g8654.t1		
+Cre08.g360450	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		g8441.t1		
+Cre08.g364862	"GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005515;GO:0004672"	"protein phosphorylation;protein binding;protein kinase activity"		"g8544.t1;Cre08.g364862.t1.1"		
+Cre08.g367600	GMM:13.1.5.3.1	"amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.OASTL"				OASTL1	"ASL1;CYSL;CYSM;Cre08.g367600.t1.1;g8613.t1;Cre08.g367600.t1.1;g8613.t1;CYSL;CYSM;ASL1"	"OASTL1;OASTL1"	"Cysteine synthase, chloroplast precursor; O-acetylserine sulfhydrylase, O-acetylserine (Thiol)-lyase; performs condensation of OAS with sulfide (or possibly with a thiosulfide carrier) to yield cysteine and acetate; one of four paralogs;Cysteine synthase, chloroplast precursor; O-acetylserine sulfhydrylase, O-acetylserine (Thiol)-lyase; performs condensation of OAS with sulfide (or possibly with a thiosulfide carrier) to yield cysteine and acetate; one of four paralogs"
+Cre08.g365204			"Secretory pathway"			CSE9	"g8551.t1;CSE9;CSE9;g8551.t1"		"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome;Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre08.g365600	"GMM:18.2.2;GMM:18"	"Co-factor and vitamine metabolism.thiamine.hydroxymethylpyrimidine kinase;Co-factor and vitamine metabolism"		"GO:0009228;GO:0004789"	"thiamine biosynthetic process;thiamine-phosphate diphosphorylase activity"		"g8565.t1;Cre08.g365600.t1.1"	THI1	"Phosphomethylpyrimidine kinase/thiamine-phosphate diphosphorylase. Most likely candidate for mutant locus THI1. Contains 4 domains: TenA_C, involved in the salvage pathway of amino-HMP; HAD-like hydrolase carrying the TMP phosphatase activity (both domains homologous to plant TH2); ThiD and ThiE domains. This organization is conserved in many green algae"
+Cre08.g364726			Chloroplast						
+Cre08.g379163			Mitochondrion						
+Cre08.g372750							g8730.t1		
+Cre08.g373372									
+Cre08.g378417			"Secretory pathway"						
+Cre08.g383150	GMM:27.3.70	"RNA.regulation of transcription.silencing group"		GO:0008080	"N-acetyltransferase activity"	NAT5	"ROC97;NAT5;NAT3;g9021.t1;Cre08.g383150.t1.1"		"Similar to the catalytic subunit of NatB complex; essential for robust circadian rhythmicity of bioluminescence reporter"
+Cre08.g375301			Chloroplast				g8842.t1		
+Cre08.g381800				"GO:0016787;GO:0008299;GO:0004452"	"hydrolase activity;isoprenoid biosynthetic process;isopentenyl-diphosphate delta-isomerase activity"		"g8984.t1;g8984.t1"		
+Cre08.g371879									
+Cre08.g372100	"GMM:29.6.2.3;GMM:29.6;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP70s;protein.folding;stress.abiotic.heat"	Cytosol			HSP70A	"g8716.t1;Cre08.g372100.t1.1;g8716.t1;Cre08.g372100.t1.1"	"HSP70A;HSP70A"	"HSP70A is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; HSP70A is localized to the cytosol and to flagella; it is inducible by heat shock and light [PMID: 2779571, 1541398, 16151252, 16143837]. Found in the flagellar proteome [PMID: 15998802];HSP70A is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; HSP70A is localized to the cytosol and to flagella; it is inducible by heat shock and light [PMID: 2779571, 1541398, 16151252, 16143837]. Found in the flagellar proteome [PMID: 15998802]"
+Cre08.g375700	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			smm31			
+Cre08.g376950			"Secretory pathway"			MMP14	"g8878.t1;MMP14;g8878.t1;MMP14;MMP14;g8878.t1;MMP14;g8878.t1"	"MMP14;MMP14;MMP14;MMP14"	"partial sequence similar to gametolysin (cell wall lytic enzyme, autolysin, gamete lytic enzyme, GLE); a matrix metalloproteinase;partial sequence similar to gametolysin (cell wall lytic enzyme, autolysin, gamete lytic enzyme, GLE); a matrix metalloproteinase;partial sequence similar to gametolysin (cell wall lytic enzyme, autolysin, gamete lytic enzyme, GLE); a matrix metalloproteinase;partial sequence similar to gametolysin (cell wall lytic enzyme, autolysin, gamete lytic enzyme, GLE); a matrix metalloproteinase"
+Cre08.g382620	"GMM:33.99;GMM:30.5;GMM:27.3.51"	"development.unspecified;signalling.G-proteins;RNA.regulation of transcription.general transcription, TBP-binding protein"	Mitochondrion	GO:0005515	"protein binding"				
+Cre08.g380550	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Mitochondrion	"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"g8956.t1;SDR14;Cre08.g380550.t1.1"		
+Cre08.g358539				"GO:0051087;GO:0001671"	"chaperone binding;ATPase activator activity"		"Cre41.g786950.t1.1;g8355.t1"		
+Cre08.g370050			Mitochondrion				"g8672.t1;g8672.t1"		
+Cre08.g382100							"Cre08.g382100.t1.1;g8990.t1;g8990.t1;Cre08.g382100.t1.1;Cre08.g382100.t1.1;g8990.t1"		
+Cre08.g376500			Chloroplast	"GO:0016799;GO:0008270;GO:0006289;GO:0003906;GO:0003684"	"hydrolase activity, hydrolyzing N-glycosyl compounds;zinc ion binding;nucleotide-excision repair;DNA-(apurinic or apyrimidinic site) lyase activity;damaged DNA binding"				
+Cre08.g368200			Chloroplast				"Cre08.g368200.t1.1;g8628.t1;Cre08.g368200.t1.1;g8628.t1;g8628.t1;Cre08.g368200.t1.1;g8628.t1;Cre08.g368200.t1.1;Cre08.g368200.t1.1;g8628.t1;Cre08.g368200.t1.1;g8628.t1"		
+Cre08.g373355			Mitochondrion						
+Cre08.g369683							g8662.t1		
+Cre08.g369740	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"			MRP6	g8665.t1		
+Cre08.g370650	GMM:7.1.2	"OPP.oxidative PP.6-phosphogluconolactonase"	Chloroplast	GO:0005975	"carbohydrate metabolic process"	PGL2	"g8685.t1;Cre08.g370650.t1.1;PGL2"	PGL2	
+Cre08.g384050							"Cre08.g384050.t1.1;g9039.t1;Cre08.g384050.t1.1;g9039.t1;Cre08.g384050.t1.1;g9039.t1;Cre08.g384050.t1.1;g9039.t1;Cre08.g384050.t1.1;g9039.t1"		
+Cre08.g358526	"GMM:34.99;GMM:34.9;GMM:34.8"	"transport.misc;transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane"	Chloroplast	"GO:0016021;GO:0006810;GO:0005524;GO:0005471"	"integral component of membrane;transport;ATP binding;ATP:ADP antiporter activity"	AAA1	"g8343.t1;Cre41.g786600.t1.1;AAA1"	AAA1	"ADP,ATP carrier protein; belongs to a plant-specific transporter family; most abundantly expressed isoform in a three-member family; null-allele mutant was isolated (PMID 29743196)"
+Cre08.g361850			Chloroplast				"Cre08.g361850.t1.1;g8471.t1"		
+Cre08.g361450			"Secretory pathway"				"Cre08.g361450.t1.1;g8463.t1"		
+Cre08.g373364			"Secretory pathway"				"Cre21.g762050.t1.2;g8773.t1;Cre21.g762050.t1.1"		
+Cre08.g379150			"Secretory pathway"						
+Cre08.g366850							"g8596.t1;g8596.t1;g8596.t1"		
+Cre08.g358150			Chloroplast				"g8329.t1;Cre08.g358150.t1.1"		
+Cre08.g378900	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion	"GO:0055114;GO:0008137"	"oxidation-reduction process;NADH dehydrogenase (ubiquinone) activity"	NUO3	"Cre08.g378900.t1.1;g8918.t1;ND3;g8918.t1;ND3;Cre08.g378900.t1.1;ND3;g8918.t1;Cre08.g378900.t1.1;g8918.t1;ND3;Cre08.g378900.t1.1"	"NUO3;NUO3;NUO3;NUO3"	"NADH dehydrogenase subunit (Complex I) 3 precursor [=ND3], mitochondrial. gi 33943533 gb AAQ55461.1 [=ND3; NAD3]; Ortholog of MT-ND3 in Homo sapiens;;NADH dehydrogenase subunit (Complex I) 3 precursor [=ND3], mitochondrial. gi 33943533 gb AAQ55461.1 [=ND3; NAD3]; Ortholog of MT-ND3 in Homo sapiens;;NADH dehydrogenase subunit (Complex I) 3 precursor [=ND3], mitochondrial. gi 33943533 gb AAQ55461.1 [=ND3; NAD3]; Ortholog of MT-ND3 in Homo sapiens;;NADH dehydrogenase subunit (Complex I) 3 precursor [=ND3], mitochondrial. gi 33943533 gb AAQ55461.1 [=ND3; NAD3]; Ortholog of MT-ND3 in Homo sapiens;"
+Cre08.g385400	GMM:13.2.3.1.1	"amino acid metabolism.degradation.aspartate family.asparagine.L-asparaginase"	Mitochondrion	GO:0006520	"cellular amino acid metabolic process"		"Cre08.g385400.t1.1;g9068.t2;g9068.t2;Cre08.g385400.t1.1;g9068.t2;Cre08.g385400.t1.1"		
+Cre08.g363200			Chloroplast				"Cre08.g363200.t1.1;g8505.t1"		
+Cre08.g380151			Mitochondrion	GO:0005515	"protein binding"		"Cre08.g380150.t1.3;g8948.t1"		
+Cre08.g363050							"g8502.t1;Cre08.g363050.t1.1;g8502.t1;Cre08.g363050.t1.1"		
+Cre08.g376450						CPLD36	"g8867.t1;Cre08.g376450.t1.1;g8867.t1;Cre08.g376450.t1.1;g8867.t1;Cre08.g376450.t1.1;Cre08.g376450.t1.1;g8867.t1"	"CPLD36;CPLD36;CPLD36;CPLD36"	"Conserved expressed protein; Arabidopsis homologue is predicted to be plastid localized;Conserved expressed protein; Arabidopsis homologue is predicted to be plastid localized;Conserved expressed protein; Arabidopsis homologue is predicted to be plastid localized;Conserved expressed protein; Arabidopsis homologue is predicted to be plastid localized"
+Cre08.g371800	GMM:28.2	DNA.repair					"Cre08.g371800.t1.1;g8708.t1"		
+Cre08.g377050			"Secretory pathway"				"g8880.t1;g8880.t1"		
+Cre08.g358581									
+Cre08.g382450							"Cre08.g382450.t1.1;g8997.t1"		
+Cre08.g376100	GMM:3.4.5	"minor CHO metabolism.myo-inositol.inositol phosphatase"		GO:0046854	"phosphatidylinositol phosphorylation"		"Cre08.g376100.t1.1;IPP6;g8860.t1"		
+Cre08.g370150			Chloroplast				"g8675.t1;g8675.t1"		
+Cre08.g372550	"GMM:31.2;GMM:29.4.1;GMM:29.4"	"cell.division;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	CDKB1	"DIV48;g8725.t1"	CDKB1	"Plant specific cyclin dependent kinase; CDKB subfamily; PSTTLRE motif; mitotic regulator; putative function in G2/M. ts lethal mutants block in G2 (PMID 25336509)"
+Cre08.g359250			"Secretory pathway"				"g8415.t1;Cre08.g359250.t1.1"		
+Cre08.g366900							"g8598.t1;Cre08.g366900.t1.1;Cre08.g366900.t1.1;g8598.t1;Cre08.g366900.t1.1;g8598.t1;Cre08.g366900.t1.1;g8598.t1;Cre08.g366900.t1.1;g8598.t1"		
+Cre08.g375950			Chloroplast	GO:0005515	"protein binding"	EXR1	"EXR1;g8857.t1"		"UvrB domain-containing protein. Interpro IPR001943. Family includes helicase subunit of DNA excision repair complex."
+Cre08.g368000			Chloroplast				g8622.t1		
+Cre08.g377900				"GO:0032775;GO:0009007;GO:0003677"	"DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding"		"Cre08.g377900.t1.1;g8897.t1"		
+Cre08.g384550			Chloroplast				g9049.t1		
+Cre08.g373150							g8738.t1		
+Cre08.g370700			"Secretory pathway"				"g8686.t1;Cre08.g370700.t1.1"		
+Cre08.g366700			Chloroplast				"g8593.t1;g8593.t1"		
+Cre08.g367100							"g8602.t1;g8602.t1"		
+Cre08.g358564						FAP344	"Cre28.g776800.t1.1;g8380.t1"	FAP344	
+Cre08.g358950			Mitochondrion				"g8408.t2;g8408.t2"		
+Cre08.g379500	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g8934.t1		
+Cre08.g365800			Mitochondrion	GO:0008171	"O-methyltransferase activity"		g8571.t1		
+Cre08.g375000	GMM:29.4	"protein.postranslational modification"		"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"		"g8836.t1;DSP"		"similar to PTP genes; protein-tyrosine phosphatase"
+Cre08.g366000				GO:0016020	membrane		"Cre08.g366000.t1.1;g8577.t1"	FAX2	"Transmembrane protein involved in fatty-acid export from the chloroplast; Presumably located in the inner envelope membrane"
+Cre08.g359166									
+Cre08.g358751			Mitochondrion			ZMYND10	"ZMYND10;g8404.t1;DNAAF7;Cre08.g358750.t1.3;ZMYND10;DNAAF7;Cre08.g358750.t1.3;g8404.t1"	"ZMY10;ZMY10"	"A MYND-type zinc finger domain that likely functions in assembly of the dynein motor;A MYND-type zinc finger domain that likely functions in assembly of the dynein motor"
+Cre08.g361500				GO:0005763	"mitochondrial small ribosomal subunit"		"Cre08.g361500.t1.1;g8464.t1;mS26"	MRPS26	
+Cre08.g383400	GMM:29.4.1	"protein.postranslational modification.kinase"	"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR11	"g9026.t1;SRR11;SRR11;g9026.t1;g9026.t1;SRR11;SRR11;g9026.t1;g9026.t1;SRR11"		
+Cre08.g366250			Mitochondrion				"g8582.t1;g8582.t1;g8582.t1"		
+Cre08.g385000				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9060.t1;Cre08.g385000.t1.1"		
+Cre08.g358800	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					"Cre08.g358800.t1.1;g8405.t1;Cre08.g358800.t1.1;g8405.t1"		
+Cre08.g379000							"g8920.t1;Cre08.g379000.t1.1"		
+Cre08.g376400			Mitochondrion				g8866.t1		
+Cre08.g379300							"g8930.t1;g8930.t1;g8930.t1;g8930.t1"		
+Cre08.g382650	GMM:29.3.4.2	"protein.targeting.secretory pathway.golgi"		"GO:0030173;GO:0006891"	"integral component of Golgi membrane;intra-Golgi vesicle-mediated transport"	UBQ4	"g9008.t1;UBQ4"	UBQ4	"Contains two ubiquitin domains in tandem"
+Cre08.g364100			"Secretory pathway"				"Cre08.g364100.t1.1;g8526.t1"		
+Cre08.g378050	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"				NUOP5	"Cre08.g378050.t1.1;g8900.t1;Cre08.g378050.t1.1;g8900.t1"	"NUOP5;NUOP5"	"Mitochondrial NADH:ubiquinone oxidoreductase (Complex I) 16 kDa subunit precursor; gi.AAS58503; Plant-specific subunit;Mitochondrial NADH:ubiquinone oxidoreductase (Complex I) 16 kDa subunit precursor; gi.AAS58503; Plant-specific subunit"
+Cre08.g381350							"g8974.t1;Cre08.g381350.t1.1;Cre08.g381350.t1.1;g8974.t1"		
+Cre08.g382050			Mitochondrion				g8989.t1		
+Cre08.g380250	GMM:1.3.4	"PS.calvin cycle.GAP"	Chloroplast			CP12	"Cre08.g380250.t1.1;CP12;g8950.t1"	CP12	"small Intrinsically Unstructured Polypeptide, associating with GAPDH and PRK and modifying their enzymatic properties; chloroplast-targeted"
+Cre08.g375250	GMM:29.2.1.99.1.19	"protein.synthesis.ribosomal protein.unknown.small subunit.S19"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	MRPS19	"MRPS19;uS19m;g8841.t1"	MRPS19	
+Cre08.g375600	GMM:29.5	protein.degradation					"g8848.t1;Cre08.g375600.t1.1;Cre08.g375600.t1.1;g8848.t1"		
+Cre08.g373348			Chloroplast						
+Cre08.g358552			Mitochondrion				"g8368.t1;Cre28.g777400.t1.1"		
+Cre08.g362600							"g8491.t1;Cre08.g362600.t1.1;BLA1"		"could be a class A beta-lactamase or a serine hydrolase; has homologs only in bacteria; a putative recent horizontal gene tranfer event"
+Cre08.g364151							"g8527.t1;g8527.t1"		
+Cre08.g364300	"GMM:20.1.7.6.1;GMM:20.1.7.6"	"stress.biotic.PR-proteins.PR6 (proteinase inhibitors).trypsin inhibitor;stress.biotic.PR-proteins.PR6 (proteinase inhibitors)"				FAP29	"g8530.t1;Cre08.g364300.t1.1;g8530.t1;Cre08.g364300.t1.1"	"FAP29;FAP29"	"Flagellar Associated Protein, found in flagellar proteome. Contains type A von Willebrand factor domain;Flagellar Associated Protein, found in flagellar proteome. Contains type A von Willebrand factor domain"
+Cre08.g365750	GMM:28.2	DNA.repair					g8570.t1		
+Cre08.g368600	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g8638.t1		
+Cre08.g384390	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	POLQ2	"POLQ2;g9047.t1"	POLQ2	"Homologous to eukaryotic DNA polymerase theta. Involved in DNA repair; a class A polymerase; null-allele mutant was isolated (PMID 29743196)"
+Cre08.g370601	GMM:29.2.2.3.1	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs"	Mitochondrion	"GO:0034457;GO:0006364;GO:0005732;GO:0005634"	"Mpp10 complex;rRNA processing;small nucleolar ribonucleoprotein complex;nucleus"		"g8684.t1;g8684.t1;g8684.t1"		
+Cre08.g385950							g9080.t1		
+Cre08.g378400									
+Cre08.g365351			Mitochondrion				"g8560.t1;Cre08.g365350.t1.2"		
+Cre08.g360650			Chloroplast				"Cre08.g360650.t1.1;g8446.t1"		
+Cre08.g373371			Chloroplast				g8781.t1		
+Cre08.g374050	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006260;GO:0003887;GO:0003677"	"DNA replication;DNA-directed DNA polymerase activity;DNA binding"	POLD2	"POLD2;DIV28;Cre08.g374050.t1.1;g8814.t1;g8814.t1;DIV28;Cre08.g374050.t1.1;POLD2"	"POLD2;POLD2"	"Homologous to eukaryotic DNA polymerase delta small subunit; ts-lethal mutations block in S/M (PMID 25336509);Homologous to eukaryotic DNA polymerase delta small subunit; ts-lethal mutations block in S/M (PMID 25336509)"
+Cre08.g367250			Chloroplast			FAP176	"g8605.t1;g8605.t1"	"FAP176;FAP176"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre08.g358559			Chloroplast				"g8375.t1;Cre28.g777050.t1.1"		
+Cre08.g383101						FAP324		"FAP324;FAP324;FAP324"	
+Cre08.g362550						VPS37	"Cre08.g362550.t1.1;VPS37;g8490.t1"	VPS37	"Expressed Protein. Similar to the VPS37 class of Ub-binding enzymes that are components of the ESCRT-I complex involved in protein sorting at the MVB."
+Cre08.g377750			Mitochondrion				"g8894.t2;g8894.t2"		
+Cre08.g358525	"GMM:21.2.2;GMM:21.2"	"redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione"	Chloroplast	"GO:0055114;GO:0006979;GO:0004602"	"oxidation-reduction process;response to oxidative stress;glutathione peroxidase activity"		"g8342.t1;PHGPx2;g8342.t1;PHGPx2"	"GPX2;GPX2"	"Selenocysteine residue at position 100;Selenocysteine residue at position 100"
+Cre08.g385650	"GMM:31.3;GMM:29.4"	"cell.cycle;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g9073.t1;Cre08.g385650.t1.1"		
+Cre08.g369650			"Secretory pathway"				"g8660.t1;g8660.t1;g8660.t1"		
+Cre08.g383750			Chloroplast				g9033.t1		
+Cre08.g382150							g8991.t1		
+Cre08.g373377			Chloroplast						
+Cre08.g359750	GMM:29.2.1.2.1.9	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S9"		"GO:0019843;GO:0005622;GO:0003723"	"rRNA binding;intracellular;RNA binding"	RPS9	"g8426.t2;g8426.t2;g8426.t2"	"RPS9;RPS9;RPS9"	"Cytosolic 40S small ribosomal subunit protein S9;Cytosolic 40S small ribosomal subunit protein S9;Cytosolic 40S small ribosomal subunit protein S9"
+Cre08.g371751			Mitochondrion						
+Cre08.g361800				GO:0006359	"regulation of transcription from RNA polymerase III promoter"	RPC31	"g8470.t1;RPC31;Cre08.g361800.t1.1"	RPC31	
+Cre08.g377100	GMM:23.4.1	"nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase"	Mitochondrion	"GO:0019205;GO:0006139;GO:0005524"	"nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding"	ADK6	"ADK6;Cre08.g377100.t1.1;g8881.t1"		"Putative adenylate kinase; linked to ADK5"
+Cre08.g376900							g8877.t1		
+Cre08.g375801			Mitochondrion				"g8854.t1;g8854.t1"		
+Cre08.g363500	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"				"g8515.t1;Cre08.g363500.t1.1"		
+Cre08.g379700	"GMM:10.1;GMM:1.1"	"cell wall.precursor synthesis;PS.lightreaction"		"GO:0071704;GO:0016868;GO:0005975"	"organic substance metabolic process;intramolecular transferase activity, phosphotransferases;carbohydrate metabolic process"	PHM1	"g8939.t1;Cre08.g379700.t1.1;PHM1;PHM1;g8939.t1;Cre08.g379700.t1.1;g8939.t1;PHM1;Cre08.g379700.t1.1"	"PHM1;PHM1;PHM1"	
+Cre08.g361150			"Secretory pathway"				"GT90F11;GT90-11;Cre08.g361150.t1.1;g8457.t1"		
+Cre08.g377000							"Cre08.g377000.t1.1;g8879.t1"		
+Cre08.g358548			"Secretory pathway"						
+Cre08.g374450							g8823.t1		
+Cre08.g381150							"Cre08.g381150.t1.1;g8970.t1;g8970.t1;Cre08.g381150.t1.1"		
+Cre08.g362100	"GMM:31.6.1.10;GMM:30.99"	"cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified"				FAP154	"FAL11;g8481.t1;FAL11;g8481.t1"	"FAP154;FAP154"	"Flagellar Associated Protein FAP154 with PAS sensory domain; Found in the flagellar proteome; Null-allele passenger mutation was isolated;Flagellar Associated Protein FAP154 with PAS sensory domain; Found in the flagellar proteome; Null-allele passenger mutation was isolated"
+Cre08.g359133							g8412.t1		
+Cre08.g358532			Mitochondrion	"GO:0043565;GO:0008270;GO:0006355;GO:0003700;GO:0003682"	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding;chromatin binding"		"Cre28.g777506.t1.1;Cre28.g777506.t1.2;g8349.t1;g8349.t1;Cre28.g777506.t1.2;Cre28.g777506.t1.1"		
+Cre08.g373366							g8776.t1		
+Cre08.g369667			Chloroplast				g8661.t1		
+Cre08.g372250	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"Cre08.g372250.t1.1;g8719.t1;YDIF;YDIF1"		
+Cre08.g358580	GMM:23.1.1.1	"nucleotide metabolism.synthesis.pyrimidine.carbamoyl phosphate synthetase"	Chloroplast			CMP1	"g8395.t1;CMPL1;Cre28.g776100.t1.2;CMP1;Cre28.g776100.t1.1;Cre28.g776100.t1.2;CMPL1;g8395.t1;CMP1;Cre28.g776100.t1.1"	"CMP1;CMP1"	
+Cre08.g371000							g8692.t1		
+Cre08.g358126			Chloroplast						
+Cre08.g383600			"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR21	"SRR21;g9030.t1;SRR21;g9030.t1"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912)"
+Cre08.g358579	GMM:21.1	redox.thioredoxin	"Secretory pathway"				"g8394.t1;Cre28.g776150.t1.1;Cre28.g776150.t1.1;g8394.t1;Cre28.g776150.t1.1;g8394.t1;Cre28.g776150.t1.1;g8394.t1;g8394.t1;Cre28.g776150.t1.1;Cre28.g776150.t1.1;g8394.t1;g8394.t1;Cre28.g776150.t1.1"		
+Cre08.g374000							"Cre08.g374000.t1.1;g8813.t1"		
+Cre08.g361050	"GMM:18.1;GMM:18"	"Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism"	Mitochondrion	GO:0006777	"Mo-molybdopterin cofactor biosynthetic process"	CNX3	"Cre08.g361050.t1.1;g8454.t1;CNX3"	CNX3	"MoaC family; molybdopterin biosynthesis enzyme"
+Cre08.g366500	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"						
+Cre08.g363000			"Secretory pathway"				"Cre08.g363000.t1.1;g8501.t1"		
+Cre08.g362850							"g8498.t1;g8498.t1"		
+Cre08.g370750			"Secretory pathway"				g8687.t2		
+Cre08.g385150							"g9063.t1;g9063.t1"		
+Cre08.g358400	GMM:34.1	"transport.p- and v-ATPases"		"GO:0016021;GO:0015693;GO:0015095"	"integral component of membrane;magnesium ion transport;magnesium ion transmembrane transporter activity"		g8335.t2		
+Cre08.g358574			"Secretory pathway"				"g8389.t1;Cre28.g776400.t1.2;Cre28.g776400.t1.1"		
+Cre08.g382850						LYR2	"g9015.t1;LYR2;Cre08.g382850.t1.1;ISD11"	ISD11	"Complex I protein (LYR family); Similar to yeast ISD11, which forms a complex with the cys desulfurase NFS1; Localized to mitochondria;"
+Cre08.g372600							"g8726.t1;Cre08.g372600.t1.1;g8726.t1;Cre08.g372600.t1.1"		
+Cre08.g367500	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCSR3.1	"LI818r;LHCSR3.1;LHCSR2;g8611.t1"	LHCSR3A	LHCSR3.1
+Cre08.g358573	GMM:34.14	"transport.unspecified cations"	Mitochondrion				"Cre28.g776450.t1.2;MLO3;g8388.t1;Cre28.g776450.t1.1;g8388.t1;MLO3;Cre28.g776450.t1.2;Cre28.g776450.t1.1;MLO3;Cre28.g776450.t1.2;g8388.t1;Cre28.g776450.t1.1"		
+Cre08.g365632	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"PPP32;g8566.t1"		
+Cre08.g366050	GMM:23.3.3	"nucleotide metabolism.salvage.NUDIX hydrolases"		GO:0016787	"hydrolase activity"		"g8578.t1;Cre08.g366050.t1.1"		
+Cre08.g374800				GO:0005515	"protein binding"		"Cre08.g374800.t1.1;g8829.t1"		
+Cre08.g374926			Mitochondrion						
+Cre08.g360150			Mitochondrion				g8434.t1		
+Cre08.g364850			"Secretory pathway"				"g8543.t1;g8543.t1"		"the ac115 PSII-deficient mutant was reported to carry a mutation in this gene, but this is not supported by the genome sequence and the current annotation;the ac115 PSII-deficient mutant was reported to carry a mutation in this gene, but this is not supported by the genome sequence and the current annotation"
+Cre08.g381075									
+Cre08.g384500			Mitochondrion				"Cre08.g384500.t1.1;g9048.t1"		
+Cre08.g368226									
+Cre08.g375150							g8839.t1		
+Cre08.g371301			"Secretory pathway"				g8697.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre08.g384864	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"		GO:0005515	"protein binding"		"Cre08.g384864.t1.1;g9057.t1"		
+Cre08.g359000	GMM:28.2	DNA.repair	Mitochondrion				"Cre08.g359000.t1.1;g8409.t1"		
+Cre08.g380100			Mitochondrion						
+Cre08.g378950	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g8919.t1;g8919.t1;g8919.t1;g8919.t1"		
+Cre08.g365205			"Secretory pathway"			FAP322	"CSE10;g8552.t2;CSE10;g8552.t2"	"FAP322;FAP322"	"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome;Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre08.g380850							"Cre08.g380850.t1.1;g8962.t1"		
+Cre45.g760847			"Secretory pathway"	"GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723"	"DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance"				
+Cre45.g760897									
+Cre45.g760797			Chloroplast						
+Cre23.g754647			Chloroplast						
+Cre23.g754297									
+Cre23.g754847			"Secretory pathway"				"Cre39.g785900.t1.1;Cre39.g785900.t1.2;g18242.t1"		
+Cre23.g754597									
+Cre23.g754397							g18231.t1		
+Cre23.g754697							g18238.t2		
+Cre23.g755047									
+Cre23.g754947									
+Cre23.g754747									
+Cre23.g754997									
+Cre23.g754497									
+Cre23.g754347									
+Cre23.g754897			Chloroplast						
+Cre23.g754547				GO:0005515	"protein binding"		g18235.t1		
+Cre23.g754447									
+Cre23.g754797									
+Cre07.g334200	"GMM:29.2.3;GMM:28.1;GMM:27.1.2;GMM:27.1"	"protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase;RNA.processing"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL38	"g7783.t1;Cre07.g334200.t1.1;HEL38"		
+Cre07.g315000			"Secretory pathway"			CSG6	"Cre07.g314950.t1.2;CSG6;g7288.t1"		"Belongs to family G of Chlamydomonadales-specific proteins, all on chromosome 7; no known function"
+Cre07.g325748	GMM:21.2.2	"redox.ascorbate and glutathione.glutathione"		"GO:0016787;GO:0003824"	"hydrolase activity;catalytic activity"		"Cre26.g773550.t1.2;g7563.t1;Cre26.g773550.t1.1;Cre26.g773550.t1.1;g7563.t1;Cre26.g773550.t1.2;Cre26.g773550.t1.1;g7563.t1;Cre26.g773550.t1.2"		
+Cre07.g319452			"Secretory pathway"			PHC73	"PHC73;g7389.t1;g7389.t1;PHC73"		
+Cre07.g346525									
+Cre07.g319300	GMM:2.2.2.3	"major CHO metabolism.degradation.starch.glucan water dikinase"	Chloroplast	"GO:0016310;GO:0016301;GO:0005524"	"phosphorylation;kinase activity;ATP binding"	GWD1	"g7382.t1;g7382.t1;g7382.t1;g7382.t1;g7382.t1;g7382.t1;g7382.t1;g7382.t1"	"GWD1;GWD1;GWD1;GWD1;GWD1;GWD1;GWD1;GWD1"	"R1 Protein; Phosphorylates the C-3 and C-6 positions of alpha glucans with the beta phosphate of ATP;R1 Protein; Phosphorylates the C-3 and C-6 positions of alpha glucans with the beta phosphate of ATP;R1 Protein; Phosphorylates the C-3 and C-6 positions of alpha glucans with the beta phosphate of ATP;R1 Protein; Phosphorylates the C-3 and C-6 positions of alpha glucans with the beta phosphate of ATP;R1 Protein; Phosphorylates the C-3 and C-6 positions of alpha glucans with the beta phosphate of ATP;R1 Protein; Phosphorylates the C-3 and C-6 positions of alpha glucans with the beta phosphate of ATP;R1 Protein; Phosphorylates the C-3 and C-6 positions of alpha glucans with the beta phosphate of ATP;R1 Protein; Phosphorylates the C-3 and C-6 positions of alpha glucans with the beta phosphate of ATP"
+Cre07.g330276			Chloroplast						
+Cre07.g324700							"g7500.t1;Cre07.g324700.t1.1"		
+Cre07.g342850	GMM:31.6.1.4.1	"cell.motility.eukaryotes.axonemal dyneins.outer arm"		"GO:0036158;GO:0036157"	"outer dynein arm assembly;outer dynein arm"	DCC3	"g7928.t1;Cre07.g342850.t1.1;ODA5;DCC3"	ODA5	"Coiled-coil protein dimerizing with ODA10, supports ODA assembly in the cytoplasm but also localizes to proximal axoneme [PMID: 26310446]; supports flagellar assembly or retention of an Adenylate Kinase [PMID: 15064350];"
+Cre07.g341650							"Cre07.g341650.t1.1;g7955.t1"		
+Cre07.g355800							g8273.t1		
+Cre07.g325050	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG15	"ELG15;g7509.t1;g7509.t1;ELG15;g7509.t1;ELG15;g7509.t1;ELG15;g7509.t1;ELG15;ELG15;g7509.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre07.g341251	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g7967.t1;g7967.t1"		
+Cre07.g341000			Chloroplast				g7975.t1		
+Cre07.g352213									
+Cre07.g343150							"g7982.t1;g7982.t1;g7982.t1;g7982.t1;g7982.t1"		
+Cre07.g348951			Mitochondrion						
+Cre07.g315326							g7295.t1		
+Cre07.g312750				"GO:0003723;GO:0000178"	"RNA binding;exosome (RNase complex)"	CSL4	"g7236.t1;CSL4;Cre07.g312750.t1.1"	CSL4	"Putative homolog of Csl4, core component of the exosome. Association w/ exosome mediated by interactions with ribosomal RNA-processing proteins 41 and 42."
+Cre07.g345031							"Cre07.g345031.t1.1;g8029.t1"		
+Cre07.g356550			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g8289.t1;g8289.t1;g8289.t1;g8289.t1;g8289.t1"		
+Cre07.g325740	GMM:34.7	transport.phosphate		"GO:0016020;GO:0006817;GO:0005315"	"membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity"	PTB3	"PTB3;g7555.t1;Cre26.g773300.t1.2;Cre26.g773300.t1.1;g7555.t1;PTB3;Cre26.g773300.t1.2;Cre26.g773300.t1.1"	"PTB3;PTB3"	"Putative phosphate transporter, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters; clusters with PTB3 on scaffold 81. PTB2 and PTB3 are flanked by transposable element sequences, suggesting a possible means of gene duplication.;Putative phosphate transporter, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters; clusters with PTB3 on scaffold 81. PTB2 and PTB3 are flanked by transposable element sequences, suggesting a possible means of gene duplication."
+Cre07.g347050	GMM:31.6.1.5.2	"cell.motility.eukaryotes.radial spoke.stalk"				RSP7	"g8077.t1;Cre07.g347050.t1.1;Cre07.g347050.t1.1;g8077.t1;g8077.t1;Cre07.g347050.t1.1"	"RSP7;RSP7;RSP7"	"A subunit in the radial spoke stalk with multiple EF-hands tethered to an RIIa domain [PMID: 16507594; GI:83284725];A subunit in the radial spoke stalk with multiple EF-hands tethered to an RIIa domain [PMID: 16507594; GI:83284725];A subunit in the radial spoke stalk with multiple EF-hands tethered to an RIIa domain [PMID: 16507594; GI:83284725]"
+Cre07.g353550	GMM:29.2.3	protein.synthesis.initiation		"GO:0006413;GO:0003743"	"translational initiation;translation initiation factor activity"	SUI1B	"g8223.t1;Cre07.g353550.t1.1;SUI1B;SUI2"	SUI1B	"putative protein with some similarity to translation initiation factor SUI1"
+Cre07.g347650			Mitochondrion				"Cre07.g347650.t1.1;g8090.t1"		
+Cre07.g325756			"Secretory pathway"				"g7570.t1;Cre26.g773850.t1.1"		
+Cre07.g338800	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Mitochondrion			CGL125	g7881.t2	CGL125	
+Cre07.g329250			Mitochondrion				g7658.t1		"Contains PF02492, CobW nucleotide-binding domain;"
+Cre07.g354800			"Secretory pathway"				g8253.t1		
+Cre07.g338451	GMM:6	"gluconeogenesis / glyoxylate cycle"		"GO:0042132;GO:0006094;GO:0006071"	"fructose 1,6-bisphosphate 1-phosphatase activity;gluconeogenesis;glycerol metabolic process"	FBP1	"Cre07.g338450.t1.3;GLPX1;g7873.t1;GLPX1;Cre07.g338450.t1.3;g7873.t1"	"FBP1;FBP1"	
+Cre07.g334776									
+Cre07.g327250			Mitochondrion				g7611.t1		
+Cre07.g351700							"Cre07.g351700.t1.1;g8181.t1"		
+Cre07.g353250			Mitochondrion				"Cre07.g353250.t1.1;g8216.t1"		
+Cre07.g321650	GMM:31.3	cell.cycle		"GO:0019901;GO:0006355;GO:0000079"	"protein kinase binding;regulation of transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	CYCL1	"Cre07.g321650.t1.1;g7434.t1;Cre07.g321650.t1.1;g7434.t1;g7434.t1;Cre07.g321650.t1.1"	"CYCL1;CYCL1;CYCL1"	"homologous to cyclin L; possible role in transcription;homologous to cyclin L; possible role in transcription;homologous to cyclin L; possible role in transcription"
+Cre07.g323350			Mitochondrion				"g7470.t1;Cre07.g323350.t1.1"		
+Cre07.g356050			Chloroplast				g8278.t1		
+Cre07.g326626			"Secretory pathway"						
+Cre07.g334100	"GMM:33.99;GMM:3.5"	"development.unspecified;minor CHO metabolism.others"	"Secretory pathway"	"GO:0032012;GO:0005086"	"regulation of ARF protein signal transduction;ARF guanyl-nucleotide exchange factor activity"	GNOM	"GNOM;g7781.t1"		"Involved in polarized secretion in plants"
+Cre07.g325850						MAW8	"MAW8;g7579.t1"		"Contains predicted C-termina GPI-anchor signal"
+Cre07.g333711									
+Cre07.g328350	GMM:30.4.1	"signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase"				FAP207	"Cre07.g328350.t1.1;g7638.t1;g7638.t1;Cre07.g328350.t1.1"	"FAP207;FAP207"	"Flagellar Associated Protein, found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Flagellar Associated Protein, found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196)"
+Cre07.g324932	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g7506.t1		
+Cre07.g353600	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP7	"g8226.t2;Cre07.g353600.t1.1;MMP7;Cre07.g353600.t1.1;g8226.t2;MMP7;g8226.t2;Cre07.g353600.t1.1;MMP7;MMP7;Cre07.g353600.t1.1;g8226.t2"	"MMP7;MMP7;MMP7;MMP7"	"belongs to the large VMP-family of metalloproteinases (identified in Volvox); the binding site of the catalytic metal ion in VMPs is QExxHxxGxxH not HExxHxxGxxH, therefore VMPs prefer copper for activity rather than zinc; extracellular matrix glycoproteins (cell wall glycoproteins) with a hydroxyproline-rich (HR) domain [PMID: 12034745];belongs to the large VMP-family of metalloproteinases (identified in Volvox); the binding site of the catalytic metal ion in VMPs is QExxHxxGxxH not HExxHxxGxxH, therefore VMPs prefer copper for activity rather than zinc; extracellular matrix glycoproteins (cell wall glycoproteins) with a hydroxyproline-rich (HR) domain [PMID: 12034745];belongs to the large VMP-family of metalloproteinases (identified in Volvox); the binding site of the catalytic metal ion in VMPs is QExxHxxGxxH not HExxHxxGxxH, therefore VMPs prefer copper for activity rather than zinc; extracellular matrix glycoproteins (cell wall glycoproteins) with a hydroxyproline-rich (HR) domain [PMID: 12034745];belongs to the large VMP-family of metalloproteinases (identified in Volvox); the binding site of the catalytic metal ion in VMPs is QExxHxxGxxH not HExxHxxGxxH, therefore VMPs prefer copper for activity rather than zinc; extracellular matrix glycoproteins (cell wall glycoproteins) with a hydroxyproline-rich (HR) domain [PMID: 12034745]"
+Cre07.g329450			Chloroplast				"Cre07.g329450.t1.1;g7663.t1"		
+Cre07.g321050	GMM:13.1.3.1.1	"amino acid metabolism.synthesis.aspartate family.asparagine.asparagine synthetase"		"GO:0006529;GO:0004066"	"asparagine biosynthetic process;asparagine synthase (glutamine-hydrolyzing) activity"		"g7422.t1;g7422.t1;g7422.t1;g7422.t1;g7422.t1;g7422.t1"		
+Cre07.g323300							g7468.t1		
+Cre07.g313122			Mitochondrion	"GO:0008236;GO:0006508"	"serine-type peptidase activity;proteolysis"		"g7246.t1;g7246.t1;g7246.t1"		
+Cre07.g318400			Chloroplast				"g7360.t1;g7360.t1"		
+Cre07.g345950			Mitochondrion				"g8049.t1;g8049.t1"		
+Cre07.g348500			Mitochondrion				g8108.t1		
+Cre07.g316900			Mitochondrion				"g7326.t1;g7326.t1;g7326.t1"		
+Cre07.g327333			Mitochondrion						
+Cre07.g347400				GO:0003676	"nucleic acid binding"		"g8084.t1;Cre07.g347400.t1.1"		
+Cre07.g340050	"GMM:30.5;GMM:3.5;GMM:29.2.2"	"signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis"		"GO:0005730;GO:0005525"	"nucleolus;GTP binding"		"g7911.t1;g7911.t1;g7911.t1;g7911.t1"		
+Cre07.g331250			Chloroplast				"g7707.t1;g7707.t1"		
+Cre07.g347950	"GMM:33.99;GMM:3.5"	"development.unspecified;minor CHO metabolism.others"	"Secretory pathway"	GO:0005515	"protein binding"		"Cre07.g347950.t1.1;g8096.t1"		
+Cre07.g314550				"GO:0008176;GO:0006400"	"tRNA (guanine-N7-)-methyltransferase activity;tRNA modification"		"TRM8;g7277.t1;TMG9;Cre07.g314550.t1.1"		"Methyltransferase, catalyzes the transfer of a methyl group from S-adenosylmethionine to the N7 of guanines at position 46 of tRNAs; homologue of S. cerevisiae TRM8"
+Cre07.g357486									
+Cre07.g321951	GMM:34.12	transport.metal		"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	NRAMP2	"Cre07.g321950.t1.2;g7440.t1"	NRAMP2	"Similarity to NRAMP MntH-like subfamily"
+Cre07.g333350			Chloroplast				"g7751.t1;Cre07.g333350.t1.1"		
+Cre07.g318000				"GO:0016020;GO:0006897"	"membrane;endocytosis"		"g7352.t1;Cre07.g318000.t1.1;g7352.t1;Cre07.g318000.t1.1;g7352.t1;Cre07.g318000.t1.1"		
+Cre07.g325745			Chloroplast				g7560.t1		
+Cre07.g326800	GMM:29.4	"protein.postranslational modification"		"GO:0016787;GO:0005515"	"hydrolase activity;protein binding"		"g7600.t1;PP5;PPP29"	CCPP5	"PP5 in mammals is a phosphatase that dephosphorylates HSP90; Ppt1 in yeast; involved in the maturation of kinases; contains TPR domain"
+Cre07.g316350						CSG1	"g7314.t1;CSG1;Cre07.g316350.t1.1"		"Belongs to family G of Chlamydomonadales-specific proteins, all on chromosome 7; no known function"
+Cre07.g344600	GMM:13.1.5.1.1	"amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase"	Chloroplast	"GO:0055114;GO:0051287;GO:0016616;GO:0008152"	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process"	PGD1	"Cre07.g344600.t1.1;PGD1;g8018.t1"	PGDH1	"D-3-phosphoglycerate dehydrogenase (EC:1.1.1.95); Target-P predicts organelle (mitochondrial) targeting; predict plastid targeting by homology; Co-orthologous to PGDH1/EDA9 (AT4G34200) and PGDH3 (AT3G19480) in Arabidopsis thaliana"
+Cre07.g333781									
+Cre07.g312300			Chloroplast				"Cre07.g312300.t1.1;IsdG;g7226.t1;g7226.t1;Cre07.g312300.t1.1;IsdG"	"LFO1;LFO1"	"The catabolite that results from the degradation of heme by LFO1 is distinct from that of other heme degradation products and is not biliverdin or staphylobilin [PMID: 28815214];The catabolite that results from the degradation of heme by LFO1 is distinct from that of other heme degradation products and is not biliverdin or staphylobilin [PMID: 28815214]"
+Cre07.g328250	GMM:35.1.12	"not assigned.no ontology.pumilio/Puf RNA-binding domain-containing protein"	Mitochondrion	GO:0003723	"RNA binding"		"g7636.t1;Cre07.g328250.t1.1"		
+Cre07.g335950	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		GO:0005515	"protein binding"		"Cre07.g335950.t1.1;g7820.t1;Cre07.g335950.t1.1;g7820.t1;Cre07.g335950.t1.1;g7820.t1"		
+Cre07.g313302	GMM:27.2	RNA.transcription		"GO:0046983;GO:0006351;GO:0003899"	"protein dimerization activity;transcription, DNA-templated;DNA-directed RNA polymerase activity"		"g7252.t1;g7252.t1"		
+Cre07.g357300			Chloroplast				"g8308.t1;Cre07.g357300.t1.1;g8308.t1;Cre07.g357300.t1.1"		
+Cre07.g318702	GMM:27.1	RNA.processing		GO:0005515	"protein binding"		g7367.t1		
+Cre07.g319600	"GMM:16.7;GMM:16.1;GMM:11.1.11;GMM:11.1.10"	"secondary metabolism.wax;secondary metabolism.isoprenoids;lipid metabolism.FA synthesis and FA elongation.fatty acid elongase;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase"		"GO:0016747;GO:0016020;GO:0008610;GO:0006633"	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;lipid biosynthetic process;fatty acid biosynthetic process"	FAE3	"FAE3;g7392.t1;Cre07.g319600.t1.1"	FAE3	"Putative 3-keto-acyl-CoA synthase (very long chain fatty acid condensing enzyme), may be a beta-ketoacyl-acyl-carrier-protein synthase; similar to chalcone and stilbene synthases, and polyketide synthases. Similar to the CUTICULAR1 (CUT1) enzyme in Arabi"
+Cre07.g338150	"GMM:33.99;GMM:31.2;GMM:27.4"	"development.unspecified;cell.division;RNA.RNA binding"	Mitochondrion	GO:0003676	"nucleic acid binding"	RNP1	"ChlMEI2g;RNP1;g7867.t1;AML1"	MEI2	"RNA-binding protein with RRM (RNP-1) motif; Similar to plant AML and TEL genes and to yeast mei2 (PMID: 15356386); contains a RRM (RNP-1) motif; Co-orthologous to five AML (MEI2-like) proteins in Arabidopsis thaliana (AT1G29400, AT2G42890, AT4G18120, AT5G07290, AT5G61960);"
+Cre07.g339100	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g7887.t1		
+Cre07.g357850	GMM:29.2.1.2.2.22	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L22"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL22	"g8321.t1;Cre07.g357850.t1.1;Cre07.g357850.t1.1;g8321.t1;g8321.t1;Cre07.g357850.t1.1"	"RPL22;RPL22;RPL22"	"Cytosolic 60S large ribosomal subunit protein L22;Cytosolic 60S large ribosomal subunit protein L22;Cytosolic 60S large ribosomal subunit protein L22"
+Cre07.g333150							"Cre07.g333150.t1.1;g7749.t1;Cre07.g333150.t1.1;g7749.t1"		
+Cre07.g352976							g8209.t1		
+Cre07.g355700			Mitochondrion	GO:0003676	"nucleic acid binding"		"g8271.t1;Cre07.g355700.t1.1"		
+Cre07.g330750			"Secretory pathway"			PHC43	"PHC43;g7696.t1;g7696.t1;PHC43;g7696.t1;PHC43;PHC43;g7696.t1"		
+Cre07.g357750	GMM:33.99	development.unspecified	"Secretory pathway"	GO:0016020	membrane		"Cre07.g357750.t1.1;g8319.t2"		
+Cre07.g325650							"g7521.t1;Cre07.g325650.t1.1"		
+Cre07.g319550			Mitochondrion				"g7391.t1;g7391.t1"		
+Cre07.g328600	"GMM:29.5.11.4.99;GMM:29.5.11;GMM:27.3.67"	"protein.degradation.ubiquitin.E3.unspecified;protein.degradation.ubiquitin;RNA.regulation of transcription.putative transcription regulator"		GO:0005515	"protein binding"		g7643.t1		
+Cre07.g340400	GMM:31.6.1.5.2	"cell.motility.eukaryotes.radial spoke.stalk"				RSP17	"g7918.t1;Cre07.g340400.t1.1;Cre07.g340400.t1.1;g7918.t1"	"RSP17;RSP17"	"A subunit in the radial spoke stalk; containing a coiled coil typical of filamentous polypeptides [PMID: 16507594; GI:83284727;A subunit in the radial spoke stalk; containing a coiled coil typical of filamentous polypeptides [PMID: 16507594; GI:83284727"
+Cre07.g313206			Mitochondrion	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"		g7250.t2		
+Cre07.g337150	GMM:28.1	"DNA.synthesis/chromatin structure"		GO:0005524	"ATP binding"	RFC2	"Cre07.g337150.t1.1;g7845.t1;RFC2;g7845.t1;Cre07.g337150.t1.1;RFC2"	"RFC2;RFC2"	"Homologous to eukaryotic RFC2 (DNA replication factor C complex subunit 2); accessory protein of DNA polymerase.;Homologous to eukaryotic RFC2 (DNA replication factor C complex subunit 2); accessory protein of DNA polymerase."
+Cre07.g337650	GMM:8.1.1.1	"TCA / organic transformation.TCA.pyruvate DH.E1"	Mitochondrion	"GO:0016624;GO:0008152"	"oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor;metabolic process"	PDC1	"g7854.t1;PDC1;Cre07.g337650.t1.1;Cre07.g337650.t1.1;g7854.t1;PDC1"	"PDC1;PDC1"	"Alpha subunit of the E1 component of the mitochondrial pyruvate dehydrogenase complex (mtPDC), that catalyzes the oxidative decarboxylation of pyruvate, yielding acetyl-CoA and NADH to support the Krebs cycle and oxidative phosphorylation. A plastid PDC also exists.;Alpha subunit of the E1 component of the mitochondrial pyruvate dehydrogenase complex (mtPDC), that catalyzes the oxidative decarboxylation of pyruvate, yielding acetyl-CoA and NADH to support the Krebs cycle and oxidative phosphorylation. A plastid PDC also exists."
+Cre07.g349850				GO:0005515	"protein binding"		"g8139.t1;Cre07.g349850.t1.1;g8139.t1;Cre07.g349850.t1.1"		
+Cre07.g330850	GMM:34.8	"transport.metabolite transporters at the envelope membrane"	Mitochondrion				"g7698.t1;TPT10;TPT11;TPT10;g7698.t1;TPT11;TPT10;TPT11;g7698.t1;TPT11;g7698.t1;TPT10"		
+Cre07.g346200	"GMM:35;GMM:11.9.3.2"	"not assigned;lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase"							
+Cre07.g325728							"Cre26.g772700.t1.2;g7543.t1;Cre26.g772700.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre07.g354400	"GMM:26.10;GMM:26.1;GMM:17.2.2;GMM:16.8.3.3;GMM:16.1.4.7"	"misc.cytochrome P450;misc.misc2;hormone metabolism.auxin.signal transduction;secondary metabolism.flavonoids.dihydroflavonols.flavonoid 3'-monooxygenase;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase"	Mitochondrion	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743B2	"CYP743B3;CYP743B2;g8244.t1;CYP21;CYP743B1;CYP743B3;CYP21;g8244.t1;CYP743B2;CYP743B1"	"CYP743B2;CYP743B2"	"cytochrome P450, unknown function, in CYP711 clan. The CYP711 clan includes CYP711A1 of Arabidopsis (MAX1). This gene product makes a carotenoid-derived branch inhibiting hormone. The CYP743 family has best BLAST hits to CYP3 family members (animal sequences). The top 100 BLAST hits were all animal sequences. The plant CYP711 clan may share a common ancestor with the animal CYP3/CYP4 clan. Belongs to a cluster of three highly similar CYP;cytochrome P450, unknown function, in CYP711 clan. The CYP711 clan includes CYP711A1 of Arabidopsis (MAX1). This gene product makes a carotenoid-derived branch inhibiting hormone. The CYP743 family has best BLAST hits to CYP3 family members (animal sequences). The top 100 BLAST hits were all animal sequences. The plant CYP711 clan may share a common ancestor with the animal CYP3/CYP4 clan. Belongs to a cluster of three highly similar CYP"
+Cre07.g325721	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"				cyg69	"Cre26.g772386.t1.2;Cre26.g772386.t1.1;g7535.t1;Cre26.g772386.t1.1;g7535.t1;Cre26.g772386.t1.2"		
+Cre07.g340600			Chloroplast			MCP21	"MCP21;g7921.t1"		
+Cre07.g339200			Chloroplast				"Cre07.g339200.t1.1;g7890.t2"	SCO2	"Putative mitochondrion-associated cytochrome c oxidase assembly factor; May transport copper to the Cu site of COX2"
+Cre07.g356600							"g8290.t1;Cre07.g356600.t1.1;g8290.t1;Cre07.g356600.t1.1;g8290.t1;Cre07.g356600.t1.1"		
+Cre07.g332150							"Cre07.g332150.t1.1;g7728.t1"	LYRM7	"Complex III assembly factor LYRM7"
+Cre07.g317201			Chloroplast				"Cre07.g317200.t1.2;g7332.t1"		
+Cre07.g349050			Chloroplast	"GO:0005515;GO:0003723"	"protein binding;RNA binding"		"Cre07.g349050.t1.1;g8119.t1"		
+Cre07.g348400			Chloroplast				g8106.t1		
+Cre07.g351100				GO:0019825	"oxygen binding"		"g8170.t1;PRX;Cre07.g351100.t1.1;Cre07.g351100.t1.1;g8170.t1;PRX;Cre07.g351100.t1.1;PRX;g8170.t1;g8170.t1;PRX;Cre07.g351100.t1.1"	"THB5;THB5;THB5;THB5"	"oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor; contains four 2/2Hb domains, two of which appear to lack critical residues;oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor; contains four 2/2Hb domains, two of which appear to lack critical residues;oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor; contains four 2/2Hb domains, two of which appear to lack critical residues;oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor; contains four 2/2Hb domains, two of which appear to lack critical residues"
+Cre07.g325714			Chloroplast				"g7528.t1;Cre26.g772050.t1.1;Cre26.g772050.t1.2"		
+Cre07.g327000							"g7604.t1;Cre07.g327000.t1.1"		
+Cre07.g356200			Chloroplast				"g8281.t1;g8281.t1;g8281.t1;g8281.t1;g8281.t1;g8281.t1;g8281.t1;g8281.t1;g8281.t1"		
+Cre07.g341553	GMM:20.2.3	stress.abiotic.drought/salt							
+Cre07.g353200	GMM:30.5	signalling.G-proteins	"Secretory pathway"	GO:0005525	"GTP binding"		g8214.t1		
+Cre07.g344200							"Cre07.g344200.t1.1;g8009.t1"		
+Cre07.g331900	GMM:29.2.1.2.1.13	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S13"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS13	"Cre07.g331900.t1.1;g7721.t1"	RPS13	"Cytosolic 40S small ribosomal subunit protein S13"
+Cre07.g354000			"Secretory pathway"				"g8235.t1;Cre07.g354000.t1.1"		
+Cre07.g323150			"Secretory pathway"			TEH4	"Cre07.g323150.t1.1;g7465.t1;TEH4"		
+Cre07.g316100							"g7311.t1;g7311.t1"		
+Cre07.g343300	GMM:3.3	"minor CHO metabolism.sugar alcohols"					"g7985.t1;g7985.t1;g7985.t1"		
+Cre07.g338550			"Secretory pathway"	GO:0005515	"protein binding"		"g7875.t1;g7875.t1;g7875.t1;g7875.t1;g7875.t1;g7875.t1;g7875.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre07.g336100							"g7823.t1;Cre07.g336100.t1.1"		
+Cre07.g345600			Mitochondrion				g8042.t1		
+Cre07.g350300			Mitochondrion				"g8149.t1;Cre07.g350300.t1.1"		
+Cre07.g331450							"NAT19;g7711.t1"		"Related to GCN5"
+Cre07.g319000							g7373.t1		
+Cre07.g319226			"Secretory pathway"				g7380.t1		
+Cre07.g350000	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"		GO:0006629	"lipid metabolic process"	TGL14	"TGL14;g8143.t1;TGL14;g8143.t1;TGL14;g8143.t1;TGL14;g8143.t1;TGL14;g8143.t1"		
+Cre07.g343466			"Secretory pathway"				g7989.t1		
+Cre07.g345300	"GMM:4.1.1;GMM:26.2;GMM:10.1;GMM:1.1"	"glycolysis.cytosolic branch.UGPase;misc.UDP glucosyl and glucoronyl transferases;cell wall.precursor synthesis;PS.lightreaction"	Mitochondrion	"GO:0070569;GO:0008152"	"uridylyltransferase activity;metabolic process"	UAP1	"UAP1;g8035.t1;UAP1;g8035.t1"	"UAP1;UAP1"	"related to UDP-N-acetylglucosamine pyrophosphorylase (EC 2.7.7.23) and related to UTP--glucose-1-phosphate uridylyltransferase (EC 2.7.7.9) = UDP-glucose pyrophosphorylase (UDPGP) (UGPase);related to UDP-N-acetylglucosamine pyrophosphorylase (EC 2.7.7.23) and related to UTP--glucose-1-phosphate uridylyltransferase (EC 2.7.7.9) = UDP-glucose pyrophosphorylase (UDPGP) (UGPase)"
+Cre07.g329767			Chloroplast						
+Cre07.g329950							"g7679.t1;g7679.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre07.g349450							g8130.t1		
+Cre07.g350500	"GMM:29.1.9;GMM:29.1"	"protein.aa activation.valine-tRNA ligase;protein.aa activation"	Mitochondrion	"GO:0006438;GO:0006418;GO:0005737;GO:0005524;GO:0004832;GO:0004812;GO:0000166"	"valyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;valine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding"	TSV1	"TSV;g8154.t1;Cre07.g350500.t1.1;Cre07.g350500.t1.1;TSV;g8154.t1"	"TSV1;TSV1"	"Putative valyl-tRNA synthetase since closer related to E. coli valS than TSV2;Putative valyl-tRNA synthetase since closer related to E. coli valS than TSV2"
+Cre07.g322800							"CSA4;g7457.t1;Cre07.g322800.t1.1;CSA4;g7457.t1;Cre07.g322800.t1.1;Cre07.g322800.t1.1;g7457.t1;CSA4"		"four close paralogs in C. reinhardtii, more distant homologs in Tetrabaena and Gonium;four close paralogs in C. reinhardtii, more distant homologs in Tetrabaena and Gonium;four close paralogs in C. reinhardtii, more distant homologs in Tetrabaena and Gonium"
+Cre07.g317800				"GO:0006904;GO:0000145"	"vesicle docking involved in exocytosis;exocyst"		"Cre07.g317800.t1.1;g7347.t1"		
+Cre07.g351150	"GMM:31.6.1.2;GMM:29.4"	"cell.motility.eukaryotes.deflagellation;protein.postranslational modification"				FA2	"g8171.t1;Cre07.g351150.t1.1"	FA2	"Flagellar Autonomy 2 protein, NIMA family kinase; PMID: 1195892. Associated with flagellar shortening and detachment, and in the G2/M transition of the cell cycle"
+Cre07.g357550							"g8314.t1;Cre07.g357550.t1.1;Cre07.g357550.t1.1;g8314.t1;Cre07.g357550.t1.1;g8314.t1;Cre07.g357550.t1.1;g8314.t1"		
+Cre07.g329783									
+Cre07.g325755			Chloroplast				"Cre26.g773800.t1.2;g7569.t1;Cre26.g773800.t1.1"		
+Cre07.g349152	GMM:27.3.6	"RNA.regulation of transcription.basic helix-loop-helix family (bHLH)"		GO:0046983	"protein dimerization activity"		g8123.t2		
+Cre07.g326200							"Cre07.g326200.t1.1;g7586.t1"		
+Cre07.g334650	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0046872	"metal ion binding"		"g7792.t1;g7792.t1;g7792.t1;g7792.t1"		
+Cre07.g321750			"Secretory pathway"				"g7436.t2;Cre07.g321750.t1.1"		
+Cre07.g342200						IFT70	"CrDYF-1;Ttc30;g7942.t1;FAP259;Dyf-1Fleer;Cre07.g342200.t1.1;Ttc30;CrDYF-1;g7942.t1;Cre07.g342200.t1.1;FAP259;Dyf-1Fleer;FAP259;Dyf-1Fleer;Ttc30;Cre07.g342200.t1.1;CrDYF-1;g7942.t1;CrDYF-1;FAP259;Cre07.g342200.t1.1;g7942.t1;Ttc30;Dyf-1Fleer;Ttc30;FAP259;Dyf-1Fleer;CrDYF-1;g7942.t1;Cre07.g342200.t1.1"	"IFT70;IFT70;IFT70;IFT70;IFT70"	"Flagellar Associated coiled-coil protein; TPR protein found in the flagellar proteome as FAP259; similar to dyf-1 (C. elegans); component of IFT-B1 particle; identified in the flagellar basal body proteome; Upregulated by deflagellation;Flagellar Associated coiled-coil protein; TPR protein found in the flagellar proteome as FAP259; similar to dyf-1 (C. elegans); component of IFT-B1 particle; identified in the flagellar basal body proteome; Upregulated by deflagellation;Flagellar Associated coiled-coil protein; TPR protein found in the flagellar proteome as FAP259; similar to dyf-1 (C. elegans); component of IFT-B1 particle; identified in the flagellar basal body proteome; Upregulated by deflagellation;Flagellar Associated coiled-coil protein; TPR protein found in the flagellar proteome as FAP259; similar to dyf-1 (C. elegans); component of IFT-B1 particle; identified in the flagellar basal body proteome; Upregulated by deflagellation;Flagellar Associated coiled-coil protein; TPR protein found in the flagellar proteome as FAP259; similar to dyf-1 (C. elegans); component of IFT-B1 particle; identified in the flagellar basal body proteome; Upregulated by deflagellation"
+Cre07.g339450							g7895.t1		
+Cre07.g340700	GMM:33.99	development.unspecified	"Secretory pathway"				g7923.t1		
+Cre07.g348700				GO:0006396	"RNA processing"		"g8112.t2;Cre07.g348700.t1.1;g8112.t2;Cre07.g348700.t1.1"		
+Cre07.g345150				"GO:0071929;GO:0019799;GO:0005874"	"alpha-tubulin acetylation;tubulin N-acetyltransferase activity;microtubule"		"Cre07.g345150.t1.1;g8032.t1"		
+Cre07.g352450	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Chloroplast				"SDR10;g8197.t1;Cre07.g352450.t1.1"		"Possible retinol/17-beta hydroxysteroid dehydrogenase"
+Cre07.g343626							g7994.t1		
+Cre07.g346950							"g8075.t1;g8075.t1"		"Target of CRR1;Target of CRR1"
+Cre07.g319350	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g7387.t1;g7387.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre07.g340200	"GMM:1.1.99.1;GMM:1.1.40"	"PS.lightreaction.unspecified.TEF;PS.lightreaction.cyclic electron flow-chlororespiration"	Chloroplast			PGRL1	"TEF3;g7914.t1"	PGRL1	"thylakoid transmembrane protein involved in cyclic electron flow"
+Cre07.g333900	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"				NUOA8	g7777.t1	NUOA8	"NADH:ubiquinone oxidoreductase (Complex I) 12.5 kDa subunit precursor, mitochondrial. [=NDUFA8, PGIV subunit]. gi 33943531 gb AAQ55460.1; Orthologous to NDUFA8 in Homo sapiens;"
+Cre07.g352750	GMM:34.14	"transport.unspecified cations"		"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	MRS3	"g8204.t1;MRS3;Cre07.g352750.t1.1;g8204.t1;MRS3;Cre07.g352750.t1.1;Cre07.g352750.t1.1;g8204.t1;MRS3;MRS3;g8204.t1;Cre07.g352750.t1.1"	"MRS3;MRS3;MRS3;MRS3"	"metal ion transporter; related to plant homologs; CorA-like and putative mitochondrial splicing factor;metal ion transporter; related to plant homologs; CorA-like and putative mitochondrial splicing factor;metal ion transporter; related to plant homologs; CorA-like and putative mitochondrial splicing factor;metal ion transporter; related to plant homologs; CorA-like and putative mitochondrial splicing factor"
+Cre07.g327850			Mitochondrion				"g7626.t1;g7626.t1;g7626.t1"		
+Cre07.g341750			Chloroplast						
+Cre07.g325700	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		GO:0005524	"ATP binding"		"SRH15;Cre07.g325700.t1.1;g7576.t1;g7576.t1;Cre07.g325700.t1.1;SRH15"		"SNF2-related helicase. ChromoDB CHR3421;SNF2-related helicase. ChromoDB CHR3421"
+Cre07.g344771			"Secretory pathway"				"g8022.t1;Cre07.g344771.t1.1;Cre07.g344771.t1.1;g8022.t1;g8022.t1;Cre07.g344771.t1.1;Cre07.g344771.t1.1;g8022.t1;Cre07.g344771.t1.1;g8022.t1"		
+Cre07.g351600	GMM:27.1.2	"RNA.processing.RNA helicase"	Mitochondrion	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL40	"Cre07.g351600.t1.1;HEL40;g8179.t1;Cre07.g351600.t1.1;g8179.t1;HEL40"		
+Cre07.g330350			Chloroplast			OPR115	"g7688.t1;g7688.t1;g7688.t1;g7688.t1;g7688.t1;g7688.t1"	"OPR115;OPR115;OPR115;OPR115;OPR115;OPR115"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre07.g353837							"g8231.t1;Cre07.g353837.t1.1"		
+Cre07.g350600	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"			CSG7	"CSG7;g8156.t1;g8156.t1;CSG7"		"Belongs to family G of Chlamydomonadales-specific proteins, all on chromosome 7; no known function;Belongs to family G of Chlamydomonadales-specific proteins, all on chromosome 7; no known function"
+Cre07.g338665	GMM:28.2	DNA.repair	Chloroplast				"Cre07.g338665.t1.1;g7878.t1"		
+Cre07.g325725	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Mitochondrion				"Cre26.g772600.t1.1;g7540.t1"		
+Cre07.g325734	GMM:23.4.10	"nucleotide metabolism.phosphotransfer and pyrophosphatases.nucleoside diphosphate kinase"	Chloroplast	"GO:0006241;GO:0006228;GO:0006183;GO:0006165;GO:0004550"	"CTP biosynthetic process;UTP biosynthetic process;GTP biosynthetic process;nucleoside diphosphate phosphorylation;nucleoside diphosphate kinase activity"	FAP340	"g7549.t1;Cre26.g773000.t1.1"	FAP340	"Similar to Nucleoside Diphosphate Kinase"
+Cre07.g326600	"GMM:21.1.1;GMM:21.1"	"redox.thioredoxin.PDIL;redox.thioredoxin"		GO:0045454	"cell redox homeostasis"	PDI6	"g7594.t1;Cre07.g326600.t1.1;PDI6;Cre07.g326600.t1.1;g7594.t1;PDI6;PDI6;g7594.t1;Cre07.g326600.t1.1;PDI6;Cre07.g326600.t1.1;g7594.t1;PDI6;Cre07.g326600.t1.1;g7594.t1;PDI6;g7594.t1;Cre07.g326600.t1.1;g7594.t1;Cre07.g326600.t1.1;PDI6"	"PDI6;PDI6;PDI6;PDI6;PDI6;PDI6;PDI6"	
+Cre07.g316150			"Secretory pathway"				"g7312.t1;g7312.t1;g7312.t1;g7312.t1"		
+Cre07.g313650			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g7259.t2;g7259.t2"		
+Cre07.g322450	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		GO:0005515	"protein binding"	hlm13	"g7450.t1;HLM13"		"Protein contains a SET domain with very weak similarity Arabidopsis thaliana ASHH1, SET26, SDG26 (At1g7671). ChromoDB SDG342"
+Cre07.g314200							g7270.t1		
+Cre07.g313900			Mitochondrion				"g7264.t1;g7264.t1"		
+Cre07.g317550			Mitochondrion				g7341.t1		
+Cre07.g346450			Mitochondrion				g8061.t1		
+Cre07.g330400				"GO:0008076;GO:0006813;GO:0005249"	"voltage-gated potassium channel complex;potassium ion transport;voltage-gated potassium channel activity"	KCN1	"g7689.t1;KCN1;g7689.t1;KCN1;KCN1;g7689.t1;g7689.t1;KCN1"		"Belongs to Kv class; contains one K+ selective pore domain; sequence shows the K+ filter selection and voltage sensor regions; closely related to KCN2;Belongs to Kv class; contains one K+ selective pore domain; sequence shows the K+ filter selection and voltage sensor regions; closely related to KCN2;Belongs to Kv class; contains one K+ selective pore domain; sequence shows the K+ filter selection and voltage sensor regions; closely related to KCN2;Belongs to Kv class; contains one K+ selective pore domain; sequence shows the K+ filter selection and voltage sensor regions; closely related to KCN2"
+Cre07.g353350	GMM:27.2	RNA.transcription		GO:0006352	"DNA-templated transcription, initiation"		g8219.t1		
+Cre07.g336500			Mitochondrion			OPR114	"g7831.t1;g7831.t1"	"OPR114;OPR114"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre07.g322050			Mitochondrion				"g7442.t1;Cre07.g322050.t1.1"		
+Cre07.g339750	"GMM:19.20;GMM:19.2"	"tetrapyrrole synthesis.ferrochelatase;tetrapyrrole synthesis.glu-tRNA reductase"	Chloroplast	"GO:0006783;GO:0004325"	"heme biosynthetic process;ferrochelatase activity"	HEM2	"HEM15;HEMH;HEM2;FeC;g7902.t2;Cre07.g339750.t1.1;g7902.t2;Cre07.g339750.t1.1;HEM2;FeC;HEM15;HEMH;HEM15;HEMH;FeC;HEM2;Cre07.g339750.t1.1;g7902.t2"	"FEC1;FEC1;FEC1"	"Ferrochelatase, chloroplast precursor (Protoheme ferro-lyase)(Heme synthetase); matches gi:13249285; PMID: 16306143 ; Interacts with bestrophin-1 a thylakoid membrane protein [PMID: 28938113];Ferrochelatase, chloroplast precursor (Protoheme ferro-lyase)(Heme synthetase); matches gi:13249285; PMID: 16306143 ; Interacts with bestrophin-1 a thylakoid membrane protein [PMID: 28938113];Ferrochelatase, chloroplast precursor (Protoheme ferro-lyase)(Heme synthetase); matches gi:13249285; PMID: 16306143 ; Interacts with bestrophin-1 a thylakoid membrane protein [PMID: 28938113]"
+Cre07.g342402			Mitochondrion						
+Cre07.g333500							"Cre07.g333500.t1.1;g7754.t1"		
+Cre07.g327200			"Secretory pathway"				g7609.t1		
+Cre07.g322500	GMM:29.2.1.99.2.19	"protein.synthesis.ribosomal protein.unknown.large subunit.L19"	Mitochondrion	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPL19	"g7451.t1;Cre07.g322500.t1.1;bL19m"	MRPL19	
+Cre07.g325709			Mitochondrion						
+Cre07.g342100							"g7944.t1;Cre07.g342100.t1.1"		"Expressed Protein. Similar to NPSN Qb-SNAREs, involved in Endosomal/Cell Plate trafficking."
+Cre07.g333950	GMM:29.3.4.3	"protein.targeting.secretory pathway.vacuole"		"GO:0016192;GO:0006904"	"vesicle-mediated transport;vesicle docking involved in exocytosis"	VPS45	"g7778.t1;Cre07.g333950.t1.1;VPS45;g7778.t1;VPS45;Cre07.g333950.t1.1"	"VPS45;VPS45"	"Expressed Protein. SM (Sec1-family) protein, binds to SNAREs in the Golgi and Endosomal system;Expressed Protein. SM (Sec1-family) protein, binds to SNAREs in the Golgi and Endosomal system"
+Cre07.g314650	GMM:28.2	DNA.repair	Chloroplast	"GO:0009432;GO:0006281;GO:0005524;GO:0003697"	"SOS response;DNA repair;ATP binding;single-stranded DNA binding"	RECA	"Cre07.g314650.t1.1;RECA;EZY19;g7279.t1;RECA;Cre07.g314650.t1.1;g7279.t1;EZY19;Cre07.g314650.t1.1;RECA;EZY19;g7279.t1"	"RECA1;RECA1;RECA1"	"Chloroplast localized single-strand DNA binding protein, involved in chloroplast genome integrity; up-regulated in early zygotes; 3 AA difference with EST-based published sequence BAB64921 at boundaries of 4th intron;Chloroplast localized single-strand DNA binding protein, involved in chloroplast genome integrity; up-regulated in early zygotes; 3 AA difference with EST-based published sequence BAB64921 at boundaries of 4th intron;Chloroplast localized single-strand DNA binding protein, involved in chloroplast genome integrity; up-regulated in early zygotes; 3 AA difference with EST-based published sequence BAB64921 at boundaries of 4th intron"
+Cre07.g331750							"g7718.t1;Cre07.g331750.t1.1"		
+Cre07.g324100				GO:0055114	"oxidation-reduction process"		"g7486.t1;g7486.t1"		
+Cre07.g344550	GMM:13.1.5.1.1	"amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase"	Chloroplast	"GO:0055114;GO:0051287;GO:0016616;GO:0008152"	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process"		"g8017.t1;Cre07.g344550.t1.1;Cre07.g344550.t1.1;g8017.t1;Cre07.g344550.t1.1;g8017.t1"		
+Cre07.g328200	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"	PSBP6	"PSBP6;g7634.t1;Cre07.g328200.t1.1"		"shows similarity to PSBP (OEE2, oxygen-evolving enhancer protein 2 of photosystem II, OEC23, 23 kDa subunit of oxygen evolving complex [PMID: 3468511]; orthologous to At5g11450; targeted to thylakoid lumen by TAT pathway"
+Cre07.g318600	GMM:29.6.2.1	"protein.folding.chaperones and co-chaperones.small HSPs"				HSP22H	"Cre07.g318600.t1.1;g7365.t1"	HSP22H	"small heat shock protein containing at least first part of alpha-crystallin domain; N-terminus by ChloroP and TargetP not predicted to be organellar targeting sequence, thus rather cytosolic; not present in version 1 of the genome"
+Cre07.g314700			Mitochondrion	GO:0006281	"DNA repair"		"Cre07.g314700.t1.1;g7281.t1"		
+Cre07.g335850			Mitochondrion				"g7818.t1;Cre07.g335850.t1.1"		
+Cre07.g316526	GMM:11.9.2.1	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase"	Mitochondrion				"g7318.t1;Cre07.g316526.t1.1;g7318.t1;Cre07.g316526.t1.1"		
+Cre07.g335050	GMM:29.5.5	"protein.degradation.serine protease"	"Secretory pathway"				"g7801.t1;g7801.t1"		
+Cre07.g337300	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	STD1	"g7848.t1;DYRK2;STD1;DYRKP;DSK2;DYRK2;g7848.t1;DSK2;STD1;DYRKP;g7848.t1;STD1;DYRK2;DYRKP;DSK2;DYRK2;g7848.t1;DSK2;STD1;DYRKP;DSK2;g7848.t1;DYRK2;DYRKP;STD1;DYRKP;STD1;DSK2;g7848.t1;DYRK2;DYRK2;g7848.t1;DSK2;DYRKP;STD1"	"DYRKP1;DYRKP1;DYRKP1;DYRKP1;DYRKP1;DYRKP1;DYRKP1"	"Acts as a negative regulator of the sink capacity of photosynthetic cells;Acts as a negative regulator of the sink capacity of photosynthetic cells;Acts as a negative regulator of the sink capacity of photosynthetic cells;Acts as a negative regulator of the sink capacity of photosynthetic cells;Acts as a negative regulator of the sink capacity of photosynthetic cells;Acts as a negative regulator of the sink capacity of photosynthetic cells;Acts as a negative regulator of the sink capacity of photosynthetic cells"
+Cre07.g325737	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"					"g7552.t1;Cre26.g773150.t1.2;Cre26.g773150.t1.1;g7552.t1;Cre26.g773150.t1.2;Cre26.g773150.t1.1"		
+Cre07.g329500	GMM:29.5.1	protein.degradation.subtilases	"Secretory pathway"	"GO:0006508;GO:0005515;GO:0004252"	"proteolysis;protein binding;serine-type endopeptidase activity"	SUB1	"SUB1;Cre07.g329500.t1.1;g7665.t2"		"secreted protein, contains two Kazal-type serine protease inhibitor domains (IPR002350) and a protease S8 (subtilase) domain that it probably regulates; the latter is most related to bacterial extracellular proteases"
+Cre07.g315400			Mitochondrion	GO:0005525	"GTP binding"	NOA2	"YQEH;g7297.t1;NOL1;NOA2"		"putative P-loop GTPase; related to bacterial YQEH which is involved in ribosomal 30S subunit assembly; shows similarity to At3g47450, a putative plant nitric oxide synthase"
+Cre07.g332901							"g7744.t1;Cre07.g332900.t1.3;Cre07.g332900.t1.3;g7744.t1;Cre07.g332900.t1.3;g7744.t1"		
+Cre07.g356970							g8299.t2		
+Cre07.g338900	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0003676	"nucleic acid binding"		g7883.t1		
+Cre07.g319900	GMM:28.99	DNA.unspecified		"GO:0003723;GO:0000178"	"RNA binding;exosome (RNase complex)"	RRP40	"g7398.t1;RRP40"	RRP40	"Homologue of S. cerevisiae Rrp40, which is a core component of the exosome, a complex of multiple 3'-5' exoribonucleases involved in RNA processing and RNA degradation"
+Cre07.g338350			Chloroplast			CPLD50	"g7871.t1;Cre07.g338350.t1.1;g7871.t1;Cre07.g338350.t1.1;g7871.t1;Cre07.g338350.t1.1"	"CPLD50;CPLD50;CPLD50"	
+Cre07.g343050							"Cre07.g343050.t1.1;g7980.t1"		
+Cre07.g315650							"SMM23;Cre07.g315650.t1.1;g7303.t1"		"possible arsenite methyltransferase"
+Cre07.g335900	GMM:29.5	protein.degradation	"Secretory pathway"				"Cre07.g335900.t1.1;CPZ;g7819.t1;Cre07.g335900.t1.1;g7819.t1;CPZ"		
+Cre07.g357350	GMM:30.1	"signalling.in sugar and nutrient physiology"	Chloroplast	"GO:0030234;GO:0006808"	"enzyme regulator activity;regulation of nitrogen utilization"	GLB1	"g8309.t1;GLB1;PII;Cre07.g357350.t1.1"	GLB1	"Homologous to bacterial glnB gene product; Orthologous to PII / GLB1 in Arabidopsis thaliana (AT4G01900), which regulates Arginine biosynthesis by interacting with N-acetyl-L-glutamate kinase (PMID: 16545809);"
+Cre07.g357900	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"	"Secretory pathway"	"GO:0051082;GO:0006457;GO:0005783;GO:0005509"	"unfolded protein binding;protein folding;endoplasmic reticulum;calcium ion binding"		"Cre07.g357900.t1.1;g8323.t1;g8323.t1;Cre07.g357900.t1.1"		
+Cre07.g336600	"GMM:29.7.3;GMM:26.3"	"protein.glycosylation.mannosyl-oligosaccharide alpha-1,2-mannosidase;misc.gluco-, galacto- and mannosidases"	"Secretory pathway"	"GO:0016020;GO:0005509;GO:0004571"	"membrane;calcium ion binding;mannosyl-oligosaccharide 1,2-alpha-mannosidase activity"	MAN1	"g7833.t1;AMD1;AMD1;g7833.t1"	"MAN1;MAN1"	"Member of the O-glycoside hydrolases family 47; members hydrolyse the glycosidic bond between two or more carbohydrates, or between a carbohydrate and a non-carbohydrate moiety; Co-orthologous to three alpha-mannosidases (AT1G30000, AT1G51590, AT3G21160) in Arabidopsis thaliana;Member of the O-glycoside hydrolases family 47; members hydrolyse the glycosidic bond between two or more carbohydrates, or between a carbohydrate and a non-carbohydrate moiety; Co-orthologous to three alpha-mannosidases (AT1G30000, AT1G51590, AT3G21160) in Arabidopsis thaliana"
+Cre07.g334851	GMM:29.6.2.6	"protein.folding.chaperones and co-chaperones.co-chaperones"	Mitochondrion	GO:0008270	"zinc ion binding"	HEP1	"g7797.t1;Cre07.g334850.t1.2;HEP1"	ZIM17	"Hsp70 escorting protein, mitochondrial; Matrix factor probably involved in folding of mitochondrial HSP70C. Similar to Arabidopsis HEP1 (AT3G54826.1) and to yeast HEP1 (YNL310C)."
+Cre07.g320100			Mitochondrion				g7403.t1		
+Cre07.g324350			Mitochondrion				"g7493.t1;g7493.t1"		
+Cre07.g353000	"GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4"	"cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre07.g353000.t1.1;g8210.t1;g8210.t1;Cre07.g353000.t1.1;Cre07.g353000.t1.1;g8210.t1"		
+Cre07.g349950	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"		"GO:0051090;GO:0006352;GO:0005634"	"regulation of sequence-specific DNA binding transcription factor activity;DNA-templated transcription, initiation;nucleus"		"g8141.t1;g8141.t1;g8141.t1;g8141.t1"		
+Cre07.g337900			Chloroplast				g7860.t1		
+Cre07.g312817			"Secretory pathway"						
+Cre07.g320400			Chloroplast			ELIP4	"ELI4;g7409.t1;Cre07.g320400.t1.1;g7409.t1;ELI4;Cre07.g320400.t1.1;g7409.t1;ELI4;Cre07.g320400.t1.1"	"ELIP4;ELIP4;ELIP4"	"belongs to chlorophyll A-B binding protein superfamily, ELIP family;belongs to chlorophyll A-B binding protein superfamily, ELIP family;belongs to chlorophyll A-B binding protein superfamily, ELIP family"
+Cre07.g351300	GMM:29.1	"protein.aa activation"					"Cre07.g351300.t1.1;g8173.t1;Cre07.g351300.t1.1;g8173.t1"		
+Cre07.g344150							"g8006.t1;g8006.t1;g8006.t1;g8006.t1;g8006.t1"		
+Cre07.g328750							"g7645.t1;Cre07.g328750.t1.1"		
+Cre07.g345700			Chloroplast			COQ10	"g8044.t1;COQ10;Cre07.g345700.t1.1;COQ10;Cre07.g345700.t1.1;g8044.t1"	"COQ10;COQ10"	"Putative coenzyme Q-binding protein COQ10, mitochondrial precursor; similiar to COQ10_YEAST Coenzyme Q-binding protein COQ10, mitochondrial precursor (gi 74676458);Putative coenzyme Q-binding protein COQ10, mitochondrial precursor; similiar to COQ10_YEAST Coenzyme Q-binding protein COQ10, mitochondrial precursor (gi 74676458)"
+Cre07.g320900			Mitochondrion				"g7419.t1;Cre07.g320900.t1.1;g7419.t1;Cre07.g320900.t1.1"		
+Cre07.g354301	GMM:26.23	misc.rhodanese	Chloroplast			RDP1	"Cre07.g354300.t1.2;RDP1;g8242.t1"		
+Cre07.g342450	"GMM:28.1;GMM:27.1.19"	"DNA.synthesis/chromatin structure;RNA.processing.ribonucleases"					"g7936.t1;SEE3;g7936.t1;SEE3;g7936.t1;SEE3"		"related to SEN1;related to SEN1;related to SEN1"
+Cre07.g334575			Mitochondrion				"Cre07.g334564.t1.2;g7790.t1;Cre07.g334564.t1.2;g7790.t1;g7790.t1;Cre07.g334564.t1.2;Cre07.g334564.t1.2;g7790.t1;Cre07.g334564.t1.2;g7790.t1;g7790.t1;Cre07.g334564.t1.2;g7790.t1;Cre07.g334564.t1.2"		
+Cre07.g331114			Chloroplast				"g7704.t2;Cre07.g331114.t1.1;g7704.t2;Cre07.g331114.t1.1"		
+Cre07.g319050							"g7376.t1;Cre07.g319050.t1.1"		
+Cre07.g349750			"Secretory pathway"				"Cre07.g349750.t1.1;g8137.t1"		
+Cre07.g343534	GMM:3.3	"minor CHO metabolism.sugar alcohols"	"Secretory pathway"				g7991.t1		
+Cre07.g356400	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"				POC7	"Cre07.g356400.t1.1;POC7;RPD1;g8286.t1;POC7;RPD1;Cre07.g356400.t1.1;g8286.t1;RPD1;Cre07.g356400.t1.1;g8286.t1;POC7"	"POC7;POC7;POC7"	"Found in basal body proteome; FABP, ortholog of C. elegans gene UNC-119, which transports lipid modified cargos into cilia; Similar to HRG4 in mammals. Mutations in mammalian gene involved in cone-rod dystrophy;;Found in basal body proteome; FABP, ortholog of C. elegans gene UNC-119, which transports lipid modified cargos into cilia; Similar to HRG4 in mammals. Mutations in mammalian gene involved in cone-rod dystrophy;;Found in basal body proteome; FABP, ortholog of C. elegans gene UNC-119, which transports lipid modified cargos into cilia; Similar to HRG4 in mammals. Mutations in mammalian gene involved in cone-rod dystrophy;"
+Cre07.g326300							"Cre07.g326300.t1.1;g7588.t1"		
+Cre07.g325300			Chloroplast						
+Cre07.g322350	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g7447.t1;g7447.t1"		
+Cre07.g339550						FBB13	"FBB13;g7897.t1"	FBB13	"Conserved protein in ciliated organisms, with unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation"
+Cre07.g355150	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	ZRT5	"CrZIP4;g8259.t1;g8259.t1;CrZIP4"	"ZRT5;ZRT5"	"Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation;Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation"
+Cre07.g329882	"GMM:34.15;GMM:29.4"	"transport.potassium;protein.postranslational modification"		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	VGK1	"g7677.t1;VGKC;g7677.t1;VGKC;g7677.t1;VGKC;VGKC;g7677.t1"	"VGK1;VGK1;VGK1;VGK1"	"Similar to gated outwardly-rectifying K+ channels; upstream of Histidine kinase rhodopsin 4 (COP8) and possibly functionally associated;Similar to gated outwardly-rectifying K+ channels; upstream of Histidine kinase rhodopsin 4 (COP8) and possibly functionally associated;Similar to gated outwardly-rectifying K+ channels; upstream of Histidine kinase rhodopsin 4 (COP8) and possibly functionally associated;Similar to gated outwardly-rectifying K+ channels; upstream of Histidine kinase rhodopsin 4 (COP8) and possibly functionally associated"
+Cre07.g325723	GMM:23.4.1	"nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase"	"Secretory pathway"	"GO:0019205;GO:0006139;GO:0005524"	"nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding"	ADK1	"ADK1;g7537.t1;Cre26.g772450.t1.1;ADK1;Cre26.g772450.t1.1;g7537.t1;Cre26.g772450.t1.1;g7537.t1;ADK1;ADK1;Cre26.g772450.t1.1;g7537.t1"		
+Cre07.g353700							"g8228.t1;Cre07.g353700.t1.1;Cre07.g353700.t1.1;g8228.t1;g8228.t1;Cre07.g353700.t1.1"		
+Cre07.g332800							"g7742.t1;Cre07.g332800.t1.1;g7742.t1;Cre07.g332800.t1.1;Cre07.g332800.t1.1;g7742.t1;Cre07.g332800.t1.1;g7742.t1;g7742.t1;Cre07.g332800.t1.1"		
+Cre07.g334550	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast			PSAO	"g7789.t1;Cre07.g334550.t1.1;PSAO;Cre07.g334550.t1.1;PSAO;g7789.t1"	"PSAO1;PSAO1"	"Chloroplast precursor;Chloroplast precursor"
+Cre07.g343900			Chloroplast				"Cre07.g343900.t1.1;g8001.t1"		
+Cre07.g357576									
+Cre07.g356700							"g8292.t1;g8292.t1"		
+Cre07.g316800							"g7324.t1;Cre07.g316800.t1.1;Cre07.g316800.t1.1;g7324.t1"		
+Cre07.g327400	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion	"GO:0055114;GO:0008137"	"oxidation-reduction process;NADH dehydrogenase (ubiquinone) activity"	NUO9	g7616.t1	NUO9	"NADH:ubiquinone oxidoreductase (Complex I) chain 9 subunit, 31 kDa-like protein (= NAD9), mitochondrial; GI:33943525; Ortholog of NDUFS3 in Homo sapiens;"
+Cre07.g341555	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast				g7962.t1		
+Cre07.g347500						OPR31	g8086.t1	OPR31	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre07.g323650							"g7476.t1;Cre07.g323650.t1.1"		
+Cre07.g344260							"g8011.t1;Cre07.g344260.t1.1"		
+Cre07.g318350	GMM:34.99	transport.misc				CGL64	"Cre07.g318350.t1.1;g7359.t1"	CGL64	
+Cre07.g354050							g8236.t1		
+Cre07.g320950	GMM:27.3.2	"RNA.regulation of transcription.alfin-like"		"GO:0042393;GO:0006355"	"histone binding;regulation of transcription, DNA-templated"		"g7420.t1;Cre07.g320950.t1.1"		
+Cre07.g347200							"g8080.t1;g8080.t1"		
+Cre07.g321850	"GMM:29.9;GMM:29.6.2.6"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones"		"GO:0051087;GO:0001671"	"chaperone binding;ATPase activator activity"	AHA1	"Cre07.g321850.t1.1;g7438.t1"		
+Cre07.g317300	"GMM:3.6;GMM:29.4"	"minor CHO metabolism.callose;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	MAPKKKK1	"ROC78;g7334.t1;MAPKKKK1;ROC78;g7334.t1;MAPKKKK1"	"SIK1;SIK1"	"Matsuo et al.'s (2008) roc78 (rhythm of chloroplast 78) circadian bioluminescence rhythm mutant locus maps here;Matsuo et al.'s (2008) roc78 (rhythm of chloroplast 78) circadian bioluminescence rhythm mutant locus maps here"
+Cre07.g349119			Mitochondrion				g8121.t1		
+Cre07.g326900							"g7602.t1;Cre07.g326900.t1.1"		
+Cre07.g321350							"Cre07.g321350.t1.1;g7428.t1"		
+Cre07.g332550	GMM:29.5	protein.degradation	"Secretory pathway"	"GO:0016021;GO:0004190"	"integral component of membrane;aspartic-type endopeptidase activity"	PSL1	"PSL1;g7736.t1;Cre07.g332550.t1.1"	PSL1	"contains YD and GxGD motifs typical of typical of A22 family aspartic proteases, presenilins/signal peptide peptidases; belongs to SPP type, cleaving only type II transmembrane helices (C-terminus towards cytosol); probably involved in clearance of signal peptides and in signaling; contains no signal peptide; presence of a C-terminal KKxx motif, predicted to face the cytosol, explains retention in the ER"
+Cre07.g347100	GMM:3.5	"minor CHO metabolism.others"		"GO:0016853;GO:0005975"	"isomerase activity;carbohydrate metabolic process"		"g8078.t1;Cre07.g347100.t1.1;g8078.t1;Cre07.g347100.t1.1"		
+Cre07.g323800							"Cre07.g323800.t1.1;g7479.t1"		
+Cre07.g354650							"g8250.t1;Cre07.g354650.t1.1"		
+Cre07.g313050			Mitochondrion				"g7244.t1;g7244.t1"		
+Cre07.g351550				GO:0005515	"protein binding"		"g8178.t1;g8178.t1"		
+Cre07.g325724	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004725"	"protein dephosphorylation;protein tyrosine phosphatase activity"	PTP1	"g7539.t1;Cre26.g772550.t1.1;PTP1;g7539.t1;Cre26.g772550.t1.1;PTP1"		
+Cre07.g326050	GMM:31.1	cell.organisation	Mitochondrion	"GO:0008017;GO:0007018;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;ATP binding;microtubule motor activity"	KIL8	"KIL8;g7583.t1;KIL8;g7583.t1;g7583.t1;KIL8;g7583.t1;KIL8"		"Putative kinesin motor-like protein, closest match to kinesin-8 family. No sequence gap to account for poor assingment by HMM search;Putative kinesin motor-like protein, closest match to kinesin-8 family. No sequence gap to account for poor assingment by HMM search;Putative kinesin motor-like protein, closest match to kinesin-8 family. No sequence gap to account for poor assingment by HMM search;Putative kinesin motor-like protein, closest match to kinesin-8 family. No sequence gap to account for poor assingment by HMM search"
+Cre07.g337700							"PDC1;g7856.t1"		
+Cre07.g355050			Mitochondrion				"Cre07.g355050.t1.1;g8257.t1;g8257.t1;Cre07.g355050.t1.1;Cre07.g355050.t1.1;g8257.t1"		
+Cre07.g330050				GO:0046872	"metal ion binding"		g7681.t1		
+Cre07.g312050			Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		g7219.t1		
+Cre07.g343500	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion				g7990.t1		
+Cre07.g339104	"GMM:34.16;GMM:29.4"	"transport.ABC transporters and multidrug resistance systems;protein.postranslational modification"	Mitochondrion	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"Cre07.g339104.t1.1;g7888.t1;Cre07.g339104.t1.1;g7888.t1;Cre07.g339104.t1.1;g7888.t1;Cre07.g339104.t1.1;g7888.t1;g7888.t1;Cre07.g339104.t1.1;Cre07.g339104.t1.1;g7888.t1;Cre07.g339104.t1.1;g7888.t1"		
+Cre07.g351350	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"				CSG8	"CSG8;Cre07.g351350.t1.1;g8174.t1"		"Belongs to family G of Chlamydomonadales-specific proteins, all on chromosome 7; no known function"
+Cre07.g348800	GMM:27.3.46	"RNA.regulation of transcription.DNA methyltransferases"	Chloroplast			TAB1	"g8114.t1;OPR32"	TAB1	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; activates translation of psaB mRNA"
+Cre07.g339600							"Cre07.g339600.t1.1;g7899.t1;g7899.t1;Cre07.g339600.t1.1"		
+Cre07.g354551						FAP65	"g8248.t1;Cre07.g354551.t1.1;g8248.t1;Cre07.g354551.t1.1"	"FAP65;FAP65"	
+Cre07.g334950	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g7799.t1;g7799.t1;g7799.t1"		
+Cre07.g353300	"GMM:34.9;GMM:34.17"	"transport.metabolite transporters at the mitochondrial membrane;transport.peroxisomes"	"Secretory pathway"			MCP22	"MCP22;Cre07.g353300.t1.1;g8217.t1"	PXN1	"Previously idnentified as mitochondrial substrate carrier protein 22"
+Cre07.g350200			"Secretory pathway"				"g8147.t1;Cre07.g350200.t1.1"		
+Cre07.g346050	GMM:19.12	"tetrapyrrole synthesis.magnesium-protoporphyrin IX monomethyl ester (oxidative) cyclase"	Chloroplast	"GO:0055114;GO:0046872;GO:0016491"	"oxidation-reduction process;metal ion binding;oxidoreductase activity"	CRD1	"CHL27A;CRD1;g8051.t2"	CHL27A	"Mg-protoporphyrin IX monomethyl ester (oxidative) cyclase, aerobic oxidative cyclase membrane subunit; Copper response defect 1 protein, chloroplast precursor; Produced under copper and/or oxygen deficient conditions [GI:7542488; PMID: 119113; PMID: 181165; PMID: 119113; PMID: 1467313]; orthologous to Rubrivax gelatinosus aerobic oxidative cyclase [PMID: 11790744; PMID: 14617630]; Predicted chloroplast transit peptide 1-34; Orthologous to CTH1; CHL27B [PMID: 15849308]; Target of CRR1"
+Cre07.g342950			"Secretory pathway"				"g7925.t1;Cre07.g342950.t1.1"		
+Cre07.g346917			Mitochondrion						
+Cre07.g353650				GO:0005515	"protein binding"		"g8227.t1;g8227.t1;g8227.t1"		
+Cre07.g317400			"Secretory pathway"				g7336.t1		
+Cre07.g332950	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"	Chloroplast			SFA1	"SFA;SFA1;Cre07.g332950.t1.1;g7745.t1;Cre07.g332950.t1.1;g7745.t1;SFA;SFA1"	"SFA1;SFA1"	"Found in basal body proteome as SF-assemblin; SF-assemblin has been identified as the filament-forming component of the striated microtubule-associated fibers (distal striated fiber) connecting the basal bodies [GI:15528533];Found in basal body proteome as SF-assemblin; SF-assemblin has been identified as the filament-forming component of the striated microtubule-associated fibers (distal striated fiber) connecting the basal bodies [GI:15528533]"
+Cre07.g312002									
+Cre07.g314800							"Cre07.g314800.t1.1;g7283.t1"		
+Cre07.g349540	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre07.g349550.t1.2;g8133.t1"		
+Cre07.g318551	"GMM:30.2.4;GMM:30.2.13;GMM:30.2.12;GMM:30.2.11;GMM:20.1.7;GMM:17.3.2.1"	"signalling.receptor kinases.leucine rich repeat IV;signalling.receptor kinases.leucine rich repeat XIII;signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;stress.biotic.PR-proteins;hormone metabolism.brassinosteroid.signal transduction.BRI"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190;GO:0005515"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;protein binding"		"CYA8;g7364.t1"		"possible guanylate or adenylate cyclase with leucine-rich repeat in N-terminal region"
+Cre07.g317850				GO:0036064	"ciliary basal body"	FBB10	"FBB10;g7348.t1;Cre07.g317850.t1.1"	FBB10	"Conserved protein found in ciliated organisms, unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation; Coiled-Coil Protein"
+Cre07.g352350	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion	"GO:0006508;GO:0005524;GO:0004222"	"proteolysis;ATP binding;metalloendopeptidase activity"	FHL3	"Cre07.g352350.t1.1;g8195.t1;FHL7;FHL3;FTSHi6"	FTSHI6	"Similar to FtsH protease, but peptidase HEXXH motif replaced by YEAGK; may function with Tic214 (Ycf2) in the 2-MD complex of TIC translocon; conserved in green algae but no clear ortholog in land plants"
+Cre07.g329700	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005524	"ATP binding"	RPT2	"Cre07.g329700.t1.1;g7670.t1;RPT2;NSG9;NSG9;RPT2;Cre07.g329700.t1.1;g7670.t1"	"RPT2;RPT2"	"26S proteasome regulatory complex, base subcomplex, ATPase RPT2 (subunit 4);26S proteasome regulatory complex, base subcomplex, ATPase RPT2 (subunit 4)"
+Cre07.g330950	"GMM:31.4;GMM:29.3.4.99"	"cell.vesicle transport;protein.targeting.secretory pathway.unspecified"		"GO:0015031;GO:0008565"	"protein transport;protein transporter activity"	AP4S4	"Cre07.g330950.t1.1;g7700.t1;AP4S4"	AP4S4	"Expressed Protein. Sigma4-Adaptin. Clathrin Adaptor Complex Small Subunit, putative member of AP-4 complex"
+Cre07.g351900	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g8186.t1;g8186.t1;g8186.t1;g8186.t1"		
+Cre07.g316450							g7316.t1		
+Cre07.g327700	"GMM:31.1;GMM:27.3.99"	"cell.organisation;RNA.regulation of transcription.unclassified"	Chloroplast	GO:0008270	"zinc ion binding"		"g7623.t1;g7623.t1;g7623.t1"		
+Cre07.g317450			Chloroplast				g7339.t1		
+Cre07.g321250							"g7426.t1;Cre07.g321250.t1.1"		
+Cre07.g316650	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g7321.t1;g7321.t1"		
+Cre07.g344500							"GT90-10;Cre07.g344500.t1.1;GT90F10;g8016.t1"		
+Cre07.g328800			Chloroplast	GO:0005515	"protein binding"	NSG13	"NSG13;g7646.t1"	NSG13	"predicted to contain 3 transmembrane helices and 4 Armadillo repeats; expressed exclusively during gametogenesis, at a late stage (PMID: 15459796)"
+Cre07.g312833			"Secretory pathway"						
+Cre07.g352850	GMM:29.2.1.1.4.2	"protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit"	Chloroplast	"GO:0015934;GO:0006412;GO:0003735"	"large ribosomal subunit;translation;structural constituent of ribosome"	PRPL32	"g8206.t1;Cre07.g352850.t1.1"	PRPL32	"imported to chloroplast; Chloroplast large ribosomal subunit protein L32"
+Cre07.g337125							"g7844.t1;Cre07.g337118.t1.2"		
+Cre07.g331100						PHC11	"g7703.t1;PHC11;Cre07.g331100.t1.1"		"pherophorin-C11 (PHC11) [PMID: 16367971]; partial sequence very similar to extracellular matrix protein (cell wall protein) pherophorin-C1 [Genbank entry DQ196107], which belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain; short pherophorin fragment, pseudogene?"
+Cre07.g347600			Mitochondrion	"GO:0006310;GO:0006281;GO:0005524"	"DNA recombination;DNA repair;ATP binding"		"g8089.t1;g8089.t1"		
+Cre07.g339350	GMM:16.1.1	"secondary metabolism.isoprenoids.non-mevalonate pathway"		"GO:0018342;GO:0008318"	"protein prenylation;protein prenyltransferase activity"		"g7893.t1;g7893.t1"		
+Cre07.g338050	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"	Mitochondrion			ASA3	"Cre07.g338050.t1.1;ASA3;g7865.t1"	ASA3	"Mitochondrial ATP synthase associated protein 3; part of peripheral stalk involed in dimerization; unknown evolutionary origin [PMID: 11744727, PMID: 15710684]"
+Cre07.g335350	"GMM:35;GMM:27.3.99;GMM:16.4.1;GMM:13.2.6.2"	"not assigned;RNA.regulation of transcription.unclassified;secondary metabolism.N misc.alkaloid-like;amino acid metabolism.degradation.aromatic aa.tyrosine"	"Secretory pathway"				g7808.t1		
+Cre07.g341952							"g7979.t1;g7979.t1;g7979.t1"		
+Cre07.g333050			"Secretory pathway"				"g7747.t1;Cre07.g333050.t1.1"		
+Cre07.g326010							"Cre07.g326010.t1.1;g7582.t1"		
+Cre07.g342800			Chloroplast			CGL16	g7929.t1	CGL16	
+Cre07.g343700	"GMM:8.1.5;GMM:8.1.1.2"	"TCA / organic transformation.TCA.2-oxoglutarate dehydrogenase;TCA / organic transformation.TCA.pyruvate DH.E2"	Mitochondrion	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"	OGD2	"Cre07.g343700.t1.1;g7996.t1;OGD2;OGD2;Cre07.g343700.t1.1;g7996.t1;OGD2;Cre07.g343700.t1.1;g7996.t1;Cre07.g343700.t1.1;g7996.t1;OGD2;g7996.t1;Cre07.g343700.t1.1;OGD2;g7996.t1;Cre07.g343700.t1.1;OGD2;g7996.t1;Cre07.g343700.t1.1;OGD2"	"OGD2;OGD2;OGD2;OGD2;OGD2;OGD2;OGD2"	"dihydrolipoamide succinyltransferase (EC 2.3.1.61); 2-oxoglutarate dehydrogenase, E2 component; probable mitochondrial targeting;dihydrolipoamide succinyltransferase (EC 2.3.1.61); 2-oxoglutarate dehydrogenase, E2 component; probable mitochondrial targeting;dihydrolipoamide succinyltransferase (EC 2.3.1.61); 2-oxoglutarate dehydrogenase, E2 component; probable mitochondrial targeting;dihydrolipoamide succinyltransferase (EC 2.3.1.61); 2-oxoglutarate dehydrogenase, E2 component; probable mitochondrial targeting;dihydrolipoamide succinyltransferase (EC 2.3.1.61); 2-oxoglutarate dehydrogenase, E2 component; probable mitochondrial targeting;dihydrolipoamide succinyltransferase (EC 2.3.1.61); 2-oxoglutarate dehydrogenase, E2 component; probable mitochondrial targeting;dihydrolipoamide succinyltransferase (EC 2.3.1.61); 2-oxoglutarate dehydrogenase, E2 component; probable mitochondrial targeting"
+Cre07.g331500	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast			CLPR3	"g7713.t1;g7713.t1;g7713.t1;g7713.t1;g7713.t1;g7713.t1"	"CLPR3;CLPR3;CLPR3;CLPR3;CLPR3;CLPR3"	
+Cre07.g350700							"g8159.t1;g8159.t1"	"RAA6;RAA6"	"Necessary for trans-splicing of psaA mRNA;;Necessary for trans-splicing of psaA mRNA;"
+Cre07.g336200	"GMM:29.5.11.5;GMM:29.5.11"	"protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin"		GO:0005515	"protein binding"		g7825.t1		
+Cre07.g339500			"Secretory pathway"				"g7896.t1;Cre07.g339500.t1.1"		
+Cre07.g355433			Chloroplast						
+Cre07.g353100				GO:0005525	"GTP binding"		"g8212.t1;g8212.t1;g8212.t1;g8212.t1"		
+Cre07.g325760			"Secretory pathway"			MAW10	"MAW10;g7574.t1;Cre26.g774050.t1.1;g7574.t1;Cre26.g774050.t1.1;MAW10;Cre26.g774050.t1.1;MAW10;g7574.t1;Cre26.g774050.t1.1;MAW10;g7574.t1"		"Contains a predicted C-terminal transmembrane domain.;Contains a predicted C-terminal transmembrane domain.;Contains a predicted C-terminal transmembrane domain.;Contains a predicted C-terminal transmembrane domain."
+Cre07.g319340	GMM:2.2.2.3	"major CHO metabolism.degradation.starch.glucan water dikinase"		"GO:0016310;GO:0016301;GO:0005524"	"phosphorylation;kinase activity;ATP binding"				
+Cre07.g356750				GO:0016020	membrane		"Cre07.g356750.t1.1;g8293.t1"		
+Cre07.g357950				GO:0005515	"protein binding"		"g8324.t1;Cre07.g357950.t1.1;g8324.t1;Cre07.g357950.t1.1"		
+Cre07.g322400			"Secretory pathway"				"g7449.t1;g7449.t1;g7449.t1"		
+Cre07.g345750			Mitochondrion	GO:0008080	"N-acetyltransferase activity"		"NAT20;g8045.t1"		"Related to GCN5"
+Cre07.g312650			Chloroplast				"g7234.t1;Cre07.g312650.t1.1"		
+Cre07.g344850	"GMM:33.99;GMM:27.1"	"development.unspecified;RNA.processing"		"GO:0030145;GO:0016787;GO:0003723"	"manganese ion binding;hydrolase activity;RNA binding"		"DCP2;Cre07.g344850.t1.1;g8024.t1"		"Catalytic subunit of the decapping enzyme complex, which removes the 5' cap structure from mRNAs prior to their degradation; member of the Nudix hydrolase family; homologue of S. cerevisiae Dcp2"
+Cre07.g334250	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Chloroplast	GO:0005515	"protein binding"		"g7784.t1;g7784.t1"		
+Cre07.g348600			Chloroplast	"GO:0016020;GO:0006810"	"membrane;transport"	SULP1	"SLP1;g8110.t1"	SULP1	"transmembrane component of chloroplast sulfate-transporting ABC transporter; ATP-dependent sulfate-transport system of chloroplast envelope, homologous to SulP2; [GI:18542422]"
+Cre07.g334400						EXN10	"Cre07.g334400.t1.1;EXN10;g7787.t1;Cre07.g334400.t1.1;EXN10;g7787.t1"		
+Cre07.g324000			Mitochondrion				"g7484.t1;Cre07.g324000.t1.1"	NUP160	"160 kDa Nuclear Pore Complex Protein"
+Cre07.g314000			Chloroplast				g7266.t1		
+Cre07.g344050	"GMM:33.99;GMM:29.2.2.3.4"	"development.unspecified;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins"		"GO:0032040;GO:0006364;GO:0005515"	"small-subunit processome;rRNA processing;protein binding"		"g8004.t1;g8004.t1"		
+Cre07.g353400			"Secretory pathway"				g8220.t1		
+Cre07.g353450	"GMM:2.2.1.3;GMM:16.2.1.3;GMM:11.1.8"	"major CHO metabolism.degradation.sucrose.invertases;secondary metabolism.phenylpropanoids.lignin biosynthesis.4CL;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase"		"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	ACS3	"ACS3;Cre07.g353450.t1.1;g8221.t1;ACS3;g8221.t1;Cre07.g353450.t1.1;g8221.t1;ACS3;Cre07.g353450.t1.1;g8221.t1;ACS3;Cre07.g353450.t1.1;g8221.t1;Cre07.g353450.t1.1;ACS3;Cre07.g353450.t1.1;ACS3;g8221.t1"	"ACS3;ACS3;ACS3;ACS3;ACS3;ACS3"	"Acetyl-CoA synthetase (EC 6.2.1.1); Acetate-CoA ligase; probable mitochondrial protein based on mass spectrometry identification (QFYTAPTLLR + SLLQLGDAWPR), although organelle targeting predicted as other by Target-P and iPSORT;Acetyl-CoA synthetase (EC 6.2.1.1); Acetate-CoA ligase; probable mitochondrial protein based on mass spectrometry identification (QFYTAPTLLR + SLLQLGDAWPR), although organelle targeting predicted as other by Target-P and iPSORT;Acetyl-CoA synthetase (EC 6.2.1.1); Acetate-CoA ligase; probable mitochondrial protein based on mass spectrometry identification (QFYTAPTLLR + SLLQLGDAWPR), although organelle targeting predicted as other by Target-P and iPSORT;Acetyl-CoA synthetase (EC 6.2.1.1); Acetate-CoA ligase; probable mitochondrial protein based on mass spectrometry identification (QFYTAPTLLR + SLLQLGDAWPR), although organelle targeting predicted as other by Target-P and iPSORT;Acetyl-CoA synthetase (EC 6.2.1.1); Acetate-CoA ligase; probable mitochondrial protein based on mass spectrometry identification (QFYTAPTLLR + SLLQLGDAWPR), although organelle targeting predicted as other by Target-P and iPSORT;Acetyl-CoA synthetase (EC 6.2.1.1); Acetate-CoA ligase; probable mitochondrial protein based on mass spectrometry identification (QFYTAPTLLR + SLLQLGDAWPR), although organelle targeting predicted as other by Target-P and iPSORT"
+Cre07.g325716	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006310;GO:0006281;GO:0005524;GO:0003910;GO:0003677"	"DNA recombination;DNA repair;ATP binding;DNA ligase (ATP) activity;DNA binding"	DNL1	"DIV146;DNL1;g7530.t1;Cre26.g772150.t1.1;g7530.t1;Cre26.g772150.t1.1;DIV146;DNL1;DNL1;DIV146;Cre26.g772150.t1.1;g7530.t1"	"LIG1;LIG1;LIG1"	"ATP-dependent DNA ligase; most similar to Arabidopsis LIG1 (AT1G08130); ts-lethal mutant was isolated (PMID 29743196);ATP-dependent DNA ligase; most similar to Arabidopsis LIG1 (AT1G08130); ts-lethal mutant was isolated (PMID 29743196);ATP-dependent DNA ligase; most similar to Arabidopsis LIG1 (AT1G08130); ts-lethal mutant was isolated (PMID 29743196)"
+Cre07.g357200	"GMM:3.5;GMM:10.1.4"	"minor CHO metabolism.others;cell wall.precursor synthesis.UGD"		"GO:0055114;GO:0051287;GO:0016616;GO:0003979"	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;UDP-glucose 6-dehydrogenase activity"	UGD1	"Cre07.g357200.t1.1;g8306.t1;UGD1;EZY12"	UGD1	"Protein belonging to the UDP-glucose/GDP-mannose dehydrogenase family; found in the flagellar proteome [PMID: 15998802]"
+Cre07.g339700	"GMM:34.16;GMM:29.8"	"transport.ABC transporters and multidrug resistance systems;protein.assembly and cofactor ligation"	Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"	SUFC	"Cre07.g339700.t1.1;SUFC;SUF3;g7901.t1"	SUFC1	"predicted ABC transporter activity; possibly localized to plastids"
+Cre07.g341350							"TRP11;Cre07.g341350.t1.1;g7964.t1"	TRP11	"Putative transient receptor potential (TRP) channel. Homology to mammalian TRPV channels."
+Cre07.g342050	GMM:31.4	"cell.vesicle transport"				VTI3	"VTI3;g7945.t1;NPSN1;Cre07.g342050.t1.1;NPSN1;g7945.t1;VTI3;Cre07.g342050.t1.1"	"VTI3;VTI3"	"Expressed Protein. Similar to NPSN Qb-SNAREs, involved in Endosomal/Cell Plate trafficking.;Expressed Protein. Similar to NPSN Qb-SNAREs, involved in Endosomal/Cell Plate trafficking."
+Cre07.g330000	GMM:17.4.2	"hormone metabolism.cytokinin.signal transduction"	Mitochondrion				g7680.t1		
+Cre07.g356316			Mitochondrion						
+Cre07.g343650	GMM:3.3	"minor CHO metabolism.sugar alcohols"					"g7995.t1;g7995.t1;g7995.t1"		
+Cre07.g312580									
+Cre07.g313400			Mitochondrion				"g7254.t2;g7254.t2;g7254.t2"		
+Cre07.g315750	"GMM:26.8;GMM:16.4.1;GMM:11.1.4;GMM:1.1.99.1"	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;secondary metabolism.N misc.alkaloid-like;lipid metabolism.FA synthesis and FA elongation.ACP oxoacyl reductase;PS.lightreaction.unspecified.TEF"	Chloroplast			TEF16	"g7305.t1;Cre07.g315750.t1.1"		
+Cre07.g325200			"Secretory pathway"				"Cre07.g325200.t1.1;g7512.t1"		
+Cre07.g349100	GMM:27.1.2	"RNA.processing.RNA helicase"	"Secretory pathway"	GO:0004386	"helicase activity"	HEL39	"HEL39;g8120.t1;HEL39;g8120.t1;g8120.t1;HEL39;g8120.t1;HEL39;g8120.t1;HEL39;g8120.t1;HEL39;g8120.t1;HEL39;g8120.t1;HEL39;g8120.t1;HEL39"		
+Cre07.g325752			Mitochondrion				"FAP258;Cre26.g773700.t1.1;g7566.t1"		"Initially annotated as FAP258, Flagellar Associated Protein, found in the flagellar proteome, but gene model was later split"
+Cre07.g343101							"g7981.t1;Cre07.g343100.t1.2;Cre07.g343100.t1.2;g7981.t1"		
+Cre07.g318200				GO:0005515	"protein binding"	CGLD34	g7354.t1	CGLD34	"Conserved in the Green Lineage and Diatoms"
+Cre07.g326550			Mitochondrion				"g7593.t1;g7593.t1;g7593.t1;g7593.t1;g7593.t1;g7593.t1"		
+Cre07.g354200	"GMM:4.2.8;GMM:4.1.8;GMM:1.3.4"	"glycolysis.plastid branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH);glycolysis.cytosolic branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH);PS.calvin cycle.GAP"		"GO:0055114;GO:0016620"	"oxidation-reduction process;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor"	GAP2	"Cre07.g354200.t1.1;g8240.t1"	GAP2	"Glycolytic enzyme; Has function in arsenic detoxification, along with Cre07.g354150 (an ArsJ homolog); null-allele mutant was isolated (PMID 29743196)"
+Cre07.g329150	"GMM:27.1.2;GMM:27.1"	"RNA.processing.RNA helicase;RNA.processing"	"Secretory pathway"	"GO:0005524;GO:0004386;GO:0003676"	"ATP binding;helicase activity;nucleic acid binding"		"g7654.t1;Cre07.g329150.t1.1;SPL21;SPLH1;Cre07.g329150.t1.1;g7654.t1;SPLH1;SPL21"		"DEAH-box ATPase, putative RNA helicase, homologue of S. cerevisiae mRNA splicing helicases Prp2, Prp16, Prp22 and Prp43 which are required at different steps of the spliceosome cycle; gene appears split, possibly a pseudogene;DEAH-box ATPase, putative RNA helicase, homologue of S. cerevisiae mRNA splicing helicases Prp2, Prp16, Prp22 and Prp43 which are required at different steps of the spliceosome cycle; gene appears split, possibly a pseudogene"
+Cre07.g329861			Mitochondrion				"Cre07.g329861.t1.1;g7676.t1;Cre07.g329861.t1.1;g7676.t1;Cre07.g329861.t1.1;g7676.t1;g7676.t1;Cre07.g329861.t1.1;Cre07.g329861.t1.1;g7676.t1;g7676.t1;Cre07.g329861.t1.1"		
+Cre07.g332066			Mitochondrion						
+Cre07.g319950			Chloroplast				"g7399.t1;Cre07.g319950.t1.1"		
+Cre07.g345200							"g8033.t1;g8033.t1"		
+Cre07.g325710			Chloroplast						
+Cre07.g330550			Mitochondrion				"g7692.t1;Cre07.g330550.t1.1"		
+Cre07.g350550				"GO:0006281;GO:0004518"	"DNA repair;nuclease activity"		"EEP6;g8155.t1;g8155.t1;EEP6"		"Endonuclease/exonuclease/phosphatase family protein; null-allele mutant was isolated (PMID 29743196);Endonuclease/exonuclease/phosphatase family protein; null-allele mutant was isolated (PMID 29743196)"
+Cre07.g349300	"GMM:28.1;GMM:27.1.2"	"DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"	Mitochondrion	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL41	"g8127.t1;Cre07.g349300.t1.1;HEL41"		
+Cre07.g337800	GMM:29.2.1	"protein.synthesis.ribosomal protein"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPS17	"g7858.t1;uS17m;Cre07.g337800.t1.1;MRPS17"	MRPS17	
+Cre07.g329050	GMM:34.3	"transport.amino acids"		"GO:0016020;GO:0015171;GO:0003333"	"membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport"	AOC5	"g7651.t1;AOC5;NCD7;Cre07.g329050.t1.1;Cre07.g329050.t1.1;NCD7;AOC5;g7651.t1"	"AOC5;AOC5"	"Related to human SLC7A family of solute carriers, involved in cationic amino acid transport (arginine, lysine, ornithine); this is probably the gene mutated in the L-canavanine resistant mutant can1, which is closely linked to pf17 on Chromosome_07; siRNA silencing of this gene leads to canavanin resistance;Related to human SLC7A family of solute carriers, involved in cationic amino acid transport (arginine, lysine, ornithine); this is probably the gene mutated in the L-canavanine resistant mutant can1, which is closely linked to pf17 on Chromosome_07; siRNA silencing of this gene leads to canavanin resistance"
+Cre07.g355600	GMM:21.1	redox.thioredoxin		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	NTR3	"g8269.t1;g8269.t1"	"NTR3;NTR3"	"Similar to AtNTRA and AtNTRB targeted to cytosol and mitochondria in Arabidopsis due to alternative initiation of transcription. Apparently no alternative initiation of transcription for this NTR in Chlamy and no N-terminal extension for targeting to the mitochondria. Probable cytosolic localisation.;Similar to AtNTRA and AtNTRB targeted to cytosol and mitochondria in Arabidopsis due to alternative initiation of transcription. Apparently no alternative initiation of transcription for this NTR in Chlamy and no N-terminal extension for targeting to the mitochondria. Probable cytosolic localisation."
+Cre07.g325731				GO:0016021	"integral component of membrane"		"Cre26.g772850.t1.1;g7546.t1;g7546.t1;Cre26.g772850.t1.1;g7546.t1;Cre26.g772850.t1.1;Cre26.g772850.t1.1;g7546.t1;g7546.t1;Cre26.g772850.t1.1;g7546.t1;Cre26.g772850.t1.1"		
+Cre07.g332450				GO:0009228	"thiamine biosynthetic process"		"Cre07.g332450.t1.1;g7734.t1"		
+Cre07.g324211			"Secretory pathway;Chloroplast"				g7489.t2		
+Cre07.g324450							"g7495.t1;Cre07.g324450.t1.1;g7495.t1;Cre07.g324450.t1.1"		
+Cre07.g346300			"Secretory pathway"				"g8056.t1;Cre07.g346300.t1.1;g8056.t1;Cre07.g346300.t1.1"		
+Cre07.g342000	GMM:29.4	"protein.postranslational modification"		"GO:0006464;GO:0005515;GO:0004719"	"cellular protein modification process;protein binding;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity"		g7947.t1		
+Cre07.g337450			"Secretory pathway"			CGL75	"GT90F9;CGL75;GT90-9;g7851.t1;GT90-9;g7851.t1;GT90F9;CGL75"		"Erroneously identified as Conserved in the green lineage 75 (CGL75) in previous annotation versions;Erroneously identified as Conserved in the green lineage 75 (CGL75) in previous annotation versions"
+Cre07.g325751						FAP258	"g7565.t1;Cre26.g773650.t1.1;Cre26.g773650.t1.2"	FAP258	"Initially annotated as FAP258, Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802], but gene model was later split"
+Cre07.g357400							g8310.t1		
+Cre07.g322250	"GMM:18.1;GMM:18"	"Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism"		GO:0006777	"Mo-molybdopterin cofactor biosynthetic process"	CNX6	"g7445.t1;CNX6;Cre07.g322250.t1.1"	CNX6	"Molybdenum cofactor (MoCo) biosynthesis, involved in nitrogen assilmilation"
+Cre07.g346550	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g8064.t1;g8064.t1;g8064.t1;g8064.t1"		
+Cre07.g319200			Mitochondrion				"Cre07.g319200.t1.1;g7379.t1"		
+Cre07.g322600			Chloroplast						
+Cre07.g320350	"GMM:30.99;GMM:29.9;GMM:20.2.1"	"signalling.unspecified;protein.co-chaperones;stress.abiotic.heat"	Chloroplast			CDJ5	"g7408.t1;Cre07.g320350.t1.1;CDJ5"		"Contains N-terminal J-domain (pfam226) and bacterial-type Ferredoxin domain (COG1141, [4Fe4S]); in different clade than CDJ3 and CDJ4"
+Cre07.g332700	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g7739.t1;g7739.t1"		
+Cre07.g335800						TWI1	"PIH1D3;DNAAF6;Twister;TWI1;g7817.t1;PIH1D3;g7817.t1;TWI1;Twister;DNAAF6"	"TWI1;TWI1"	"Similar to cystic kidney disease gene twister; Preassembly of several dyneins is disrupted in a twi1 mutant [PMID: 33141819];Similar to cystic kidney disease gene twister; Preassembly of several dyneins is disrupted in a twi1 mutant [PMID: 33141819]"
+Cre07.g328150	"GMM:21.1.1;GMM:21.1"	"redox.thioredoxin.PDIL;redox.thioredoxin"	"Secretory pathway"	GO:0045454	"cell redox homeostasis"	PDI4	"PDI4;g7633.t1;PDI4;g7633.t1"	"PDI4;PDI4"	"Protein Disulfide Isomerase 4, P5 type. Possible ER localisation. PMID: 16143836;Protein Disulfide Isomerase 4, P5 type. Possible ER localisation. PMID: 16143836"
+Cre07.g337000	GMM:27.3.99	"RNA.regulation of transcription.unclassified"				CSD3	"CSD3;g7841.t1;Cre07.g337000.t1.1"		"May have isopenicillin N-epimerase activity"
+Cre07.g351000			Mitochondrion	GO:0005515	"protein binding"		"WWP1;g8168.t1;g8168.t1;WWP1"		"contains two WW repeats, involved in binding Pro-rich proteins or phosphoproteins, and four FF domains, also involved in protein binding;contains two WW repeats, involved in binding Pro-rich proteins or phosphoproteins, and four FF domains, also involved in protein binding"
+Cre07.g320500			"Secretory pathway"			OPR29	"g7411.t1;Cre07.g320500.t1.1;g7411.t1;Cre07.g320500.t1.1"	"OPR29;OPR29"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre07.g327550			Chloroplast				"g7619.t1;Cre07.g327550.t1.1"		
+Cre07.g347300				GO:0003676	"nucleic acid binding"		"g8082.t1;g8082.t1;g8082.t1"		
+Cre07.g355950							"g8276.t1;Cre07.g355950.t1.1"		
+Cre07.g349650			"Secretory pathway"				"Cre07.g349650.t1.1;g8135.t1"		
+Cre07.g356850				GO:0006950	"response to stress"		"g8295.t1;g8295.t1"		
+Cre07.g319150				"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"	PTP4	"Cre07.g319150.t1.1;PTP4;g7378.t1"		
+Cre07.g348010			Chloroplast						
+Cre07.g322950	GMM:20.2.5	stress.abiotic.light	Chloroplast	"GO:0008152;GO:0006741;GO:0003951"	"metabolic process;NADP biosynthetic process;NAD+ kinase activity"	NADK1	"NDK1;g7461.t1;NADK1;Cre07.g322950.t1.1;NDK1;Cre07.g322950.t1.1;NADK1;g7461.t1;NDK1;g7461.t1;NADK1;Cre07.g322950.t1.1;Cre07.g322950.t1.1;NADK1;g7461.t1;NDK1"	"NADK1;NADK1;NADK1;NADK1"	"NAD kinase (ATP:NAD 2'-phosphotransferase, EC 2.7.1.23), an enzyme found in both prokaryotes and eukaryotes, generates the important pyridine nucleotide NADP from substrates ATP and NAD; similar to Arabidopsis NADK, the Chlamydomonas enzyme lacks the N-terminal domain found in the NADK2 isoform, including its calmodulin-binding site; probably chloroplast-located; null-allele mutant was isolated (PMID 29743196);NAD kinase (ATP:NAD 2'-phosphotransferase, EC 2.7.1.23), an enzyme found in both prokaryotes and eukaryotes, generates the important pyridine nucleotide NADP from substrates ATP and NAD; similar to Arabidopsis NADK, the Chlamydomonas enzyme lacks the N-terminal domain found in the NADK2 isoform, including its calmodulin-binding site; probably chloroplast-located; null-allele mutant was isolated (PMID 29743196);NAD kinase (ATP:NAD 2'-phosphotransferase, EC 2.7.1.23), an enzyme found in both prokaryotes and eukaryotes, generates the important pyridine nucleotide NADP from substrates ATP and NAD; similar to Arabidopsis NADK, the Chlamydomonas enzyme lacks the N-terminal domain found in the NADK2 isoform, including its calmodulin-binding site; probably chloroplast-located; null-allele mutant was isolated (PMID 29743196);NAD kinase (ATP:NAD 2'-phosphotransferase, EC 2.7.1.23), an enzyme found in both prokaryotes and eukaryotes, generates the important pyridine nucleotide NADP from substrates ATP and NAD; similar to Arabidopsis NADK, the Chlamydomonas enzyme lacks the N-terminal domain found in the NADK2 isoform, including its calmodulin-binding site; probably chloroplast-located; null-allele mutant was isolated (PMID 29743196)"
+Cre07.g317601			Chloroplast				g7343.t1		
+Cre07.g325736	GMM:31.1	cell.organisation	Chloroplast				"g7551.t1;Cre26.g773100.t1.2;Cre26.g773100.t1.1;g7551.t1;Cre26.g773100.t1.2;Cre26.g773100.t1.1"		
+Cre07.g342550	"GMM:28.1;GMM:26.6;GMM:13.1.3.4.12"	"DNA.synthesis/chromatin structure;misc.O-methyl transferases;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase"	Mitochondrion	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	smm28	"g7934.t1;SMM28"		
+Cre07.g351050				"GO:0015031;GO:0006464"	"protein transport;cellular protein modification process"	VPS23	"VPS23;g8169.t1;Cre07.g351050.t1.1;Cre07.g351050.t1.1;g8169.t1;VPS23"	"VPS23;VPS23"	"Expressed Protein. Similar to VPS23/Tsg101, Tsg101/UBCc-like-domain protein, component of the ESCRT-I complex involved in the ubiquitin-mediated internalization into the multi-vesicular body (late endosome);Expressed Protein. Similar to VPS23/Tsg101, Tsg101/UBCc-like-domain protein, component of the ESCRT-I complex involved in the ubiquitin-mediated internalization into the multi-vesicular body (late endosome)"
+Cre07.g346650							"g8066.t1;g8066.t1"		
+Cre07.g316400	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"				"g7315.t1;g7315.t1"		
+Cre07.g319500	GMM:15.2	"metal handling.binding, chelation and storage"	Mitochondrion	"GO:0046938;GO:0046872;GO:0016756;GO:0010038"	"phytochelatin biosynthetic process;metal ion binding;glutathione gamma-glutamylcysteinyltransferase activity;response to metal ion"		g7390.t1		
+Cre07.g325550	GMM:11.3.5	"lipid metabolism.phospholipid synthesis.diacylglycerol kinase"		"GO:0016301;GO:0007205;GO:0004143"	"kinase activity;protein kinase C-activating G-protein coupled receptor signaling pathway;diacylglycerol kinase activity"	KDG3	"KDG3;g7519.t1;g7519.t1;KDG3"		"protein kinase C activation;protein kinase C activation"
+Cre07.g314866	"GMM:26.3;GMM:10.6.2"	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Mitochondrion			EBM4	"EBM4;g7285.t1"		
+Cre07.g335700			Chloroplast				"g7815.t1;Cre07.g335700.t1.1"		
+Cre07.g314351	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"		"g7273.t1;g7273.t1"		
+Cre07.g336450			Chloroplast				"Cre07.g336450.t1.1;g7830.t1"		
+Cre07.g324550	"GMM:25;GMM:13.1.5.1.1"	"C1-metabolism;amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase"	Chloroplast	"GO:0055114;GO:0051287;GO:0016616;GO:0008152;GO:0004616"	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process;phosphogluconate dehydrogenase (decarboxylating) activity"	LDH1	"g7497.t1;LDH1;HPR4;LDH;LDH;LDH1;g7497.t1;HPR4"	"LDH1;LDH1"	"Reversible NADH reduction of pyruvate to lactate; Also identified as hydroxypyruvate reductase 4 which was proposed to use NADH as a cofactor and to participate in photorespiration by acting as the chloroplastidial glyoxylate reductase in glycolate-quinone oxidoreductase system;Reversible NADH reduction of pyruvate to lactate; Also identified as hydroxypyruvate reductase 4 which was proposed to use NADH as a cofactor and to participate in photorespiration by acting as the chloroplastidial glyoxylate reductase in glycolate-quinone oxidoreductase system"
+Cre07.g339250	"GMM:27.3.67;GMM:27.1"	"RNA.regulation of transcription.putative transcription regulator;RNA.processing"					"g7891.t1;Cre07.g339250.t1.1;Cre07.g339250.t1.1;g7891.t1;Cre07.g339250.t1.1;g7891.t1"		
+Cre07.g317000							"Cre07.g317000.t1.1;g7328.t1"		
+Cre07.g330150							"g7683.t1;g7683.t1"		
+Cre07.g340350	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"	Mitochondrion			ASA1	"ASA1;P60;g7917.t1;MASAP;g7917.t1;P60;ASA1;MASAP"	"ASA1;ASA1"	"Mitochondrial ATP synthase associated protein 1; ATP synthase associated protein 1 (P60 or MASAP) (CAD29654); part of peripheral stalk involed in dimerization; unknown evolutionary origin [PMID: 11744727, PMID: 15710684];Mitochondrial ATP synthase associated protein 1; ATP synthase associated protein 1 (P60 or MASAP) (CAD29654); part of peripheral stalk involed in dimerization; unknown evolutionary origin [PMID: 11744727, PMID: 15710684]"
+Cre07.g357033			"Secretory pathway"				g8302.t1		
+Cre07.g323850	GMM:26.13	"misc.acid and other phosphatases"					"g7480.t1;Cre07.g323850.t1.1;PPP27"		"related to NLI interacting factor"
+Cre07.g314450			Chloroplast			CGL33B	"g7275.t1;SMM22;g7275.t1;SMM22;g7275.t1;SMM22"	"CGL33B;CGL33B;CGL33B"	"Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre07.g346850							"g8071.t1;Cre07.g346850.t1.1;g8071.t1;Cre07.g346850.t1.1"		
+Cre07.g321150	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383"	"intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity"	CYG15	"g7424.t1;CYG15;g7424.t1;CYG15"		"contains N-terminal NO-sensing and dimerization domains; C terminal domain similar to guanylate cyclase 1 from Homo sapiens;contains N-terminal NO-sensing and dimerization domains; C terminal domain similar to guanylate cyclase 1 from Homo sapiens"
+Cre07.g332350									
+Cre07.g341550	"GMM:29.6.2.6;GMM:29.6"	"protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding"				P23	"Cre07.g341550.t1.1;g7957.t1;P23"	CCPP23	"Co-chaperone of cytosolic HSP90; 23 kDa; Sba1 in yeast; known to inhibit HSP90 ATPase activity and to stabilize HSP90 in the closed 2 state"
+Cre07.g315900	"GMM:34.99;GMM:29.3.4"	"transport.misc;protein.targeting.secretory pathway"		"GO:0016021;GO:0006810"	"integral component of membrane;transport"		"g7307.t1;Cre07.g315900.t1.1"		"p24 protein family"
+Cre07.g345850							"g8047.t1;bL35m;Cre07.g345850.t1.1"	MRPL35	
+Cre07.g343567			"Secretory pathway"				g7992.t1		
+Cre07.g327950			"Secretory pathway"			MAW9	"g7628.t1;MAW9"		"Contains a predicted C-terminal transmembrane domain."
+Cre07.g335250									
+Cre07.g352950							g8208.t1		
+Cre07.g354500	"GMM:27.3.23;GMM:20.2.1"	"RNA.regulation of transcription.heat-shock transcription factor family (HSF);stress.abiotic.heat"		"GO:0043565;GO:0006355;GO:0005634;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding"	HSF2	"g8246.t1;HSF2;HSF2;g8246.t1;g8246.t1;HSF2;HSF2;g8246.t1"	"HSF2;HSF2;HSF2;HSF2"	"Contains canonical DNA-binding domain, but none of the other domains typical for HSFs; phylogenetically distant from HSF1;Contains canonical DNA-binding domain, but none of the other domains typical for HSFs; phylogenetically distant from HSF1;Contains canonical DNA-binding domain, but none of the other domains typical for HSFs; phylogenetically distant from HSF1;Contains canonical DNA-binding domain, but none of the other domains typical for HSFs; phylogenetically distant from HSF1"
+Cre07.g318950			Mitochondrion	GO:0005515	"protein binding"		"Cre07.g318950.t1.1;g7372.t1;Cre07.g318950.t1.1;g7372.t1;Cre07.g318950.t1.1;g7372.t1"		
+Cre07.g312250				"GO:0005524;GO:0004003;GO:0003677"	"ATP binding;ATP-dependent DNA helicase activity;DNA binding"		g7225.t1		
+Cre07.g339926			Chloroplast						
+Cre07.g334025			Chloroplast				g7780.t1		
+Cre07.g337950			Mitochondrion				"g7863.t1;Cre07.g337950.t1.1"		
+Cre07.g340300	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g7916.t1;Cre07.g340300.t1.1"		
+Cre07.g325730							"g7545.t1;Cre26.g772800.t1.1;Cre26.g772800.t1.2"		
+Cre07.g344702							"g8021.t1;g8021.t1;g8021.t1"		
+Cre07.g324222			"Secretory pathway"				g7490.t1		
+Cre07.g348550	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"		GO:0006629	"lipid metabolic process"	TGL13	"g8109.t1;TGL13;TGL13;g8109.t1;g8109.t1;TGL13;TGL13;g8109.t1;g8109.t1;TGL13"		
+Cre07.g315150	"GMM:29.8;GMM:1.1.1.3"	"protein.assembly and cofactor ligation;PS.lightreaction.photosystem II.biogenesis"	Chloroplast.Stroma.Thylakoid.Membrane	GO:0005506	"iron ion binding"	RBD1	"Cre07.g315150.t1.1;g7291.t1;Cre07.g315150.t1.1;g7291.t1"	"RBD1;RBD1"	"stromal rubredoxin domain can be reduced by FNR; participates in PSII repair;stromal rubredoxin domain can be reduced by FNR; participates in PSII repair"
+Cre07.g357450							g8311.t1		
+Cre07.g337200			Mitochondrion				"Cre07.g337200.t1.1;g7846.t1;g7846.t1;Cre07.g337200.t1.1;g7846.t1;Cre07.g337200.t1.1"		
+Cre07.g333450	GMM:11.8.3	"lipid metabolism.exotics (steroids, squalene etc).UDP-glucose:sterol glucosyltransferase"	"Secretory pathway"	"GO:0030259;GO:0016758;GO:0008152;GO:0005975"	"lipid glycosylation;transferase activity, transferring hexosyl groups;metabolic process;carbohydrate metabolic process"		"SGT1;Cre07.g333450.t1.1;g7753.t1;SGT1;Cre07.g333450.t1.1;g7753.t1"		"a glycosyl transferase;a glycosyl transferase"
+Cre07.g353230	GMM:3.5	"minor CHO metabolism.others"	Mitochondrion				"g8215.t1;Cre07.g353230.t1.1"		
+Cre07.g313164	GMM:29.5.5	"protein.degradation.serine protease"	"Secretory pathway"	"GO:0006508;GO:0004185"	"proteolysis;serine-type carboxypeptidase activity"		"Cre74.g795250.t1.1;g7248.t1;Cre74.g795250.t1.2"		
+Cre07.g325754	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g7568.t1;Cre26.g773750.t1.1;Cre26.g773750.t1.1;g7568.t1;g7568.t1;Cre26.g773750.t1.1;Cre26.g773750.t1.1;g7568.t1;Cre26.g773750.t1.1;g7568.t1;Cre26.g773750.t1.1;g7568.t1"		
+Cre07.g354450	"GMM:26.1;GMM:17.2.2;GMM:16.1.4.7"	"misc.misc2;hormone metabolism.auxin.signal transduction;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase"	Mitochondrion	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743B3	"Cre07.g354450.t1.1;g8245.t1;CYP743B1;CYP22"	CYP743B3	"cytochrome P450, unknown function, in CYP711 clan. The CYP711 clan includes CYP711A1 of Arabidopsis (MAX1). This gene product makes a carotenoid-derived branch inhibiting hormone. The CYP743 family has best BLAST hits to CYP3 family members (animal sequences). The top 100 BLAST hits were all animal sequences. The plant CYP711 clan may share a common ancestor with the animal CYP3/CYP4 clan. Belongs to a cluster of three highly similar CYP"
+Cre07.g317626									
+Cre07.g355200	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006260;GO:0005634;GO:0000808"	"DNA replication;nucleus;origin recognition complex"	ORC5	"g8260.t1;ORC5;ORC5;g8260.t1"	"ORC5;ORC5"	"Homologous to eukaryotic ORC5, DNA replication control protein;Homologous to eukaryotic ORC5, DNA replication control protein"
+Cre07.g327650							"g7621.t1;SMM25;SMM25;g7621.t1"		
+Cre07.g325743	"GMM:34.21;GMM:21.4"	"transport.calcium;redox.glutaredoxins"		"GO:0045454;GO:0015035;GO:0009055"	"cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity"	GRX3	"Cre26.g773400.t1.2;GRX3;g7558.t1;Cre26.g773400.t1.1"	GRX3	"Glutaredoxin 3, CGFS type, probably chloroplastic"
+Cre07.g333605			Chloroplast						
+Cre07.g336700			"Secretory pathway"				g7835.t1		
+Cre07.g318800	"GMM:29.6.2.1;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.small HSPs;stress.abiotic.heat"	Cytosol			HSP22A	"Cre07.g318800.t1.1;g7369.t1"	HSP22A	"small heat shock protein containing an alpha-crystallin domain, most likely cytosolic; is arranged head-to-head with HSP22B, with which HSP22A shares 70% identity"
+Cre07.g323550			Chloroplast	"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS8	"PUS8;g7474.t1;Cre07.g323550.t1.1"		"Pseudouridine synthase, mitochondrial precursor, putative"
+Cre07.g358050			"Secretory pathway"	GO:0005515	"protein binding"				
+Cre07.g344350	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	"GO:0016020;GO:0008236;GO:0006508"	"membrane;serine-type peptidase activity;proteolysis"	TPP1	"TPP1;Cre07.g344350.t1.1;g8013.t1;g8013.t1;TPP1;Cre07.g344350.t1.1;Cre07.g344350.t1.1;g8013.t1;TPP1"	"TPP1;TPP1;TPP1"	"serine peptidase (S26 family); processes thylakoid-imported proteins during translocation, removing signal peptide; homologous to bacterial type I signal peptidases;serine peptidase (S26 family); processes thylakoid-imported proteins during translocation, removing signal peptide; homologous to bacterial type I signal peptidases;serine peptidase (S26 family); processes thylakoid-imported proteins during translocation, removing signal peptide; homologous to bacterial type I signal peptidases"
+Cre07.g336350	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g7828.t1;g7828.t1"		
+Cre07.g331350							g7709.t1		
+Cre07.g341900							g7950.t1		
+Cre07.g345100			Mitochondrion						
+Cre07.g350850							"Cre07.g350850.t1.1;g8162.t1;Cre07.g350850.t1.1;g8162.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre07.g335600	"GMM:34.4;GMM:1.5.3"	"transport.nitrate;PS.carbon concentrating mechanism.algal"		"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	NAR1.4	"g7813.t1;NAR1.4;Cre07.g335600.t1.1;Cre07.g335600.t1.1;g7813.t1;NAR1.4;g7813.t1;NAR1.4;Cre07.g335600.t1.1"	"NAR1D;NAR1D;NAR1D"	"belongs to the family of formate/nitrite transporters; NCBI Accession number AY612640;belongs to the family of formate/nitrite transporters; NCBI Accession number AY612640;belongs to the family of formate/nitrite transporters; NCBI Accession number AY612640"
+Cre07.g325742							"Cre26.g773378.t1.1;Cre26.g773378.t1.2;g7557.t1"		
+Cre07.g314676									
+Cre07.g344950	GMM:1.1.2.1	"PS.lightreaction.photosystem I.LHC-I"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCA9	"Cre07.g344950.t1.1;g8026.t1;Cre07.g344950.t1.1;g8026.t1"	"LHCA9;LHCA9"	"Encodes a less abundant light-harvesting antenna protein for PS1. The sequence of this gene was deposited in Genbank (AF244524) by Merchan and Fernandez (2002). It is designated as Lhca9 in PMID: 14555480, and Lhca7 in PMID: 14652691, respectively. Green algal specific LHCI Protein that forms a clade with Lhca2 (Koziol et al. 2007);Encodes a less abundant light-harvesting antenna protein for PS1. The sequence of this gene was deposited in Genbank (AF244524) by Merchan and Fernandez (2002). It is designated as Lhca9 in PMID: 14555480, and Lhca7 in PMID: 14652691, respectively. Green algal specific LHCI Protein that forms a clade with Lhca2 (Koziol et al. 2007)"
+Cre07.g352000			"Secretory pathway"				"Cre07.g352000.t1.1;g8188.t1;g8188.t1;Cre07.g352000.t1.1"		
+Cre07.g313750			"Secretory pathway"				"g7261.t1;g7261.t1;g7261.t1;g7261.t1;g7261.t1"		
+Cre07.g353900							"Cre07.g353900.t1.1;g8233.t1;g8233.t1;Cre07.g353900.t1.1;Cre07.g353900.t1.1;g8233.t1"		
+Cre07.g318450	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"	Chloroplast	"GO:0006886;GO:0005784"	"intracellular protein transport;Sec61 translocon complex"	SEC61B	"g7362.t1;Cre07.g318450.t1.1"	SEC61B	"Expressed Protein. Similar to Sec61-beta subunit of the ER-protein translocase."
+Cre07.g340900	"GMM:13.2.3.5.1;GMM:13.2.3.5"	"amino acid metabolism.degradation.aspartate family.lysine.lysine decarboxylase;amino acid metabolism.degradation.aspartate family.lysine"	Chloroplast				"Cre07.g340900.t1.1;g7977.t1;Cre07.g340900.t1.1;g7977.t1;Cre07.g340900.t1.1;g7977.t1"		
+Cre07.g357650				"GO:0016568;GO:0005634"	"chromatin modification;nucleus"		g8317.t1		
+Cre07.g344000			Chloroplast				"g8003.t1;g8003.t1"		
+Cre07.g325759	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g7573.t1;Cre26.g774000.t1.1"		
+Cre07.g349900			Mitochondrion				g8140.t1		
+Cre07.g345524									
+Cre07.g346698			"Secretory pathway"			PHC75	"PHC75;g8068.t1"		
+Cre07.g350626			Mitochondrion						
+Cre07.g325980									
+Cre07.g336000			Mitochondrion	GO:0016787	"hydrolase activity"		g7821.t1		
+Cre07.g329350							"GT90-7;GT90F7;g7661.t1;Cre07.g329350.t1.1;GT90-7;g7661.t1;Cre07.g329350.t1.1;GT90F7"		
+Cre07.g318250	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion	GO:0005515	"protein binding"	HLM12	"g7356.t2;HLM12;HLM12;g7356.t2;g7356.t2;HLM12;g7356.t2;HLM12"		"Contains SET domain. ChromoDB SDG3415;Contains SET domain. ChromoDB SDG3415;Contains SET domain. ChromoDB SDG3415;Contains SET domain. ChromoDB SDG3415"
+Cre07.g320700	"GMM:30.1.1;GMM:23.1.2"	"signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383"	"intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity"	CYG11	"g7415.t1;CYG11;g7415.t1;CYG11"		"contains N-terminal NO-sensing and dimerization domains; C terminal domain similar to guanylate cyclase 1 from Homo sapiens;contains N-terminal NO-sensing and dimerization domains; C terminal domain similar to guanylate cyclase 1 from Homo sapiens"
+Cre07.g317100							g7330.t2	POB18	"Found in basal body proteome"
+Cre07.g327150	"GMM:29.5.11.4.3.2;GMM:27.3.57"	"protein.degradation.ubiquitin.E3.SCF.FBOX;RNA.regulation of transcription.JUMONJI family"					g7608.t1		
+Cre07.g325718	GMM:29.3.1	protein.targeting.nucleus					"g7532.t3;Cre26.g772250.t1.1;g7532.t3;Cre26.g772250.t1.1;g7532.t3;Cre26.g772250.t1.1;Cre26.g772250.t1.1;g7532.t3;Cre26.g772250.t1.1;g7532.t3"		
+Cre07.g325712	GMM:29.2.1.2.2.24	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L24"		GO:0042254	"ribosome biogenesis"		"g7526.t1;Cre26.g771950.t1.1;Cre26.g771950.t1.2"		
+Cre07.g322100	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin				UBQ5	"g7443.t1;UBQ5;g7443.t1;UBQ5"	"UBQ5;UBQ5"	"contains an N-terminal ubiquitin domain, and similarity to conserved proteins of unknown function in C-terminal region; aligns well with At4g01000 up to residue 135;contains an N-terminal ubiquitin domain, and similarity to conserved proteins of unknown function in C-terminal region; aligns well with At4g01000 up to residue 135"
+Cre07.g320200	GMM:26.16	misc.myrosinases-lectin-jacalin					"g7405.t1;g7405.t1"		
+Cre07.g338650			Mitochondrion			CSC3	"POLI1;CSC3;g7877.t1;POLH1"		"function unknown; homologs in Gonium, not Volvox"
+Cre07.g352600	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"					"g8201.t1;g8201.t1"		
+Cre07.g329300			Chloroplast	"GO:0055085;GO:0016020"	"transmembrane transport;membrane"	MSC1	"g7660.t1;Cre07.g329300.t1.1;MSC1"	MSC1	"mechanosensitive ion channel; sequence similarity with bacterial (E. coli) mechanosensitive ion channel MscS"
+Cre07.g342650	GMM:3.3	"minor CHO metabolism.sugar alcohols"	"Secretory pathway"				"g7932.t1;g7932.t1;g7932.t1;g7932.t1"		
+Cre07.g341153									
+Cre07.g349500	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"		GO:0005515	"protein binding"		"g8131.t1;g8131.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre07.g355350	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0055114	"oxidation-reduction process"		"Cre07.g355350.t1.1;g8263.t1"		
+Cre07.g325101			Mitochondrion				"g7510.t1;Cre07.g325100.t1.2"		
+Cre07.g327226							g7610.t1		
+Cre07.g332750							"g7740.t1;PSL2;PSL2;g7740.t1;PSL2;g7740.t1;g7740.t1;PSL2;g7740.t1;PSL2"		"Previously annotated as part of Signal peptide peptidase PSL2;Previously annotated as part of Signal peptide peptidase PSL2;Previously annotated as part of Signal peptide peptidase PSL2;Previously annotated as part of Signal peptide peptidase PSL2;Previously annotated as part of Signal peptide peptidase PSL2"
+Cre07.g326100			Chloroplast				"Cre07.g326100.t1.1;g7584.t1;g7584.t1;Cre07.g326100.t1.1"		
+Cre07.g341250			Chloroplast				"g7966.t1;Cre07.g341250.t1.1"		
+Cre07.g343400			Chloroplast				g7987.t1		
+Cre07.g319701			Chloroplast	"GO:0043565;GO:0008270;GO:0006355;GO:0003700"	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"Cre07.g319701.t1.1;g7394.t1;Cre07.g319701.t1.1;g7394.t1;Cre07.g319701.t1.1;g7394.t1"		
+Cre07.g330650			Chloroplast	"GO:0006355;GO:0005739;GO:0003690"	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"		"g7694.t1;Cre07.g330650.t1.1"		
+Cre07.g343789									
+Cre07.g319850	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre07.g319850.t1.1;g7397.t1;g7397.t1;Cre07.g319850.t1.1;g7397.t1;Cre07.g319850.t1.1;Cre07.g319850.t1.1;g7397.t1;Cre07.g319850.t1.1;g7397.t1;g7397.t1;Cre07.g319850.t1.1"		
+Cre07.g341552			Chloroplast						
+Cre07.g344400	GMM:13.1.5.1.1	"amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase"	Chloroplast	"GO:0055114;GO:0051287;GO:0016616;GO:0008152;GO:0004616"	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process;phosphogluconate dehydrogenase (decarboxylating) activity"		"Cre07.g344400.t1.1;g8014.t1;g8014.t1;Cre07.g344400.t1.1;Cre07.g344400.t1.1;g8014.t1"		
+Cre07.g350100	GMM:33.99	development.unspecified	Mitochondrion	GO:0006355	"regulation of transcription, DNA-templated"		"g8145.t1;g8145.t1;g8145.t1"		
+Cre07.g350950			Chloroplast				"g8166.t2;g8166.t2"		
+Cre07.g348900						DNJ19	"g8116.t1;Cre07.g348900.t1.1;DNJ19"		"DnaJ-like protein, probably cytosolic; contains N-terminal J-domain (pfam226); no homology to other proteins in protein database"
+Cre07.g354850			Mitochondrion				"g8254.t1;Cre07.g354850.t1.1"		
+Cre07.g328900	"GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	CDPK9	"g7648.t1;Cre07.g328900.t1.1;CDPK9;g7648.t1;CDPK9;Cre07.g328900.t1.1;g7648.t1;Cre07.g328900.t1.1;CDPK9;Cre07.g328900.t1.1;CDPK9;g7648.t1"	"CDPK3;CDPK3;CDPK3;CDPK3"	"Identified as CrCDPK3 in [PMID: 23936117];Identified as CrCDPK3 in [PMID: 23936117];Identified as CrCDPK3 in [PMID: 23936117];Identified as CrCDPK3 in [PMID: 23936117]"
+Cre07.g355850			Chloroplast				"g8274.t1;Cre07.g355850.t1.1"		
+Cre07.g356250	"GMM:26.10;GMM:17.3.1.1.5"	"misc.cytochrome P450;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.metabolic regulation"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP741A1	"CYP23;g8282.t1;CYP23;g8282.t1"	"CYP741A1;CYP741A1"	
+Cre07.g355500			"Secretory pathway"				g8267.t1		
+Cre07.g350450				"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"g8152.t1;g8152.t1;g8152.t1;g8152.t1"		
+Cre07.g328050			"Secretory pathway"				g7631.t1		
+Cre07.g356950			Chloroplast						
+Cre07.g349200							"g8125.t1;Cre07.g349200.t1.1"		
+Cre07.g332025			Chloroplast						
+Cre07.g345400						FAP70	"g8037.t1;Cre07.g345400.t1.1;g8037.t1;Cre07.g345400.t1.1"	"FAP70;FAP70"	"Conserved uncharacterized Flagellar Associated Protein; Found in the flagellar proteome; Has two TPR motifs;Conserved uncharacterized Flagellar Associated Protein; Found in the flagellar proteome; Has two TPR motifs"
+Cre07.g339876			Chloroplast						
+Cre07.g340000							g7910.t1		
+Cre07.g347850	GMM:28.1.3	"DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0051726;GO:0034729;GO:0031151;GO:0018024"	"regulation of cell cycle;histone H3-K79 methylation;histone methyltransferase activity (H3-K79 specific);histone-lysine N-methyltransferase activity"		g8094.t1		
+Cre07.g328500				"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS17	"ARS17;g7641.t1;g7641.t1;ARS17"	"ARS17;ARS17"	
+Cre07.g316992	"GMM:34.99;GMM:34.1;GMM:27.3.35"	"transport.misc;transport.p- and v-ATPases;RNA.regulation of transcription.bZIP transcription factor family"	"Secretory pathway;Chloroplast"	"GO:0046872;GO:0016021;GO:0015914;GO:0005524;GO:0004012;GO:0000287;GO:0000166"	"metal ion binding;integral component of membrane;phospholipid transport;ATP binding;phospholipid-translocating ATPase activity;magnesium ion binding;nucleotide binding"		"Cre07.g316992.t1.1;g7327.t3;g7327.t3;Cre07.g316992.t1.1"		
+Cre07.g347000	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g8076.t2		
+Cre07.g327450	GMM:29.9	protein.co-chaperones	Chloroplast			DNJ34	"Cre07.g327450.t1.1;g7617.t1;DNJ34;Cre07.g327450.t1.1;DNJ34;g7617.t1;g7617.t1;Cre07.g327450.t1.1;DNJ34"		"DnaJ-like protein, perhaps targeted to the chloroplast (contains N-terminal extension that is predicted by ChloroP to be chloroplast transit peptide); no homology with other proteins in protein database;DnaJ-like protein, perhaps targeted to the chloroplast (contains N-terminal extension that is predicted by ChloroP to be chloroplast transit peptide); no homology with other proteins in protein database;DnaJ-like protein, perhaps targeted to the chloroplast (contains N-terminal extension that is predicted by ChloroP to be chloroplast transit peptide); no homology with other proteins in protein database"
+Cre07.g342352				"GO:0006351;GO:0003899;GO:0003677"	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"		g7940.t1		
+Cre07.g314100	GMM:29.2.1.2.2.99	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.unknown"					"g7268.t1;Cre07.g314100.t1.1"		
+Cre07.g348300			"Secretory pathway"						
+Cre07.g347800							"SMM29;Cre07.g347800.t1.1;g8093.t1"		
+Cre07.g320600			Mitochondrion				"g7413.t1;Cre07.g320600.t1.1;Cre07.g320600.t1.1;g7413.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre07.g356980			Chloroplast						
+Cre07.g351400				"GO:0006260;GO:0005634"	"DNA replication;nucleus"	MCM10	"g8175.t1;Cre07.g351400.t1.1;Cre07.g351400.t1.1;g8175.t1"	"MCM10;MCM10"	
+Cre07.g329217									
+Cre07.g316000	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion	"GO:0006810;GO:0005622"	"transport;intracellular"		"g7309.t1;Cre07.g316000.t1.1"		
+Cre07.g337582							g7853.t1		
+Cre07.g326700							"g7598.t1;g7598.t1;g7598.t1;g7598.t1"		
+Cre07.g350350						FAP217	"g8150.t1;Cre07.g350350.t1.1"	FAP217	"Flagellar Associated Coiled-Coil Protein, found in the flagellar proteome"
+Cre07.g339050	"GMM:31.1.1.1.2;GMM:31.1"	"cell.organisation.cytoskeleton.actin.actin depolymerizing factors;cell.organisation"		"GO:0030042;GO:0015629;GO:0005622;GO:0003779"	"actin filament depolymerization;actin cytoskeleton;intracellular;actin binding"	NSG11	"NSG11;g7886.t1;Cre07.g339050.t1.1;g7886.t1;NSG11;Cre07.g339050.t1.1"	"NSG11;NSG11"	"Identified by Abe et al. 24 [PMID: 15459796] as NSG11, a gene expressed during nitrogen-starved gametogenesis.;Identified by Abe et al. 24 [PMID: 15459796] as NSG11, a gene expressed during nitrogen-starved gametogenesis."
+Cre07.g313500							"Cre07.g313500.t1.1;g7256.t1"	NUP214	"Nuclear Pore Complex Protein 214"
+Cre07.g325450							"g7517.t1;g7517.t1;g7517.t1;g7517.t1"		
+Cre07.g326450	GMM:17.2.2	"hormone metabolism.auxin.signal transduction"		GO:0035091	"phosphatidylinositol binding"	VPS5B	"VPS5B;g7591.t1"	VPS5B	"Hypothetical Conserved Protein. Similar to VPS5/SNX1, component of Retromer Coat complex involved in endosomal to Golgi trafficking."
+Cre07.g331600			"Secretory pathway"				"g7715.t1;Cre07.g331600.t1.1;g7715.t1;Cre07.g331600.t1.1"		
+Cre07.g324800	"GMM:26.11.1;GMM:26.11;GMM:16.8.3.1;GMM:16.8.3"	"misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols.dihydroflavonol 4-reductase;secondary metabolism.flavonoids.dihydroflavonols"		"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"	SNE6	"g7502.t1;Cre07.g324800.t1.1;SNE6"		"Cinnamoyl-CoA reductase/flavanone 4-reductase, a NAD-dependent epimerase/dehydratase. Related to Dihydrokaempferol 4-reductase (DFR); related to plant haem peroxidase that are aldehyde oxidases, flavonol/cinnamyl alcohol reductases"
+Cre07.g319001			Mitochondrion				"g7375.t1;Cre07.g319001.t1.1"		
+Cre07.g325950	GMM:18.8	"Co-factor and vitamine metabolism.ubiquinone"				ZSP1	"Cre07.g325950.t1.1;g7580.t1"	ZSP1	"ZSP1 ORF is found in the 3'UTR, encoding hydroxyproline-rich glycoprotein with GPI-anchor signal"
+Cre07.g332600	GMM:29.5	protein.degradation	Mitochondrion				"g7737.t1;g7737.t1"		
+Cre07.g315250						CSG5	"g7293.t1;Cre07.g315250.t1.1;CSG5"		"Belongs to family G of Chlamydomonadales-specific proteins, all on chromosome 7; no known function"
+Cre07.g333100			"Secretory pathway"				g7748.t2		
+Cre07.g339400				GO:0055114	"oxidation-reduction process"		g7894.t1		
+Cre07.g320250							"g7406.t1;g7406.t1;g7406.t1"		
+Cre07.g328300			"Secretory pathway"				"g7637.t1;Cre07.g328300.t1.1"		
+Cre07.g326250			"Secretory pathway"				g7587.t1		
+Cre07.g331200			Mitochondrion				g7706.t1		
+Cre07.g335400	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"EttA;g7809.t1;EttA;g7809.t1"		
+Cre07.g325600	GMM:21.4	redox.glutaredoxins	Mitochondrion	"GO:0045454;GO:0015035;GO:0009055"	"cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity"	GRX5	g7520.t1	GRX5	"Glutaredoxin 5, CGFS type, probably mitochondrial"
+Cre07.g337914			Mitochondrion				"g7861.t1;Cre07.g337914.t1.1"		
+Cre07.g332275	GMM:27.3.6	"RNA.regulation of transcription.basic helix-loop-helix family (bHLH)"					g7730.t1		
+Cre07.g337676			Mitochondrion						
+Cre07.g355650	GMM:34.5	transport.ammonium		"GO:0072488;GO:0016020;GO:0015696;GO:0008519"	"ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity"	AMT6	"AMT6;g8270.t1"	AMT1F	"belongs to AMT1 family, related to Rhesus proteins; (Amt1:6 or Amt1.6)"
+Cre07.g317250	"GMM:20.1;GMM:2.1"	"stress.biotic;major CHO metabolism.synthesis"	"Secretory pathway"	"GO:0019028;GO:0008061;GO:0006030;GO:0005975;GO:0005576;GO:0004553"	"viral capsid;chitin binding;chitin metabolic process;carbohydrate metabolic process;extracellular region;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI5	"g7333.t1;CHI5;g7333.t1;CHI5"		
+Cre07.g332786	"GMM:29.5.4;GMM:29.5"	"protein.degradation.aspartate protease;protein.degradation"	"Secretory pathway"	"GO:0016021;GO:0004190"	"integral component of membrane;aspartic-type endopeptidase activity"	PSL2	"g7741.t1;Cre07.g332786.t1.1"	PSL2	"contains YD and GxGD motifs typical of typical of A22 family aspartic proteases, presenilins/signal peptide peptidases; belongs to SPP type, cleaving only type II transmembrane helices (C-terminus towards cytosol); probably involved in clearance of signal peptides and in signaling; contains a signal peptide and a lumenal N-terminal domain; presence of a C-terminal KKxx motif, predicted to face the cytosol, explains retention in the ER"
+Cre07.g324300			"Secretory pathway"				"Cre07.g324300.t1.1;g7492.t1"		
+Cre07.g328226							g7635.t1		
+Cre07.g329800			Mitochondrion			HSFL	"Cre07.g329800.t1.1;g7674.t1;HSFL"		
+Cre07.g336800									
+Cre07.g331962			Chloroplast				"Cre07.g331950.t1.2;g7722.t1"		
+Cre07.g345550			Chloroplast				"g8041.t1;Cre07.g345550.t1.1;g8041.t1;Cre07.g345550.t1.1;Cre07.g345550.t1.1;g8041.t1;Cre07.g345550.t1.1;g8041.t1"		
+Cre07.g322376			Chloroplast						
+Cre07.g328550	"GMM:29.3.4.3;GMM:14.1"	"protein.targeting.secretory pathway.vacuole;S-assimilation.APS"				VPS18	"VPS18;g7642.t1;g7642.t1;VPS18;VPS18;g7642.t1"	"VPS18;VPS18;VPS18"	"Similar to VPS18/dor, a component of the VPS-C complex required for vacuolar targeting;Similar to VPS18/dor, a component of the VPS-C complex required for vacuolar targeting;Similar to VPS18/dor, a component of the VPS-C complex required for vacuolar targeting"
+Cre07.g316850	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0006260;GO:0005524;GO:0003677"	"DNA replication;ATP binding;DNA binding"	MCM4	"Cre07.g316850.t1.1;g7325.t1;g7325.t1;Cre07.g316850.t1.1;Cre07.g316850.t1.1;g7325.t1;Cre07.g316850.t1.1;g7325.t1"	"MCM4;MCM4;MCM4;MCM4"	"Homologous to MCM4/CDC21 DNA replication protein;Homologous to MCM4/CDC21 DNA replication protein;Homologous to MCM4/CDC21 DNA replication protein;Homologous to MCM4/CDC21 DNA replication protein"
+Cre07.g323500							g7473.t1		
+Cre07.g354075			Chloroplast						
+Cre07.g340750						EXN11	"Cre07.g340750.t1.1;g7924.t1;EXN11;EXN11;g7924.t1;Cre07.g340750.t1.1"		"Exonuclease, ribonuclease H fold;Exonuclease, ribonuclease H fold"
+Cre07.g336550			Chloroplast				g7832.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre07.g330450	GMM:29.2.1.1.1.2.24	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L24"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPL24	"Cre07.g330450.t1.1;g7690.t1;uL24m;uL24m;Cre07.g330450.t1.1;g7690.t1"	"MRPL24;MRPL24"	
+Cre07.g338250	"GMM:29.1.40;GMM:29.1.15"	"protein.aa activation.bifunctional aminoacyl-tRNA synthetase;protein.aa activation.proline-tRNA ligase"	"Secretory pathway"	GO:0002161	"aminoacyl-tRNA editing activity"		g7869.t1		
+Cre07.g330800			Mitochondrion			OPR30	"Cre07.g330800.t1.1;g7697.t1"	OPR30	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre07.g324650							"g7499.t1;Cre07.g324650.t1.1"		
+Cre07.g322750							"Cre07.g322750.t1.1;g7456.t1;CSA3"		"four close paralogs in C. reinhardtii, more distant homologs in Tetrabaena and Gonium"
+Cre07.g315500							g7300.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre07.g354700			Chloroplast			CSC4	"CSC4;g8251.t1"		"function unknown; homologs in Gonium, not Volvox"
+Cre07.g351500							"g8177.t1;g8177.t1;g8177.t1"		
+Cre07.g350050			"Secretory pathway"				g8144.t1		
+Cre07.g337850	GMM:34.99	transport.misc		"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"		"g7859.t1;g7859.t1"		
+Cre07.g318300							"g7358.t1;g7358.t1;g7358.t1;g7358.t1;g7358.t1;g7358.t1"		
+Cre07.g330700				GO:0005515	"protein binding"	FAP91	"g7695.t1;Cre07.g330700.t1.1;Cam-IP2;Cam-IP2;Cre07.g330700.t1.1;g7695.t1;g7695.t1;Cre07.g330700.t1.1;Cam-IP2"	"FAP91;FAP91;FAP91"	"Flagellar Associated Protein similar to sperm protein kinase associated protein AAT1. Found in the flagellar proteome, upregulated by deflagellation [PMID: 15998802]; identified in the flagellar and basal body proteome as FBB8 [PMID: 15137946]; Associated with the CaM- and spoke-Associated CSC complex at the base of the radial spoke;Flagellar Associated Protein similar to sperm protein kinase associated protein AAT1. Found in the flagellar proteome, upregulated by deflagellation [PMID: 15998802]; identified in the flagellar and basal body proteome as FBB8 [PMID: 15137946]; Associated with the CaM- and spoke-Associated CSC complex at the base of the radial spoke;Flagellar Associated Protein similar to sperm protein kinase associated protein AAT1. Found in the flagellar proteome, upregulated by deflagellation [PMID: 15998802]; identified in the flagellar and basal body proteome as FBB8 [PMID: 15137946]; Associated with the CaM- and spoke-Associated CSC complex at the base of the radial spoke"
+Cre07.g345001			Chloroplast				"g8028.t1;Cre07.g345001.t1.1;Cre07.g345001.t1.1;g8028.t1"		
+Cre07.g353150				GO:0005525	"GTP binding"		"Cre07.g353150.t1.1;g8213.t1;g8213.t1;Cre07.g353150.t1.1;g8213.t1;Cre07.g353150.t1.1;g8213.t1;Cre07.g353150.t1.1"		
+Cre07.g325720			Chloroplast	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g7534.t1;Cre26.g772350.t1.1;Cre26.g772350.t1.1;g7534.t1"		
+Cre07.g325715	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Mitochondrion				"Cre26.g772100.t1.1;g7529.t1"		
+Cre07.g329000	GMM:1.1.1.3	"PS.lightreaction.photosystem II.biogenesis"	Chloroplast.Stroma.Thylakoid.Membrane			CPLD47	"Cre07.g329000.t1.1;g7650.t1;CPLD47"	PAM68	"conserved expressed chloroplastic membrane protein; homolog of PAM68 and PAM68L, proteins with DUF3464 domain involved respectively in early D1 stabilization and assembly of the NAD(P)H dehydrogenase-like complex"
+Cre07.g353950	"GMM:28.2;GMM:28.1"	"DNA.repair;DNA.synthesis/chromatin structure"		"GO:0006281;GO:0004518"	"DNA repair;nuclease activity"		"XPG5;g8234.t1;g8234.t1;XPG5;XPG5;g8234.t1;XPG5;g8234.t1"	"XPG5;XPG5;XPG5;XPG5"	"Putative DNA repair/5'-3' exonuclease, resembling the Xeroderma pignmentosum group G protein, XPGC, and Rad2 yeast homolog May exhibit ATP-citrate lyase/succinyl-CoA ligase activity;Putative DNA repair/5'-3' exonuclease, resembling the Xeroderma pignmentosum group G protein, XPGC, and Rad2 yeast homolog May exhibit ATP-citrate lyase/succinyl-CoA ligase activity;Putative DNA repair/5'-3' exonuclease, resembling the Xeroderma pignmentosum group G protein, XPGC, and Rad2 yeast homolog May exhibit ATP-citrate lyase/succinyl-CoA ligase activity;Putative DNA repair/5'-3' exonuclease, resembling the Xeroderma pignmentosum group G protein, XPGC, and Rad2 yeast homolog May exhibit ATP-citrate lyase/succinyl-CoA ligase activity"
+Cre07.g313850	"GMM:33.99;GMM:3.5"	"development.unspecified;minor CHO metabolism.others"		GO:0005515	"protein binding"		"g7263.t1;g7263.t1"		
+Cre07.g356900			"Secretory pathway"				"g8296.t1;Cre07.g356900.t1.1"		
+Cre07.g354350	"GMM:26.1;GMM:16.1.4.7"	"misc.misc2;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase"		"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743B1	"g8243.t1;CYP20"	CYP743B1	"cytochrome P450, unknown function, in CYP711 clan. The CYP711 clan includes CYP711A1 of Arabidopsis (MAX1). This gene product makes a carotenoid-derived branch inhibiting hormone. The CYP743 family has best BLAST hits to CYP3 family members (animal sequences). The top 100 BLAST hits were all animal sequences. The plant CYP711 clan may share a common ancestor with the animal CYP3/CYP4 clan. Belongs to a cluster of three highly similar CYP"
+Cre07.g319002			"Secretory pathway"				g7374.t1		
+Cre07.g331401			Chloroplast						
+Cre07.g323200							"Cre07.g323200.t1.1;g7466.t1;g7466.t1;Cre07.g323200.t1.1;g7466.t1;Cre07.g323200.t1.1"		
+Cre07.g342150	GMM:19.2	"tetrapyrrole synthesis.glu-tRNA reductase"	Chloroplast	"GO:0055114;GO:0050661;GO:0033014;GO:0008883"	"oxidation-reduction process;NADP binding;tetrapyrrole biosynthetic process;glutamyl-tRNA reductase activity"	HEMA1	"g7943.t1;HEM1;GTR;Cre07.g342150.t1.1;HEMA;GluTR;HEM1;g7943.t1;HEMA;GTR;GluTR;Cre07.g342150.t1.1;GluTR;GTR;HEM1;g7943.t1;HEMA;Cre07.g342150.t1.1"	"GLTR1;GLTR1;GLTR1"	"Glutamyl-tRNA reductase precursor (GluTR) (HEMA) (HMA) [AAG41962]; predicted chloroplast targeting sequence amino acids 1-42 by ChloroP; Interacts with petF and [PMID: 28938113]; Orthologous to HEMA1 (AT1G58290) in Arabidopsis thaliana;Glutamyl-tRNA reductase precursor (GluTR) (HEMA) (HMA) [AAG41962]; predicted chloroplast targeting sequence amino acids 1-42 by ChloroP; Interacts with petF and [PMID: 28938113]; Orthologous to HEMA1 (AT1G58290) in Arabidopsis thaliana;Glutamyl-tRNA reductase precursor (GluTR) (HEMA) (HMA) [AAG41962]; predicted chloroplast targeting sequence amino acids 1-42 by ChloroP; Interacts with petF and [PMID: 28938113]; Orthologous to HEMA1 (AT1G58290) in Arabidopsis thaliana"
+Cre07.g340650			"Secretory pathway"			CGL149	"g7922.t1;Cre07.g340650.t1.1;Cre07.g340650.t1.1;g7922.t1"	"CGL149;CGL149"	
+Cre07.g326950	"GMM:29.1.10;GMM:29.1;GMM:27.4"	"protein.aa activation.methionine-tRNA ligase;protein.aa activation;RNA.RNA binding"		GO:0000049	"tRNA binding"		g7603.t1		
+Cre07.g350451	GMM:33.99	development.unspecified		GO:0005515	"protein binding"		"Cre07.g350451.t1.1;g8153.t1"		
+Cre07.g323900	GMM:26.13	"misc.acid and other phosphatases"					"g7482.t1;PPP28;PPP28;g7482.t1"		"related to NLI interacting factor;related to NLI interacting factor"
+Cre07.g336950	GMM:2.2.2.2	"major CHO metabolism.degradation.starch.starch phosphorylase"	Chloroplast	"GO:0008184;GO:0005975"	"glycogen phosphorylase activity;carbohydrate metabolic process"	PHO2	"PHOA;g7840.t1;PHO2;g7840.t1;PHO2;PHOA"	"PHOA2;PHOA2"	"gi 400790 sp Q00766 PHS1_DICDI GLYCOGEN PHOSPHORYLASE 1 (GP1); starch phosphorylase (EC 2.4.1.1); GenBank: ABB88569;gi 400790 sp Q00766 PHS1_DICDI GLYCOGEN PHOSPHORYLASE 1 (GP1); starch phosphorylase (EC 2.4.1.1); GenBank: ABB88569"
+Cre07.g338950							"g7884.t1;Cre07.g338950.t1.1;Cre07.g338950.t1.1;g7884.t1"		
+Cre07.g351650						FAP20	"g8180.t1;BUG22;g8180.t1;BUG22"	"FAP20;FAP20"	"Flagellar Associated Protein; found in the basal body proteome as BUG22 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 157384]; required for planar beating and may interact with tectin and PACRG. Mutant lacks beaks. Inner junction protein;Flagellar Associated Protein; found in the basal body proteome as BUG22 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 157384]; required for planar beating and may interact with tectin and PACRG. Mutant lacks beaks. Inner junction protein"
+Cre07.g313185	GMM:27.2	RNA.transcription		"GO:0006351;GO:0003899"	"transcription, DNA-templated;DNA-directed RNA polymerase activity"		"g7249.t1;Cre74.g795300.t1.1"		
+Cre07.g346933			Mitochondrion						
+Cre07.g352300	GMM:27.1	RNA.processing	Chloroplast	"GO:0008173;GO:0006396;GO:0003723"	"RNA methyltransferase activity;RNA processing;RNA binding"		"g8194.t1;Cre07.g352300.t1.1;g8194.t1;Cre07.g352300.t1.1"		
+Cre07.g352500							g8199.t1		
+Cre07.g315350	"GMM:30.5;GMM:3.5;GMM:29.5.7"	"signalling.G-proteins;minor CHO metabolism.others;protein.degradation.metalloprotease"	Chloroplast				"Cre07.g315350.t1.1;g7296.t1"		
+Cre07.g355750				GO:0005515	"protein binding"		"Cre07.g355750.t1.1;g8272.t1"		
+Cre07.g325747									
+Cre07.g330300	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g7687.t1;Cre07.g330300.t1.1;g7687.t1;Cre07.g330300.t1.1;Cre07.g330300.t1.1;g7687.t1"		
+Cre07.g320800			Mitochondrion	GO:0005634	nucleus		"g7417.t1;Cre07.g320800.t1.1;g7417.t1;Cre07.g320800.t1.1"		
+Cre07.g357800	GMM:29.8	"protein.assembly and cofactor ligation"	Chloroplast			CCDA1	"CCDA;g8320.t1;Cre07.g357800.t1.1;CCA1"	CCDA1	"Putative protein involved in Cytochrome c assembly in the chloroplast; putative thiol-disulfide interchange protein"
+Cre07.g321600			"Secretory pathway"				"g7433.t1;Cre07.g321600.t1.1;Cre07.g321600.t1.1;g7433.t1"		
+Cre07.g321400	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"	GO:0016021	"integral component of membrane"	MAW6	"MAW6;g7429.t1;MAW6;g7429.t1;MAW6;g7429.t1;g7429.t1;MAW6;g7429.t1;MAW6;MAW6;g7429.t1"	"FAP113;FAP113;FAP113;FAP113;FAP113;FAP113"	"Contains a predicted C-terminal transmembrane domain; Flagellar Associated Protein, found in the flagellar proteome, contains Myxococcus cysteine-rich repeat;Contains a predicted C-terminal transmembrane domain; Flagellar Associated Protein, found in the flagellar proteome, contains Myxococcus cysteine-rich repeat;Contains a predicted C-terminal transmembrane domain; Flagellar Associated Protein, found in the flagellar proteome, contains Myxococcus cysteine-rich repeat;Contains a predicted C-terminal transmembrane domain; Flagellar Associated Protein, found in the flagellar proteome, contains Myxococcus cysteine-rich repeat;Contains a predicted C-terminal transmembrane domain; Flagellar Associated Protein, found in the flagellar proteome, contains Myxococcus cysteine-rich repeat;Contains a predicted C-terminal transmembrane domain; Flagellar Associated Protein, found in the flagellar proteome, contains Myxococcus cysteine-rich repeat"
+Cre07.g347700				GO:0000184	"nuclear-transcribed mRNA catabolic process, nonsense-mediated decay"		g8091.t1		
+Cre07.g348650	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Chloroplast	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG65	"CYG65;g8111.t1;Cre07.g348650.t1.1;g8111.t1;Cre07.g348650.t1.1;CYG65"		
+Cre07.g313000			"Secretory pathway"	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"		g7243.t1		
+Cre07.g344800	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB33	"Cre07.g344800.t1.1;TNP21;CSB33;g8023.t1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre07.g349000	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g8118.t1		
+Cre07.g325757							"g7571.t1;Cre26.g773900.t1.2;Cre26.g773900.t1.1;Cre26.g773900.t1.1;Cre26.g773900.t1.2;g7571.t1"		
+Cre07.g341154							g7972.t1		
+Cre07.g342750				GO:0016491	"oxidoreductase activity"		"g7930.t1;g7930.t1"		
+Cre07.g334750	"GMM:29.4;GMM:26.13"	"protein.postranslational modification;misc.acid and other phosphatases"	Chloroplast	GO:0003824	"catalytic activity"		"PPP30;g7794.t1;PPP30;g7794.t1;g7794.t1;PPP30;PPP30;g7794.t1;g7794.t1;PPP30"		
+Cre07.g312701	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast				g7235.t1		
+Cre07.g314950	GMM:27.3.50	"RNA.regulation of transcription.general transcription"		"GO:0006351;GO:0003899;GO:0003677"	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPC34	"Cre07.g314950.t1.1;RPC34;g7287.t1"	RPC34	
+Cre07.g354750			Chloroplast				"Cre07.g354750.t1.1;g8252.t1"		
+Cre07.g325741	GMM:34.7	transport.phosphate		"GO:0016020;GO:0006817;GO:0005315"	"membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity"	PTB2	"PTB2;g7556.t1;Cre26.g773350.t1.1;Cre26.g773350.t1.2;Cre26.g773350.t1.2;PTB2;Cre26.g773350.t1.1;g7556.t1;PTB2;g7556.t1;Cre26.g773350.t1.1;Cre26.g773350.t1.2"	"PTB2;PTB2;PTB2"	"Gi|21218058|dbj|AB074881.1 Putative phosphate transporter, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters; clusters with PTB3 on scaffold 81. PTB2 and PTB3 are flanked by transposable element sequences, suggesting a possible means o;Gi|21218058|dbj|AB074881.1 Putative phosphate transporter, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters; clusters with PTB3 on scaffold 81. PTB2 and PTB3 are flanked by transposable element sequences, suggesting a possible means o;Gi|21218058|dbj|AB074881.1 Putative phosphate transporter, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters; clusters with PTB3 on scaffold 81. PTB2 and PTB3 are flanked by transposable element sequences, suggesting a possible means o"
+Cre07.g327900			"Secretory pathway"				"g7627.t1;g7627.t1;g7627.t1;g7627.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre07.g339950							g7909.t2		
+Cre07.g323750			Mitochondrion	"GO:0008897;GO:0000287"	"holo-[acyl-carrier-protein] synthase activity;magnesium ion binding"		"HAS2;g7478.t1;HAS2;g7478.t1"		
+Cre07.g335200	GMM:29.2.4	protein.synthesis.elongation	Chloroplast	GO:0005525	"GTP binding"	EFG12	"GBA1;EFG12;g7804.t1"	EFG12	"Target P suggests organellar localization"
+Cre07.g328450							"g7640.t1;Cre07.g328450.t1.1"		
+Cre07.g327079	GMM:3.3	"minor CHO metabolism.sugar alcohols"		GO:0010181	"FMN binding"		"g7606.t1;Cre07.g327079.t1.1"		
+Cre07.g338300			Mitochondrion	GO:0005515	"protein binding"	FBB14	"FBB14;g7870.t1;FBB14;g7870.t1;FBB14;g7870.t1;FBB14;g7870.t1;FBB14;g7870.t1"	"FBB14;FBB14;FBB14;FBB14;FBB14"	"Conserved protein found in ciliated organisms, with unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation;Conserved protein found in ciliated organisms, with unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation;Conserved protein found in ciliated organisms, with unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation;Conserved protein found in ciliated organisms, with unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation;Conserved protein found in ciliated organisms, with unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation"
+Cre07.g319320	GMM:17.5.1	"hormone metabolism.ethylene.synthesis-degradation"	Chloroplast				"ACD2;g7384.t1"		"1-aminocyclopropane-1-carboxylate deaminase, similar to Trp synthase. 1-aminocyclopropane-1-carboxylate is a key intermediate in the biosynthesis of the plant hormone ethylene. Used Pyridoxal phosphate a co-factor"
+Cre07.g349167									
+Cre07.g325812			"Secretory pathway"			MAW1	"MAW1;g7578.t1;ZYS2"		"Contains predicted C-termina GPI-anchor signal"
+Cre07.g313600						CGL33A	"SMM21;g7258.t1;Cre07.g313600.t1.1"	CGL33A	"Conserved in the Green Lineage"
+Cre07.g329476			Chloroplast						
+Cre07.g342350	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"		"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE14	"g7939.t1;PDE14;Cre07.g342350.t1.1;Cre07.g342350.t1.1;g7939.t1;PDE14;PDE14;Cre07.g342350.t1.1;g7939.t1;PDE14;g7939.t1;Cre07.g342350.t1.1"		"cAMP-specific phosphodiesterase similar to phosphodiesterase 4D of Homo sapiens AAA03592.1;cAMP-specific phosphodiesterase similar to phosphodiesterase 4D of Homo sapiens AAA03592.1;cAMP-specific phosphodiesterase similar to phosphodiesterase 4D of Homo sapiens AAA03592.1;cAMP-specific phosphodiesterase similar to phosphodiesterase 4D of Homo sapiens AAA03592.1"
+Cre07.g346250			Mitochondrion				"g8055.t1;g8055.t1;g8055.t1"		
+Cre07.g346350							"Cre07.g346350.t1.1;g8058.t2"		
+Cre07.g321000	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190;GO:0005515"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;protein binding"	CYG14	"g7421.t1;CYG14;CYG14;g7421.t1;CYG14;g7421.t1;g7421.t1;CYG14;g7421.t1;CYG14;CYG14;g7421.t1"		"similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre07.g356150	GMM:29.5	protein.degradation	"Secretory pathway"	"GO:0071586;GO:0008233;GO:0006508;GO:0004222"	"CAAX-box protein processing;peptidase activity;proteolysis;metalloendopeptidase activity"		"Cre07.g356150.t1.1;g8280.t1;Cre07.g356150.t1.1;g8280.t1"		
+Cre07.g342920	"GMM:29.5.7;GMM:29.5"	"protein.degradation.metalloprotease;protein.degradation"		"GO:0030145;GO:0004177"	"manganese ion binding;aminopeptidase activity"		"g7926.t1;Cre07.g342920.t1.1;g7926.t1;Cre07.g342920.t1.1;Cre07.g342920.t1.1;g7926.t1"		
+Cre07.g325026	GMM:26.1	misc.misc2							
+Cre07.g346750			Chloroplast	"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS14	"g8069.t1;PUS14;g8069.t1;PUS14"		
+Cre07.g312350	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006269;GO:0003896"	"DNA replication, synthesis of RNA primer;DNA primase activity"	POLA4	"POLA4;DIV72;g7227.t1"	POLA4	"Homologous to eukaryotic DNA polymerase alpha subunit 4 (primase). ts-lethal mutations block in S/M (PMID 25336509)"
+Cre07.g323326			Mitochondrion						
+Cre07.g331700			"Secretory pathway"				g7717.t1		
+Cre07.g325350	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN10-1	"KIN4-3;KIN10-1;g7515.t1;g7515.t1;KIN10-1;KIN4-3;KIN10-1;g7515.t1;KIN4-3"	"KIN10A;KIN10A;KIN10A"	"kinesin-4/1 family, a combined family of standard kinesin-4 and kinesin-1 families (PMID: 16481395); null-allele mutant was isolated (PMID 29743196);kinesin-4/1 family, a combined family of standard kinesin-4 and kinesin-1 families (PMID: 16481395); null-allele mutant was isolated (PMID 29743196);kinesin-4/1 family, a combined family of standard kinesin-4 and kinesin-1 families (PMID: 16481395); null-allele mutant was isolated (PMID 29743196)"
+Cre07.g344634							"Cre07.g344650.t2.1;g8019.t2"		
+Cre07.g327300			Mitochondrion				"g7612.t1;g7612.t1;g7612.t1"		
+Cre07.g318750	GMM:23.1.2.5	"nucleotide metabolism.synthesis.purine.AIR synthase"	Chloroplast			PURM	"g7368.t1;PURM;Cre07.g318750.t1.1;Cre07.g318750.t1.1;g7368.t1;PURM"	"PURM1;PURM1"	"PurM (Aminoimidazole Ribonucleotide [AIR] synthetase), one of eleven enzymes required for purine biosynthesis; catalyzes the conversion of formylglycinamide ribonucleotide (FGAM) and ATP to AIR, ADP, and Pi, the fifth step in de novo purine biosynthesis;PurM (Aminoimidazole Ribonucleotide [AIR] synthetase), one of eleven enzymes required for purine biosynthesis; catalyzes the conversion of formylglycinamide ribonucleotide (FGAM) and ATP to AIR, ADP, and Pi, the fifth step in de novo purine biosynthesis"
+Cre07.g355250	"GMM:31.2;GMM:29.4.1;GMM:29.4"	"cell.division;protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	WEE1	"g8261.t1;Cre07.g355250.t1.1;Cre07.g355250.t1.1;g8261.t1"	"WEE1;WEE1"	"WEE1 kinase, CDK inhibitory kinase, dual specificity for serine/threonine and tyrosine;WEE1 kinase, CDK inhibitory kinase, dual specificity for serine/threonine and tyrosine"
+Cre07.g356450			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"				
+Cre07.g334150			Mitochondrion	GO:0005515	"protein binding"		g7782.t1		
+Cre07.g317950			Chloroplast				"g7351.t1;g7351.t1;g7351.t1;g7351.t1;g7351.t1"		
+Cre07.g351950	GMM:34.12	transport.metal		"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	ZRT1	"g8187.t1;CrZIP1;g8187.t1;CrZIP1;CrZIP1;g8187.t1;CrZIP1;g8187.t1;g8187.t1;CrZIP1"	"ZRT1;ZRT1;ZRT1;ZRT1;ZRT1"	"Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation;Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation;Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation;Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation;Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation"
+Cre07.g344300							"Cre07.g344300.t1.1;g8012.t1"		
+Cre07.g348200	GMM:2.1.1.2	"major CHO metabolism.synthesis.sucrose.SPP"	"Secretory pathway"			SPH3	"g8102.t1;SPH3"	SPH3	
+Cre07.g333816	GMM:20.2.3	stress.abiotic.drought/salt							
+Cre07.g333570			Chloroplast				g7757.t1		
+Cre07.g340100	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0008270	"zinc ion binding"	MOT13	"MOT13;g7912.t1;Cre07.g340100.t1.1;MOT13;Cre07.g340100.t1.1;g7912.t1"	"MOT13;MOT13"	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia;identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre07.g357500			Mitochondrion						
+Cre07.g314751									
+Cre07.g348450	"GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g8107.t1		
+Cre07.g351750	GMM:29.2.2.3.99	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc"					"g8182.t1;Cre07.g351750.t1.1"		
+Cre07.g313250	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"Cre07.g313250.t1.1;g7251.t1;g7251.t1;Cre07.g313250.t1.1;Cre07.g313250.t1.1;g7251.t1;Cre07.g313250.t1.1;g7251.t1;g7251.t1;Cre07.g313250.t1.1;Cre07.g313250.t1.1;g7251.t1;Cre07.g313250.t1.1;g7251.t1;Cre07.g313250.t1.1;g7251.t1;g7251.t1;Cre07.g313250.t1.1"		
+Cre07.g346418	GMM:27.3.27	"RNA.regulation of transcription.NAC domain transcription factor family"					"Cre07.g346418.t1.1;g8060.t1"		
+Cre07.g318426									
+Cre07.g356650			Chloroplast				"Cre07.g356650.t1.1;g8291.t1"		
+Cre07.g320050	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK1	"g7401.t1;PTK1"		"Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre07.g345650			Chloroplast						
+Cre07.g357600							"Cre07.g357600.t1.1;g8316.t1"		
+Cre07.g313950			"Secretory pathway"	GO:0016757	"transferase activity, transferring glycosyl groups"		g7265.t1		
+Cre07.g349966	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"					"Cre07.g349980.t2.1;g8142.t1"		
+Cre07.g317350			Chloroplast				"g7335.t1;Cre07.g317350.t1.1"		
+Cre07.g319100	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Mitochondrion	GO:0005515	"protein binding"	TEF18	"TEF18;g7377.t1;g7377.t1;TEF18"	"TEF18;TEF18"	"Glutathione S-transferase-related protein, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];Glutathione S-transferase-related protein, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]"
+Cre07.g346150							"g8053.t1;g8053.t1"		
+Cre07.g343850	GMM:35.1.3	"not assigned.no ontology.armadillo/beta-catenin repeat family protein"					"g8000.t1;Cre07.g343850.t1.1;g8000.t1;Cre07.g343850.t1.1"		
+Cre07.g334600						CGL20	"Cre07.g334600.t1.1;g7791.t1;Cre07.g334600.t1.1;g7791.t1"	"CGL20;CGL20"	
+Cre07.g356350	GMM:16.1.1.1	"secondary metabolism.isoprenoids.non-mevalonate pathway.DXS"	Chloroplast	"GO:0016114;GO:0008661;GO:0008152;GO:0003824"	"terpenoid biosynthetic process;1-deoxy-D-xylulose-5-phosphate synthase activity;metabolic process;catalytic activity"	DXS1	"g8285.t1;DXS;DXS1;DXS;DXS1;g8285.t1;DXS;DXS1;g8285.t1"	"DXS1;DXS1;DXS1"	"1-deoxy-D-xylulose 5-phosphate synthase (1-deoxyxylulose-5-phosphate synthase) (DXP synthase) (DXPS) (CLA1) (DEF), chloroplast precursor;1-deoxy-D-xylulose 5-phosphate synthase (1-deoxyxylulose-5-phosphate synthase) (DXP synthase) (DXPS) (CLA1) (DEF), chloroplast precursor;1-deoxy-D-xylulose 5-phosphate synthase (1-deoxyxylulose-5-phosphate synthase) (DXP synthase) (DXPS) (CLA1) (DEF), chloroplast precursor"
+Cre07.g327317			Chloroplast						
+Cre07.g320850	GMM:26.3	"misc.gluco-, galacto- and mannosidases"		"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"		"g7418.t1;Cre07.g320850.t1.1"		
+Cre07.g325717			Chloroplast				"g7531.t1;Cre26.g772200.t1.1;g7531.t1;Cre26.g772200.t1.1;g7531.t1;Cre26.g772200.t1.1;g7531.t1;Cre26.g772200.t1.1"		
+Cre07.g331850							"g7720.t1;g7720.t1"		
+Cre07.g317438							"g7338.t1;Cre07.g317438.t1.1"		
+Cre07.g326350	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"					g7589.t1		
+Cre07.g312900	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	"ubiquitin-protein transferase activity"		"g7241.t1;g7241.t1;g7241.t1;g7241.t1;g7241.t1;g7241.t1"		
+Cre07.g312500	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	"Secretory pathway"				"MITC4;g7229.t1;Cre07.g312500.t1.1"		
+Cre07.g355100	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	ZIP1	"Cre07.g355100.t1.1;g8258.t1;CrZIP5;CrZIP5;g8258.t1;Cre07.g355100.t1.1"	"ZIP1;ZIP1"	"Similarity to ZIP Subfamily I; Physically linked to ZRT5; (CrZIP5);Similarity to ZIP Subfamily I; Physically linked to ZRT5; (CrZIP5)"
+Cre07.g324400	"GMM:29.5;GMM:27.3.71"	"protein.degradation;RNA.regulation of transcription.SNF7"		GO:0007034	"vacuolar transport"	VPS24	"Cre07.g324400.t1.1;g7494.t1;VPS24;g7494.t1;VPS24;Cre07.g324400.t1.1"	"VPS24;VPS24"	"Hypothetical Conserved Protein. Similar to VPS24, SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes);Hypothetical Conserved Protein. Similar to VPS24, SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes)"
+Cre07.g351825	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	PTK12	"g8184.t1;g8184.t1"		
+Cre07.g328700			"Secretory pathway"				"g7644.t1;g7644.t1"		
+Cre07.g341554	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"						
+Cre07.g347450			Mitochondrion				"g8085.t1;Cre07.g347450.t1.1;Cre07.g347450.t1.1;g8085.t1"		
+Cre07.g318850	GMM:29.6.2.1	"protein.folding.chaperones and co-chaperones.small HSPs"				HSP22B	g7370.t2	HSP22B	"small heat shock protein containing an alpha-crystallin domain, most likely cytosolic; is arranged head-to-head with HSP22A, with which HSP22B shares 70% identity"
+Cre07.g312400	GMM:11.3.5	"lipid metabolism.phospholipid synthesis.diacylglycerol kinase"		"GO:0016301;GO:0007205;GO:0004143"	"kinase activity;protein kinase C-activating G-protein coupled receptor signaling pathway;diacylglycerol kinase activity"	KDG1	"KDG1;g7228.t1;g7228.t1;KDG1;KDG1;g7228.t1;KDG1;g7228.t1;KDG1;g7228.t1"		"diacylglycerol kinase similar to that of Oryza sativa XP_468760 (EC 2.7.1.107);diacylglycerol kinase similar to that of Oryza sativa XP_468760 (EC 2.7.1.107);diacylglycerol kinase similar to that of Oryza sativa XP_468760 (EC 2.7.1.107);diacylglycerol kinase similar to that of Oryza sativa XP_468760 (EC 2.7.1.107);diacylglycerol kinase similar to that of Oryza sativa XP_468760 (EC 2.7.1.107)"
+Cre07.g334450			Chloroplast				"g7788.t1;EFH4;g7788.t1;EFH4"		"contains EF-hand Calcium binding domain pair;contains EF-hand Calcium binding domain pair"
+Cre07.g332650			"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	NCT1	"g7738.t1;NCT1"		"major facilitator superfamily"
+Cre07.g315050	GMM:29.5	protein.degradation		"GO:0008242;GO:0006541;GO:0003824"	"omega peptidase activity;glutamine metabolic process;catalytic activity"	GGH1	"g7289.t2;GGH1"	GGH1	"Putative gamma-glutamyl hydrolase, folate metabolism, ER targeting sequence predicted by Predotar."
+Cre07.g325762				"GO:0005524;GO:0005515"	"ATP binding;protein binding"	DRC11	"Cre07.g325750.t1.2;g7577.t1;FAP82;FBB15;Cre07.g325750.t1.2;FBB15;FAP82;g7577.t1"	"DRC11;DRC11"	"Flagellar Associated Protein 82, Found in the flagellar proteome; Identified in the flagellar basal body proteome as FBB15; Upregulated by deflagellation;;Flagellar Associated Protein 82, Found in the flagellar proteome; Identified in the flagellar basal body proteome as FBB15; Upregulated by deflagellation;"
+Cre07.g344172							"g8007.t1;Cre07.g344172.t1.1"		
+Cre07.g347150							"g8079.t1;Cre07.g347150.t1.1"		
+Cre07.g354150						MFT22	"Cre07.g354150.t1.1;ARSJ1;g8239.t1;MFT22"		"Putative ArsJ homolog that function in arsenic detoxification"
+Cre07.g318050	GMM:27.3.35	"RNA.regulation of transcription.bZIP transcription factor family"		"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"Cre07.g318050.t1.1;g7353.t1;g7353.t1;Cre07.g318050.t1.1;Cre07.g318050.t1.1;g7353.t1;Cre07.g318050.t1.1;g7353.t1;Cre07.g318050.t1.1;g7353.t1;g7353.t1;Cre07.g318050.t1.1;g7353.t1;Cre07.g318050.t1.1"		
+Cre07.g344250						CSG9	"CSG9;g8010.t1"		"Belongs to family G of Chlamydomonadales-specific proteins, all on chromosome 7; no known function"
+Cre07.g329750							"Cre07.g329750.t1.1;g7671.t1;g7671.t1;Cre07.g329750.t1.1;g7671.t1;Cre07.g329750.t1.1"		
+Cre07.g341925			Mitochondrion				"Cre07.g341925.t1.1;g7949.t1"		
+Cre07.g350900							g8164.t1		
+Cre07.g352800			Mitochondrion				"Cre07.g352800.t1.1;g8205.t1;Cre07.g352800.t1.1;g8205.t1;g8205.t1;Cre07.g352800.t1.1"		
+Cre07.g321300			Chloroplast				"g7427.t1;Cre07.g321300.t1.1"		
+Cre07.g344186									
+Cre07.g326833			"Secretory pathway"				"g7601.t1;g7601.t1;g7601.t1;g7601.t1"		
+Cre07.g337750	"GMM:26.3;GMM:10.6.2"	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"		"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	EBM5	"g7857.t1;EBM5;g7857.t1;EBM5"		
+Cre07.g342552	GMM:28.1	"DNA.synthesis/chromatin structure"					"g7935.t3;g20001.t1;Cre07.g342500.t1.3"	UBC37	
+Cre07.g342551			Chloroplast						
+Cre07.g351200							"g8172.t1;Cre07.g351200.t1.1"		
+Cre07.g338700	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Mitochondrion				g7879.t2		
+Cre07.g331150	"GMM:26.7;GMM:20.2.3"	"misc.oxidases - copper, flavone etc;stress.abiotic.drought/salt"	Mitochondrion	"GO:0055114;GO:0020037;GO:0016491;GO:0006979;GO:0005507;GO:0004601"	"oxidation-reduction process;heme binding;oxidoreductase activity;response to oxidative stress;copper ion binding;peroxidase activity"		"g7705.t1;Cre07.g331150.t1.1"		
+Cre07.g349800			Mitochondrion				"Cre07.g349800.t1.1;g8138.t1"		
+Cre07.g329900	GMM:17.4.2	"hormone metabolism.cytokinin.signal transduction"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0016020;GO:0009190;GO:0007165;GO:0005515;GO:0000160;GO:0000155"	"intracellular signal transduction;phosphorus-oxygen lyase activity;membrane;cyclic nucleotide biosynthetic process;signal transduction;protein binding;phosphorelay signal transduction system;phosphorelay sensor kinase activity"	COP8	"g7678.t1;COP;COP8"	HKR4	"Also known as Chlamoypsin 8; contains bacteriorhodopsin, Histine kinase, response regulator receiver, Guanylate/adenylate cyclase catalytic and SAM domains"
+Cre07.g340550							"g7920.t1;g7920.t1"		
+Cre07.g325250			"Secretory pathway"				"g7513.t1;Cre07.g325250.t1.1"		
+Cre07.g315100							"Cre07.g315100.t1.1;g7290.t1;g7290.t1;Cre07.g315100.t1.1"		
+Cre07.g341700	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g7954.t1;g7954.t1"		
+Cre07.g330900							"Cre07.g330900.t1.1;g7699.t1"		
+Cre07.g332500						AXT2	"g7735.t1;Cre07.g332500.t1.1;g7735.t1;Cre07.g332500.t1.1;g7735.t1;Cre07.g332500.t1.1;Cre07.g332500.t1.1;g7735.t1;g7735.t1;Cre07.g332500.t1.1"	"AXT2;AXT2;AXT2;AXT2;AXT2"	"GT77 family;GT77 family;GT77 family;GT77 family;GT77 family"
+Cre07.g345450							g8038.t2		
+Cre07.g325722				"GO:0006355;GO:0003713;GO:0003677"	"regulation of transcription, DNA-templated;transcription coactivator activity;DNA binding"		"Cre26.g772400.t1.1;g7536.t3"		"contains DEK-PC4 domain"
+Cre07.g348750			Mitochondrion	GO:0016020	membrane		"g8113.t1;g8113.t1;g8113.t1;g8113.t1"		
+Cre07.g317750	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"				"g7346.t1;g7346.t1;g7346.t1"		
+Cre07.g320450			Chloroplast				"Cre07.g320450.t1.1;g7410.t1;ELIP4, ELI10"	ELIP10	"belongs to chlorophyll A-B binding protein superfamily, ELIP family; next to and highly similar to ELI4"
+Cre07.g338750							"g7880.t3;g7880.t3"		
+Cre07.g322850			Chloroplast				g7458.t1		
+Cre07.g358001				GO:0005509	"calcium ion binding"				
+Cre07.g325726			"Secretory pathway"						
+Cre07.g343200							"g7983.t1;Cre07.g343200.t1.1"		
+Cre07.g335451									
+Cre07.g325733			Mitochondrion				"g7548.t1;Cre26.g772950.t1.1;g7548.t1;Cre26.g772950.t1.1;Cre26.g772950.t1.1;g7548.t1;Cre26.g772950.t1.1;g7548.t1;g7548.t1;Cre26.g772950.t1.1"		
+Cre07.g322884			"Secretory pathway"	"GO:0016758;GO:0008152"	"transferase activity, transferring hexosyl groups;metabolic process"		"Cre07.g322884.t1.1;g7459.t1;g7459.t1;Cre07.g322884.t1.1"		
+Cre07.g341800	GMM:28.1.3	"DNA.synthesis/chromatin structure.histone"				CGL107	"g7952.t1;Cre07.g341800.t1.1"	CGL107	"Conserved in the Green Lineage"
+Cre07.g329233							g7657.t1		
+Cre07.g327800	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		g7625.t1		
+Cre07.g357876									
+Cre07.g321700	"GMM:3.3;GMM:27.3.69;GMM:26.11"	"minor CHO metabolism.sugar alcohols;RNA.regulation of transcription.SET-domain transcriptional regulator family;misc.alcohol dehydrogenases"		"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	ADH3	"ADH3;Cre07.g321700.t1.1;g7435.t1"		"Alcohol dehydrogenase, zinc-containing"
+Cre07.g347550			Mitochondrion	GO:0005524	"ATP binding"		"g8087.t1;Cre07.g347550.t1.1"		
+Cre07.g334700							"Cre07.g334700.t1.1;g7793.t1"	ATG101	
+Cre07.g317500			Mitochondrion				"g7340.t1;g7340.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre07.g344900			Chloroplast				"g8025.t2;g8025.t2"		
+Cre07.g347980	GMM:35.1.1	"not assigned.no ontology.ABC1 family protein"					"g8097.t1;g8097.t1"		
+Cre07.g318651	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0005515	"protein binding"	AOF4	"AOF4;g7366.t1;g7366.t1;AOF4;AOF4;g7366.t1"		"Flavin-containing amine oxidase family protein, ChromDB HDMA341; SWIRM domain-containing protein. Possible polyamine oxidase;Flavin-containing amine oxidase family protein, ChromDB HDMA341; SWIRM domain-containing protein. Possible polyamine oxidase;Flavin-containing amine oxidase family protein, ChromDB HDMA341; SWIRM domain-containing protein. Possible polyamine oxidase"
+Cre07.g312100				GO:0007049	"cell cycle"		"g7220.t1;g7220.t1;g7220.t1"		
+Cre07.g349400							"g8129.t1;g8129.t1;g8129.t1"		
+Cre07.g349137							"Cre07.g349137.t1.1;g8122.t1"		
+Cre07.g348350			Mitochondrion			PWR8	"Cre07.g348350.t1.1;g8105.t1;PWR8;g8105.t1;Cre07.g348350.t1.1;PWR8;PWR8;Cre07.g348350.t1.1;g8105.t1"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre07.g356101							"g8279.t1;Cre07.g356100.t1.3"		
+Cre07.g346900			"Secretory pathway"				g8072.t1		"Target of CRR1"
+Cre07.g316725			Chloroplast				"g7322.t1;g7322.t1;g7322.t1"		
+Cre07.g325749							"Cre26.g773600.t1.2;g7564.t1;Cre26.g773600.t1.1;Cre26.g773600.t1.2;g7564.t1;Cre26.g773600.t1.1"		
+Cre07.g315432						CSG3	"CSG3;Cre07.g315432.t1.1;g7298.t1"		"Belongs to family G of Chlamydomonadales-specific proteins, all on chromosome 7; no known function"
+Cre07.g335500	"GMM:27.3.99;GMM:16.4.1;GMM:13.2.6.2"	"RNA.regulation of transcription.unclassified;secondary metabolism.N misc.alkaloid-like;amino acid metabolism.degradation.aromatic aa.tyrosine"	Chloroplast				"g7811.t1;g7811.t1;g7811.t1;g7811.t1;g7811.t1;g7811.t1"		
+Cre07.g343433	"GMM:8.1.5;GMM:8.1.1.2"	"TCA / organic transformation.TCA.2-oxoglutarate dehydrogenase;TCA / organic transformation.TCA.pyruvate DH.E2"		"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"	OGD4	"OGD4;g7988.t1"	OGD4	"EC 2.3.1.61; 2-oxoglutarate dehydrogenase, E2 component"
+Cre07.g352250				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	HEL42	"g8192.t2;HEL42;g8192.t2;HEL42;HEL42;g8192.t2"		"Contains protein kinase domain;Contains protein kinase domain;Contains protein kinase domain"
+Cre07.g314250							"g7271.t1;g7271.t1"		
+Cre07.g342900			Mitochondrion				g7927.t1		
+Cre07.g332100	"GMM:26.7;GMM:20.2.3"	"misc.oxidases - copper, flavone etc;stress.abiotic.drought/salt"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016491;GO:0006979;GO:0005507;GO:0004601"	"oxidation-reduction process;heme binding;oxidoreductase activity;response to oxidative stress;copper ion binding;peroxidase activity"		"Cre07.g332100.t1.1;g7727.t1;g7727.t1;Cre07.g332100.t1.1;Cre07.g332100.t1.1;g7727.t1;Cre07.g332100.t1.1;g7727.t1;g7727.t1;Cre07.g332100.t1.1"		
+Cre07.g320150	"GMM:29.9;GMM:29.6.2.6;GMM:20.2.1"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat"	EndoplasmicReticulum			ERJ1	"g7404.t1;Cre07.g320150.t1.1;ERJ1"		"DnaJ-like protein; probably targeted to ER, as judged from high homology to Arabidopsis Q9LZK5 predicted by TargetP (reliability score 1) to be targeted to the ER; contains N-terminal J-domain (pfam00226) and DnaJ C-ter domain (pfam01556)."
+Cre07.g332250				GO:0046983	"protein dimerization activity"		"Cre07.g332250.t1.1;g7729.t1;g7729.t1;Cre07.g332250.t1.1"		
+Cre07.g340450			"Secretory pathway"	GO:0005515	"protein binding"	PKHD1	"g7919.t1;g7919.t1;g7919.t1;g7919.t1;g7919.t1;g7919.t1"	"PKHD1;PKHD1;PKHD1;PKHD1;PKHD1;PKHD1"	
+Cre07.g334800	"GMM:26.30;GMM:21.99;GMM:1.1.5.2"	"misc.other Ferredoxins and Rieske domain;redox.misc;PS.lightreaction.other electron carrier (ox/red).ferredoxin"	Chloroplast	"GO:0051536;GO:0009055"	"iron-sulfur cluster binding;electron carrier activity"	FDX4	"Cre07.g334800.t1.1;19586916;g7796.t2"	FDX4	"Fe2S2 containing redox protein, predicted chloroplast localization; PMID 28620699: Ferredoxin with 2Fe-2S iron-sulfur cluster binding domain"
+Cre07.g336150							"g7824.t1;Cre07.g336150.t1.1"		
+Cre07.g323100	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"STK7;STPK7;g7464.t1;STK7;g7464.t1;STPK7"		"Serine/Threonine Protein Kinase Homolog 7, putative;Serine/Threonine Protein Kinase Homolog 7, putative"
+Cre07.g342400							"g7937.t1;Cre07.g342400.t1.1"		
+Cre07.g357100			Mitochondrion				"g8303.t1;Cre07.g357100.t1.1"		
+Cre07.g313350			"Secretory pathway"				"g7253.t1;Cre07.g313350.t1.1"		
+Cre07.g328400	"GMM:30.5;GMM:3.5;GMM:27.4"	"signalling.G-proteins;minor CHO metabolism.others;RNA.RNA binding"		"GO:0008270;GO:0003676"	"zinc ion binding;nucleic acid binding"		"g7639.t1;Cre07.g328400.t1.1;g7639.t1;Cre07.g328400.t1.1"		
+Cre07.g316550							"g7319.t1;g7319.t1;g7319.t1;g7319.t1"		
+Cre07.g352075			Chloroplast						
+Cre07.g323400							"g7471.t1;Cre07.g323400.t1.1"		
+Cre07.g335100			"Secretory pathway"				"Cre07.g335100.t1.1;g7802.t1"		
+Cre07.g325738	GMM:27.3.28	"RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"Cre26.g773200.t1.2;Cre26.g773200.t1.1;g7553.t1"		
+Cre07.g329550						VFL5	"g7666.t1;VFL5;g7666.t1;VFL5;g7666.t1;VFL5;g7666.t1;VFL5"	"VFL5;VFL5;VFL5;VFL5"	"Protein with conserved tubulin site. Probe for VFL5 marker maps to the 3' end of this gene.;Protein with conserved tubulin site. Probe for VFL5 marker maps to the 3' end of this gene.;Protein with conserved tubulin site. Probe for VFL5 marker maps to the 3' end of this gene.;Protein with conserved tubulin site. Probe for VFL5 marker maps to the 3' end of this gene."
+Cre07.g333675			Mitochondrion						
+Cre07.g325746	GMM:29.2.1.2.2.38	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L38"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL38	"g7561.t1;RPL38;Cre26.g773500.t1.2;Cre26.g773500.t1.1"	RPL38	"Component of cytosolic 80S ribosome and 60S large subunit"
+Cre07.g336900			Chloroplast				g7839.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre07.g325739	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"				
+Cre07.g337250							"g7847.t1;Cre07.g337250.t1.1;Cre07.g337250.t1.1;g7847.t1;g7847.t1;Cre07.g337250.t1.1"		
+Cre07.g312800				GO:0008270	"zinc ion binding"		"g7237.t1;g7237.t1;g7237.t1"		
+Cre07.g331475			Chloroplast	GO:0008080	"N-acetyltransferase activity"		g7712.t1		
+Cre07.g336650	GMM:28.2	DNA.repair		"GO:0006298;GO:0005524"	"mismatch repair;ATP binding"	MLH3	"g7834.t2;MLH3"	MLH3	"MutL homolog; ortholog of yeast and human MLH3 [PMID: 17992532]. Homolog of MutL, which forms a complex with MutS"
+Cre07.g341050									
+Cre07.g332851						SELM2	"SELM;Cre07.g332850.t1.3;g7743.t1;SELENOM"	SELM2	"contains a Selenocysteine in position 33; contains 1 thioredoxin domain and may function as a thiol-disulfide oxidoreductase participating in disulfide bond formation; human homologue is located in cytoplasm (perinuclear region); note that SELM1 paralog AAN32905 identified in PMID:12110581 was actually from Chlamydomonas sp. HS-5"
+Cre07.g353050							"Cre07.g353050.t1.1;g8211.t1"		
+Cre07.g331800	"GMM:3.5;GMM:23.3.2.1"	"minor CHO metabolism.others;nucleotide metabolism.salvage.nucleoside kinases.adenosine kinase"				CGL79	"CPK1;Cre07.g331800.t1.1;g7719.t1"	CGL79	"Conserved in the Green Lineage"
+Cre07.g338100							"g7866.t1;Cre07.g338100.t1.1"		
+Cre07.g316200							"g7313.t1;g7313.t1;g7313.t1;g7313.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre07.g312550			Chloroplast						
+Cre07.g319650	GMM:30.99	signalling.unspecified	Chloroplast	GO:0006355	"regulation of transcription, DNA-templated"	FXL4	"FXL4;g7393.t1;FXL4;g7393.t1;g7393.t1;FXL4"	"FXL5;FXL5;FXL5"	"FixL like homolog 5 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 5 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 5 (FXL). PAS region shows high identity to Rhizobial FixL proteins."
+Cre07.g315600			Chloroplast	GO:0055114	"oxidation-reduction process"		"g7302.t1;g7302.t1"		
+Cre07.g333746			Mitochondrion	GO:0005515	"protein binding"				
+Cre07.g314833			Mitochondrion						
+Cre07.g330500			Chloroplast				"g7691.t1;Cre07.g330500.t1.1;g7691.t1;Cre07.g330500.t1.1;g7691.t1;Cre07.g330500.t1.1;g7691.t1;Cre07.g330500.t1.1;g7691.t1;Cre07.g330500.t1.1"		
+Cre07.g350652							g8158.t2		
+Cre07.g346672			"Secretory pathway"				g8067.t1		
+Cre07.g354250	"GMM:4.1.11;GMM:1.3.3"	"glycolysis.cytosolic branch.3-phosphoglycerate kinase (PGK);PS.calvin cycle.phosphoglycerate kinase"		"GO:0006096;GO:0004618"	"glycolytic process;phosphoglycerate kinase activity"	PGK2	"g8241.t1;Cre07.g354250.t1.1;g8241.t1;Cre07.g354250.t1.1"	"PGK2;PGK2"	"EC 2.7.2.3, probable cytosolic form; similarity to PGK from Thermosynechococcus (GenBank BAC09820);EC 2.7.2.3, probable cytosolic form; similarity to PGK from Thermosynechococcus (GenBank BAC09820)"
+Cre07.g326750							g7599.t1		
+Cre07.g357157			"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"		"Cre07.g357157.t1.1;g8305.t1;Cre07.g357157.t1.1;g8305.t1"		
+Cre07.g327100			Chloroplast				"Cre07.g327100.t1.1;g7607.t1;g7607.t1;Cre07.g327100.t1.1"		
+Cre07.g339633	GMM:29.9	protein.co-chaperones	Cytosol			DNJ20	"Cre07.g339650.t1.3;g7900.t1;DNJ20;g7900.t1;DNJ20;Cre07.g339650.t1.3"		"DnaJ-like protein, probably cytosolic; contains N-terminal J-domain (pfam226) and DnaJ_C, DnaJ C terminal region (pfam1556); weak similarity to Xanthomonas axonopodis Q8PMA9 and to Porphyromonas gingivalis Q9XCA6;DnaJ-like protein, probably cytosolic; contains N-terminal J-domain (pfam226) and DnaJ_C, DnaJ C terminal region (pfam1556); weak similarity to Xanthomonas axonopodis Q8PMA9 and to Porphyromonas gingivalis Q9XCA6"
+Cre07.g327350			Chloroplast			CDPK8	"g7615.t1;CDPK8;Cre07.g327350.t1.1"		
+Cre07.g325711							"Cre26.g771900.t1.1;g7525.t1;Cre26.g771900.t1.2;Cre26.g771900.t1.1;g7525.t1;Cre26.g771900.t1.2;Cre26.g771900.t1.2;g7525.t1;Cre26.g771900.t1.1"		
+Cre07.g345050	"GMM:33.99;GMM:33.3;GMM:27.3.28"	"development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"g8030.t1;Cre07.g345050.t1.1;Cre07.g345050.t1.1;g8030.t1"		
+Cre07.g326500							"Cre07.g326500.t1.1;g7592.t1;g7592.t1;Cre07.g326500.t1.1"		
+Cre07.g335226			"Secretory pathway"						
+Cre07.g325744			"Secretory pathway"				"Cre26.g773450.t1.2;g7559.t1;Cre26.g773450.t1.1"		
+Cre07.g314300			Mitochondrion				"g7272.t1;g7272.t1"		
+Cre07.g315700	"GMM:29.6.3.1;GMM:29.6"	"protein.folding.immunophilins (IMM).FKBPs;protein.folding"	Chloroplast	GO:0006457	"protein folding"	FKB16-1	"FKB4;Cre07.g315700.t1.1;FKB16-1;g7304.t1"	FKB16A	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); probably directed to thylakoid lumen (homology to AtFKBP16-1 and bipartite cTP, length 65 or 54 + RR motif); [PMID: 15701785]"
+Cre07.g341150			Chloroplast				g7969.t1		
+Cre07.g324866	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g7503.t1;g7503.t1"		
+Cre07.g312950						HEL32	"g7242.t1;HEL32;Cre07.g313000.t1.3"		
+Cre07.g329400							"g7662.t1;SMM26"		"null-allele mutant was isolated (PMID 29743196)"
+Cre07.g350867			Mitochondrion	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		g8163.t2		
+Cre07.g327600							"Cre07.g327600.t1.1;g7620.t2"		
+Cre07.g325753			"Secretory pathway"						
+Cre07.g331050	GMM:27.3.42	"RNA.regulation of transcription.bromodomain proteins"		GO:0005515	"protein binding"		"g7702.t2;g7702.t2"		
+Cre07.g329650							"Cre07.g329650.t1.1;g7669.t1;Cre07.g329650.t1.1;g7669.t1"		
+Cre07.g350976									
+Cre07.g348100							"g8100.t1;Cre07.g348100.t1.1"		
+Cre07.g349350			Mitochondrion				"Cre07.g349350.t1.1;g8128.t1;Cre07.g349350.t1.1;g8128.t1"		
+Cre07.g343933	"GMM:26.3;GMM:10.6.2"	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Chloroplast	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	EBM6	"EBM6;g8002.t1"		
+Cre07.g342052									
+Cre07.g313700	GMM:29.1.17	"protein.aa activation.glutamate-tRNA ligase"	Chloroplast	"GO:0043039;GO:0016876;GO:0005524"	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;ATP binding"	TSE2	"GTS2:GLTX;g7260.t1;GTS2;TSE2;g7260.t1;TSE2;GTS2;GTS2:GLTX;TSE2;g7260.t1;GTS2:GLTX;GTS2"	"TSX2;TSX2;TSX2"	"Similar to GluRS (EARS, gltX); Cytosol or organellar?;Similar to GluRS (EARS, gltX); Cytosol or organellar?;Similar to GluRS (EARS, gltX); Cytosol or organellar?"
+Cre07.g319800			Mitochondrion				"g7396.t1;Cre07.g319800.t1.1;g7396.t1;Cre07.g319800.t1.1;g7396.t1;Cre07.g319800.t1.1;g7396.t1;Cre07.g319800.t1.1"		
+Cre07.g333400	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			MMP23	"g7752.t1;MMP23"	MMP23	"Matrix metalloproteinase belonging to the M11 peptidase family"
+Cre07.g322300	"GMM:28.99;GMM:28.1"	"DNA.unspecified;DNA.synthesis/chromatin structure"		"GO:0016818;GO:0008026;GO:0006139;GO:0005524;GO:0004003;GO:0003677;GO:0003676"	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;ATP-dependent helicase activity;nucleobase-containing compound metabolic process;ATP binding;ATP-dependent DNA helicase activity;DNA binding;nucleic acid binding"	XPD4	"g7446.t1;RAD3D;RAD3D;g7446.t1;g7446.t1;RAD3D"	"XPD4;XPD4;XPD4"	
+Cre07.g329600			Mitochondrion						
+Cre07.g325735							"Cre26.g773050.t1.1;Cre26.g773050.t1.2;g7550.t1"		
+Cre07.g355400	"GMM:31.2;GMM:29.4.1;GMM:29.4"	"cell.division;protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CDKH1	"g8264.t1;CDKH1;CDKH1;g8264.t1;CDKH1;g8264.t1"	"CDKH1;CDKH1;CDKH1"	"Chlamydomonas specific; PVTSIRE motif; ts-lethal mutant was isolated (PMID 29743196);Chlamydomonas specific; PVTSIRE motif; ts-lethal mutant was isolated (PMID 29743196);Chlamydomonas specific; PVTSIRE motif; ts-lethal mutant was isolated (PMID 29743196)"
+Cre07.g334350			Chloroplast				"Cre07.g334350.t1.1;g7786.t1"		
+Cre07.g323050						PEN2	"Cre07.g323050.t1.1;PEN2;g7463.t1"	PEN2	"homologous to presnilin enhancer 2; forms the gamma-secretase complex with presenilin, nicastrin and aph-1;possibly involved in presenilin processing (presenilinase); involved in regulated intramembrane proteolysis of type I integral membrane proteins such as the amyloid precursor protein (APP) and Notch"
+Cre07.g322550	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP240	"g7452.t1;Cre07.g322550.t1.1;Cre07.g322550.t1.1;g7452.t1"	"FAP240;FAP240"	"Flagellar Associated Protein; found in the flagellar proteome;Flagellar Associated Protein; found in the flagellar proteome"
+Cre07.g345350	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"					g8036.t1		
+Cre07.g329277							"Cre07.g329277.t1.1;g7659.t1;g7659.t1;Cre07.g329277.t1.1"		
+Cre07.g352550	GMM:26.23	misc.rhodanese				RDP3	"g8200.t1;Cre07.g352550.t1.1;RDP3"		
+Cre07.g324150							g7487.t1		
+Cre07.g344450							"g8015.t1;Cre07.g344450.t1.1;g8015.t1;Cre07.g344450.t1.1"		
+Cre07.g325729			Chloroplast				"Cre26.g772750.t1.1;g7544.t1;g7544.t1;Cre26.g772750.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre07.g341556			"Secretory pathway"						
+Cre07.g337100			Chloroplast				"g7843.t1;Cre07.g337100.t1.1"		
+Cre07.g342600			Mitochondrion				g7933.t1		
+Cre07.g323700			Chloroplast				g7477.t1		
+Cre07.g314050			"Secretory pathway"				"g7267.t1;g7267.t1;g7267.t1;g7267.t1;g7267.t1;g7267.t1"		
+Cre07.g347250				"GO:0048024;GO:0005634"	"regulation of mRNA splicing, via spliceosome;nucleus"	FIP37B	"FIP37;g8081.t1"	FIP37B	"Along with Cre07.g347350, is co-orthologous to FIP37, required for chromosome maintenance in Arabidopsis and yeast; Target of FKB12/rapamycin complex; next to close paralog Cre07.g347350;"
+Cre07.g329100							"g7653.t1;Cre07.g329100.t1.1;Cre07.g329100.t1.1;g7653.t1;Cre07.g329100.t1.1;g7653.t1;g7653.t1;Cre07.g329100.t1.1;g7653.t1;Cre07.g329100.t1.1"		
+Cre07.g356000							"g8277.t1;Cre07.g356000.t1.1"		
+Cre07.g347750			"Secretory pathway"				"g8092.t1;g8092.t1;g8092.t1"		
+Cre07.g340150			"Mitochondrion;Chloroplast"				g7913.t3		
+Cre07.g337516			Chloroplast				"g7852.t1;Cre07.g337550.t1.3;SMM27;CGL75;Cre07.g337550.t1.3;SMM27;CGL75;g7852.t1"	"CGL75;CGL75"	"Putative S-adenosyl-L-methionine-dependent methyltransferase; Conserved protein with methyltransferase motif; related to modification methylase hemK; Note that Cre07.g337450 was erroneously annotated as CGL75 in previous annotation versions;Putative S-adenosyl-L-methionine-dependent methyltransferase; Conserved protein with methyltransferase motif; related to modification methylase hemK; Note that Cre07.g337450 was erroneously annotated as CGL75 in previous annotation versions"
+Cre07.g357150			Mitochondrion			CYP24	"g8304.t1;CYP24"	CYP24	"Cytochrome P45"
+Cre07.g323000	GMM:27.3.18	"RNA.regulation of transcription.E2F/DP transcription factor family"		"GO:0007049;GO:0006355;GO:0005667;GO:0003700"	"cell cycle;regulation of transcription, DNA-templated;transcription factor complex;transcription factor activity, sequence-specific DNA binding"	DP1	"Cre07.g323000.t1.1;TDP1;g7462.t1;g7462.t1;Cre07.g323000.t1.1;TDP1;g7462.t1;TDP1;Cre07.g323000.t1.1"	"DP1;DP1;DP1"	"Transcription factor DP1. Positive regulator that controls commitment and S/M size checkpoints. Mutations at this locus suppress the small-cell phenotype of mutants in the MAT3 gene encoding a retinoblastoma-like protein [Fang et al. 26, PMID:17413];Transcription factor DP1. Positive regulator that controls commitment and S/M size checkpoints. Mutations at this locus suppress the small-cell phenotype of mutants in the MAT3 gene encoding a retinoblastoma-like protein [Fang et al. 26, PMID:17413];Transcription factor DP1. Positive regulator that controls commitment and S/M size checkpoints. Mutations at this locus suppress the small-cell phenotype of mutants in the MAT3 gene encoding a retinoblastoma-like protein [Fang et al. 26, PMID:17413]"
+Cre07.g352150			"Mitochondrion;Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g8190.t3;g8190.t3;g8190.t3"		
+Cre07.g327976							g7629.t1		
+Cre07.g346317			"Secretory pathway"				"GT90F39;GT90-39;g8057.t1;GT90F39;g8057.t1;GT90-39"		
+Cre07.g339554			Chloroplast	"GO:0016021;GO:0008521"	"integral component of membrane;acetyl-CoA transporter activity"		"Cre07.g339554.t1.1;g7898.t1"		
+Cre07.g348040	GMM:34.3	"transport.amino acids"		"GO:0016020;GO:0015171;GO:0003333"	"membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport"		"g8099.t1;g8099.t1;g8099.t1;g8099.t1"		"similar to plant Bidirection Aminoacid Transporter (BAT1); TCDB family 2.A.3.4;;similar to plant Bidirection Aminoacid Transporter (BAT1); TCDB family 2.A.3.4;;similar to plant Bidirection Aminoacid Transporter (BAT1); TCDB family 2.A.3.4;;similar to plant Bidirection Aminoacid Transporter (BAT1); TCDB family 2.A.3.4;"
+Cre07.g313450			Chloroplast				"g7255.t1;Cre07.g313450.t1.1;Cre07.g313450.t1.1;g7255.t1"		
+Cre07.g325732						OPR109	"Cre26.g772916.t1.1;g7547.t1;Cre26.g772916.t1.2;Cre26.g772916.t1.1;Cre26.g772916.t1.2;g7547.t1;Cre26.g772916.t1.1;Cre26.g772916.t1.2;g7547.t1;g7547.t1;Cre26.g772916.t1.2;Cre26.g772916.t1.1;Cre26.g772916.t1.2;g7547.t1;Cre26.g772916.t1.1;g7547.t1;Cre26.g772916.t1.2;Cre26.g772916.t1.1;g7547.t1;Cre26.g772916.t1.1;Cre26.g772916.t1.2;g7547.t1;Cre26.g772916.t1.2;Cre26.g772916.t1.1;g7547.t1;Cre26.g772916.t1.2;Cre26.g772916.t1.1;g7547.t1;Cre26.g772916.t1.1;Cre26.g772916.t1.2;Cre26.g772916.t1.1;Cre26.g772916.t1.2;g7547.t1;g7547.t1;Cre26.g772916.t1.2;Cre26.g772916.t1.1"	"OPR109;OPR109;OPR109;OPR109;OPR109;OPR109;OPR109;OPR109;OPR109;OPR109;OPR109;OPR109"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre07.g356800			Mitochondrion			OPR33	g8294.t1	OPR33	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre07.g332084									
+Cre07.g328075			Mitochondrion				"g7632.t2;Cre07.g328100.t3.1;g7632.t2;Cre07.g328100.t3.1;g7632.t2;Cre07.g328100.t3.1"		
+Cre07.g320550	"GMM:16.7;GMM:11.1.10"	"secondary metabolism.wax;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase"		"GO:0016747;GO:0016020;GO:0006633"	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;fatty acid biosynthetic process"	FAE4	"FAE4;g7412.t1;Cre07.g320550.t1.1;Cre07.g320550.t1.1;FAE4;g7412.t1"	"FAE4;FAE4"	"Putative 3-keto-acyl-CoA synthase (very long chain fatty acid condensing enzyme), may be a beta-ketoacyl-acyl-carrier-protein synthase; similar to chalcone and stilbene synthases, and polyketide synthases;Putative 3-keto-acyl-CoA synthase (very long chain fatty acid condensing enzyme), may be a beta-ketoacyl-acyl-carrier-protein synthase; similar to chalcone and stilbene synthases, and polyketide synthases"
+Cre07.g349700	GMM:30.11	signalling.light	Chloroplast				"Cre07.g349700.t1.1;g8136.t1;Tic62-NAD-2"		"Homology to predicted nucleoside-diphosphate-sugar epimerases"
+Cre07.g325150	GMM:11.9.2.1	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase"	Mitochondrion	GO:0006629	"lipid metabolic process"	TGL12	"g7511.t1;TGL12;TGL12;g7511.t1"		
+Cre07.g346100	GMM:28.2	DNA.repair		"GO:0006281;GO:0004519"	"DNA repair;endonuclease activity"		"g8052.t1;g8052.t1;g8052.t1"		
+Cre07.g344100				"GO:0008168;GO:0006479"	"methyltransferase activity;protein methylation"				
+Cre07.g318209	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Chloroplast	GO:0005515	"protein binding"		"g7355.t1;Cre07.g318209.t1.1"		
+Cre07.g355550			"Secretory pathway"	"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		g8268.t1		
+Cre07.g356283							g8283.t1		
+Cre07.g348250							"g8103.t1;Cre07.g348250.t1.1"		
+Cre07.g321800							"g7437.t1;Cre07.g321800.t1.1"		
+Cre07.g322000	GMM:13.1.5.3	"amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine"	"Secretory pathway"			CSD2	"CSD2;Cre07.g322000.t1.1;NIFS2;g7441.t1;CSD2;g7441.t1;NIFS2;Cre07.g322000.t1.1;g7441.t1;NIFS2;Cre07.g322000.t1.1;CSD2;CSD2;g7441.t1;Cre07.g322000.t1.1;NIFS2"		"Similar to Sll0704 (Synechocystis Csd2), in particular amino acids around active site.;Similar to Sll0704 (Synechocystis Csd2), in particular amino acids around active site.;Similar to Sll0704 (Synechocystis Csd2), in particular amino acids around active site.;Similar to Sll0704 (Synechocystis Csd2), in particular amino acids around active site."
+Cre07.g317864							"g7349.t3;Cre07.g317900.t2.1"		
+Cre07.g331550	GMM:13.1.5.1.2	"amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoserine aminotransferase"	Chloroplast			PST1	"Cre07.g331550.t1.1;PST1;g7714.t1"	PST1	"phosphoserine aminotransferase (EC 2.6.1.52); phosphoserine transaminase; Target-P predicts mitochondrial targeting; plastid targeting predicted by homology"
+Cre07.g331000			Chloroplast				"g7701.t1;g7701.t1"		
+Cre07.g326400				GO:0016020	membrane		"Cre07.g326400.t1.1;g7590.t1"		
+Cre07.g353325			Mitochondrion						
+Cre07.g334900			Chloroplast				"g7798.t1;g7798.t1;g7798.t1;g7798.t1;g7798.t1;g7798.t1;g7798.t1"		
+Cre07.g346000			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g8050.t1;Cre07.g346000.t1.1"		
+Cre07.g349600	GMM:18.7	"Co-factor and vitamine metabolism.iron-sulphur clusters"	Mitochondrion			ISCA2	"Cre07.g349600.t1.1;g8134.t1;ISC2"	ISCA2	"Carrier protein, involved in Fe-S cluster trafficking; A-type scaffold protein, similar to HesB/YadR;"
+Cre07.g330100	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"	"GO:0016020;GO:0006486;GO:0004576"	"membrane;protein glycosylation;oligosaccharyl transferase activity"	GTR25	"GTR25;Cre07.g330100.t1.1;g7682.t1"	STT3B	"Catalytic subunit of the oligosaccharyl transferase (OST) complex that catalyzes the initial transfer of a defined glycan (Glc3Man9GlcNAc2 in eukaryotes) from the lipid carrier dolichol-pyrophosphate to an asparagine residue within an Asn-X-Ser/Thr consensus motif in nascent polypeptide chains, the first step in protein N-glycosylation; Orthologous to STT3B (AT1G34130) in Arabidopsis thaliana;"
+Cre07.g320093			"Secretory pathway"				"Cre07.g320093.t1.1;g7402.t1"		
+Cre07.g321200	"GMM:35.1.13;GMM:27.3.69"	"not assigned.no ontology.SET domain-containing protein;RNA.regulation of transcription.SET-domain transcriptional regulator family"					"Cre07.g321200.t1.1;g7425.t1;g7425.t1;Cre07.g321200.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre07.g337400			Chloroplast				"g7850.t1;Cre07.g337400.t1.1"		
+Cre07.g335000			"Secretory pathway"				"g7800.t2;g7800.t2;g7800.t2;g7800.t2"		
+Cre07.g328850	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CNK8	"CNK8;Cre07.g328850.t1.1;g7647.t1"		"contains a NIMA kinase domain and a C-terminal region with no database similarity except in Volvox"
+Cre07.g340850	"GMM:26.10;GMM:26.1;GMM:17.3.1.1.5;GMM:17.2.2;GMM:16.1.4.7"	"misc.cytochrome P450;misc.misc2;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.metabolic regulation;hormone metabolism.auxin.signal transduction;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743A2	"CYP19;g7978.t1;Cre07.g340850.t1.1;CYP19;Cre07.g340850.t1.1;g7978.t1;g7978.t1;Cre07.g340850.t1.1;CYP19"	"CYP743A2;CYP743A2;CYP743A2"	"Cytochrome P450-like protein. Cytochrome P450s are involved in the oxidative degradation of various compounds. Particularly well known for their role in the degradation of environmental toxins and mutagens. Structure is mostly alpha, and binds a heme cofactor. The CYP711 clan includes CYP711A1 of Arabidopsis (MAX1). This gene product makes a carotenoid-derived branch inhibiting hormone. The CYP743 family has best BLAST hits to CYP3 family members (animal sequences). The top 100 BLAST hits were all animal s;Cytochrome P450-like protein. Cytochrome P450s are involved in the oxidative degradation of various compounds. Particularly well known for their role in the degradation of environmental toxins and mutagens. Structure is mostly alpha, and binds a heme cofactor. The CYP711 clan includes CYP711A1 of Arabidopsis (MAX1). This gene product makes a carotenoid-derived branch inhibiting hormone. The CYP743 family has best BLAST hits to CYP3 family members (animal sequences). The top 100 BLAST hits were all animal s;Cytochrome P450-like protein. Cytochrome P450s are involved in the oxidative degradation of various compounds. Particularly well known for their role in the degradation of environmental toxins and mutagens. Structure is mostly alpha, and binds a heme cofactor. The CYP711 clan includes CYP711A1 of Arabidopsis (MAX1). This gene product makes a carotenoid-derived branch inhibiting hormone. The CYP743 family has best BLAST hits to CYP3 family members (animal sequences). The top 100 BLAST hits were all animal s"
+Cre07.g316600	GMM:29.4	"protein.postranslational modification"		"GO:0008138;GO:0006470;GO:0005856;GO:0005515"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation;cytoskeleton;protein binding"	MKP5	"Cre07.g316600.t1.1;g7320.t1;MKP5"		"Dual Specificity Protein Phosphatase 5 (DSP5); Dephosphorylates and inactivates MAP kinases; Dephosphorylates phosphotyrosine, phosphoserine, and phosphothreonine residues"
+Cre07.g324500						MMP22	"g7496.t1;Cre07.g324500.t1.1;MMP22"	MMP22	"Matrix metalloproteinase belonging to the M11 peptidase family"
+Cre07.g323890			Mitochondrion						
+Cre07.g319400	GMM:17.5.1	"hormone metabolism.ethylene.synthesis-degradation"							
+Cre07.g319250			Chloroplast				g7381.t1		
+Cre07.g338000	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0042555;GO:0006270;GO:0006260;GO:0005634;GO:0005524;GO:0003678;GO:0003677"	"MCM complex;DNA replication initiation;DNA replication;nucleus;ATP binding;DNA helicase activity;DNA binding"	MCM2	"Cre07.g338000.t1.1;g7864.t1;Cre07.g338000.t1.1;g7864.t1"	"MCM2;MCM2"	"Homologous to MCM2 DNA replication protein;Homologous to MCM2 DNA replication protein"
+Cre07.g314500	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g7276.t1;g7276.t1;g7276.t1;g7276.t1"		
+Cre07.g314400	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0005524;GO:0004003;GO:0003677"	"ATP binding;ATP-dependent DNA helicase activity;DNA binding"		g7274.t1		
+Cre07.g327750	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	TRP3	"g7624.t1;TRP3;TRP3;g7624.t1"		"Homology to osmosensitive TRP channel;Homology to osmosensitive TRP channel"
+Cre07.g333850							"g7776.t1;g7776.t1;g7776.t1;g7776.t1"		
+Cre07.g355900			Mitochondrion				"g8275.t1;g8275.t1"		
+Cre07.g332400			Mitochondrion				"Cre07.g332400.t1.1;g7733.t1;g7733.t1;Cre07.g332400.t1.1;g7733.t1;Cre07.g332400.t1.1;Cre07.g332400.t1.1;g7733.t1"		
+Cre07.g351800			Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	PTK12	"PTK12;CBC2;g8183.t2"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre07.g315200	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	RET1	"NRAMP3;g7292.t1;NRM3;NRAMP3;NRM3;g7292.t1;g7292.t1;NRM3;NRAMP3;NRM3;g7292.t1;NRAMP3"	"RET1;RET1;RET1;RET1"	"Ortholog of Ethylene Insensitive Protein 2 (EIN2) in Arabidopsis thaliana; N-terminus is NRAMP-like, related to MntH manganese transport protein;;Ortholog of Ethylene Insensitive Protein 2 (EIN2) in Arabidopsis thaliana; N-terminus is NRAMP-like, related to MntH manganese transport protein;;Ortholog of Ethylene Insensitive Protein 2 (EIN2) in Arabidopsis thaliana; N-terminus is NRAMP-like, related to MntH manganese transport protein;;Ortholog of Ethylene Insensitive Protein 2 (EIN2) in Arabidopsis thaliana; N-terminus is NRAMP-like, related to MntH manganese transport protein;"
+Cre07.g338850	GMM:28.2	DNA.repair					"g7882.t1;Cre07.g338850.t1.1;Cre07.g338850.t1.1;g7882.t1"		
+Cre07.g325758			"Secretory pathway"						
+Cre07.g335550			Mitochondrion				g7812.t1		
+Cre07.g336300							"g7827.t1;g7827.t1;g7827.t1;g7827.t1"		
+Cre07.g341950			Mitochondrion				g7948.t1		
+Cre07.g337050	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	"GO:0016558;GO:0008270;GO:0007031;GO:0005779;GO:0005515"	"protein import into peroxisome matrix;zinc ion binding;peroxisome organization;integral component of peroxisomal membrane;protein binding"		"g7842.t1;Cre07.g337050.t1.1;g7842.t1;Cre07.g337050.t1.1;Cre07.g337050.t1.1;g7842.t1"		
+Cre07.g354600							"g8249.t1;g8249.t1"		
+Cre07.g317421			Mitochondrion				"g7337.t1;Cre07.g317421.t1.1"		
+Cre07.g325761	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Mitochondrion	"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"		"Cre26.g774100.t1.1;Cre26.g774100.t1.2;g7575.t1;Cre26.g774100.t1.1;Cre26.g774100.t1.2;g7575.t1;Cre26.g774100.t1.1;g7575.t1;Cre26.g774100.t1.2;g7575.t1;Cre26.g774100.t1.2;Cre26.g774100.t1.1;g7575.t1;Cre26.g774100.t1.2;Cre26.g774100.t1.1;Cre26.g774100.t1.1;g7575.t1;Cre26.g774100.t1.2"		
+Cre07.g354100	GMM:27.3.54	"RNA.regulation of transcription.histone acetyltransferases"		"GO:0051536;GO:0008080;GO:0003824"	"iron-sulfur cluster binding;N-acetyltransferase activity;catalytic activity"	HAT4	"Cre07.g354100.t1.1;g8238.t1;HAT4"	HAT4	"GNAT superfamily histone acetyltransferase member, ChromDB HAG341; null-allele mutant was isolated (PMID 29743196)"
+Cre07.g357700			Chloroplast				"g8318.t1;g8318.t1"		
+Cre07.g345000							"g8027.t1;g8027.t1;g8027.t1;g8027.t1;g8027.t1;g8027.t1"		
+Cre07.g313143			Chloroplast				"Cre74.g795200.t1.1;g7247.t1;Cre74.g795200.t1.2;Cre74.g795200.t1.2;Cre74.g795200.t1.1;g7247.t1"		
+Cre07.g316500			"Secretory pathway"				"g7317.t1;g7317.t1"		
+Cre07.g336750							"g7836.t1;g7836.t1"		
+Cre07.g322650			Mitochondrion				"CSA1;g7454.t1;Cre07.g322650.t1.1;CSA1;Cre07.g322650.t1.1;g7454.t1;Cre07.g322650.t1.1;CSA1;g7454.t1;Cre07.g322650.t1.1;g7454.t1;CSA1"		"four close paralogs in C. reinhardtii, more distant homologs in Tetrabaena and Gonium;four close paralogs in C. reinhardtii, more distant homologs in Tetrabaena and Gonium;four close paralogs in C. reinhardtii, more distant homologs in Tetrabaena and Gonium;four close paralogs in C. reinhardtii, more distant homologs in Tetrabaena and Gonium"
+Cre07.g312150				"GO:0016787;GO:0005524;GO:0004003;GO:0003677"	"hydrolase activity;ATP binding;ATP-dependent DNA helicase activity;DNA binding"		g7223.t1		
+Cre07.g341850	GMM:29.2.3	protein.synthesis.initiation	Chloroplast	GO:0005525	"GTP binding"	INFB	"TIF2;INFB;IF2;Cre07.g341850.t1.1;EIF2;g7951.t1;INFB;TIF2;IF2;EIF2;Cre07.g341850.t1.1;g7951.t1;INFB;TIF2;EIF2;IF2;Cre07.g341850.t1.1;g7951.t1;EIF2;Cre07.g341850.t1.1;g7951.t1;TIF2;INFB;IF2;TIF2;INFB;IF2;Cre07.g341850.t1.1;EIF2;g7951.t1;g7951.t1;EIF2;Cre07.g341850.t1.1;IF2;TIF2;INFB;g7951.t1;EIF2;IF2;Cre07.g341850.t1.1;INFB;TIF2;EIF2;IF2;INFB;TIF2;g7951.t1;Cre07.g341850.t1.1"	"CIF2;CIF2;CIF2;CIF2;CIF2;CIF2;CIF2;CIF2"	
+Cre07.g353500	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	"GO:0006355;GO:0003700"	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	CGLD5A	"g8222.t1;g8222.t1"	"CGLD5A;CGLD5A"	"Conserved in the Green Lineage and Diatoms; null-allele mutant was isolated (PMID 29743196);Conserved in the Green Lineage and Diatoms; null-allele mutant was isolated (PMID 29743196)"
+Cre07.g319330			Mitochondrion						
+Cre07.g335300	GMM:11.1.3	"lipid metabolism.FA synthesis and FA elongation.ketoacyl ACP synthase"	Chloroplast			KAS2	"g7807.t1;Cre07.g335300.t1.1;g7807.t1;Cre07.g335300.t1.1"	"KAS2;KAS2"	"3-ketoacyl-CoA-synthase component of plastidic multimeric fatty acid synthase (FAS) complex;3-ketoacyl-CoA-synthase component of plastidic multimeric fatty acid synthase (FAS) complex"
+Cre07.g345800							g8046.t1		
+Cre07.g345500			Chloroplast				"Cre07.g345500.t1.1;g8039.t1"		
+Cre07.g353750	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP10	"g8229.t1;Cre07.g353750.t1.1"	MMP10	"belongs to the large VMP-family of metalloproteinases (identified in Volvox); the binding site of the catalytic metal ion in VMPs is QExxHxxGxxH not HExxHxxGxxH, therefore VMPs prefer copper for activity rather than zinc; extracellular matrix glycoproteins (cell wall glycoproteins) with a hydroxyproline-rich (HR) domain [PMID: 12034745]"
+Cre07.g336250			Mitochondrion				"g7826.t1;Cre07.g336250.t1.1"		
+Cre07.g312600			Mitochondrion				"g7233.t2;g7233.t2;g7233.t2"		
+Cre07.g324050	GMM:29.5.11.4.5.1	"protein.degradation.ubiquitin.E3.BTB/POZ Cullin3.Cullin3"		"GO:0031625;GO:0006511"	"ubiquitin protein ligase binding;ubiquitin-dependent protein catabolic process"	CUL1	"Cre07.g324050.t1.1;CUL1;g7485.t1;Cre07.g324050.t1.1;g7485.t1;CUL1"	"CUL3;CUL3"	"Cullin; Origninally annotated as CUL1, but has orthology to AtCUL3 in Arabidopsis thaliana;;Cullin; Origninally annotated as CUL1, but has orthology to AtCUL3 in Arabidopsis thaliana;"
+Cre07.g327050			Chloroplast				"Cre07.g327050.t1.1;g7605.t1;g7605.t1;Cre07.g327050.t1.1;Cre07.g327050.t1.1;g7605.t1;Cre07.g327050.t1.1;g7605.t1"		
+Cre07.g336050			"Secretory pathway"				"Cre07.g336050.t1.1;g7822.t1"		
+Cre07.g342250	"GMM:29.6.1;GMM:29.6"	"protein.folding.prefoldin and trigger factor;protein.folding"		"GO:0051082;GO:0016272;GO:0006457"	"unfolded protein binding;prefoldin complex;protein folding"	PFD2	"Cre07.g342250.t1.1;PFD2;g7941.t1"	PFD2	"alpha-type subunit of molecular chaperone Prefoldin (PMID: 11599560); KE2 Family protein; has two coiled-coil domains separated by beta-sheet; stabilizes polypeptide chains prior to folding within CCT chaperonin, in particular tubulin; found in flagellar proteome"
+Cre07.g320750	"GMM:30.1.1;GMM:23.1.2"	"signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383"	"intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity"	CYG12	"CYG12;g7416.t1;g7416.t1;CYG12"		"contains N-terminal NO-sensing and dimerization domains; internal domain similar to guanylate cyclase 1 from Homo sapiens;contains N-terminal NO-sensing and dimerization domains; internal domain similar to guanylate cyclase 1 from Homo sapiens"
+Cre07.g325500	"GMM:19.10;GMM:19.1"	"tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase"	Chloroplast	"GO:0016851;GO:0009058"	"magnesium chelatase activity;biosynthetic process"	CHLH1	"CHLH1;MCH1;g7518.t1"	CHLH1	"Magnesium chelatase H subunit, chloroplast precursor; Chlamydomonas mutants with defects in this protein are chl1 and brs-1 and result in a brown phenotype [PMID: 11713666; PMID: 4436384]. Orthologous to the bacterial protein BchH [PMID: 9359397]; binds protoporphyrin and is acted upon by the ChlI:ChlD complex for magnesium insertion [PMID: 11469861]; interacts with GUN4 and may be involved in chloroplast signalling: Gene is also known as GUN5 in Arabidopsis thaliana [PMID: 11172074; 12574634]; Transcripti"
+Cre07.g322176	GMM:27.2	RNA.transcription		"GO:0032549;GO:0006351;GO:0005634;GO:0003899;GO:0003677"	"ribonucleoside binding;transcription, DNA-templated;nucleus;DNA-directed RNA polymerase activity;DNA binding"		"g7444.t1;g7444.t1;g7444.t1;g7444.t1;g7444.t1;g7444.t1;g7444.t1"		
+Cre07.g337350							"GT90-8;GT90F8;g7849.t1;GT90F8;g7849.t1;GT90-8;g7849.t1;GT90F8;GT90-8;GT90-8;GT90F8;g7849.t1"		
+Cre07.g347350			"Secretory pathway"	"GO:0048024;GO:0005634"	"regulation of mRNA splicing, via spliceosome;nucleus"	FIP37A	"FIP37;g8083.t1"	FIP37A	"Along with Cre07.g347250, is co-orthologous to FIP37, required for chromosome maintenance in Arabidopsis and yeast; Target of FKB12/rapamycin complex; next to close paralog Cre07.g347250"
+Cre07.g315450	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"			CSG2	"CSG2;g7299.t1"		"Belongs to family G of Chlamydomonadales-specific proteins, all on chromosome 7; no known function; null-allele mutant was isolated (PMID 29743196)"
+Cre07.g352251	GMM:29.2.2.3.5	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases"		GO:0004386	"helicase activity"		g8193.t1		
+Cre07.g317908	GMM:28.2	DNA.repair	Mitochondrion				"Cre07.g317908.t1.1;g7350.t1"		
+Cre07.g312850			"Secretory pathway"				"g7240.t1;Cre07.g312850.t1.1;g7240.t1;Cre07.g312850.t1.1;Cre07.g312850.t1.1;g7240.t1"		
+Cre07.g339000							"CrRbcXIIb;g7885.t1;CrRbcXIIb;g7885.t1"	"RBCX2B;RBCX2B"	
+Cre07.g313800						CGL138	"g7262.t1;Cre07.g313800.t1.1"	CGL138	
+Cre07.g319750	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL35	"HEL35;g7395.t1;Cre07.g319750.t1.1"		
+Cre07.g341551							"g7958.t1;g7958.t1"		
+Cre07.g330600	GMM:23.2	"nucleotide metabolism.degradation"	"Secretory pathway"	GO:0016787	"hydrolase activity"		g7693.t1		
+Cre07.g321550				"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"BLZ5;Cre07.g321550.t1.1;g7432.t1"	SOR1	"Basic-leucine zipper (bZIP) transcription factor, mutant sor1 is Rose Bengal resistant and constitutively expresses RES response genes"
+Cre07.g317150						MKP7	"g7331.t1;Cre07.g317150.t1.1;MKP7;MKP7;Cre07.g317150.t1.1;g7331.t1"		
+Cre07.g341100			Chloroplast				"g7973.t2;Cre07.g341100.t1.1;Cre07.g341100.t1.1;g7973.t2"		
+Cre07.g352650							"g8202.t1;Cre07.g352650.t1.1"		
+Cre07.g335150	"GMM:33.3;GMM:27.3.28"	"development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"g7803.t1;g7803.t1;g7803.t1;g7803.t1;g7803.t1;g7803.t1;g7803.t1;g7803.t1"		
+Cre07.g348850	GMM:29.2.1.1.1.2.2	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L2"	Mitochondrion	"GO:0016740;GO:0015934;GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723"	"transferase activity;large ribosomal subunit;translation;ribosome;intracellular;structural constituent of ribosome;RNA binding"	MRPL2	"Cre07.g348850.t1.1;g8115.t1;uL2m"	MRPL2	
+Cre07.g349520				"GO:0006468;GO:0005524;GO:0005515;GO:0004672"	"protein phosphorylation;ATP binding;protein binding;protein kinase activity"		"g8132.t1;g8132.t1"		
+Cre07.g342700	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"				"g7931.t2;g7931.t2"		
+Cre07.g320000							"Cre07.g320000.t1.1;g7400.t3;GT90-38;GT90F38"		
+Cre07.g326150	GMM:27.3.12	"RNA.regulation of transcription.C3H zinc finger family"					"g7585.t1;g7585.t1"		
+Cre07.g356960							"Cre07.g356951.t1.2;g8298.t1"		
+Cre07.g325000	"GMM:26.10;GMM:17.1.1.2.1"	"misc.cytochrome P450;hormone metabolism.abscisic acid.synthesis-degradation.degradation.8-hydroxylase"	Chloroplast	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP738A1	"g7507.t1;CYP18;g7507.t1;CYP18;CYP18;g7507.t1;g7507.t1;CYP18;g7507.t1;CYP18"	"CYP738A1;CYP738A1;CYP738A1;CYP738A1;CYP738A1"	"Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols.;Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols.;Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols.;Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols.;Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols."
+Cre07.g329200	GMM:27.1.2	"RNA.processing.RNA helicase"							
+Cre07.g318276							g7357.t1		
+Cre07.g325713				"GO:0006355;GO:0005634;GO:0003677;GO:0003676"	"regulation of transcription, DNA-templated;nucleus;DNA binding;nucleic acid binding"		"g7527.t1;Cre26.g772000.t1.1;Cre26.g772000.t1.2;Cre26.g772000.t1.2;g7527.t1;Cre26.g772000.t1.1;g7527.t1;Cre26.g772000.t1.1;Cre26.g772000.t1.2;g7527.t1;Cre26.g772000.t1.1;Cre26.g772000.t1.2"		
+Cre07.g341300	"GMM:33.99;GMM:30.11"	"development.unspecified;signalling.light"		GO:0005634	nucleus	XAP5	"g7965.t1;Cre07.g341300.t1.1"	XAP5	
+Cre07.g355300							"Cre07.g355300.t1.1;g8262.t1;BES5;BES5;Cre07.g355300.t1.1;g8262.t1"		"Similar to Bestrophin, RFP-TM, chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family that includes Low-CO2-inducible membrane protein LCI11;Similar to Bestrophin, RFP-TM, chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family that includes Low-CO2-inducible membrane protein LCI11"
+Cre07.g325727	"GMM:35.1.1;GMM:34.16"	"not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems"					"g7542.t1;Cre26.g772650.t1.1;g7542.t1;Cre26.g772650.t1.1"		
+Cre07.g333252	GMM:2.2.2.3	"major CHO metabolism.degradation.starch.glucan water dikinase"							
+Cre07.g356500			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g8288.t1;g8288.t1;g8288.t1;g8288.t1"		
+Cre07.g343800				GO:0005515	"protein binding"		"Cre07.g343800.t1.1;g7999.t1"		
+Cre07.g345250							"g8034.t1;g8034.t1;g8034.t1;g8034.t1"		
+Cre07.g327500							"g7618.t1;Cre07.g327500.t1.1"		
+Cre07.g350926							g8165.t1		
+Cre07.g324750			Chloroplast				"Cre07.g324750.t1.1;g7501.t1;g7501.t1;Cre07.g324750.t1.1"		
+Cre07.g325400	"GMM:16.5.1.1.1.5;GMM:13.1.4.4.3"	"secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.methylthioalkylmalate dehydrogenase (MAM-DH);amino acid metabolism.synthesis.branched chain group.leucine specific.3-isopropylmalate dehydrogenase"	Chloroplast	"GO:0055114;GO:0051287;GO:0016616;GO:0000287"	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;magnesium ion binding"	LEU3	"g7516.t1;Cre07.g325400.t1.1;LEU3"	LEU3	"Involved in branched chain amino acid biosynthesis; third committed step in Leu biosynthesis; probably chloroplastic; potential thioredoxin target [PMID: 15123830]"
+Cre07.g339850	"GMM:30.2.8.2;GMM:29.4.1;GMM:29.4"	"signalling.receptor kinases.leucine rich repeat VIII.type 2;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g7904.t1;g7904.t1;g7904.t1;g7904.t1"		
+Cre07.g324200	GMM:11.8	"lipid metabolism.exotics (steroids, squalene etc)"				BTA1	"Cre07.g324200.t1.1;g7488.t1;Cre07.g324200.t1.1;g7488.t1;g7488.t1;Cre07.g324200.t1.1"	"BTA1;BTA1;BTA1"	"Multidomain fusion of bacterial BtaA and BtaB-like domains for synthesis of the major extraplastidic lipid diacylglyceryl-N,N,N-trimethylhomoserine. Acclimation to changing CO2 concentrations and light intensities was studied by Yamano et al. 2008;Multidomain fusion of bacterial BtaA and BtaB-like domains for synthesis of the major extraplastidic lipid diacylglyceryl-N,N,N-trimethylhomoserine. Acclimation to changing CO2 concentrations and light intensities was studied by Yamano et al. 2008;Multidomain fusion of bacterial BtaA and BtaB-like domains for synthesis of the major extraplastidic lipid diacylglyceryl-N,N,N-trimethylhomoserine. Acclimation to changing CO2 concentrations and light intensities was studied by Yamano et al. 2008"
+Cre07.g343333	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0016787;GO:0005524;GO:0004003;GO:0003677"	"hydrolase activity;ATP binding;ATP-dependent DNA helicase activity;DNA binding"				
+Cre07.g326650							"Cre07.g326650.t1.1;g7597.t1;g7597.t1;Cre07.g326650.t1.1"		
+Cre07.g349250			"Secretory pathway"				"Cre07.g349250.t1.1;g8126.t1"		
+Cre07.g343250	GMM:3.3	"minor CHO metabolism.sugar alcohols"					"g7984.t1;g7984.t1;g7984.t1;g7984.t1"		
+Cre07.g320300			"Secretory pathway"				"Cre07.g320300.t1.1;g7407.t1"		
+Cre07.g347900							g8095.t1		
+Cre07.g315950							"g7308.t1;g7308.t1;g7308.t1;g7308.t1;g7308.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre07.g333535	GMM:29.5.7	protein.degradation.metalloprotease		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	CAV9	"g7755.t1;g7755.t1;g7755.t1;g7755.t1;g7755.t1;g7755.t1;g7755.t1;g7755.t1"		
+Cre07.g351450	GMM:29.4.1	"protein.postranslational modification.kinase"	Chloroplast	GO:0007094	"mitotic spindle assembly checkpoint"		"g8176.t1;g8176.t1"		
+Cre07.g313550			Chloroplast				g7257.t1		
+Cre07.g314900	"GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL34	"g7286.t1;HEL34"		
+Cre07.g320650			"Secretory pathway"	"GO:0006506;GO:0004584"	"GPI anchor biosynthetic process;dolichyl-phosphate-mannose-glycolipid alpha-mannosyltransferase activity"	PIGV	"PIGV;g7414.t1"	PIGV1	"transfers hexosyl groups"
+Cre07.g337933							g7862.t1		
+Cre07.g350400	"GMM:31.3.1;GMM:26.23"	"cell.cycle.peptidylprolyl isomerase;misc.rhodanese"	"Secretory pathway"			PIN3	"PIN3;g8151.t1;PIN3;g8151.t1;PIN3;g8151.t1;PIN3;g8151.t1"	"PIN3;PIN3;PIN3;PIN3"	"Peptidyl-prolyl cis-trans isomerase, parvulin-type, Ppi-C type (EC 5.2.1.8). Rhodanese domain; most similar to AtPIN3 (At5g19370) [PMID: 15051864, PMID:15047905];Peptidyl-prolyl cis-trans isomerase, parvulin-type, Ppi-C type (EC 5.2.1.8). Rhodanese domain; most similar to AtPIN3 (At5g19370) [PMID: 15051864, PMID:15047905];Peptidyl-prolyl cis-trans isomerase, parvulin-type, Ppi-C type (EC 5.2.1.8). Rhodanese domain; most similar to AtPIN3 (At5g19370) [PMID: 15051864, PMID:15047905];Peptidyl-prolyl cis-trans isomerase, parvulin-type, Ppi-C type (EC 5.2.1.8). Rhodanese domain; most similar to AtPIN3 (At5g19370) [PMID: 15051864, PMID:15047905]"
+Cre07.g315850				GO:0055114	"oxidation-reduction process"		g7306.t1		
+Cre07.g346800			Chloroplast				"g8070.t1;Cre07.g346800.t1.1;FAO8;FAO8;Cre07.g346800.t1.1;g8070.t1;Cre07.g346800.t1.1;FAO8;g8070.t1;g8070.t1;FAO8;Cre07.g346800.t1.1"		"FAD-dependent oxidoreductase, possibly a D-amino-acid dehydrogenase;FAD-dependent oxidoreductase, possibly a D-amino-acid dehydrogenase;FAD-dependent oxidoreductase, possibly a D-amino-acid dehydrogenase;FAD-dependent oxidoreductase, possibly a D-amino-acid dehydrogenase"
+Cre07.g328000			"Secretory pathway"				"Cre07.g328000.t1.1;g7630.t1;g7630.t1;Cre07.g328000.t1.1;g7630.t1;Cre07.g328000.t1.1;Cre07.g328000.t1.1;g7630.t1;g7630.t1;Cre07.g328000.t1.1;Cre07.g328000.t1.1;g7630.t1"		
+Cre07.g317576			"Secretory pathway"						
+Cre07.g338602	GMM:28.2	DNA.repair		"GO:0006281;GO:0003684"	"DNA repair;damaged DNA binding"	POLH1	"g7876.t1;g7876.t1"	"POLH1;POLH1"	"Homologous to eukaryotic ; Xeroderma pigmentosum complementation group Variant (XPV); Rad30; Chlamydomonas has at least two homologues of Rad30. Class X polymerase; nuclear; functions in translesion synthesis (TLS) of damaged DNA.;Homologous to eukaryotic ; Xeroderma pigmentosum complementation group Variant (XPV); Rad30; Chlamydomonas has at least two homologues of Rad30. Class X polymerase; nuclear; functions in translesion synthesis (TLS) of damaged DNA."
+Cre07.g314150	"GMM:16.1.4.3;GMM:16.1.4"	"secondary metabolism.isoprenoids.carotenoids.zeta-carotene desaturase;secondary metabolism.isoprenoids.carotenoids"	Chloroplast			ZDS1	"Cre07.g314150.t1.1;ZDS;g7269.t1"	ZDS1	"Zeta-carotene desaturase (carotene 7,8-desaturase), chloroplast precursor. Previously annotated as ZDS"
+Cre07.g338500			"Secretory pathway"				"g7874.t1;g7874.t1;g7874.t1"		
+Cre07.g346600			Chloroplast				"Cre07.g346600.t1.1;g8065.t1"		
+Cre07.g332050							"g7724.t1;Cre07.g332050.t1.1;g7724.t1;Cre07.g332050.t1.1;Cre07.g332050.t1.1;g7724.t1"		
+Cre07.g316050	"GMM:29.9;GMM:1.1.99"	"protein.co-chaperones;PS.lightreaction.unspecified"	Chloroplast			CDJ2	"CDJ2;g7310.t1;Cre07.g316050.t1.1;Cre07.g316050.t1.1;g7310.t1;CDJ2"		"Class III J-domain protein, not involved in protein refolding; binds and delivers VIPP1 to HSP7B; conserved in higher plants, but not in cyanobacteria;Class III J-domain protein, not involved in protein refolding; binds and delivers VIPP1 to HSP7B; conserved in higher plants, but not in cyanobacteria"
+Cre07.g318500	"GMM:16.7;GMM:11.1.10"	"secondary metabolism.wax;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase"		"GO:0016747;GO:0016020;GO:0006633"	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;fatty acid biosynthetic process"		"CYA8;g7363.t1"		"Similar to chalcone and stilbene synthases and related to polyketide sythases"
+Cre07.g332300	GMM:2.2.2.3	"major CHO metabolism.degradation.starch.glucan water dikinase"	Chloroplast	"GO:0016310;GO:0016301;GO:0005524"	"phosphorylation;kinase activity;ATP binding"	GWD2	"Cre07.g332300.t1.1;g7731.t1;1;GWD2;GWD2;1;Cre07.g332300.t1.1;g7731.t1"	"GWD2;GWD2"	"R1 protein; phosphorylates the C-3 and C-6 positions of alpha glucans with the beta phosphate of ATP;R1 protein; phosphorylates the C-3 and C-6 positions of alpha glucans with the beta phosphate of ATP"
+Cre07.g338400	GMM:35.1.40	"not assigned.no ontology.glycine rich proteins"					g7872.t1		
+Cre07.g341600	"GMM:29.9;GMM:29.6.2.6;GMM:29.6"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding"	Chloroplast	"GO:0051087;GO:0042803;GO:0006457;GO:0000774"	"chaperone binding;protein homodimerization activity;protein folding;adenyl-nucleotide exchange factor activity"	"CGE1b;CGE1"	"g7956.t2;Cre07.g341600.t1.1;CGE1;g7956.t2;Cre07.g341600.t1.1;CGE1"	"CGE1;CGE1"	"Chloroplast GrpE homolog, nucleotide release factor, co-chaperone of HSP70B, chloroplast-targeted; first intron is alternatively spliced : isoform CGE1b is more prominent at higher temperatures (>30 C) than CGE1a (which lacks a VQ dipeptide at position 4 of mature protein and prevails at lower temperatures); the protein is mostly localized to chloroplast stroma; participates with HSP70B in assembly/disassembly of VIPP1 oligomers.;Chloroplast GrpE homolog, nucleotide release factor, co-chaperone of HSP70B, chloroplast-targeted; first intron is alternatively spliced : isoform CGE1b is more prominent at higher temperatures (>30 C) than CGE1a (which lacks a VQ dipeptide at position 4 of mature protein and prevails at lower temperatures); the protein is mostly localized to chloroplast stroma; participates with HSP70B in assembly/disassembly of VIPP1 oligomers."
+Cre07.g333000	GMM:29.5.3	"protein.degradation.cysteine protease"		"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP4	"CEP4;g7746.t1;g7746.t1;CEP4;CEP4;g7746.t1;CEP4;g7746.t1;g7746.t1;CEP4;CEP4;g7746.t1;CEP4;g7746.t1"		"Cysteine endopeptidases (EC 3.4.22), C1A family (papain-type); most similar to counting factor associated peptidase of Dictyostelium discoideum and to insect proteinases possibly involved in defense mechanisms (PMID: 10050046); contains N-terminal cathepsin propeptide inhibitor domain (I29) domain;Cysteine endopeptidases (EC 3.4.22), C1A family (papain-type); most similar to counting factor associated peptidase of Dictyostelium discoideum and to insect proteinases possibly involved in defense mechanisms (PMID: 10050046); contains N-terminal cathepsin propeptide inhibitor domain (I29) domain;Cysteine endopeptidases (EC 3.4.22), C1A family (papain-type); most similar to counting factor associated peptidase of Dictyostelium discoideum and to insect proteinases possibly involved in defense mechanisms (PMID: 10050046); contains N-terminal cathepsin propeptide inhibitor domain (I29) domain;Cysteine endopeptidases (EC 3.4.22), C1A family (papain-type); most similar to counting factor associated peptidase of Dictyostelium discoideum and to insect proteinases possibly involved in defense mechanisms (PMID: 10050046); contains N-terminal cathepsin propeptide inhibitor domain (I29) domain;Cysteine endopeptidases (EC 3.4.22), C1A family (papain-type); most similar to counting factor associated peptidase of Dictyostelium discoideum and to insect proteinases possibly involved in defense mechanisms (PMID: 10050046); contains N-terminal cathepsin propeptide inhibitor domain (I29) domain;Cysteine endopeptidases (EC 3.4.22), C1A family (papain-type); most similar to counting factor associated peptidase of Dictyostelium discoideum and to insect proteinases possibly involved in defense mechanisms (PMID: 10050046); contains N-terminal cathepsin propeptide inhibitor domain (I29) domain;Cysteine endopeptidases (EC 3.4.22), C1A family (papain-type); most similar to counting factor associated peptidase of Dictyostelium discoideum and to insect proteinases possibly involved in defense mechanisms (PMID: 10050046); contains N-terminal cathepsin propeptide inhibitor domain (I29) domain"
+Cre07.g335750	GMM:31.6.1.3.2.2	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B"	Mitochondrion	GO:0005515	"protein binding"	IFT88	"g7816.t1;g7816.t1"	"IFT88;IFT88"	"Component of IFT-B1 particle; Has 2 TPR motifs;Component of IFT-B1 particle; Has 2 TPR motifs"
+Cre07.g339150	"GMM:29.6.2.2;GMM:29.6;GMM:1.3.13"	"protein.folding.chaperones and co-chaperones.HSP60s;protein.folding;PS.calvin cycle.rubisco interacting"	Chloroplast.Stroma	GO:0005524	"ATP binding"	CPN60B2	"CPN60 beta2;CPN60B2;g7889.t1;CPN60 beta2;g7889.t1;CPN60B2;CPN60B2;CPN60 beta2;g7889.t1;g7889.t1;CPN60B2;CPN60 beta2;CPN60B2;g7889.t1;CPN60 beta2;CPN60 beta2;g7889.t1;CPN60B2;CPN60B2;CPN60 beta2;g7889.t1;g7889.t1;CPN60B2;CPN60 beta2;g7889.t1;CPN60B2;CPN60 beta2;CPN60 beta2;g7889.t1;CPN60B2;CPN60 beta2;g7889.t1;CPN60B2"	"CPN60B2;CPN60B2;CPN60B2;CPN60B2;CPN60B2;CPN60B2;CPN60B2;CPN60B2;CPN60B2;CPN60B2;CPN60B2"	"GroEL/HSP60-homolog, chloroplast chaperonin; forms with CPN60A and CPN60B1 a tetradecameric complex of stochiometry A-6:B1-2:B2-6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;;GroEL/HSP60-homolog, chloroplast chaperonin; forms with CPN60A and CPN60B1 a tetradecameric complex of stochiometry A-6:B1-2:B2-6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;;GroEL/HSP60-homolog, chloroplast chaperonin; forms with CPN60A and CPN60B1 a tetradecameric complex of stochiometry A-6:B1-2:B2-6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;;GroEL/HSP60-homolog, chloroplast chaperonin; forms with CPN60A and CPN60B1 a tetradecameric complex of stochiometry A-6:B1-2:B2-6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;;GroEL/HSP60-homolog, chloroplast chaperonin; forms with CPN60A and CPN60B1 a tetradecameric complex of stochiometry A-6:B1-2:B2-6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;;GroEL/HSP60-homolog, chloroplast chaperonin; forms with CPN60A and CPN60B1 a tetradecameric complex of stochiometry A-6:B1-2:B2-6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;;GroEL/HSP60-homolog, chloroplast chaperonin; forms with CPN60A and CPN60B1 a tetradecameric complex of stochiometry A-6:B1-2:B2-6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;;GroEL/HSP60-homolog, chloroplast chaperonin; forms with CPN60A and CPN60B1 a tetradecameric complex of stochiometry A-6:B1-2:B2-6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;;GroEL/HSP60-homolog, chloroplast chaperonin; forms with CPN60A and CPN60B1 a tetradecameric complex of stochiometry A-6:B1-2:B2-6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;;GroEL/HSP60-homolog, chloroplast chaperonin; forms with CPN60A and CPN60B1 a tetradecameric complex of stochiometry A-6:B1-2:B2-6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;;GroEL/HSP60-homolog, chloroplast chaperonin; forms with CPN60A and CPN60B1 a tetradecameric complex of stochiometry A-6:B1-2:B2-6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;"
+Cre07.g352900	GMM:31.2	cell.division		GO:0005515	"protein binding"		"g8207.t1;g8207.t1;g8207.t1;g8207.t1;g8207.t1"		
+Cre07.g331650							"g7716.t1;Cre07.g331650.t1.1;Cre07.g331650.t1.1;g7716.t1;g7716.t1;Cre07.g331650.t1.1"		
+Cre07.g317050	"GMM:29.5.11.1;GMM:29.5.11;GMM:29.2.1.2.2.40;GMM:29.2.1.2.1.27;GMM:29.1"	"protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27;protein.aa activation"	Chloroplast	GO:0005515	"protein binding"	UBQ6	"UBQ6;Cre07.g317050.t1.1;g7329.t1;Cre07.g317050.t1.1;UBQ6;g7329.t1"	"UBQ6;UBQ6"	"contains an N-terminal RING-like Zn-finger domain, an ubiquitin domain, among other regions with no database similarity;contains an N-terminal RING-like Zn-finger domain, an ubiquitin domain, among other regions with no database similarity"
+Cre07.g324233			Chloroplast				"Cre07.g324250.t1.3;g7491.t1"		"belongs to a cluster of 5 closely-related genes on chromosome_7, with homologs only in Chlorophyceae;"
+Cre07.g322900	GMM:11.9.2.1	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase"		GO:0006629	"lipid metabolic process"		"g7460.t1;g7460.t1"		
+Cre07.g315300	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"				CSG4	"g7294.t1;CSG4;Cre07.g315300.t1.1"		"Belongs to family G of Chlamydomonadales-specific proteins, all on chromosome 7; no known function"
+Cre07.g354976			Chloroplast						
+Cre07.g354550			Mitochondrion				"g8247.t1;FAP65;g8247.t1;FAP65"		
+Cre07.g346500	GMM:29.4	"protein.postranslational modification"	Mitochondrion				"g8062.t1;Cre07.g346500.t1.1"		
+Cre07.g346400							"g8059.t1;FKM6"		"FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces"
+Cre07.g313100							g7245.t1		
+Cre07.g328950							"g7649.t1;g7649.t1"		
+Cre07.g314600	"GMM:7.2.4;GMM:1.3.10"	"OPP.non-reductive PP.ribose 5-phosphate isomerase;PS.calvin cycle.Rib5P Isomerase"	Chloroplast	"GO:0009052;GO:0004751"	"pentose-phosphate shunt, non-oxidative branch;ribose-5-phosphate isomerase activity"	RPI2	"Cre07.g314600.t1.1;g7278.t1;g7278.t1;Cre07.g314600.t1.1"	"RPI2;RPI2"	
+Cre07.g321900							"g7439.t1;Cre07.g321900.t1.1"		
+Cre07.g323250			Mitochondrion				"g7467.t1;g7467.t1;g7467.t1"		
+Cre07.g318900						DNJ2	"DNJ2;g7371.t1"		"DnaJ-like protein 2; contains N-terminal J-domain (pfam226) and ankyrin repeat (pfam23); no N-terminal extension, thus probably cytosolic"
+Cre07.g339900	"GMM:30.2.20;GMM:3.6;GMM:29.4.1;GMM:29.4"	"signalling.receptor kinases.wheat LRK10 like;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	MAPKKK5	"g7907.t1;MAPKKK5;MAPKKK5;g7907.t1;g7907.t1;MAPKKK5"		"MAPKKK5; Mitogen Activated Protein Kinase Kinase Kinase 5; MAP3K5;MAPKKK5; Mitogen Activated Protein Kinase Kinase Kinase 5; MAP3K5;MAPKKK5; Mitogen Activated Protein Kinase Kinase Kinase 5; MAP3K5"
+Cre07.g336850							"g7838.t1;Cre07.g336850.t1.1"		
+Cre07.g325719							"Cre26.g772300.t1.2;Cre26.g772300.t1.1;g7533.t1"		
+Cre07.g317650				"GO:0016758;GO:0008152"	"transferase activity, transferring hexosyl groups;metabolic process"		"g7345.t1;g7345.t1"		
+Cre07.g357000			Chloroplast				"g8301.t1;Cre07.g357000.t1.1"		
+Cre07.g354900									
+Cre07.g351850	GMM:29.4	"protein.postranslational modification"		GO:0008080	"N-acetyltransferase activity"		"NAT21;g8185.t1;Cre07.g351850.t1.1"		"Related to GCN5"
+Cre07.g348150			Chloroplast				"g8101.t1;Cre07.g348150.t1.1"		
+Cre07.g327687							"Cre07.g327687.t1.1;g7622.t1;g7622.t1;Cre07.g327687.t1.1"		
+Cre07.g343750			Chloroplast				"Cre07.g343750.t1.1;g7997.t1"		
+Cre07.g324600	GMM:31.4	"cell.vesicle transport"		"GO:0015031;GO:0008565"	"protein transport;protein transporter activity"	AP2S2	"g7498.t1;Cre07.g324600.t1.1;AP2S2"	AP2S2	"Expressed Protein. Sigma2-Adaptin. Clathrin Adaptor Complex Small Subunit, putative member of AP-2 complex"
+Cre07.g353850			Mitochondrion				"Cre07.g353850.t1.1;g8232.t1;Cre07.g353850.t1.1;g8232.t1;Cre07.g353850.t1.1;g8232.t1"		
+Cre07.g340250	"GMM:30.2.8.2;GMM:30.2.20;GMM:29.4.1.57;GMM:29.4.1;GMM:29.4"	"signalling.receptor kinases.leucine rich repeat VIII.type 2;signalling.receptor kinases.wheat LRK10 like;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"STK8;g7915.t1;STPK8;g7915.t1;STPK8;STK8"		"Serine/Threonine Protein Kinase Homolog 8, putative;Serine/Threonine Protein Kinase Homolog 8, putative"
+Cre07.g329850	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	KCN5	"KCN5;CKIN2.16;g7675.t1"	SNRK2P	"Mediates abiotic stress responses; Previously annotated a a K+ channel protein, but this is unlikely because no GxG triades are present in the putative pore domain"
+Cre07.g355466	"GMM:28.2;GMM:28.1;GMM:27.3.34"	"DNA.repair;DNA.synthesis/chromatin structure;RNA.regulation of transcription.orphan family"	Mitochondrion			AGE2	"AGE2;g8266.t1;g8266.t1;AGE2;AGE2;g8266.t1"	"AGE2;AGE2;AGE2"	"A/G-specific adenine glycosylase/endonuclease III. DNA repair glycosylase involved in base-excision repair. Oxidizatively damaged G (8-oxoG) can mispair with A and C.;A/G-specific adenine glycosylase/endonuclease III. DNA repair glycosylase involved in base-excision repair. Oxidizatively damaged G (8-oxoG) can mispair with A and C.;A/G-specific adenine glycosylase/endonuclease III. DNA repair glycosylase involved in base-excision repair. Oxidizatively damaged G (8-oxoG) can mispair with A and C."
+Cre07.g315550			Mitochondrion	GO:0005524	"ATP binding"		"g7301.t1;g7301.t1"		
+Cre07.g336400			Mitochondrion				g7829.t1		
+Cre07.g319310									
+Cre07.g323450	GMM:29.2.2.3.3	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases"		"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"SMM24;Cre07.g323450.t1.1;g7472.t1"		
+Cre07.g353555				GO:0046983	"protein dimerization activity"		"g8224.t1;Cre07.g353555.t1.1"		
+Cre07.g350800			Mitochondrion				"g8161.t1;g8161.t1"		
+Cre07.g350750	GMM:1.1.40	"PS.lightreaction.cyclic electron flow-chlororespiration"		"GO:0055114;GO:0009916"	"oxidation-reduction process;alternative oxidase activity"	PTOX1	"Cre07.g350750.t1.1;PTO1;g8160.t1;Cre07.g350750.t1.1;PTO1;g8160.t1;g8160.t1;Cre07.g350750.t1.1;PTO1"	"PTOX1;PTOX1;PTOX1"	"Plastoquinol oxydase, regulates photosyntetic electron flow;Plastoquinol oxydase, regulates photosyntetic electron flow;Plastoquinol oxydase, regulates photosyntetic electron flow"
+Cre07.g321100				"GO:0016773;GO:0005975"	"phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process"		"g7423.t1;Cre07.g321100.t1.1"		
+Cre07.g322700							"Cre07.g322700.t1.1;CSA2;g7455.t1"		"four close paralogs in C. reinhardtii, more distant homologs in Tetrabaena and Gonium"
+Cre07.g331300	GMM:2.1.2.1	"major CHO metabolism.synthesis.starch.AGPase"	Chloroplast	"GO:0016779;GO:0009058"	"nucleotidyltransferase activity;biosynthetic process"	AGP3	"Cre07.g331300.t1.1;AGP3;g7708.t1;AGP3;g7708.t1;Cre07.g331300.t1.1;AGP3;g7708.t1;Cre07.g331300.t1.1"	"AGP3;AGP3;AGP3"	"ADP-glucose pyrophosphorylase large subunit 3; Glucose-1-phosphate adenylyltransferase / ADP-glucose synthase; regulatory subunit catalyzes the formation of the glucosyl nucleotide from ATP and glucose-1-phosphate; contains nucleotidyl transferase domain; involved in starch metabolism;ADP-glucose pyrophosphorylase large subunit 3; Glucose-1-phosphate adenylyltransferase / ADP-glucose synthase; regulatory subunit catalyzes the formation of the glucosyl nucleotide from ATP and glucose-1-phosphate; contains nucleotidyl transferase domain; involved in starch metabolism;ADP-glucose pyrophosphorylase large subunit 3; Glucose-1-phosphate adenylyltransferase / ADP-glucose synthase; regulatory subunit catalyzes the formation of the glucosyl nucleotide from ATP and glucose-1-phosphate; contains nucleotidyl transferase domain; involved in starch metabolism"
+Cre07.g338200				GO:0005515	"protein binding"		"g7868.t1;Cre07.g338200.t1.1"		
+Cre07.g323950	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PHX23	"Cre07.g323950.t1.1;PHX23;PFH23;g7483.t1"		
+Cre07.g357250			"Secretory pathway"				g8307.t1		
+Cre07.g333640			"Secretory pathway"						
+Cre07.g334300	"GMM:33.99;GMM:3.5;GMM:1.1.1.1"	"development.unspecified;minor CHO metabolism.others;PS.lightreaction.photosystem II.LHC-II"		"GO:0055085;GO:0016020;GO:0006811;GO:0005515;GO:0005216"	"transmembrane transport;membrane;ion transport;protein binding;ion channel activity"	TRP6	"g7785.t1;TRP6;g7785.t1;TRP6;TRP6;g7785.t1"	"TRP6;TRP6;TRP6"	"C-terminal domain similar to transient receptor potential Ca2+ channel, involved in Ca2+ homeostasis; N-terminal region has G-protein beta WD-40 repeats; member of a family of at least 8 TRP proteins;C-terminal domain similar to transient receptor potential Ca2+ channel, involved in Ca2+ homeostasis; N-terminal region has G-protein beta WD-40 repeats; member of a family of at least 8 TRP proteins;C-terminal domain similar to transient receptor potential Ca2+ channel, involved in Ca2+ homeostasis; N-terminal region has G-protein beta WD-40 repeats; member of a family of at least 8 TRP proteins"
+Cre07.g352400	"GMM:3.4.1;GMM:28.1"	"minor CHO metabolism.myo-inositol.poly-phosphatases;DNA.synthesis/chromatin structure"					"Cre07.g352400.t1.1;g8196.t1;IPP5"		"May be a phosphoinositide 5-phosphatase or inositol-polyphosphate 5-phosphatase"
+Cre07.g343600	GMM:3.3	"minor CHO metabolism.sugar alcohols"	"Secretory pathway"				g7993.t1		
+Cre07.g340950			Chloroplast			AXL4	"AXL4;g7976.t1"		"GT77 family"
+Cre07.g350250			"Secretory pathway"				"Cre07.g350250.t1.1;g8148.t1"		
+Cre07.g344668			"Secretory pathway"	"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		g8020.t1		
+Cre07.g339300	GMM:29.6.2.6	"protein.folding.chaperones and co-chaperones.co-chaperones"	Chloroplast	GO:0008270	"zinc ion binding"	HEP3	"g7892.t1;Cre07.g339300.t1.1"		
+Cre07.g330200	GMM:31.6.1.5.1	"cell.motility.eukaryotes.radial spoke.head"	"Secretory pathway"			RSP9	"PF17;g7684.t1;Cre07.g330200.t1.1"	RSP9	"A subunit in the flagellar radial spoke head; gene originally termed PF17 [PMID: 7204490, PMID: 16507594; GI:83284713]"
+Cre07.g323600			Chloroplast				g7475.t1		
+Cre07.g330250	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast	"GO:0015979;GO:0009538;GO:0009522"	"photosynthesis;photosystem I reaction center;photosystem I"	PSAH	"PSAH;Cre07.g330250.t1.1;g7685.t1;Cre07.g330250.t1.1;g7685.t1;PSAH"	"PSAH1;PSAH1"	"Chloroplast precursor;Chloroplast precursor"
+Cre07.g335650			"Secretory pathway"				g7814.t1		
+Cre07.g345900	GMM:27.1.19	RNA.processing.ribonucleases		"GO:0016891;GO:0006396;GO:0005524;GO:0004525;GO:0003723;GO:0003676"	"endoribonuclease activity, producing 5'-phosphomonoesters;RNA processing;ATP binding;ribonuclease III activity;RNA binding;nucleic acid binding"	DCL3	"DCL3;g8048.t1;g8048.t1;DCL3"	"DCL3;DCL3"	"involved, with DU16, in processing of pri-miRNA; involved in posttranscriptional gene silencing/RNA interference;involved, with DU16, in processing of pri-miRNA; involved in posttranscriptional gene silencing/RNA interference"
+Cre11.g481250			Chloroplast				"g11949.t1;Cre11.g481250.t1.1"		
+Cre11.g482400							"Cre11.g482400.t1.1;g11976.t1"		
+Cre11.g480100			Chloroplast				"g11918.t1;g11918.t1;g11918.t1"		
+Cre11.g467550	GMM:23.1.1.3	"nucleotide metabolism.synthesis.pyrimidine.dihydroorotase"	Chloroplast	"GO:0019856;GO:0016787;GO:0004151"	"pyrimidine nucleobase biosynthetic process;hydrolase activity;dihydroorotase activity"		"Cre11.g467550.t1.1;g11730.t1"		
+Cre11.g467608	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP12	g11537.t2		
+Cre11.g467728				"GO:0004519;GO:0003676"	"endonuclease activity;nucleic acid binding"				
+Cre11.g475450			"Secretory pathway"	"GO:0008242;GO:0005515"	"omega peptidase activity;protein binding"		"g11810.t1;Cre11.g475450.t1.1"		
+Cre11.g477800						HDA10	"HDA10;g11862.t1"	HDA10	"Histone deacetylase, ChromDB HDA3408"
+Cre11.g467634	"GMM:29.4.1.57;GMM:29.4"	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre18.g746950.t1.1;g11564.t1;Cre18.g746950.t1.1;g11564.t1;g11564.t1;Cre18.g746950.t1.1;g11564.t1;Cre18.g746950.t1.1;Cre18.g746950.t1.1;g11564.t1"		
+Cre11.g478750	"GMM:31.3.1;GMM:29.6.3.1"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs"	"Secretory pathway"	GO:0006457	"protein folding"	FKB15-2	"FKB2;g11885.t1;Cre11.g478750.t1.1;FKB15-2"	FKB15B	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPiase) (Rotamase) (Immunophilin); probably secreted; linked to FKB15-4 and FKB15-1"
+Cre11.g467682			Chloroplast				"g11612.t1;Cre18.g744750.t1.1"		
+Cre11.g467560						DYX1C1	"g11489.t2;DNAAF4;DYX1C1"	PF23	"PF23 is a cytoplasmic protein essential for assembly of multiple axonemal dyneins; Has a null mutation; Orthologous to human DYX1C1, mutations in which also block ODA and IDA assembly"
+Cre11.g478450			"Secretory pathway"				g11878.t1		
+Cre11.g467717	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Chloroplast	"GO:0016810;GO:0006807"	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"				
+Cre11.g467624			Mitochondrion				"Cre18.g747400.t1.1;g11555.t1;Cre18.g747400.t1.1;g11555.t1;Cre18.g747400.t1.1;g11555.t1"		
+Cre11.g481050	GMM:27.3.53	"RNA.regulation of transcription.high mobility group family (HMG)"					"Cre11.g481050.t1.1;g11941.t1"		"High mobility group protein, ChromDB HMGB342; a putative chromatin-associated HMGB protein containing two HMG boxes"
+Cre11.g480050				GO:0005515	"protein binding"	EXN14	"g11915.t1;EXN14"		"May have poly(A)-specific ribonuclease activity"
+Cre11.g467541							"Cre44.g787750.t1.2;g11471.t1;Cre44.g787750.t1.1;Cre44.g787750.t1.1;Cre44.g787750.t1.2;g11471.t1;Cre44.g787750.t1.2;g11471.t1;Cre44.g787750.t1.1;g11471.t1;Cre44.g787750.t1.1;Cre44.g787750.t1.2"		
+Cre11.g480132			"Secretory pathway"						
+Cre11.g467743				GO:0008270	"zinc ion binding"		g11673.t1		
+Cre11.g479050	"GMM:31.3.1;GMM:29.6.3.1"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs"	"Secretory pathway"	GO:0006457	"protein folding"	FKB15-1	"FKB1;g11894.t1;FKB15-1;FAP229;Cre11.g479050.t1.1"	FKB15A	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPiase) (Rotamase), secreted isoform; Target P prediction: TP length=22; found in the flagellar proteome; linked to FKB15-2 and FKB15-4"
+Cre11.g467778	GMM:23.3.1.3	"nucleotide metabolism.salvage.phosphoribosyltransferases.uracil phosphoribosyltransferase (UPP)"	Chloroplast				g11708.t1		
+Cre11.g481450	"GMM:1.1.4.9;GMM:1.1.4"	"PS.lightreaction.ATP synthase.subunit B (ATPX);PS.lightreaction.ATP synthase"	Chloroplast	"GO:0045263;GO:0015986;GO:0015078"	"proton-transporting ATP synthase complex, coupling factor F(o);ATP synthesis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPG	"g11955.t1;Cre11.g481450.t1.1;ATPG;Cre11.g481450.t1.1;g11955.t1;ATPG;g11955.t1;Cre11.g481450.t1.1;ATPG"	"ATPG1;ATPG1;ATPG1"	"ATP synthase CFo B' chain, chloroplast precursor; component of the stalk that connects CF1 to CFo; distant homolog of chloroplast-encoded subunit I;ATP synthase CFo B' chain, chloroplast precursor; component of the stalk that connects CF1 to CFo; distant homolog of chloroplast-encoded subunit I;ATP synthase CFo B' chain, chloroplast precursor; component of the stalk that connects CF1 to CFo; distant homolog of chloroplast-encoded subunit I"
+Cre11.g467642	GMM:2.1	"major CHO metabolism.synthesis"	"Secretory pathway"				"g11573.t1;Cre18.g746550.t1.2;Cre18.g746550.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre11.g467572			"Secretory pathway"				"Cre18.g749800.t2.1;g11501.t2"		
+Cre11.g478350			"Secretory pathway"				"Cre11.g478350.t1.1;g11876.t1"		
+Cre11.g467737			Chloroplast				"Cre22.g764700.t1.1;g11667.t1;Cre22.g764700.t1.1;g11667.t1;Cre22.g764700.t1.1;g11667.t1;g11667.t1;Cre22.g764700.t1.1;Cre22.g764700.t1.1;g11667.t1;Cre22.g764700.t1.1;g11667.t1;g11667.t1;Cre22.g764700.t1.1"		
+Cre11.g475950	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		GO:0005515	"protein binding"	HLM16	"g11822.t1;HLM16"		"Protein containing SET domain, histone methyltransferase; weak similarity (mostly limited to SET domain) to Oryza sativa SDG717 and Arabidopsis thaliana SET25, ATXR7, SDG25 (At5g424). ChromoDB SDG3413"
+Cre11.g478050			"Secretory pathway"				"g11868.t2;g11868.t2;g11868.t2;g11868.t2"		
+Cre11.g467706	GMM:27.3.55	"RNA.regulation of transcription.HDA"	Mitochondrion				"g11636.t1;Cre18.g743750.t1.1"		
+Cre11.g469300			Mitochondrion				"g11780.t1;g11780.t1;g11780.t1;g11780.t1"		
+Cre11.g480750				GO:0016787	"hydrolase activity"		"g11935.t1;g11935.t1"		
+Cre11.g469224			Chloroplast	GO:0016791	"phosphatase activity"		"g11779.t1;Cre11.g469250.t2.1"		
+Cre11.g468359			"Secretory pathway"			GAS31	"g11753.t1;g11753.t1;g11753.t1"	"GAS31;GAS31;GAS31"	
+Cre11.g467544	GMM:16.1.2.7	"secondary metabolism.isoprenoids.mevalonate pathway.isopentenyl pyrophosphate:dimethyllallyl pyrophosphate isomerase"		"GO:0016787;GO:0008299;GO:0004452"	"hydrolase activity;isoprenoid biosynthetic process;isopentenyl-diphosphate delta-isomerase activity"	IDI1	"Cre44.g787900.t1.1;Cre44.g787900.t1.2;g11474.t1;IDI1;g11474.t1;IDI1;Cre44.g787900.t1.2;Cre44.g787900.t1.1"	"IDI1;IDI1"	"Isopentenyl-diphosphate delta-isomerase type 1(isopentenyl pyrophosphate:dimethylallyl pyrophosphate isomerase ) (IPI) (PMID: 10750717; PMID:9736763); putative chloroplast precursor; may display dual targeting to chloroplast and cytosol;Isopentenyl-diphosphate delta-isomerase type 1(isopentenyl pyrophosphate:dimethylallyl pyrophosphate isomerase ) (IPI) (PMID: 10750717; PMID:9736763); putative chloroplast precursor; may display dual targeting to chloroplast and cytosol"
+Cre11.g467656			"Secretory pathway"				"Cre18.g745950.t1.1;g11586.t1;Cre18.g745950.t1.2;Cre18.g745950.t1.1;g11586.t1;Cre18.g745950.t1.2"		
+Cre11.g480502									
+Cre11.g481093							g11943.t1		
+Cre11.g467551			"Secretory pathway"						
+Cre11.g467616			Chloroplast			IFT56	"Cre18.g747800.t1.2;g11546.t1;Dyf-13;Cre18.g747800.t1.1;Ttc26"	IFT56	"TPR protein; belongs to IFT-B1 particle"
+Cre11.g483400	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG10	"ELG10;g11999.t1;ELG10;g11999.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family; contains EGF-like domain;putative terminal arabinosyl transferase on HRGP, GT47 family; contains EGF-like domain"
+Cre11.g467738			Mitochondrion	GO:0016021	"integral component of membrane"		"g11668.t1;Cre22.g764650.t1.2;Cre22.g764650.t1.1"		
+Cre11.g467582						FAP306	"FAP306;g11512.t1"	RIB21	"Microtubule inner proteins (MIP) of 21 kDa that binds the ribbon; Also known as Flagellar Associated Protein 306 (FAP306);"
+Cre11.g467786			"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"		"g11716.t1;Cre22.g762626.t1.1;Cre22.g762626.t1.2"		
+Cre11.g481833									
+Cre11.g482250			"Secretory pathway"				"g11972.t1;g11972.t1"		
+Cre11.g479750	"GMM:29.3.4.99;GMM:29.3.3"	"protein.targeting.secretory pathway.unspecified;protein.targeting.chloroplast"	Chloroplast	"GO:0048500;GO:0008312;GO:0006614;GO:0005525;GO:0003924"	"signal recognition particle;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane;GTP binding;GTPase activity"	SRP54L	"Cre11.g479750.t1.1;SRP54;cpSRP54;g11909.t1;Cre11.g479750.t1.1;g11909.t1;cpSRP54;SRP54;Cre11.g479750.t1.1;SRP54;g11909.t1;cpSRP54"	"SRP54L;SRP54L;SRP54L"	"Expressed Protein. Similar to the Chloroplast SRP54 component of Signal Recognition particle, called FFC (Fifty-Four-Chloroplast Homologue) in land plants, almost identical to gb: AAK12834.;Expressed Protein. Similar to the Chloroplast SRP54 component of Signal Recognition particle, called FFC (Fifty-Four-Chloroplast Homologue) in land plants, almost identical to gb: AAK12834.;Expressed Protein. Similar to the Chloroplast SRP54 component of Signal Recognition particle, called FFC (Fifty-Four-Chloroplast Homologue) in land plants, almost identical to gb: AAK12834."
+Cre11.g475100				GO:0008080	"N-acetyltransferase activity"		"Cre11.g475100.t1.1;g11803.t1;NAT26"		"Related to GCN5. Probably a diamine N-acetyltransferase"
+Cre11.g468850						FAP152	"Cre11.g468850.t1.1;g11771.t1"	FAP152	"Flagellar Associated Protein, found in the flagellar proteome"
+Cre11.g467725			"Secretory pathway"				"Cre22.g765150.t1.1;Cre22.g765150.t1.2;g11655.t1"		
+Cre11.g467677			"Secretory pathway"	"GO:0016021;GO:0004252"	"integral component of membrane;serine-type endopeptidase activity"		"g11607.t1;Cre18.g745000.t1.1"		
+Cre11.g467537						PPR12	"g11467.t1;Cre18.g750850.t1.1;Cre18.g750850.t1.1;g11467.t1;Cre18.g750850.t1.1;g11467.t1"	"PPR12;PPR12;PPR12"	
+Cre11.g467581	GMM:27.3.9	"RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family"		"GO:0043565;GO:0008270;GO:0006355;GO:0003700"	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"Cre18.g749350.t1.2;Cre18.g749350.t1.1;g11511.t2;Cre18.g749350.t1.1;Cre18.g749350.t1.2;g11511.t2"		
+Cre11.g482626							"g11981.t1;Cre11.g482626.t1.1"		
+Cre11.g478456			"Secretory pathway"				"Cre11.g478456.t1.1;g11879.t1"		
+Cre11.g476950			"Secretory pathway"				"g11845.t1;g11845.t1"		
+Cre11.g467648	GMM:29.5	protein.degradation	Chloroplast	"GO:0016021;GO:0006508;GO:0004252"	"integral component of membrane;proteolysis;serine-type endopeptidase activity"	RBL3	"RBL3;g11579.t1;Cre18.g746300.t1.1;Cre18.g746300.t1.2;RBL3;g11579.t1;Cre18.g746300.t1.1;Cre18.g746300.t1.2"		"similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579); probably inactive,as it lacks some of the catalytic residues;similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579); probably inactive,as it lacks some of the catalytic residues"
+Cre11.g467730			Chloroplast				"g11660.t2;g11660.t2;g11660.t2;g11660.t2;g11660.t2;g11660.t2;g11660.t2;g11660.t2;g11660.t2"		
+Cre11.g467702			Chloroplast				"Cre18.g744000.t1.1;uS3m;Cre18.g744000.t1.2;g11632.t1"	MRPS3	
+Cre11.g480700				GO:0055114	"oxidation-reduction process"		g11932.t2		
+Cre11.g469000						FAP107	"Cre11.g469000.t1.1;g11774.t1;Cre11.g469000.t1.1;g11774.t1"	"FAP107;FAP107"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre11.g477625	"GMM:19.10;GMM:19.1"	"tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase"	Chloroplast	"GO:0016851;GO:0009058"	"magnesium chelatase activity;biosynthetic process"	CHLH2	"g11858.t1;MCH2;CHLH2;CHLH2;MCH2;g11858.t1"	"CHLH2;CHLH2"	"(COBN); Putative Magnesium chelatase H subunit; higher similarity to bacterial and cyanobacterial BchH proteins than plant ChlH orthologues; Possible magnesium protoporphyrin or protoporphyrin binding protein [PMID: 11469861];(COBN); Putative Magnesium chelatase H subunit; higher similarity to bacterial and cyanobacterial BchH proteins than plant ChlH orthologues; Possible magnesium protoporphyrin or protoporphyrin binding protein [PMID: 11469861]"
+Cre11.g480150	GMM:29.2.1.2.1.14	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S14"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	RPS14	"Cre11.g480150.t1.1;g11921.t1;Cre11.g480150.t1.1;g11921.t1;g11921.t1;Cre11.g480150.t1.1;Cre11.g480150.t1.1;g11921.t1;Cre11.g480150.t1.1;g11921.t1;Cre11.g480150.t1.1;g11921.t1;Cre11.g480150.t1.1;g11921.t1;g11921.t1;Cre11.g480150.t1.1;Cre11.g480150.t1.1;g11921.t1;Cre11.g480150.t1.1;g11921.t1;Cre11.g480150.t1.1;g11921.t1;Cre11.g480150.t1.1;g11921.t1"	"RPS14;RPS14;RPS14;RPS14;RPS14;RPS14;RPS14;RPS14;RPS14;RPS14;RPS14;RPS14"	"Cytosolic 40S small ribosomal subunit protein S14;Cytosolic 40S small ribosomal subunit protein S14;Cytosolic 40S small ribosomal subunit protein S14;Cytosolic 40S small ribosomal subunit protein S14;Cytosolic 40S small ribosomal subunit protein S14;Cytosolic 40S small ribosomal subunit protein S14;Cytosolic 40S small ribosomal subunit protein S14;Cytosolic 40S small ribosomal subunit protein S14;Cytosolic 40S small ribosomal subunit protein S14;Cytosolic 40S small ribosomal subunit protein S14;Cytosolic 40S small ribosomal subunit protein S14;Cytosolic 40S small ribosomal subunit protein S14"
+Cre11.g467693			Chloroplast				"g11623.t1;g11623.t1"		
+Cre11.g478700	"GMM:31.3.1;GMM:29.6.3.1"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs"	"Secretory pathway"	GO:0006457	"protein folding"	FKB15-4	"g11884.t1;FKB15-4;Cre11.g478700.t1.1;FKB3"	FKB15D	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPiase) (Rotamase) (Immunophilin); probably secreted; Target P prediction: TP length=22; linked to FKB15-2 and FKB15-1"
+Cre11.g468650	GMM:16.1	"secondary metabolism.isoprenoids"					"Cre11.g468650.t1.1;g11767.t1"		
+Cre11.g467775			Chloroplast				g11705.t1		
+Cre11.g467640							"Cre18.g746650.t1.1;Cre18.g746650.t1.2;g11570.t1"		
+Cre11.g474900			Chloroplast						
+Cre11.g478300				"GO:0032259;GO:0008168"	"methylation;methyltransferase activity"	SOM4	"g11875.t1;SOM4"		
+Cre11.g480060	GMM:28.99	DNA.unspecified					"g11916.t1;Cre11.g480060.t1.1"		
+Cre11.g467579	GMM:28.2	DNA.repair				CSC6	"Cre18.g749450.t1.2;g11509.t1;Cre18.g749450.t1.1;CSC6"		"function unknown; homologs in Gonium, not Volvox"
+Cre11.g479150			Mitochondrion						
+Cre11.g467696			"Secretory pathway"				"g11627.t2;g11627.t2;g11627.t2"		
+Cre11.g467900			"Secretory pathway"				"g11738.t1;Cre11.g467900.t1.1"		
+Cre11.g483033	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast				g11992.t1		
+Cre11.g482900	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"	RAB20	"g11989.t1;RABC3;RAB20;RAB20;RABC3;g11989.t1"	"RAB18C;RAB18C"	"Similar to the RABC/Rab18-type GTPases, one of 3 C-type Rabs; Class I in [PMID: 8756593]; One of three paralogogs (Cre11.g482900, Cre06.g278139, Cre09.g386900);;Similar to the RABC/Rab18-type GTPases, one of 3 C-type Rabs; Class I in [PMID: 8756593]; One of three paralogogs (Cre11.g482900, Cre06.g278139, Cre09.g386900);"
+Cre11.g467744							"g11674.t1;Cre22.g764450.t1.1;Cre22.g764450.t1.1;g11674.t1"		
+Cre11.g467652			Mitochondrion				"g11582.t1;Cre18.g746150.t1.1;g11582.t1;Cre18.g746150.t1.1"	"RAA9;RAA9"	"Necessary for trans-splicing of psaA mRNA; Component of psaA trans-splicing sub complex I;Necessary for trans-splicing of psaA mRNA; Component of psaA trans-splicing sub complex I"
+Cre11.g467718	"GMM:20.2.1;GMM:15.2"	"stress.abiotic.heat;metal handling.binding, chelation and storage"	Mitochondrion	"GO:0051259;GO:0051087;GO:0006457"	"protein oligomerization;chaperone binding;protein folding"	HSC20A			
+Cre11.g467571									
+Cre11.g467713	GMM:29.4	"protein.postranslational modification"							
+Cre11.g481500	"GMM:13.1.7.5;GMM:13.1.7.4;GMM:13.1.7"	"amino acid metabolism.synthesis.histidine.phosphoribosylformimino-5-aminoimidazole carboxamide ribotide isomerase (BBM II);amino acid metabolism.synthesis.histidine.bifunctional phosphoribosyl-ATP pyrophosphatase / phosphoribosyl-AMP cyclohydrolase;amino acid metabolism.synthesis.histidine"	Chloroplast	GO:0000105	"histidine biosynthetic process"	HIS7	"g11956.t1;Cre11.g481500.t1.1;HIS7"	HIS7	"glutamine amidotransferase/cyclase involved in histidine biosynthesis; imidazole glycerol phosphate synthase (IGPS)."
+Cre11.g476400	"GMM:28.2;GMM:28.1"	"DNA.repair;DNA.synthesis/chromatin structure"	Mitochondrion	GO:0006284	"base-excision repair"	MAG1	"g11834.t1;MAG1;g11834.t1;MAG1;MAG1;g11834.t1"	"MAG1;MAG1;MAG1"	
+Cre11.g479100			Chloroplast				"g11895.t1;g11895.t1;g11895.t1;g11895.t1;g11895.t1"		
+Cre11.g483150							"Cre11.g483150.t1.1;g11994.t1;g11994.t1;Cre11.g483150.t1.1"		
+Cre11.g467591	GMM:28.2	DNA.repair		GO:0003676	"nucleic acid binding"		"Cre18.g748900.t1.2;g11521.t1;Cre18.g748900.t1.1;Cre18.g748900.t1.2;g11521.t1;Cre18.g748900.t1.1;Cre18.g748900.t1.2;g11521.t1;Cre18.g748900.t1.1"		
+Cre11.g468900						FAP404	"Cre11.g468900.t1.1;g11772.t1"	FAP404	"Found in Cr and Volvox but not strongly conserved elsewhere"
+Cre11.g467588	"GMM:30.2.24;GMM:29.4"	"signalling.receptor kinases.S-locus glycoprotein like;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre18.g749150.t1.1;g11518.t1;Cre18.g749150.t1.2;g11518.t1;Cre18.g749150.t1.2;Cre18.g749150.t1.1;Cre18.g749150.t1.2;g11518.t1;Cre18.g749150.t1.1"		
+Cre11.g467794							"Cre22.g762388.t1.2;g11724.t1;Cre22.g762388.t1.1;Cre22.g762388.t1.2;g11724.t1;Cre22.g762388.t1.1"		
+Cre11.g467752							"Cre22.g764150.t1.1;Cre22.g764150.t1.2;g11681.t1"		
+Cre11.g467565							"g11494.t1;Cre18.g750100.t1.2;Cre18.g750100.t1.1"		
+Cre11.g475700							"g11817.t1;g11817.t1"		
+Cre11.g467615			"Secretory pathway"	GO:0005509	"calcium ion binding"		"g11545.t1;Cre18.g747850.t1.1;Cre18.g747850.t1.2"		
+Cre11.g467670			"Secretory pathway"				"GT90F44;GT90-44;g11600.t2;Cre18.g745350.t2.1"		
+Cre11.g482001	GMM:31.1	cell.organisation	Mitochondrion			FAP208	"g11967.t1;g11967.t1;g11967.t1;g11967.t1"	"FAP208;FAP208;FAP208;FAP208"	"Flagellar Associated Protein, found in the flagellar proteome. Possible phospholipase A2 or serine endopeptidase activity;Flagellar Associated Protein, found in the flagellar proteome. Possible phospholipase A2 or serine endopeptidase activity;Flagellar Associated Protein, found in the flagellar proteome. Possible phospholipase A2 or serine endopeptidase activity;Flagellar Associated Protein, found in the flagellar proteome. Possible phospholipase A2 or serine endopeptidase activity"
+Cre11.g468368			Mitochondrion						
+Cre11.g467758							"g11688.t1;Cre22.g763800.t1.1"		
+Cre11.g467736							"Cre22.g764750.t1.2;g11666.t1;Cre22.g764750.t1.1"		
+Cre11.g468356			Mitochondrion	GO:0006606	"protein import into nucleus"		"TPR;g11752.t2"	TPR7	"TPR domain containing protein; Identified as TPR as part of the nuclear pore complex"
+Cre11.g467602									
+Cre11.g467621						CSU7			
+Cre11.g467627	"GMM:17.6.1.4;GMM:17.3.1.1.2"	"hormone metabolism.gibberelin.synthesis-degradation.ent-kaurenoic acid hydroxylase/oxygenase;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.DWF4"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"		"Cre18.g747300.t1.2;Cre18.g747300.t1.1;g11557.t1"		
+Cre11.g476050	"GMM:31.6.1.4.2.1;GMM:31.6.1.4.1"	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.outer arm"		"GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777"	"dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity"	DHC15	"ODA-DHCgamma;DYHG;PF28;DHC15;Cre11.g476050.t1.1;g11825.t1;ODA2"	DHC15	"Flagellar outer arm dynein heavy chain gamma, also known as PF28. An ATPase/microtubule motor containing IQ motifs in N-terminal region and is phosphorylated on AAA domain; null-allele mutant was isolated (PMID 29743196). Null mutants lack ODAs (PMID 3156867), other mutant alleles (SUP-PF-2) supress flagellar paralysis from spoke and central pair defects (PMID8991096)."
+Cre11.g475050							"g11802.t1;Cre11.g475050.t1.1;Cre11.g475050.t1.1;g11802.t1;Cre11.g475050.t1.1;g11802.t1;g11802.t1;Cre11.g475050.t1.1;g11802.t1;Cre11.g475050.t1.1;g11802.t1;Cre11.g475050.t1.1"		
+Cre11.g482600			Mitochondrion				g11980.t1		
+Cre11.g478650			"Secretory pathway"				"Cre11.g478650.t1.1;g11883.t1"		
+Cre11.g467705	GMM:34.1	"transport.p- and v-ATPases"		"GO:0033179;GO:0015991;GO:0015078"	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"		"g11635.t1;g11635.t1"		
+Cre11.g476900							"Cre11.g476900.t1.1;g11844.t1"		
+Cre11.g467561						FAP222	"Cre18.g750300.t1.2;g11490.t1;Cre18.g750300.t1.1"	FAP222	
+Cre11.g467641			Mitochondrion				"g11572.t1;Cre18.g746600.t1.1;Cre18.g746600.t1.1;g11572.t1"		
+Cre11.g467720	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre22.g765450.t2.1;g11650.t2;Cre22.g765450.t2.1;g11650.t2"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre11.g469150			Chloroplast				"Cre11.g469150.t1.1;g11777.t1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre11.g477700							"g11859.t1;g11859.t1;g11859.t1;g11859.t1"		
+Cre11.g479700						DFO1	"DFO1;g11908.t1;Cre11.g479700.t1.1"		"similar to N-terminus of HCF101"
+Cre11.g468250			Chloroplast				g11748.t1		
+Cre11.g467664			"Secretory pathway"				"Cre18.g745700.t1.2;Cre18.g745700.t1.1;g11594.t1;g11594.t1;Cre18.g745700.t1.2;Cre18.g745700.t1.1"		
+Cre11.g467753	GMM:19.21	"tetrapyrrole synthesis.heme oxygenase"		"GO:0055114;GO:0006788;GO:0004392"	"oxidation-reduction process;heme oxidation;heme oxygenase (decyclizing) activity"	HMO2	"HMO2;Cre22.g764100.t1.1;g11682.t1"	HMOX2	"Heme oxygenase; HMOX; HO; Catalyzes the ferredoxin dependent degradation of heme to bilirubin, it is essential for recycling of iron from heme. Heme is used as a substrate and cofactor for its own degradation to biliverdin, iron, and carbon monoxide [PMID: 9744099; PMID: 10949378]; Involved in the synthesis of phytochromobilin, the pigment cofactor of phytochrome, in plants [PMID: 9744099]"
+Cre11.g467594	GMM:3.3	"minor CHO metabolism.sugar alcohols"		GO:0005515	"protein binding"		"Cre18.g748750.t1.2;g11524.t1;Cre18.g748750.t1.1"		
+Cre11.g467542			Mitochondrion				"Cre44.g787800.t1.1;g11472.t1"		
+Cre11.g481082			"Secretory pathway"						
+Cre11.g480250	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"	Chloroplast	GO:0006629	"lipid metabolic process"		g11923.t1		
+Cre11.g467635	GMM:31.6.1.11	cell.motility.eukaryotes.other				MOT22	"MOT22;Cre18.g746900.t1.1;g11565.t1"	MOT22	"Identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre11.g467583	GMM:29.4	"protein.postranslational modification"					"g11513.t1;Cre18.g749300.t1.2;Cre18.g749300.t1.1"		
+Cre11.g469800							"Cre11.g469800.t1.1;g11790.t1"		
+Cre11.g467701			Mitochondrion				"Cre18.g744050.t1.1;g11631.t1"		
+Cre11.g479650	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0016567;GO:0005515;GO:0004842"	"protein ubiquitination;protein binding;ubiquitin-protein transferase activity"		"Cre11.g479650.t1.1;g11907.t1;CHIP"	CHIP1	"Co-chaperone of cytosolic HSP70 and HSP90; E3 ubiquitin ligase; involved transfering non-foldable substrates of HSP70 and HSP90 to the proteasome"
+Cre11.g467710			"Secretory pathway"			VSP1	"VSP1;g11640.t2;Cre18.g743550.t1.1;g11640.t2;Cre18.g743550.t1.1;VSP1"	"VSP1;VSP1"	"Extracellular matrix protein (cell wall protein); vegetative HRGP and tyrosine-rich wall protein; structural protein [PMID: 7689882; Genbank entry L16461];Extracellular matrix protein (cell wall protein); vegetative HRGP and tyrosine-rich wall protein; structural protein [PMID: 7689882; Genbank entry L16461]"
+Cre11.g475300							g11806.t1		
+Cre11.g474850	GMM:29.1.30	"protein.aa activation.pseudouridylate synthase"		"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS17	"g11798.t1;PUS17;PUS17;g11798.t1;PUS17;g11798.t1"		
+Cre11.g482850			Chloroplast	"GO:0060236;GO:0032147;GO:0005874;GO:0005819"	"regulation of mitotic spindle organization;activation of protein kinase activity;microtubule;spindle"		"g11988.t1;g11988.t1;g11988.t1;g11988.t1;g11988.t1"		"null-allele passenger mutation was isolated;null-allele passenger mutation was isolated;null-allele passenger mutation was isolated;null-allele passenger mutation was isolated;null-allele passenger mutation was isolated"
+Cre11.g467654	GMM:27.1.2	"RNA.processing.RNA helicase"		GO:0004386	"helicase activity"		"g11584.t3;Cre18.g746050.t1.2;Cre18.g746050.t1.1"		
+Cre11.g475750			"Secretory pathway"				"g11818.t1;g11818.t1"		
+Cre11.g467531							"g11461.t1;Cre18.g751100.t1.2;Cre18.g751100.t1.1;FAP15;FAP15;Cre18.g751100.t1.1;Cre18.g751100.t1.2;g11461.t1"		
+Cre11.g469187			Chloroplast				g11778.t1		
+Cre11.g468600			Mitochondrion				"g11766.t1;Cre11.g468600.t1.1"		
+Cre11.g478600			Chloroplast				"g11881.t1;Cre11.g478600.t1.1;Cre11.g478600.t1.1;g11881.t1;g11881.t1;Cre11.g478600.t1.1"		
+Cre11.g468800			Chloroplast			PHC71	"Cre11.g468800.t1.1;g11770.t1;PHC71;PHC71;g11770.t1;Cre11.g468800.t1.1"		
+Cre11.g475200							"g11805.t1;g11805.t1;g11805.t1;g11805.t1"		
+Cre11.g467590	GMM:29.4	"protein.postranslational modification"	Chloroplast				"g11520.t1;Cre18.g748950.t1.2;Cre18.g748950.t1.1;g11520.t1;Cre18.g748950.t1.2;Cre18.g748950.t1.1"		
+Cre11.g474700							"BES6;g11795.t1;BES6;g11795.t1;BES6;g11795.t1;BES6;g11795.t1"		"Similar to Bestrophin, RFP-TM, chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family that includes Low-CO2-inducible membrane protein LCI11;Similar to Bestrophin, RFP-TM, chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family that includes Low-CO2-inducible membrane protein LCI11;Similar to Bestrophin, RFP-TM, chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family that includes Low-CO2-inducible membrane protein LCI11;Similar to Bestrophin, RFP-TM, chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family that includes Low-CO2-inducible membrane protein LCI11"
+Cre11.g467653			"Secretory pathway"				"g11583.t1;g11583.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre11.g475000	GMM:31.6.1.3.2.1	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A"				IFT121	"IFT122B;FAP118;g11801.t1"	IFT121	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]; component of IFT-A particle; identified in the flagellar basal body proteome as FBB1 [PMID: 15137946]; upregulated by deflagellation"
+Cre11.g481700	GMM:27.1.1	RNA.processing.splicing		"GO:0006396;GO:0003723"	"RNA processing;RNA binding"		"g11960.t1;SPL17;g11960.t1;SPL17"		"Splicing factor, with Suppressor-of-White-APricot (SWAP) domain;Splicing factor, with Suppressor-of-White-APricot (SWAP) domain"
+Cre11.g467792							"g11722.t1;Cre22.g762450.t1.1;Cre22.g762450.t1.2"		
+Cre11.g467708							"g11638.t2;Cre18.g743650.t1.1;Cre18.g743650.t1.2;Cre18.g743650.t1.1;g11638.t2;Cre18.g743650.t1.2"		
+Cre11.g467617	GMM:7.1.3	"OPP.oxidative PP.6-phosphogluconate dehydrogenase"		GO:0051287	"NAD binding"	LCI19	"LCI19;Cre18.g747750.t1.1;g11547.t1"	LCI19	"Putative gamma hydroxybutyrate dehydrogenase catalyzes the conversion of succinic semialdehyde to gamma hydroxybutyrate at the branch pathway of GABA shunt. Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]. Acclim"
+Cre11.g467678	"GMM:31.9;GMM:23.1.2;GMM:17.4.2"	"cell.eyespot;nucleotide metabolism.synthesis.purine;hormone metabolism.cytokinin.signal transduction"	Chloroplast	"GO:0035556;GO:0016849;GO:0016020;GO:0009190;GO:0007165;GO:0000160;GO:0000155"	"intracellular signal transduction;phosphorus-oxygen lyase activity;membrane;cyclic nucleotide biosynthetic process;signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity"	COP6	"g11608.t1;Cre18.g744950.t1.1;COP6"	HKR2	"Also known as Chlamyopsin 6; contains bacteriorhodopsin, Histine kinase, response regulator receiver and Guanylate/adenylate cyclase catalytic domains"
+Cre11.g467699	"GMM:33.99;GMM:31.4;GMM:31.2;GMM:29.3.4.99;GMM:29.3.4"	"development.unspecified;cell.vesicle transport;cell.division;protein.targeting.secretory pathway.unspecified;protein.targeting.secretory pathway"		"GO:0016192;GO:0006904"	"vesicle-mediated transport;vesicle docking involved in exocytosis"	SEC1	"SEC1;g11630.t1"	SEC1	"SM/Sec1-family protein, SEC1 homolog; binds SNAREs at the plasma membrane"
+Cre11.g469750			"Secretory pathway"				"g11789.t1;g11789.t1"		
+Cre11.g467644	"GMM:29.6.2.5;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP100s;stress.abiotic.heat"	Cytosol	"GO:0019538;GO:0016887;GO:0005524"	"protein metabolic process;ATPase activity;ATP binding"	CLPB1	"HSP101;CLPB1;g11575.t1;Cre18.g746450.t1.1;Cre18.g746450.t1.1;g11575.t1;CLPB1;HSP101;Cre18.g746450.t1.1;g11575.t1;CLPB1;HSP101"	"CLPB1;CLPB1;CLPB1"	"cytosolic, orthologous to the HSP101 isoform;cytosolic, orthologous to the HSP101 isoform;cytosolic, orthologous to the HSP101 isoform"
+Cre11.g481951			Chloroplast						
+Cre11.g477900			"Secretory pathway"				"Cre11.g477900.t1.1;g11864.t1"		
+Cre11.g468063			Chloroplast						
+Cre11.g479350							"g11900.t1;g11900.t1"		
+Cre11.g479200				"GO:0016192;GO:0006904"	"vesicle-mediated transport;vesicle docking involved in exocytosis"		g11897.t1		
+Cre11.g467618			Mitochondrion				"Cre18.g747733.t1.2;g11548.t1;Cre18.g747733.t1.1"		
+Cre11.g482101			"Secretory pathway"				"g11969.t1;Cre11.g482100.t1.2;Cre11.g482100.t1.2;g11969.t1"		
+Cre11.g480400	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC39			
+Cre11.g467800			"Secretory pathway"				g11736.t1		
+Cre11.g483450			Mitochondrion						
+Cre11.g482676									
+Cre11.g467756	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP5	"g11685.t1;Cre22.g763950.t1.2;MMP5;Cre22.g763950.t1.1"	MMP5	"Belongs to the large VMP-family of metalloproteinases (identified in Volvox); the binding site of the catalytic metal ion in VMPs is QExxHxxGxxH not HExxHxxGxxH, therefore VMPs prefer copper for activity rather than zinc; extracellular matrix glycoprotein"
+Cre11.g467796									
+Cre11.g467524				GO:0016787	"hydrolase activity"		"g11454.t1;Cre18.g751500.t1.1"		
+Cre11.g467732			Mitochondrion						
+Cre11.g467665				GO:0005515	"protein binding"		"Cre18.g745650.t1.1;g11595.t1;Cre18.g745650.t1.1;g11595.t1;g11595.t1;Cre18.g745650.t1.1;Cre18.g745650.t1.1;g11595.t1;Cre18.g745650.t1.1;g11595.t1;g11595.t1;Cre18.g745650.t1.1"		
+Cre11.g476550	GMM:11.8.7	"lipid metabolism.exotics (steroids, squalene etc).trans-2-enoyl-CoA reductase (NADPH)"		"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	ADH11	"g11837.t1;ADH11;Cre11.g476550.t1.1"		"Alcohol dehydrogenase, zinc-containing"
+Cre11.g480600							"g11930.t1;Cre11.g480600.t1.1;g11930.t1;Cre11.g480600.t1.1"		
+Cre11.g475500			Mitochondrion				"Cre11.g475500.t1.1;g11811.t1"		
+Cre11.g478025									
+Cre11.g467553	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0005525	"GTP binding"		"g11482.t1;g11482.t1"		
+Cre11.g467788			"Secretory pathway"						
+Cre11.g481350							"g11952.t1;g11952.t1"		
+Cre11.g476250	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"Cre11.g476250.t1.1;g11829.t1"		
+Cre11.g476700	GMM:26.13	"misc.acid and other phosphatases"	"Secretory pathway"	GO:0016787	"hydrolase activity"	MPA9	"Cre11.g476700.t1.1;g11840.t1;MPA9"		"Metallophosphoesterase/metallo-dependent phosphatase with purpe acid phosphatase domain"
+Cre11.g469375							"g11782.t1;g11782.t1"		
+Cre11.g467622	GMM:17.2.3	"hormone metabolism.auxin.induced-regulated-responsive-activated"					"Cre18.g747500.t1.2;g11553.t1;Cre18.g747500.t1.1;Cre18.g747500.t1.1;Cre18.g747500.t1.2;g11553.t1;g11553.t1;Cre18.g747500.t1.2;Cre18.g747500.t1.1"		
+Cre11.g467773			Chloroplast				"Cre22.g763150.t1.2;Cre22.g763150.t1.1;g11703.t1"		
+Cre11.g478850			Chloroplast				"Cre11.g478850.t1.1;g11887.t1"		
+Cre11.g467704							g11634.t1		
+Cre11.g467687			Mitochondrion				"g11617.t1;Cre18.g744500.t1.1;Cre18.g744500.t1.2"		
+Cre11.g477150							"g11849.t1;g11849.t1;g11849.t1;g11849.t1"		
+Cre11.g467609	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	"ubiquitin-protein transferase activity"		"g11539.t1;Cre18.g748100.t1.1;Cre18.g748100.t1.1;g11539.t1"		" null-allele mutant was isolated (PMID 29743196); null-allele mutant was isolated (PMID 29743196)"
+Cre11.g467668	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"				NUOB22	"Cre18.g745500.t1.2;g11598.t1;Cre18.g745500.t1.1;NUOB22"	NUOB22	"Mitochondrial NADH-ubiquinone oxidoreductase (Complex I) B22 subunit-like protein (NUOB22, LYR protein family; human NDUFB9); Ortholog to NDUFB9 in Homo sapiens;"
+Cre11.g481115			Chloroplast				g11945.t1		
+Cre11.g467584	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre18.g749250.t1.1;Cre18.g749250.t1.2;g11514.t1;Cre18.g749250.t1.2;Cre18.g749250.t1.1;g11514.t1"		
+Cre11.g476850	GMM:31.6.1.7	"cell.motility.eukaryotes.dynein regulatory complex (DRC)"		"GO:0048870;GO:0031514"	"cell motility;motile cilium"	DRC4	"g11843.t1;Cre11.g476850.t1.1;PF2;GAS8;PF2;GAS8;Cre11.g476850.t1.1;g11843.t1"	"DRC4;DRC4"	"Component of dynein regulatory complex (N-DRC) of flagellar axoneme, originally identified by pf2 mutation; has similarity to mammalian growth-arrest specific gene product (Gas11/Gas8);Component of dynein regulatory complex (N-DRC) of flagellar axoneme, originally identified by pf2 mutation; has similarity to mammalian growth-arrest specific gene product (Gas11/Gas8)"
+Cre11.g467529			Chloroplast				"g11459.t1;Cre18.g751200.t1.1;g11459.t1;Cre18.g751200.t1.1"		
+Cre11.g467663			Mitochondrion	GO:0005515	"protein binding"		"Cre18.g745750.t1.1;g11593.t1;g11593.t1;Cre18.g745750.t1.1;Cre18.g745750.t1.1;g11593.t1;Cre18.g745750.t1.1;g11593.t1;g11593.t1;Cre18.g745750.t1.1"		
+Cre11.g467760									
+Cre11.g482483	GMM:28.99	DNA.unspecified		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"		g11978.t1		
+Cre11.g468365									
+Cre11.g467680	GMM:28.1	"DNA.synthesis/chromatin structure"					"g11610.t1;Cre18.g744850.t1.1;g11610.t1;Cre18.g744850.t1.1"		
+Cre11.g476000							"g11823.t1;Cre11.g476000.t1.1"		
+Cre11.g467757							"g11686.t1;Cre22.g763900.t1.1;g11686.t1;Cre22.g763900.t1.1;g11686.t1;Cre22.g763900.t1.1;g11686.t1;Cre22.g763900.t1.1"		
+Cre11.g476750	"GMM:7.3;GMM:1.1.5.3"	"OPP.electron transfer;PS.lightreaction.other electron carrier (ox/red).ferredoxin reductase"	Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	FNR1	"g11841.t1;Cre11.g476750.t1.1"	FNR1	"Ferredoxin-NADP reductase, chloroplast precursor; involved in photosynthetic linear, and possibly in cyclic, electron flow; major isoform"
+Cre11.g477250							g11851.t1		
+Cre11.g467692			Chloroplast				"Cre18.g744300.t1.1;g11622.t1;g11622.t1;Cre18.g744300.t1.1"		
+Cre11.g467532									
+Cre11.g467655	"GMM:29.5.5;GMM:29.3.4.99;GMM:29.3.2"	"protein.degradation.serine protease;protein.targeting.secretory pathway.unspecified;protein.targeting.mitochondria"	Mitochondrion	"GO:0016020;GO:0008236;GO:0006508"	"membrane;serine-type peptidase activity;proteolysis"	IMP1	"g11585.t1;IMP1;Cre18.g746000.t1.2;Cre18.g746000.t1.1"	IMP1	"serine protease (S26A family); type I signal peptidase; processes a subset of mitochondrion-imported proteins as they are translocated through the inner membrane into the intermembrane space"
+Cre11.g467731			Mitochondrion						
+Cre11.g467715									
+Cre11.g467528	GMM:34.21	transport.calcium		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	CAV4	"Cre18.g751250.t1.1;g11458.t1;CAV4;Cre18.g751250.t1.1;CAV4;g11458.t1;g11458.t1;CAV4;Cre18.g751250.t1.1;CAV4;g11458.t1;Cre18.g751250.t1.1;g11458.t1;CAV4;Cre18.g751250.t1.1"	"CAV4;CAV4;CAV4;CAV4;CAV4"	"Calcium channel, 4-domain, voltage-dependent, alpha subunit; may exhibit altered ion selectivity as conserved P-loop loci differ from mammalian Ca2+ channels;Calcium channel, 4-domain, voltage-dependent, alpha subunit; may exhibit altered ion selectivity as conserved P-loop loci differ from mammalian Ca2+ channels;Calcium channel, 4-domain, voltage-dependent, alpha subunit; may exhibit altered ion selectivity as conserved P-loop loci differ from mammalian Ca2+ channels;Calcium channel, 4-domain, voltage-dependent, alpha subunit; may exhibit altered ion selectivity as conserved P-loop loci differ from mammalian Ca2+ channels;Calcium channel, 4-domain, voltage-dependent, alpha subunit; may exhibit altered ion selectivity as conserved P-loop loci differ from mammalian Ca2+ channels"
+Cre11.g479383			"Secretory pathway"				"Cre11.g479400.t1.3;g11901.t1;Cre11.g479400.t1.3;g11901.t1;Cre11.g479400.t1.3;g11901.t1;Cre11.g479400.t1.3;g11901.t1;g11901.t1;Cre11.g479400.t1.3;g11901.t1;Cre11.g479400.t1.3;Cre11.g479400.t1.3;g11901.t1"		
+Cre11.g482841			Chloroplast				"g11987.t1;g11987.t1"		
+Cre11.g467595	"GMM:35.1.19;GMM:3.3"	"not assigned.no ontology.C2 domain-containing protein;minor CHO metabolism.sugar alcohols"		GO:0005515	"protein binding"		"Cre18.g748700.t1.1;g11525.t1;Cre18.g748700.t1.2;g11525.t1;Cre18.g748700.t1.2;Cre18.g748700.t1.1"		
+Cre11.g476650	"GMM:2.2.2.9;GMM:2.1.2.4"	"major CHO metabolism.degradation.starch.limit dextrinase/pullulanase;major CHO metabolism.synthesis.starch.debranching"	Chloroplast	"GO:0030246;GO:0005975;GO:0004553;GO:0003824"	"carbohydrate binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	PUL1	"g11839.t1;PU1;g11839.t1;PU1;PU1;g11839.t1;PU1;g11839.t1;PU1;g11839.t1;g11839.t1;PU1;g11839.t1;PU1"	"PUL1;PUL1;PUL1;PUL1;PUL1;PUL1;PUL1"	
+Cre11.g467578	GMM:29.2.1.2.2.28	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L28"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL28	g11507.t1		
+Cre11.g477950	"GMM:3.6;GMM:29.4"	"minor CHO metabolism.callose;protein.postranslational modification"	"Secretory pathway"				g11865.t1		
+Cre11.g467525				GO:0005515	"protein binding"		"g11455.t1;Cre18.g751450.t1.1"		
+Cre11.g475150	GMM:31.6.1.8	"cell.motility.eukaryotes.flagellar membrane proteins"					"Cre11.g475150.t1.1;g11804.t1;g11804.t1;Cre11.g475150.t1.1"		
+Cre11.g467707	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"	Mitochondrion	"GO:0046961;GO:0046933;GO:0045261;GO:0015986"	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;proton-transporting ATP synthase complex, catalytic core F(1);ATP synthesis coupled proton transport"	ATP4	"Cre18.g743700.t1.2;g11637.t1;Cre18.g743700.t1.1;ATP4;g11637.t1;Cre18.g743700.t1.2;Cre18.g743700.t1.1;ATP4;ATP4;Cre18.g743700.t1.2;g11637.t1;Cre18.g743700.t1.1"	"ATP16;ATP16;ATP16"	"Mitochondrial ATP synthase, H+ transporting, delta chain. Gene in other organisms variously named ATP4, ATPD, ATP16;Mitochondrial ATP synthase, H+ transporting, delta chain. Gene in other organisms variously named ATP4, ATPD, ATP16;Mitochondrial ATP synthase, H+ transporting, delta chain. Gene in other organisms variously named ATP4, ATPD, ATP16"
+Cre11.g479250	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	"Secretory pathway"				"g11898.t1;Cre11.g479250.t1.1"	RANGAP1	
+Cre11.g467626	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g11556.t1;Cre18.g747350.t1.1;Cre18.g747350.t1.1;g11556.t1;g11556.t1;Cre18.g747350.t1.1;g11556.t1;Cre18.g747350.t1.1;g11556.t1;Cre18.g747350.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre11.g481400	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g11954.t1;g11954.t1"		
+Cre11.g480000			Chloroplast	GO:0005515	"protein binding"		"Cre11.g480000.t1.1;g11914.t1;Cre11.g480000.t1.1;g11914.t1"		
+Cre11.g482450							"g11977.t1;Cre11.g482450.t1.1"		
+Cre11.g467793							"Cre22.g762400.t1.2;Cre22.g762400.t1.1;g11723.t1"		
+Cre11.g467742			Mitochondrion	GO:0008270	"zinc ion binding"		"Cre22.g764500.t1.1;g11672.t1"		
+Cre11.g469600	GMM:27.3.55	"RNA.regulation of transcription.HDA"				HDA9	"HDA9;g11787.t1;Cre11.g469600.t1.1"	HDA9	"Histone deacetylase. ChromoDB HDA3411"
+Cre11.g467629	"GMM:31.6.1.10;GMM:30.99"	"cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified"	Mitochondrion				"Cre18.g747200.t1.1;g11559.t2;Cre18.g747200.t1.1;g11559.t2;g11559.t2;Cre18.g747200.t1.1;Cre18.g747200.t1.1;g11559.t2;Cre18.g747200.t1.1;g11559.t2;Cre18.g747200.t1.1;g11559.t2;Cre18.g747200.t1.1;g11559.t2"		
+Cre11.g481104				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g11944.t1		
+Cre11.g467530			Chloroplast				"Cre18.g751150.t1.1;g11460.t1;g11460.t1;Cre18.g751150.t1.1;Cre18.g751150.t1.1;g11460.t1;Cre18.g751150.t1.1;g11460.t1;g11460.t1;Cre18.g751150.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre11.g467780			"Secretory pathway"				g11710.t1		
+Cre11.g467643							"g11574.t1;Cre18.g746500.t1.2;Cre18.g746500.t1.1"		
+Cre11.g467552	GMM:4.2.4	"glycolysis.plastid branch.phosphofructokinase (PFK)"	Mitochondrion	"GO:0006096;GO:0003872"	"glycolytic process;6-phosphofructokinase activity"		g11481.t1		
+Cre11.g479600	"GMM:34.21;GMM:34.12"	"transport.calcium;transport.metal"	"Secretory pathway"	"GO:0055085;GO:0016021;GO:0007154"	"transmembrane transport;integral component of membrane;cell communication"	CAX6	"g11906.t2;MHX1;CAX6;CAX6;g11906.t2;MHX1;g11906.t2;MHX1;CAX6;MHX1;CAX6;g11906.t2;g11906.t2;MHX1;CAX6"		"Previously annotated as CAX6, but is orthologous to MHX1 (magnesium/proton exchanger, AT2G47600.1) in Arabidopsis thaliana;;Previously annotated as CAX6, but is orthologous to MHX1 (magnesium/proton exchanger, AT2G47600.1) in Arabidopsis thaliana;;Previously annotated as CAX6, but is orthologous to MHX1 (magnesium/proton exchanger, AT2G47600.1) in Arabidopsis thaliana;;Previously annotated as CAX6, but is orthologous to MHX1 (magnesium/proton exchanger, AT2G47600.1) in Arabidopsis thaliana;;Previously annotated as CAX6, but is orthologous to MHX1 (magnesium/proton exchanger, AT2G47600.1) in Arabidopsis thaliana;"
+Cre11.g478800							"g11886.t1;Cre11.g478800.t1.1;Cre11.g478800.t1.1;g11886.t1;Cre11.g478800.t1.1;g11886.t1;Cre11.g478800.t1.1;g11886.t1;Cre11.g478800.t1.1;g11886.t1;Cre11.g478800.t1.1;g11886.t1;g11886.t1;Cre11.g478800.t1.1"		
+Cre11.g476800	GMM:29.2.1.1.3.2.15	"protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L15"	Mitochondrion	"GO:0015934;GO:0006412;GO:0003735"	"large ribosomal subunit;translation;structural constituent of ribosome"	MRPL15	"MRPL15;uL15m;g11842.t1"	MRPL15	
+Cre11.g467785	GMM:27.3.55	"RNA.regulation of transcription.HDA"					"g11715.t1;Cre22.g762650.t1.1"		
+Cre11.g467639							"Cre18.g746700.t1.1;Cre18.g746700.t1.2;g11569.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre11.g467632			"Secretory pathway"				"Cre18.g747050.t1.2;Cre18.g747050.t1.1;g11562.t1;g11562.t1;Cre18.g747050.t1.1;Cre18.g747050.t1.2;Cre18.g747050.t1.2;Cre18.g747050.t1.1;g11562.t1;Cre18.g747050.t1.1;g11562.t1;Cre18.g747050.t1.2;Cre18.g747050.t1.2;g11562.t1;Cre18.g747050.t1.1;Cre18.g747050.t1.2;g11562.t1;Cre18.g747050.t1.1"		
+Cre11.g467703							"Cre18.g743950.t1.1;g11633.t1"		
+Cre11.g467689	GMM:1.1.3	"PS.lightreaction.cytochrome b6/f"	Chloroplast	"GO:0055114;GO:0051537;GO:0042651;GO:0016679;GO:0016491;GO:0009496"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;thylakoid membrane;oxidoreductase activity, acting on diphenols and related substances as donors;oxidoreductase activity;plastoquinol--plastocyanin reductase activity"	PETC	"Cre18.g744400;PETC;Cre18.g744400.t1.1;g11619.t1;Cre18.g744400.t1.2;Cre18.g744400;g11619.t1;PETC;Cre18.g744400.t1.2;Cre18.g744400.t1.1;PETC;Cre18.g744400;g11619.t1;Cre18.g744400.t1.1;Cre18.g744400.t1.2;PETC;Cre18.g744400;g11619.t1;Cre18.g744400.t1.1;Cre18.g744400.t1.2;Cre18.g744400.t1.2;Cre18.g744400;g11619.t1;PETC;Cre18.g744400.t1.1"	"PETC1;PETC1;PETC1;PETC1;PETC1"	"Rieske [2Fe-2S] subunit of plastoquinol-plastocyanin oxido-reductase, chloroplast precursor;Rieske [2Fe-2S] subunit of plastoquinol-plastocyanin oxido-reductase, chloroplast precursor;Rieske [2Fe-2S] subunit of plastoquinol-plastocyanin oxido-reductase, chloroplast precursor;Rieske [2Fe-2S] subunit of plastoquinol-plastocyanin oxido-reductase, chloroplast precursor;Rieske [2Fe-2S] subunit of plastoquinol-plastocyanin oxido-reductase, chloroplast precursor"
+Cre11.g474750			"Secretory pathway"	"GO:0016757;GO:0016021"	"transferase activity, transferring glycosyl groups;integral component of membrane"		"g11796.t1;g11796.t1;g11796.t1;g11796.t1"		
+Cre11.g467600							"g11731.t1;g11731.t1"		
+Cre11.g479950	GMM:34.2	transport.sugars	"Secretory pathway"			CGL7	"TPT17;g11913.t1;Cre11.g479950.t1.1"	CGL7	
+Cre11.g467500							"Cre11.g467500.t1.1;g11729.t1;g11729.t1;Cre11.g467500.t1.1;g11729.t1;Cre11.g467500.t1.1"		
+Cre11.g478000			Chloroplast				"g11866.t1;g11866.t1;g11866.t1"		
+Cre11.g469350			Mitochondrion	GO:0006464	"cellular protein modification process"	TTL12	"g11781.t1;TTL12;TTL12;g11781.t1;TTL12;g11781.t1"	"TTL12;TTL12;TTL12"	
+Cre11.g482650			Mitochondrion			EZY3	"EZY3;g11982.t1"	EZY3	"Early zygote expressed of unknown function [PMID: 18487630]"
+Cre11.g468362							"Cre45.g788400.t1.2;g11754.t1;Cre45.g788400.t1.1"		
+Cre11.g467722							"g11652.t1;Cre22.g765300.t1.1"		
+Cre11.g467675			Chloroplast				"g11605.t1;Cre18.g745100.t1.1;g11605.t1;Cre18.g745100.t1.1;Cre18.g745100.t1.1;g11605.t1"		
+Cre11.g478240	GMM:30.11.1	"signalling.light.COP9 signalosome"		GO:0005515	"protein binding"		g11874.t1		
+Cre11.g467850	GMM:11.3	"lipid metabolism.phospholipid synthesis"		"GO:0016746;GO:0008152;GO:0006644"	"transferase activity, transferring acyl groups;metabolic process;phospholipid metabolic process"	PGA6	"g11737.t2;PGA6;g11737.t2;PGA6"	"PGA6;PGA6"	
+Cre11.g483100	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g11993.t1		
+Cre11.g467769			Chloroplast				"g11699.t1;Cre22.g763300.t1.1;Cre22.g763300.t1.2"		
+Cre11.g474800	"GMM:19.3;GMM:13.2.2.3;GMM:13.1.2.2.10"	"tetrapyrrole synthesis.GSA;amino acid metabolism.degradation.glutamate family.arginine;amino acid metabolism.synthesis.glutamate family.proline.ornithine aminotransferase"	Mitochondrion	"GO:0030170;GO:0008483"	"pyridoxal phosphate binding;transaminase activity"	OTA1	"g11797.t1;OTA1;Cre11.g474800.t1.1"	OTA1	"involved in proline and arginine metabolism; Ornithine-oxo-acid transaminase [EC:2.6.1.13] (ornithine aminotransferase); aminotransferase class III; targeted to mitochondria (by homology) and predicted mitochondrial by TargetP and Predalgo"
+Cre11.g467548			"Secretory pathway"				"Cre44.g788031.t1.2;Cre44.g788031.t1.1;g11478.t1"		
+Cre11.g467716			Chloroplast				"g11646.t1;g11646.t1"		
+Cre11.g467776			Mitochondrion				"Cre22.g763050.t1.2;g11706.t1;Cre22.g763050.t1.1"		
+Cre11.g480900							"g11938.t1;Cre11.g480900.t1.1;g11938.t1;Cre11.g480900.t1.1;Cre11.g480900.t1.1;g11938.t1;g11938.t1;Cre11.g480900.t1.1;Cre11.g480900.t1.1;g11938.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre11.g467538	GMM:24	"biodegradation of xenobiotics"	"Secretory pathway"			GOX8	"GOX8;g11468.t1;GOX10;Cre18.g750800.t1.1;Cre18.g750800.t1.1;GOX10;GOX8;g11468.t1"	"GOX8;GOX8"	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); i;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); i"
+Cre11.g475800			Mitochondrion				"g11819.t1;Cre11.g475800.t1.1"		
+Cre11.g481375							g11953.t1		
+Cre11.g476200				GO:0046872	"metal ion binding"		"g11828.t1;Cre11.g476200.t1.1"	NZF1	"three CCCH-type zinc fingers and two Nuclear Exclusion SIgnals; mutant shows nitrate-insensitive expression of NIA1 and altered polyadenylation profile of the NIT2 transcript"
+Cre11.g483351			"Secretory pathway"			PHC44	"PHC44;g11998.t1;g11998.t1;PHC44;PHC44;g11998.t1;PHC44;g11998.t1"		
+Cre11.g480725			Chloroplast						
+Cre11.g467540	GMM:24	"biodegradation of xenobiotics"	"Secretory pathway"			GOX7	"GOX12;g11470.t1;g11470.t1;GOX12"	"GOX7;GOX7"	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); i;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); i"
+Cre11.g476500	GMM:29.3.3	protein.targeting.chloroplast	Mitochondrion	"GO:0055114;GO:0051537;GO:0016491;GO:0010277"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"		"PAO7;g11836.t1"		"Contains Rieske iron-sulfur cluster domain; similar to Tic55-II; belongs to the classical family of short chain dehydrogenases [PMID: 15180984]; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre11.g475550						UMM10	"Cre11.g475550.t1.1;g11812.t1;UMM10"		"UbiE/COQ5 methyltransferase family protein"
+Cre11.g468200			"Secretory pathway"				g11747.t1		
+Cre11.g477100						FAP97	"Cre11.g477100.t1.1;g11848.t1"	FAP97	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]; serine endopeptidase"
+Cre11.g479300	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"	Chloroplast	"GO:0046872;GO:0005524"	"metal ion binding;ATP binding"		"g11899.t1;SRH20;g11899.t1;SRH20"		"SNF2-related helicase with nitrogenase component 1 conserved site which may indicate involvement in iron-molybdenum cofactor biosynthesis. ChromoDB CHR346;;SNF2-related helicase with nitrogenase component 1 conserved site which may indicate involvement in iron-molybdenum cofactor biosynthesis. ChromoDB CHR346;"
+Cre11.g467661							g11591.t1		
+Cre11.g467768	GMM:27.3.57	"RNA.regulation of transcription.JUMONJI family"					"g11698.t1;Cre22.g763350.t1.1;Cre22.g763350.t1.1;g11698.t1"		
+Cre11.g467734									
+Cre11.g467563			Mitochondrion				"Cre18.g750200.t1.1;g11492.t1;Cre18.g750200.t1.2"		
+Cre11.g469033			Mitochondrion				g11775.t2		
+Cre11.g467576							"Cre18.g749600.t1.1;g11505.t3"		
+Cre11.g467662			"Secretory pathway"				"Cre18.g745763.t1.2;g11592.t1;Cre18.g745763.t1.1"		
+Cre11.g482050							"FAL13;Cre11.g482050.t1.1;g11968.t1"		
+Cre11.g481650			Chloroplast				"g11959.t1;Cre11.g481650.t1.1"		
+Cre11.g481866	GMM:31.1	cell.organisation	"Secretory pathway"				"g11964.t1;Cre11.g481850.t1.3"		
+Cre11.g475400			"Secretory pathway"	GO:0005515	"protein binding"		g11808.t1		
+Cre11.g468353			Chloroplast	"GO:0008076;GO:0006813;GO:0005249"	"voltage-gated potassium channel complex;potassium ion transport;voltage-gated potassium channel activity"		"Cre43.g787450.t1.2;g11751.t1;Cre43.g787450.t1.1;Cre43.g787450.t1.2;g11751.t1;Cre43.g787450.t1.1"		
+Cre11.g476300									
+Cre11.g467764	GMM:11.9.3.2	"lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase"							
+Cre11.g467754	GMM:29.7	protein.glycosylation	"Secretory pathway"				"Cre22.g764050.t1.1;g11683.t1;UAA6;Cre22.g764050.t1.2"		
+Cre11.g478128	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		g11870.t1	GCN20	
+Cre11.g467577	GMM:27.3.24	"RNA.regulation of transcription.MADS box transcription factor family"		"GO:0046983;GO:0003677"	"protein dimerization activity;DNA binding"		"Cre18.g749550.t1.2;Cre18.g749550.t1.1;g11506.t1"		
+Cre11.g467555				GO:0005515	"protein binding"		"Cre44.g788200.t1.2;g11484.t1;Cre44.g788200.t1.1"		
+Cre11.g467526	GMM:26.24	"misc.GCN5-related N-acetyltransferase"	Chloroplast	GO:0008080	"N-acetyltransferase activity"		"Cre18.g751350.t1.1;g11456.t1;Cre18.g751350.t1.1;g11456.t1"		
+Cre11.g467659				"GO:0016592;GO:0006357;GO:0001104"	"mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity"		"g11589.t1;Cre18.g745850.t1.1"		
+Cre11.g467400			Chloroplast				"Cre11.g467400.t1.1;g11727.t1;g11727.t1;Cre11.g467400.t1.1;g11727.t1;Cre11.g467400.t1.1"		
+Cre11.g467781	"GMM:34.16;GMM:29.2.2.1"	"transport.ABC transporters and multidrug resistance systems;protein.synthesis.ribosome biogenesis.export from nucleus"		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"	FAP151	"g11711.t1;FAP151;Cre22.g762850.t1.1;Cre22.g762850.t1.2;Cre22.g762850.t1.2;Cre22.g762850.t1.1;g11711.t1;FAP151"	"ARB1;ARB1"	"Flagellar Associated Protein 151;Flagellar Associated Protein 151"
+Cre11.g482700			Chloroplast				"Cre11.g482700.t1.1;g11984.t1"		
+Cre11.g467619			Chloroplast				g11549.t1		
+Cre11.g467683			"Secretory pathway"				"Cre18.g744700.t1.1;g11613.t1"		
+Cre11.g467539	GMM:24	"biodegradation of xenobiotics"	"Secretory pathway"			GOX6	"Cre18.g750750.t1.1;GOX6;Cre18.g750750.t1.2;GOX11;g11469.t1;GOX11;Cre18.g750750.t1.2;Cre18.g750750.t1.1;GOX6;g11469.t1;GOX11;g11469.t1;Cre18.g750750.t1.2;Cre18.g750750.t1.1;GOX6"	"GOX6;GOX6;GOX6"	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); i;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); i;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); i"
+Cre11.g469450				"GO:0005737;GO:0005634"	"cytoplasm;nucleus"	CGL124	g11784.t1	CGL124	
+Cre11.g467739				GO:0008017	"microtubule binding"	IFT54	"Cre22.g764600.t1.1;g11669.t1;FAP116;Dyf-11Elipsa;Cre22.g764600.t1.2;Traf3ip1;Traf3ip1;Cre22.g764600.t1.2;g11669.t1;FAP116;Cre22.g764600.t1.1;Dyf-11Elipsa"	"IFT54;IFT54"	"belongs to IFT-B2 particle; similar to human TRAF3IP1;belongs to IFT-B2 particle; similar to human TRAF3IP1"
+Cre11.g467586	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre18.g749200.t1.2;Cre18.g749200.t1.1;g11516.t1"		
+Cre11.g467545							"Cre44.g787933.t1.1;g11475.t1;Cre44.g787933.t1.2"		
+Cre11.g480451	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC42	"g11927.t1;PHC42"		"contains LTP domain"
+Cre11.g480800				GO:0032040	"small-subunit processome"		"g11936.t1;Cre11.g480800.t1.1"		
+Cre11.g467638	GMM:2.1	"major CHO metabolism.synthesis"	"Secretory pathway"				g11568.t1		
+Cre11.g475900	GMM:28.1	"DNA.synthesis/chromatin structure"					"Cre11.g475900.t1.1;g11821.t1"		
+Cre11.g479900			Mitochondrion				"g11912.t1;Cre11.g479900.t1.1"		
+Cre11.g467650	GMM:27.1	RNA.processing					"g11733.t1;g11733.t1"		
+Cre11.g467772	GMM:31.3	cell.cycle	Mitochondrion			CYCD1	"CYCD1;g11702.t1;Cre22.g763200.t1.1"	CYCD1	"D-type cyclin homolog; contains LXCXE motif. Putative function in G1/S"
+Cre11.g467593	"GMM:35.1.19;GMM:3.3"	"not assigned.no ontology.C2 domain-containing protein;minor CHO metabolism.sugar alcohols"		GO:0005515	"protein binding"		"g11523.t1;Cre18.g748800.t1.1;Cre18.g748800.t1.2"		
+Cre11.g467598							"g11528.t1;Cre18.g748550.t1.1;Cre18.g748550.t1.1;g11528.t1"		
+Cre11.g467695							"Cre18.g744200.t1.1;Cre18.g744200.t1.2;g11626.t1;Cre18.g744200.t1.1;Cre18.g744200.t1.2;g11626.t1"		
+Cre11.g477200	GMM:16.8.5.1	"secondary metabolism.flavonoids.isoflavonols.isoflavone reductase"		"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"	IFR1	"Cre11.g477200.t1.1;g11850.t1;IFR1"	IFR1	NmrA-like
+Cre11.g468377	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005515	"protein binding"		"g11759.t1;g11759.t1"		
+Cre11.g472226	GMM:20.2.3	stress.abiotic.drought/salt							
+Cre11.g468550	GMM:34.1	"transport.p- and v-ATPases"		"GO:0016820;GO:0016471;GO:0015992"	"hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;vacuolar proton-transporting V-type ATPase complex;proton transport"	ATPVG	"ATPVG;Cre11.g468550.t1.1;g11765.t1"	ATPVG1	"Vacuolar H+-ATPase V1 sector, subunit G; V-ATPase G; vacuolar proton pump G subunit; found in the flagellar proteome [PMID: 15998802]"
+Cre11.g482750							"Cre11.g482750.t1.1;g11985.t2;Cre11.g482750.t1.1;g11985.t2"		
+Cre11.g467568	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g11497.t1;Cre18.g749950.t1.2;Cre18.g749950.t1.1"		
+Cre11.g468380							"g11760.t1;Cre45.g788500.t1.1;Cre45.g788500.t1.1;g11760.t1;Cre45.g788500.t1.1;g11760.t1;g11760.t1;Cre45.g788500.t1.1;Cre45.g788500.t1.1;g11760.t1;g11760.t1;Cre45.g788500.t1.1;Cre45.g788500.t1.1;g11760.t1"		
+Cre11.g467610	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		"GO:0005525;GO:0003924"	"GTP binding;GTPase activity"		"Cre18.g748050.t1.1;g11540.t1"		
+Cre11.g467547	"GMM:29.1.18;GMM:29.1.17;GMM:19.1"	"protein.aa activation.glutamine-tRNA ligase;protein.aa activation.glutamate-tRNA ligase;tetrapyrrole synthesis.glu-tRNA synthetase"	"Secretory pathway"	"GO:0043039;GO:0016876;GO:0006418;GO:0005737;GO:0005524;GO:0004812;GO:0000166"	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"		"g11477.t1;GTS1:GLTX;Cre44.g788000.t1.2;Cre44.g788000.t1.1;GTS1:GLTX;g11477.t1;Cre44.g788000.t1.1;Cre44.g788000.t1.2"	"TSX1;TSX1"	
+Cre11.g481126	GMM:21.99	redox.misc	Mitochondrion	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		g11946.t2		
+Cre11.g467690				GO:0005515	"protein binding"		"GST8B;g11620.t1;Cre18.g744350.t1.1;Cre18.g744350.t1.2;Cre18.g744350.t1.2;Cre18.g744350.t1.1;GST8B;g11620.t1"		"One of two paralogs (Cre11.g467690, Cre12.g508850) along with mitochondrial GST8;;One of two paralogs (Cre11.g467690, Cre12.g508850) along with mitochondrial GST8;"
+Cre11.g467559							"g11488.t1;Cre18.g750450.t1.1;Cre18.g750450.t1.1;g11488.t1"		
+Cre11.g480300			Mitochondrion				"g11924.t1;g11924.t1;g11924.t1;g11924.t1"		
+Cre11.g468100	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	"Secretory pathway"	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE30			
+Cre11.g478950	GMM:27.1.1	RNA.processing.splicing	Chloroplast	"GO:0032040;GO:0006364"	"small-subunit processome;rRNA processing"		"g11889.t1;Cre11.g478950.t1.1;g11889.t1;Cre11.g478950.t1.1"		
+Cre11.g467779	"GMM:29.7.8;GMM:29.7.5"	"protein.glycosylation.alpha-1,6-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase (GnTII);protein.glycosylation.alpha-1,3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase (GnTI)"	"Secretory pathway"	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"		"Cre22.g762950.t1.1;g11709.t1;Cre22.g762950.t1.1;g11709.t1"		
+Cre11.g467790			"Secretory pathway"				"Cre22.g762518.t1.2;Cre22.g762518.t1.1;g11720.t1"		
+Cre11.g467533	GMM:29.4	"protein.postranslational modification"	Chloroplast						
+Cre11.g467671			"Secretory pathway"				"Cre18.g745300.t1.2;Cre18.g745300.t1.1;g11601.t1"		
+Cre11.g483301									
+Cre11.g467723	GMM:11.1.3	"lipid metabolism.FA synthesis and FA elongation.ketoacyl ACP synthase"	Chloroplast			KAS1	"Cre22.g765250.t1.2;g11653.t1;Cre22.g765250.t1.1;KAS1"	KAS1	"3-ketoacyl-CoA-synthase component of plastidic multimeric fatty acid synthase (FAS) complex"
+Cre11.g468000			"Secretory pathway"				"g11740.t1;Cre11.g468000.t1.1"		
+Cre11.g467676			Mitochondrion						
+Cre11.g476376			Chloroplast			FAP221	"g11833.t1;RPC82;Pcdp1;Pcdp1;g11833.t1;RPC82"	"FAP221;FAP221"	"Found in the flagellar proteome; HC4 of C1d projection on central pair; Similar to mammalian primary ciliary dyskinesia protein 1 (Pcdp1); May have been duplicated as Cre49.g761347 due to an assembly error in v5 of the C.reinhardtii genome assembly;Found in the flagellar proteome; HC4 of C1d projection on central pair; Similar to mammalian primary ciliary dyskinesia protein 1 (Pcdp1); May have been duplicated as Cre49.g761347 due to an assembly error in v5 of the C.reinhardtii genome assembly"
+Cre11.g467585				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre11.g467685							g11615.t1		
+Cre11.g479416	GMM:26.16	misc.myrosinases-lectin-jacalin							
+Cre11.g480950			"Secretory pathway"				"Cre11.g480950.t1.1;g11939.t1;g11939.t1;Cre11.g480950.t1.1"		"High mobility group proteins, non-histone components of chromatin. ChromoDB HMGB346;High mobility group proteins, non-histone components of chromatin. ChromoDB HMGB346"
+Cre11.g467747			Chloroplast				"Cre22.g764300.t1.1;g11677.t1"		
+Cre11.g467527	"GMM:26.10;GMM:26.1"	"misc.cytochrome P450;misc.misc2"		"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"		"g11457.t1;Cre18.g751300.t1.1;Cre18.g751300.t1.2;Cre18.g751300.t1.2;Cre18.g751300.t1.1;g11457.t1;g11457.t1;Cre18.g751300.t1.1;Cre18.g751300.t1.2;Cre18.g751300.t1.2;g11457.t1;Cre18.g751300.t1.1"		"Target of CRR1;Target of CRR1;Target of CRR1;Target of CRR1"
+Cre11.g467684							"Cre18.g744650.t1.1;g11614.t1;g11614.t1;Cre18.g744650.t1.1;Cre18.g744650.t1.1;g11614.t1"		
+Cre11.g467673	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	Mitochondrion	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE24	"Cre18.g745200.t1.1;PDE24;g11603.t1;g11603.t1;Cre18.g745200.t1.1;PDE24"		"Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain"
+Cre11.g467450				"GO:0032259;GO:0008168"	"methylation;methyltransferase activity"	SOM3	"g11728.t1;SOM3"		
+Cre11.g467791							"Cre22.g762500.t1.1;g11721.t1"		
+Cre11.g467721			"Secretory pathway"				"g11651.t1;Cre22.g765350.t1.2;Cre22.g765350.t1.1;Cre22.g765350.t1.1;Cre22.g765350.t1.2;g11651.t1;g11651.t1;Cre22.g765350.t1.2;Cre22.g765350.t1.1;g11651.t1;Cre22.g765350.t1.1;Cre22.g765350.t1.2"		
+Cre11.g478528			Mitochondrion				"g11880.t1;Cre11.g478500.t1.2"		
+Cre11.g481750			"Secretory pathway"			GAS30	"GAS30;g11961.t1;Cre11.g481750.t1.1;GAS30;Cre11.g481750.t1.1;g11961.t1"	"GAS30;GAS30"	"Belongs to the large pherophorin-family, a family of extracellular matrix glycoproteins (cell wall glycoproteins) with a central hydroxyproline-rich (HR) domain. The mRNA is up-regulated in gametes, in zygotes, by agglutination/cAMP treatment, by osmotic stress and by cell wall removal [PMID: 16183845]. Closely linked to GAS28. Independently sequenced: DQ017907.;Belongs to the large pherophorin-family, a family of extracellular matrix glycoproteins (cell wall glycoproteins) with a central hydroxyproline-rich (HR) domain. The mRNA is up-regulated in gametes, in zygotes, by agglutination/cAMP treatment, by osmotic stress and by cell wall removal [PMID: 16183845]. Closely linked to GAS28. Independently sequenced: DQ017907."
+Cre11.g475350			Mitochondrion	"GO:0051536;GO:0016226;GO:0005737"	"iron-sulfur cluster binding;iron-sulfur cluster assembly;cytoplasm"		g11807.t1		
+Cre11.g467767	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"		"GO:0016020;GO:0009055;GO:0008137"	"membrane;electron carrier activity;NADH dehydrogenase (ubiquinone) activity"	NUO13	"g11697.t1;Cre22.g763400.t1.2;NUO13;Cre22.g763400.t1.1;NUO13;Cre22.g763400.t1.1;Cre22.g763400.t1.2;g11697.t1"	"NUO13;NUO13"	"NADH:ubiquinone oxidoreductase (Complex I) subunit, homolog to bovine B17.2. gi|34334022|gb|AAQ64638.1]; Ortholog to NDUFA12 in Homo sapiens;;NADH:ubiquinone oxidoreductase (Complex I) subunit, homolog to bovine B17.2. gi|34334022|gb|AAQ64638.1]; Ortholog to NDUFA12 in Homo sapiens;"
+Cre11.g467562							"Cre18.g750250.t1.1;g11491.t1"		
+Cre11.g467628							g11558.t1		
+Cre11.g467688	"GMM:26.1;GMM:23.2;GMM:17.1.1.1.12;GMM:17.1.1"	"misc.misc2;nucleotide metabolism.degradation;hormone metabolism.abscisic acid.synthesis-degradation.synthesis.abscisic aldehyde oxidase;hormone metabolism.abscisic acid.synthesis-degradation"		"GO:0055114;GO:0051536;GO:0046872;GO:0016491;GO:0009055"	"oxidation-reduction process;iron-sulfur cluster binding;metal ion binding;oxidoreductase activity;electron carrier activity"		"g11618.t2;Cre18.g744450.t1.1"		
+Cre11.g474950	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"	"Secretory pathway"				"g11800.t1;g11800.t1;g11800.t1;g11800.t1;g11800.t1;g11800.t1;g11800.t1"		
+Cre11.g479450			"Secretory pathway"				g11903.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre11.g467620							"g11550.t1;Cre18.g747650.t1.1;g11550.t1;Cre18.g747650.t1.1"	"CEP83;CEP83"	"Found in basal body proteome as CDP1; Related to Cep83 in humans;Found in basal body proteome as CDP1; Related to Cep83 in humans"
+Cre11.g467658			Chloroplast				"g11588.t1;Cre18.g745859.t1.1;Cre18.g745859.t1.1;g11588.t1;g11588.t1;Cre18.g745859.t1.1;Cre18.g745859.t1.1;g11588.t1;g11588.t1;Cre18.g745859.t1.1"		
+Cre11.g467733									
+Cre11.g467782									
+Cre11.g469100			Chloroplast				"g11776.t1;Cre11.g469100.t1.1"		
+Cre11.g467633	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast	"GO:0051539;GO:0051536;GO:0009451;GO:0003824"	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;RNA modification;catalytic activity"		"g11563.t1;Cre18.g747000.t1.1;Cre18.g747000.t1.1;g11563.t1;Cre18.g747000.t1.1;g11563.t1;Cre18.g747000.t1.1;g11563.t1"		
+Cre11.g475576									
+Cre11.g467575	"GMM:29.6.2.5;GMM:29.5.5;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease;stress.abiotic.heat"	Mitochondrion	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"	CLPB4	g11504.t2	CLPB4	"predicted cytosolic"
+Cre11.g482200						FBB9	"Cre11.g482200.t1.1;g11971.t1;FBB9"	FAP299	"Flagellar and Basal Body Protein 9; conserved protein found in ciliated organisms, human homolog is CFAP299; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation"
+Cre11.g468075									
+Cre11.g467611			Mitochondrion				"g11541.t1;Cre18.g748000.t1.1"		
+Cre11.g469400	GMM:31.9	cell.eyespot		GO:0000160	"phosphorelay signal transduction system"	HKR4	"HIK;Cre11.g469400.t1.1;g11783.t1;HKR4"	HIK4	"Contains only the signal receiver domain; Originally named HKR4, but was changed to avoid confusion with the histidine-kinase rhodopsins;"
+Cre11.g478156	GMM:31.4	"cell.vesicle transport"		"GO:0030131;GO:0016192;GO:0006886"	"clathrin adaptor complex;vesicle-mediated transport;intracellular protein transport"	AP1B1	"AP1B1;g11871.t1"	AP1B1	"Expressed protein. Beta1-Adaptin, clathrin adaptor complex subunit, putative member of AP-1 complex"
+Cre11.g479850	"GMM:31.3.1;GMM:31.3;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;cell.cycle;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755;GO:0003676;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;nucleic acid binding;protein peptidyl-prolyl isomerization"	CYN59	"Cre11.g479850.t1.1;g11911.t1;Cre11.g479850.t1.1;g11911.t1;Cre11.g479850.t1.1;g11911.t1"	"CYN59;CYN59;CYN59"	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type. RNA-binding region RNP-1-RRM / RDG-rich domain; similar to AtCYP59; no targeting peptide, probably nucleus located (by homology);Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type. RNA-binding region RNP-1-RRM / RDG-rich domain; similar to AtCYP59; no targeting peptide, probably nucleus located (by homology);Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type. RNA-binding region RNP-1-RRM / RDG-rich domain; similar to AtCYP59; no targeting peptide, probably nucleus located (by homology)"
+Cre11.g467558							g11487.t1		
+Cre11.g467554				"GO:0016021;GO:0004252"	"integral component of membrane;serine-type endopeptidase activity"		"g11483.t1;Cre44.g788250.t1.1"		
+Cre11.g475850	"GMM:29.6;GMM:1.1.2.3"	"protein.folding;PS.lightreaction.photosystem I.biogenesis"	Chloroplast.Stroma.Thylakoid.Lumen			ZNJ1	"ZNJ1;g11820.t1;Cre11.g475850.t1.1"		"contains a Zn-finger domain with CXXCXGXG motif, also found in DnaJ co-chaperones; possibly directed to thylakoid lumen via TAT pathway"
+Cre11.g467569	"GMM:1.1.4.7;GMM:1.1.4"	"PS.lightreaction.ATP synthase.delta chain;PS.lightreaction.ATP synthase"	Chloroplast	"GO:0046933;GO:0015986"	"proton-transporting ATP synthase activity, rotational mechanism;ATP synthesis coupled proton transport"	ATPD	"Cre18.g749900.t1.1;ATPD;Cre18.g749900.t1.2;g11498.t1;Cre18.g749900.t1.1;g11498.t1;ATPD;Cre18.g749900.t1.2"	"ATPD1;ATPD1"	"ATP synthase CF1 delta chain, chloroplast precursor [gi:2493039, PMID: 8543042];ATP synthase CF1 delta chain, chloroplast precursor [gi:2493039, PMID: 8543042]"
+Cre11.g467587									
+Cre11.g467771									
+Cre11.g474650							"Cre11.g474650.t1.1;g11794.t1"		
+Cre11.g476100			Mitochondrion			MCD1	"g11826.t1;OPR50;OPR50;g11826.t1;g11826.t1;OPR50"	"MCD1;MCD1;MCD1"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; stabilizes petD mRNA; GenBank entry AAY44840.1 is wrong at N-terminus;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; stabilizes petD mRNA; GenBank entry AAY44840.1 is wrong at N-terminus;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; stabilizes petD mRNA; GenBank entry AAY44840.1 is wrong at N-terminus"
+Cre11.g478966	GMM:27.1.1	RNA.processing.splicing		"GO:0032040;GO:0006364"	"small-subunit processome;rRNA processing"				
+Cre11.g468383			Chloroplast				"Cre45.g788550.t1.1;g11761.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre11.g468500	GMM:26.13	"misc.acid and other phosphatases"	"Secretory pathway"	GO:0016787	"hydrolase activity"	MPA8	"MPA8;g11764.t1;g11764.t1;MPA8"		"Metallophosphoesterase/metallo-dependent phosphatase with purpe acid phosphatase domain;Metallophosphoesterase/metallo-dependent phosphatase with purpe acid phosphatase domain"
+Cre11.g467719			Mitochondrion				"Cre22.g765500.t1.1;g11649.t1;Cre22.g765500.t1.2"		
+Cre11.g467787									
+Cre11.g482800	GMM:29.4.1	"protein.postranslational modification.kinase"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"STPK5;g11986.t1;STK5"		"Serine/Threonine Protein Kinase Homolog 5"
+Cre11.g480650	"GMM:33.99;GMM:26.22"	"development.unspecified;misc.short chain dehydrogenase/reductase (SDR)"		"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"Cre11.g480650.t1.1;SDR20;g11931.t1"		
+Cre11.g467604							"g11533.t1;Cre18.g748300.t1.1;g11533.t1;Cre18.g748300.t1.1;Cre18.g748300.t1.1;g11533.t1;g11533.t1;Cre18.g748300.t1.1"		
+Cre11.g467741			Chloroplast				"g11671.t1;Cre22.g764512.t1.1;Cre22.g764512.t1.2;g11671.t1;Cre22.g764512.t1.1;Cre22.g764512.t1.2"		
+Cre11.g467570			Mitochondrion						
+Cre11.g477400	"GMM:27.3.5;GMM:23.1.2"	"RNA.regulation of transcription.ARR;nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190;GO:0000160"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;phosphorelay signal transduction system"	CYG43	"CYG43;g11854.t1;g11854.t1;CYG43"		"similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre11.g481313			"Secretory pathway"				"g11951.t1;Cre11.g481313.t1.1"		
+Cre11.g467660	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG17	"ELG17;Cre18.g745800.t1.1;g11590.t1"		"Belongs to the family of exostosin-like glycosyltransferases"
+Cre11.g467691			"Secretory pathway"				"g11621.t1;Cre18.g744313.t1.2;Cre18.g744313.t1.1"		
+Cre11.g476325	GMM:4.1.15	"glycolysis.cytosolic branch.phospho-enol-pyruvate carboxylase (PEPC)"	Chloroplast	"GO:0015977;GO:0008964;GO:0006099"	"carbon fixation;phosphoenolpyruvate carboxylase activity;tricarboxylic acid cycle"				
+Cre11.g469650			"Secretory pathway"				"g11788.t2;g11788.t2;g11788.t2;g11788.t2;g11788.t2;g11788.t2"		
+Cre11.g477450	GMM:29.4.1	"protein.postranslational modification.kinase"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g11855.t1;g11855.t1"		
+Cre11.g467748			Mitochondrion						
+Cre11.g467774			"Secretory pathway"				g11704.t1		
+Cre11.g467603			Chloroplast				"g11532.t1;g11532.t1"		
+Cre11.g480551							"Cre11.g480551.t1.1;g11929.t1;Cre11.g480551.t1.1;g11929.t1"		
+Cre11.g467724			Mitochondrion				"g11654.t1;Cre22.g765200.t1.2;Cre22.g765200.t1.1;g11654.t1;Cre22.g765200.t1.2;Cre22.g765200.t1.1"		
+Cre11.g467645									
+Cre11.g467669							"g11599.t1;Cre18.g745450.t1.1"		
+Cre11.g467534									
+Cre11.g482550			Mitochondrion				g11979.t1		
+Cre11.g467694			Chloroplast						
+Cre11.g467612	GMM:9.99	"mitochondrial electron transport / ATP synthesis.unspecified"	Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"Cre18.g747950.t1.1;g11542.t1;Cre18.g747950.t1.1;g11542.t1"		
+Cre11.g467755	"GMM:30.11;GMM:26.22"	"signalling.light;misc.short chain dehydrogenase/reductase (SDR)"					"g11684.t1;Cre22.g764000.t1.1;SNE17"		"Similar to the NAD-binding domain of Tic62-3"
+Cre11.g467592	GMM:34.3	"transport.amino acids"		"GO:0016020;GO:0015171;GO:0003333"	"membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport"		"Cre18.g748850.t1.1;g11522.t1"		"similar to plant Bidirection Aminoacid Transporter (BAT1); TCDB family 2.A.3.4"
+Cre11.g476600			"Secretory pathway"	"GO:0055114;GO:0050660;GO:0016491"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity"		"g11838.t1;Cre11.g476600.t1.1"		
+Cre11.g476450			Mitochondrion	GO:0008168	"methyltransferase activity"		g11835.t1		
+Cre11.g483000	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g11991.t1;g11991.t1"		
+Cre11.g467697									
+Cre11.g479500	GMM:29.2.1.1.1.2.4	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L4"	Chloroplast	"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	PRPL4	"Cre11.g479500.t1.1;g11904.t1"	PRPL4	"imported to chloroplast; Chloroplast large ribosomal subunit protein L4"
+Cre11.g467566							"g11495.t1;Cre18.g750050.t1.2;Cre18.g750050.t1.1"		
+Cre11.g482300	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	"protein binding"	FAP305	"Cre11.g482300.t1.1;g11974.t1;FAP305;MOT17"	MOT17	"Identified by comparative genomics as being present only in organisms having motile (MOT) cilia; Similar to SPAG17; Also known as Flagellar Associated Protein 305 (FAP305)"
+Cre11.g467614			"Secretory pathway"						
+Cre11.g478184			"Secretory pathway"	"GO:0046355;GO:0004567"	"mannan catabolic process;beta-mannosidase activity"		g11872.t1		
+Cre11.g467783							"g11713.t1;Cre22.g762743.t1.2;Cre22.g762743.t1.1"		
+Cre11.g467636	"GMM:29.4.1.57;GMM:29.4"	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre18.g746850.t1.1;g11566.t1;g11566.t1;Cre18.g746850.t1.1;Cre18.g746850.t1.1;g11566.t1"		
+Cre11.g467726			Mitochondrion	"GO:0016021;GO:0006869;GO:0005319"	"integral component of membrane;lipid transport;lipid transporter activity"		"g11656.t1;Cre22.g765100.t1.1;Cre22.g765100.t1.2;Cre22.g765100.t1.2;Cre22.g765100.t1.1;g11656.t1;g11656.t1;Cre22.g765100.t1.1;Cre22.g765100.t1.2"		
+Cre11.g477000	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre11.g477000.t1.1;CKIN2.4;SNRK2.4;g11846.t1"	SNRK2D	"Mediates abiotic stress responses"
+Cre11.g467795	GMM:34.21	transport.calcium		"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"		"g11725.t1;Cre22.g762350.t1.1"		
+Cre11.g467762							"Cre22.g763600.t1.1;g11692.t1"		
+Cre11.g479800	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		GO:0005515	"protein binding"		"g11910.t1;g11910.t1;g11910.t1;g11910.t1"		
+Cre11.g481550	GMM:27.2	RNA.transcription					"g11957.t1;Cre11.g481550.t1.1;g11957.t1;Cre11.g481550.t1.1"		
+Cre11.g467630	"GMM:29.3.3;GMM:26.8"	"protein.targeting.chloroplast;misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Chloroplast	GO:0016884	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor"	AMI2	"g11560.t3;AMI2;Cre18.g747150.t1.1;AMI2;g11560.t3;Cre18.g747150.t1.1;AMI2;Cre18.g747150.t1.1;g11560.t3"		
+Cre11.g481800	GMM:27.3.17	"RNA.regulation of transcription.CPP(Zn) CPP1-related transcription factor family"					g11962.t1	CHT7	"A CXC domain DNA binding protein; Implicated in the regulation of DNA metabolism and cell-cycle-related gene expression during nitrogen (N) deprivation; may interact with MAT3/RB in DREAM-like regulatory complexes"
+Cre11.g467789			"Secretory pathway"						
+Cre11.g477350							g11853.t1		
+Cre11.g467729			Mitochondrion						
+Cre11.g467667			"Secretory pathway"				"g11597.t1;Cre18.g745550.t1.1"		
+Cre11.g467674			"Secretory pathway"				"Cre18.g745150.t1.1;g11604.t1"		
+Cre11.g468371			Chloroplast						
+Cre11.g467749			Chloroplast				"g11679.t1;Cre22.g764250.t1.1"		
+Cre11.g477750			"Secretory pathway"				"Cre11.g477750.t1.1;g11861.t1"		
+Cre11.g467557	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"					g11486.t1		
+Cre11.g467950			Mitochondrion			FAP383	"g11739.t1;g11739.t1"	"FAP383;FAP383"	" Found in Cr and Volvox but not strongly conserved elsewhere; Found in Cr and Volvox but not strongly conserved elsewhere"
+Cre11.g467745	"GMM:31.1.1.2;GMM:31.1"	"cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"		"GO:0007020;GO:0005856;GO:0005815;GO:0000922;GO:0000226"	"microtubule nucleation;cytoskeleton;microtubule organizing center;spindle pole;microtubule cytoskeleton organization"	GCP3	"GCP3;g11675.t1;Cre22.g764400.t1.1"	GCP3	"Putative gamma tubulin ring complex protein 3 SPC97/DGRIP91; ts-lethal mutant block at S/M (PMID 29743196)"
+Cre11.g467522			"Secretory pathway"						
+Cre11.g467646									
+Cre11.g476026			Mitochondrion						
+Cre11.g478982			Mitochondrion						
+Cre11.g467751	GMM:27.3.55	"RNA.regulation of transcription.HDA"					"Cre22.g764200.t1.1;g11680.t1;Cre22.g764200.t1.2;g11680.t1;Cre22.g764200.t1.1;Cre22.g764200.t1.2"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre11.g467714			Mitochondrion						
+Cre11.g468350			Mitochondrion				"Cre11.g468350.t1.1;g11750.t1"		
+Cre11.g467777	GMM:23.3.1.3	"nucleotide metabolism.salvage.phosphoribosyltransferases.uracil phosphoribosyltransferase (UPP)"							
+Cre11.g467605							"Cre18.g748250.t1.1;g11534.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre11.g467711	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	"GO:0017038;GO:0016020;GO:0005524"	"protein import;membrane;ATP binding"		"g11641.t2;Cre18.g743500.t1.1"		
+Cre11.g475600						FAP362	"Cre11.g475600.t1.1;g11814.t1"	FAP362	"Found in Cr and Volvox but not strongly conserved elsewhere"
+Cre11.g468400			Chloroplast				"g11762.t1;g11762.t1;g11762.t1;g11762.t1;g11762.t1;g11762.t1"		
+Cre11.g467535	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	Mitochondrion			MCP26	"Cre18.g750950.t1.2;MCP26;g11465.t1;Cre18.g750950.t1.1"		
+Cre11.g483200			Mitochondrion				"Cre11.g483200.t1.1;g11995.t1;g11995.t1;Cre11.g483200.t1.1"		
+Cre11.g482150			"Secretory pathway"				"Cre11.g482150.t1.1;g11970.t1"		
+Cre11.g467649			Mitochondrion	GO:0004672	"protein kinase activity"	OPR107	"Cre18.g746250.t1.1;g11580.t1;Cre18.g746250.t1.2;g11580.t1;Cre18.g746250.t1.1;Cre18.g746250.t1.2"	"OPR107;OPR107"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre11.g467770	"GMM:4.1.11;GMM:1.3.3"	"glycolysis.cytosolic branch.3-phosphoglycerate kinase (PGK);PS.calvin cycle.phosphoglycerate kinase"	Chloroplast	"GO:0006096;GO:0004618"	"glycolytic process;phosphoglycerate kinase activity"	PGK1	"g11700.t1;Cre22.g763250.t1.2;Cre22.g763250.t1.1;PGK1;PGK1;Cre22.g763250.t1.1;Cre22.g763250.t1.2;g11700.t1"	"PGK1;PGK1"	"Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme"
+Cre11.g467763									
+Cre11.g467679			Mitochondrion				"g11609.t1;Cre18.g744900.t1.1"		
+Cre11.g480116									
+Cre11.g467766				"GO:0008452;GO:0006396"	"RNA ligase activity;RNA processing"		"Cre22.g763450.t1.1;g11696.t1;Cre22.g763450.t1.2;Cre22.g763450.t1.2;g11696.t1;Cre22.g763450.t1.1;g11696.t1;Cre22.g763450.t1.1;Cre22.g763450.t1.2;Cre22.g763450.t1.1;Cre22.g763450.t1.2;g11696.t1"		
+Cre11.g467727			"Secretory pathway"	"GO:0004519;GO:0003676"	"endonuclease activity;nucleic acid binding"		"Cre22.g765050.t1.1;g11657.t1;Cre22.g765050.t1.1;g11657.t1"		
+Cre11.g468300	"GMM:30.5;GMM:3.5;GMM:29.3.4.99"	"signalling.G-proteins;minor CHO metabolism.others;protein.targeting.secretory pathway.unspecified"				SAR1	"SAR1;g11749.t1;ARL10;Cre11.g468300.t1.1;ARL10;Cre11.g468300.t1.1;g11749.t1;SAR1"	"SAR1;SAR1"	"Expressed Protein. Sar-type GTPase, involved in COP-II coat formation at the endoplasmic reticulum;Expressed Protein. Sar-type GTPase, involved in COP-II coat formation at the endoplasmic reticulum"
+Cre11.g468450	"GMM:31.6.1.4.2.1;GMM:31.6.1.2;GMM:31.6.1.1;GMM:31.1;GMM:28.1"	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.deflagellation;cell.motility.eukaryotes.basal bodies;cell.organisation;DNA.synthesis/chromatin structure"				DLE2	"VFL2;CEN1;Cre11.g468450.t1.1;g11763.t1;Cre11.g468450.t1.1;g11763.t1;VFL2;CEN1;g11763.t1;CEN1;Cre11.g468450.t1.1;VFL2"	"DLE2;DLE2;DLE2"	"Centrin present in monomeric inner arm dyneins b, e, and g; component of flagellar inner arm dyneins and basal body/centriole-associated structures; contains two Ca-binding EF-hand domain pairs; the vfl2 mutation in this gene produces cells with variable numbers of flagella;Centrin present in monomeric inner arm dyneins b, e, and g; component of flagellar inner arm dyneins and basal body/centriole-associated structures; contains two Ca-binding EF-hand domain pairs; the vfl2 mutation in this gene produces cells with variable numbers of flagella;Centrin present in monomeric inner arm dyneins b, e, and g; component of flagellar inner arm dyneins and basal body/centriole-associated structures; contains two Ca-binding EF-hand domain pairs; the vfl2 mutation in this gene produces cells with variable numbers of flagella"
+Cre11.g467574	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion				"g11503.t1;Cre18.g749700.t2.1;Cre18.g749700.t2.1;g11503.t1;Cre18.g749700.t2.1;g11503.t1;g11503.t1;Cre18.g749700.t2.1"		
+Cre11.g467750			Mitochondrion				g11735.t1		
+Cre11.g481200	GMM:26.7	"misc.oxidases - copper, flavone etc"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH6	"PFH6;g11948.t1;P4H6;PHX17;Cre11.g481200.t1.1"		"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate; contains C-terminal ShK domain"
+Cre11.g477500			Chloroplast				"Cre11.g477500.t1.1;g11856.t1"		
+Cre11.g467567	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin				UBQ1	"Cre18.g750000.t1.2;Cre18.g750000.t1.1;g11496.t1;UBQ1;Cre18.g750000.t1.2;UBQ1;g11496.t1;Cre18.g750000.t1.1;g11496.t1;UBQ1;Cre18.g750000.t1.2;Cre18.g750000.t1.1;UBQ1;Cre18.g750000.t1.2;Cre18.g750000.t1.1;g11496.t1"	"UBQ1;UBQ1;UBQ1;UBQ1"	"Post-translationally modifies proteins to tag them for proteasome-mediated degradation, internalization etc.; contains two ubiquitin domains in tandem (alternatively spliced form contains only one); post-translationally modifies proteins to tag them for p;Post-translationally modifies proteins to tag them for proteasome-mediated degradation, internalization etc.; contains two ubiquitin domains in tandem (alternatively spliced form contains only one); post-translationally modifies proteins to tag them for p;Post-translationally modifies proteins to tag them for proteasome-mediated degradation, internalization etc.; contains two ubiquitin domains in tandem (alternatively spliced form contains only one); post-translationally modifies proteins to tag them for p;Post-translationally modifies proteins to tag them for proteasome-mediated degradation, internalization etc.; contains two ubiquitin domains in tandem (alternatively spliced form contains only one); post-translationally modifies proteins to tag them for p"
+Cre11.g468700	GMM:18	"Co-factor and vitamine metabolism"	Chloroplast			CPLD65	"CPLD65;Cre11.g468700.t1.1;g11768.t1;Cre11.g468700.t1.1;CPLD65;g11768.t1;Cre11.g468700.t1.1;CPLD65;g11768.t1;CPLD65;g11768.t1;Cre11.g468700.t1.1"	"HCAR1;HCAR1;HCAR1;HCAR1"	"involved in chlorophyll a to be conversion; Conserved in the Plant Lineage and Diatoms;involved in chlorophyll a to be conversion; Conserved in the Plant Lineage and Diatoms;involved in chlorophyll a to be conversion; Conserved in the Plant Lineage and Diatoms;involved in chlorophyll a to be conversion; Conserved in the Plant Lineage and Diatoms"
+Cre11.g480200							g11922.t1		
+Cre11.g467597	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g11527.t1;g11527.t1;g11527.t1;g11527.t1;g11527.t1"		
+Cre11.g467672	"GMM:20.1.7;GMM:20.1;GMM:2.1"	"stress.biotic.PR-proteins;stress.biotic;major CHO metabolism.synthesis"	Chloroplast				"g11602.t1;Cre18.g745250.t1.1;Cre18.g745250.t1.1;g11602.t1"		
+Cre11.g477050							g11847.t1		
+Cre11.g469550			Chloroplast						
+Cre11.g467631	GMM:29.5.7	protein.degradation.metalloprotease		"GO:0008270;GO:0006508;GO:0004181"	"zinc ion binding;proteolysis;metallocarboxypeptidase activity"	CGL90	"Cre18.g747100.t1.1;g11561.t2;Cre18.g747100.t1.1;g11561.t2"	"CGL90;CGL90"	
+Cre11.g477550			Chloroplast				"Cre11.g477550.t1.1;g11857.t1;g11857.t1;Cre11.g477550.t1.1"		
+Cre11.g467698			Chloroplast				g11629.t1		
+Cre11.g482351							"Cre11.g482350.t1.2;g11975.t1"		
+Cre11.g478400							g11877.t1		
+Cre11.g477850	"GMM:27.3.73;GMM:27.3.70"	"RNA.regulation of transcription.Zn-finger(CCHC);RNA.regulation of transcription.silencing group"		"GO:0035194;GO:0003712"	"posttranscriptional gene silencing by RNA;transcription cofactor activity"	TXC1	"TXC1;TSN1;g11863.t1;TXC1;TSN1;g11863.t1"	"TXC1;TXC1"	"Putative transcriptional coactivator (p100 homolog) containing Tudor and staphylococcal nuclease domain; presumably associated with RNA induced silencing complex (RISC);Putative transcriptional coactivator (p100 homolog) containing Tudor and staphylococcal nuclease domain; presumably associated with RNA induced silencing complex (RISC)"
+Cre11.g467613			"Secretory pathway"				"g11543.t1;Cre18.g747906.t1.1;Cre18.g747906.t1.2;Cre18.g747906.t1.2;g11543.t1;Cre18.g747906.t1.1;Cre18.g747906.t1.1;Cre18.g747906.t1.2;g11543.t1;Cre18.g747906.t1.1;Cre18.g747906.t1.2;g11543.t1;g11543.t1;Cre18.g747906.t1.2;Cre18.g747906.t1.1"		
+Cre11.g480350	GMM:29.4	"protein.postranslational modification"		GO:0055114	"oxidation-reduction process"		"g11925.t1;g11925.t1"		
+Cre11.g476351			Mitochondrion						
+Cre11.g467549			Chloroplast				"Cre44.g788050.t1.1;g11479.t1"		
+Cre11.g481900	GMM:27.1	RNA.processing					"g11965.t1;Cre11.g481900.t1.1;Cre11.g481900.t1.1;g11965.t1;Cre11.g481900.t1.1;g11965.t1"		
+Cre11.g467607							"g11536.t1;Cre18.g748200.t1.1;Cre18.g748200.t1.1;g11536.t1;Cre18.g748200.t1.1;g11536.t1;Cre18.g748200.t1.1;g11536.t1;Cre18.g748200.t1.1;g11536.t1;g11536.t1;Cre18.g748200.t1.1"		
+Cre11.g467546	GMM:28.1	"DNA.synthesis/chromatin structure"	"Secretory pathway"				"g11476.t1;Cre44.g787950.t1.2;Cre44.g787950.t1.1;g11476.t1;Cre44.g787950.t1.1;Cre44.g787950.t1.2"		
+Cre11.g467686							"g11616.t1;Cre18.g744550.t1.1"		
+Cre11.g467784							"g11714.t1;Cre22.g762700.t1.2;Cre22.g762700.t1.1;Cre22.g762700.t1.1;g11714.t1;Cre22.g762700.t1.2"		
+Cre11.g481300			Chloroplast				g11950.t1		
+Cre11.g478626			"Secretory pathway"				g11882.t1		
+Cre11.g478212									
+Cre11.g477733							"Cre11.g477733.t1.1;g11860.t1"		
+Cre11.g482952			"Secretory pathway"				"g11990.t1;g11990.t1"		
+Cre11.g467759			Chloroplast				"PIC1-2;g11689.t1;PIC1;Cre22.g763750.t1.1"		"Similar to PIC1 from Arabidopsis thaliana"
+Cre11.g467681				GO:0035091	"phosphatidylinositol binding"		"Cre18.g744800.t1.1;g11611.t1;g11611.t1;Cre18.g744800.t1.1;g11611.t1;Cre18.g744800.t1.1"		
+Cre11.g475432							"g11809.t1;Cre11.g475432.t1.1"		
+Cre11.g476150	GMM:26.1	misc.misc2	"Secretory pathway"				"g11827.t1;Cre11.g476150.t1.1;Cre11.g476150.t1.1;g11827.t1"		
+Cre11.g482276									
+Cre11.g467761							"Cre22.g763650.t1.1;g11691.t1;g11691.t1;Cre22.g763650.t1.1"		
+Cre11.g477300	GMM:29.4	"protein.postranslational modification"	Mitochondrion			FAP8	"PPP36;g11852.t1;g11852.t1;PPP36;g11852.t1;PPP36"	"FAP8;FAP8;FAP8"	"PP2A-2r; interacts with and regulates phosphatase activity of PP2A catalytic subunit; found in flagellar proteome; Similar to Serine/Threonine Protein Phosphatase 2A Regulatory Subunit Homolog 2;PP2A-2r; interacts with and regulates phosphatase activity of PP2A catalytic subunit; found in flagellar proteome; Similar to Serine/Threonine Protein Phosphatase 2A Regulatory Subunit Homolog 2;PP2A-2r; interacts with and regulates phosphatase activity of PP2A catalytic subunit; found in flagellar proteome; Similar to Serine/Threonine Protein Phosphatase 2A Regulatory Subunit Homolog 2"
+Cre11.g479000	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG7	"CYG7;g11893.t1;CYG7;g11893.t1;CYG7;g11893.t1;CYG7;g11893.t1;g11893.t1;CYG7;g11893.t1;CYG7;g11893.t1;CYG7"		"Similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre11.g467601	"GMM:35.1.19;GMM:3.3"	"not assigned.no ontology.C2 domain-containing protein;minor CHO metabolism.sugar alcohols"		GO:0005515	"protein binding"		"Cre18.g748450.t1.2;Cre18.g748450.t1.1;g11530.t1"		
+Cre11.g467637	"GMM:29.4.1.57;GMM:29.4"	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification"					"Cre18.g746800.t1.1;g11567.t1;Cre18.g746800.t1.2"		
+Cre11.g467564				GO:0005525	"GTP binding"	ARL16	"ARL16;Cre18.g750150.t1.1;g11493.t1"		"ARF-like 16, a member of the ARF/Sar1 GTPase family. Orthologs in a wide array of eukaryotes (ARL16 in human) but function yet to be determined"
+Cre11.g467666			"Secretory pathway"			LCI13	"GT90-43;GT90F43;Cre18.g745600.t1.1;g11596.t1;Cre18.g745600.t1.2;LCI13"	LCI13	"GT90 family protein 43; Low-CO2 inducible gene revealed by cDNA array analyses. Similar to KDEL (Lys-Asp-Glu-Leu) containing protein in many species, but LCI13 dose not contain KEDL motif, but CAP10, putative lipopolysaccharide-modifying enzyme (smart00672); regulated by CCM1; null-allele mutant was isolated (PMID 29743196)"
+Cre11.g467735			"Secretory pathway"				"g11665.t1;Cre22.g764800.t1.2;Cre22.g764800.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre11.g467623			Chloroplast				"g11554.t1;Cre18.g747450.t1.1"		
+Cre11.g481150							g11947.t1		
+Cre11.g468374	GMM:16.1	"secondary metabolism.isoprenoids"					"Cre43.g787600.t1.1;Cre43.g787600.t1.2;g11758.t1;Cre43.g787600.t1.2;g11758.t1;Cre43.g787600.t1.1"		
+Cre11.g483250			"Secretory pathway"			PHC45	"g11996.t1;PHC45;g11996.t1;PHC45"		
+Cre11.g467657			"Secretory pathway"				"g11587.t1;Cre18.g745900.t1.1;Cre18.g745900.t1.1;g11587.t1"		
+Cre11.g467573	GMM:1.1.2.1	"PS.lightreaction.photosystem I.LHC-I"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCA3	"Cre18.g749750.t1.1;Cre18.g749750.t1.2;g11502.t1;LHCA3"	LHCA3	"Forms a clade with plant and algal Lhca3 sequences."
+Cre11.g481000	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"CKIN2.6;Cre11.g481000.t1.1;g11940.t1;g11940.t1;CKIN2.6;Cre11.g481000.t1.1"	"SNRK2F;SNRK2F"	"Mediates abiotic stress responses;Mediates abiotic stress responses"
+Cre11.g478100							"Cre11.g478100.t1.1;g11869.t1"		
+Cre11.g467523			Mitochondrion				g11451.t1		
+Cre11.g467556			Mitochondrion				"g11485.t1;Cre44.g788150.t1.1;g11485.t1;Cre44.g788150.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre11.g480851			"Secretory pathway"			RRA3	"g11937.t1;g11937.t1"	"RRA3;RRA3"	"Arabinosyl transferase on mono-arabinosylated hydroxyproline; GT77 family;Arabinosyl transferase on mono-arabinosylated hydroxyproline; GT77 family"
+Cre11.g467589	"GMM:30.2.24;GMM:29.4"	"signalling.receptor kinases.S-locus glycoprotein like;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre18.g749000.t1.2;g11519.t1;Cre18.g749000.t1.1;g11519.t1;Cre18.g749000.t1.2;Cre18.g749000.t1.1;Cre18.g749000.t1.1;Cre18.g749000.t1.2;g11519.t1"		
+Cre11.g467596							"g11526.t1;Cre18.g748650.t1.1;g11526.t1;Cre18.g748650.t1.1"		
+Cre11.g468950	GMM:9.5	"mitochondrial electron transport / ATP synthesis.cytochrome c reductase"		"GO:0006122;GO:0005750;GO:0005743"	"mitochondrial electron transport, ubiquinol to cytochrome c;mitochondrial respiratory chain complex III;mitochondrial inner membrane"	QCR9	"Cre11.g468950.t1.1;g11773.t1"	QCR9	"Subunit 9 of mitochondrial Complex III (ubiquinol:cytochrome c oxidoreductase); Homolog of human QCR10, bovine subunit X and yeast QCR9;"
+Cre11.g475650			Chloroplast				g11816.t1		
+Cre11.g467700	GMM:19.7	"tetrapyrrole synthesis.uroporphyrinogen decarboxylase"	Chloroplast	"GO:0006779;GO:0004853"	"porphyrin-containing compound biosynthetic process;uroporphyrinogen decarboxylase activity"	UROD1	"HEME;UPD1;g11734.t1"	UROD1	
+Cre11.g467651	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		"GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity"		"g11581.t1;Cre18.g746200.t1.1;Cre18.g746200.t1.1;g11581.t1;Cre18.g746200.t1.1;g11581.t1"		
+Cre11.g467536	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre18.g750900.t1.1;g11466.t1;g11466.t1;Cre18.g750900.t1.1"		
+Cre11.g468050	"GMM:27.3.99;GMM:1.1.99"	"RNA.regulation of transcription.unclassified;PS.lightreaction.unspecified"	Chloroplast.Stroma			VIPP2	"Cre11.g468050.t1.1;g11741.t1"	VIPP2	"Plays a role in the chloroplast unfolded protein response; barely expressed under non-stress conditions, strongly induced by high light and H2O2 treatment; binds to membranes after these treatments with an N-terminal amphipathic alpha helix"
+Cre11.g467606									
+Cre11.g467580						FAP370	"Cre18.g749400.t1.1;g11510.t1;Cre18.g749400.t1.1;g11510.t1;Cre18.g749400.t1.1;g11510.t1;Cre18.g749400.t1.1;g11510.t1"	"FAP370;FAP370;FAP370;FAP370"	"Cr specific protein;Cr specific protein;Cr specific protein;Cr specific protein"
+Cre11.g467647	"GMM:33.99;GMM:30.11.1"	"development.unspecified;signalling.light.COP9 signalosome"		GO:0005515	"protein binding"		"Cre18.g746350.t1.1;g11578.t1;Cre18.g746350.t1.2"		
+Cre11.g467746				GO:0005515	"protein binding"		"Cre22.g764350.t1.1;Cre22.g764350.t1.2;g11676.t1"		
+Cre11.g479550							g11905.t1		
+Cre11.g467765							g11695.t1		
+Cre11.g467599	"GMM:35.1.19;GMM:3.3"	"not assigned.no ontology.C2 domain-containing protein;minor CHO metabolism.sugar alcohols"		GO:0005515	"protein binding"		"g11529.t1;Cre18.g748500.t1.2;Cre18.g748500.t1.1"		
+Cre11.g467709			"Secretory pathway"						
+Cre11.g468750			Chloroplast			CPLD48	"g11769.t1;Cre11.g468750.t1.1"	CPLD48	
+Cre11.g480079	GMM:28.99	DNA.unspecified					"Cre11.g480079.t1.1;g11917.t1"		
+Cre11.g467543			"Secretory pathway"				"Cre44.g787850.t1.1;Cre44.g787850.t1.2;g11473.t1"		
+Cre11.g475626			Mitochondrion				g11815.t1		
+Cre11.g469500	GMM:30.99	signalling.unspecified		GO:0006355	"regulation of transcription, DNA-templated"		"g11785.t2;g11785.t2;g11785.t2;g11785.t2;g11785.t2"	"FXL6;FXL6;FXL6;FXL6;FXL6"	"FixL like homolog 6 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 6 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 6 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 6 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 6 (FXL). PAS region shows high identity to Rhizobial FixL proteins."
+Cre11.g467350	GMM:11.9.4.2	"lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH"	Chloroplast	"GO:0055114;GO:0006635;GO:0005777;GO:0003997;GO:0003995"	"oxidation-reduction process;fatty acid beta-oxidation;peroxisome;acyl-CoA oxidase activity;acyl-CoA dehydrogenase activity"		"g11726.t1;Cre11.g467350.t1.1;ACO2;ACO2;g11726.t1;Cre11.g467350.t1.1"		
+Cre11.g468150			"Secretory pathway"				"g11746.t1;g11746.t1;g11746.t1"		
+Cre11.g467740			Chloroplast				"Cre22.g764550.t1.2;g11670.t1;Cre22.g764550.t1.1"		
+Cre11.g481600			"Secretory pathway"			GAS28	"GAS28;g11958.t1;GAS28;g11958.t1"	"GAS28;GAS28"	"hydroxyproline-rich glycoprotein whose mRNA is up-regulated in gametes, in zygotes, by agglutination/cAMP treatment, by osmotic stress and by cell wall removal [PMID: 16183845]. Closely linked to GAS30. Independently sequenced: DQ017908.;hydroxyproline-rich glycoprotein whose mRNA is up-regulated in gametes, in zygotes, by agglutination/cAMP treatment, by osmotic stress and by cell wall removal [PMID: 16183845]. Closely linked to GAS30. Independently sequenced: DQ017908."
+Cre11.g467712			Mitochondrion	GO:2001070	"starch binding"		"Cre18.g743450.t1.1;g11642.t1"	SAGA1	"Contains a starch binding motif and regulate starch sheath morphology; localizes to multiple puncta and streaks in the pyrenoid and physically interacts with the small and large subunits of RuBisCO"
+Cre14.g625550							g15068.t2	FAP410	"similar to human C21orf2/CFAP410 which is mutated in recessive early-onset retinal dystrophy with macular staphyloma and localizes to the photoreceptor primary cilium; Ciliary level increases during disassembly"
+Cre14.g632775	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	"protein binding"		"Cre75.g795450.t1.1;g15249.t1;g15249.t1;Cre75.g795450.t1.1;Cre75.g795450.t1.1;g15249.t1"		
+Cre14.g608400			Chloroplast				"Cre14.g608400.t1.1;g14667.t1"		
+Cre14.g619613	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		"GO:0006338;GO:0000228"	"chromatin remodeling;nuclear chromosome"		"g14930.t1;Cre14.g619613.t1.1;g14930.t1;Cre14.g619613.t1.1"		
+Cre14.g626500				GO:0005515	"protein binding"		"g15088.t1;Cre14.g626500.t1.1;Cre14.g626500.t1.1;g15088.t1;Cre14.g626500.t1.1;g15088.t1"		
+Cre14.g618400	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215"	"ATPase activity;integral component of membrane;transport;ATP binding;transporter activity"		"Cre14.g618400.t1.1;g14897.t1"	ABCA3	"ABCA superfamily; Along with ABCA5 (Cre17.g721000), is co-orthologous with eight ABCA proteins in Arabidopsis thaliana (ABCA3, ABCA4, ABCA5, ABCA6, ABCA7, ABCA10, ABCA12);"
+Cre14.g617800	"GMM:9.1.2;GMM:34.99"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;transport.misc"	"Secretory pathway"				"g14884.t1;g14884.t1;g14884.t1"		
+Cre14.g616100	"GMM:29.6.3.1;GMM:29.6"	"protein.folding.immunophilins (IMM).FKBPs;protein.folding"		GO:0006457	"protein folding"	FKB53	"g14843.t1;FKB11;FKB11;g14843.t1"	"FKB53;FKB53"	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin) with an N-terminal nucleoplasmin domain (found in chromatin decondensation proteins that bind to core histones and transfer DNA to them in a reaction that requires ATP); similar to At4g25340 (FKBP53), except that N-terminal domain is rich in acidic residues [PMID: 15701785];FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin) with an N-terminal nucleoplasmin domain (found in chromatin decondensation proteins that bind to core histones and transfer DNA to them in a reaction that requires ATP); similar to At4g25340 (FKBP53), except that N-terminal domain is rich in acidic residues [PMID: 15701785]"
+Cre14.g617550	GMM:31.6.1.4.1	"cell.motility.eukaryotes.axonemal dyneins.outer arm"				DLE3	"g14879.t1;DC3;ODA14;Cre14.g617550.t1.1;ODA-DC3"	DLE3	"DC3 component of outer arm docking complex; Calmodulin homolog; Mr 25000"
+Cre14.g618200							"g14893.t1;g14893.t1"		
+Cre14.g617200	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"				RLS7	"g14871.t1;RLS7;g14871.t1;RLS7;g14871.t1;RLS7;RLS7;g14871.t1;g14871.t1;RLS7"		"Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF01342); genetically linked to RLS4;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF01342); genetically linked to RLS4;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF01342); genetically linked to RLS4;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF01342); genetically linked to RLS4;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF01342); genetically linked to RLS4"
+Cre14.g631550			Chloroplast				g15220.t1		
+Cre14.g619950							"Cre14.g619950.t1.1;g14939.t1"		
+Cre14.g615100	"GMM:29.4;GMM:27.3.67"	"protein.postranslational modification;RNA.regulation of transcription.putative transcription regulator"		"GO:0055114;GO:0033743;GO:0030091;GO:0016671;GO:0006979"	"oxidation-reduction process;peptide-methionine (R)-S-oxide reductase activity;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;response to oxidative stress"	MSR1	"Cre14.g615100.t1.1;g14819.t1;MSR1;g14819.t1;MSR1;Cre14.g615100.t1.1"	"MSRB1B;MSRB1B"	"Similar to Selenoprotein R, but not a selenoprotein; msrB-type; One of two nearby paralogs of MSRB1 (Cre14.g615000 and Cre14.g615100);;Similar to Selenoprotein R, but not a selenoprotein; msrB-type; One of two nearby paralogs of MSRB1 (Cre14.g615000 and Cre14.g615100);"
+Cre14.g610501	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Chloroplast				"Cre14.g610500.t1.2;SDR34;g14714.t1"	RAA14	"Necessary for trans-splicing of psaA mRNA; Putative 3-oxoacyl-[acyl-carrier-protein] reductase-related; Component of psaA trans-splicing sub complex I"
+Cre14.g624800							"g15052.t1;ZF1;Cre14.g624800.t1.1;Cre14.g624800.t1.1;g15052.t1;ZF1"		
+Cre14.g617100	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"	SRS9	"g14868.t1;SRS12;Cre14.g617100.t1.1"	SRS9	"Serine/arginine-rich pre-mRNA splicing factor protein"
+Cre14.g619200							"g14922.t1;Cre14.g619200.t1.1"		
+Cre14.g611800			"Secretory pathway"				"Cre14.g611800.t1.1;g14745.t1;Cre14.g611800.t1.1;g14745.t1"		
+Cre14.g613250							g14778.t1		
+Cre14.g628237	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"				
+Cre14.g621501			"Mitochondrion;Chloroplast"				"g14978.t3;Cre14.g621558.t4.1"		
+Cre14.g622850	GMM:28.2	DNA.repair				RAD51	"RAD51;g15011.t1;RAD51A"	RAD51	"DNA repair / recombination protein; Ortholog to RAD51 (AT5G20850) in Arabidopsis thaliana"
+Cre14.g613000			"Secretory pathway"				"g14771.t1;g14771.t1;g14771.t1"		
+Cre14.g630000			Chloroplast			KIR2	"g15172.t1;Cre14.g630000.t1.1;KIR2;KIR2;Cre14.g630000.t1.1;g15172.t1"		"Related to a series of bacterial genes among which is a putative ketosteroid isomerase-related protein of Ralstonia; however, it is impossible to find a similarity with the well-characterized delta5-3-ketosteroid isomerase of Pseudomonas putida or Comamonas testosteroni, so this may be a case of erroneous annotation in Ralstonia that spread into COG; is probably targeted to the thylakoid lumen (based on alignment and RR motif), like the related gene KIR2;Related to a series of bacterial genes among which is a putative ketosteroid isomerase-related protein of Ralstonia; however, it is impossible to find a similarity with the well-characterized delta5-3-ketosteroid isomerase of Pseudomonas putida or Comamonas testosteroni, so this may be a case of erroneous annotation in Ralstonia that spread into COG; is probably targeted to the thylakoid lumen (based on alignment and RR motif), like the related gene KIR2"
+Cre14.g610700			"Secretory pathway"			PHC72	"g14723.t1;PHC72;PHC72;g14723.t1"		
+Cre14.g631150			Mitochondrion	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP14	"g15212.t2;CEP14;CEP14;g15212.t2;g15212.t2;CEP14"		"Cysteine-type endopeptidase, papain type. Contains WSC and LysM domains;Cysteine-type endopeptidase, papain type. Contains WSC and LysM domains;Cysteine-type endopeptidase, papain type. Contains WSC and LysM domains"
+Cre14.g627200							"g15103.t1;g15103.t1;g15103.t1"		
+Cre14.g623439			Mitochondrion				"g15026.t2;Cre14.g623500.t3.1;Cre14.g623500.t3.1;g15026.t2;Cre14.g623500.t3.1;g15026.t2"		
+Cre14.g608800	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Chloroplast				"SDR24;g14676.t1;Cre14.g608800.t1.1"	NOL1	"Short-chain dehydrogenase/reductase, similar to Arabidopsis NYC1 (Non-Yellow Coloring 1); converts Chlb to Chla for breakdown"
+Cre14.g621200			Chloroplast				g14971.t1		
+Cre14.g627455			Mitochondrion						
+Cre14.g630763							"g15190.t1;g15190.t1"		
+Cre14.g633150			Chloroplast			OPR66	g15265.t1	OPR66	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; probably an expressed pseudogene"
+Cre14.g633250							"g15267.t1;Cre14.g633250.t1.1;Cre14.g633250.t1.1;g15267.t1;g15267.t1;Cre14.g633250.t1.1;g15267.t1;Cre14.g633250.t1.1;g15267.t1;Cre14.g633250.t1.1"		
+Cre14.g623176			Chloroplast						
+Cre14.g630376			Mitochondrion						
+Cre14.g633425			Chloroplast						
+Cre14.g628350	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom	Mitochondrion	"GO:0051603;GO:0005839;GO:0004298"	"proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity"	HSLV1	"CLPQ;g15135.t1;Cre14.g628350.t1.1;CLPQ;Cre14.g628350.t1.1;g15135.t1;Cre14.g628350.t1.1;g15135.t1;CLPQ"	"HSLV1;HSLV1;HSLV1"	"peptidase subunit of ATP-dependent hslUV protease; probably mitochondrial;peptidase subunit of ATP-dependent hslUV protease; probably mitochondrial;peptidase subunit of ATP-dependent hslUV protease; probably mitochondrial"
+Cre14.g628900			Mitochondrion				"g15147.t1;Cre14.g628900.t1.1;g15147.t1;Cre14.g628900.t1.1"		
+Cre14.g625300	"GMM:34.99;GMM:34.21;GMM:34.14"	"transport.misc;transport.calcium;transport.unspecified cations"	"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	CAX3	"g15063.t1;CAX3;g15063.t1;CAX3"	"CAX3;CAX3"	"pfam01699, Na_Ca_ex, Sodium/calcium exchanger protein; This is a family of sodium/calcium exchanger integral membrane proteins;;pfam01699, Na_Ca_ex, Sodium/calcium exchanger protein; This is a family of sodium/calcium exchanger integral membrane proteins;"
+Cre14.g632600							"g15242.t1;g15242.t1;g15242.t1"		
+Cre14.g608452	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		"GO:0036459;GO:0016579"	"thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination"		"g14668.t1;g14668.t1"		
+Cre14.g613750			"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g14789.t1;g14789.t1;g14789.t1"		
+Cre14.g616450	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG46	"g14851.t1;CYG46"		"similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre14.g609950			Mitochondrion				"Cre14.g609950.t1.1;g14703.t1"		
+Cre14.g627576	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"	Chloroplast	"GO:0030286;GO:0016887;GO:0007018;GO:0005858;GO:0003777;GO:0001539"	"dynein complex;ATPase activity;microtubule-based movement;axonemal dynein complex;microtubule motor activity;cilium or flagellum-dependent cell motility"	DHC7	"g15117.t1;g15117.t1;g15117.t1;g15117.t1;g15117.t1;g15117.t1;g15117.t1;g15117.t1;g15117.t1;g15117.t1"	"DHC7;DHC7;DHC7;DHC7;DHC7;DHC7;DHC7;DHC7;DHC7;DHC7"	
+Cre14.g633100			Chloroplast	"GO:0006351;GO:0003714"	"transcription, DNA-templated;transcription corepressor activity"		"Cre14.g633100.t1.1;g15264.t1"		
+Cre14.g610200							"g14708.t1;g14708.t1;g14708.t1"		
+Cre14.g630550	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast	GO:0005515	"protein binding"	DEG1B	"DEG12;g15185.t1;DEG1B;DEG13;g15185.t1;DEG1B;DEG12;DEG13"	"DEG1B;DEG1B"	"DegP-type protease; one PDZ domain; expressed, but much weaker than DEG1C; similar to At DegP1;;DegP-type protease; one PDZ domain; expressed, but much weaker than DEG1C; similar to At DegP1;"
+Cre14.g612800			Chloroplast				"g14766.t1;Cre14.g612800.t1.1;g14766.t1;Cre14.g612800.t1.1;Cre14.g612800.t1.1;g14766.t1"		
+Cre14.g628650	GMM:8.2.10	"TCA / organic transformation.other organic acid transformations.malic"	Mitochondrion	"GO:0055114;GO:0051287;GO:0004471"	"oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity"	MME4	"g15142.t1;Cre14.g628650.t1.1;g15142.t1;Cre14.g628650.t1.1"	"MME4;MME4"	"Malic Enzyme, NADP-dependent; malate dehydrogenase, decarboxylating (EC 1.1.1.40); possibly plastid targeted, based on N-terminal extension (although predicted mitochondrial by Target-P) and homology;;Malic Enzyme, NADP-dependent; malate dehydrogenase, decarboxylating (EC 1.1.1.40); possibly plastid targeted, based on N-terminal extension (although predicted mitochondrial by Target-P) and homology;"
+Cre14.g614100	"GMM:29.7;GMM:26.1"	"protein.glycosylation;misc.misc2"	"Secretory pathway"	"GO:0018279;GO:0005789"	"protein N-linked glycosylation via asparagine;endoplasmic reticulum membrane"	GTR26	"g14797.t1;Cre14.g614100.t1.1;GTR26"	DGL1	"Dolichyl-diphosphooligosaccharide-protein glycosyltransferase (DDOST) (a glycosyl transferase), also known as oligosaccharyltransferase (EC 2.4.1.119); Orthologous to DGL1 (AT5G66680) in Arabidopsis thaliana;"
+Cre14.g621751	GMM:10.1.1.20	"cell wall.precursor synthesis.NDP sugar pyrophosphorylase.multiple NDP-Sugars"		"GO:0070569;GO:0008152"	"uridylyltransferase activity;metabolic process"	USP	"USP;g14983.t1;UAP2;Cre14.g621750.t1.2"	USP2	"related to UDP-N-acetylglucosamine pyrophosphorylase (EC 2.7.7.23) and related to UTP-glucose-1-phosphate uridylyltransferase (EC 2.7.7.9) = UDP-glucose pyrophosphorylase (UDPGP) (UGPase)"
+Cre14.g626100			Mitochondrion				"g15079.t1;g15079.t1"		
+Cre14.g610750	GMM:34.99	transport.misc	"Secretory pathway"	"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"		"MAE16;g14724.t1"		
+Cre14.g614200	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"					"g14799.t1;Cre14.g614200.t1.1"		
+Cre14.g612633						PHC58			
+Cre14.g609400	GMM:29.4	"protein.postranslational modification"	Chloroplast				"g14691.t1;g14691.t1;g14691.t1"		
+Cre14.g614600			"Secretory pathway"				"g14808.t1;Cre14.g614600.t1.1;g14808.t1;Cre14.g614600.t1.1"		
+Cre14.g627750			Mitochondrion				"g15121.t1;g15121.t1;g15121.t1;g15121.t1;g15121.t1"		
+Cre14.g613350	GMM:29.5.11	protein.degradation.ubiquitin		GO:0006511	"ubiquitin-dependent protein catabolic process"		g14780.t1		
+Cre14.g611100						FAP27	"Cre14.g611100.t1.1;g14731.t2;g14731.t2;Cre14.g611100.t1.1"	"FAP27;FAP27"	"Similar to palmitoyltransferases;Similar to palmitoyltransferases"
+Cre14.g627000			Chloroplast				g15099.t1		
+Cre14.g615200							"g14821.t1;g14821.t1"		
+Cre14.g615650			"Secretory pathway"				"g14833.t1;Cre14.g615650.t1.1"		
+Cre14.g624950	"GMM:31.6.1.4.2.1;GMM:31.6.1.4.2"	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.inner arm"	"Secretory pathway"	"GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777"	"dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity"	DHC10	"IDA2;IA1-DHC1beta;g15055.t1;DHC10;DYH1B;g15055.t1;IA1-DHC1beta;IDA2;DHC10;DYH1B;DHC10;DYH1B;IDA2;g15055.t1;IA1-DHC1beta;IDA2;DHC10;DYH1B;IA1-DHC1beta;g15055.t1;g15055.t1;IA1-DHC1beta;DHC10;DYH1B;IDA2;IA1-DHC1beta;g15055.t1;IDA2;DYH1B;DHC10;DYH1B;DHC10;IDA2;IA1-DHC1beta;g15055.t1;g15055.t1;IA1-DHC1beta;IDA2;DYH1B;DHC10;IA1-DHC1beta;g15055.t1;IDA2;DHC10;DYH1B;DYH1B;DHC10;IDA2;g15055.t1;IA1-DHC1beta"	"DHC10;DHC10;DHC10;DHC10;DHC10;DHC10;DHC10;DHC10;DHC10;DHC10"	
+Cre14.g619300	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN16	g14924.t1	CYN16	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; probably cytosolic"
+Cre14.g632050	GMM:3.3	"minor CHO metabolism.sugar alcohols"		GO:0005515	"protein binding"		"RPGRIP1;POB25;Cre14.g632050.t1.1;g15231.t1"	RPG1	"Found in basal body proteome as POB25; Similar to X-linked retinitis pigmentosa GTPase regulator-interacting protein 1 (RPGRIP1) in humans"
+Cre14.g619550	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175"	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA7	"g14929.t1;POA7;Cre14.g619550.t1.1"	POA7	"(PSA3) 20S proteasome alpha subunit G (type 3)"
+Cre14.g632350	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Chloroplast			FAP138	"g15237.t1;g15237.t1;g15237.t1;g15237.t1"	"FAP138;FAP138;FAP138;FAP138"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre14.g611400							"g14737.t1;Cre14.g611400.t1.1"		
+Cre14.g632839									
+Cre14.g611051							g14730.t1		
+Cre14.g620000			Mitochondrion				"g14940.t1;Cre14.g620000.t1.1"		
+Cre14.g609030	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"		"GO:0016810;GO:0006807"	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"		g14683.t1		
+Cre14.g625600						FHL10	"FHL10;g15069.t1;FHL10;g15069.t1;g15069.t1;FHL10;g15069.t1;FHL10;FHL10;g15069.t1;g15069.t1;FHL10"		"Previously annotated as an FtsH-like ATPase due to a erroneus fusion with the neighboring FTSH11 gene (Cre14.g625625); Putative WASP-interacting protein VRP1/WIP, contains WH2 domain;;Previously annotated as an FtsH-like ATPase due to a erroneus fusion with the neighboring FTSH11 gene (Cre14.g625625); Putative WASP-interacting protein VRP1/WIP, contains WH2 domain;;Previously annotated as an FtsH-like ATPase due to a erroneus fusion with the neighboring FTSH11 gene (Cre14.g625625); Putative WASP-interacting protein VRP1/WIP, contains WH2 domain;;Previously annotated as an FtsH-like ATPase due to a erroneus fusion with the neighboring FTSH11 gene (Cre14.g625625); Putative WASP-interacting protein VRP1/WIP, contains WH2 domain;;Previously annotated as an FtsH-like ATPase due to a erroneus fusion with the neighboring FTSH11 gene (Cre14.g625625); Putative WASP-interacting protein VRP1/WIP, contains WH2 domain;;Previously annotated as an FtsH-like ATPase due to a erroneus fusion with the neighboring FTSH11 gene (Cre14.g625625); Putative WASP-interacting protein VRP1/WIP, contains WH2 domain;"
+Cre14.g633400						PGA7	"g15270.t1;PGA7"		
+Cre14.g616400			Chloroplast				"Cre14.g616400.t1.1;g14850.t1"		
+Cre14.g618300							g14895.t1		
+Cre14.g631148			Mitochondrion	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"		g15211.t1		
+Cre14.g630200						FAP312	"Cre14.g630200.t1.1;g15177.t2;g15177.t2;Cre14.g630200.t1.1;Cre14.g630200.t1.1;g15177.t2"	"FAP312;FAP312;FAP312"	"Found in the flagellar proteome;Found in the flagellar proteome;Found in the flagellar proteome"
+Cre14.g631850				"GO:0016791;GO:0008152"	"phosphatase activity;metabolic process"		"Cre14.g631850.t1.1;g15227.t1;g15227.t1;Cre14.g631850.t1.1;g15227.t1;Cre14.g631850.t1.1;Cre14.g631850.t1.1;g15227.t1;g15227.t1;Cre14.g631850.t1.1"		
+Cre14.g618820						CSB57	"CSB57;g14911.t1;Cre14.g618820.t1.1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre14.g627850	GMM:13.1.3.5.2	"amino acid metabolism.synthesis.aspartate family.lysine.dihydrodipicolinate reductase"	Chloroplast	"GO:0055114;GO:0009089;GO:0008839"	"oxidation-reduction process;lysine biosynthetic process via diaminopimelate;4-hydroxy-tetrahydrodipicolinate reductase"		"Cre14.g627850.t1.1;g15125.t1;Cre14.g627850.t1.1;g15125.t1"		
+Cre14.g632783	GMM:31.3	cell.cycle		"GO:0070985;GO:0019901;GO:0016538;GO:0006355;GO:0006351;GO:0000079"	"TFIIK complex;protein kinase binding;cyclin-dependent protein serine/threonine kinase regulator activity;regulation of transcription, DNA-templated;transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"		"g15250.t1;Cre75.g795500.t1.2;Cre75.g795500.t1.1"		
+Cre14.g618611							g14902.t1		
+Cre14.g622951			Mitochondrion				"g15014.t1;g15014.t1"		
+Cre14.g626550							"g15089.t1;g15089.t1;g15089.t1"		
+Cre14.g620600	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC2	"PHC2;g14956.t1;Cre14.g620600.t1.1;FAP202"	PHC2	"Pherophorin-C2 (PHC2) [PMID: 16367971; Genbank entry DQ196108]; extracellular matrix protein (cell wall protein); belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain; Flagellar Associated Protein 202"
+Cre14.g631500							g15219.t1		
+Cre14.g622270			Mitochondrion						
+Cre14.g633904			Chloroplast				"g15284.t1;g15284.t1"		
+Cre14.g620702	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC24	"g14958.t1;g14958.t1"	"PHC24;PHC24"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre14.g628200	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g15133.t1;g15133.t1;g15133.t1;g15133.t1"		
+Cre14.g629464	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB58	"TNP40;CSB458;g15160.t1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre14.g610663	GMM:27.1.19	RNA.processing.ribonucleases					g14722.t1		
+Cre14.g625251			"Secretory pathway"			CSV12	"Cre14.g625251.t1.1;CSV12;g15062.t1;g15062.t1;CSV12;Cre14.g625251.t1.1;Cre14.g625251.t1.1;CSV12;g15062.t1;g15062.t1;CSV12;Cre14.g625251.t1.1"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre14.g627350			"Secretory pathway"	GO:0016021	"integral component of membrane"		"XYI3;g15106.t1"		
+Cre14.g613600	GMM:20.2.1	stress.abiotic.heat				HSP70H			
+Cre14.g631050			Mitochondrion				"g15207.t1;g15207.t1"		
+Cre14.g627444			Mitochondrion						
+Cre14.g623200	GMM:29.5	protein.degradation		"GO:0006508;GO:0005622;GO:0004177"	"proteolysis;intracellular;aminopeptidase activity"	LAP1	"g15021.t1;g15021.t1"	"LAP1;LAP1"	
+Cre14.g614000			Chloroplast			CGL17	"g14794.t1;g14794.t1"	"CGL17;CGL17"	
+Cre14.g608500				GO:0005737	cytoplasm		g14669.t1		
+Cre14.g610550	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		"g14715.t1;g14715.t1"		
+Cre14.g615450			Mitochondrion				"mL117;OPR132;g14827.t1;Cre14.g615450.t1.1"	MRPL117	"an OctotricoPeptide Repeat (OPR) protein (Walz et al 2021); stabilizes the 3' extremity of L5 fragment by binding the RNA backbone in its inner groove; interacts with mL116; amiRNA KD strain shows reduced accumulation of large subunit rRNA and OXPHOS complexes I and IV"
+Cre14.g622700	GMM:34.8	"transport.metabolite transporters at the envelope membrane"					"g15008.t1;Cre14.g622700.t1.1;Cre14.g622700.t1.1;g15008.t1"		
+Cre14.g620350	"GMM:18.3.1;GMM:18.3;GMM:18"	"Co-factor and vitamine metabolism.riboflavin.GTP cyclohydrolase II;Co-factor and vitamine metabolism.riboflavin;Co-factor and vitamine metabolism"	Mitochondrion	"GO:0009231;GO:0008686;GO:0003935"	"riboflavin biosynthetic process;3,4-dihydroxy-2-butanone-4-phosphate synthase activity;GTP cyclohydrolase II activity"	GCH3	"Cre14.g620350.t1.1;GCH3;g14951.t1"		"Putative bifunctional GTP cyclohydrolase II/3,4-dihydroxy-2-butanone-4-phosphate synthase (GCHII/DBPS), riboflavin (vitamin B2) biosynthesis, probably plastidial protein. GCHII/DBPS"
+Cre14.g631100	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0016020;GO:0008234;GO:0006508;GO:0005044"	"membrane;cysteine-type peptidase activity;proteolysis;scavenger receptor activity"	SRR29			
+Cre14.g625625	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion	"GO:0016887;GO:0006508;GO:0005524;GO:0004222"	"ATPase activity;proteolysis;ATP binding;metalloendopeptidase activity"	FTSH11	"g15070.t1;g15070.t1"	"FTSH11;FTSH11"	"mitochondrial FtsH protease; inner-membrane metalloprotease (M41) exposing catalytic sites to the intermembrane space (?i-AAA_ protease); probably in complex with FTSH4;mitochondrial FtsH protease; inner-membrane metalloprotease (M41) exposing catalytic sites to the intermembrane space (?i-AAA_ protease); probably in complex with FTSH4"
+Cre14.g615224							"Cre14.g615224.t1.1;g14822.t2;Cre14.g615224.t1.1;g14822.t2"		
+Cre14.g629960	GMM:15.2	"metal handling.binding, chelation and storage"	Mitochondrion	"GO:0046938;GO:0046872;GO:0016756;GO:0010038"	"phytochelatin biosynthetic process;metal ion binding;glutathione gamma-glutamylcysteinyltransferase activity;response to metal ion"		g15171.t1		
+Cre14.g627700			Mitochondrion				"g15119.t1;g15119.t1;g15119.t1"		
+Cre14.g622650			"Secretory pathway"				"g15007.t1;g15007.t1"		
+Cre14.g614750			Chloroplast	GO:0008080	"N-acetyltransferase activity"		"cpNAT1;g14812.t1;NAT34;NAT34;g14812.t1;cpNAT1"	"CPNAT1;CPNAT1"	"Related to GCN5; may be the enzyme responsible for N-terminal acetylation during translation;Related to GCN5; may be the enzyme responsible for N-terminal acetylation during translation"
+Cre14.g630847	GMM:7.2.2	"OPP.non-reductive PP.transaldolase"	Chloroplast	GO:0005975	"carbohydrate metabolic process"	TAL2	"g15197.t1;g15197.t1"	"TAL2;TAL2"	"EC 2.2.1.2; catalyzes the reversible transfer of a three-carbon ketol unit from sedoheptulose 7-phosphate to glyceraldehyde 3-phosphate to form erythrose 4-phosphate and fructose 6-phosphate; this enzyme, together with transketolase, provides a link between the glycolytic and pentose-phosphate pathways;EC 2.2.1.2; catalyzes the reversible transfer of a three-carbon ketol unit from sedoheptulose 7-phosphate to glyceraldehyde 3-phosphate to form erythrose 4-phosphate and fructose 6-phosphate; this enzyme, together with transketolase, provides a link between the glycolytic and pentose-phosphate pathways"
+Cre14.g608150			Mitochondrion				"g14660.t1;g14660.t1"		
+Cre14.g626300							"Cre14.g626300.t1.1;g15083.t1"		
+Cre14.g627500			Mitochondrion				"Cre14.g627500.t1.1;g15116.t1"		
+Cre14.g624850			Chloroplast				g15053.t1		
+Cre14.g633200									
+Cre14.g630400	"GMM:3.5;GMM:21.2.1.4"	"minor CHO metabolism.others;redox.ascorbate and glutathione.ascorbate.L-galactose dehydrogenase"					"g15182.t1;Cre14.g630400.t1.1"		"involved in vitamin C biosynthesis"
+Cre14.g613426			Mitochondrion						
+Cre14.g618750	GMM:29.4	"protein.postranslational modification"	Chloroplast	GO:0005515	"protein binding"	FAP246	g14908.t1	FAP246	"Found in the flagellar proteome; Has Leucine-rich repeat; Calpain cystein protease; Possibly an adenylate cyclase"
+Cre14.g631575			Chloroplast						
+Cre14.g628050			Mitochondrion			COG1	"g15130.t1;COG1;Cre14.g628050.t1.1"	COG1	"Expressed Protein. Similar to COG1, component of oligomeric golgi complex 1, involved in vesicle tethering and other Golgi functions"
+Cre14.g633903			Mitochondrion				"Cre14.g633903.t1.1;g15285.t1"		
+Cre14.g612976									
+Cre14.g618776	GMM:29.4	"protein.postranslational modification"	Mitochondrion			FAP246	g14909.t1		
+Cre14.g629102			"Secretory pathway"	"GO:0008236;GO:0006508"	"serine-type peptidase activity;proteolysis"		g15151.t1		
+Cre14.g612700	"GMM:29.5.11.4.3.2;GMM:11.1.13"	"protein.degradation.ubiquitin.E3.SCF.FBOX;lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein"		GO:0005515	"protein binding"	DRC7	"FAP50;g14764.t1;Cre14.g612700.t1.1;Cre14.g612700.t1.1;FAP50;g14764.t1"	"DRC7;DRC7"	"Flagellar Associated Protein 50, found in the flagellar proteome;;Flagellar Associated Protein 50, found in the flagellar proteome;"
+Cre14.g623850							"g15034.t1;g15034.t1;g15034.t1"		
+Cre14.g608950	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"							
+Cre14.g627488	GMM:19.1	"tetrapyrrole synthesis.glu-tRNA synthetase"		"GO:0016884;GO:0016874"	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor;ligase activity"				
+Cre14.g614151	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion				g14798.t1		
+Cre14.g620951			Mitochondrion				"g14964.t1;Cre14.g620950.t1.2"		
+Cre14.g629500							"g15161.t1;Cre14.g629500.t1.1"		
+Cre14.g619100	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast			CLPR1	"Cre14.g619100.t1.1;g14919.t1"	CLPR1	
+Cre14.g611450	GMM:31.1	cell.organisation	Chloroplast			PLAP7	"PLP7;g14738.t1;PLP7;g14738.t1;PLP7;g14738.t1;PLP7;g14738.t1;g14738.t1;PLP7;PLP7;g14738.t1"	"PLAP7;PLAP7;PLAP7;PLAP7;PLAP7;PLAP7"	"PAP-fibrillin family protein;PAP-fibrillin family protein;PAP-fibrillin family protein;PAP-fibrillin family protein;PAP-fibrillin family protein;PAP-fibrillin family protein"
+Cre14.g625750	GMM:29.3.3	protein.targeting.chloroplast				TIC22	"TIC22;Cre14.g625750.t1.1;g15073.t2;g15073.t2;Cre14.g625750.t1.1;TIC22;g15073.t2;TIC22;Cre14.g625750.t1.1;g15073.t2;TIC22;Cre14.g625750.t1.1"		"Previously described as 22 kDa translocon at the inner membrane of chloroplasts;Previously described as 22 kDa translocon at the inner membrane of chloroplasts;Previously described as 22 kDa translocon at the inner membrane of chloroplasts;Previously described as 22 kDa translocon at the inner membrane of chloroplasts"
+Cre14.g616376							g14849.t1		
+Cre14.g613075									
+Cre14.g632000	"GMM:29.9;GMM:29.6.2.6;GMM:29.6"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding"	Mitochondrion	"GO:0051087;GO:0042803;GO:0006457;GO:0000774"	"chaperone binding;protein homodimerization activity;protein folding;adenyl-nucleotide exchange factor activity"	CGE2	"g15230.t1;OPR65;OPR65;g15230.t1"	"CGE2;CGE2"	"Chloroplast GrpE homolog, nucleotide release factor, co-chaperone of HSP70B, chloroplast-targeted; contains an N-terminal OctotricoPeptide (octotricoPeptide) Repeat (OPR) domain;Chloroplast GrpE homolog, nucleotide release factor, co-chaperone of HSP70B, chloroplast-targeted; contains an N-terminal OctotricoPeptide (octotricoPeptide) Repeat (OPR) domain"
+Cre14.g629840			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g15168.t1;g15168.t1"		
+Cre14.g624600			Chloroplast				"g15048.t1;g15048.t1;g15048.t1;g15048.t1;g15048.t1"		
+Cre14.g615634			"Secretory pathway"						
+Cre14.g614226			Mitochondrion						
+Cre14.g614650									
+Cre14.g625950	GMM:27.1	RNA.processing	Mitochondrion	"GO:0016779;GO:0006396;GO:0003723"	"nucleotidyltransferase activity;RNA processing;RNA binding"	PAP4	"g15077.t1;g15077.t1"	"PAP4;PAP4"	"Non-canonical poly(A) polymerase (ncPAP) with PAP head domain; lacks the Glu residues typical of tRNA CCA-transferases, replaced by Ser546; may therefore serve in transcript tailing, lile E. coli homolog PAP1; has orthologs in Chlorophyceae and in Prasinophyceae, not Trebouxiophyceae; N-terminus targets GFP to mitochondria when expressed in tomato protoplasts;Non-canonical poly(A) polymerase (ncPAP) with PAP head domain; lacks the Glu residues typical of tRNA CCA-transferases, replaced by Ser546; may therefore serve in transcript tailing, lile E. coli homolog PAP1; has orthologs in Chlorophyceae and in Prasinophyceae, not Trebouxiophyceae; N-terminus targets GFP to mitochondria when expressed in tomato protoplasts"
+Cre14.g623800	GMM:26.24	"misc.GCN5-related N-acetyltransferase"		GO:0008080	"N-acetyltransferase activity"		"g15033.t1;NAT6"		"Peptide alpha-N-acetyltransferase"
+Cre14.g630787			Mitochondrion				g15192.t1		
+Cre14.g629880	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	GO:0005515	"protein binding"		g15169.t1		
+Cre14.g619750			"Secretory pathway"				g14933.t1		
+Cre14.g608970	GMM:29.2.1.99.2.34	"protein.synthesis.ribosomal protein.unknown.large subunit.L34"	Mitochondrion	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL34A	"bL34m;RPL34B;g14680.t1"	MRPL34	"higly similar to nearby RPL34B"
+Cre14.g627300							"g15105.t1;g15105.t1"		
+Cre14.g608300			Mitochondrion				"g14665.t1;Cre14.g608300.t1.1"		
+Cre14.g633901							g15283.t1		
+Cre14.g629600							g15163.t1		
+Cre14.g632847			Chloroplast			ELG44	"ELG44;g15258.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family;"
+Cre14.g631600							"g15222.t1;Cre14.g631600.t1.1"		
+Cre14.g618550			"Secretory pathway"				"g14900.t1;Cre14.g618550.t1.1;Cre14.g618550.t1.1;g14900.t1"		
+Cre14.g628150	GMM:27.1	RNA.processing							
+Cre14.g631451							"g15218.t1;Cre14.g631450.t1.3"		
+Cre14.g630982									
+Cre14.g614350	GMM:30.9	signalling.lipids					"Cre14.g614350.t1.1;g14803.t1;Cre14.g614350.t1.1;g14803.t1"		
+Cre14.g626576			Mitochondrion						
+Cre14.g620076			"Secretory pathway"						
+Cre14.g609900	GMM:21.3	redox.heme	"Secretory pathway"	GO:0016021	"integral component of membrane"		"g14701.t1;g14701.t1"		
+Cre14.g624700			Mitochondrion				"Cre14.g624700.t1.1;g15050.t1"		
+Cre14.g619250			Chloroplast				"g14923.t1;Cre14.g619250.t1.1"		
+Cre14.g618500	GMM:28.2	DNA.repair	Chloroplast				g14899.t1		
+Cre14.g630450							g15183.t1		
+Cre14.g631000			Mitochondrion				g15206.t1		
+Cre14.g624125									
+Cre14.g629150	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG4	"CYG4;g15153.t1"		"Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre14.g625150	"GMM:4.3.12;GMM:4.1.12"	"glycolysis.unclear/dually targeted.phosphoglycerate mutase;glycolysis.cytosolic branch.phosphoglycerate mutase"	Chloroplast			PGM8	"PGM8;g15059.t1"		
+Cre14.g614250				"GO:0072546;GO:0016021;GO:0005783"	"ER membrane protein complex;integral component of membrane;endoplasmic reticulum"		"g14801.t1;Cre14.g614250.t1.1"	RIP5	
+Cre14.g627433			"Secretory pathway"	"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		"g15110.t1;g15110.t1"		
+Cre14.g634113									
+Cre14.g632823			Chloroplast				g15255.t1		
+Cre14.g609350			Chloroplast				g14690.t1		
+Cre14.g632759							g15247.t1		
+Cre14.g630799			Mitochondrion				g15193.t1		
+Cre14.g632550							"Cre14.g632550.t1.1;g15241.t1;Cre14.g632550.t1.1;g15241.t1"		
+Cre14.g624050			Chloroplast				"g15039.t1;Cre14.g624050.t1.1"		
+Cre14.g618600	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP7			
+Cre14.g611552	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"	"Secretory pathway"	GO:0006629	"lipid metabolic process"	TGL22	"g14741.t1;Cre14.g611600.t1.2;TGL22"		
+Cre14.g632100	GMM:28.2	DNA.repair					g15233.t1		
+Cre14.g619400	GMM:29.5.5	"protein.degradation.serine protease"					"Cre14.g619400.t1.1;g14926.t1;Cre14.g619400.t1.1;g14926.t1"		
+Cre14.g612450	"GMM:29.2.1.1.4.2;GMM:29.2.1.1.3.2.15;GMM:29.2.1.1.1.2.15"	"protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L15;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L15"	Chloroplast	"GO:0015934;GO:0006412;GO:0003735"	"large ribosomal subunit;translation;structural constituent of ribosome"	PRPL15	"g14760.t1;Cre14.g612450.t1.1"	PRPL15	"imported to chloroplast; Chloroplast large ribosomal subunit protein L15"
+Cre14.g630301			Mitochondrion	GO:0003723	"RNA binding"		g15179.t1		
+Cre14.g627400			Mitochondrion				g15107.t1		
+Cre14.g633000				"GO:0055114;GO:0016972"	"oxidation-reduction process;thiol oxidase activity"	ERV1	"ERV1;TOX1;g15262.t1;Cre14.g633000.t1.1"	ERV1A	"Sulfhydryl oxidase. Erv1/Alr, similar to yeast Erv1 (mitochondrial) and Erv2 (ER), Erv1/Alr family; possibly mitochondrial; Named after Essential for Respiration and Viability ERV1 protein from yeast"
+Cre14.g633850			Mitochondrion				"g15281.t1;g15281.t1;g15281.t1"		
+Cre14.g632750	"GMM:29.4.1.57;GMM:29.4"	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g15246.t1;g15246.t1;g15246.t1"		
+Cre14.g620217									
+Cre14.g634193							"g15291.t1;Cre14.g634200.t1.3;g15291.t1;Cre14.g634200.t1.3;g15291.t1;Cre14.g634200.t1.3"		
+Cre14.g608093			Mitochondrion						
+Cre14.g632501			"Secretory pathway"				g15240.t1		
+Cre14.g627050			Chloroplast				"g15100.t1;Cre14.g627050.t1.1"		
+Cre14.g611484			Mitochondrion				"g14739.t3;g14739.t3"		
+Cre14.g624650			Chloroplast				"Cre14.g624650.t1.1;g15049.t1;g15049.t1;Cre14.g624650.t1.1"		
+Cre14.g624400			Mitochondrion			FAP99	"Cre14.g624400.t1.1;g15043.t1"	FAP99	"Found in the flagellar proteome"
+Cre14.g615250				GO:0045454	"cell redox homeostasis"	TRX18	"TRL4;TRX18;g14823.t2"		"thioredoxin-like protein also found in cyanobacteria and Arabidopsis - cd02950, TxlA, TRX-like protein A (TxlA) family; TxlA is found only in oxygenic photosynthetic organisms. The plant homolog (designated as HCF164) is localized in the chloroplast and is involved in the assembly of the cytochrome b6f complex"
+Cre14.g609700			"Secretory pathway"				"g14697.t1;g14697.t1"		
+Cre14.g627477			Chloroplast						
+Cre14.g614050	GMM:31.1	cell.organisation		"GO:0008017;GO:0000910;GO:0000226"	"microtubule binding;cytokinesis;microtubule cytoskeleton organization"		g14795.t1		
+Cre14.g612900	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB56	"Cre14.g612900.t1.1;TNP38;g14768.t1;CSB56"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre14.g609050	GMM:29.2.1.99.2.34	"protein.synthesis.ribosomal protein.unknown.large subunit.L34"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL34B		RPL34A	"higly similar to nearby RPL34A"
+Cre14.g628950							"g15148.t1;g15148.t1"		
+Cre14.g623350			Mitochondrion				"Cre14.g623350.t1.1;g15024.t1"		
+Cre14.g626667			Mitochondrion				g15093.t1		
+Cre14.g616900			"Secretory pathway"	"GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0006810"	"integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;transport"	SULP2	"g14862.t1;Cre14.g616900.t1.1;SLP2"	SULP2	"transmembrane component of chloroplast sulfate-transporting ABC transporter [GI:42559329]; homologous to SulP1"
+Cre14.g630871	"GMM:31.1;GMM:27.2"	"cell.organisation;RNA.transcription"					g15199.t1	ZCP1	"Similarity to putative metal chaperones YciC of B. subtilis and YeiR of E. coli; expression specific to Zn deficiency"
+Cre14.g621700	GMM:29.5.7	protein.degradation.metalloprotease				MMP31	"MMP31;g14982.t1"	MMP31	"Matrix metalloproteinase belonging to the M11 peptidase family"
+Cre14.g618700			Mitochondrion	GO:0006412	translation	MRPS7	"g14907.t1;uS7m;MRPS7"	MRPS7	
+Cre14.g623600			Mitochondrion				"g15029.t1;Cre14.g623600.t1.1"		
+Cre14.g628566			Chloroplast						
+Cre14.g622750	GMM:27.1.19	RNA.processing.ribonucleases	Mitochondrion				"g15009.t1;g15009.t1"		
+Cre14.g617750	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	Mitochondrion	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE3	"PDE1;g14883.t1;PDE3;PDE1;g14883.t1;PDE3"		"Ca+-calmodulin dependent 3',5'-cyclic-nucleotide phosphodiesterase similar to that from Mus musculus: PDE1B_mouse. Adjacent to PDE2 and PDE3;Ca+-calmodulin dependent 3',5'-cyclic-nucleotide phosphodiesterase similar to that from Mus musculus: PDE1B_mouse. Adjacent to PDE2 and PDE3"
+Cre14.g608550							"Cre14.g608550.t1.1;g14670.t1"		
+Cre14.g631750			Mitochondrion				"g15225.t1;BLZ12;g15225.t1;BLZ12;g15225.t1;BLZ12"		"Basic-leucine zipper (bZIP) transcription factor;Basic-leucine zipper (bZIP) transcription factor;Basic-leucine zipper (bZIP) transcription factor"
+Cre14.g613900	GMM:31.3	cell.cycle		"GO:0019901;GO:0006355;GO:0000079"	"protein kinase binding;regulation of transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	CYCT1	"CYCT1;Cre14.g613900.t1.1;g14792.t1"	CYCT1	"homologous to cyclin T; possible role in transcription"
+Cre14.g633050			Mitochondrion				g15263.t1		
+Cre14.g621000	GMM:31.3	cell.cycle		"GO:0006396;GO:0005622"	"RNA processing;intracellular"		"Cre14.g621000.t1.1;g14965.t1;SPL27"		"Putative TPR-repeat pre-mRNA splicing factor, related to the Drosophila Crooked Neck (CRN) cell cycle protein which localizes with SR and Sm proteins"
+Cre14.g630750	"GMM:3.6;GMM:29.4.1"	"minor CHO metabolism.callose;protein.postranslational modification.kinase"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	MAPKKK10	"MAPKKK10;g15189.t1"		MAP3K1
+Cre14.g633900			Mitochondrion	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		g15282.t1		
+Cre14.g627800	"GMM:13.1.3.5.2;GMM:11.1.13"	"amino acid metabolism.synthesis.aspartate family.lysine.dihydrodipicolinate reductase;lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein"		GO:0000062	"fatty-acyl-CoA binding"		"g15124.t1;Cre14.g627800.t1.1;Cre14.g627800.t1.1;g15124.t1"		
+Cre14.g609150			Chloroplast				"g14686.t1;g14686.t1"		
+Cre14.g618641									
+Cre14.g612350	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"		GO:0005515	"protein binding"		g14757.t1		
+Cre14.g628800	GMM:29.5.1	protein.degradation.subtilases	"Secretory pathway"	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"		g15145.t1		
+Cre14.g629550				GO:0003723	"RNA binding"		"Cre14.g629550.t1.1;g15162.t1;Cre14.g629550.t1.1;g15162.t1;g15162.t1;Cre14.g629550.t1.1"		
+Cre14.g631145				"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"		g15210.t1		
+Cre14.g608050			"Secretory pathway"				"g14657.t1;g14657.t1"		
+Cre14.g608990			Chloroplast				"g14681.t1;g14681.t1"		
+Cre14.g613100							"g14774.t1;g14774.t1"		
+Cre14.g614400	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		"GO:0016818;GO:0008270;GO:0005524;GO:0005515;GO:0003676"	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;zinc ion binding;ATP binding;protein binding;nucleic acid binding"		"g14804.t1;SRH23;g14804.t1;SRH23"		"SNF2-related helicase. ChromoDB CHR3418;SNF2-related helicase. ChromoDB CHR3418"
+Cre14.g608900	GMM:30.11.1	"signalling.light.COP9 signalosome"	Chloroplast				g14678.t1		
+Cre14.g630100	GMM:29.2.1.2.2.13	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L13"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL13	"g15174.t1;Cre14.g630100.t1.1;RPL13;Cre14.g630100.t1.1;g15174.t1;RPL13;Cre14.g630100.t1.1;g15174.t1;RPL13"	"RPL13;RPL13;RPL13"	"Cytosolic 60S large ribosomal subunit protein L13;Cytosolic 60S large ribosomal subunit protein L13;Cytosolic 60S large ribosomal subunit protein L13"
+Cre14.g617500	GMM:31.6.1.5.2	"cell.motility.eukaryotes.radial spoke.stalk"				RSP14	"FAP132;g14878.t1;Cre14.g617500.t1.1"	RSP14	"An Armadillo repeat protein in radial spoke stalk [PMID: 16507594]; Found in the flagellar proteome as FAP132 [PMID: 15998802]"
+Cre14.g631650						FAP406	"g15223.t1;g15223.t1"	"FAP406;FAP406"	"Found in Cr and Volvox but not strongly conserved elsewhere;Found in Cr and Volvox but not strongly conserved elsewhere"
+Cre14.g608600			"Secretory pathway"				"g14671.t1;Cre14.g608600.t1.1"		
+Cre14.g616501									
+Cre14.g634100									
+Cre14.g620050			Mitochondrion				"g14941.t1;g14941.t1;g14941.t1;g14941.t1;g14941.t1"		
+Cre14.g608350	GMM:30.11.1	"signalling.light.COP9 signalosome"	Chloroplast				"Cre14.g608350.t1.1;g14666.t1;g14666.t1;Cre14.g608350.t1.1"		
+Cre14.g612000	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g14749.t1;Cre14.g612000.t1.1;Cre14.g612000.t1.1;g14749.t1;g14749.t1;Cre14.g612000.t1.1;g14749.t1;Cre14.g612000.t1.1"		
+Cre14.g629200						FAP98	"Cre14.g629200.t1.1;g15154.t1;Cre14.g629200.t1.1;g15154.t1"	"FAP98;FAP98"	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802];Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]"
+Cre14.g632831			"Secretory pathway"				"g15256.t1;g15256.t1;g15256.t1"		
+Cre14.g623550			Chloroplast				g15027.t1		
+Cre14.g614708							g14811.t1		
+Cre14.g617700	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"		"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE2	"g14882.t1;PDE1;PDE2"		"Ca+-calmodulin dependent 3',5'-cyclic-nucleotide phosphodiesterase similar to that from Mus musculus: PDE1B_mouse. Adjacent to PDE2 and PDE3"
+Cre14.g610100							"g14706.t1;g14706.t1"		
+Cre14.g627411							"g15108.t1;Cre14.g627450.t1.3;g15108.t1;Cre14.g627450.t1.3"		
+Cre14.g624201	GMM:21.1	redox.thioredoxin	Mitochondrion	"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"		"g15041.t1;g15041.t1;g15041.t1"		
+Cre14.g613700							"g14788.t1;g14788.t1;g14788.t1"		
+Cre14.g612850			"Secretory pathway"	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		g14767.t1		
+Cre14.g622900			Chloroplast				"g15012.t1;g15012.t1"		
+Cre14.g625650							"Cre14.g625650.t1.1;g15071.t1"		
+Cre14.g626000				"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"		"g15078.t1;g15078.t1;g15078.t1;g15078.t1;g15078.t1;g15078.t1;g15078.t1"		
+Cre14.g625100							"Cre14.g625100.t1.1;g15058.t1;g15058.t1;Cre14.g625100.t1.1"		
+Cre14.g619350			Mitochondrion	GO:0005524	"ATP binding"		"Cre14.g619350.t1.1;g14925.t1;Cre14.g619350.t1.1;g14925.t1;g14925.t1;Cre14.g619350.t1.1"		
+Cre14.g624750			"Secretory pathway"				"g15051.t1;Cre14.g624750.t1.1"		
+Cre14.g618450			"Secretory pathway"				"g14898.t1;Cre14.g618450.t1.1;Cre14.g618450.t1.1;g14898.t1;Cre14.g618450.t1.1;g14898.t1"	"PEX3;PEX3;PEX3"	"Peroxisome biogenesis protein 3, necessary fro import of peroxisomal membrane proteins;Peroxisome biogenesis protein 3, necessary fro import of peroxisomal membrane proteins;Peroxisome biogenesis protein 3, necessary fro import of peroxisomal membrane proteins"
+Cre14.g630950	GMM:26.23	misc.rhodanese					"g15204.t1;Cre14.g630950.t1.1"		
+Cre14.g615700			Chloroplast				g14834.t1		
+Cre14.g626600			"Secretory pathway"				g15091.t1		
+Cre14.g609850			"Secretory pathway"				"g14700.t1;Cre14.g609850.t1.1"		
+Cre14.g629920	GMM:34.5	transport.ammonium		"GO:0072488;GO:0016020;GO:0015696;GO:0008519"	"ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity"		"AMT2;g15170.t1;AMT2;g15170.t1"	"AMT1B;AMT1B"	
+Cre14.g628533	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Chloroplast	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG3	CYG3		"Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre14.g613400	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"		GO:0005515	"protein binding"	POC16	"POC16;Cre14.g613400.t1.1;g14781.t1"	POC16	"Found in basal body proteome; WD40 protein found in FABP; Promotes cilia formation; Along with POB15 (Cre09.g390450), indentified as one of two proteins of the central core region; poc16 mutants exhibit flagellar defects"
+Cre14.g622480	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"				"Cre14.g622450.t1.2;g15001.t1"		
+Cre14.g630600			Chloroplast				g15186.t1		
+Cre14.g630050			Mitochondrion				"g15173.t1;g15173.t1;g15173.t1"		
+Cre14.g615900	GMM:34.99	transport.misc		"GO:0016021;GO:0006810"	"integral component of membrane;transport"	FBT3	"g14839.t1;FBT3;FBT3;g14839.t1"		"Similar to AT2G32040, which was identified as a folate/pteridine transporter [PMID: 16162503];;Similar to AT2G32040, which was identified as a folate/pteridine transporter [PMID: 16162503];"
+Cre14.g616050			Mitochondrion				g14842.t1		
+Cre14.g617950				GO:0005509	"calcium ion binding"	CAM18	"CAM18;g14888.t1"		
+Cre14.g615300									
+Cre14.g630775			Mitochondrion						
+Cre14.g621050	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"					"g14966.t1;g14966.t1"		
+Cre14.g613950	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215"	"ATPase activity;integral component of membrane;transport;ATP binding;transporter activity"		"Cre14.g613950.t1.1;g14793.t2;ABC2"	ABCA2	"ABCA superfamily; An ABC-family fatty acid transporter; Mutant and overexpressers accumulate respectively less and more TAGs; Protein locates to the ER; Along with ABCA4 (Cre16.g674500), is co-orthologous with ABCA9, ABCA11, and ABCA2 in Arabidopsis thaliana"
+Cre14.g618050	GMM:31.1	cell.organisation	Chloroplast			PLAP3	"PLP3;g14890.t1;Cre14.g618050.t1.1"	PLAP3	"PAP-fibrillin family protein"
+Cre14.g610250			Chloroplast				"g14709.t1;Cre14.g610250.t1.1"		
+Cre14.g632400				GO:0005515	"protein binding"	SSA19	"g15238.t1;SSA19;g15238.t1;SSA19;g15238.t1;SSA19;SSA19;g15238.t1;g15238.t1;SSA19"	"SSA19;SSA19;SSA19;SSA19;SSA19"	"identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA)"
+Cre14.g616800							"Cre14.g616800.t1.1;g14859.t1"		
+Cre14.g626750	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast				"ELIP1;ELI1;g15095.t1;Cre14.g626750.t1.1"	MSF1	"belongs to chlorophyll A-B binding protein superfamily, ELIP family; mutant has reduced PSI stability"
+Cre14.g630811							"g15194.t1;g15194.t1"		
+Cre14.g626250							"g15082.t1;Cre14.g626250.t1.1"		
+Cre14.g632076									
+Cre14.g624350	GMM:16.1.3.5	"secondary metabolism.isoprenoids.tocopherol biosynthesis.tocopherol methyltransferase"	Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	VTE6	"Cre14.g624350.t1.1;g15042.t1;VTE6"	VTE6	"gamma-tocopherol methyltransferase. MPBQ/MSBQ methyltransferase (cyanobacterial type), chloroplast precursor"
+Cre14.g618800							"g14910.t1;g14910.t1;g14910.t1;g14910.t1;g14910.t1"		
+Cre14.g623150							g15019.t1		
+Cre14.g620300	GMM:13.1.6.5.1	"amino acid metabolism.synthesis.aromatic aa.tryptophan.anthranilate synthase"	Chloroplast	"GO:0016787;GO:0006541"	"hydrolase activity;glutamine metabolic process"	ASB1	"Cre14.g620300.t1.1;ANS2;g14950.t1"	ASB1	"Anthranilate synthase beta subunit; based on similarity to Arabidopsis homolog"
+Cre14.g623403							"Cre14.g623403.t1.1;g15025.t1;g15025.t1;Cre14.g623403.t1.1;g15025.t1;Cre14.g623403.t1.1"		
+Cre14.g616950	GMM:15	"metal handling"				SELT	"SELENOT;SELT;g14863.t1;SELT1;SELENOT;SELT;g14863.t1;SELT1"	"SELT1;SELT1"	"Selenocysteine in position 61; SECIS element in 3'-UTR; conserved in plants and animals (Sec replaced by Cys in plants);Selenocysteine in position 61; SECIS element in 3'-UTR; conserved in plants and animals (Sec replaced by Cys in plants)"
+Cre14.g609750			"Secretory pathway"				g14698.t1		
+Cre14.g612750			Mitochondrion			FAP197	g14765.t1	FAP197	"Flagellar Associated Protein, found in the flagellar proteome; weakly Similar to Plectin"
+Cre14.g620200							"g14945.t1;g14945.t1"		
+Cre14.g634150							"g15290.t1;g15290.t1;g15290.t1;g15290.t1"		
+Cre14.g610647	GMM:31.1	cell.organisation	Mitochondrion	"GO:0007010;GO:0003779"	"cytoskeleton organization;actin binding"		"Cre42.g787350.t1.1;g14721.t1"		
+Cre14.g611650	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast	"GO:0055114;GO:0050660;GO:0016491"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity"	ALO2	"g14742.t1;ALO2;ALO2;g14742.t1"	"ALO1;ALO1"	"D-arabinono-1,4-lactone oxidase/gulonolactone oxidase with FAD cofactor and peptidase S8/S53 activity;D-arabinono-1,4-lactone oxidase/gulonolactone oxidase with FAD cofactor and peptidase S8/S53 activity"
+Cre14.g614850						FAP33	"ANK17;g14814.t1;ANK17;g14814.t1"	"FAP33;FAP33"	"Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP33. Phosphorylation characterized by Boesger et al. (29) [PMID: 19429781];Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP33. Phosphorylation characterized by Boesger et al. (29) [PMID: 19429781]"
+Cre14.g614300	GMM:23.1.2.30	"nucleotide metabolism.synthesis.purine.IMP dehydrogenase"		"GO:0055114;GO:0006164;GO:0003938;GO:0003824"	"oxidation-reduction process;purine nucleotide biosynthetic process;IMP dehydrogenase activity;catalytic activity"		"g14802.t1;Cre14.g614300.t1.1"		
+Cre14.g627788			Mitochondrion				g15123.t1		
+Cre14.g628100	"GMM:27.4;GMM:27.1.1"	"RNA.RNA binding;RNA.processing.splicing"				SPL7	"Cre14.g628100.t1.1;SPL7;g15131.t1;SPL7;Cre14.g628100.t1.1;g15131.t1"		"putative splicing factor, similar to hnRNP-F;putative splicing factor, similar to hnRNP-F"
+Cre14.g609650				GO:0048037	"cofactor binding"		"Cre14.g609650.t1.1;g14696.t1"		
+Cre14.g610566			Mitochondrion	"GO:0007010;GO:0003779"	"cytoskeleton organization;actin binding"		g14716.t1		
+Cre14.g627466			Chloroplast						
+Cre14.g615850						EFH8	"g14838.t1;EFH8;EFH8;g14838.t1;EFH8;g14838.t1"		
+Cre14.g620652									
+Cre14.g609202	GMM:29.5.7	protein.degradation.metalloprotease		"GO:0031012;GO:0016491;GO:0008270;GO:0008152;GO:0006508;GO:0004222"	"extracellular matrix;oxidoreductase activity;zinc ion binding;metabolic process;proteolysis;metalloendopeptidase activity"		g14687.t1		
+Cre14.g612400									
+Cre14.g611350							"g14736.t1;g14736.t1;g14736.t1"		
+Cre14.g615550	"GMM:29.4;GMM:11.9.2"	"protein.postranslational modification;lipid metabolism.lipid degradation.lipases"	"Secretory pathway"	GO:0006629	"lipid metabolic process"	TGL19	"g14829.t1;TGL19"		
+Cre14.g629241			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG25	"CYG25;g15155.t1;g15155.t1;CYG25;g15155.t1;CYG25"		"Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre14.g628850	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Chloroplast	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG26	"CYG26;g15146.t1;CYG26;g15146.t1"		"Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre14.g625000			Mitochondrion				g15056.t1		
+Cre14.g618650						IQA1			
+Cre14.g623700			Mitochondrion			OPR63	"g15031.t1;g15031.t1"	"OPR63;OPR63"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre14.g616550			Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG50	"CYG50;g14853.t1;CYG50;g14853.t1;g14853.t1;CYG50;CYG50;g14853.t1"		"Domain similar to guanylyl cyclase long variant [Drosophila melanogaster]. Rhodopsin-like;Domain similar to guanylyl cyclase long variant [Drosophila melanogaster]. Rhodopsin-like;Domain similar to guanylyl cyclase long variant [Drosophila melanogaster]. Rhodopsin-like;Domain similar to guanylyl cyclase long variant [Drosophila melanogaster]. Rhodopsin-like"
+Cre14.g610631	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		"Cre42.g787300.t1.1;g14720.t1;Cre42.g787300.t1.1;g14720.t1"		
+Cre14.g615800			Chloroplast				"Cre14.g615800.t1.1;g14837.t1"		
+Cre14.g633700			"Secretory pathway"				"Cre14.g633700.t1.1;g15278.t1"		
+Cre14.g622600			Mitochondrion				g15006.t1		
+Cre14.g631950			"Secretory pathway"				"g15229.t1;Cre14.g631950.t1.1"		
+Cre14.g621100			"Secretory pathway"				g14967.t1		
+Cre14.g619500			Mitochondrion				g14928.t1		
+Cre14.g621800			"Secretory pathway"				"GT90-27;GT90F27;g14984.t1;GT90F27;g14984.t1;GT90-27"		
+Cre14.g616000	GMM:26.23	misc.rhodanese					g14841.t1		
+Cre14.g631701							"g15224.t1;Cre14.g631700.t1.3"		
+Cre14.g613134							"Cre14.g613134.t1.1;g14775.t1"		
+Cre14.g632807			"Secretory pathway"						
+Cre14.g620250							"g14949.t1;g14949.t1;g14949.t1;g14949.t1"		
+Cre14.g624476							g15045.t1		
+Cre14.g611250	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"					"g14734.t1;Cre14.g611250.t1.1;Cre14.g611250.t1.1;g14734.t1;Cre14.g611250.t1.1;g14734.t1"	"POC9;POC9;POC9"	"Found in basal body proteome; FABP protein with DM10 domain, similar to Rib72;;Found in basal body proteome; FABP protein with DM10 domain, similar to Rib72;;Found in basal body proteome; FABP protein with DM10 domain, similar to Rib72;"
+Cre14.g623100							"g15017.t1;Cre14.g623100.t1.1;Cre14.g623100.t1.1;g15017.t1"		
+Cre14.g618000				GO:0005509	"calcium ion binding"	EFH9	"g14889.t1;EFH9;Cre14.g618000.t1.1;g14889.t1;Cre14.g618000.t1.1;EFH9"		
+Cre14.g634279									
+Cre14.g630907	GMM:29.5.2	protein.degradation.autophagy		"GO:0006914;GO:0005737"	"autophagy;cytoplasm"	ATG5	"APG5;g15203.t2"	ATG5	"Conserved protein involved in autophagy; undergoes conjugation with Atg12 to form a complex involved in Atg8 lipidation; Atg5-Atg12 conjugate enhances E2 activity of Atg3 by rearranging its catalytic site, also forms a complex with Atg16; the Atg5-Atg12/Atg16 complex binds to membranes and is essential for autophagosome formation"
+Cre14.g617300	GMM:29.5.4	"protein.degradation.aspartate protease"	Chloroplast	"GO:0016021;GO:0004190"	"integral component of membrane;aspartic-type endopeptidase activity"	PSL3	"g14874.t1;PSL3;Cre14.g617300.t1.1;Cre14.g617300.t1.1;PSL3;g14874.t1"		"contains YD and GxGD motifs typical of typical of A22 family aspartic proteases, presenilins/signal peptide peptidases; belongs to SPP type, cleaving only type II transmembrane helices (C-terminus towards cytosol); probably involved in clearance of signal peptides and in signaling; contains a long insertion after the GxGD helix; possibly directed to mitochondrion, like ostreococcus ortholog; has no Arabidopsis ortholog;contains YD and GxGD motifs typical of typical of A22 family aspartic proteases, presenilins/signal peptide peptidases; belongs to SPP type, cleaving only type II transmembrane helices (C-terminus towards cytosol); probably involved in clearance of signal peptides and in signaling; contains a long insertion after the GxGD helix; possibly directed to mitochondrion, like ostreococcus ortholog; has no Arabidopsis ortholog"
+Cre14.g633626			"Secretory pathway"						
+Cre14.g610000							g14704.t1		
+Cre14.g622000			Chloroplast				g14986.t1		
+Cre14.g619825	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0006259;GO:0005694;GO:0005524;GO:0003824;GO:0003677;GO:0000737"	"DNA metabolic process;chromosome;ATP binding;catalytic activity;DNA binding;DNA catabolic process, endonucleolytic"		"g14935.t1;Cre14.g619839.t1.3"		
+Cre14.g620500	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	"GO:0006355;GO:0003700"	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g14954.t1;Cre14.g620500.t1.1;g14954.t1;Cre14.g620500.t1.1"		
+Cre14.g627422							g15109.t1		
+Cre14.g614950			"Secretory pathway"	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPS2	"uS2m;g14816.t1;Cre14.g614950.t1.1;MRPS2;MRPS2;g14816.t1;Cre14.g614950.t1.1;uS2m"	"MRPS2;MRPS2"	
+Cre14.g630650			"Secretory pathway"				"g15187.t1;Cre14.g630650.t1.1;Cre14.g630650.t1.1;g15187.t1"		
+Cre14.g609600			Mitochondrion				g14695.t1		
+Cre14.g630150				"GO:0016567;GO:0007165;GO:0006955;GO:0004842"	"protein ubiquitination;signal transduction;immune response;ubiquitin-protein transferase activity"		g15176.t1		
+Cre14.g613800							"g14790.t1;g14790.t1"		
+Cre14.g623926				"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"				
+Cre14.g632250	GMM:28.2	DNA.repair	Mitochondrion				"g15235.t1;g15235.t1;g15235.t1;g15235.t1;g15235.t1"		
+Cre14.g625500	GMM:31.1	cell.organisation				FAP254	"ANK10;g15067.t2;ANK10;g15067.t2"	"FAP254;FAP254"	"Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome, where it was designated FAP254. Phosphorylation characterized by Boesger et al. (29) [PMID: 19429781];Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome, where it was designated FAP254. Phosphorylation characterized by Boesger et al. (29) [PMID: 19429781]"
+Cre14.g623250			"Secretory pathway"				"g15022.t1;g15022.t1;g15022.t1"		
+Cre14.g611700	GMM:31.1	cell.organisation	Chloroplast			PLAP8	"g14743.t1;PLP8;PLP8;g14743.t1;g14743.t1;PLP8"	"PLAP8;PLAP8;PLAP8"	"PAP-fibrillin family protein;PAP-fibrillin family protein;PAP-fibrillin family protein"
+Cre14.g616750	GMM:29.3.5	protein.targeting.peroxisomes				PEX5	"g14858.t1;g14858.t1;g14858.t1;g14858.t1;g14858.t1;g14858.t1;g14858.t1;g14858.t1"	"PEX5;PEX5;PEX5;PEX5;PEX5;PEX5;PEX5;PEX5"	"peroxisomal targeting signal 1 receptor Pex5; binds the PTS1 targeting signal SKL-COOH between its two TRP domains [PMID: 9789089];peroxisomal targeting signal 1 receptor Pex5; binds the PTS1 targeting signal SKL-COOH between its two TRP domains [PMID: 9789089];peroxisomal targeting signal 1 receptor Pex5; binds the PTS1 targeting signal SKL-COOH between its two TRP domains [PMID: 9789089];peroxisomal targeting signal 1 receptor Pex5; binds the PTS1 targeting signal SKL-COOH between its two TRP domains [PMID: 9789089];peroxisomal targeting signal 1 receptor Pex5; binds the PTS1 targeting signal SKL-COOH between its two TRP domains [PMID: 9789089];peroxisomal targeting signal 1 receptor Pex5; binds the PTS1 targeting signal SKL-COOH between its two TRP domains [PMID: 9789089];peroxisomal targeting signal 1 receptor Pex5; binds the PTS1 targeting signal SKL-COOH between its two TRP domains [PMID: 9789089];peroxisomal targeting signal 1 receptor Pex5; binds the PTS1 targeting signal SKL-COOH between its two TRP domains [PMID: 9789089]"
+Cre14.g629700	GMM:8.2.10	"TCA / organic transformation.other organic acid transformations.malic"	Chloroplast	"GO:0055114;GO:0051287;GO:0004471"	"oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity"	MME3	g15165.t1	MME3	"Malic Enzyme, NADP-dependent; malate dehydrogenase, decarboxylating (EC 1.1.1.40); direct repeat with MME2; targeting uncertain, but predicted cytosolic by homology"
+Cre14.g632450			"Secretory pathway"	GO:0005515	"protein binding"		"g15239.t1;g15239.t1;g15239.t1;g15239.t1;g15239.t1;g15239.t1;g15239.t1;g15239.t1;g15239.t1;g15239.t1"		
+Cre14.g618979			Mitochondrion				"g14916.t1;g14916.t1;g14916.t1;g14916.t1;g14916.t1;g14916.t1;g14916.t1"		
+Cre14.g608652									
+Cre14.g631900	"GMM:29.5.5;GMM:27.1.19"	"protein.degradation.serine protease;RNA.processing.ribonucleases"		GO:0016788	"hydrolase activity, acting on ester bonds"		"g15228.t1;Cre14.g631900.t1.1;g15228.t1;Cre14.g631900.t1.1"		
+Cre14.g628000	GMM:27.1	RNA.processing	Chloroplast	"GO:0016740;GO:0008033;GO:0006529;GO:0004066"	"transferase activity;tRNA processing;asparagine biosynthetic process;asparagine synthase (glutamine-hydrolyzing) activity"		"TMX1;Cre14.g628000.t1.1;g15129.t1;Cre14.g628000.t1.1;TMX1;g15129.t1"	"TMX1;TMX1"	
+Cre14.g615350				GO:0019825	"oxygen binding"	THB2	"g14825.t1;THB2;Cre14.g615350.t1.1"	THB2	"Oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is in tandem with THB1 on Chr_14; THB2 is thought to carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor; THB1 and THB2 are both induced by nitrate, in a NIT2-dependent manner; THB1, THB2 and THB12 are induced b"
+Cre14.g633600			Mitochondrion				g15275.t1		
+Cre14.g616976			Mitochondrion				g14864.t1		
+Cre14.g632700	"GMM:29.4.1.57;GMM:29.4"	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g15245.t1		
+Cre14.g626700	GMM:1.1.5.2	"PS.lightreaction.other electron carrier (ox/red).ferredoxin"	Chloroplast	"GO:0051536;GO:0009055"	"iron-sulfur cluster binding;electron carrier activity"	PETF	"Cre14.g626700.t1.1;FDX1;PETF;g15094.t1"	FDX1	"Apoferredoxin; [2Fe-2S] iron-sulfur protein involved in photosynthetic electron transfer, chloroplast localization [PMID: 16656453]"
+Cre14.g615150			Mitochondrion				g14820.t1		
+Cre14.g633450			Chloroplast				"g15272.t1;Cre14.g633450.t1.1;Cre14.g633450.t1.1;g15272.t1"		
+Cre14.g630823			Mitochondrion				"g15195.t1;g15195.t1"		
+Cre14.g623050			Chloroplast				g15016.t1		
+Cre14.g616700			"Secretory pathway"				"g14857.t1;g14857.t1"		
+Cre14.g613550						FAP203	"g14785.t1;FAP203;Cre14.g613550.t1.1"	HSP70H	"Heat shock protein 70 with possible 2-alkenal reductase activity; described as Flagellar Associated Protein 367 and/or 203"
+Cre14.g612250						FAP388	"g14755.t1;Cre14.g612250.t1.1"	FAP388	"Found in Cr and Volvox but not strongly conserved elsewhere"
+Cre14.g632950	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"				NOT1	"Cre14.g632950.t1.1;NOT1;g15261.t1;NOT1;g15261.t1;Cre14.g632950.t1.1;Cre14.g632950.t1.1;g15261.t1;NOT1"	"NOT1;NOT1;NOT1"	"putative homolog of not1p in yeast, a component of the CCR4-NOT core complex, which in the nucleus seems to be a general transcription factor, and in the cytoplasm the major mRNA deadenylase involved in mRNA turnover. The NOT protein subcomplex negatively regulates the basal and activated transcription of many genes.;putative homolog of not1p in yeast, a component of the CCR4-NOT core complex, which in the nucleus seems to be a general transcription factor, and in the cytoplasm the major mRNA deadenylase involved in mRNA turnover. The NOT protein subcomplex negatively regulates the basal and activated transcription of many genes.;putative homolog of not1p in yeast, a component of the CCR4-NOT core complex, which in the nucleus seems to be a general transcription factor, and in the cytoplasm the major mRNA deadenylase involved in mRNA turnover. The NOT protein subcomplex negatively regulates the basal and activated transcription of many genes."
+Cre14.g627150			Mitochondrion				"g15102.t2;g15102.t2"		
+Cre14.g621150			Chloroplast				g14968.t1		
+Cre14.g626350							"g15084.t1;Cre14.g626350.t1.1"		
+Cre14.g612150						PAP10	"MOT18;g14752.t1;PAP10;PAP10;g14752.t1;MOT18;g14752.t1;MOT18;PAP10;PAP10;MOT18;g14752.t1"	"PAP10;PAP10;PAP10;PAP10"	"Non-canonical poly(A) polymerase (ncPAP) with PAP/25A core domain; has orthologs in Chlorophyceae only; related to MUT68, and PAP6; classified as present in organisms with motile ciliae;Non-canonical poly(A) polymerase (ncPAP) with PAP/25A core domain; has orthologs in Chlorophyceae only; related to MUT68, and PAP6; classified as present in organisms with motile ciliae;Non-canonical poly(A) polymerase (ncPAP) with PAP/25A core domain; has orthologs in Chlorophyceae only; related to MUT68, and PAP6; classified as present in organisms with motile ciliae;Non-canonical poly(A) polymerase (ncPAP) with PAP/25A core domain; has orthologs in Chlorophyceae only; related to MUT68, and PAP6; classified as present in organisms with motile ciliae"
+Cre14.g625200				"GO:0006367;GO:0005672"	"transcription initiation from RNA polymerase II promoter;transcription factor TFIIA complex"		"Cre14.g625200.t1.1;g15060.t1"		
+Cre14.g615950	"GMM:34.16;GMM:29.2.2.1"	"transport.ABC transporters and multidrug resistance systems;protein.synthesis.ribosome biogenesis.export from nucleus"		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"g14840.t1;g14840.t1;g14840.t1;g14840.t1;g14840.t1;g14840.t1;g14840.t1;g14840.t1"		
+Cre14.g631400			"Secretory pathway"				"g15217.t1;g15217.t1"		
+Cre14.g616200	GMM:10.2	"cell wall.cellulose synthesis"	"Secretory pathway"	"GO:0016758;GO:0016021;GO:0006506"	"transferase activity, transferring hexosyl groups;integral component of membrane;GPI anchor biosynthetic process"	PIGM	"g14845.t1;GTR14;PIG-M;Cre14.g616200.t1.1"	PIGM1	"Mannosyltransferase involved in glycosylphosphatidylinositol-anchor biosynthesis. Transfers the first alpha-1,4-mannose to GlcN-acyl-PI during GPI precursor assembly; Orthologous to PNT1 (AT5G22130) in Arabidopsis thaliana"
+Cre14.g610582	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		g14717.t1		
+Cre14.g634000							g15287.t1		
+Cre14.g624000							"g15038.t1;g15038.t1;g15038.t1"		
+Cre14.g608788			"Secretory pathway"				"Cre14.g608788.t1.1;g14675.t1"		
+Cre14.g617050			"Secretory pathway"				"g14867.t1;g14867.t1"		
+Cre14.g629283			"Secretory pathway"	"GO:0006396;GO:0004000;GO:0003723"	"RNA processing;adenosine deaminase activity;RNA binding"		"Cre14.g629283.t1.1;g15156.t1"		
+Cre14.g611300			"Secretory pathway"	GO:0016020	membrane	COP3	"CSOA;COP3;g14735.t1;COP3;CSOA;g14735.t1;COP3;CSOA;g14735.t1"	"CHR1;CHR1;CHR1"	"Also described as Chlamydomonas Sensory Opsin A and Chlamoypsin 3; light-gated proton channel rhodopsin; contains N-terminal rhodopsin domain and C-terminal membrane-associated domain; dominant Phototaxis Photoreceptor, involved in the photoshock response; isolated from eyespot membranes; trafficking into the eyespot and flagella is IFT-mediated;Also described as Chlamydomonas Sensory Opsin A and Chlamoypsin 3; light-gated proton channel rhodopsin; contains N-terminal rhodopsin domain and C-terminal membrane-associated domain; dominant Phototaxis Photoreceptor, involved in the photoshock response; isolated from eyespot membranes; trafficking into the eyespot and flagella is IFT-mediated;Also described as Chlamydomonas Sensory Opsin A and Chlamoypsin 3; light-gated proton channel rhodopsin; contains N-terminal rhodopsin domain and C-terminal membrane-associated domain; dominant Phototaxis Photoreceptor, involved in the photoshock response; isolated from eyespot membranes; trafficking into the eyespot and flagella is IFT-mediated"
+Cre14.g617650	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	"Secretory pathway"	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE1	"PDE1;g14881.t1;g14881.t1;PDE1;PDE1;g14881.t1;PDE1;g14881.t1"		"Ca+-calmodulin dependent 3',5'-cyclic-nucleotide phosphodiesterase similar to that from Mus musculus: PDE1B_mouse. Adjacent to PDE2 and PDE3;Ca+-calmodulin dependent 3',5'-cyclic-nucleotide phosphodiesterase similar to that from Mus musculus: PDE1B_mouse. Adjacent to PDE2 and PDE3;Ca+-calmodulin dependent 3',5'-cyclic-nucleotide phosphodiesterase similar to that from Mus musculus: PDE1B_mouse. Adjacent to PDE2 and PDE3;Ca+-calmodulin dependent 3',5'-cyclic-nucleotide phosphodiesterase similar to that from Mus musculus: PDE1B_mouse. Adjacent to PDE2 and PDE3"
+Cre14.g611950			Chloroplast				"g14748.t1;g14748.t1"		
+Cre14.g614800			Chloroplast				"g14813.t1;Cre14.g614800.t1.1"		
+Cre14.g633650	GMM:27.1.1	RNA.processing.splicing		"GO:0005634;GO:0000398"	"nucleus;mRNA splicing, via spliceosome"	PRP6	"PRP6;g15277.t1;g15277.t1;PRP6"	"PRP6;PRP6"	"Splicing factor, component of the U4/U6-U5 snRNP complex. Contains TPR repeats. Homologue of S. cerevisiae Prp6 protein;Splicing factor, component of the U4/U6-U5 snRNP complex. Contains TPR repeats. Homologue of S. cerevisiae Prp6 protein"
+Cre14.g608275									
+Cre14.g613450			"Secretory pathway"			CGL87	"g14783.t1;Cre14.g613450.t1.1"	CGL87	
+Cre14.g622100									
+Cre14.g614500				GO:0005515	"protein binding"		g14806.t1		
+Cre14.g610900							g14727.t1		
+Cre14.g633750	GMM:29.3.1	protein.targeting.nucleus	"Secretory pathway"			IPB2	"g15279.t1;IPB2;IPB2;g15279.t1"	"IPB2;IPB2"	
+Cre14.g619700			Mitochondrion				g14932.t1		
+Cre14.g615776									
+Cre14.g623650	GMM:16.2.1.10	"secondary metabolism.phenylpropanoids.lignin biosynthesis.CAD"	Chloroplast	"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	ADH7	"g15030.t1;Cre14.g623650.t1.1;ADH7"		"Alcohol dehydrogenase, zinc-containing"
+Cre14.g633550			Mitochondrion				"g15274.t1;SCP2;Cre14.g633550.t1.1"	SCP2	"SCP-2 sterol transfer family"
+Cre14.g625225			"Secretory pathway"				g15061.t1		
+Cre14.g621250	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"				"g14972.t1;Cre14.g621250.t1.1"		
+Cre14.g620800			Mitochondrion				"g14961.t1;Cre14.g620800.t1.1"		
+Cre14.g623125			"Secretory pathway"				g15018.t1		
+Cre14.g612950	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG17	"CYG17;g14769.t1;g14769.t1;CYG17;CYG17;g14769.t1"		"Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre14.g632860	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre14.g632860.t1.1;g15259.t1"		
+Cre14.g620100							"Cre14.g620100.t1.1;g14943.t1"		
+Cre14.g622340			"Secretory pathway"				"g14998.t1;Cre14.g622400.t1.2"		
+Cre14.g628702							"g15143.t1;g15143.t1"		
+Cre14.g624450	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g15044.t1;g15044.t1"		
+Cre14.g613150			Chloroplast				g14776.t1		
+Cre14.g629650	GMM:34.12	transport.metal	Chloroplast			NIK1	"g15164.t1;NIK1"		"Ortholog of AT4G35080/NiCo/CGF1 from Arabidopsis thaliana; May play a role in Fe transport into the chloroplast; Belongs to high affinity Ni transporter family, but no evidence for Ni requirement in Chlamydomonas reinhardtii"
+Cre14.g608250							"Cre14.g608250.t1.1;g14663.t1"		
+Cre14.g617350			Mitochondrion				"g14875.t1;g14875.t1"		
+Cre14.g611750	GMM:33.99	development.unspecified	Mitochondrion	GO:0005515	"protein binding"		g14744.t1		
+Cre14.g617250						FAP282	"Cre14.g617250.t1.1;g14872.t1"	FAP282	"Flagellar Associated coiled-coil Protein, found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre14.g630835									
+Cre14.g618926			Chloroplast				g14914.t1		
+Cre14.g611200			Chloroplast	"GO:0006355;GO:0005739;GO:0003690"	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"		"g14733.t1;Cre14.g611200.t1.1"		
+Cre14.g632815							g15254.t1		
+Cre14.g610950	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0005839;GO:0004298"	"proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity"	PBD1	"Cre14.g610950.t1.1;PBD1;g14728.t1"	PBD1	
+Cre14.g621676									
+Cre14.g630500				"GO:0006388;GO:0000213"	"tRNA splicing, via endonucleolytic cleavage and ligation;tRNA-intron endonuclease activity"	TIE2	"Cre14.g630500.t1.1;TIE2;g15184.t1"	TIE2	
+Cre14.g622800	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"	Mitochondrion	GO:0006629	"lipid metabolic process"		g15010.t1		
+Cre14.g623576							g15028.t1		
+Cre14.g608100			Chloroplast				"g14659.t2;g14659.t2;g14659.t2"		
+Cre14.g609800			"Secretory pathway"				"Cre14.g609800.t1.1;g14699.t1"		
+Cre14.g617002			Mitochondrion						
+Cre14.g634236			Chloroplast						
+Cre14.g618950			"Secretory pathway"				"Cre14.g618950.t1.1;g14915.t1"		
+Cre14.g632176			"Secretory pathway"				"g15234.t1;g15234.t1;g15234.t1"		
+Cre14.g619450			"Secretory pathway"				"g14927.t1;Cre14.g619450.t1.1;Cre14.g619450.t1.1;g14927.t1"		
+Cre14.g610150			Mitochondrion				"g14707.t1;Cre14.g610150.t1.1"		
+Cre14.g623300			"Secretory pathway"	"GO:0051536;GO:0010181;GO:0003824"	"iron-sulfur cluster binding;FMN binding;catalytic activity"	NCP1	"Cre14.g623300.t1.1;NCR1;NCPR1;g15023.t1;NCP1;NCPR1;Cre14.g623300.t1.1;g15023.t1;NCP1;NCR1;Cre14.g623300.t1.1;g15023.t1;NCP1;NCPR1;NCR1"		"ADPH--cytochrome P450 reductase-related protein; (CPR) (P450R); Fe-S oxidoreductases; Radical SAM superfamily;ADPH--cytochrome P450 reductase-related protein; (CPR) (P450R); Fe-S oxidoreductases; Radical SAM superfamily;ADPH--cytochrome P450 reductase-related protein; (CPR) (P450R); Fe-S oxidoreductases; Radical SAM superfamily"
+Cre14.g617900	GMM:29.2.1.2.2.35	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L35"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL35	"g14887.t1;Cre14.g617900.t1.1;g14887.t1;Cre14.g617900.t1.1"	"RPL35;RPL35"	"Cytosolic 60S large ribosomal subunit protein L35;Cytosolic 60S large ribosomal subunit protein L35"
+Cre14.g630700							"g15188.t1;Cre14.g630700.t1.1;Cre14.g630700.t1.1;g15188.t1"		
+Cre14.g625450	GMM:16.1.3.3	"secondary metabolism.isoprenoids.tocopherol biosynthesis.MPBQ/MSBQ methyltransferase"	Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	VTE3	"Cre14.g625450.t1.1;VTE3;g15066.t1;g15066.t1;VTE3;Cre14.g625450.t1.1;VTE3;Cre14.g625450.t1.1;g15066.t1"	"VTE3;VTE3;VTE3"	"MPBQ/MSBQ methyltransferase (plant VTE3 type), chloroplast precursor (tocopherol methyltransferase) (vitamin E methyltransferase);MPBQ/MSBQ methyltransferase (plant VTE3 type), chloroplast precursor (tocopherol methyltransferase) (vitamin E methyltransferase);MPBQ/MSBQ methyltransferase (plant VTE3 type), chloroplast precursor (tocopherol methyltransferase) (vitamin E methyltransferase)"
+Cre14.g632900							"Cre14.g632900.t1.1;g15260.t1"		
+Cre14.g618150				"GO:0008017;GO:0007010"	"microtubule binding;cytoskeleton organization"		"g14892.t1;Cre14.g618150.t1.1;Cre14.g618150.t1.1;g14892.t1"		
+Cre14.g616151							g14844.t1		
+Cre14.g615400				GO:0019825	"oxygen binding"	THB1	"Cre14.g615400.t1.1;g14826.t1"	THB1	"Oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is in tandem with THB2 on Chr_14; THB1 has been shown to carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor; THB1 and THB2 are both induced by nitrate, in a NIT2-dependent manner; THB1, THB2 and THB12 are induc"
+Cre14.g610599									
+Cre14.g617600	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast			DEG9	"Cre14.g617600.t1.1;g14880.t1"	DEG9	"DegP-type protease, stromal surface; most similar to Arabidopsis DegP2 and DegP9"
+Cre14.g612300							"g14756.t1;Cre14.g612300.t1.1;g14756.t1;Cre14.g612300.t1.1"		
+Cre14.g614900	GMM:29.1.18	"protein.aa activation.glutamine-tRNA ligase"		"GO:0043039;GO:0016876;GO:0006425;GO:0006418;GO:0005737;GO:0005524;GO:0004819;GO:0004812;GO:0000166"	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;glutaminyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;glutamine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding"	TSQ1	"Cre14.g614900.t1.1;TSQ1;g14815.t2"	TSQ1	
+Cre14.g621475							"g14977.t1;Cre14.g621500.t1.3;g14977.t1;Cre14.g621500.t1.3;g14977.t1;Cre14.g621500.t1.3"		
+Cre14.g626400	"GMM:26.10;GMM:26.1;GMM:17.2.2"	"misc.cytochrome P450;misc.misc2;hormone metabolism.auxin.signal transduction"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743C1	"CYP33;Cre14.g626400.t1.1;g15085.t1;g15085.t1;Cre14.g626400.t1.1;CYP33"	"CYP743C1;CYP743C1"	"Cytochrome P450; the CYP711 clan includes CYP711A1 of Arabidopsis (MAX1). This gene product makes a carotenoid-derived branch inhibiting hormone. The CYP743 family has best BLAST hits to CYP3 family members (animal sequences);Cytochrome P450; the CYP711 clan includes CYP711A1 of Arabidopsis (MAX1). This gene product makes a carotenoid-derived branch inhibiting hormone. The CYP743 family has best BLAST hits to CYP3 family members (animal sequences)"
+Cre14.g611517	GMM:26.9	"misc.glutathione S transferases"					g14740.t1		
+Cre14.g613850	GMM:31.2	cell.division					g14791.t1		
+Cre14.g626433			Mitochondrion				"g15086.t1;Cre14.g626437.t1.2;g15086.t1;Cre14.g626437.t1.2"		
+Cre14.g633950			"Secretory pathway"				"Cre14.g633950.t1.1;g15286.t1"		
+Cre14.g619850			"Secretory pathway"				"g14936.t1;ELG36"		
+Cre14.g616650			"Secretory pathway"				"g14856.t1;Cre14.g616650.t1.1;Cre14.g616650.t1.1;g14856.t1"		
+Cre14.g627100							"Cre14.g627100.t1.1;g15101.t1;Cre14.g627100.t1.1;g15101.t1"		
+Cre14.g629300	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"	Mitochondrion				"g15157.t1;g15157.t1"		
+Cre14.g608700			Mitochondrion	"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"		"ADT1;g14673.t1;Cre14.g608700.t1.1"		"Putative 2-aminoadipate/L-kynurenine transaminase, pyridoxal phosphate-dependent"
+Cre14.g614450			"Secretory pathway"				g14805.t1		"Has homologs only in Chlorophyceae"
+Cre14.g612100	"GMM:31.6.1.9;GMM:27.3.67"	"cell.motility.eukaryotes.flagellar adhesion and gamete fusion;RNA.regulation of transcription.putative transcription regulator"				RWP3	"g14751.t1;RWP3"		"putative RWP-RK domain transcription factor"
+Cre14.g633789							"g15280.t1;Cre14.g633789.t1.1"		
+Cre14.g609551							"Cre14.g609550.t1.2;g14694.t1"		
+Cre14.g620750			"Secretory pathway"				"g14960.t1;g14960.t1;g14960.t1"		
+Cre14.g631350						VSP7	"VSP7;g15216.t1;g15216.t1;VSP7;g15216.t1;VSP7;g15216.t1;VSP7;g15216.t1;VSP7;g15216.t1;VSP7;g15216.t1;VSP7;VSP7;g15216.t1"	"VSP7;VSP7;VSP7;VSP7;VSP7;VSP7;VSP7;VSP7"	"hydroxyproline-rich glycoprotein containing (SP)n repeats; resembles VSP4/6; presumed cell wall protein but function unknown.;hydroxyproline-rich glycoprotein containing (SP)n repeats; resembles VSP4/6; presumed cell wall protein but function unknown.;hydroxyproline-rich glycoprotein containing (SP)n repeats; resembles VSP4/6; presumed cell wall protein but function unknown.;hydroxyproline-rich glycoprotein containing (SP)n repeats; resembles VSP4/6; presumed cell wall protein but function unknown.;hydroxyproline-rich glycoprotein containing (SP)n repeats; resembles VSP4/6; presumed cell wall protein but function unknown.;hydroxyproline-rich glycoprotein containing (SP)n repeats; resembles VSP4/6; presumed cell wall protein but function unknown.;hydroxyproline-rich glycoprotein containing (SP)n repeats; resembles VSP4/6; presumed cell wall protein but function unknown.;hydroxyproline-rich glycoprotein containing (SP)n repeats; resembles VSP4/6; presumed cell wall protein but function unknown."
+Cre14.g621850			Mitochondrion				"g14985.t1;g14985.t1"		
+Cre14.g610300							"g14710.t1;Cre14.g610300.t1.1"		
+Cre14.g623000			Chloroplast				"PGP7;g15015.t1;PGP7;g15015.t1;PGP7;g15015.t1"		
+Cre14.g620233			"Secretory pathway"						
+Cre14.g628500			Chloroplast			CPLD66	g15138.t1	CPLD66	
+Cre14.g629000			Chloroplast			AXT1	"g15149.t1;CGLD19;AXT1;Cre14.g629000.t1.1;CGLD19;g15149.t1;Cre14.g629000.t1.1;AXT1;g15149.t1;AXT1;CGLD19;Cre14.g629000.t1.1;g15149.t1;CGLD19;AXT1;Cre14.g629000.t1.1;CGLD19;g15149.t1;AXT1;Cre14.g629000.t1.1;g15149.t1;CGLD19;AXT1;Cre14.g629000.t1.1"	"CGLD19;CGLD19;CGLD19;CGLD19;CGLD19;CGLD19"	"GT77 family protein; Identified as Arabinose chain extension enzyme for HRGP 1 (AXT1); Ortholog to xyloglucanase 113 (XEG113) in Arabidopsis thaliana (AT2G35610);GT77 family protein; Identified as Arabinose chain extension enzyme for HRGP 1 (AXT1); Ortholog to xyloglucanase 113 (XEG113) in Arabidopsis thaliana (AT2G35610);GT77 family protein; Identified as Arabinose chain extension enzyme for HRGP 1 (AXT1); Ortholog to xyloglucanase 113 (XEG113) in Arabidopsis thaliana (AT2G35610);GT77 family protein; Identified as Arabinose chain extension enzyme for HRGP 1 (AXT1); Ortholog to xyloglucanase 113 (XEG113) in Arabidopsis thaliana (AT2G35610);GT77 family protein; Identified as Arabinose chain extension enzyme for HRGP 1 (AXT1); Ortholog to xyloglucanase 113 (XEG113) in Arabidopsis thaliana (AT2G35610);GT77 family protein; Identified as Arabinose chain extension enzyme for HRGP 1 (AXT1); Ortholog to xyloglucanase 113 (XEG113) in Arabidopsis thaliana (AT2G35610)"
+Cre14.g612500	GMM:29.4	"protein.postranslational modification"		"GO:0042127;GO:0018343;GO:0005965;GO:0003824"	"regulation of cell proliferation;protein farnesylation;protein farnesyltransferase complex;catalytic activity"		"g14761.t1;Cre14.g612500.t1.1;Cre14.g612500.t1.1;g14761.t1"		
+Cre14.g610850							g14726.t1		
+Cre14.g621300	GMM:27.4	"RNA.RNA binding"		"GO:0006376;GO:0005685;GO:0003729"	"mRNA splice site selection;U1 snRNP;mRNA binding"		"g14973.t2;g14973.t2;g14973.t2;g14973.t2;g14973.t2"		
+Cre14.g629400				GO:0005634	nucleus		g15158.t1		
+Cre14.g610351			Mitochondrion				"g14711.t1;Cre14.g610350.t1.3"		
+Cre14.g631800							"g15226.t1;Cre14.g631800.t1.1;Cre14.g631800.t1.1;g15226.t1;Cre14.g631800.t1.1;g15226.t1;g15226.t1;Cre14.g631800.t1.1"		
+Cre14.g626900	"GMM:3.5;GMM:10.1.21"	"minor CHO metabolism.others;cell wall.precursor synthesis.phosphomannomutase"		"GO:0009298;GO:0005737;GO:0004615"	"GDP-mannose biosynthetic process;cytoplasm;phosphomannomutase activity"	PMM	"PMM;Cre14.g626900.t1.1;g15097.t1;g15097.t1;PMM;Cre14.g626900.t1.1;g15097.t1;Cre14.g626900.t1.1;PMM"	"PMM1;PMM1;PMM1"	"Involved in N-glycosylation and in vitamin C biosynthesis;Involved in N-glycosylation and in vitamin C biosynthesis;Involved in N-glycosylation and in vitamin C biosynthesis"
+Cre14.g628450	GMM:29.6.3.2	"protein.folding.immunophilins (IMM).cyclophilins"	"Secretory pathway"	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN48	"g15137.t1;CYN1;CYN1b"	CYN48	"Peptidyl-prolyl cis-transisomerase, cyclophilin type; most similar to CYN48-CYN53 and bacterial cyclophilins; alternative splicing"
+Cre14.g630250						CYCR1	"CYCR1;g15178.t1"	CYCR1	
+Cre14.g632791			Chloroplast				g15251.t1		
+Cre14.g622150									
+Cre14.g611900							"Cre14.g611900.t1.1;g14747.t2"		
+Cre14.g619050			"Secretory pathway"	"GO:0016021;GO:0006950"	"integral component of membrane;response to stress"		"g14918.t1;Cre14.g619050.t1.1"		
+Cre14.g617850							"g14886.t1;g14886.t1"		
+Cre14.g615750			Chloroplast			CAM2	"g14835.t1;CAM2b;CAM2"		"Possible regulator of calmodulin expression; this an alternatively spliced form of CAM2 (Chlre2_kg.scaffold_4300008); if upstream AUG is used, generates a different protein in another reading frame, with no database homology; could be involved in CAM2 regulation ?"
+Cre14.g609300			Chloroplast				"g14689.t1;Cre14.g609300.t1.1"		
+Cre14.g621351	GMM:20.1.5	"stress.biotic.regulation of transcription"	"Secretory pathway"	GO:0015969	"guanosine tetraphosphate metabolic process"		"Cre14.g621350.t1.3;g14974.t1"		
+Cre14.g621650	GMM:11.1.2	"lipid metabolism.FA synthesis and FA elongation.acetyl CoA transacylase"	Chloroplast			MCT1	"MCT1;g14980.t1"	MCT1	
+Cre14.g624900	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP171	"g15054.t1;Cre14.g624900.t1.1"	FAP171	"Found in the flagellar proteome"
+Cre14.g631300	GMM:29.5.3	"protein.degradation.cysteine protease"	Mitochondrion				"Cre14.g631300.t1.1;g15215.t1;Cre14.g631300.t1.1;g15215.t1;Cre14.g631300.t1.1;g15215.t1"		
+Cre14.g623900							"g15035.t1;g15035.t1"		
+Cre14.g618100							"g14891.t1;g14891.t1;g14891.t1"		
+Cre14.g629429			Chloroplast				"Cre14.g629429.t1.1;g15159.t1;g15159.t1;Cre14.g629429.t1.1;g15159.t1;Cre14.g629429.t1.1"		
+Cre14.g609100	GMM:30.11.1	"signalling.light.COP9 signalosome"					"Cre14.g609100.t1.1;g14685.t1"		
+Cre14.g634365									
+Cre14.g627900	GMM:27.1.1	RNA.processing.splicing					"g15126.t1;Cre14.g627900.t1.1;SPL29"		"Putative splicing factor, related to splicing factor 3B subunit 1. SF3b1 is a 1 kDa subunit of the splicing factor SF3b. SF3b associates with the splicing factor SF3a and a 12S RNA unit to form the U2 small nuclear ribonucleoproteins complex. SF3b1 a"
+Cre14.g617276			Mitochondrion						
+Cre14.g618860	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		GO:0005524	"ATP binding"		"SRH24;g14912.t1;g14912.t1;SRH24"		"SNF2-related helicase. ChromoDB CHR342;;SNF2-related helicase. ChromoDB CHR342;"
+Cre14.g622410									
+Cre14.g628752							g15144.t1		
+Cre14.g615600							"Cre14.g615600.t1.1;g14830.t1;SDR35"		
+Cre14.g615500	"GMM:29.5.4;GMM:29.5"	"protein.degradation.aspartate protease;protein.degradation"	Mitochondrion				g14828.t1		
+Cre14.g631141			Chloroplast						
+Cre14.g618350			"Secretory pathway"				"g14896.t1;g14896.t1"		
+Cre14.g622075	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"				ELG28	"g14988.t1;Cre14.g622063.t1.2;g14988.t1;Cre14.g622063.t1.2"		
+Cre14.g630895	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0071949	"FAD binding"		"g15202.t2;g15202.t2"		
+Cre14.g620400	"GMM:29.5;GMM:29.3.4.99"	"protein.degradation;protein.targeting.secretory pathway.unspecified"	"Secretory pathway"	"GO:0016021;GO:0008233;GO:0006465;GO:0005787"	"integral component of membrane;peptidase activity;signal peptide processing;signal peptidase complex"	SPC22	"g14952.t1;SPC22;Cre14.g620400.t1.1"	SPC22	"22 kDa subunit of the ER signal peptidase; involved in processing signal peptides from ER-targeted proteins"
+Cre14.g626150			Mitochondrion				"g15080.t1;Cre14.g626150.t1.1"		
+Cre14.g608850	GMM:33.99	development.unspecified	Mitochondrion				"g14677.t1;Cre14.g608850.t1.1;Cre14.g608850.t1.1;g14677.t1"		
+Cre14.g626466	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre14.g626450.t1.2;g15087.t1;g15087.t1;Cre14.g626450.t1.2"		
+Cre14.g617400	"GMM:29.6.2.1;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.small HSPs;stress.abiotic.heat"	Chloroplast.Stroma			HSP22F	"Cre14.g617400.t1.1;g14876.t1"	HSP22F	"small heat shock protein containing an alpha-crystallin domain; Shown to be chloroplast-targeted; interacts with heat-aggregated proteins but also with membranes after H2O2 treatment; induced by heat, high light and H2O2; HSP22F and HSP22E are arranged head-to-head and share 98% identical nucleotide sequence in coding region (96% identical amino acid residues). 5' UTR sequence is 85% identical; 3' UTR have no significant homology; PMID: 16143837"
+Cre14.g627917				GO:0009058	"biosynthetic process"		g15127.t2		
+Cre14.g616850				GO:0006950	"response to stress"		"g14861.t1;g14861.t1;g14861.t1;g14861.t1"		
+Cre14.g627251				GO:0016021	"integral component of membrane"		g15104.t1		
+Cre14.g625400	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"	RPT1	"RPT1;g15065.t1;g15065.t1;RPT1;g15065.t1;RPT1"	"RPT1;RPT1;RPT1"	"26S proteasome regulatory complex, base subcomplex, ATPase RPT1 (subunit 7);26S proteasome regulatory complex, base subcomplex, ATPase RPT1 (subunit 7);26S proteasome regulatory complex, base subcomplex, ATPase RPT1 (subunit 7)"
+Cre14.g617150	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"	"Secretory pathway"			RLS4	"RLS4;g14869.t1"		"Member of a family of proteins [PMID: 1672695, 1662271] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF1342); genetically linked to RLS7"
+Cre14.g613652			Mitochondrion				"g14787.t1;g14787.t1"		
+Cre14.g615050	GMM:11.8.7	"lipid metabolism.exotics (steroids, squalene etc).trans-2-enoyl-CoA reductase (NADPH)"		"GO:0016627;GO:0016021;GO:0006629;GO:0005737;GO:0005515"	"oxidoreductase activity, acting on the CH-CH group of donors;integral component of membrane;lipid metabolic process;cytoplasm;protein binding"		"Cre14.g615050.t1.1;g14818.t1;Cre14.g615050.t1.1;g14818.t1"		
+Cre14.g616350			"Secretory pathway"			FAS4	"g14848.t1;Cre14.g616350.t1.1;FAS4"	FAS4	"protein contains the fasciclin FAS1 domain (= BIgH3 domain), which is an extracellular module of about 140 amino acid residues; it has been suggested that the FAS1 domain represents an ancient cell adhesion domain common to plants and animals"
+Cre14.g613200	"GMM:31.1;GMM:27.2"	"cell.organisation;RNA.transcription"	Chloroplast				"g14777.t1;g14777.t1"		"Contains PF02492, CobW nucleotide-binding domain;;Contains PF02492, CobW nucleotide-binding domain;"
+Cre14.g612226									
+Cre14.g627726									
+Cre14.g633350			"Secretory pathway"				"g15269.t1;g15269.t1"		
+Cre14.g621450	GMM:29.2.1.2.2.5	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L5"		"GO:0008097;GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"5S rRNA binding;translation;ribosome;intracellular;structural constituent of ribosome"	RPL5	"g14976.t1;Cre14.g621450.t1.1"	RPL5	"Cytosolic 60S large ribosomal subunit protein L5"
+Cre14.g619854	"GMM:28.1;GMM:26.2"	"DNA.synthesis/chromatin structure;misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG35	"ELG35;Cre14.g619854.t1.1;g14937.t1;ELG35;g14937.t1;Cre14.g619854.t1.1"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre14.g609926			Mitochondrion				g14702.t1		
+Cre14.g629050			"Secretory pathway"	GO:0009055	"electron carrier activity"		"g15150.t1;Cre14.g629050.t1.1"		
+Cre14.g630859	GMM:13.2.4.3	"amino acid metabolism.degradation.branched chain group.valine"	Chloroplast	"GO:0055114;GO:0051287;GO:0004616"	"oxidation-reduction process;NAD binding;phosphogluconate dehydrogenase (decarboxylating) activity"	HID1	"HID1;g15198.t1;g15198.t1;HID1"	"HID1;HID1"	"This enzyme participates in valine, leucine and isoleucine degradation.;This enzyme participates in valine, leucine and isoleucine degradation."
+Cre14.g618631									
+Cre14.g616600	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Mitochondrion	"GO:0009228;GO:0004789"	"thiamine biosynthetic process;thiamine-phosphate diphosphorylase activity"	FZL	"FZL;g14855.t1;Cre14.g616600.t1.1;FZL;g14855.t1;Cre14.g616600.t1.1;FZL;g14855.t1;Cre14.g616600.t1.1;FZL;Cre14.g616600.t1.1;g14855.t1;g14855.t1;Cre14.g616600.t1.1;FZL"	"FZL1;FZL1;FZL1;FZL1;FZL1"	
+Cre14.g615618							g14831.t1		
+Cre14.g614667			"Secretory pathway"						
+Cre14.g613300			"Secretory pathway"				"Cre14.g613300.t1.1;g14779.t1"		
+Cre14.g610400			Mitochondrion				"Cre14.g610400.t1.1;g14712.t1"		
+Cre14.g632767	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006470;GO:0004725"	"protein dephosphorylation;protein tyrosine phosphatase activity"		"Cre75.g795400.t1.1;g15248.t1;Cre75.g795400.t1.1;g15248.t1"		
+Cre14.g625802	GMM:29.5.11.4.99	protein.degradation.ubiquitin.E3.unspecified					g15074.t1		
+Cre14.g624550			Chloroplast				g15047.t1		
+Cre14.g609500			Mitochondrion			PWR5	"PWR5;g14693.t1"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre14.g632626									
+Cre14.g622200									
+Cre14.g621400							g14975.t1		
+Cre14.g616589	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Mitochondrion			CYG50	"Cre14.g616589.t1.1;g14854.t1"		
+Cre14.g632799			"Secretory pathway"			ZSP2A	"g15252.t1;g15252.t1;g15252.t1"	"ZSP2A;ZSP2A;ZSP2A"	
+Cre14.g620900			Mitochondrion						
+Cre14.g610801							"Cre14.g610800.t1.3;g14725.t1"		
+Cre14.g628400				"GO:0043039;GO:0016876;GO:0005524"	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;ATP binding"	TSA3	"TSA3;g15136.t1;Cre14.g628400.t1.1"	TSA3	
+Cre14.g619800						SPO11B	"Cre14.g619800.t1.1;SPO11B;g14934.t1;TOP4;SPO11B;Cre14.g619800.t1.1;g14934.t1;TOP4;g14934.t1;SPO11B;Cre14.g619800.t1.1;TOP4"	"SPO11B;SPO11B;SPO11B"	"Topoisomerase VI subunit A (type IIB), involved in meiosis, homolog of eukaryotic SPO11; ; Chlamydomonas has at two homologues.;Topoisomerase VI subunit A (type IIB), involved in meiosis, homolog of eukaryotic SPO11; ; Chlamydomonas has at two homologues.;Topoisomerase VI subunit A (type IIB), involved in meiosis, homolog of eukaryotic SPO11; ; Chlamydomonas has at two homologues."
+Cre14.g622050			"Secretory pathway"			ELG28	"g14987.t1;ELG28"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre14.g625050	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g15057.t1;g15057.t1;g15057.t1;g15057.t1;g15057.t1;g15057.t1;g15057.t1"		
+Cre14.g617826							g14885.t1	NUOA11	"NADH:ubiquinone oxidoreductase (Complex I) subunit, mitochondrial; Ortholog to NDUFA11 in Homo sapiens;"
+Cre14.g621600			Mitochondrion	"GO:0051225;GO:0031023"	"spindle assembly;microtubule organizing center organization"		"g14979.t1;Cre14.g621600.t1.1"		
+Cre14.g618250							"g14894.t1;g14894.t1"		
+Cre14.g615000	"GMM:29.4;GMM:27.3.67"	"protein.postranslational modification;RNA.regulation of transcription.putative transcription regulator"	Chloroplast	"GO:0055114;GO:0033743;GO:0030091;GO:0016671;GO:0006979"	"oxidation-reduction process;peptide-methionine (R)-S-oxide reductase activity;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;response to oxidative stress"		g14817.t1	MSRB1A	"Similar to Selenoprotein R, but not a selenoprotein; msrB-type; One of two nearby paralogs of MSRB1 (Cre14.g615000 and Cre14.g615100);"
+Cre14.g619166	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CSK6	"CSK6;g14921.t1;g14921.t1;CSK6"		"May have cyclin-dependent protein kinase activity;May have cyclin-dependent protein kinase activity"
+Cre14.g617151	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"					"g14870.t1;Cre14.g617151.t1.1;Cre14.g617151.t1.1;g14870.t1;g14870.t1;Cre14.g617151.t1.1"		
+Cre14.g625901			Mitochondrion	GO:0003723	"RNA binding"		"g15076.t1;Cre14.g625900.t1.3"		
+Cre14.g622550			Mitochondrion	GO:0008641	"small protein activating enzyme activity"		g15005.t1		
+Cre14.g629800			Mitochondrion						
+Cre14.g610615									
+Cre14.g623750			"Secretory pathway"				"g15032.t1;Cre14.g623750.t1.1"		
+Cre14.g626800			Mitochondrion			OPR64	"g15096.t1;g15096.t1"	"OPR64;OPR64"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre14.g631250			Mitochondrion				g15214.t1		
+Cre14.g631200	GMM:31.6.1.4.2	"cell.motility.eukaryotes.axonemal dyneins.inner arm"	Mitochondrion			DII6	"Cre14.g631200.t1.1;IC97;FAP94;DII6;g15213.t1;Cre14.g631200.t1.1;FAP94;DII6;IC97;g15213.t1;FAP94;Cre14.g631200.t1.1;g15213.t1;IC97;DII6;g15213.t1;DII6;IC97;Cre14.g631200.t1.1;FAP94"	"IC97;IC97;IC97;IC97"	"inner arm dynein I1/f intermediate chain IC97;inner arm dynein I1/f intermediate chain IC97;inner arm dynein I1/f intermediate chain IC97;inner arm dynein I1/f intermediate chain IC97"
+Cre14.g634322									
+Cre14.g627650						FAP392	"g15118.t1;g15118.t1"	"FAP392;FAP392"	
+Cre14.g628600			Chloroplast	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"CYA13;g15141.t1"		
+Cre14.g612200	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG16	"CYG16;g14753.t1;g14753.t1;CYG16"		"similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre14.g609250			Chloroplast				g14688.t1		
+Cre14.g608200							g14661.t1		
+Cre14.g611850	GMM:28.99	DNA.unspecified	"Secretory pathway"	GO:0016021	"integral component of membrane"		"Cre14.g611850.t1.1;g14746.t1;g14746.t1;Cre14.g611850.t1.1;g14746.t1;Cre14.g611850.t1.1"		
+Cre14.g613050			"Secretory pathway"				g14772.t2		
+Cre14.g626950				"GO:0016779;GO:0009435;GO:0009058;GO:0003824"	"nucleotidyltransferase activity;NAD biosynthetic process;biosynthetic process;catalytic activity"	NIC1	"NIC1;g15098.t1"	NIC1	"Putative locus for NIC1 genetic marker"
+Cre14.g610050				"GO:0045892;GO:0005634"	"negative regulation of transcription, DNA-templated;nucleus"		"g14705.t1;Cre14.g610050.t1.1"		
+Cre14.g619650			Chloroplast				"g14931.t1;Cre14.g619650.t1.1"		
+Cre14.g612426			Mitochondrion						
+Cre14.g618900				GO:0005515	"protein binding"		"g14913.t1;Cre14.g618900.t1.1;Cre14.g618900.t1.1;g14913.t1;g14913.t1;Cre14.g618900.t1.1"		
+Cre14.g614076			"Secretory pathway"				g14796.t1		
+Cre14.g611000	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"					g14729.t1		
+Cre14.g619900	GMM:21.99	redox.misc		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PHX22	"g14938.t1;PFH22;PHX22;PHX22;g14938.t1;PFH22;PHX22;g14938.t1;PFH22"		
+Cre14.g623950	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre14.g616250			Chloroplast				"PCD4;g14846.t1;CPL9;Cre14.g616250.t1.1;PCD4;CPL9;g14846.t1;Cre14.g616250.t1.1"		"Putative polyketide cyclase/dehydrase; some similarity to predicted proteins of in plants and cyanobacteria. COG5637; previously annotated as CPL9 (which was a predicted membrane protein);Putative polyketide cyclase/dehydrase; some similarity to predicted proteins of in plants and cyanobacteria. COG5637; previously annotated as CPL9 (which was a predicted membrane protein)"
+Cre14.g619133	GMM:8.1.7	"TCA / organic transformation.TCA.succinate dehydrogenase"	Mitochondrion	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	SDH1	g14920.t1	SDH1	"Orthologous to SDH1-1 (AT5G66760) and SDH1-2 (AT2G18450) in Arabidopsis thaliana and SDHA in Homo sapiens"
+Cre14.g616301			"Secretory pathway"				g14847.t1		
+Cre14.g609010			"Secretory pathway"				g14682.t1		
+Cre14.g614550						MDB1	"CLR7;g14807.t1;OPR62"	MDB1	"OctotricoPeptide Repeat (OPR) Protein; stabilizes atpB mRNA"
+Cre14.g633300			"Secretory pathway"				g15268.t1		
+Cre14.g630350			"Secretory pathway"				g15180.t1		
+Cre14.g625850	GMM:29.5.7	protein.degradation.metalloprotease				MMP32	"g15075.t1;MMP32;g15075.t1;MMP32"	"MMP32;MMP32"	"Matrix metalloproteinase belonging to the M11 peptidase family;Matrix metalloproteinase belonging to the M11 peptidase family"
+Cre14.g616826			Mitochondrion				g14860.t1		
+Cre14.g621172			Chloroplast				"g14970.t1;Cre14.g621172.t1.1;g14970.t1;Cre14.g621172.t1.1"		
+Cre14.g617450	"GMM:29.6.2.1;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.small HSPs;stress.abiotic.heat"	Chloroplast.Stroma			HSP22E	"Cre14.g617450.t1.1;g14877.t1"	HSP22E	"small heat shock protein containing an alpha-crystallin domain; Shown to be chloroplast-targeted; interacts with heat-aggregated proteins but also with membranes after H2O2 treatment; induced by heat, high light and H2O2; HSP22E and HSP22F are arranged head-to-head and share 98% identical nucleotide sequence in coding region (96% identical amino acid residues). 5' UTR sequences are 85% identical; 3' UTRs have no significant homology"
+Cre14.g627950	GMM:17.3.1.1.1	"hormone metabolism.brassinosteroid.synthesis-degradation.BRs.DET2"		"GO:0016627;GO:0016021;GO:0006629;GO:0005737"	"oxidoreductase activity, acting on the CH-CH group of donors;integral component of membrane;lipid metabolic process;cytoplasm"		"SRD2;Cre14.g627950.t1.1;g15128.t1;SRD2;g15128.t1;Cre14.g627950.t1.1"		"Similar to steroid 5-alpha-reductase;Similar to steroid 5-alpha-reductase"
+Cre14.g632300	GMM:27.3.55	"RNA.regulation of transcription.HDA"				HDA6	"g15236.t1;HDA6"	HDA6	"ChromDB HDA3409"
+Cre14.g620150	GMM:29.5	protein.degradation	Chloroplast	"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"		g14944.t1		
+Cre14.g626634									
+Cre14.g609450						PWR4	"g14692.t1;Cre14.g609450.t1.1;PWR4"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre14.g620450			"Secretory pathway"				"g14953.t1;g14953.t1"		
+Cre14.g630883	GMM:11.1.15	"lipid metabolism.FA synthesis and FA elongation.ACP desaturase"	Chloroplast	"GO:0055114;GO:0045300;GO:0006631"	"oxidation-reduction process;acyl-[acyl-carrier-protein] desaturase activity;fatty acid metabolic process"		"g15201.t1;g15201.t1"		
+Cre14.g626200	GMM:26.7	"misc.oxidases - copper, flavone etc"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH7	"P4H7;PHX18;g15081.t1;PFH7;g15081.t1;PHX18;P4H7;PFH7"		"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate"
+Cre14.g610450	GMM:34.12	transport.metal	Chloroplast	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"		"g14713.t1;Cre14.g610450.t1.1;g14713.t1;Cre14.g610450.t1.1;g14713.t1;Cre14.g610450.t1.1"	"ZIP5;ZIP5;ZIP5"	"Similarity to ZIP ATX2-like subfamily;Similarity to ZIP ATX2-like subfamily;Similarity to ZIP ATX2-like subfamily"
+Cre14.g611150	GMM:27.1	RNA.processing					"g14732.t1;Cre14.g611150.t1.1"		
+Cre14.g629750	GMM:8.2.10	"TCA / organic transformation.other organic acid transformations.malic"		"GO:0055114;GO:0051287;GO:0004471"	"oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity"	MME2	"g15166.t2;g15166.t2"	"MME2;MME2"	"Malic Enzyme, NADP-dependent; malate dehydrogenase, decarboxylating (EC 1.1.1.40); direct repeat with MME3; likely cytosolic based on lack of predicted N-terminal targeting sequence;Malic Enzyme, NADP-dependent; malate dehydrogenase, decarboxylating (EC 1.1.1.40); direct repeat with MME3; likely cytosolic based on lack of predicted N-terminal targeting sequence"
+Cre14.g612567									
+Cre14.g619000			Mitochondrion				"g14917.t1;Cre14.g619000.t1.1;Cre14.g619000.t1.1;g14917.t1;Cre14.g619000.t1.1;g14917.t1;Cre14.g619000.t1.1;g14917.t1"		
+Cre14.g617027									
+Cre14.g608750			Mitochondrion				"Cre14.g608750.t1.1;g14674.t1"		
+Cre14.g630125			"Secretory pathway"						
+Cre14.g624500	GMM:27.1.19	RNA.processing.ribonucleases	Chloroplast			RRP46	"RRP46;g15046.t1;Cre14.g624500.t1.1;g15046.t1;Cre14.g624500.t1.1;RRP46;RRP46;Cre14.g624500.t1.1;g15046.t1"	"RRP46;RRP46;RRP46"	"putative Exosome complex exonuclease RRP46 (Ribosomal RNA processing protein 46);putative Exosome complex exonuclease RRP46 (Ribosomal RNA processing protein 46);putative Exosome complex exonuclease RRP46 (Ribosomal RNA processing protein 46)"
+Cre14.g625350	"GMM:34.99;GMM:34.16"	"transport.misc;transport.ABC transporters and multidrug resistance systems"	Mitochondrion	"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"		"g15064.t1;MAE17;MAE17;g15064.t1"		"Putative integral membrane protein; Predicted to be an efflux pump. No Synonyms. Swissprot Gene name F25P22.12. Present in several organisms including Arabidopsis thaliana;Putative integral membrane protein; Predicted to be an efflux pump. No Synonyms. Swissprot Gene name F25P22.12. Present in several organisms including Arabidopsis thaliana"
+Cre14.g632650	"GMM:29.4.1.57;GMM:29.4"	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g15244.t1		
+Cre14.g633500							g15273.t1		
+Cre14.g622901			Chloroplast	GO:0005515	"protein binding"		"g15013.t1;g15013.t1;g15013.t1"		
+Cre14.g620850	GMM:27.3.6	"RNA.regulation of transcription.basic helix-loop-helix family (bHLH)"	Mitochondrion	GO:0046983	"protein dimerization activity"	NSG17	"NSG17;g14962.t1;Cre14.g620850.t1.1;g14962.t1;NSG17;Cre14.g620850.t1.1;Cre14.g620850.t1.1;NSG17;g14962.t1;Cre14.g620850.t1.1;g14962.t1;NSG17"	"NSG17;NSG17;NSG17;NSG17"	"Expressed during nitrogen-starved gametogenesis [PMID: 15459796];Expressed during nitrogen-starved gametogenesis [PMID: 15459796];Expressed during nitrogen-starved gametogenesis [PMID: 15459796];Expressed during nitrogen-starved gametogenesis [PMID: 15459796]"
+Cre14.g618621			"Secretory pathway"	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"		g14903.t1		
+Cre14.g613501	GMM:17.1.1.1.1	"hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase"				ZXE5	"ZXE5;g14784.t1"		"Possibly FAD-dependent monooxygenase"
+Cre16.g684700							g16404.t1		
+Cre16.g691500	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Chloroplast				"Cre16.g691500.t1.1;g15651.t1"		
+Cre16.g666302			"Secretory pathway"				"Cre16.g666302.t1.1;g16081.t1"		
+Cre16.g655950	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	TRP2	"TRP2;g15856.t1;TRP2;g15856.t1;TRP2;g15856.t1;TRP2;g15856.t1;g15856.t1;TRP2;TRP2;g15856.t1;TRP2;g15856.t1;TRP2;g15856.t1;g15856.t1;TRP2;TRP2;g15856.t1"	"TRP2;TRP2;TRP2;TRP2;TRP2;TRP2;TRP2;TRP2;TRP2;TRP2"	"TRP-like ion channel protein, homology to TRPL Channel.;TRP-like ion channel protein, homology to TRPL Channel.;TRP-like ion channel protein, homology to TRPL Channel.;TRP-like ion channel protein, homology to TRPL Channel.;TRP-like ion channel protein, homology to TRPL Channel.;TRP-like ion channel protein, homology to TRPL Channel.;TRP-like ion channel protein, homology to TRPL Channel.;TRP-like ion channel protein, homology to TRPL Channel.;TRP-like ion channel protein, homology to TRPL Channel.;TRP-like ion channel protein, homology to TRPL Channel."
+Cre16.g661850			"Secretory pathway"	"GO:0006468;GO:0005516;GO:0004683"	"protein phosphorylation;calmodulin binding;calmodulin-dependent protein kinase activity"		g15982.t1		
+Cre16.g662450							"Cre16.g662450.t1.1;g15995.t1;DeSI-4"	DESI4	"deSUMOlyating isopeptidase"
+Cre16.g659350	"GMM:21.99;GMM:21.2;GMM:12.1.1"	"redox.misc;redox.ascorbate and glutathione;N-metabolism.nitrate metabolism.NR"				CYB1	"CYB1;CYB5-1;Cre16.g659350.t1.1;g15928.t1"	CYB1	"linked to CYB2 and CYB5"
+Cre16.g655700			Mitochondrion				g15851.t1		
+Cre16.g678885									
+Cre16.g683550	"GMM:26.10;GMM:26.1;GMM:16.2"	"misc.cytochrome P450;misc.misc2;secondary metabolism.phenylpropanoids"	"Secretory pathway"	"GO:0055114;GO:0016491;GO:0010181"	"oxidation-reduction process;oxidoreductase activity;FMN binding"		"g16431.t1;Cre16.g683550.t1.1;Cre16.g683550.t1.1;g16431.t1;g16431.t1;Cre16.g683550.t1.1;g16431.t1;Cre16.g683550.t1.1;g16431.t1;Cre16.g683550.t1.1;Cre16.g683550.t1.1;g16431.t1;g16431.t1;Cre16.g683550.t1.1"		
+Cre16.g663050	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	"Secretory pathway"	"GO:0005525;GO:0003924"	"GTP binding;GTPase activity"		g16008.t1		
+Cre16.g665950	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006260;GO:0005524;GO:0003677"	"DNA replication;ATP binding;DNA binding"	MCM8	"g16072.t1;MCM8;g16072.t1;MCM8"	"MCM8;MCM8"	"homologous to MCM8 DNA replication protein;homologous to MCM8 DNA replication protein"
+Cre16.g661588			Chloroplast			OPR102	g15975.t1	OPR102	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre16.g651923	GMM:16.1.4.8	"secondary metabolism.isoprenoids.carotenoids.carotenoid isomerase"	Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"g15768.t1;CRI1;Cre16.g651923.t1.1;CRI1;Cre16.g651923.t1.1;g15768.t1;g15768.t1;CRI1;Cre16.g651923.t1.1"	"CRTISO1;CRTISO1;CRTISO1"	"carotenoid isomerase (carotene isomerase), putative chloroplast precursor; (crtH) (CIS);carotenoid isomerase (carotene isomerase), putative chloroplast precursor; (crtH) (CIS);carotenoid isomerase (carotene isomerase), putative chloroplast precursor; (crtH) (CIS)"
+Cre16.g674178									
+Cre16.g656050			"Secretory pathway"				"g15858.t1;Cre16.g656050.t1.1;Cre16.g656050.t1.1;g15858.t1;g15858.t1;Cre16.g656050.t1.1"		
+Cre16.g663776			Chloroplast				g16026.t1		
+Cre16.g662800	"GMM:33.99;GMM:27.1.1;GMM:27.1"	"development.unspecified;RNA.processing.splicing;RNA.processing"		GO:0005515	"protein binding"	PRP4	"PRP4;Cre16.g662800.t1.1;g16002.t1"	PRP4	"Splicing factor, component of the U4/U6-U5 snRNP complex. Homologue of S. cerevisiae Prp4 protein; ts-lethal mutant was isolated (PMID 29743196)"
+Cre16.g675400			Mitochondrion				g16610.t1		
+Cre16.g676850	GMM:29.5	protein.degradation	Chloroplast	GO:0005524	"ATP binding"		"g16578.t1;Cre16.g676850.t1.1;g16578.t1;Cre16.g676850.t1.1"		
+Cre16.g684250			Chloroplast				"g16413.t1;g16413.t1"		
+Cre16.g686050			"Secretory pathway"				g16374.t1		
+Cre16.g676050	GMM:31.1	cell.organisation		"GO:0034314;GO:0007015;GO:0005885;GO:0005524"	"Arp2/3 complex-mediated actin nucleation;actin filament organization;Arp2/3 protein complex;ATP binding"	ARP3	"g16596.t1;ARP3"	ARP3	"Putative Actin related protein 3. Part of the Arp2/3 complex"
+Cre16.g693950	GMM:24	"biodegradation of xenobiotics"	Chloroplast			GOX20	"g15598.t1;GOX19;GOX19;g15598.t1"	"GOX20;GOX20"	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes);The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes)"
+Cre16.g675851			Mitochondrion				"g16601.t1;g16601.t1"		
+Cre16.g652450							g15780.t1	POB27	"Found in basal body proteome"
+Cre16.g650250	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO25	"HFO39;Cre16.g650250.t1.1;g15732.t1"	HFO25	"Replication linked H4; histone gene cluster XXV (type 43)"
+Cre16.g685501			Mitochondrion				"Cre01.g070350.t2.1;g16822.t2"		
+Cre16.g669452			Chloroplast						
+Cre16.g674151									
+Cre16.g666400	GMM:31.2	cell.division					"g16083.t1;g16083.t1;g16083.t1;g16083.t1;g16083.t1"	"MAD1;MAD1;MAD1;MAD1;MAD1"	"lies in the Fifth intron of RFS1, on the other strand; this organization is conserved in Chlorophyceae and Trebouxiophyceae;lies in the Fifth intron of RFS1, on the other strand; this organization is conserved in Chlorophyceae and Trebouxiophyceae;lies in the Fifth intron of RFS1, on the other strand; this organization is conserved in Chlorophyceae and Trebouxiophyceae;lies in the Fifth intron of RFS1, on the other strand; this organization is conserved in Chlorophyceae and Trebouxiophyceae;lies in the Fifth intron of RFS1, on the other strand; this organization is conserved in Chlorophyceae and Trebouxiophyceae"
+Cre16.g695700							"Cre16.g695700.t1.1;g15554.t1"		
+Cre16.g681050							g16486.t1		
+Cre16.g653450				"GO:0005737;GO:0005515"	"cytoplasm;protein binding"		"g15802.t1;Cre16.g653450.t1.1"	BAR1	"Has Bin/Amphiphysin/Rvs (BAR) domain; Mutants have multiciliary phenotype"
+Cre16.g651600							"g15761.t1;g15761.t1"		
+Cre16.g674964	GMM:30.5	signalling.G-proteins					"g16726.t1;Cre01.g066150.t1.2;Cre01.g066150.t1.1;g16726.t1;Cre01.g066150.t1.2;Cre01.g066150.t1.1;g16726.t1;Cre01.g066150.t1.2;Cre01.g066150.t1.1"		
+Cre16.g673700	GMM:29.2.2	"protein.synthesis.ribosome biogenesis"	Chloroplast	"GO:0042254;GO:0005634"	"ribosome biogenesis;nucleus"		"Cre16.g673700.t1.1;g16647.t1;g16647.t1;Cre16.g673700.t1.1;g16647.t1;Cre16.g673700.t1.1;g16647.t1;Cre16.g673700.t1.1;Cre16.g673700.t1.1;g16647.t1"		
+Cre16.g677920			Chloroplast				"Cre16.g677920.t1.1;g16557.t2"		
+Cre16.g663350	"GMM:29.6.2.5;GMM:29.5.5"	"protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease"	Mitochondrion	"GO:0051082;GO:0006457;GO:0005524"	"unfolded protein binding;protein folding;ATP binding"	CLPX	"Cre16.g663350.t1.1;g16015.t1;CLPX"	CLPX1	"ClpX chaperone, Hsp100 family; probable subunit of ClpXP protease; probably mitochondrial (by homology)"
+Cre16.g669127							g16253.t1		
+Cre16.g649300			"Secretory pathway"				"g15711.t1;Cre16.g649300.t1.1"		"Target of CRR1"
+Cre16.g678700			Chloroplast				"g16539.t1;Cre16.g678700.t1.1"		
+Cre16.g664950							g16051.t1		
+Cre16.g684491			"Secretory pathway"				"Cre01.g069900.t1.1;g16813.t1"		
+Cre16.g673169			"Secretory pathway"				"Cre01.g065378.t1.1;g16709.t1;Cre01.g065378.t1.2"		
+Cre16.g692452									
+Cre16.g652100	"GMM:34.12;GMM:29.5.7"	"transport.metal;protein.degradation.metalloprotease"		"GO:0008235;GO:0006508;GO:0004177"	"metalloexopeptidase activity;proteolysis;aminopeptidase activity"	MAP2	"g15772.t1;Cre16.g652100.t1.1"	MAP2	"Involved in N-terminal maturation of proteins; Cleaves N-terminal methionine; belongs to the MAP2-type of methionine aminopeptidase, found in archae and eukaryotes, characterized by a poly-lysine stretch in N-terminal domain; probably cytosolic (PMID: 11060042)"
+Cre16.g676533	GMM:27.3.66	"RNA.regulation of transcription.pseudo ARR transcription factor family"	Mitochondrion	GO:0004866	"endopeptidase inhibitor activity"		"g16740.t1;Cre01.g066800.t1.1"		
+Cre16.g649050	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383"	"intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity"	CYG38	"g15706.t2;CYG38;g15706.t2;CYG38;g15706.t2;CYG38;CYG38;g15706.t2"		"contains N-terminal NO-sensing and dimerization domains; similar to guanylate cyclase soluble, beta-2 chain(GCS-beta-2) [Bos taurus];contains N-terminal NO-sensing and dimerization domains; similar to guanylate cyclase soluble, beta-2 chain(GCS-beta-2) [Bos taurus];contains N-terminal NO-sensing and dimerization domains; similar to guanylate cyclase soluble, beta-2 chain(GCS-beta-2) [Bos taurus];contains N-terminal NO-sensing and dimerization domains; similar to guanylate cyclase soluble, beta-2 chain(GCS-beta-2) [Bos taurus]"
+Cre16.g692340			Chloroplast						
+Cre16.g651400	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"Cre16.g651400.t1.1;g15757.t2;Cre16.g651400.t1.1;g15757.t2;g15757.t2;Cre16.g651400.t1.1;g15757.t2;Cre16.g651400.t1.1;Cre16.g651400.t1.1;g15757.t2;g15757.t2;Cre16.g651400.t1.1"		
+Cre16.g694250	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX	"Secretory pathway"	GO:0005515	"protein binding"		"g15587.t1;Cre16.g694250.t1.1"		
+Cre16.g648300	GMM:34.7	transport.phosphate	Mitochondrion	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	PHT6	"g15691.t1;PHT6;PHT4-6;Cre16.g648300.t1.1;PHT4-6;Cre16.g648300.t1.1;PHT6;g15691.t1"	"PHT4F;PHT4F"	"Na+-dependent inorganic phosphate cotransporter;Na+-dependent inorganic phosphate cotransporter"
+Cre16.g691150			Mitochondrion				"Cre16.g691150.t1.1;g15662.t1;g15662.t1;Cre16.g691150.t1.1;g15662.t1;Cre16.g691150.t1.1;g15662.t1;Cre16.g691150.t1.1;Cre16.g691150.t1.1;g15662.t1;g15662.t1;Cre16.g691150.t1.1;Cre16.g691150.t1.1;g15662.t1;Cre16.g691150.t1.1;g15662.t1;g15662.t1;Cre16.g691150.t1.1;g15662.t1;Cre16.g691150.t1.1;Cre16.g691150.t1.1;g15662.t1;g15662.t1;Cre16.g691150.t1.1;g15662.t1;Cre16.g691150.t1.1"		
+Cre16.g670150							g16226.t1		
+Cre16.g680100	GMM:29.2.2.3.3	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases"		"GO:0008168;GO:0006364;GO:0005737"	"methyltransferase activity;rRNA processing;cytoplasm"		"Cre16.g680100.t1.1;g16508.t1"		
+Cre16.g667750	GMM:27.2	RNA.transcription		"GO:0006351;GO:0003899;GO:0003676"	"transcription, DNA-templated;DNA-directed RNA polymerase activity;nucleic acid binding"	RPB7	"g16283.t1;RPB7;Cre16.g667750.t1.1;RPB7A"	RPB7	
+Cre16.g668050			Mitochondrion				g16277.t2		
+Cre16.g694203						PWR14	"Cre72.g794600.t1.1;PWR14;g15591.t1;Cre72.g794600.t1.1;PWR14;g15591.t1"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre16.g684950			Chloroplast				"Cre16.g684950.t1.1;g16399.t1;mL63/57/60"	MRPL63	
+Cre16.g679650	GMM:31.1	cell.organisation	Chloroplast				"g16517.t1;g16517.t1;g16517.t1"		
+Cre16.g654550	GMM:35.1.17	"not assigned.no ontology.transcription factor jumonji (jmjC) domain-containing protein"					"Cre16.g654550.t1.1;g15824.t1;g15824.t1;Cre16.g654550.t1.1;g15824.t1;Cre16.g654550.t1.1"		
+Cre16.g695100	"GMM:13.2.4.4;GMM:11.9.4.2"	"amino acid metabolism.degradation.branched chain group.leucine;lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH"	Mitochondrion	"GO:0055114;GO:0050660;GO:0016627;GO:0008152;GO:0003995"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity, acting on the CH-CH group of donors;metabolic process;acyl-CoA dehydrogenase activity"		"ACX4;g15568.t1"		
+Cre16.g655000			Chloroplast			PWR11	"PWR11;g15834.t1;g15834.t1;PWR11;g15834.t1;PWR11"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre16.g677738									
+Cre16.g670261				"GO:0070772;GO:0043550;GO:0005515"	"PAS complex;regulation of lipid kinase activity;protein binding"		"g16114.t1;Cre01.g062800.t1.1"		
+Cre16.g690767			Chloroplast	"GO:0055114;GO:0016491;GO:0006631;GO:0003857"	"oxidation-reduction process;oxidoreductase activity;fatty acid metabolic process;3-hydroxyacyl-CoA dehydrogenase activity"		"g16869.t1;Cre01.g072300.t1.2;Cre01.g072300.t1.1;g16869.t1;Cre01.g072300.t1.2;Cre01.g072300.t1.1"		
+Cre16.g652800			Chloroplast				"g15787.t1;Cre16.g652800.t1.1"		
+Cre16.g691900	"GMM:29.1.30;GMM:29.1"	"protein.aa activation.pseudouridylate synthase;protein.aa activation"		"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS19	"PUS19;Cre16.g691900.t1.1;g15641.t1"		
+Cre16.g679050	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"		GO:0005515	"protein binding"		"Cre16.g679050.t1.1;g16530.t1"		
+Cre16.g654992	GMM:31.6.1.11	cell.motility.eukaryotes.other	Mitochondrion	"GO:0008168;GO:0008033"	"methyltransferase activity;tRNA processing"	SRR3	"g15833.t1;g15833.t1;g15833.t1"		
+Cre16.g653350			Mitochondrion	"GO:0009245;GO:0008759"	"lipid A biosynthetic process;UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase activity"		"Cre16.g653350.t1.1;g15800.t1"		
+Cre16.g691450			"Secretory pathway"				"Cre16.g691450.t1.1;g15652.t1;g15652.t1;Cre16.g691450.t1.1"		
+Cre16.g671713			Chloroplast				"Cre01.g064881.t1.2;Cre01.g064881.t1.1;g16696.t1"		
+Cre16.g686350			Chloroplast				"g16367.t1;g16367.t1;g16367.t1"		
+Cre16.g686285	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING					"Cre01.g064850.t1.1;g16160.t1;Cre01.g064850.t1.1;g16160.t1"		
+Cre16.g660390			"Secretory pathway"	GO:0008146	"sulfotransferase activity"	CSR1	"g15951.t2;CSR1;CSR1;g15951.t2"		
+Cre16.g672454									
+Cre16.g687400	"GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g16342.t1;g16342.t1;g16342.t1"		
+Cre16.g667050									
+Cre16.g687750							"GT90F28;g16333.t1;GT90-28;Cre16.g687750.t1.1;GT90-28;Cre16.g687750.t1.1;GT90F28;g16333.t1;Cre16.g687750.t1.1;GT90-28;g16333.t1;GT90F28;g16333.t1;GT90F28;Cre16.g687750.t1.1;GT90-28"		
+Cre16.g647750							"Cre16.g647750.t1.1;g15679.t1"		
+Cre16.g677250			Mitochondrion			TEH5	"TEH5;Cre16.g677250.t1.1;g16570.t1;TEH5;Cre16.g677250.t1.1;g16570.t1"		
+Cre16.g691353			Mitochondrion				"Cre16.g691250.t1.2;g15658.t1;Cre16.g691250.t1.2;g15658.t1"		
+Cre16.g687350	GMM:11.9.4.2	"lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH"	Mitochondrion	"GO:0055114;GO:0016627;GO:0006635;GO:0005777;GO:0003997;GO:0003995"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;fatty acid beta-oxidation;peroxisome;acyl-CoA oxidase activity;acyl-CoA dehydrogenase activity"		"g16343.t1;Cre16.g687350.t1.1;ACO3"	ACX3	"Involved in fatty acid beta-oxidation pathway"
+Cre16.g672397	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006470;GO:0004722"	"protein dephosphorylation;protein serine/threonine phosphatase activity"		"g16120.t1;Cre01.g063100.t1.2;DIV174;Cre01.g063100.t1.1;DIV174;Cre01.g063100.t1.1;g16120.t1;Cre01.g063100.t1.2;DIV174;g16120.t1;Cre01.g063100.t1.1;Cre01.g063100.t1.2"		"ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196)"
+Cre16.g691755							"Cre16.g691650.t1.2;g15647.t1"		
+Cre16.g655350							g15842.t1		
+Cre16.g657900			Mitochondrion				"Cre16.g657900.t1.1;g15896.t1"		
+Cre16.g655600							"Cre16.g655600.t1.1;g15849.t1"		
+Cre16.g653300							"BLZ19;Cre16.g653300.t1.1;g15798.t1"		"Putative basic-leucine zipper (bZIP) transcription factor"
+Cre16.g683750			Chloroplast	GO:0016021	"integral component of membrane"	CGL67	"Cre16.g683750.t1.1;g16427.t1"	CGL67	"Conserved in the Green Lineage"
+Cre16.g677500	GMM:14.15	S-assimilation.AKN		"GO:0005524;GO:0004020;GO:0000103"	"ATP binding;adenylylsulfate kinase activity;sulfate assimilation"	APK1	"EZY13;g16566.t1;AKN2;APK1;AKN;Cre16.g677500.t1.1;Cre16.g677500.t1.1;EZY13;AKN2;g16566.t1;AKN;APK1"	"APK1;APK1"	"Chloroplast targetted; involved in sulfur assimilation; catalyzes the phosphorylation of adenosine 5'-phosphosulfate to produce phosphoadenosine phosphosulfate. Appears to be a single gene in Chlamydomonas; homolog of Arabidopsis AKN1 (APK) and AKN2. The gene is not upregulated during a 24h time course of sulfur starvation; referred to as AKN2 in PMID:15470261.;Chloroplast targetted; involved in sulfur assimilation; catalyzes the phosphorylation of adenosine 5'-phosphosulfate to produce phosphoadenosine phosphosulfate. Appears to be a single gene in Chlamydomonas; homolog of Arabidopsis AKN1 (APK) and AKN2. The gene is not upregulated during a 24h time course of sulfur starvation; referred to as AKN2 in PMID:15470261."
+Cre16.g680117	"GMM:29.5.11.4.2;GMM:29.5"	"protein.degradation.ubiquitin.E3.RING;protein.degradation"		"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"Cre01.g068100.t1.2;Cre01.g068100.t1.1;g16774.t1;g16774.t1;Cre01.g068100.t1.2;Cre01.g068100.t1.1;g16774.t1;Cre01.g068100.t1.2;Cre01.g068100.t1.1"		
+Cre16.g668750			Mitochondrion				"g16260.t1;MTA5;MTA5;g16260.t1;g16260.t1;MTA5;MTA5;g16260.t1"		"Unknown protein; A pseudo-gene copy resides in the A region of the mt+ locus [PMID: 11805055];Unknown protein; A pseudo-gene copy resides in the A region of the mt+ locus [PMID: 11805055];Unknown protein; A pseudo-gene copy resides in the A region of the mt+ locus [PMID: 11805055];Unknown protein; A pseudo-gene copy resides in the A region of the mt+ locus [PMID: 11805055]"
+Cre16.g651250			Chloroplast				"g15754.t1;Cre16.g651250.t1.1;g15754.t1;Cre16.g651250.t1.1"		
+Cre16.g681500				GO:0016787	"hydrolase activity"		"Cre16.g681500.t1.1;g16473.t1;g16473.t1;Cre16.g681500.t1.1"		
+Cre16.g686650			Mitochondrion				"g16360.t1;Cre16.g686650.t1.1"		
+Cre16.g689759			Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		g16860.t1		
+Cre16.g648400			Chloroplast				g15693.t1		
+Cre16.g682699							"g16797.t1;Cre01.g069200.t1.2;Cre01.g069200.t1.1;Cre01.g069200.t1.2;g16797.t1;Cre01.g069200.t1.1;Cre01.g069200.t1.1;Cre01.g069200.t1.2;g16797.t1;Cre01.g069200.t1.1;Cre01.g069200.t1.2;g16797.t1;Cre01.g069200.t1.1;Cre01.g069200.t1.2;g16797.t1"		
+Cre16.g695150			Chloroplast				"g15567.t1;g15567.t1;g15567.t1;g15567.t1;g15567.t1"		
+Cre16.g673393	"GMM:28.99;GMM:28.1"	"DNA.unspecified;DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"		"g16711.t2;Cre01.g065450.t1.1;Cre01.g065450.t1.1;g16711.t2"		
+Cre16.g689550	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK8	"PTK8;g16186.t1;PTK8;g16186.t1;PTK8;g16186.t1;PTK8;g16186.t1"		"Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre16.g648000			Chloroplast				"Cre16.g648000.t1.1;g15684.t1"		
+Cre16.g674739				GO:0016020	membrane		"Cre01.g066050.t1.1;Cre01.g066050.t1.2;g16724.t1;g16724.t1;Cre01.g066050.t1.1;Cre01.g066050.t1.2"		
+Cre16.g690100						FAP213	"Cre16.g690100.t1.1;g16198.t1"	FAP213	"Flagellar Associated Protein, coiled coil; found in the flagellar proteome"
+Cre16.g658725									
+Cre16.g678549			"Secretory pathway"				g16759.t1		
+Cre16.g647901			Mitochondrion			CSC8	"CSC8;g15682.t1"		"function unknown; homologs in Gonium, not Volvox"
+Cre16.g672753				"GO:0007049;GO:0005634"	"cell cycle;nucleus"		"Cre01.g063150.t1.1;g16121.t2"		
+Cre16.g650000				"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"		"Cre16.g650000.t1.1;g15727.t1"		
+Cre16.g650650	"GMM:13.2.4.1;GMM:13.1.1.3.11"	"amino acid metabolism.degradation.branched chain group.shared;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase"		"GO:0030170;GO:0008483"	"pyridoxal phosphate binding;transaminase activity"	AGT3	"g15742.t1;AGT3"	AGT3	"probable alanine-glyoxylate aminotransferase, most similar to the Mammalian AGT2-like enzyme; plant and mammalian homologues are usually located in the peroxisome, but the Chlamydomonas AGT3 protein misses a C-terminal PTS1 peroxisomal targeting sequence; TargetP suggests mitochondrial or chloroplast location"
+Cre16.g653900			"Secretory pathway"				"g15811.t1;g15811.t1;g15811.t1"		
+Cre16.g658750			"Secretory pathway"	GO:0016021	"integral component of membrane"		g15914.t1		
+Cre16.g674851			Chloroplast				g15545.t1		
+Cre16.g688100			Chloroplast						
+Cre16.g664550	"GMM:25.1;GMM:25;GMM:1.2.5"	"C1-metabolism.glycine hydroxymethyltransferase;C1-metabolism;PS.photorespiration.serine hydroxymethyltransferase"	Mitochondrion	GO:0016740	"transferase activity"	SHMT1	"g16043.t1;SHMT1;Cre16.g664550.t1.1;g16043.t1;SHMT1;Cre16.g664550.t1.1;g16043.t1;SHMT1;Cre16.g664550.t1.1;SHMT1;g16043.t1;Cre16.g664550.t1.1;SHMT1;g16043.t1;Cre16.g664550.t1.1"	"SHMT1;SHMT1;SHMT1;SHMT1;SHMT1"	"Serine hydroxymethyltransferase (gi:17066746, high light-inducible; Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Serine hydroxymethyltransferase (gi:17066746, high light-inducible; Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Serine hydroxymethyltransferase (gi:17066746, high light-inducible; Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Serine hydroxymethyltransferase (gi:17066746, high light-inducible; Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Serine hydroxymethyltransferase (gi:17066746, high light-inducible; Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]"
+Cre16.g680342	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP110	"g16776.t1;Cre01.g068200.t1.2;Cre01.g068200.t1.1;g16776.t1;Cre01.g068200.t1.1;Cre01.g068200.t1.2;Cre01.g068200.t1.2;Cre01.g068200.t1.1;g16776.t1"	"FAP110;FAP110;FAP110"	
+Cre16.g656900			Mitochondrion				"g15876.t1;Cre16.g656900.t1.1;g15876.t1;Cre16.g656900.t1.1"		
+Cre16.g676650	GMM:31.4	"cell.vesicle transport"		"GO:0030131;GO:0030117;GO:0016192;GO:0015031;GO:0008565;GO:0006886"	"clathrin adaptor complex;membrane coat;vesicle-mediated transport;protein transport;protein transporter activity;intracellular protein transport"	AP1G1	"Cre16.g676650.t1.1;AP1G1;g16582.t1;Cre16.g676650.t1.1;AP1G1;g16582.t1"	"AP1G1;AP1G1"	"Expressed Protein. Gamma-Adaptin. Clathrin Adaptor Complex Large Subunit, putative member of AP-1 complex;Expressed Protein. Gamma-Adaptin. Clathrin Adaptor Complex Large Subunit, putative member of AP-1 complex"
+Cre16.g680450			"Secretory pathway"				g16499.t1		
+Cre16.g685600							"Cre16.g685600.t1.1;g16385.t1"		
+Cre16.g679350							g16523.t1		
+Cre16.g681238	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Chloroplast	GO:0005525	"GTP binding"		"Cre01.g068600.t1.1;g16784.t1"		
+Cre16.g677317			Chloroplast				"g16747.t1;Cre01.g067100.t1.1"		
+Cre16.g665900							"g16071.t1;g16071.t1;g16071.t1;g16071.t1;g16071.t1;g16071.t1"		
+Cre16.g683000			"Secretory pathway"				"g16442.t1;Cre16.g683000.t1.1"		
+Cre16.g653800			Chloroplast			OPR101	"g15809.t1;g15809.t1;g15809.t1"	"OPR101;OPR101;OPR101"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre16.g658526	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0005525;GO:0005524"	"ATPase activity;GTP binding;ATP binding"		"MNME1;g15909.t1;MNME"	TGD3	"Homolog of bacteral tRNA modifying enzyme MmnE, a GTPase which modifies the woblle position U34 of certain tRNAs; The C-terminus which is not homologous to the bacterial protein is quite different between genome version 5.5 and 6"
+Cre16.g682300	GMM:29.2.1.2.1.26	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S26"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS26	"Cre16.g682300.t1.1;g16457.t1"	RPS26	"Cytosolic 40S small ribosomal subunit protein S26"
+Cre16.g671850							"Cre16.g671850.t1.1;g16690.t1;Cre16.g671850.t1.1;g16690.t1"		
+Cre16.g679500	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion			NUOB8	"Cre16.g679500.t1.1;g16520.t1"	NUOB8	"NADH:ubiquinone oxidoreductase (Complex I) B8 subunit, mitochondrial; [=NDUFA2 subunit]; gi 34328790 gb AAQ63699.1; Ortholog of NDUFA2 in Homo sapiens;"
+Cre16.g676981							"Cre01.g067000.t1.1;g16744.t1;g16744.t1;Cre01.g067000.t1.1"		
+Cre16.g649400			Mitochondrion			CPLD16	"g15713.t1;RRM15;Cre16.g649400.t1.1;Cre16.g649400.t1.1;RRM15;g15713.t1;Cre16.g649400.t1.1;g15713.t1;RRM15"	"CPLD16;CPLD16;CPLD16"	"Putative rRNA (guanine-N2-)-methyltransferase. Plant-lineage-and-diatoms conserved expressed protein;organelle-targeted; Arabidopsis homolog has RNA binding activity;Putative rRNA (guanine-N2-)-methyltransferase. Plant-lineage-and-diatoms conserved expressed protein;organelle-targeted; Arabidopsis homolog has RNA binding activity;Putative rRNA (guanine-N2-)-methyltransferase. Plant-lineage-and-diatoms conserved expressed protein;organelle-targeted; Arabidopsis homolog has RNA binding activity"
+Cre16.g668450			Mitochondrion				g16269.t1		
+Cre16.g656650			Chloroplast				"g15871.t1;PGP8"		
+Cre16.g682725	GMM:21.2.2	"redox.ascorbate and glutathione.glutathione"		GO:0005515	"protein binding"	GST2	"GST2;g16150.t1;Cre01.g064400.t1.2;Cre01.g064400.t1.1;Cre01.g064400.t1.2;Cre01.g064400.t1.1;g16150.t1;GST2"	"GSTS2;GSTS2"	"Sigma-class glutathione-S-transferase gene GSTS2 from [PMID: 22529359]; Expression is induced by various oxidative stress conditions [PMID: 17435007]; One of three paralogs (Cre16.g670973, Cre16.g682725, Cre16.g688550);;Sigma-class glutathione-S-transferase gene GSTS2 from [PMID: 22529359]; Expression is induced by various oxidative stress conditions [PMID: 17435007]; One of three paralogs (Cre16.g670973, Cre16.g682725, Cre16.g688550);"
+Cre16.g664350	GMM:28.2	DNA.repair	Chloroplast				"CLD1;Cre16.g664350.t1.1;g16039.t1"		
+Cre16.g665400	GMM:27.1	RNA.processing		GO:0006396	"RNA processing"	SMP9	"SMP9;Cre16.g665400.t1.1;g16060.t1;SMP9;Cre16.g665400.t1.1;g16060.t1"	"SMP9;SMP9"	
+Cre16.g653650							g15806.t1		
+Cre16.g663000	GMM:21.3	redox.heme		GO:0019825	"oxygen binding"	prx	"PRX;Cre16.g663000.t1.1;g16007.t1;g16007.t1;Cre16.g663000.t1.1;PRX"	"THB12;THB12"	"oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is not far from THB11 on Chr_16; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor;oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is not far from THB11 on Chr_16; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor"
+Cre16.g683259	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP29	"Cre01.g069350.t1.1;MCP29;g16802.t1;Cre01.g069350.t1.2;Cre01.g069350.t1.1;MCP29;Cre01.g069350.t1.2;g16802.t1;Cre01.g069350.t1.2;g16802.t1;Cre01.g069350.t1.1;MCP29;MCP29;Cre01.g069350.t1.1;g16802.t1;Cre01.g069350.t1.2"		
+Cre16.g685500	GMM:11.1.13	"lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein"	"Secretory pathway"	GO:0005515	"protein binding"		"g16387.t2;Cre16.g685500.t1.1;Cre16.g685500.t1.1;g16387.t2;g16387.t2;Cre16.g685500.t1.1;Cre16.g685500.t1.1;g16387.t2"		
+Cre16.g687100			Chloroplast						
+Cre16.g689311							"Cre01.g071750.t1.1;g16856.t1;Cre01.g071750.t1.2"		
+Cre16.g688750	GMM:27.1	RNA.processing	Mitochondrion	GO:0005634	nucleus		"Cre16.g688750.t1.1;g16169.t1;g16169.t1;Cre16.g688750.t1.1;Cre16.g688750.t1.1;g16169.t1;g16169.t1;Cre16.g688750.t1.1"		
+Cre16.g692150			"Secretory pathway"				"GT90-29;GT90F29;g15635.t2"		
+Cre16.g674550							g16629.t1		
+Cre16.g686203			"Secretory pathway"						
+Cre16.g672400							"g16679.t1;Cre16.g672400.t1.1;g16679.t1;Cre16.g672400.t1.1"		
+Cre16.g676450						CPLD39	"Cre16.g676450.t1.1;g16587.t1"	CPLD39	
+Cre16.g678200	"GMM:24.2;GMM:13.2.3.2"	"biodegradation of xenobiotics.lactoylglutathione lyase;amino acid metabolism.degradation.aspartate family.threonine"					"g16551.t2;g16551.t2;g16551.t2"		
+Cre16.g689766			"Secretory pathway"						
+Cre16.g693600	GMM:10.5.2	"cell wall.cell wall proteins.proline rich proteins"	"Secretory pathway"			FAP137	"ISG-C4;g15606.t1;Cre16.g693600.t1.1;ISG4;g15606.t1;ISG-C4;Cre16.g693600.t1.1;ISG4;Cre16.g693600.t1.1;ISG4;ISG-C4;g15606.t1;g15606.t1;ISG-C4;Cre16.g693600.t1.1;ISG4"	"FAP137;FAP137;FAP137;FAP137"	"Putative extracellular matrix protein (cell wall protein); similar to Volvox ISG [PMID: 16938]) and Chlamydomonas VSP-3 [PMID: 87], two glycoproteins with a hydroxyproline-rich (HR) domain; ISG Genbank entry X65165; VSP-3 Genbank entry AY79584; found in flagellar proteome;Putative extracellular matrix protein (cell wall protein); similar to Volvox ISG [PMID: 16938]) and Chlamydomonas VSP-3 [PMID: 87], two glycoproteins with a hydroxyproline-rich (HR) domain; ISG Genbank entry X65165; VSP-3 Genbank entry AY79584; found in flagellar proteome;Putative extracellular matrix protein (cell wall protein); similar to Volvox ISG [PMID: 16938]) and Chlamydomonas VSP-3 [PMID: 87], two glycoproteins with a hydroxyproline-rich (HR) domain; ISG Genbank entry X65165; VSP-3 Genbank entry AY79584; found in flagellar proteome;Putative extracellular matrix protein (cell wall protein); similar to Volvox ISG [PMID: 16938]) and Chlamydomonas VSP-3 [PMID: 87], two glycoproteins with a hydroxyproline-rich (HR) domain; ISG Genbank entry X65165; VSP-3 Genbank entry AY79584; found in flagellar proteome"
+Cre16.g653000							g15791.t1		
+Cre16.g654750			Mitochondrion				"Cre16.g654750.t1.1;g15828.t1"		
+Cre16.g683819				"GO:0016491;GO:0008198;GO:0006725"	"oxidoreductase activity;ferrous iron binding;cellular aromatic compound metabolic process"		"g16807.t1;g16807.t1"		
+Cre16.g668300							"g16272.t1;g16272.t1"		
+Cre16.g682001	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"				"Cre16.g681950.t1.2;g16465.t1"		
+Cre16.g650950							g15748.t1		
+Cre16.g687966	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Chloroplast			FAP5	"FAP5;Cre01.g071200.t1.1;Nphp3;g16844.t1"	FAP5	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]. Possible kinesin; C-terminus is similar to Nephrocystin 3"
+Cre16.g664650			Chloroplast				"Cre16.g664650.t1.1;g16045.t1"		
+Cre16.g649600	GMM:35.1.12	"not assigned.no ontology.pumilio/Puf RNA-binding domain-containing protein"		GO:0003723	"RNA binding"	PUF4	"g15718.t1;PUF4;Cre16.g649600.t1.1;PUF4;Cre16.g649600.t1.1;g15718.t1;Cre16.g649600.t1.1;g15718.t1;PUF4"	"PUF4;PUF4;PUF4"	"Puf protein: contains pumilio-family RNA binding domains (PUF). Puf protein family thought to repress gene expression by affecting mRNA translation or stability.;Puf protein: contains pumilio-family RNA binding domains (PUF). Puf protein family thought to repress gene expression by affecting mRNA translation or stability.;Puf protein: contains pumilio-family RNA binding domains (PUF). Puf protein family thought to repress gene expression by affecting mRNA translation or stability."
+Cre16.g690300			Chloroplast				"g16203.t1;Cre16.g690300.t1.1"		
+Cre16.g665650	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Chloroplast	GO:0005525	"GTP binding"		"HFLX;g16066.t1;g16066.t1;HFLX"	"HFLX1;HFLX1"	
+Cre16.g691800			Chloroplast	GO:0010181	"FMN binding"	FLVB	"g15643.t1;FLVB;g15643.t1;FLVB"	"FLVB1;FLVB1"	"Functions as a hetero-dimer with FLVA1 to reoxidize PSI acceptors and protect PSI against photoinhibition during transient/fluctuating illumination;Functions as a hetero-dimer with FLVA1 to reoxidize PSI acceptors and protect PSI against photoinhibition during transient/fluctuating illumination"
+Cre16.g663280			"Secretory pathway"	"GO:0051082;GO:0006457;GO:0005524"	"unfolded protein binding;protein folding;ATP binding"		"Cre16.g663280.t1.1;g16013.t1"		
+Cre16.g688950			"Secretory pathway"				"g16174.t1;Cre16.g688950.t1.1;Cre16.g688950.t1.1;g16174.t1"		
+Cre16.g680600			Chloroplast				"g16496.t1;Cre16.g680600.t1.1;Cre16.g680600.t1.1;g16496.t1"		
+Cre16.g677150			Mitochondrion				"g16572.t1;g16572.t1;g16572.t1"		
+Cre16.g675188			Mitochondrion				"g16728.t1;Cre01.g066250.t1.2;Cre01.g066250.t1.1"		
+Cre16.g690150	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"	"GO:0016758;GO:0005789"	"transferase activity, transferring hexosyl groups;endoplasmic reticulum membrane"	ALG6	"Cre16.g690150.t1.1;g16200.t1;GTR21"	ALG6	"Likely adds glucose to Man 8 on N-glycans; Orthologous to AT5G38460 in Arabidopsis thaliana"
+Cre16.g651801							"g15765.t1;g15765.t1"		
+Cre16.g653550							"Cre16.g653550.t1.1;g15804.t1"		
+Cre16.g683900	GMM:11.9.3.3	"lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase"	"Secretory pathway"	"GO:0008889;GO:0008081;GO:0006629"	"glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process"	GDP2	"GDP2;GDPD2;g16424.t1"		
+Cre16.g655850							"g15854.t1;g15854.t1"		
+Cre16.g674750			Mitochondrion	"GO:0051726;GO:0005634"	"regulation of cell cycle;nucleus"		"Cre16.g674750.t1.1;g16624.t1"		
+Cre16.g675637	"GMM:29.5.11.1;GMM:17.3.1.2.2"	"protein.degradation.ubiquitin.ubiquitin;hormone metabolism.brassinosteroid.synthesis-degradation.sterols.SMT2"				SUM1	"Cre01.g066400.t1.1;SMT3;SUMO1;SUM1;Cre01.g066400.t1.2;SUMO6;SUMO9SUMO96;g16732.t1"	SUMO4	"Post-translational modification by SUMO modulates many important cellular processes; Biochemical activity verified;-like modifier"
+Cre16.g658000							g15900.t1		"Contains PF02492, CobW nucleotide-binding domain;"
+Cre16.g670550	GMM:28.2	DNA.repair		"GO:0006281;GO:0004518"	"DNA repair;nuclease activity"		"XPG3;g16218.t1"	XPG3	"DNA repair protein, resembling the Xeroderma pignmentosum group G protein, XPGC, and Rad2 yeast homolog"
+Cre16.g660651							g15956.t1		
+Cre16.g690902			"Secretory pathway"						
+Cre16.g671400	GMM:14.1	S-assimilation.APS	"Secretory pathway"	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS1	"g16291.t1;Cre16.g671400.t1.1;Cre16.g671400.t1.1;g16291.t1"	"ARS1;ARS1"	"Periplasmic arylsulfatase 1 [PMID: 3339089], The nearly identical gene ARS2 is nearby in the genomic sequence, in inverted orientation;Periplasmic arylsulfatase 1 [PMID: 3339089], The nearly identical gene ARS2 is nearby in the genomic sequence, in inverted orientation"
+Cre16.g661900	GMM:27.1.2	"RNA.processing.RNA helicase"	Chloroplast	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL61	"g15984.t1;HEL61;g15984.t1;HEL61;HEL61;g15984.t1"		
+Cre16.g695600	"GMM:29.9;GMM:28.99"	"protein.co-chaperones;DNA.unspecified"	"Secretory pathway"			DNJ10	"g15556.t1;Cre16.g695600.t1.1;DNJ10"		"DnaJ-like protein; probably nuclear/cytosolic; similar to Chlamy Q6JX9_CHLRE GlsA-related protein and to Volvox GLSA; contains J-domain (pfam226) at the N-terminus and Myb_DNA-binding-Domain (pfam249) at the C-terminus"
+Cre16.g662000	GMM:27.1.2	"RNA.processing.RNA helicase"		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"	HEL62	"HEL62;g15987.t1;Cre16.g662000.t1.1"		
+Cre16.g686700			Mitochondrion				g16359.t1		
+Cre16.g691888	GMM:4.1.6	"glycolysis.cytosolic branch.fructose-2,6-bisphosphatase (Fru2,6BisPase)"	Mitochondrion	"GO:0006003;GO:0005524;GO:0003824"	"fructose 2,6-bisphosphate metabolic process;ATP binding;catalytic activity"		"Cre01.g072800.t1.1;g16879.t2;FBP3;Cre01.g072800.t1.1;g16879.t2;FBP3;g16879.t2;Cre01.g072800.t1.1;FBP3"		
+Cre16.g686002							g16376.t1		
+Cre16.g680588	GMM:27.3.35	"RNA.regulation of transcription.bZIP transcription factor family"	Mitochondrion				"Cre01.g064100.t1.1;g16144.t1"		
+Cre16.g660000			Chloroplast	GO:0016020	membrane	CPLD63	"CPLD63;Cre16.g660000.t1.1;g15942.t1;CPLD63;Cre16.g660000.t1.1;g15942.t1"	"CMT1A;CMT1A"	"Co-orthologous with CMT1B to Arabidopsis thaliana CMT1; Conserved in the Plant Lineage and Diatoms;Co-orthologous with CMT1B to Arabidopsis thaliana CMT1; Conserved in the Plant Lineage and Diatoms"
+Cre16.g649150			Mitochondrion				"g15708.t1;g15708.t1;g15708.t1"		
+Cre16.g683400	"GMM:34.99;GMM:29.3.4.99"	"transport.misc;protein.targeting.secretory pathway.unspecified"	Mitochondrion				"g16434.t1;Cre16.g683400.t1.1"		
+Cre16.g684350	"GMM:7.1.3;GMM:13.1.1.1.4"	"OPP.oxidative PP.6-phosphogluconate dehydrogenase;amino acid metabolism.synthesis.central amino acid metabolism.GABA.gamma-hydroxybutyrate DH"	Mitochondrion	"GO:0055114;GO:0051287;GO:0004616"	"oxidation-reduction process;NAD binding;phosphogluconate dehydrogenase (decarboxylating) activity"		"Cre16.g684350.t1.1;g16411.t1;HAR1;HAR1;g16411.t1;Cre16.g684350.t1.1;Cre16.g684350.t1.1;g16411.t1;HAR1"		"COG284, MmsB, 3-hydroxyisobutyrate dehydrogenase and related beta-hydroxyacid dehydrogenases;COG284, MmsB, 3-hydroxyisobutyrate dehydrogenase and related beta-hydroxyacid dehydrogenases;COG284, MmsB, 3-hydroxyisobutyrate dehydrogenase and related beta-hydroxyacid dehydrogenases"
+Cre16.g669905	GMM:20.2.3	stress.abiotic.drought/salt					"g16111.t1;Cre01.g062750.t1.1"		
+Cre16.g663700			Chloroplast	GO:0004518	"nuclease activity"		"g16024.t1;g16024.t1"		
+Cre16.g690400	GMM:29.9	protein.co-chaperones	EndoplasmicReticulum			DNJ5	"g16205.t1;DNJ5;g16205.t1;DNJ5;DNJ5;g16205.t1;DNJ5;g16205.t1"		"DnaJ-like protein; similar to Q4DN1 from Trypanosoma cruzi; TargetP predicts both proteins to secretory pathway (reliability score 1 for T. cruzi, score 3 for DNJ5); contains C-terminal J-domain (pfam226);DnaJ-like protein; similar to Q4DN1 from Trypanosoma cruzi; TargetP predicts both proteins to secretory pathway (reliability score 1 for T. cruzi, score 3 for DNJ5); contains C-terminal J-domain (pfam226);DnaJ-like protein; similar to Q4DN1 from Trypanosoma cruzi; TargetP predicts both proteins to secretory pathway (reliability score 1 for T. cruzi, score 3 for DNJ5); contains C-terminal J-domain (pfam226);DnaJ-like protein; similar to Q4DN1 from Trypanosoma cruzi; TargetP predicts both proteins to secretory pathway (reliability score 1 for T. cruzi, score 3 for DNJ5); contains C-terminal J-domain (pfam226)"
+Cre16.g665800	GMM:2.1.2.2	"major CHO metabolism.synthesis.starch.starch synthase"	Chloroplast			SSS4	"g16069.t1;SS4;SSS4;Cre16.g665800.t1.1;Cre16.g665800.t1.1;SSS4;SS4;g16069.t1"	"SSS4;SSS4"	"ADP-glucose alpha-1,4 glucane alpha-4-glucanotransferase; catalyses the transfer of the glucosyl moiety of the ADP-glc to the non-reducing end of a pre-existing alpha 1,4 linked chain; (AAC17971);ADP-glucose alpha-1,4 glucane alpha-4-glucanotransferase; catalyses the transfer of the glucosyl moiety of the ADP-glc to the non-reducing end of a pre-existing alpha 1,4 linked chain; (AAC17971)"
+Cre16.g659050	"GMM:18.5.2.8.1;GMM:18.5.2.1;GMM:18.5.2"	"Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.2-phytyl-1,4-naphthoquinone methyltransferase.PHYLLO;Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.isochorismate synthase;Co-factor and vitamine metabolism.folate and vitamine K.vitamine K"	Chloroplast	GO:0030976	"thiamine pyrophosphate binding"		"g15922.t1;g15922.t1;g15922.t1"		
+Cre16.g688638	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Chloroplast	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG33	"Cre01.g071500.t1.1;CYG33;g16850.t1;Cre01.g071500.t1.1;CYG33;g16850.t1;CYG33;g16850.t1;Cre01.g071500.t1.1;g16850.t1;CYG33;Cre01.g071500.t1.1;Cre01.g071500.t1.1;CYG33;g16850.t1;g16850.t1;CYG33;Cre01.g071500.t1.1;g16850.t1;CYG33;Cre01.g071500.t1.1;g16850.t1;CYG33;Cre01.g071500.t1.1"		"Similar to membrane guanylyl cyclase OlGC7 [Oryzias latipes];Similar to membrane guanylyl cyclase OlGC7 [Oryzias latipes];Similar to membrane guanylyl cyclase OlGC7 [Oryzias latipes];Similar to membrane guanylyl cyclase OlGC7 [Oryzias latipes];Similar to membrane guanylyl cyclase OlGC7 [Oryzias latipes];Similar to membrane guanylyl cyclase OlGC7 [Oryzias latipes];Similar to membrane guanylyl cyclase OlGC7 [Oryzias latipes];Similar to membrane guanylyl cyclase OlGC7 [Oryzias latipes]"
+Cre16.g679550	"GMM:29.5.5;GMM:20.1.7.6"	"protein.degradation.serine protease;stress.biotic.PR-proteins.PR6 (proteinase inhibitors)"	Mitochondrion	GO:0005615	"extracellular space"	FAP277	g16519.t1	FAP277	"Flagellar Associated Protein similar to protease inhibitor; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre16.g693202	"GMM:29.5.11.3;GMM:14.3"	"protein.degradation.ubiquitin.E2;S-assimilation.sulfite redox"	Chloroplast	"GO:0055114;GO:0051536;GO:0020037;GO:0016491"	"oxidation-reduction process;iron-sulfur cluster binding;heme binding;oxidoreductase activity"	SIR1	"g15615.t1;g15615.t1"	"SIR1;SIR1"	
+Cre16.g674515	GMM:31.6.1.4.2	"cell.motility.eukaryotes.axonemal dyneins.inner arm"				DIC3	"Cre01.g065950.t1.1;DIC3;g16722.t1;IDA7;IA1-IC140;IDA7;IA1-IC140;g16722.t1;Cre01.g065950.t1.1;DIC3"	"IC140;IC140"	"Flagellar inner dynein arm I1 intermediate chain IC140 [AF159260, PMID: 9843574];Flagellar inner dynein arm I1 intermediate chain IC140 [AF159260, PMID: 9843574]"
+Cre16.g654450			Mitochondrion				"g15821.t1;Cre16.g654450.t1.1;g15821.t1;Cre16.g654450.t1.1"		
+Cre16.g659000			Chloroplast			ATG13	"g15921.t1;g15921.t1"	"ATG13;ATG13"	"Regulatory subunit of the Atg1p signaling complex; stimulates Atg1p kinase activity; required for vesicle formation during autophagy;Regulatory subunit of the Atg1p signaling complex; stimulates Atg1p kinase activity; required for vesicle formation during autophagy"
+Cre16.g675602	"GMM:34.3;GMM:34.2"	"transport.amino acids;transport.sugars"	"Secretory pathway"				"Cre01.g063500.t1.1;g16130.t1;g16130.t1;Cre01.g063500.t1.1;Cre01.g063500.t1.1;g16130.t1"		
+Cre16.g650625	GMM:31.6.1.8	"cell.motility.eukaryotes.flagellar membrane proteins"	Chloroplast	"GO:0070008;GO:0008236;GO:0006508;GO:0004252"	"serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity"	MST1	g15741.t1		
+Cre16.g688975			Mitochondrion				"g16853.t1;Cre01.g071600.t1.1;Cre01.g071600.t1.2"		
+Cre16.g664450	GMM:35.1.21	"not assigned.no ontology.epsin N-terminal homology (ENTH) domain-containing protein"					"g16041.t1;g16041.t1"		
+Cre16.g665100	GMM:34.21	transport.calcium		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	CAV3	"CAV3;g16054.t1;CAV3;g16054.t1"	"CAV3;CAV3"	"Voltage-dependent 4-domain calcium channel, alpha subunit;Voltage-dependent 4-domain calcium channel, alpha subunit"
+Cre16.g683450	GMM:2.1.2.1	"major CHO metabolism.synthesis.starch.AGPase"	Mitochondrion	"GO:0016779;GO:0009058"	"nucleotidyltransferase activity;biosynthetic process"	AGP2	"g16433.t1;AGP2;Cre16.g683450.t1.1"	AGP2	"ADP-glucose pyrophosphorylase large subunit 2; Glucose-1-phosphate adenylyltransferase / ADP-glucose synthase; regulatory subunit catalyzes the formation of the glucosyl nucleotide from ATP and glucose-1-phosphate; contains nucleotidyl transferase domain; involved in starch metabolism"
+Cre16.g675973							"Cre01.g066550.t1.2;g16735.t1;Cre01.g066550.t1.1"		
+Cre16.g670754	GMM:34.15	transport.potassium	Chloroplast				g16305.t1		
+Cre16.g661650	GMM:27.3.3	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"	Mitochondrion				"g15978.t1;g15978.t1;g15978.t1;g15978.t1"		
+Cre16.g660900	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIL10	"g15961.t1;KIL10;Cre16.g660900.t1.1"		"closest match to kinesin-4/1 family; not clear which mammalan protein is most similar (peptide is unique to this kinesin)"
+Cre16.g694205			Chloroplast						
+Cre16.g680902	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			mmp16	"Cre01.g068450.t1.1;g16781.t1;g16781.t1;Cre01.g068450.t1.1"		
+Cre16.g685250	GMM:29.5.1	protein.degradation.subtilases		"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SUB11	"g16392.t1;Cre16.g685250.t1.1;SUB11;Cre16.g685250.t1.1;SUB11;g16392.t1"		
+Cre16.g669600			Mitochondrion				"g16238.t1;g16238.t1"		
+Cre16.g656200	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"		GO:0005515	"protein binding"		"Cre16.g656200.t1.1;g15861.t1;Cre16.g656200.t1.1;g15861.t1"		
+Cre16.g647602	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		"GO:0016787;GO:0008168;GO:0005524;GO:0003677"	"hydrolase activity;methyltransferase activity;ATP binding;DNA binding"				
+Cre16.g649833				"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		g15724.t1		
+Cre16.g691756							"Cre16.g691621.t1.2;g15648.t1"		
+Cre16.g663150	GMM:26.23	misc.rhodanese	Mitochondrion				"g16010.t1;Cre16.g663150.t1.1;Cre16.g663150.t1.1;g16010.t1"		
+Cre16.g662100			Chloroplast	GO:0003723	"RNA binding"		"Cre16.g662100.t1.1;g15989.t1"		
+Cre16.g684850			Mitochondrion	"GO:0008176;GO:0006400"	"tRNA (guanine-N7-)-methyltransferase activity;tRNA modification"		"Cre16.g684850.t1.1;TMG7;g16401.t1;TMG7;g16401.t1;Cre16.g684850.t1.1;g16401.t1;Cre16.g684850.t1.1;TMG7"		
+Cre16.g668650							g16262.t1		
+Cre16.g672273			Chloroplast				"Cre01.g065100.t1.1;g16701.t1"		
+Cre16.g669125			Chloroplast	"GO:0055114;GO:0046872;GO:0016491"	"oxidation-reduction process;metal ion binding;oxidoreductase activity"		ADH13B		"inactive paralog of ADHE1; another pseudogene (Cre16.g669150) is nearby, in divergent orientation"
+Cre16.g671900	"GMM:31.3.1;GMM:27.3.48"	"cell.cycle.peptidylprolyl isomerase;RNA.regulation of transcription.FHA transcription factor"		"GO:0016853;GO:0005515"	"isomerase activity;protein binding"	PIN4	"PIN4;g16689.t1"	PIN4	"Two-domain protein: N-terminal FHA (forkhead) domain binding phosphoproteins and involved in nuclear signaling; Peptidyl-prolyl cis-trans isomerase(parvulin-type) domain, specific for phosphorylated substrates most similar to AtPIN1 (At2g18040, [PMID: 15051864, PMID:15047905]"
+Cre16.g686500	GMM:26.13	"misc.acid and other phosphatases"		GO:0003993	"acid phosphatase activity"		"g16364.t1;g16364.t1"		
+Cre16.g671937							"g16698.t1;Cre01.g064950.t1.1;Cre01.g064950.t1.1;g16698.t1;Cre01.g064950.t1.1;g16698.t1;g16698.t1;Cre01.g064950.t1.1;g16698.t1;Cre01.g064950.t1.1"		
+Cre16.g660331							"g15949.t1;Cre16.g660331.t1.1"		
+Cre16.g669750							"Cre16.g669750.t1.1;g16235.t1"		
+Cre16.g686200	GMM:3.2.1	"minor CHO metabolism.trehalose.TPS"		"GO:0005992;GO:0003824"	"trehalose biosynthetic process;catalytic activity"	TPS3	"TPS3;TPT1;g16370.t1;TSSP2;TSSP2;TPS3;g16370.t1;TPT1;TSSP2;TPS3;TPT1;g16370.t1"	"TSPSP2;TSPSP2;TSPSP2"	"Class II trehalose-6-phosphate synthase, carrying a glycosyl transferase and a TPP (phosphatase) domain;;Class II trehalose-6-phosphate synthase, carrying a glycosyl transferase and a TPP (phosphatase) domain;;Class II trehalose-6-phosphate synthase, carrying a glycosyl transferase and a TPP (phosphatase) domain;"
+Cre16.g684600	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"	Chloroplast	"GO:0006893;GO:0000145"	"Golgi to plasma membrane transport;exocyst"	SEC5	"g16406.t1;Cre16.g684600.t1.1"	SEC5	"Contains regions similar to SEC5, a component of the exocyst complex involved in secretion/exocytosis"
+Cre16.g663900	GMM:19.5	"tetrapyrrole synthesis.porphobilinogen deaminase"	Chloroplast	"GO:0033014;GO:0004418"	"tetrapyrrole biosynthetic process;hydroxymethylbilane synthase activity"	PBGD1	"Cre16.g663900.t1.1;g16030.t1;HMBS;Cre16.g663900.t1.1;HMBS;g16030.t1;HMBS;g16030.t1;Cre16.g663900.t1.1"	"PBGD1;PBGD1;PBGD1"	"Porphobilinogen deaminase, chloroplast precursor; Hydroxymethylbilane synthase; Pre-uroporphyrinogen synthase; PBG; HMBS; HEM3; HEMC; Predicted chloroplast transit peptide 1-34 [PMID: 1986793; PMID: 8192681; PMID: 15849308];Porphobilinogen deaminase, chloroplast precursor; Hydroxymethylbilane synthase; Pre-uroporphyrinogen synthase; PBG; HMBS; HEM3; HEMC; Predicted chloroplast transit peptide 1-34 [PMID: 1986793; PMID: 8192681; PMID: 15849308];Porphobilinogen deaminase, chloroplast precursor; Hydroxymethylbilane synthase; Pre-uroporphyrinogen synthase; PBG; HMBS; HEM3; HEMC; Predicted chloroplast transit peptide 1-34 [PMID: 1986793; PMID: 8192681; PMID: 15849308]"
+Cre16.g655283							g15840.t1		
+Cre16.g652400				GO:0005509	"calcium ion binding"	FAP183	"g15779.t1;FAL18;Cre16.g652400.t1.1;FAL18;g15779.t1;Cre16.g652400.t1.1"	"FAP183;FAP183"	
+Cre16.g686750	GMM:34.7	transport.phosphate		"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"	PTA3	"PTA3;g16358.t1;Cre16.g686750.t1.1"	PTA3	"Putative phosphate transporter homolog type A-4, similar to yeast Pho84 H+/Pi symporter; clusters with PTA2 and PTA4 on scaffold 14. gi 21218043 dbj AB074876.1"
+Cre16.g688450						CFAP298	"CFAP298;FBB18;g16162.t1;DAB2;Cre16.g688450.t1.1;C21ORF59;C21ORF59;DAB2;FBB18;Cre16.g688450.t1.1;g16162.t1;CFAP298"	"FBB18;FBB18"	"Similar to C21orf59 (CTO59); identified in the Flagellar basal body proteome [PMID: 15137946]; Upregulated by deflagellation;Similar to C21orf59 (CTO59); identified in the Flagellar basal body proteome [PMID: 15137946]; Upregulated by deflagellation"
+Cre16.g680950							"g16488.t1;g16488.t1"		
+Cre16.g679893	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g16772.t1;Cre01.g068000.t1.1;Cre01.g068000.t1.1;g16772.t1"		
+Cre16.g678851	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"	PSBP2	"g16537.t1;SBP2;Cre16.g678800.t1.3;PSBP2"		"shows similarity to PSBP (OEE2, oxygen-evolving enhancer protein 2 of photosystem II, OEC23, 23 kDa subunit of oxygen evolving complex : PMID: 3468511); orthologous to At2g28605; targeted to thylakoid lumen by TAT pathway"
+Cre16.g691400			Mitochondrion				"g15654.t1;g15654.t1"		
+Cre16.g657600			Mitochondrion				"g15890.t2;g15890.t2"		
+Cre16.g659500			"Secretory pathway"				"Cre16.g659500.t1.1;g15931.t1"		
+Cre16.g666200	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g16077.t1;Cre16.g666200.t1.1;CSK4"		"Casein kinase-related Ser/Thr kinase. Putative paralog of MUT9 (AAL6199), silencing related kinase SRK, potentially involved in transcriptional gene silencing"
+Cre16.g668200	"GMM:27.3.67;GMM:27.3.63"	"RNA.regulation of transcription.putative transcription regulator;RNA.regulation of transcription.PHD finger transcription factor"		"GO:0016568;GO:0005634;GO:0005515"	"chromatin modification;nucleus;protein binding"		"ING?;g16274.t1;g16274.t1;ING?"		"PHD-type zinc-finger protein that may bind methylated H3. Homology to the Inhibitor of Growth (ING) protein group. ChromoDB INGF341;PHD-type zinc-finger protein that may bind methylated H3. Homology to the Inhibitor of Growth (ING) protein group. ChromoDB INGF341"
+Cre16.g663600	"GMM:34.7;GMM:34.2"	"transport.phosphate;transport.sugars"		"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	PHT7	"Cre16.g663600.t1.1;PHT7;PHT4-7;g16022.t1;PHT4-7;PHT7;g16022.t1;Cre16.g663600.t1.1;g16022.t1;Cre16.g663600.t1.1;PHT4-7;PHT7;Cre16.g663600.t1.1;PHT4-7;PHT7;g16022.t1;g16022.t1;PHT7;PHT4-7;Cre16.g663600.t1.1"	"PHT4G;PHT4G;PHT4G;PHT4G;PHT4G"	"Sodium-dependent phosphate transporter, major facilitator superfamily. Putative carbohydrate-transporter containing 8 transmembrane spanning domains, identified in Chlamydomonas reinhardtii C9 various conditions [Asamizu et al. (24) Phycologia 43(6): 7;Sodium-dependent phosphate transporter, major facilitator superfamily. Putative carbohydrate-transporter containing 8 transmembrane spanning domains, identified in Chlamydomonas reinhardtii C9 various conditions [Asamizu et al. (24) Phycologia 43(6): 7;Sodium-dependent phosphate transporter, major facilitator superfamily. Putative carbohydrate-transporter containing 8 transmembrane spanning domains, identified in Chlamydomonas reinhardtii C9 various conditions [Asamizu et al. (24) Phycologia 43(6): 7;Sodium-dependent phosphate transporter, major facilitator superfamily. Putative carbohydrate-transporter containing 8 transmembrane spanning domains, identified in Chlamydomonas reinhardtii C9 various conditions [Asamizu et al. (24) Phycologia 43(6): 7;Sodium-dependent phosphate transporter, major facilitator superfamily. Putative carbohydrate-transporter containing 8 transmembrane spanning domains, identified in Chlamydomonas reinhardtii C9 various conditions [Asamizu et al. (24) Phycologia 43(6): 7"
+Cre16.g682350	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		g16455.t1		
+Cre16.g692000			"Secretory pathway"				g15638.t1		
+Cre16.g690508			Mitochondrion						
+Cre16.g690800			Chloroplast						
+Cre16.g689300	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g16181.t1;STPK24;PTK27;STK24;STPK24;PTK27;STK24;g16181.t1"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre16.g668850			"Secretory pathway"			MTA2	"MTA2;g16258.t1;A2;A2;g16258.t1;MTA2"		"Hydroxyproline-rich glycoprotein, putative component of the zygote ECM; contains PPSPX repeats, described in PMID: 11258910. This gene is called A2 in some publications. The mRNA is gamete-specific; there is no protein localization data. A pseudogene copy resides in the mt+ locus [PMID: 11805055]. Independently sequenced as AF309495.;Hydroxyproline-rich glycoprotein, putative component of the zygote ECM; contains PPSPX repeats, described in PMID: 11258910. This gene is called A2 in some publications. The mRNA is gamete-specific; there is no protein localization data. A pseudogene copy resides in the mt+ locus [PMID: 11805055]. Independently sequenced as AF309495."
+Cre16.g687294			Chloroplast	"GO:0051539;GO:0016992;GO:0015979;GO:0009107"	"4 iron, 4 sulfur cluster binding;lipoate synthase activity;photosynthesis;lipoate biosynthetic process"		"FTRV;g16838.t1"	FTRV1	
+Cre16.g669500			Mitochondrion				g16240.t1		
+Cre16.g690700			Chloroplast				"g15672.t1;g15672.t1"		
+Cre16.g654250							"g15817.t2;g15817.t2;g15817.t2;g15817.t2"	"THB6;THB6;THB6;THB6"	"oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor; contains N- and C-terminal extensions; is induced during anaeobiosis;oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor; contains N- and C-terminal extensions; is induced during anaeobiosis;oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor; contains N- and C-terminal extensions; is induced during anaeobiosis;oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor; contains N- and C-terminal extensions; is induced during anaeobiosis"
+Cre16.g672250	GMM:26.13	"misc.acid and other phosphatases"	"Secretory pathway"	GO:0016787	"hydrolase activity"	MPA13	"g16682.t1;MPA13"		"Metallophosphoesterase/metallo-dependent phosphatase with purpe acid phosphatase domain"
+Cre16.g680400			Chloroplast				g16500.t1		
+Cre16.g673617	GMM:29.2.5	protein.synthesis.release		"GO:0016149;GO:0006415;GO:0005737;GO:0003747"	"translation release factor activity, codon specific;translational termination;cytoplasm;translation release factor activity"	PRF1	"PRF1;g16713.t1;Cre01.g065550.t1.2;Cre01.g065550.t1.1"	PRFA1	"similar to eubacterial class 1 release factors (prfA, RF1); more likely chloroplast than mitochondrial"
+Cre16.g655100	GMM:30.99	signalling.unspecified					g15836.t1		
+Cre16.g674200			Chloroplast				g16636.t1		
+Cre16.g695950	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	Mitochondrion			MFL1	"g15549.t1;Cre16.g695950.t1.1;Cre16.g695950.t1.1;g15549.t1"	"MFL1;MFL1"	"Mitochondrial substrate carrier protein, similar to plant mitoferrins;;Mitochondrial substrate carrier protein, similar to plant mitoferrins;"
+Cre16.g677850			Chloroplast				"g16559.t1;g16559.t1"		
+Cre16.g686400			Chloroplast				"FAO13;Cre16.g686400.t1.1;g16366.t1;FAO13;Cre16.g686400.t1.1;g16366.t1"		
+Cre16.g649500							g15716.t1		
+Cre16.g679051	GMM:26.1	misc.misc2					"Cre16.g678950.t1.2;g16534.t1;g16534.t1;Cre16.g678950.t1.2"		
+Cre16.g693500	GMM:10.5.2	"cell wall.cell wall proteins.proline rich proteins"	Chloroplast			FAP40	"ISG-C1;ISG1;g15608.t1;ISG1;ISG-C1;g15608.t1"	"FAP40;FAP40"	"Putative extracellular matrix protein (cell wall protein); similar to Volvox ISG [PMID: 1600938]) and Chlamydomonas VSP-3 [PMID: 8000007]; ISG Genbank entry X65165; VSP-3 Genbank entry AY795084. Also known as flagella associated protein FAP40 [PMID: 15998802];Putative extracellular matrix protein (cell wall protein); similar to Volvox ISG [PMID: 1600938]) and Chlamydomonas VSP-3 [PMID: 8000007]; ISG Genbank entry X65165; VSP-3 Genbank entry AY795084. Also known as flagella associated protein FAP40 [PMID: 15998802]"
+Cre16.g684267							"Cre01.g069850.t1.2;g16811.t1;Cre01.g069850.t1.1;Cre01.g069850.t1.1;g16811.t1;Cre01.g069850.t1.2"		
+Cre16.g651850			"Secretory pathway"				"g15766.t1;g15766.t1"		
+Cre16.g680000	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"	Mitochondrion	"GO:0046933;GO:0015986"	"proton-transporting ATP synthase activity, rotational mechanism;ATP synthesis coupled proton transport"	ATP5	"Cre16.g680000.t1.1;ATP5;g16510.t1"	ATP5	"Mitochondrial ATP synthase, H+ transporting, subunit 5, Oligomycin sensitivity conferral protein (OSCP) or O subunit. Component of the peripheral stalk that links F1 and F0 domains. Homologous to the bacterial ATP synthase delta subunit (but not to the eukaryotic delta subunit of the central stalk). Gene from various eukaryotics named either ATP5 or ATPO"
+Cre16.g674600			Chloroplast				"g16627.t1;Cre16.g674600.t1.1;g16627.t1;Cre16.g674600.t1.1"		
+Cre16.g692116				"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"		"Cre01.g073000.t1.1;g16881.t1;g16881.t1;Cre01.g073000.t1.1;g16881.t1;Cre01.g073000.t1.1;g16881.t1;Cre01.g073000.t1.1"		
+Cre16.g688900			Mitochondrion			CYG68	g16172.t1	AMC1	"Mutant shows reduced accumulation of mitochondrial nd4 transcript and severe complex I deficiency; allelic to amc11"
+Cre16.g658900	GMM:34.99	transport.misc				TRP10			
+Cre16.g682150			Mitochondrion				"Cre16.g682150.t1.1;g16460.t1"		
+Cre16.g682700							"g16448.t1;Cre16.g682700.t1.1"		
+Cre16.g681600			"Secretory pathway"			CSV14	"Cre16.g681700.t2.1;g16471.t1;CSV14"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre16.g673150	GMM:27.3.55	"RNA.regulation of transcription.HDA"				HDA14	"Cre16.g673150.t1.1;HDA14;g16661.t1;HDA14;g16661.t1;Cre16.g673150.t1.1"	"HDA14;HDA14"	"Histone deacetylase. ChromDB HDA3401;Histone deacetylase. ChromDB HDA3401"
+Cre16.g685400	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Mitochondrion				"g16389.t1;TIC32-3;SDR26;Cre16.g685400.t1.1;Cre16.g685400.t1.1;SDR26;TIC32-3;g16389.t1;SDR26;TIC32-3;g16389.t1;Cre16.g685400.t1.1"		"Similar to Tic32 from Pisum sativum (AAS38575); belongs to the classical family of short chain dehydrogenases [PMID: 15180984]; lacks a calmodulin-binding domain [PMID: 17035502];Similar to Tic32 from Pisum sativum (AAS38575); belongs to the classical family of short chain dehydrogenases [PMID: 15180984]; lacks a calmodulin-binding domain [PMID: 17035502];Similar to Tic32 from Pisum sativum (AAS38575); belongs to the classical family of short chain dehydrogenases [PMID: 15180984]; lacks a calmodulin-binding domain [PMID: 17035502]"
+Cre16.g663551			Chloroplast						
+Cre16.g669525	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"				
+Cre16.g652000			Chloroplast						
+Cre16.g695851							"Cre16.g695844.t1.2;g15552.t1"		
+Cre16.g649700	GMM:1.3.13	"PS.calvin cycle.rubisco interacting"	Chloroplast	GO:0005515	"protein binding"		g15720.t1		
+Cre16.g662250			"Secretory pathway"				g15992.t1		
+Cre16.g672350							"g16680.t1;g16680.t1"		
+Cre16.g661500			"Secretory pathway"	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"		"Cre16.g661500.t1.1;g15973.t1;Cre16.g661500.t1.1;g15973.t1;g15973.t1;Cre16.g661500.t1.1"		
+Cre16.g683437			"Secretory pathway"				"g16152.t1;Cre01.g064500.t1.1;g16152.t1;Cre01.g064500.t1.1"		
+Cre16.g673204			Mitochondrion	GO:0005509	"calcium ion binding"				
+Cre16.g667354									
+Cre16.g692250	GMM:27.3.35	"RNA.regulation of transcription.bZIP transcription factor family"		"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"BLZ13;g15633.t1;g15633.t1;BLZ13;g15633.t1;BLZ13;g15633.t1;BLZ13"		"Basic-leucine zipper (bZIP) transcription factor;Basic-leucine zipper (bZIP) transcription factor;Basic-leucine zipper (bZIP) transcription factor;Basic-leucine zipper (bZIP) transcription factor"
+Cre16.g656466			"Secretory pathway"						
+Cre16.g667950			"Secretory pathway"				"Cre16.g667950.t1.1;g16279.t1"		
+Cre16.g687301	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"	Mitochondrion	"GO:0005524;GO:0005515"	"ATP binding;protein binding"		"g16345.t1;SRH26"		"SNF2-related helicase, ChromDB CHR3425; similar to TBP-associated factor 172"
+Cre16.g672833			"Secretory pathway"						
+Cre16.g689201			Chloroplast						
+Cre16.g673465									
+Cre16.g689983							"Cre01.g072000.t1.2;g16862.t1;Cre01.g072000.t1.1"		
+Cre16.g678250			Chloroplast				"Cre16.g678250.t1.1;g16549.t1;Cre16.g678250.t1.1;g16549.t1;Cre16.g678250.t1.1;g16549.t1;g16549.t1;Cre16.g678250.t1.1;Cre16.g678250.t1.1;g16549.t1"		
+Cre16.g670100	GMM:29.4	"protein.postranslational modification"	Chloroplast				"g16228.t1;g16228.t1;g16228.t1;g16228.t1"		
+Cre16.g685800							"Cre16.g685800.t1.1;g16380.t1"		
+Cre16.g677050			Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g16574.t1;g16574.t1;g16574.t1"		
+Cre16.g655500			"Secretory pathway"				"g15846.t1;g15846.t1;g15846.t1;g15846.t1;g15846.t1;g15846.t1;g15846.t1"		
+Cre16.g690500	"GMM:29.2.2.3.1;GMM:29.2.1.2.2.1730;GMM:29.2.1.1.3.99"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7/L30/S12;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.unknown"				NHP2	"NHP2;g16207.t1;Cre16.g690500.t1.1"	NHP2	"Structural Component of H/ACA snoRNPs which catalyze the snoRNA-guided pseudouridylation of the pre-rRNA and other RNA molecules; possesses homology to ribosomal protein L7"
+Cre16.g672000			Mitochondrion				"g16687.t1;Cre16.g672000.t1.1"		
+Cre16.g694850	"GMM:13.1.2.3.2;GMM:13.1.2.3"	"amino acid metabolism.synthesis.glutamate family.arginine.acetylglutamate kinase;amino acid metabolism.synthesis.glutamate family.arginine"	Chloroplast	"GO:0006526;GO:0004358"	"arginine biosynthetic process;glutamate N-acetyltransferase activity"	NGS1	"NGS1;g15573.t1;Cre16.g694850.t1.1;NGS1;Cre16.g694850.t1.1;g15573.t1;g15573.t1;NGS1;Cre16.g694850.t1.1"	"NAGS1;NAGS1;NAGS1"	"Involved in arginine biosynthesis; transfers the acetyl group from N-acetylornithine to glutamate to produce N-acetylglutamate, thus replenishing the biosynthetic pool; similar to bacterial ArgJ; probably marked by mutation arg10; the precursor self-cleaves at PxM-ATML processing site conserved in all eukaryotes, yielding two fragments that remain associated within an ?2 ?2 heterotetramer;Involved in arginine biosynthesis; transfers the acetyl group from N-acetylornithine to glutamate to produce N-acetylglutamate, thus replenishing the biosynthetic pool; similar to bacterial ArgJ; probably marked by mutation arg10; the precursor self-cleaves at PxM-ATML processing site conserved in all eukaryotes, yielding two fragments that remain associated within an ?2 ?2 heterotetramer;Involved in arginine biosynthesis; transfers the acetyl group from N-acetylornithine to glutamate to produce N-acetylglutamate, thus replenishing the biosynthetic pool; similar to bacterial ArgJ; probably marked by mutation arg10; the precursor self-cleaves at PxM-ATML processing site conserved in all eukaryotes, yielding two fragments that remain associated within an ?2 ?2 heterotetramer"
+Cre16.g687742			"Secretory pathway"				"Cre01.g071100.t1.1;FLA8;FAS13;g16842.t1"		"Identified as Fasciclin-Like Arabinogalactan 8 (FLA8) in [PMID: 31010036]"
+Cre16.g680566	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"g16778.t1;Cre01.g068300.t1.1;Cre01.g068300.t1.1;g16778.t1"		
+Cre16.g681900	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	"GO:0016020;GO:0015031"	"membrane;protein transport"	SECY1	"g16466.t1;SCY1;Cre16.g681900.t1.1"	SECY1	"Involved in translocating plastid stromal proteins into the thylakoid lumen."
+Cre16.g673950			"Secretory pathway"				"Cre16.g673950.t1.1;g16643.t1"		
+Cre16.g676757	GMM:34.7	transport.phosphate	"Secretory pathway"	"GO:0016020;GO:0006817;GO:0005315"	"membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity"	PTB8	"Cre01.g066900.t1.1;g16742.t2;PTB8;PTB8;Cre01.g066900.t1.1;g16742.t2;PTB8;Cre01.g066900.t1.1;g16742.t2"	"PTB8;PTB8;PTB8"	"Putative phosphate transporter, similar to yeast Pho89, Neurospora PHO4 probable Na+/Pi symporters; highest identity to PTB1 (60%) of the PTB family members.;Putative phosphate transporter, similar to yeast Pho89, Neurospora PHO4 probable Na+/Pi symporters; highest identity to PTB1 (60%) of the PTB family members.;Putative phosphate transporter, similar to yeast Pho89, Neurospora PHO4 probable Na+/Pi symporters; highest identity to PTB1 (60%) of the PTB family members."
+Cre16.g648100	GMM:31.1	cell.organisation		"GO:0034314;GO:0030833;GO:0015629;GO:0005885;GO:0005515"	"Arp2/3 complex-mediated actin nucleation;regulation of actin filament polymerization;actin cytoskeleton;Arp2/3 protein complex;protein binding"		"g15686.t1;g15686.t1;g15686.t1"		
+Cre16.g667700							"Cre16.g667700.t1.1;g16285.t1"		
+Cre16.g682475			"Secretory pathway"				"g16795.t1;Cre01.g069100.t1.1"		
+Cre16.g680250			"Secretory pathway"				"Cre16.g680250.t1.1;g16503.t1;g16503.t1;Cre16.g680250.t1.1"		
+Cre16.g675600							"g16606.t1;g16606.t1;g16606.t1"		
+Cre16.g679150							"Cre16.g679150.t1.1;g16527.t1"		
+Cre16.g687650						ANK20	"ANK20;g16335.t1"		"protein of unknown function with ankyrin repeats"
+Cre16.g692550	GMM:28.2	DNA.repair	Chloroplast	"GO:0030983;GO:0006298;GO:0005524"	"mismatched DNA binding;mismatch repair;ATP binding"	MSH4	"g15627.t1;MSH4"	MSH4	"Orthologous to MSH4 (AT4G17380) in Arabidopsis thaliana, which is involved in the early steps of meiotic recombination;"
+Cre16.g695500			"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"		"g15558.t2;SAMT2;MOT2.2"	MOTR2B	"Likely a molybdate transporter, probably plasma membrane; One of two MOT2 paralogs (Cre13.g580150 and Cre16.g695500); Note: not to be confused with Cre06.g309800 which was previously annotated as MOT2 as a motility-related gene;"
+Cre16.g676537			Chloroplast				g16585.t1		
+Cre16.g662902	GMM:29.2.3	protein.synthesis.initiation		GO:0044237	"cellular metabolic process"		g16004.t1		
+Cre16.g674900	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g16621.t1		
+Cre16.g653651			"Secretory pathway"				g15543.t1		
+Cre16.g696000	"GMM:3.5;GMM:26.2;GMM:10.1"	"minor CHO metabolism.others;misc.UDP glucosyl and glucoronyl transferases;cell wall.precursor synthesis"	"Secretory pathway"	"GO:0070569;GO:0008152"	"uridylyltransferase activity;metabolic process"		"g15548.t1;Cre16.g696000.t1.1;g15548.t1;Cre16.g696000.t1.1;g15548.t1;Cre16.g696000.t1.1"		
+Cre16.g690507			Mitochondrion						
+Cre16.g684500	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB62	"CSB62;TNP43;g16408.t1;Cre16.g684500.t1.1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre16.g668250							g16273.t1		
+Cre16.g691204									
+Cre16.g674291	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre01.g065850.t1.1;g16720.t1;g16720.t1;Cre01.g065850.t1.1"		
+Cre16.g648900			Mitochondrion				g15703.t1		
+Cre16.g679333			"Secretory pathway"				g16767.t1		
+Cre16.g648250							g15689.t1		
+Cre16.g668502									
+Cre16.g684043			Mitochondrion	"GO:0055114;GO:0016491;GO:0008152"	"oxidation-reduction process;oxidoreductase activity;metabolic process"		"Cre01.g069750.t1.1;ALDH24A1;g16809.t1;ALDH24A1;g16809.t1;Cre01.g069750.t1.1;Cre01.g069750.t1.1;g16809.t1;ALDH24A1;Cre01.g069750.t1.1;g16809.t1;ALDH24A1"	"ALDH24;ALDH24;ALDH24;ALDH24"	"Family 24 aldehyde dehydrogenase;Family 24 aldehyde dehydrogenase;Family 24 aldehyde dehydrogenase;Family 24 aldehyde dehydrogenase"
+Cre16.g681690			Chloroplast				"g16788.t1;Cre01.g068800.t1.2;Cre01.g068800.t1.1"		
+Cre16.g678101			Chloroplast				"Cre01.g067278.t1.1;Cre01.g067278.t1.2;g16755.t1"		
+Cre16.g682800							"g16446.t1;Cre16.g682800.t1.1;Cre16.g682800.t1.1;g16446.t1"		
+Cre16.g680850			Chloroplast			MDA1	"g16490.t1;OPR103;OPR103;g16490.t1;g16490.t1;OPR103"	"MDA1;MDA1;MDA1"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre16.g690879			"Secretory pathway"	GO:0016020	membrane	FAP173	FAP173	FAP173	"Found in flagellar proteome; Has distribution similar to IFT proteins but does not co-localize with IFT46"
+Cre16.g692350	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g15631.t1;g15631.t1"		
+Cre16.g672700			Chloroplast				"Cre16.g672700.t1.1;g16671.t1"		
+Cre16.g665550			"Secretory pathway"	GO:0051726	"regulation of cell cycle"		"g16064.t1;Cre16.g665550.t1.1;Cre16.g665550.t1.1;g16064.t1;g16064.t1;Cre16.g665550.t1.1"		
+Cre16.g672750	GMM:27.4	"RNA.RNA binding"		GO:0003723	"RNA binding"		"g16668.t1;Cre16.g672750.t1.1;g16668.t1;Cre16.g672750.t1.1"		
+Cre16.g690900	GMM:29.5	protein.degradation	Mitochondrion	"GO:0016021;GO:0006508;GO:0004252"	"integral component of membrane;proteolysis;serine-type endopeptidase activity"	RBL8	"g15667.t1;Cre16.g690900.t1.1;RBL8"		"similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579); lacks the catalytic Ser and hence probably inactive as a protease"
+Cre16.g683793	GMM:33.99	development.unspecified		"GO:0042254;GO:0005730"	"ribosome biogenesis;nucleolus"		"Cre01.g064550.t1.2;g16153.t1;Cre01.g064550.t1.1;Cre01.g064550.t1.1;g16153.t1;Cre01.g064550.t1.2"		
+Cre16.g656500	"GMM:34.99;GMM:34.1;GMM:27.3.35"	"transport.misc;transport.p- and v-ATPases;RNA.regulation of transcription.bZIP transcription factor family"		"GO:0046872;GO:0016021;GO:0015914;GO:0005524;GO:0004012;GO:0000287;GO:0000166"	"metal ion binding;integral component of membrane;phospholipid transport;ATP binding;phospholipid-translocating ATPase activity;magnesium ion binding;nucleotide binding"	ALA3	"ALA3;g15868.t1;g15868.t1;ALA3"	"ALA3;ALA3"	"potential phospholipid-transporting P-type ATPase, flippase;potential phospholipid-transporting P-type ATPase, flippase"
+Cre16.g686850	GMM:34.7	transport.phosphate		"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"	PTA4	"Cre16.g686850.t1.1;g16355.t1;PTA4"	PTA4	"Putative phosphate transporter homolog type A-4, similar to yeast Pho84 H+/Pi symporter; clusters with PTA2 and PTA3 on scaffold 14."
+Cre16.g693601	GMM:10.5.2	"cell wall.cell wall proteins.proline rich proteins"	"Secretory pathway"			ISG2	"ISG-C2;g15607.t1;ISG2"	ISG2	"putative extracellular matrix protein (cell wall protein); similar to Volvox ISG [PMID: 1600938]) and Chlamydomonas VSP-3 [PMID: 8000007], two glycoproteins with a hydroxyproline-rich (HR) domain; ISG Genbank entry X65165; VSP-3 Genbank entry AY795084"
+Cre16.g669850	GMM:29.5	protein.degradation	Chloroplast				"g16233.t1;Cre16.g669850.t1.1;Cre16.g669850.t1.1;g16233.t1"		
+Cre16.g679221	"GMM:31.1;GMM:27.3.39"	"cell.organisation;RNA.regulation of transcription.AtSR transcription factor family"	"Secretory pathway"			ANK27	"g16766.t1;Cre01.g067700.t1.2;ANK27;Cre01.g067700.t1.1;ANK27;Cre01.g067700.t1.1;Cre01.g067700.t1.2;g16766.t1;Cre01.g067700.t1.2;g16766.t1;Cre01.g067700.t1.1;ANK27"		"Contains 6 ankyrin repeats; ankyrin repeats fold into a helix-loop-helix structure with a beta-hairpin/loop region projecting out from the helices at a 90 degree angle;Contains 6 ankyrin repeats; ankyrin repeats fold into a helix-loop-helix structure with a beta-hairpin/loop region projecting out from the helices at a 90 degree angle;Contains 6 ankyrin repeats; ankyrin repeats fold into a helix-loop-helix structure with a beta-hairpin/loop region projecting out from the helices at a 90 degree angle"
+Cre16.g653200							g15795.t1		
+Cre16.g684603	GMM:27.1.20	"RNA.processing.degradation dicer"	"Secretory pathway"				"g16814.t1;Cre01.g069950.t1.1;Cre01.g069950.t1.1;g16814.t1;Cre01.g069950.t1.1;g16814.t1;g16814.t1;Cre01.g069950.t1.1"		
+Cre16.g684939	GMM:27.1.20	"RNA.processing.degradation dicer"	"Secretory pathway"				"g16817.t1;Cre01.g070100.t1.1;Cre01.g070100.t1.1;g16817.t1;g16817.t1;Cre01.g070100.t1.1"		
+Cre16.g660550			Chloroplast						
+Cre16.g692004	"GMM:29.9;GMM:20.2.1"	"protein.co-chaperones;stress.abiotic.heat"	Cytosol			DNJ21	"Cre01.g072950.t1.1;g16880.t1;DNJ21;Cre01.g072950.t1.1;DNJ21;g16880.t1"		"DnaJ-like protein; contains N-terminal J-domain (pfam00226) and DnaJ_C, DnaJ C terminal region (pfam01556); similar to Q5MJ90_CHLRE Radial spoke protein 16, Arabidopsis Q8L8S5, and Giardia lamblia Q7R3P4;DnaJ-like protein; contains N-terminal J-domain (pfam00226) and DnaJ_C, DnaJ C terminal region (pfam01556); similar to Q5MJ90_CHLRE Radial spoke protein 16, Arabidopsis Q8L8S5, and Giardia lamblia Q7R3P4"
+Cre16.g683953				"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"g16422.t1;g16422.t1;g16422.t1;g16422.t1"		
+Cre16.g662200			Mitochondrion				"CYA14;g15991.t1;CYA14;g15991.t1"		
+Cre16.g685150							"g16394.t1;Cre16.g685150.t1.1"		
+Cre16.g693250			Mitochondrion				"g15613.t1;Cre16.g693250.t1.1"		
+Cre16.g683035	GMM:29.5	protein.degradation	Mitochondrion				"g16800.t1;Cre01.g069250.t1.1;Cre01.g069250.t1.2"		
+Cre16.g694204	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"		"GO:0016593;GO:0016570;GO:0006368"	"Cdc73/Paf1 complex;histone modification;transcription elongation from RNA polymerase II promoter"		"Cre72.g794650.t1.2;Cre72.g794650.t1.1;g15592.t1;Cre72.g794650.t1.1;g15592.t1;Cre72.g794650.t1.2;Cre72.g794650.t1.1;g15592.t1;Cre72.g794650.t1.2;Cre72.g794650.t1.2;Cre72.g794650.t1.1;g15592.t1;Cre72.g794650.t1.2;g15592.t1;Cre72.g794650.t1.1"		
+Cre16.g655900			"Secretory pathway"	"GO:0032259;GO:0008168"	"methylation;methyltransferase activity"		"g15855.t1;Cre16.g655900.t1.1;g15855.t1;Cre16.g655900.t1.1"		
+Cre16.g655150	GMM:1.1.99	PS.lightreaction.unspecified	"Secretory pathway"				"g15837.t1;Cre16.g655150.t1.1"		
+Cre16.g693800				GO:0008270	"zinc ion binding"		"g15602.t1;g15602.t1"		
+Cre16.g683350						TEH6	"g16435.t1;Cre16.g683350.t1.1;TEH6;g16435.t1;Cre16.g683350.t1.1;TEH6;TEH6;Cre16.g683350.t1.1;g16435.t1;TEH6;Cre16.g683350.t1.1;g16435.t1"		
+Cre16.g677650			Chloroplast				g16563.t1		
+Cre16.g672200			Chloroplast	"GO:0034453;GO:0008017;GO:0005813"	"microtubule anchoring;microtubule binding;centrosome"		"BALD11;g16683.t1"	BLD11	"Mutants have no cilia (bald phenotype); Likely involved in ciliogenesis; Conserved in green algae"
+Cre16.g682251			"Secretory pathway"				"Cre01.g069010.t1.2;Cre01.g069010.t1.1;g16793.t1"		
+Cre16.g658650	"GMM:31.1.1.3.11;GMM:31.1"	"cell.organisation.cytoskeleton.Myosin.Class XI;cell.organisation"		"GO:0016459;GO:0005524;GO:0005515;GO:0003774"	"myosin complex;ATP binding;protein binding;motor activity"	MYO1	"MYO1;g15911.t1;MYO1;g15911.t1;g15911.t1;MYO1;g15911.t1;MYO1;g15911.t1;MYO1;g15911.t1;MYO1"	"MYO1;MYO1;MYO1;MYO1;MYO1;MYO1"	
+Cre16.g650050	GMM:26.23	misc.rhodanese	Chloroplast				"g15728.t1;Cre16.g650050.t1.1;Cre16.g650050.t1.1;g15728.t1"		
+Cre16.g689150	GMM:11.10.4	"lipid metabolism.glycolipid synthesis.sulfolipid synthase"	Chloroplast			SQD3	"g16178.t1;GTR23;Cre16.g689150.t1.1"	SQD3	"sulfolipid synthase, adds sulfoquinovose to diacylglycerol to produce the plant sulfolipid, sulfoquinovosyldiacylglycerol"
+Cre16.g677100			"Secretory pathway"				g16573.t2		
+Cre16.g655200	GMM:34.7	transport.phosphate	"Secretory pathway"	"GO:0016020;GO:0006817;GO:0005315"	"membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity"	PTB6	"Cre16.g655200.t1.1;PTB6;g15838.t2;PTB6;g15838.t2;Cre16.g655200.t1.1;PTB6;Cre16.g655200.t1.1;g15838.t2;PTB6;Cre16.g655200.t1.1;g15838.t2"	"PTB6;PTB6;PTB6;PTB6"	"Putative phosphate transporter homolog type B6, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters;Putative phosphate transporter homolog type B6, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters;Putative phosphate transporter homolog type B6, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters;Putative phosphate transporter homolog type B6, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters"
+Cre16.g692650	"GMM:3.5;GMM:10.5"	"minor CHO metabolism.others;cell wall.cell wall proteins"				CGL4	"g15624.t1;Cre16.g692650.t1.1"	CGL4	
+Cre16.g687854			Mitochondrion				"g16843.t1;FLA7;FAS12;Cre01.g071150.t1.1"		"Identified as Fasciclin-Like Arabinogalactan 7 (FLA7) in [PMID: 31010036]"
+Cre16.g685929							"Cre01.g064800.t1.1;g16159.t1"		
+Cre16.g689650	"GMM:31.1;GMM:29.5.2"	"cell.organisation;protein.degradation.autophagy"		"GO:0005737;GO:0000045"	"cytoplasm;autophagosome assembly"	ATG8	"g16188.t1;APG8;Cre16.g689650.t1.1"	ATG8	"Component of autophagosomes; unique ubiquitin-like protein whose conjugation target is lipid phosphatidylethanolamine (PE); Atg8p-PE is anchored to membranes, is involved in phagophore expansion, and may mediate membrane fusion during autophagosome formation; deconjugation of Atg8p-PE is required for efficient autophagosome biogenesis, degradation of lipid droplets and TAG upon resupply of N and for starch accumulation under P-starvation"
+Cre16.g648500	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR23	"Cre16.g648500.t1.1;HTR41;g15695.t1"	HTR23	"Replication linked H3; histone gene cluster XXIII (type 43)"
+Cre16.g689199									
+Cre16.g651150							"g15752.t3;g15752.t3;g15752.t3;g15752.t3"		
+Cre16.g654100			Chloroplast				"g15815.t1;TET2"		"converts 5-methylcytosine (5mC) to 5-glyceryl-methylcytosines (5gmC) using vitamin C (not 2-oxoglutarate) as a co-substrate; Fe-dependent dioxygenase; homologous to TET1/CMD1; part of the DNA-1_cRei transposon"
+Cre16.g657200	GMM:24	"biodegradation of xenobiotics"	"Secretory pathway"			GOX17	"g15882.t1;GOX18"	GOX17	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); n"
+Cre16.g693850			Chloroplast						
+Cre16.g674650	GMM:18.13	"Co-factor and vitamine metabolism.isochorismatase"	"Secretory pathway"	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"Cre16.g674650.t1.1;g16626.t1"		
+Cre16.g669300			Mitochondrion				"g16246.t1;Cre16.g669300.t1.1"		
+Cre16.g683950	"GMM:29.3.4.99;GMM:29.3.4.1"	"protein.targeting.secretory pathway.unspecified;protein.targeting.secretory pathway.ER"	Mitochondrion	"GO:0006886;GO:0006614;GO:0005785;GO:0005525;GO:0005047;GO:0003924"	"intracellular protein transport;SRP-dependent cotranslational protein targeting to membrane;signal recognition particle receptor complex;GTP binding;signal recognition particle binding;GTPase activity"	SRP1	"SRP1;Cre16.g683950.t1.1;SRRA1;g16421.t1"	SRP1	"Expressed Protein. Similar to the Alpha subunit of the Signal Recognition Particle (SRP) Receptor. Involved in Protein Translocation across the ER membrane. Contains GTPase and AAA-ATPase domains."
+Cre16.g657350	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g15885.t1;Cre16.g657350.t1.1;CKIN2.9;CKIN2.9;Cre16.g657350.t1.1;g15885.t1"	"SNRK2I;SNRK2I"	"Mediates abiotic stress responses;Mediates abiotic stress responses"
+Cre16.g674500	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215"	"ATPase activity;integral component of membrane;transport;ATP binding;transporter activity"		"g16630.t1;Cre16.g674500.t1.1"	ABCA4	"ABCA superfamily; Along with ABCA2 (Cre14.g613950), is co-orthologous with ABCA9, ABCA11, and ABCA2 in Arabidopsis thaliana;"
+Cre16.g678450			Mitochondrion				g16545.t1		
+Cre16.g671000	"GMM:9.2.3;GMM:9.2.1.3"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type II).mitochondrial;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.mitochondrial"	Mitochondrion	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	NDA5	"NDA5;Cre16.g671000.t1.1;g16299.t1;Cre16.g671000.t1.1;g16299.t1;NDA5;Cre16.g671000.t1.1;g16299.t1;NDA5"	"NDA5;NDA5;NDA5"	"NADH:quinone reductase (non-electrogenic);NADH:quinone reductase (non-electrogenic);NADH:quinone reductase (non-electrogenic)"
+Cre16.g653934									
+Cre16.g668837			Chloroplast						
+Cre16.g659600							g15933.t1		
+Cre16.g695200									
+Cre16.g690250	"GMM:29.1.30;GMM:23.5.2"	"protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase"	"Secretory pathway"	"GO:0009982;GO:0009451;GO:0006396;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA processing;RNA binding;pseudouridine synthesis"	PUS18	"g16202.t1;Cre16.g690250.t1.1;PUS18"		
+Cre16.g678400	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Mitochondrion				g16546.t1		
+Cre16.g694403			"Secretory pathway"						
+Cre16.g682552	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG37			
+Cre16.g679152									
+Cre16.g657050			"Secretory pathway"				"g15879.t1;Cre16.g657050.t1.1"		
+Cre16.g649433							"g15714.t1;g15714.t1"		
+Cre16.g673553							g16651.t1		
+Cre16.g673821	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre01.g063250.t1.1;g16124.t1;Cre01.g063250.t1.1;g16124.t1"		
+Cre16.g678100	"GMM:29.3.4.99;GMM:29.3.4.3"	"protein.targeting.secretory pathway.unspecified;protein.targeting.secretory pathway.vacuole"				VPS28	"VPS28;Cre16.g678100.t1.1;g16553.t1;VPS28;Cre16.g678100.t1.1;g16553.t1"	"VPS28;VPS28"	"Component of the ESCRT-I protein complex, involved in ubiquitin-mediated internalization of proteins into multi-vesicular bodies (late endosomes); expressed Protein. Similar to VPS28, a component of the ESCRT-I protein complex, involved in ubiquitin-mediated internalization of proteins into multi-vesicular bodies (late endosomes);Component of the ESCRT-I protein complex, involved in ubiquitin-mediated internalization of proteins into multi-vesicular bodies (late endosomes); expressed Protein. Similar to VPS28, a component of the ESCRT-I protein complex, involved in ubiquitin-mediated internalization of proteins into multi-vesicular bodies (late endosomes)"
+Cre16.g691440				GO:0005515	"protein binding"	FAP43	"Cre01.g072600.t1.1;g16875.t1;Cre01.g072600.t1.2;Cre01.g072600.t1.1;g16875.t1;Cre01.g072600.t1.2"	"FAP43;FAP43"	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]; part of tether complex that constrains inner arm I1/f;Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]; part of tether complex that constrains inner arm I1/f"
+Cre16.g685389	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"CKIN3;Cre01.g070300.t1.2;Cre01.g070300.t1.1;CKINL;CKINL1;g16821.t1;Cre01.g070300.t1.2;CKINL;Cre01.g070300.t1.1;CKIN3;CKINL1;g16821.t1"		"Putative member of snRK1-family proteins that mediate abiotic stress responses;Putative member of snRK1-family proteins that mediate abiotic stress responses"
+Cre16.g667300									
+Cre16.g673550	"GMM:29.2.3;GMM:13.99;GMM:13.1.3.4"	"protein.synthesis.initiation;amino acid metabolism.misc;amino acid metabolism.synthesis.aspartate family.methionine"		GO:0044237	"cellular metabolic process"	CGLD36	"g16650.t1;g16650.t1"	"CGLD36;CGLD36"	
+Cre16.g668600			Chloroplast				"Cre16.g668600.t1.1;g16263.t1"		
+Cre16.g664050	GMM:20.1	stress.biotic					"Cre16.g664050.t1.1;g16033.t2;g16033.t2;Cre16.g664050.t1.1"		
+Cre16.g687070			Mitochondrion						
+Cre16.g661150			Chloroplast			CGL5	g15966.t1	CGL5	
+Cre16.g664801	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"	Mitochondrion	"GO:0016021;GO:0006508;GO:0004252"	"integral component of membrane;proteolysis;serine-type endopeptidase activity"	RBL4	"RBL4;g16048.t1;Cre16.g664800.t1.2"		"similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579); possibly organelle-targeted"
+Cre16.g682811			Mitochondrion				g16798.t1		
+Cre16.g686173				"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"		"Cre01.g070500.t1.2;g16828.t1;Cre01.g070500.t1.1"		
+Cre16.g680678	GMM:27.1.19	RNA.processing.ribonucleases				TRZ2	"g16779.t1;Cre01.g068350.t1.1;TRZ2"		"RNase Z-like protein, beta-lactamase family"
+Cre16.g677429			Chloroplast						
+Cre16.g684100							"Cre16.g684100.t1.1;g16416.t1;Cre16.g684100.t1.1;g16416.t1"		
+Cre16.g676250			Mitochondrion	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT28	"g16592.t1;MFT28;Cre16.g676250.t1.1"		Permease
+Cre16.g685901	GMM:29.3.1	protein.targeting.nucleus		"GO:0008536;GO:0006886;GO:0005515"	"Ran GTPase binding;intracellular protein transport;protein binding"		g16379.t1		
+Cre16.g678094							g16137.t1		
+Cre16.g692750							g15622.t1		
+Cre16.g690000			"Secretory pathway"			HPAT2	"CGL147;Cre16.g690000.t1.1;g16196.t1;Cre16.g690000.t1.1;CGL147;g16196.t1"	"HPAT2;HPAT2"	"GT8 family protein, Conserved in the Green Lineage; HPAT1 and HPAT2 share co-orthologous relationship with three HPAT genes in Arabidopsis;;GT8 family protein, Conserved in the Green Lineage; HPAT1 and HPAT2 share co-orthologous relationship with three HPAT genes in Arabidopsis;"
+Cre16.g681200			Mitochondrion				"g16482.t1;Cre16.g681200.t1.1;Cre16.g681200.t1.1;g16482.t1;g16482.t1;Cre16.g681200.t1.1;g16482.t1;Cre16.g681200.t1.1;Cre16.g681200.t1.1;g16482.t1;g16482.t1;Cre16.g681200.t1.1"		
+Cre16.g688550	GMM:21.2.2	"redox.ascorbate and glutathione.glutathione"		GO:0005515	"protein binding"	GSTS1	"Cre16.g688550.t1.1;GST1;g16164.t1"	GSTS1	"Sigma-class glutathione-S-transferase gene GSTS1 from [PMID: 22529359]; One of three paralogs (Cre16.g670973, Cre16.g682725, Cre16.g688550);"
+Cre16.g658200			Mitochondrion				g15903.t1		
+Cre16.g668950	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"	"GO:0008270;GO:0006508;GO:0004181"	"zinc ion binding;proteolysis;metallocarboxypeptidase activity"		"g16256.t1;CPZ;CPZ;g16256.t1;CPZ;g16256.t1"		
+Cre16.g676150	GMM:21.6	"redox.dismutases and catalases"	"Secretory pathway"	"GO:0055114;GO:0046872;GO:0006801;GO:0004784"	"oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity"	MSD3	"g16594.t1;Cre16.g676150.t1.1"	MSD3	"Expression is up-regulated severalfold in Mn-deficient cells"
+Cre16.g655430			"Secretory pathway"				"Cre16.g655430.t1.1;g15844.t1;g15844.t1;Cre16.g655430.t1.1"		
+Cre16.g689376	GMM:29.4	"protein.postranslational modification"					g16182.t1		
+Cre16.g666250	"GMM:34.99;GMM:34"	"transport.misc;transport"	"Secretory pathway"				"TPT26;g16078.t1;Cre16.g666250.t1.1;TPT27;TPT27;Cre16.g666250.t1.1;g16078.t1;TPT26;TPT27;Cre16.g666250.t1.1;g16078.t1;TPT26;TPT26;g16078.t1;Cre16.g666250.t1.1;TPT27"		"UAA transporter family;UAA transporter family;UAA transporter family;UAA transporter family"
+Cre16.g674050	GMM:26.1	misc.misc2		"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	ADH12	"ADH12;Cre16.g674050.t1.1;g16641.t1"		
+Cre16.g679876	GMM:34.15	transport.potassium		GO:0051260	"protein homooligomerization"		"Cre01.g064000.t1.1;g16142.t1;Cre01.g064000.t1.1;g16142.t1;g16142.t1;Cre01.g064000.t1.1"		
+Cre16.g650700	GMM:13.1.1.3.11	"amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase"	Mitochondrion				"g15743.t1;g15743.t1"		
+Cre16.g681351			Mitochondrion				"g16476.t1;Cre16.g681351.t1.1;Cre16.g681351.t1.1;g16476.t1;Cre16.g681351.t1.1;g16476.t1"		
+Cre16.g661976									
+Cre16.g685700							"Cre16.g685700.t1.1;g16382.t1"		
+Cre16.g674350			"Secretory pathway"	"GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723"	"translation;ribosome;intracellular;structural constituent of ribosome;RNA binding"	MRPS13	"g16633.t1;uS13m;MRPS13;Cre16.g674350.t1.1"	MRPS13	
+Cre16.g671350	GMM:14.1	S-assimilation.APS	"Secretory pathway"	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS2	"g16292.t1;Cre16.g671350.t1.1;g16292.t1;Cre16.g671350.t1.1"	"ARS2;ARS2"	"Periplasmic arylsulfatase (aryl-sulfate sulphohydrolase) [PMID: 2476654]; corresponds to Genbank entry X1618. The nearly identical gene ARS1 is nearby in the genomic sequence, in inverted orientation;Periplasmic arylsulfatase (aryl-sulfate sulphohydrolase) [PMID: 2476654]; corresponds to Genbank entry X1618. The nearly identical gene ARS1 is nearby in the genomic sequence, in inverted orientation"
+Cre16.g669150	GMM:5.3	fermentation.ADH		"GO:0055114;GO:0046872;GO:0016491"	"oxidation-reduction process;metal ion binding;oxidoreductase activity"	ADH13	"ADH13A;ADH13;Cre16.g669150.t1.1;g16249.t1;ADH13A;ADH13;g16249.t1;Cre16.g669150.t1.1"		"inactive paralog of ADH1; another pseudogene (Cre16.g669125) is nearby, in divergent orientation;inactive paralog of ADH1; another pseudogene (Cre16.g669125) is nearby, in divergent orientation"
+Cre16.g652600			Mitochondrion				"g15783.t1;g15783.t1"		
+Cre16.g673057							"g16708.t1;Cre01.g065367.t1.1"		
+Cre16.g657750			Mitochondrion			CCD2	"Cre16.g657750.t1.1;CCD2;g15893.t1;CCD2;g15893.t1;Cre16.g657750.t1.1;Cre16.g657750.t1.1;g15893.t1;CCD2"		"related to carotenoid 9,10-9',10' cleavage dioxygenase which in land plants participates in abscisic acid biosynthesis; could play a similar role (PMID: 16327238);related to carotenoid 9,10-9',10' cleavage dioxygenase which in land plants participates in abscisic acid biosynthesis; could play a similar role (PMID: 16327238);related to carotenoid 9,10-9',10' cleavage dioxygenase which in land plants participates in abscisic acid biosynthesis; could play a similar role (PMID: 16327238)"
+Cre16.g681251									
+Cre16.g675100			Mitochondrion	GO:0005515	"protein binding"	CPLD53	"g16616.t1;g16616.t1"	"CPLD53;CPLD53"	"Target of CRR1;Target of CRR1"
+Cre16.g690431				GO:0071949	"FAD binding"		"g16866.t2;Cre01.g072200.t2.1;g16866.t2;Cre01.g072200.t2.1;g16866.t2;Cre01.g072200.t2.1;g16866.t2;Cre01.g072200.t2.1"		
+Cre16.g661400							"g15971.t1;g15971.t1"		
+Cre16.g691552	"GMM:9.2.2;GMM:9.2.1.4;GMM:9.2.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.internal matrix;mitochondrial electron transport / ATP synthesis.NADH-DH (type II).internal matrix"	Mitochondrion	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	NDA1	"NDA1;Cre01.g072650.t1.1;g16876.t1;Cre01.g072650.t1.2;Cre01.g072650.t1.1;NDA1;g16876.t1;Cre01.g072650.t1.2;Cre01.g072650.t1.1;NDA1;g16876.t1;Cre01.g072650.t1.2;Cre01.g072650.t1.1;NDA1;g16876.t1;Cre01.g072650.t1.2;g16876.t1;Cre01.g072650.t1.2;Cre01.g072650.t1.1;NDA1;NDA1;Cre01.g072650.t1.1;g16876.t1;Cre01.g072650.t1.2;Cre01.g072650.t1.2;g16876.t1;Cre01.g072650.t1.1;NDA1"	"NDA1;NDA1;NDA1;NDA1;NDA1;NDA1;NDA1"	"NADH:quinone reductase (non-electrogenic); probably mitochondrial (by similarity to AT2G29990);NADH:quinone reductase (non-electrogenic); probably mitochondrial (by similarity to AT2G29990);NADH:quinone reductase (non-electrogenic); probably mitochondrial (by similarity to AT2G29990);NADH:quinone reductase (non-electrogenic); probably mitochondrial (by similarity to AT2G29990);NADH:quinone reductase (non-electrogenic); probably mitochondrial (by similarity to AT2G29990);NADH:quinone reductase (non-electrogenic); probably mitochondrial (by similarity to AT2G29990);NADH:quinone reductase (non-electrogenic); probably mitochondrial (by similarity to AT2G29990)"
+Cre16.g680900	GMM:27.2	RNA.transcription	Chloroplast	"GO:0006366;GO:0006351;GO:0005665;GO:0003899;GO:0003677"	"transcription from RNA polymerase II promoter;transcription, DNA-templated;DNA-directed RNA polymerase II, core complex;DNA-directed RNA polymerase activity;DNA binding"	RPB1	"Cre16.g680900.t1.1;g16489.t1;RPB1"	RPB1	"EC 2.7.7.6"
+Cre16.g676600			Mitochondrion				g16583.t1		
+Cre16.g681800			"Secretory pathway"	"GO:0052726;GO:0052725;GO:0047325;GO:0032957;GO:0005622;GO:0005524;GO:0000287"	"inositol-1,3,4-trisphosphate 5-kinase activity;inositol-1,3,4-trisphosphate 6-kinase activity;inositol tetrakisphosphate 1-kinase activity;inositol trisphosphate metabolic process;intracellular;ATP binding;magnesium ion binding"		"g16468.t1;IPK;g16468.t1;IPK"		"Or inositol-tetrakisphosphate 1-kinase. Contains an Regulator of chromosome condensation, RCC1 domain;Or inositol-tetrakisphosphate 1-kinase. Contains an Regulator of chromosome condensation, RCC1 domain"
+Cre16.g688633	GMM:28.2	DNA.repair	Chloroplast				"g16166.t2;Cre16.g688633.t1.1"		
+Cre16.g688414			Mitochondrion				"Cre01.g071400.t1.1;g16848.t1"		
+Cre16.g694703				"GO:0016020;GO:0008236;GO:0006508"	"membrane;serine-type peptidase activity;proteolysis"		"g15578.t1;g15578.t1"	"CGL57;CGL57"	"Similar to mitochondrial inner membrane signal peptidase; Conserved in the green lineage;Similar to mitochondrial inner membrane signal peptidase; Conserved in the green lineage"
+Cre16.g665250	"GMM:1.1.99.1;GMM:1"	"PS.lightreaction.unspecified.TEF;PS"	Chloroplast			TEF6	"TEF6;g16056.t1;Cre16.g665250.t1.1"	APE1	"Homolog of Arabidopsis APE1 (Acclimation of Photosynthesis to Environment) that is required for acclimation of photosynthesis to various light intensity; TEF6, found in thylakoid proteome by Hippler and co-workers; Chlamydomonas mutant shows light-sensitivity in low CO2,"
+Cre16.g650450						FAP219	"g15737.t1;Cre16.g650450.t1.1"	FAP219	"Found in the flagellar proteome"
+Cre16.g672609							"g16704.t1;Cre01.g065250.t1.1;g16704.t1;Cre01.g065250.t1.1;g16704.t1;Cre01.g065250.t1.1"		
+Cre16.g686510			"Mitochondrion;Chloroplast"				"g16831.t2;Cre01.g070650.t1.1;Cre01.g070650.t1.2;Cre01.g070650.t1.1;g16831.t2;Cre01.g070650.t1.2;g16831.t2;Cre01.g070650.t1.2;Cre01.g070650.t1.1;Cre01.g070650.t1.1;Cre01.g070650.t1.2;g16831.t2"		
+Cre16.g654400			Mitochondrion				"g15820.t1;g15820.t1"		
+Cre16.g647500	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			NRX4	"g15674.t2;NRX4;NRX4;g15674.t2"		
+Cre16.g686600							"Cre16.g686600.t1.1;g16361.t1"		
+Cre16.g675749	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin				SUM2	"Cre01.g066450.t1.2;g16733.t1;SUMO97;SUM2;Cre01.g066450.t1.1"	SUMO2	"Post-translational modification by SUMO modulates many important cellular processes; Biochemical activity verified"
+Cre16.g661050	GMM:29.2.1.2.2.34	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L34"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL34	"g15964.t1;Cre16.g661050.t1.1"	RPL34	"Cytosolic 60S large ribosomal subunit protein L34"
+Cre16.g694207				GO:0055114	"oxidation-reduction process"		"g15595.t1;Cre72.g794750.t1.1"		
+Cre16.g680150			"Secretory pathway"				"g16505.t1;g16505.t1"		
+Cre16.g670650			"Secretory pathway"						
+Cre16.g651450			"Secretory pathway"				"g15758.t1;g15758.t1;g15758.t1"		
+Cre16.g671300				"GO:0016021;GO:0015299;GO:0006812"	"integral component of membrane;solute:proton antiporter activity;cation transport"		"g16293.t1;Cre16.g671300.t1.1"		
+Cre16.g671600							"g16695.t1;g16695.t1;g16695.t1"		
+Cre16.g688202			Chloroplast				"Cre16.g688100.t1.2;g16325.t1"		
+Cre16.g683700				GO:0016021	"integral component of membrane"		"Cre16.g683700.t1.1;g16428.t1"		
+Cre16.g675500	"GMM:31.3.1;GMM:29.8;GMM:29.6.3.1"	"cell.cycle.peptidylprolyl isomerase;protein.assembly and cofactor ligation;protein.folding.immunophilins (IMM).FKBPs"	Chloroplast	GO:0006457	"protein folding"	FKB16-5	"FKB16-5;g16608.t1;FKB8;Cre16.g675500.t1.1"	FKB16E	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPiase) (Rotamase) (Immunophilin); homologous to Cyanobacterial FKBPs and At5g45680 (FKBP13, thylakoid lumen); but could be mitochondrial as it lacks a RR TAT targeting motif [PMID: 15701785]; linked to FKB16-2"
+Cre16.g675300	"GMM:34.7;GMM:34.2"	"transport.phosphate;transport.sugars"	Chloroplast	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	PHT8	"PHT4-8;MFT9;PHT8;g16612.t1;PHT8;MFT9;g16612.t1;PHT4-8;MFT9;PHT4-8;PHT8;g16612.t1;g16612.t1;PHT8;MFT9;PHT4-8;PHT4-8;PHT8;MFT9;g16612.t1;PHT8;g16612.t1;PHT4-8;MFT9"	"PHT4H;PHT4H;PHT4H;PHT4H;PHT4H;PHT4H"	"organic anion transporter; related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;organic anion transporter; related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;organic anion transporter; related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;organic anion transporter; related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;organic anion transporter; related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters;organic anion transporter; related to putative Arabidopsis sodium, phosphate major facilitator superfamily of transporters"
+Cre16.g657450				GO:0016787	"hydrolase activity"	MPA12	"g15887.t1;MPA12"		
+Cre16.g666050			Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	CPLD49	"g16074.t1;Cre16.g666050.t1.1;SCD1;SCD1;Cre16.g666050.t1.1;g16074.t1;SCD1;Cre16.g666050.t1.1;g16074.t1"	"CPLD49;CPLD49;CPLD49"	"Conserved in the Plant Lineage and Diatoms; saccharopine dehydrogenase-like protein; associates with thylakoid membrane where it may form a complex with CPLD38;Conserved in the Plant Lineage and Diatoms; saccharopine dehydrogenase-like protein; associates with thylakoid membrane where it may form a complex with CPLD38;Conserved in the Plant Lineage and Diatoms; saccharopine dehydrogenase-like protein; associates with thylakoid membrane where it may form a complex with CPLD38"
+Cre16.g667769			Chloroplast						
+Cre16.g674890	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	"Secretory pathway"	"GO:0006355;GO:0003700"	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	CGLD5B	"g16127.t1;Cre01.g063350.t1.2;CGLD5B;Cre01.g063350.t1.1;CGLD5B;g16127.t1;Cre01.g063350.t1.1;Cre01.g063350.t1.2;CGLD5B;g16127.t1;Cre01.g063350.t1.1;Cre01.g063350.t1.2;Cre01.g063350.t1.2;CGLD5B;Cre01.g063350.t1.1;g16127.t1;g16127.t1;Cre01.g063350.t1.1;CGLD5B;Cre01.g063350.t1.2"	"CGLD5B;CGLD5B;CGLD5B;CGLD5B;CGLD5B"	
+Cre16.g664700			Mitochondrion	GO:0016020	membrane	SHY1	"Cre16.g664700.t1.1;SHY1;g16046.t1"	SHY1	"Mitochondrial protein Surfeit 1/SURF1/SHY1, required for expression of cytochrome oxidase. Probable mitochondrial inner membrane protein required for normal respiration, possible chaperone involved in assembly of cytochrome c oxidase; similar to SURF1 from mammals, chickens, and D. melanogaster; similar to Shy1p from Saccharomyces cerevisiae"
+Cre16.g681100			Chloroplast						
+Cre16.g673050							g16663.t1		
+Cre16.g666677			Mitochondrion						
+Cre16.g679557			"Secretory pathway"			FAS5	"g16769.t1;Cre01.g067850.t1.1;FAS5;Cre01.g067850.t1.2"		"Protein contains the fasciclin FAS1 domain (= BIgH3 domain), which is an extracellular module of about 140 amino acid residues; it has been suggested that the FAS1 domain represents an ancient cell adhesion domain common to plants and animals;"
+Cre16.g673600	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g16649.t1		
+Cre16.g669350	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"g16244.t1;g16244.t1"		
+Cre16.g672600	GMM:29.6.1	"protein.folding.prefoldin and trigger factor"		GO:0005515	"protein binding"	"Monad;WDR92"	"Cre16.g672600.t1.1;DNAAF10;g16673.t1"	WDR92	"Human ortholog is named DNAAF10; A wdr92 mutant in Chlamydomonas is aflagellate or has short stumpy flagella lacking both dynein arms;"
+Cre16.g694700							"Cre16.g694700.t1.1;g15577.t1"		
+Cre16.g679400			Chloroplast				g16522.t1		
+Cre16.g665050	GMM:34.21	transport.calcium		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	CAV2	"CAV2;Cre16.g665050.t1.1;g16053.t1;Cre16.g665050.t1.1;g16053.t1;CAV2;g16053.t1;Cre16.g665050.t1.1;CAV2;CAV2;g16053.t1;Cre16.g665050.t1.1;g16053.t1;Cre16.g665050.t1.1;CAV2"	"CAV2;CAV2;CAV2;CAV2;CAV2"	"Voltage-dependent 4-domain calcium channel, alpha subunit;Voltage-dependent 4-domain calcium channel, alpha subunit;Voltage-dependent 4-domain calcium channel, alpha subunit;Voltage-dependent 4-domain calcium channel, alpha subunit;Voltage-dependent 4-domain calcium channel, alpha subunit"
+Cre16.g675200							g16614.t1		
+Cre16.g648600			"Secretory pathway"				"g15697.t1;g15697.t1;g15697.t1;g15697.t1;g15697.t1"		
+Cre16.g648800				GO:0005515	"protein binding"		g15701.t1		
+Cre16.g692450			Chloroplast				"g15629.t1;Cre16.g692450.t1.1;g15629.t1;Cre16.g692450.t1.1"		
+Cre16.g684505			"Secretory pathway"				"g16155.t1;Cre01.g064600.t1.1"		
+Cre16.g666602			"Secretory pathway"						
+Cre16.g681450			Mitochondrion			ANK6	"g16474.t1;ANK6;Cre16.g681450.t1.1;ANK6;Cre16.g681450.t1.1;g16474.t1;ANK6;Cre16.g681450.t1.1;g16474.t1"		"protein of unknown function with ankyrin repeats;protein of unknown function with ankyrin repeats;protein of unknown function with ankyrin repeats"
+Cre16.g692100							"g15636.t1;g15636.t1"		
+Cre16.g659650	GMM:29.4	"protein.postranslational modification"					g15934.t1		
+Cre16.g660750						CC2D2A	"CC2D2A;g15958.t1;g15958.t1;CC2D2A;CC2D2A;g15958.t1"	"MKS6;MKS6;MKS6"	"Transition zone protein; Found in basal body proteome as MKS-6 (Meckel syndrome gene 6); Related to CC2D2A,B in humans; Human homolog is causative of Joubert and Meckel syndromes;Transition zone protein; Found in basal body proteome as MKS-6 (Meckel syndrome gene 6); Related to CC2D2A,B in humans; Human homolog is causative of Joubert and Meckel syndromes;Transition zone protein; Found in basal body proteome as MKS-6 (Meckel syndrome gene 6); Related to CC2D2A,B in humans; Human homolog is causative of Joubert and Meckel syndromes"
+Cre16.g661800							"g15981.t2;Cre16.g661800.t1.1;g15981.t2;Cre16.g661800.t1.1"		
+Cre16.g654900	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g15831.t1		
+Cre16.g667413									
+Cre16.g668400			"Secretory pathway"				"g16270.t1;Cre16.g668400.t1.1;Cre16.g668400.t1.1;g16270.t1;Cre16.g668400.t1.1;g16270.t1;g16270.t1;Cre16.g668400.t1.1;g16270.t1;Cre16.g668400.t1.1"		
+Cre16.g668150			"Secretory pathway"				"Cre16.g668150.t1.1;g16275.t1;Cre16.g668150.t1.1;g16275.t1"		
+Cre16.g672850			Mitochondrion				"g16666.t1;g16666.t1;g16666.t1"		"Conserved hypothetical membrane protein with cytochrome b-561 / ferric reductase transmembrane domain;Conserved hypothetical membrane protein with cytochrome b-561 / ferric reductase transmembrane domain;Conserved hypothetical membrane protein with cytochrome b-561 / ferric reductase transmembrane domain"
+Cre16.g662951	"GMM:31.1;GMM:29.4"	"cell.organisation;protein.postranslational modification"					"Cre16.g662951.t1.1;g16006.t1;g16006.t1;Cre16.g662951.t1.1;Cre16.g662951.t1.1;g16006.t1"		
+Cre16.g692900							"Cre16.g692900.t1.1;g15618.t1"		
+Cre16.g694942			"Secretory pathway"				"Cre16.g694942.t1.1;g15571.t1"		
+Cre16.g694400	GMM:29.3.3	protein.targeting.chloroplast				TGD2	"Cre16.g694400.t1.1;CGL57;g15583.t1"	TGD2	"Permease-like component of an ABC transporter; Related to MlaD, permease-like component of the Mla pathway, an ABC transporter involved in lipid transfer from ER to chloroplast; Conserved in the green lineage"
+Cre16.g686950	GMM:29.5.9	"protein.degradation.AAA type"		GO:0005524	"ATP binding"	CTF18	"g16353.t1;Cre16.g686950.t1.1;CTF18;g16353.t1;Cre16.g686950.t1.1;CTF18"	"CTF18;CTF18"	"CTF18-related; an RFC complex required for sister chromatid cohesion contains the RFC1-like Ctf18 subunit.;CTF18-related; an RFC complex required for sister chromatid cohesion contains the RFC1-like Ctf18 subunit."
+Cre16.g678325			Mitochondrion				"g16757.t1;Cre01.g067350.t1.1"		
+Cre16.g665850						FAP248	g16070.t1	FAP248	
+Cre16.g682950	GMM:31.3	cell.cycle	"Secretory pathway"	"GO:0030896;GO:0006281;GO:0000077;GO:0000075"	"checkpoint clamp complex;DNA repair;DNA damage checkpoint;cell cycle checkpoint"	RAD9	"g16443.t1;g16443.t1"	"RAD9;RAD9"	"Forms a sliding clamp complex with Hus1 and Rad1 that mediates repair at sites of DNA damage. Homolog of yeast DDC1 [PMID: 17992532];Forms a sliding clamp complex with Hus1 and Rad1 that mediates repair at sites of DNA damage. Homolog of yeast DDC1 [PMID: 17992532]"
+Cre16.g649950	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO24	"g15726.t1;Cre16.g649950.t1.1;HFO40"	HFO24	"Replication linked H4; histone gene cluster XXIV (type 43)"
+Cre16.g695300							g15562.t1		
+Cre16.g671200							"BLZ20;g16295.t1;g16295.t1;BLZ20"		"Putative basic-leucine zipper (bZIP) transcription factor, may contain a phosphopantetheine attachment site;Putative basic-leucine zipper (bZIP) transcription factor, may contain a phosphopantetheine attachment site"
+Cre16.g679750	GMM:26.1	misc.misc2		GO:0016787	"hydrolase activity"		"Cre16.g679750.t1.1;g16515.t1;Cre16.g679750.t1.1;g16515.t1;Cre16.g679750.t1.1;g16515.t1"		
+Cre16.g676350	GMM:31.2	cell.division	Mitochondrion	GO:0005524	"ATP binding"		"g16590.t1;g16590.t1;g16590.t1;g16590.t1;g16590.t1;g16590.t1"		
+Cre16.g682026							"Cre01.g068950.t1.1;g16791.t1;g16791.t1;Cre01.g068950.t1.1"		
+Cre16.g672100									
+Cre16.g677989			"Secretory pathway"				"g16754.t1;Cre01.g067250.t1.1"		
+Cre16.g680750			Chloroplast	GO:0005515	"protein binding"		g16492.t1		
+Cre16.g662600	GMM:34.18	"transport.unspecified anions"	Chloroplast			LCI11C	"g15998.t1;Cre16.g662600.t1.1;LCI11C;LCI11;g15998.t1;Cre16.g662600.t1.1;LCI11C;LCI11"	"BST1;BST1"	"Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST2 and BST3;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST2 and BST3"
+Cre16.g670950	GMM:1.1.5	"PS.lightreaction.other electron carrier (ox/red)"	Chloroplast	"GO:0020037;GO:0009055"	"heme binding;electron carrier activity"	CYC4	"Cre16.g670950.t1.1;g16300.t1"	CYC4	"Ortholog in Arabidopsis mistakenly identified as a cytochrome c6 and now called cytochrome c6A; This cytochrome is distinct from other small soluble c type cytochromes in having a disulfide group within an extra loop of the protein (PMID: 16815443). The protein is conserved in the green lineage, but function is unknown (11/2021)"
+Cre16.g685837			"Secretory pathway"						
+Cre16.g650350							"g15734.t1;g15734.t1;g15734.t1;g15734.t1"		
+Cre16.g680944	"GMM:30.5;GMM:3.5;GMM:29.2.2.1"	"signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.export from nucleus"	Chloroplast	GO:0005525	"GTP binding"		"g16145.t1;Cre01.g064150.t1.1;g16145.t1;Cre01.g064150.t1.1"		
+Cre16.g663876	GMM:31.2	cell.division	Mitochondrion				"g16029.t1;g16029.t1"		
+Cre16.g655800			"Secretory pathway"				g15853.t1		
+Cre16.g661626									
+Cre16.g677750							"g16561.t1;Cre16.g677750.t1.1"		
+Cre16.g680650			Mitochondrion				"g16495.t1;g16495.t1"		
+Cre16.g657100			Mitochondrion				"g15880.t1;g15880.t1;g15880.t1;g15880.t1"		
+Cre16.g670250						TOM6	"Cre16.g670250.t1.1;g16224.t1;g16224.t1;Cre16.g670250.t1.1"	"TOM6;TOM6"	"Mitochondrial import receptor subunit TOM6 (Translocase of outer membrane 6 kDa);Mitochondrial import receptor subunit TOM6 (Translocase of outer membrane 6 kDa)"
+Cre16.g671329						DNJ4	"DNJ4;g16117.t1;Cre01.g062950.t1.2;Cre01.g062950.t1.1"		"DnaJ-like protein; contains N-terminal J-domain (pfam00226) but except for J-domain does not show similarity with any other protein in protein database; contains N-terminal extension, but TargetP does not give any clear prediction"
+Cre16.g681354							"Cre01.g068650.t1.1;g16785.t1"		
+Cre16.g672450							"g16676.t1;g16676.t1"		
+Cre16.g681350			"Secretory pathway"				"g16478.t1;g16478.t1"		
+Cre16.g685613			Mitochondrion	"GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723"	"DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance"		"Cre01.g070400.t1.1;g16823.t1"		
+Cre16.g653100			Mitochondrion				"g15793.t1;g15793.t1"		
+Cre16.g682050				GO:0098519	"nucleotide phosphatase activity, acting on free nucleotides"		g16462.t1		
+Cre16.g676309	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre01.g066700.t1.1;g16738.t1;Cre01.g066700.t1.1;g16738.t1;g16738.t1;Cre01.g066700.t1.1"		
+Cre16.g651100							g15751.t1		
+Cre16.g685628									
+Cre16.g675650	GMM:13.2.4.3	"amino acid metabolism.degradation.branched chain group.valine"	Mitochondrion	"GO:0055114;GO:0016491;GO:0008152"	"oxidation-reduction process;oxidoreductase activity;metabolic process"	ALD8	"ALDH6B1;ALD8;Cre16.g675650.t1.1;g16604.t1;ALD8;Cre16.g675650.t1.1;ALDH6B1;g16604.t1;ALD8;Cre16.g675650.t1.1;g16604.t1;ALDH6B1"	"ALDH6;ALDH6;ALDH6"	"Family 6 aldehyde deydrogenase; Present in thylakoid-enriched fraction based on mass spectrometric peptide identification; mitochondrial localization assumed [PMID: 177818];Family 6 aldehyde deydrogenase; Present in thylakoid-enriched fraction based on mass spectrometric peptide identification; mitochondrial localization assumed [PMID: 177818];Family 6 aldehyde deydrogenase; Present in thylakoid-enriched fraction based on mass spectrometric peptide identification; mitochondrial localization assumed [PMID: 177818]"
+Cre16.g673250	"GMM:33.99;GMM:27.3.28"	"development.unspecified;RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0003677"	"nucleus;DNA binding"	NRR1	"g16657.t1;g16657.t1;g16657.t1"	"NRR1;NRR1;NRR1"	"SBP domain protein, with an N-terminal squamosa promoter-binding domain; PMID: 10524240, PMID: 8569690, founding member is the Antirrhinum majus SQUAMOSA promoter binding protein; inactivation reduces TAG accumulation in nitrogen-starvation conditions by 50%;SBP domain protein, with an N-terminal squamosa promoter-binding domain; PMID: 10524240, PMID: 8569690, founding member is the Antirrhinum majus SQUAMOSA promoter binding protein; inactivation reduces TAG accumulation in nitrogen-starvation conditions by 50%;SBP domain protein, with an N-terminal squamosa promoter-binding domain; PMID: 10524240, PMID: 8569690, founding member is the Antirrhinum majus SQUAMOSA promoter binding protein; inactivation reduces TAG accumulation in nitrogen-starvation conditions by 50%"
+Cre16.g690350			Chloroplast			SNR6	"SNR6;g16204.t1;SNR6;g16204.t1"		
+Cre16.g678550							"g16543.t1;g16543.t1;g16543.t1"		
+Cre16.g658850	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"					g15917.t1		
+Cre16.g676197	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0042176;GO:0030234;GO:0000502"	"regulation of protein catabolic process;enzyme regulator activity;proteasome complex"	RPN1	"g16737.t1;Cre01.g066650.t1.1;RPN1"	RPN1	"26S proteasome regulatory complex, base subcomplex, non-ATPase regulatory RPN1 (subunit 2) (PSD2) (PSMD2)"
+Cre16.g691000	GMM:29.2.4	protein.synthesis.elongation	Chloroplast	"GO:0043043;GO:0006414;GO:0005737;GO:0003746"	"peptide biosynthetic process;translational elongation;cytoplasm;translation elongation factor activity"	EFP1	"Cre16.g691000.t1.1;g15665.t1;Cre16.g691000.t1.1;g15665.t1"	"EFP1;EFP1"	"Putative chloroplast translation elongation factor P (EF-P);Putative chloroplast translation elongation factor P (EF-P)"
+Cre16.g671100	"GMM:33.99;GMM:30.11.1"	"development.unspecified;signalling.light.COP9 signalosome"		GO:0005515	"protein binding"		"Cre16.g671100.t1.1;g16297.t1"		
+Cre16.g687850			"Secretory pathway"				"PTK22;g16331.t1;g16331.t1;PTK22"		"Was initially annotated as part of protein kinase PTK22, but model was later split;Was initially annotated as part of protein kinase PTK22, but model was later split"
+Cre16.g678000			Chloroplast			CPL22	"g16555.t1;Cre16.g678000.t1.1;g16555.t1;Cre16.g678000.t1.1;Cre16.g678000.t1.1;g16555.t1"	"CPL22;CPL22;CPL22"	
+Cre16.g647700			Chloroplast				g15678.t1		
+Cre16.g660430									
+Cre16.g683250				GO:0016021	"integral component of membrane"		"g16437.t1;Cre16.g683250.t1.1"		
+Cre16.g684750	GMM:3.5	"minor CHO metabolism.others"	Mitochondrion				"g16403.t1;Cre16.g684750.t1.1;Cre16.g684750.t1.1;g16403.t1"		
+Cre16.g687117			"Secretory pathway"	GO:0009976	"tocopherol cyclase activity"		"Cre16.g687117.t1.1;g16348.t1;Cre16.g687117.t1.1;g16348.t1"		
+Cre16.g677450	GMM:3.5	"minor CHO metabolism.others"	Chloroplast	"GO:0016853;GO:0005975"	"isomerase activity;carbohydrate metabolic process"		"g16567.t1;Cre16.g677450.t1.1"		
+Cre16.g692902				GO:0005515	"protein binding"		"g15620.t1;g15620.t1"	"AHI1;AHI1"	"Jouberin-like transition zone protein; Homologous to AHI1 in humans;Jouberin-like transition zone protein; Homologous to AHI1 in humans"
+Cre16.g683200							"Cre16.g683200.t1.1;g16438.t1;Cre16.g683200.t1.1;g16438.t1"		
+Cre16.g677950	"GMM:26.7;GMM:20.2"	"misc.oxidases - copper, flavone etc;stress.abiotic"		"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	QOR1	"g16556.t1;QOR1"	QOR1	"Zinc-containing alcohol dehydrogenase, Similar to ARP protein from Arabidopsis (At1g4967.1)"
+Cre16.g651650	GMM:29.1.5	"protein.aa activation.isoleucine-tRNA ligase"		"GO:0006418;GO:0006355;GO:0005739;GO:0005524;GO:0004812;GO:0003690;GO:0000166"	"tRNA aminoacylation for protein translation;regulation of transcription, DNA-templated;mitochondrion;ATP binding;aminoacyl-tRNA ligase activity;double-stranded DNA binding;nucleotide binding"	TSI2		TSI3	"could be a trucated isoform of TSI2 (Cre16.g651750)"
+Cre16.g675525									
+Cre16.g661550			Chloroplast	"GO:0009264;GO:0008253"	"deoxyribonucleotide catabolic process;5'-nucleotidase activity"		"Cre16.g661550.t1.1;g15974.t1;Cre16.g661550.t1.1;g15974.t1"		
+Cre16.g685217			Mitochondrion	"GO:0006913;GO:0005643"	"nucleocytoplasmic transport;nuclear pore"		"g16157.t1;Cre01.g064700.t1.1"	NUP58	"58 kDa Nuclear Pore Complex Protein"
+Cre16.g682600			Mitochondrion				"g16450.t1;g16450.t1;g16450.t1"		
+Cre16.g668552			"Secretory pathway"				g16265.t1		
+Cre16.g675000	GMM:19.6	"tetrapyrrole synthesis.uroporphyrinogen III synthase"		"GO:0033014;GO:0004852"	"tetrapyrrole biosynthetic process;uroporphyrinogen-III synthase activity"	HEMD1	"UPS2;UROS;g16618.t1;UPS3;HEMD;UROS;UPS2;g16618.t1;HEMD;UPS3"	"UROS2;UROS2"	"involved in heme biosynthesis (HEM4, UROS); the last two introns were modelled to host Box CD snoRNAs CrCD56 to 59;involved in heme biosynthesis (HEM4, UROS); the last two introns were modelled to host Box CD snoRNAs CrCD56 to 59"
+Cre16.g647800				"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"g15680.t1;g15680.t1"		
+Cre16.g686846			Chloroplast				"g16834.t1;Cre01.g070800.t1.1"		
+Cre16.g658300			Chloroplast				g15905.t2		
+Cre16.g658400	GMM:1.1.5.2	"PS.lightreaction.other electron carrier (ox/red).ferredoxin"	Chloroplast	"GO:0051536;GO:0009055"	"iron-sulfur cluster binding;electron carrier activity"	FDX2	"Cre16.g658400.t1.1;g15907.t1"	FDX2	"Fe2S2 containing redox protein, predicted chloroplast localization"
+Cre16.g687630			Chloroplast				"Cre01.g071082.t2.1;g16841.t2;Cre01.g071082.t2.1;g16841.t2;g16841.t2;Cre01.g071082.t2.1;g16841.t2;Cre01.g071082.t2.1;g16841.t2;Cre01.g071082.t2.1;Cre01.g071082.t2.1;g16841.t2"		
+Cre16.g694200	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP15	"g15588.t1;MMP15"	MMP15	"Conserved expressed protein; possible peptidase motif?"
+Cre16.g683483	GMM:28.2	DNA.repair	Mitochondrion			REX1	"REX1-B;Cre01.g069450.t1.1;g16804.t1;Cre01.g069450.t1.1;g16804.t1;REX1-B"	"REX1B;REX1B"	"Phenotype of insertional mutant implicates this gene in UV-light tolerance and DNA repair; based on RT-PCR, has been described as a bicistronic gene (AY236481), with two proteins encoded on the same transcript: Rex1S (Cre16.g683495) is the small non-essential TFB5 subunit of general Transcription Factor II H, involved in Nucleotide Excision Repair, while Rex1B (Cre16.g683483) is of unknown function; only Rex1S appears strictly necessary for resistance, but Rex1B contributes;Phenotype of insertional mutant implicates this gene in UV-light tolerance and DNA repair; based on RT-PCR, has been described as a bicistronic gene (AY236481), with two proteins encoded on the same transcript: Rex1S (Cre16.g683495) is the small non-essential TFB5 subunit of general Transcription Factor II H, involved in Nucleotide Excision Repair, while Rex1B (Cre16.g683483) is of unknown function; only Rex1S appears strictly necessary for resistance, but Rex1B contributes"
+Cre16.g693700	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC9	"Cre16.g693700.t1.1;g15604.t1;UBC9"	UBC9	"Ubiquitin-conjugating enzyme E2, subclass VI"
+Cre16.g677205	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"	GO:0004866	"endopeptidase inhibitor activity"		"Cre01.g067059.t1.2;g16746.t1;Cre01.g067059.t1.1;Cre01.g067059.t1.2;g16746.t1;Cre01.g067059.t1.1;Cre01.g067059.t1.1;g16746.t1;Cre01.g067059.t1.2;Cre01.g067059.t1.1;Cre01.g067059.t1.2;g16746.t1"		
+Cre16.g673852	GMM:4.1.15	"glycolysis.cytosolic branch.phospho-enol-pyruvate carboxylase (PEPC)"	Chloroplast	"GO:0015977;GO:0008964;GO:0006099"	"carbon fixation;phosphoenolpyruvate carboxylase activity;tricarboxylic acid cycle"		g16646.t1		
+Cre16.g660225							"Cre16.g660250.t1.3;g15947.t1"		
+Cre16.g652483			Mitochondrion				"g15781.t1;Cre16.g652500.t1.3"		
+Cre16.g677000	"GMM:29.6.2.3;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat"				HSP70E	"Cre16.g677000.t1.1;GEX27;g16575.t1"	HSP70E	"HSP70E is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it is more similar to HSP110-like proteins, as is HSP70G; HSP70E is inducible by MgProto and light; PMID: 16143837, 16143841. ts lethal mutations isolated (PMID 25336509)"
+Cre16.g694800			Chloroplast				"GT90-31;GT90F31;g15575.t1"		
+Cre16.g687602			Mitochondrion						
+Cre16.g650800	GMM:29.3.2	protein.targeting.mitochondria				TIM13	g15745.t1	TIM13	"Mitochondrial import inner membrane translocase subunit TIM13. Mitochondrial intermembrane chaperone that participates in the import and insertion of some transmembrane proteins into the mitochondrial inner membrane."
+Cre16.g669050			Chloroplast				"g16254.t1;g16254.t1;g16254.t1"		
+Cre16.g650900			Mitochondrion				"g15747.t1;g15747.t1"		
+Cre16.g684050			Mitochondrion				g16418.t1		
+Cre16.g664150	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"		"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE18	"PDE18;g16035.t1;PDE18;g16035.t1;PDE18;g16035.t1"		"Homolog of calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain.;Homolog of calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain.;Homolog of calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain."
+Cre16.g687950	GMM:9.3	"mitochondrial electron transport / ATP synthesis.electron transfer flavoprotein"	Mitochondrion			ETF1	"ETF1;ETFA;Cre16.g687950.t1.1;g16328.t1"	ETFA1	"electron transfer flavoprotein alpha-subunit-like, mitochondrial; The electron transfer flavoprotein serves as a specific electron acceptor for several dehydrogenases, including five acyl-CoA dehydrogenases, glutaryl-CoA and sarcosine dehydrogenase. It transfers the electrons to the main mitochondrial respiratory chain via ETF-ubiquinone oxidoreductase (ETF dehydrogenase); Orthologous to Arabidopsis ETFalpha;"
+Cre16.g682850							"g16445.t1;Cre16.g682850.t1.1"		
+Cre16.g676314	GMM:29.2.3	protein.synthesis.initiation		"GO:0005852;GO:0005737;GO:0005515;GO:0003743"	"eukaryotic translation initiation factor 3 complex;cytoplasm;protein binding;translation initiation factor activity"	EIF3H	"Cre01.g063600.t1.1;EIF3H;g16132.t1"	EIF3H	"Eukaryotic translation initiation factor 3, subunit H. Also known as eIF3 subunit 3, eIF3-gamma,eIF3-p40, and eIF3h"
+Cre16.g667850	"GMM:23.5.5;GMM:23.5"	"nucleotide metabolism.deoxynucleotide metabolism.dUTP diphosphatase;nucleotide metabolism.deoxynucleotide metabolism"		"GO:0046080;GO:0016787"	"dUTP metabolic process;hydrolase activity"	NSG10	"g16281.t1;DUD1;NSG10"	NSG10	"dUTPase; identified by Abe et al. 24 (PMID:15459796) as NSG10, a gene expressed during nitrogen-starved gametogenesis."
+Cre16.g653750			Chloroplast				"g15808.t1;Cre16.g653750.t1.1"		
+Cre16.g659150	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		g15924.t1		
+Cre16.g664250	GMM:13.1.5.3.1	"amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.OASTL"	"Secretory pathway"			OASTL2	"ASL2;g16037.t1;Cre16.g664250.t1.1;ASL2;g16037.t1;Cre16.g664250.t1.1;g16037.t1;ASL2;Cre16.g664250.t1.1"	"OASTL2;OASTL2;OASTL2"	"O-acetylserine (thiol)-lyase, O-acetylserine sulfhydrylase; performs condensation of OAS with sulfide (or possibly with a thiosulfide carrier) to yield cysteine and acetate; one of four paralogs;O-acetylserine (thiol)-lyase, O-acetylserine sulfhydrylase; performs condensation of OAS with sulfide (or possibly with a thiosulfide carrier) to yield cysteine and acetate; one of four paralogs;O-acetylserine (thiol)-lyase, O-acetylserine sulfhydrylase; performs condensation of OAS with sulfide (or possibly with a thiosulfide carrier) to yield cysteine and acetate; one of four paralogs"
+Cre16.g662052	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"						
+Cre16.g667729							"Cre16.g667729.t1.1;g16284.t2;Cre16.g667729.t1.1;g16284.t2"		
+Cre16.g676700	GMM:3.5	"minor CHO metabolism.others"		GO:0007165	"signal transduction"		"g16581.t1;Cre16.g676700.t1.1;g16581.t1;Cre16.g676700.t1.1"		
+Cre16.g653400			"Secretory pathway"				g15801.t1		
+Cre16.g667451			Chloroplast	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	TLP3	"TLP3;CAV6;g16309.t1"	TLP3	"Voltage-dependent 4-domain calcium channel, alpha subunit; may exhibit altered ion selectivity as conserved P-loop loci differ from mammalian Ca2+ channels (PMID: 8968582)"
+Cre16.g669550	"GMM:13.1.3.4.2;GMM:13.1.3.4"	"amino acid metabolism.synthesis.aspartate family.methionine.cystathionine beta-lyase;amino acid metabolism.synthesis.aspartate family.methionine"		"GO:0055114;GO:0030170;GO:0016491;GO:0008152"	"oxidation-reduction process;pyridoxal phosphate binding;oxidoreductase activity;metabolic process"	METC	"Cre16.g669550.t1.1;METC;g16239.t1;Cre16.g669550.t1.1;METC;g16239.t1"	"METC1;METC1"	"converts cystathionine to homocysteine; involved in methionine biosynthesis; possibly localized to chloroplast; (CBL), Beta-cystathionase, Cysteine lyase;converts cystathionine to homocysteine; involved in methionine biosynthesis; possibly localized to chloroplast; (CBL), Beta-cystathionase, Cysteine lyase"
+Cre16.g696050							"g15547.t1;g15547.t1"		
+Cre16.g675900			"Secretory pathway"	GO:0003824	"catalytic activity"	OAD1	"Cre16.g675900.t1.1;g16599.t1;OAD1"	OAD1	"arginine/ornithine decarboxylase, most similar to bacterial decarboxylases; could carry out decarboxylation of Arg, the first step of the agmatine pathway for polyamine biosynthesis"
+Cre16.g656800			"Secretory pathway"				"Cre16.g656800.t1.1;g15874.t1;g15874.t1;Cre16.g656800.t1.1;g15874.t1;Cre16.g656800.t1.1;Cre16.g656800.t1.1;g15874.t1;Cre16.g656800.t1.1;g15874.t1"		
+Cre16.g673450	GMM:30.2.17	"signalling.receptor kinases.DUF 26"		GO:0015074	"DNA integration"		g16653.t1		
+Cre16.g691753			Chloroplast				g15645.t1		
+Cre16.g670400			Chloroplast				"g16221.t1;g16221.t1"		
+Cre16.g670756									
+Cre16.g677800							"Cre16.g677800.t1.1;g16560.t1;Cre16.g677800.t1.1;g16560.t1"		
+Cre16.g679164							"Cre01.g063900.t1.2;Cre01.g063900.t1.1;g16140.t1;g16140.t1;Cre01.g063900.t1.2;Cre01.g063900.t1.1;g16140.t1;Cre01.g063900.t1.1;Cre01.g063900.t1.2"		
+Cre16.g667150							"Cre16.g667150.t1.1;g16316.t1"		
+Cre16.g684200			"Secretory pathway;Chloroplast"				"g16414.t1;Cre16.g684200.t1.1"		
+Cre16.g656300	GMM:13.1.3.5.2	"amino acid metabolism.synthesis.aspartate family.lysine.dihydrodipicolinate reductase"		"GO:0055114;GO:0009089;GO:0008839"	"oxidation-reduction process;lysine biosynthetic process via diaminopimelate;4-hydroxy-tetrahydrodipicolinate reductase"	DPR1	"g15863.t1;g15863.t1;g15863.t1;g15863.t1"	"DPR1;DPR1;DPR1;DPR1"	"converts L-2,3-dihydropicolinate to etrahydrodipicolinate (EC 1.3.1.26); involved in lysine biosynthesis; expected to be plastidic based on homology;converts L-2,3-dihydropicolinate to etrahydrodipicolinate (EC 1.3.1.26); involved in lysine biosynthesis; expected to be plastidic based on homology;converts L-2,3-dihydropicolinate to etrahydrodipicolinate (EC 1.3.1.26); involved in lysine biosynthesis; expected to be plastidic based on homology;converts L-2,3-dihydropicolinate to etrahydrodipicolinate (EC 1.3.1.26); involved in lysine biosynthesis; expected to be plastidic based on homology"
+Cre16.g673953	"GMM:31.3.1;GMM:29.6.3.1"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs"		GO:0006457	"protein folding"	FKB16-7	"FKB16-7;FKB10;g16716.t1;Cre01.g065700.t1.1;Cre01.g065700.t1.1;FKB10;g16716.t1;FKB16-7;Cre01.g065700.t1.1;FKB10;FKB16-7;g16716.t1;Cre01.g065700.t1.1;FKB10;g16716.t1;FKB16-7"	"FKB16G;FKB16G;FKB16G;FKB16G"	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); localization unsure;FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); localization unsure;FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); localization unsure;FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); localization unsure"
+Cre16.g647550			Mitochondrion			HEL60	"HEL60;g15676.t1"		
+Cre16.g693450			"Secretory pathway"				"ISG-C1;g15609.t1"		
+Cre16.g662550						SUM3	"SUMO148;SUMO;STM2;Cre16.g662550.t1.1;SUM3;g15997.t1;STM2SUMO148;SUMO4"	SUMO1	"Post-translational modification by SUMO modulates many important cellular processes; Biochemical activity verified"
+Cre16.g685165							"Cre01.g070200.t1.1;g16819.t1"		
+Cre16.g657800						CCD3	"CCD2;g15894.t1;CCD3"		"related to carotenoid 9,10-9',10' cleavage dioxygenase which in land plants participates in abscisic acid biosynthesis; could play a similar role (PMID: 16327238)"
+Cre16.g694000	GMM:28.2	DNA.repair					"g15597.t1;Cre16.g694000.t1.1"		
+Cre16.g661250				GO:0019825	"oxygen binding"		"Cre16.g661250.t1.1;g15968.t1"	THB9	"oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is next to THB7, THB8 and THB10 on Chr_16; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor"
+Cre16.g665328			Mitochondrion						
+Cre16.g691215							"g16873.t1;Cre01.g072550.t1.2;Cre01.g072550.t1.1"		
+Cre16.g654500	"GMM:29.5.11.20;GMM:29.2.3"	"protein.degradation.ubiquitin.proteasom;protein.synthesis.initiation"	Chloroplast	GO:0005515	"protein binding"	EIF3F	"EIF3F;g15822.t1"	EIF3F	"Putative Eukaryotic translation initiation factor 3 subunit 5 (eIF-3 epsilon) (eIF3 p32 subunit) (eIF3f)"
+Cre16.g674450	GMM:27.3.6	"RNA.regulation of transcription.basic helix-loop-helix family (bHLH)"		GO:0016021	"integral component of membrane"		"Cre16.g674450.t1.1;g16631.t1"		
+Cre16.g652850	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"				GTR4	"Cre16.g652850.t1.1;g15788.t1;GTR4;GTR4;Cre16.g652850.t1.1;g15788.t1"	"ALG5;ALG5"	"Orthologous to AT2G39630 in Arabidopsis thaliana;Orthologous to AT2G39630 in Arabidopsis thaliana"
+Cre16.g652300						CMA2	"CMA2;TTL13;g15777.t1"		"Transmembrane protein with proline-rich C-terminal domain of unknown function; secretory pathway; One of three tandem paralogs (Cre16.g652250, Cre16.g652300, and Cre16.g652350)"
+Cre16.g676645						DRC8	"FAP200;Cre01.g066850.t1.1;Cre01.g066850.t1.2;g16741.t1"	DRC8	"Flagellar Associated Protein 200, found in the flagellar proteome;"
+Cre16.g685100	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast				"g16395.t1;g16395.t1;g16395.t1"		"Contains PF07683, CobW_C domain; missing GTPase domain; One of three paralogous tandem genes (Cre16.g685000, Cre16.g685050, Cre16.g685100);Contains PF07683, CobW_C domain; missing GTPase domain; One of three paralogous tandem genes (Cre16.g685000, Cre16.g685050, Cre16.g685100);Contains PF07683, CobW_C domain; missing GTPase domain; One of three paralogous tandem genes (Cre16.g685000, Cre16.g685050, Cre16.g685100)"
+Cre16.g687050			Mitochondrion				"g16351.t1;g16351.t1;g16351.t1;g16351.t1;g16351.t1"		
+Cre16.g688190	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion				"Cre01.g071300.t1.2;g16846.t1;Cre01.g071300.t1.1;Cre01.g071300.t1.2;Cre01.g071300.t1.1;g16846.t1"		
+Cre16.g695850							"g15551.t1;Cre16.g695850.t1.1;g15551.t1;Cre16.g695850.t1.1;g15551.t1;Cre16.g695850.t1.1;Cre16.g695850.t1.1;g15551.t1"		
+Cre16.g682200			Chloroplast				"Cre16.g682200.t1.1;g16459.t1"		
+Cre16.g689050	GMM:11.9.4.2	"lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH"	Chloroplast	"GO:0055114;GO:0006635;GO:0005777;GO:0003997;GO:0003995"	"oxidation-reduction process;fatty acid beta-oxidation;peroxisome;acyl-CoA oxidase activity;acyl-CoA dehydrogenase activity"		"ACO1;g16176.t1;ACO1;g16176.t1"	"ACX1;ACX1"	
+Cre16.g671750	GMM:29.6.1	"protein.folding.prefoldin and trigger factor"		"GO:0051082;GO:0016272;GO:0006457"	"unfolded protein binding;prefoldin complex;protein folding"	PFD4	"g16692.t1;PFD4;PFD4;g16692.t1;PFD4;g16692.t1"	"PFD4;PFD4;PFD4"	"beta-type subunit of molecular chaperone Prefoldin (PMID: 11599560); has two coiled-coil domains separated by a beta-sheet; stabilizes polypeptide chains prior to folding within CCT chaperonin, in particular tubulin;beta-type subunit of molecular chaperone Prefoldin (PMID: 11599560); has two coiled-coil domains separated by a beta-sheet; stabilizes polypeptide chains prior to folding within CCT chaperonin, in particular tubulin;beta-type subunit of molecular chaperone Prefoldin (PMID: 11599560); has two coiled-coil domains separated by a beta-sheet; stabilizes polypeptide chains prior to folding within CCT chaperonin, in particular tubulin"
+Cre16.g659900			Chloroplast				"g15940.t1;g15940.t1;g15940.t1"		
+Cre16.g683800							"g16426.t1;g16426.t1"		
+Cre16.g681550			Mitochondrion			CSV13	"CSV13;g16472.t1;g16472.t1;CSV13"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre16.g689871	GMM:29.1.5	"protein.aa activation.isoleucine-tRNA ligase"	Mitochondrion	"GO:0006418;GO:0005524;GO:0004812;GO:0000166"	"tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"		"g16861.t1;g16861.t1;g16861.t1;g16861.t1;g16861.t1;g16861.t1"	"TSI1;TSI1;TSI1;TSI1;TSI1;TSI1"	
+Cre16.g647950			Mitochondrion				g15683.t1		
+Cre16.g692200	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			MMP6	"g15634.t1;MMP6;g15634.t1;MMP6"	"MMP6;MMP6"	"Belongs to the large VMP-family of metalloproteinases (identified in Volvox); the binding site of the catalytic metal ion in VMPs is QExxHxxGxxH not HExxHxxGxxH, therefore VMPs prefer copper for activity rather than zinc; extracellular matrix glycoprotein;Belongs to the large VMP-family of metalloproteinases (identified in Volvox); the binding site of the catalytic metal ion in VMPs is QExxHxxGxxH not HExxHxxGxxH, therefore VMPs prefer copper for activity rather than zinc; extracellular matrix glycoprotein"
+Cre16.g671825			Chloroplast				"g16697.t1;Cre01.g064900.t1.1"		
+Cre16.g689733			"Secretory pathway"						
+Cre16.g682587							"Cre01.g069150.t1.2;Cre01.g069150.t1.1;g16796.t1"	CMC2	
+Cre16.g678600			"Secretory pathway"	GO:0016757	"transferase activity, transferring glycosyl groups"		"g16542.t1;Cre16.g678600.t1.1"		
+Cre16.g666150	GMM:31.6.1.4.1	"cell.motility.eukaryotes.axonemal dyneins.outer arm"		"GO:0036158;GO:0036157"	"outer dynein arm assembly;outer dynein arm"	DCC2	"ODA1;g16076.t1;Cre16.g666150.t1.1;DC2;ODA-DC2;g16076.t1;ODA-DC2;DC2;ODA1;Cre16.g666150.t1.1;Cre16.g666150.t1.1;g16076.t1;ODA-DC2;DC2;ODA1;DC2;ODA1;ODA-DC2;Cre16.g666150.t1.1;g16076.t1;ODA-DC2;DC2;ODA1;Cre16.g666150.t1.1;g16076.t1;ODA1;DC2;Cre16.g666150.t1.1;g16076.t1;ODA-DC2"	"DCC2;DCC2;DCC2;DCC2;DCC2;DCC2"	"Flagellar outer dynein arm-docking complex subunit 2 (ODA-DC2); Mr 70000;Flagellar outer dynein arm-docking complex subunit 2 (ODA-DC2); Mr 70000;Flagellar outer dynein arm-docking complex subunit 2 (ODA-DC2); Mr 70000;Flagellar outer dynein arm-docking complex subunit 2 (ODA-DC2); Mr 70000;Flagellar outer dynein arm-docking complex subunit 2 (ODA-DC2); Mr 70000;Flagellar outer dynein arm-docking complex subunit 2 (ODA-DC2); Mr 70000"
+Cre16.g688250			Chloroplast						
+Cre16.g688302			Chloroplast	GO:0004518	"nuclease activity"		"g16847.t1;Cre01.g071350.t1.1;Cre01.g071350.t1.2;g16847.t1;Cre01.g071350.t1.2;Cre01.g071350.t1.1"		
+Cre16.g660150	GMM:29.2.1.2.1.20	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S20"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"				
+Cre16.g688200			Chloroplast						
+Cre16.g648050									
+Cre16.g655400	GMM:33.99	development.unspecified	Mitochondrion				g15843.t1		
+Cre16.g661300				GO:0019825	"oxygen binding"		g15969.t1	THB10	"oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is next to THB7, THB8 and THB9 on Chr_16; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor"
+Cre16.g663500	GMM:29.5.11	protein.degradation.ubiquitin		"GO:0008540;GO:0006511"	"proteasome regulatory particle, base subcomplex;ubiquitin-dependent protein catabolic process"	RPN10	"Cre16.g663500.t1.1;RPN10;g16018.t1"	RPN10	"26S proteasome regulatory complex, base subcomplex, non-ATPase regulatory RPN10 (subunit 4) (subunit S5A) (PSD4) (Multiubiquitin chain binding protein)."
+Cre16.g682650			Mitochondrion				g16449.t1		
+Cre16.g666576			Mitochondrion				"g16086.t1;g16086.t1;g16086.t1"		
+Cre16.g648350	GMM:13.2.2.2	"amino acid metabolism.degradation.glutamate family.proline"	Mitochondrion	"GO:0006562;GO:0004657"	"proline catabolic process;proline dehydrogenase activity"	PDY2	"g15692.t1;PDY2;PDY2;g15692.t1;g15692.t1;PDY2;PDY2;g15692.t1"	"PDY2;PDY2;PDY2;PDY2"	
+Cre16.g680300			"Secretory pathway"				"g16502.t1;Cre16.g680300.t1.1"		
+Cre16.g657550	GMM:33.99	development.unspecified					"g15889.t1;g15889.t1;g15889.t1"		
+Cre16.g657650						FAP35	"Cre16.g657650.t1.1;g15891.t1"	FAP35	"Flagellar Associated Protein, found in the flagellar proteome"
+Cre16.g680230	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"		"GO:0016020;GO:0006886;GO:0006605"	"membrane;intracellular protein transport;protein targeting"	SEC61G	"Cre01.g068150.t1.1;Cre01.g068150.t1.2;SEC61G;g16775.t1"	SEC61G	"Expressed Protein. Conserved protein similar to SEC61 gamma subunit involved in ER protein translocation. Early zygote expressed protein activated upon fus mating [PMID: 18487630]"
+Cre16.g691754			Chloroplast				g15646.t1		
+Cre16.g660024			"Secretory pathway"				"g15943.t1;g15943.t1"		
+Cre16.g671050							"Cre16.g671050.t1.1;g16298.t1"		
+Cre16.g668700			"Secretory pathway"				"Cre16.g668700.t1.1;g16261.t1"		
+Cre16.g685573	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"		GO:0005515	"protein binding"	FAP214	"Cre01.g064750.t1.2;g16158.t1;Cre01.g064750.t1.1"	FAP214	"contains Ca2+Dependent Phospholipid-Binding Domain C2"
+Cre16.g690050	GMM:9.6	"mitochondrial electron transport / ATP synthesis.cytochrome c"	Mitochondrion	"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"	HCS2	"g16197.t1;HCS2;Cre16.g690050.t1.1"	HCS2	"holocytochrome c1 synthetase cytochrome C1 heme lyase (CC1HL) [PMID: 14514677]; related to animal cyt c biogenesis pathways"
+Cre16.g683050	GMM:33.99	development.unspecified	Chloroplast	"GO:0046872;GO:0003723"	"metal ion binding;RNA binding"	RNJ1	"RNJ1;g16441.t1"	RNJ1	"Ribonuclease J homolog; the B. subtilis protein carries both RNase E-like endoribonuclease and 5'-3' exoribonuclease activity. In Chlamydomonas, an alternate splice variant in the C-terminal region has been observed."
+Cre16.g685450	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"		"GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777"	"dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity"	DHC8	"g16388.t1;g16388.t1"	"DHC8;DHC8"	"Flagellar inner arm dynein heavy chain, dynein e. Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein e. Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]"
+Cre16.g685052									
+Cre16.g658775			"Secretory pathway"						
+Cre16.g691600			Mitochondrion				g15649.t1		
+Cre16.g651300			Mitochondrion				"Cre16.g651300.t1.1;g15755.t1;g15755.t1;Cre16.g651300.t1.1"		
+Cre16.g676900	"GMM:34.11;GMM:29.4"	"transport.NDP-sugars at the ER;protein.postranslational modification"	Chloroplast	GO:0055085	"transmembrane transport"		"Cre16.g676900.t1.1;g16577.t1;UAA5"		"UAA transporter family"
+Cre16.g679950	GMM:28.1	"DNA.synthesis/chromatin structure"				RFC3	"RFC3;Cre16.g679950.t1.1;g16511.t1"	RFC3	"Homologous to eukaryotic RFC3 (DNA replication factor C complex subunit 3); accessory protein of DNA polymerase"
+Cre16.g659700			Chloroplast				"Cre16.g659700.t1.1;g15936.t1;g15936.t1;Cre16.g659700.t1.1"		
+Cre16.g658450	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"				
+Cre16.g685550	GMM:13.1.5.3.1	"amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.OASTL"	Chloroplast			OASTL4	"Cre16.g685550.t1.1;ASL4;g16386.t1;Cys1A;ASL4;g16386.t1;Cys1A;Cre16.g685550.t1.1"	"OASTL4;OASTL4"	"(O-acetylserine sulfhydrylase (O-acetylserine (Thiol)-lyase), (CYSL); described as Cys1Acr, AAC27794 (PMID 10491132); this is OASTL4a, the more frequent of the two mRNAs produced from this gene; the encoded proteins are both predicted to be organelle-targeted, and by homology, they probably reside in the chloroplast; one of four paralogs;(O-acetylserine sulfhydrylase (O-acetylserine (Thiol)-lyase), (CYSL); described as Cys1Acr, AAC27794 (PMID 10491132); this is OASTL4a, the more frequent of the two mRNAs produced from this gene; the encoded proteins are both predicted to be organelle-targeted, and by homology, they probably reside in the chloroplast; one of four paralogs"
+Cre16.g681126			"Secretory pathway"				"Cre01.g068550.t1.1;Cre01.g068550.t1.2;g16783.t1"		
+Cre16.g692300	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"		"g15632.t1;Cre16.g692300.t1.1"		
+Cre16.g692500	"GMM:33.3;GMM:27.3.28"	"development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"	"Secretory pathway"	"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"g15628.t1;g15628.t1"		
+Cre16.g674950	GMM:16.1.4	"secondary metabolism.isoprenoids.carotenoids"	Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"Cre16.g674950.t1.1;POD2;g16619.t1"		"Phytoene dehydrogenase"
+Cre16.g679300			Chloroplast			CGL139	"Cre16.g679300.t1.1;g16524.t1"	CGL139	
+Cre16.g695400							g15560.t1		
+Cre16.g681657				GO:0005515	"protein binding"		"Cre01.g064250.t1.1;g16147.t1;g16147.t1;Cre01.g064250.t1.1;g16147.t1;Cre01.g064250.t1.1"		
+Cre16.g667450	"GMM:31.1;GMM:29.5.11.4.3.2;GMM:27.3.31"	"cell.organisation;protein.degradation.ubiquitin.E3.SCF.FBOX;RNA.regulation of transcription.TUB transcription factor family"				TLP2	"g16308.t1;Cre16.g667450.t1.1;g16308.t1;Cre16.g667450.t1.1;Cre16.g667450.t1.1;g16308.t1;g16308.t1;Cre16.g667450.t1.1;g16308.t1;Cre16.g667450.t1.1"	"TLP2;TLP2;TLP2;TLP2;TLP2"	"tubby-like protein 2. Transcript upregulated during flagellar regeneration [PMID: 15738400].;tubby-like protein 2. Transcript upregulated during flagellar regeneration [PMID: 15738400].;tubby-like protein 2. Transcript upregulated during flagellar regeneration [PMID: 15738400].;tubby-like protein 2. Transcript upregulated during flagellar regeneration [PMID: 15738400].;tubby-like protein 2. Transcript upregulated during flagellar regeneration [PMID: 15738400]."
+Cre16.g681850	GMM:23.3.1.3	"nucleotide metabolism.salvage.phosphoribosyltransferases.uracil phosphoribosyltransferase (UPP)"					"g16467.t1;Cre16.g681850.t1.1;Cre16.g681850.t1.1;g16467.t1;g16467.t1;Cre16.g681850.t1.1"		
+Cre16.g694208	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"	Mitochondrion				g15596.t1		
+Cre16.g664251									
+Cre16.g656851							"g15875.t1;Cre16.g656850.t1.3;Cre16.g656850.t1.3;g15875.t1;g15875.t1;Cre16.g656850.t1.3;g15875.t1;Cre16.g656850.t1.3"		
+Cre16.g693750	GMM:27.3.65	"RNA.regulation of transcription.polycomb group (PcG)"	Mitochondrion	GO:0005515	"protein binding"		g15603.t1		
+Cre16.g651900			Chloroplast			CRI1	"CRI1;g15767.t1;CRTISO;OPR126;g15767.t1;CRTISO;OPR126;CRI1;CRTISO;OPR126;CRI1;g15767.t1"	"OPR129;OPR129;OPR129"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre16.g682000			Chloroplast				"g16464.t1;g16464.t1"		
+Cre16.g686622							"g16832.t1;Cre01.g070700.t1.1"		
+Cre16.g665500			Mitochondrion				"g16063.t1;Cre16.g665500.t1.1"		
+Cre16.g684861							"Cre01.g064650.t1.1;Cre01.g064650.t1.2;g16156.t1;Cre01.g064650.t1.1;Cre01.g064650.t1.2;g16156.t1;Cre01.g064650.t1.2;Cre01.g064650.t1.1;g16156.t1;Cre01.g064650.t1.1;Cre01.g064650.t1.2;g16156.t1"		
+Cre16.g688700	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"	"Secretory pathway"	GO:0006629	"lipid metabolic process"		"g16168.t1;g16168.t1"		
+Cre16.g648288									
+Cre16.g686100	"GMM:33.3;GMM:27.3.28"	"development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0003677"	"nucleus;DNA binding"		g16373.t1		
+Cre16.g691103							"g16872.t1;Cre01.g072450.t1.1;Cre01.g072450.t1.2"		
+Cre16.g689647	"GMM:33.99;GMM:32;GMM:29.2.3;GMM:27.3.36"	"development.unspecified;micro RNA, natural antisense etc;protein.synthesis.initiation;RNA.regulation of transcription.argonaute transcription factor family"		"GO:0005515;GO:0003676"	"protein binding;nucleic acid binding"	AGO3	"AGO3;g16859.t1;g16859.t1;AGO3;g16859.t1;AGO3;g16859.t1;AGO3;AGO3;g16859.t1"	"AGO3;AGO3;AGO3;AGO3;AGO3"	"The most highly expressed of three AGO genes involved in sRNA mediated silencing; binds miRNAs and is required for translational repression by siRNA; more closely related to other Chlamydomonas AGO than to any plant homolog;The most highly expressed of three AGO genes involved in sRNA mediated silencing; binds miRNAs and is required for translational repression by siRNA; more closely related to other Chlamydomonas AGO than to any plant homolog;The most highly expressed of three AGO genes involved in sRNA mediated silencing; binds miRNAs and is required for translational repression by siRNA; more closely related to other Chlamydomonas AGO than to any plant homolog;The most highly expressed of three AGO genes involved in sRNA mediated silencing; binds miRNAs and is required for translational repression by siRNA; more closely related to other Chlamydomonas AGO than to any plant homolog;The most highly expressed of three AGO genes involved in sRNA mediated silencing; binds miRNAs and is required for translational repression by siRNA; more closely related to other Chlamydomonas AGO than to any plant homolog"
+Cre16.g683371	GMM:13.1.3.5.5	"amino acid metabolism.synthesis.aspartate family.lysine.diaminopimelate decarboxylase"		GO:0003824	"catalytic activity"	ODC2	"Cre01.g069400.t1.1;g16803.t1;Cre01.g069400.t1.2;ODC2;Cre01.g069400.t1.1;Cre01.g069400.t1.2;g16803.t1;ODC2;ODC2;Cre01.g069400.t1.1;g16803.t1;Cre01.g069400.t1.2;ODC2;Cre01.g069400.t1.1;g16803.t1;Cre01.g069400.t1.2;g16803.t1;Cre01.g069400.t1.2;Cre01.g069400.t1.1;ODC2;g16803.t1;Cre01.g069400.t1.2;Cre01.g069400.t1.1;ODC2;Cre01.g069400.t1.1;Cre01.g069400.t1.2;g16803.t1;ODC2;g16803.t1;ODC2;Cre01.g069400.t1.2;Cre01.g069400.t1.1;Cre01.g069400.t1.1;Cre01.g069400.t1.2;g16803.t1;ODC2"	"ODC2;ODC2;ODC2;ODC2;ODC2;ODC2;ODC2;ODC2;ODC2"	"Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region"
+Cre16.g654800			"Secretory pathway"				"g15829.t1;g15829.t1;g15829.t1"	"CPC2;CPC2;CPC2"	
+Cre16.g671950	GMM:28	DNA	Chloroplast.Stroma				"g16688.t1;g16688.t1;g16688.t1"		
+Cre16.g657964				GO:0016787	"hydrolase activity"				
+Cre16.g664301	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006260;GO:0005524;GO:0003887;GO:0003677;GO:0003676"	"DNA replication;ATP binding;DNA-directed DNA polymerase activity;DNA binding;nucleic acid binding"	POLQ1	"g16038.t1;Cre16.g664300.t1.3;POLQ1;POLQ1;g16038.t1;Cre16.g664300.t1.3;POLQ1;Cre16.g664300.t1.3;g16038.t1;POLQ1;Cre16.g664300.t1.3;g16038.t1;POLQ1;g16038.t1;Cre16.g664300.t1.3;g16038.t1;Cre16.g664300.t1.3;POLQ1"	"POLQ1;POLQ1;POLQ1;POLQ1;POLQ1;POLQ1"	"Homologous to eukaryotic DNA polymerase theta. Involved in DNA repair; a class A polymerase.;Homologous to eukaryotic DNA polymerase theta. Involved in DNA repair; a class A polymerase.;Homologous to eukaryotic DNA polymerase theta. Involved in DNA repair; a class A polymerase.;Homologous to eukaryotic DNA polymerase theta. Involved in DNA repair; a class A polymerase.;Homologous to eukaryotic DNA polymerase theta. Involved in DNA repair; a class A polymerase.;Homologous to eukaryotic DNA polymerase theta. Involved in DNA repair; a class A polymerase."
+Cre16.g653850	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					"g15810.t1;g15810.t1"		
+Cre16.g670000							"Cre16.g670000.t1.1;g16230.t1"		
+Cre16.g651000	"GMM:28.1;GMM:27.1.2"	"DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"		"GO:0006260;GO:0005634;GO:0003677"	"DNA replication;nucleus;DNA binding"	RFA3	"RPA70B;Cre16.g651000.t1.1;RFA3;g15749.t1"	RFA3	"Homologous to eukaryotic RPA 7 kDa subunit; RP-A; RF-A; Replication factor-A protein 1; Single-stranded DNA-binding protein; Chlamydomonas has at least two homologues of RPA7. Previously annotated as RPA7B"
+Cre16.g673505							"Cre01.g065500.t1.1;g16712.t1"		
+Cre16.g664600	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"				NUOB16	"Cre16.g664600.t1.1;g16044.t1"	NUOB16	"NADH:ubiquinone oxidoreductase (Complex I) subunit, homolog to bovine B16.6. gi 34334020 gb AAQ64637.1; Ortholog to NDUFA13 in Homo sapiens;"
+Cre16.g675750	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g16602.t1		
+Cre16.g653700	GMM:31.4	"cell.vesicle transport"	Mitochondrion				"g15807.t1;g15807.t1;g15807.t1;g15807.t1;g15807.t1;g15807.t1;g15807.t1;g15807.t1;g15807.t1;g15807.t1"		
+Cre16.g687406			"Secretory pathway"				"Cre01.g071000.t1.1;g16839.t2"	POB20	"Found in basal body proteome"
+Cre16.g662350	GMM:3.2.1	"minor CHO metabolism.trehalose.TPS"		"GO:0005992;GO:0003824"	"trehalose biosynthetic process;catalytic activity"		"TPS2;g15994.t1"	TSPS1	"Class I trehalose-6-phosphate synthase, carrying a glycosyl transferase and a TPP (phosphatase) domain; only plant class 1 TPS have been found to be active as T6P synthases"
+Cre16.g659300	GMM:21.2	"redox.ascorbate and glutathione"				CYB2	"CYB2;CYB5-2;g15927.t1"	CYB2	"linked to CYB1 and CYB5"
+Cre16.g666334	GMM:3.1.2.2	"minor CHO metabolism.raffinose family.raffinose synthases.putative"	Mitochondrion				"RFS1;g16082.t1;Cre16.g666450.t3.1;RFS1;Cre16.g666450.t3.1;g16082.t1;Cre16.g666450.t3.1;g16082.t1;RFS1;RFS1;Cre16.g666450.t3.1;g16082.t1;g16082.t1;Cre16.g666450.t3.1;RFS1"		"EC 2.4.1.82; GH36C family glycoside hydrolase, putative galactinol--sucrose galactosyltransferase = raffinose synthase = 1-alpha-D-galactosyl-myo-inositol:sucrose 6-a-D-galactosyltransferase; this gene contains in its long 5th intron a gene on the other strand, MAD1; this organization is conserved in Chlorophyceae and Trebouxiophyceae;EC 2.4.1.82; GH36C family glycoside hydrolase, putative galactinol--sucrose galactosyltransferase = raffinose synthase = 1-alpha-D-galactosyl-myo-inositol:sucrose 6-a-D-galactosyltransferase; this gene contains in its long 5th intron a gene on the other strand, MAD1; this organization is conserved in Chlorophyceae and Trebouxiophyceae;EC 2.4.1.82; GH36C family glycoside hydrolase, putative galactinol--sucrose galactosyltransferase = raffinose synthase = 1-alpha-D-galactosyl-myo-inositol:sucrose 6-a-D-galactosyltransferase; this gene contains in its long 5th intron a gene on the other strand, MAD1; this organization is conserved in Chlorophyceae and Trebouxiophyceae;EC 2.4.1.82; GH36C family glycoside hydrolase, putative galactinol--sucrose galactosyltransferase = raffinose synthase = 1-alpha-D-galactosyl-myo-inositol:sucrose 6-a-D-galactosyltransferase; this gene contains in its long 5th intron a gene on the other strand, MAD1; this organization is conserved in Chlorophyceae and Trebouxiophyceae;EC 2.4.1.82; GH36C family glycoside hydrolase, putative galactinol--sucrose galactosyltransferase = raffinose synthase = 1-alpha-D-galactosyl-myo-inositol:sucrose 6-a-D-galactosyltransferase; this gene contains in its long 5th intron a gene on the other strand, MAD1; this organization is conserved in Chlorophyceae and Trebouxiophyceae"
+Cre16.g666451			Mitochondrion						
+Cre16.g660350			Chloroplast	GO:0016788	"hydrolase activity, acting on ester bonds"		"g15950.t1;g15950.t1;g15950.t1"		
+Cre16.g684400	"GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4.1;GMM:29.4"	"cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g16410.t1;g16410.t1;g16410.t1;g16410.t1"		
+Cre16.g687652			"Secretory pathway"						
+Cre16.g674400			"Secretory pathway"				"g16632.t1;Cre16.g674400.t1.1"		
+Cre16.g681051							"g16485.t1;g16485.t1"		
+Cre16.g673001			Chloroplast			LCI2	"LCI2;g16665.t1;Cre16.g672950.t2.1;Cre16.g672950.t2.1;LCI2;g16665.t1;Cre16.g672950.t2.1;g16665.t1;LCI2;g16665.t1;Cre16.g672950.t2.1;LCI2"	"FAD4;FAD4;FAD4;FAD4"	"Fatty acid desaturase 4 (delta3 trans); Low-CO2 inducible protein 2; Was identified in clone 215 in [PMID: 8756610] and subsequently named LCI2;Fatty acid desaturase 4 (delta3 trans); Low-CO2 inducible protein 2; Was identified in clone 215 in [PMID: 8756610] and subsequently named LCI2;Fatty acid desaturase 4 (delta3 trans); Low-CO2 inducible protein 2; Was identified in clone 215 in [PMID: 8756610] and subsequently named LCI2;Fatty acid desaturase 4 (delta3 trans); Low-CO2 inducible protein 2; Was identified in clone 215 in [PMID: 8756610] and subsequently named LCI2"
+Cre16.g691950	GMM:28.2	DNA.repair					g15640.t1		
+Cre16.g675350	"GMM:29.5.5;GMM:29.5.1"	"protein.degradation.serine protease;protein.degradation.subtilases"	Mitochondrion	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"		"TPP1;g16611.t1;g16611.t1;TPP1;g16611.t1;TPP1;TPP1;g16611.t1;TPP1;g16611.t1;g16611.t1;TPP1;g16611.t1;TPP1;TPP1;g16611.t1"		
+Cre16.g683600							g16430.t2		
+Cre16.g686000	"GMM:27.1.1;GMM:27.1"	"RNA.processing.splicing;RNA.processing"		"GO:0006396;GO:0003723;GO:0003676"	"RNA processing;RNA binding;nucleic acid binding"		"g16375.t1;SRS15;SRS15;g16375.t1;SRS15;g16375.t1"		"Putative pre-mRNA splicing factor with Suppressor-of-White-APricot (SWAP) domain (Surp module);Putative pre-mRNA splicing factor with Suppressor-of-White-APricot (SWAP) domain (Surp module);Putative pre-mRNA splicing factor with Suppressor-of-White-APricot (SWAP) domain (Surp module)"
+Cre16.g663250							g16012.t2		
+Cre16.g673100			Mitochondrion				"g16662.t1;g16662.t1;g16662.t1;g16662.t1;g16662.t1;g16662.t1;g16662.t1"		
+Cre16.g674150			Chloroplast				"g16637.t1;g16637.t1;g16637.t1;g16637.t1;g16637.t1"		
+Cre16.g656350							g15864.t1		
+Cre16.g651550	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"	Chloroplast	"GO:0006355;GO:0005739;GO:0003690"	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	MTT1	"g15760.t1;MTT1;Cre16.g651550.t1.1;Cre16.g651550.t1.1;MTT1;g15760.t1"	"MTT1;MTT1"	"some similarity to mitochondrial transcription termination factor mTERF; probably mitochondrial (TargetP score 0.813);some similarity to mitochondrial transcription termination factor mTERF; probably mitochondrial (TargetP score 0.813)"
+Cre16.g656600	GMM:21.1	redox.thioredoxin		"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRX19	"TRL5;TRX19;Cre16.g656600.t1.1;g15870.t1"		"adjacent to TRL14, divergent on other strand, another thioredoxin-like gene"
+Cre16.g678750							"g16538.t1;Cre16.g678750.t1.1"		
+Cre16.g693900			Mitochondrion			PWR13	"g15599.t1;PWR13;PWR13;g15599.t1;PWR13;g15599.t1"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre16.g649250			"Secretory pathway"				"g15710.t1;g15710.t1"		
+Cre16.g684650	"GMM:31.1;GMM:27.2;GMM:15.2"	"cell.organisation;RNA.transcription;metal handling.binding, chelation and storage"		GO:0005515	"protein binding"		"g16405.t1;Cre16.g684650.t1.1"		"Contains PF02492, CobW nucleotide-binding domain;"
+Cre16.g669900						FAP399	"Cre16.g669900.t1.1;g16232.t1"	FAP399	
+Cre16.g677900			"Secretory pathway"				"g16558.t1;g16558.t1"		
+Cre16.g694900							"g15572.t1;g15572.t1"		
+Cre16.g672721							"Cre01.g065300.t1.2;Cre01.g065300.t1.1;g16705.t1"		
+Cre16.g649350			Mitochondrion				g15712.t1		
+Cre16.g662750				GO:0019825	"oxygen binding"		"g16001.t1;Cre16.g662750.t1.1;g16001.t1;Cre16.g662750.t1.1"	"THB11;THB11"	"oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is not far from THB12 on Chr_16; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor;oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is not far from THB12 on Chr_16; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor"
+Cre16.g650300	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR25	"HTR39;Cre16.g650300.t1.1;g15733.t1"	HTR25	"Replication linked H3; histone gene cluster XXV (type 43)"
+Cre16.g670200	GMM:29.4	"protein.postranslational modification"					"Cre16.g670200.t1.1;g16225.t1"		
+Cre16.g690130			Chloroplast				"g16199.t1;Cre16.g690130.t1.1"		"Target of CRR1"
+Cre16.g682100	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"				TDR1	"g16461.t1;TDR1;Cre16.g682100.t1.1;Cre16.g682100.t1.1;TDR1;g16461.t1"		
+Cre16.g660850							"g15960.t1;Cre16.g660850.t1.1"		
+Cre16.g652226									
+Cre16.g670750			Mitochondrion				"Cre16.g670750.t1.1;g16304.t1"		
+Cre16.g694300							"g15586.t1;Cre16.g694300.t1.1;g15586.t1;Cre16.g694300.t1.1;Cre16.g694300.t1.1;g15586.t1"		
+Cre16.g687450	GMM:34.15	transport.potassium	"Secretory pathway"	"GO:0055085;GO:0016021;GO:0015299;GO:0006813;GO:0006812"	"transmembrane transport;integral component of membrane;solute:proton antiporter activity;potassium ion transport;cation transport"	CPLD54	"g16341.t1;Cre16.g687450.t1.1"	CPLD54	"Conserved in the Plant Lineage and Diatoms"
+Cre16.g680050	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"				DRT2	"DRT2;g16509.t1;DRT2;g16509.t1;g16509.t1;DRT2"	"DRT2;DRT2;DRT2"	"DRAP1-like protein; Dr1-associated corepressor (Dr1-associated protein 1);DRAP1-like protein; Dr1-associated corepressor (Dr1-associated protein 1);DRAP1-like protein; Dr1-associated corepressor (Dr1-associated protein 1)"
+Cre16.g686789									
+Cre16.g648700	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g15699.t2;g15699.t2;g15699.t2;g15699.t2;g15699.t2;g15699.t2;g15699.t2;g15699.t2;g15699.t2;g15699.t2;g15699.t2;g15699.t2;g15699.t2;g15699.t2"		
+Cre16.g651350			"Secretory pathway"	GO:0006914	autophagy	ATG17	"g15756.t1;g15756.t1"	"ATG17;ATG17"	"Scaffold protein responsible for phagophore assembly site organization; regulatory subunit of an autophagy-specific complex that includes Atg1p and Atg13p; stimulates Atg1p kinase activity; human ortholog RB1CC1/FIP200 interacts with p53, which inhibits autophagy in human cells;Scaffold protein responsible for phagophore assembly site organization; regulatory subunit of an autophagy-specific complex that includes Atg1p and Atg13p; stimulates Atg1p kinase activity; human ortholog RB1CC1/FIP200 interacts with p53, which inhibits autophagy in human cells"
+Cre16.g679700							g16516.t1		
+Cre16.g667057									
+Cre16.g673650	GMM:1.1.1.1	"PS.lightreaction.photosystem II.LHC-II"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCB5	"CP26;g16648.t1;LHCB5"	LHCB5	
+Cre16.g681014			Mitochondrion				"Cre01.g068500.t1.1;g16782.t1"		
+Cre16.g649800	"GMM:35.1.5;GMM:33.99"	"not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;development.unspecified"	Mitochondrion	GO:0005634	nucleus	PPR3	"CYCR6;g15723.t1;g15723.t1;CYCR6"	"PPR3;PPR3"	"PentatricoPeptide Repeat protein with a SmR-like and a cyclin domain;PentatricoPeptide Repeat protein with a SmR-like and a cyclin domain"
+Cre16.g694500	GMM:29.9	protein.co-chaperones				DNJ37	"g15581.t1;DNJ37;CGL57;DNJ37;g15581.t1;CGL57;CGL57;DNJ37;g15581.t1"		"Conserved expressed protein; possible peptidase motif?;Conserved expressed protein; possible peptidase motif?;Conserved expressed protein; possible peptidase motif?"
+Cre16.g676000							"Cre16.g676000.t1.1;g16597.t1"		
+Cre16.g653500			Mitochondrion				g15803.t1		
+Cre16.g653338			Mitochondrion				g15799.t1		
+Cre16.g655316							"g15841.t1;g15841.t1"		
+Cre16.g693203	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g15616.t1;g15616.t1;g15616.t1;g15616.t1"		
+Cre16.g691200							g15659.t1		
+Cre16.g686501			"Secretory pathway"				g16365.t1		
+Cre16.g665750	GMM:27.1	RNA.processing	Mitochondrion	GO:0006396	"RNA processing"	RAA2	"Cre16.g665750.t1.1;MAA2;g16068.t1"	RAA2	"Necessary for trans-splicing of psaA mRNA; similar to TruB family pseudouridylate synthases (pseudouridine synthases); Component of psaA trans-splicing subcomplex II"
+Cre16.g695650							"g15555.t1;g15555.t1;g15555.t1;g15555.t1"		
+Cre16.g669126	GMM:5.3	fermentation.ADH	Chloroplast			ADH2			
+Cre16.g695050	GMM:11.9.4.9	"lipid metabolism.lipid degradation.beta-oxidation.multifunctional"	"Secretory pathway"	"GO:0055114;GO:0016491;GO:0006631;GO:0003857"	"oxidation-reduction process;oxidoreductase activity;fatty acid metabolic process;3-hydroxyacyl-CoA dehydrogenase activity"	HCD1	"HCD1;Cre16.g695050.t1.1;g15569.t1;HCD1;g15569.t1;Cre16.g695050.t1.1;HCD1;g15569.t1;Cre16.g695050.t1.1;Cre16.g695050.t1.1;HCD1;g15569.t1"	"ECH3;ECH3;ECH3;ECH3"	"3-hydroxyacyl-CoA dehydrogenase;3-hydroxyacyl-CoA dehydrogenase;3-hydroxyacyl-CoA dehydrogenase;3-hydroxyacyl-CoA dehydrogenase"
+Cre16.g660700			Mitochondrion						
+Cre16.g680232	GMM:27.3.35	"RNA.regulation of transcription.bZIP transcription factor family"					"Cre01.g064050.t1.1;g16143.t1;Cre01.g064050.t1.1;g16143.t1;g16143.t1;Cre01.g064050.t1.1"		
+Cre16.g654600			"Secretory pathway"			PHC56	g15825.t1	PHC56	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre16.g676670									
+Cre16.g680350							"g16501.t1;Cre16.g680350.t1.1"		
+Cre16.g672500							"Cre16.g672500.t1.1;g16675.t1"		
+Cre16.g659850			Chloroplast			CGL37	"Cre16.g659850.t1.1;g15939.t1"	CGL37	"Conserved in the Green Lineage"
+Cre16.g676085							"g16736.t1;Cre01.g066600.t1.1;Cre01.g066600.t1.1;g16736.t1;g16736.t1;Cre01.g066600.t1.1"		
+Cre16.g686641			"Secretory pathway"						
+Cre16.g679850	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG35	"CYG35;g16513.t1"		"similar to membrane guanylyl cyclase OlGC7 [Danio rerio]"
+Cre16.g649000	"GMM:29.4.1.59;GMM:29.4"	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g15705.t1;g15705.t1;g15705.t1"		
+Cre16.g687182			Mitochondrion				"g16837.t1;Cre01.g070900.t1.2;Cre01.g070900.t1.1;g16837.t1;Cre01.g070900.t1.2;Cre01.g070900.t1.1"	"POB10;POB10"	"Found in basal body proteome;Found in basal body proteome"
+Cre16.g652750	GMM:26.7	"misc.oxidases - copper, flavone etc"		"GO:0055114;GO:0050661;GO:0050660;GO:0004499"	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO10	"Cre16.g652750.t1.1;FMO10;g15786.t1"		"Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification"
+Cre16.g649750			Mitochondrion				g15721.t1		
+Cre16.g681700	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion	"GO:0022900;GO:0016651"	"electron transport chain;oxidoreductase activity, acting on NAD(P)H"	NUOS4B	"g16470.t1;g16470.t1;g16470.t1"	"NUOS4B;NUOS4B;NUOS4B"	"Related to NUOS4 encoding NADH:ubiquinone oxidoreductase (Complex I) 18 kD-like subunit (45% id.) [PMID: 15710684];Related to NUOS4 encoding NADH:ubiquinone oxidoreductase (Complex I) 18 kD-like subunit (45% id.) [PMID: 15710684];Related to NUOS4 encoding NADH:ubiquinone oxidoreductase (Complex I) 18 kD-like subunit (45% id.) [PMID: 15710684]"
+Cre16.g667100	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX		GO:0005515	"protein binding"	LMR3	"LMR3;Cre16.g667100.t1.1;g16317.t1"		"protein of unknown function, contains LysM-domain which is found in a variety of enzymes involved in bacterial cell wall degradation; the domain may have a general peptidoglycan binding function"
+Cre16.g695202									
+Cre16.g677382	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"	Chloroplast				"g16135.t1;Cre01.g063750.t1.2;Cre01.g063750.t1.1"		
+Cre16.g682363			Mitochondrion				"Cre01.g069050.t1.1;g16794.t1"		
+Cre16.g681353	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB61			
+Cre16.g666627			Chloroplast						
+Cre16.g648451			Chloroplast				g15694.t1		
+Cre16.g652350			"Secretory pathway"				"CMA1;FAP183;g15778.t1;Cre16.g652350.t1.1"		"Transmembrane protein with proline-rich C-terminal domain of unknown function; secretory pathway; One of three tandem paralogs (Cre16.g652250, Cre16.g652300, and Cre16.g652350); Was identified as a Flagellar Associated Protein, but this is probably an error due to the neighboring FAP183 gene (Cre16.g652400)"
+Cre16.g654350	GMM:27.3.99	"RNA.regulation of transcription.unclassified"				SPL4	"g15819.t1;SPL4"		"hypothetical protein, similar to splicing factor with U1 zinc finger domain"
+Cre16.g688350			Chloroplast				"g16320.t1;g16320.t1"		
+Cre16.g690750	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"		GO:0005515	"protein binding"		"g15671.t1;g15671.t1;g15671.t1;g15671.t1"		
+Cre16.g673729	"GMM:29.9;GMM:29.6.2.6"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones"	Chloroplast	"GO:0006457;GO:0005737"	"protein folding;cytoplasm"	CPN11	"Cre01.g065600.t1.1;CPN11;g16714.t1;Cre01.g065600.t1.2"	CPN11	"co-chaperonin assisting the CPN60 chaperonin in protein folding; homologous to bacterial GroES; located in the chloroplast, where it forms with Cpn20 and Cpn23 a tetramer with seven cpn10 domains; heptamers of Cpn10-like co-chaperonins bind to one of the two Cpn60 heptameric rings and trigger ATP hydrolysis; also found in association with the ClpPR complex"
+Cre16.g689800									
+Cre16.g695800			Chloroplast	GO:2001070	"starch binding"		"g15553.t1;g15553.t1;g15553.t1;g15553.t1"		
+Cre16.g654050	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"							
+Cre16.g669250			Chloroplast				"g16247.t1;g16247.t1;g16247.t1;g16247.t1;g16247.t1;g16247.t1;g16247.t1"		
+Cre16.g655050							"Cre16.g655050.t1.1;g15835.t1;Cre16.g655050.t1.1;g15835.t1"	"NON1;NON1"	"The 42.49 mutant shows defect in ammonium repression of nitrate assimilation genes; acts downstream of NO-production; Has orthologs in all green algae;The 42.49 mutant shows defect in ammonium repression of nitrate assimilation genes; acts downstream of NO-production; Has orthologs in all green algae"
+Cre16.g664850	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g16049.t1;g16049.t1"		
+Cre16.g658926			Mitochondrion						
+Cre16.g663400			Chloroplast			LCI11A	"g16016.t2;LCI11;LCI11A"	BST2	"Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST3"
+Cre16.g677550	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity"	cya15	"g16565.t1;CYA15;CYA15;g16565.t1;g16565.t1;CYA15;g16565.t1;CYA15;g16565.t1;CYA15;CYA15;g16565.t1"		"Contains periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain. May be involved in solute transport and early steps of a signal transduction cascade;Contains periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain. May be involved in solute transport and early steps of a signal transduction cascade;Contains periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain. May be involved in solute transport and early steps of a signal transduction cascade;Contains periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain. May be involved in solute transport and early steps of a signal transduction cascade;Contains periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain. May be involved in solute transport and early steps of a signal transduction cascade;Contains periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain. May be involved in solute transport and early steps of a signal transduction cascade"
+Cre16.g669650	GMM:27.1.19	RNA.processing.ribonucleases	Chloroplast				"g16237.t1;Cre16.g669650.t1.1"		
+Cre16.g689450							"Cre16.g689450.t1.1;g16184.t1"		
+Cre16.g676100	GMM:28.2	DNA.repair					"g16595.t1;Cre16.g676100.t1.1"		
+Cre16.g694202							g15590.t1		
+Cre16.g662300	GMM:27.1	RNA.processing				SMP8	"g15993.t1;SMP8;Cre16.g662300.t1.1"	SMP8	
+Cre16.g689087							"Cre01.g071650.t1.1;g16854.t1;g16854.t1;Cre01.g071650.t1.1;Cre01.g071650.t1.1;g16854.t1;g16854.t1;Cre01.g071650.t1.1"	"RTN1;RTN1;RTN1;RTN1"	
+Cre16.g689851	GMM:30.2.12	"signalling.receptor kinases.leucine rich repeat XII"							
+Cre16.g689423				"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		"Cre01.g071800.t1.1;g16857.t1;Cre01.g071800.t1.2"		
+Cre16.g692228	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g16882.t1;Cre01.g073050.t1.1;Cre01.g073050.t1.1;g16882.t1"	"MARS1;MARS1"	"Component in cpUPR (chloroplast Unfolded Protein Response) signal transmission; contains serine/threonine kinase domain toward its C-terminus; mutants are light-sensitive;Component in cpUPR (chloroplast Unfolded Protein Response) signal transmission; contains serine/threonine kinase domain toward its C-terminus; mutants are light-sensitive"
+Cre16.g668800			"Secretory pathway"			MTA4	"MTA4;g16259.t1;g16259.t1;MTA4"		"Unknown protein; a pseudo-gene copy resides in the A region of the mt+ locus [PMID: 11805055]. MTA4 was identified in the genome sequence after publication; independent cDNA sequence, see AY596304.;Unknown protein; a pseudo-gene copy resides in the A region of the mt+ locus [PMID: 11805055]. MTA4 was identified in the genome sequence after publication; independent cDNA sequence, see AY596304."
+Cre16.g690702			"Secretory pathway"						
+Cre16.g677600				"GO:0032259;GO:0008168"	"methylation;methyltransferase activity"	SOM5	"SOM5;g16564.t1;Cre16.g677600.t1.1;SOM5;Cre16.g677600.t1.1;g16564.t1"		"S-adenosyl-L-methionine-dependent methyltransferase;S-adenosyl-L-methionine-dependent methyltransferase"
+Cre16.g689700	"GMM:25;GMM:1.2.6"	"C1-metabolism;PS.photorespiration.hydroxypyruvate reductase"	Chloroplast	"GO:0055114;GO:0004616"	"oxidation-reduction process;phosphogluconate dehydrogenase (decarboxylating) activity"		"g16189.t1;g16189.t1;g16189.t1;g16189.t1"	"HPR5;HPR5;HPR5;HPR5"	"Active in the presence of NADPH, may have a function related to the glutathione peroxidase or peroxiredoxin antioxidant systems that need plenty of NADPH converted from NADH;;Active in the presence of NADPH, may have a function related to the glutathione peroxidase or peroxiredoxin antioxidant systems that need plenty of NADPH converted from NADH;;Active in the presence of NADPH, may have a function related to the glutathione peroxidase or peroxiredoxin antioxidant systems that need plenty of NADPH converted from NADH;;Active in the presence of NADPH, may have a function related to the glutathione peroxidase or peroxiredoxin antioxidant systems that need plenty of NADPH converted from NADH;"
+Cre16.g674852	GMM:31.6.1.9	"cell.motility.eukaryotes.flagellar adhesion and gamete fusion"	"Secretory pathway"			HAP2	"g16725.t1;HAP2;GCS1;Cre01.g066100.t1.1"	HAP2	"Gamete membrane fusion protein; gamete fusogen, eukaryotic Class II fusion protein"
+Cre16.g652150	GMM:4.1.6	"glycolysis.cytosolic branch.fructose-2,6-bisphosphatase (Fru2,6BisPase)"	Mitochondrion	"GO:0006003;GO:0006000;GO:0005524;GO:0003873;GO:0003824"	"fructose 2,6-bisphosphate metabolic process;fructose metabolic process;ATP binding;6-phosphofructo-2-kinase activity;catalytic activity"		"FBP4;g15773.t1;Cre16.g652150.t1.1"		
+Cre16.g688078							"Cre01.g071250.t1.1;Cre01.g071250.t1.2;g16845.t1;Cre01.g071250.t1.2;Cre01.g071250.t1.1;g16845.t1"		
+Cre16.g666500						BBS8	"Cre16.g666500.t1.1;g16084.t1;BBS8;BBS8;g16084.t1;Cre16.g666500.t1.1;g16084.t1;Cre16.g666500.t1.1;BBS8"	"BBS8;BBS8;BBS8"	"Tetratricopeptide repeat domain protein, similar to human Bardet Biedl Syndrome 8; belongs to linker subcomplex of flagellar BBsome involved in targeting membrane proteins to the flagellum;Tetratricopeptide repeat domain protein, similar to human Bardet Biedl Syndrome 8; belongs to linker subcomplex of flagellar BBsome involved in targeting membrane proteins to the flagellum;Tetratricopeptide repeat domain protein, similar to human Bardet Biedl Syndrome 8; belongs to linker subcomplex of flagellar BBsome involved in targeting membrane proteins to the flagellum"
+Cre16.g672300	GMM:27.3.53	"RNA.regulation of transcription.high mobility group family (HMG)"	Chloroplast				"g16681.t1;Cre16.g672300.t1.1"		"High mobility group protein, non-histone component of chromatin. ChromoDB HMGB345"
+Cre16.g668481			Mitochondrion						
+Cre16.g677093			"Secretory pathway"				"g16745.t1;Cre01.g067050.t1.1"		
+Cre16.g650151	GMM:29.5.9	"protein.degradation.AAA type"	Mitochondrion	"GO:0009378;GO:0006310;GO:0006281"	"four-way junction helicase activity;DNA recombination;DNA repair"		"Cre16.g650150.t1.3;g15730.t1;g15730.t1;Cre16.g650150.t1.3"	"SPAST1;SPAST1"	"AAA-type ATPase protein involved in microtubule-severing;AAA-type ATPase protein involved in microtubule-severing"
+Cre16.g673900	GMM:27.2	RNA.transcription		"GO:0006351;GO:0003899;GO:0003677"	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPC3	"g16644.t1;RPC3"	RPC3	
+Cre16.g682369	GMM:34.12	transport.metal		"GO:0046872;GO:0030001;GO:0000166"	"metal ion binding;metal ion transport;nucleotide binding"	CTP1	"Cre01.g064350.t1.1;g16149.t1;CTP1;Cre01.g064350.t1.2;g16149.t1;CTP1;Cre01.g064350.t1.2;Cre01.g064350.t1.1;g16149.t1;Cre01.g064350.t1.2;Cre01.g064350.t1.1;CTP1;Cre01.g064350.t1.1;Cre01.g064350.t1.2;CTP1;g16149.t1;CTP1;Cre01.g064350.t1.2;Cre01.g064350.t1.1;g16149.t1"	"CTP1;CTP1;CTP1;CTP1;CTP1"	"Cu transport across endomembrane system; Similarity to Ccc2p from yeast and ATP7A/B from human; copper-transporting P-type ATPase, related to AtRAN1 and AtHMA5 [PMID: 15710683];Cu transport across endomembrane system; Similarity to Ccc2p from yeast and ATP7A/B from human; copper-transporting P-type ATPase, related to AtRAN1 and AtHMA5 [PMID: 15710683];Cu transport across endomembrane system; Similarity to Ccc2p from yeast and ATP7A/B from human; copper-transporting P-type ATPase, related to AtRAN1 and AtHMA5 [PMID: 15710683];Cu transport across endomembrane system; Similarity to Ccc2p from yeast and ATP7A/B from human; copper-transporting P-type ATPase, related to AtRAN1 and AtHMA5 [PMID: 15710683];Cu transport across endomembrane system; Similarity to Ccc2p from yeast and ATP7A/B from human; copper-transporting P-type ATPase, related to AtRAN1 and AtHMA5 [PMID: 15710683]"
+Cre16.g671650			Chloroplast				g16694.t1		
+Cre16.g668350			Mitochondrion				"g16271.t1;Cre16.g668350.t1.1"		
+Cre16.g649650				GO:0006950	"response to stress"		g15719.t1		"Universal stress protein, adenine nucleotide alpha hydrolase-like. Bacterial homologs enhance the rate of cell survival when exposed to stress agents"
+Cre16.g668125	GMM:20.2.3	stress.abiotic.drought/salt					g16105.t1		
+Cre16.g670151			Chloroplast						
+Cre16.g680500						EFH10	"g16498.t1;EFH10;EFH10;g16498.t1;EFH10;g16498.t1;g16498.t1;EFH10;g16498.t1;EFH10;EFH10;g16498.t1;g16498.t1;EFH10;g16498.t1;EFH10"		
+Cre16.g656433	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB59	"CSB59;TNP41;g15866.t1;Cre16.g656450.t1.2"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre16.g674800			Chloroplast				"Cre16.g674800.t1.1;g16623.t1;g16623.t1;Cre16.g674800.t1.1"		
+Cre16.g684155	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING					"Cre01.g069800.t1.1;g16810.t1;Cre01.g069800.t1.1;g16810.t1"		
+Cre16.g680200			"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"		g16504.t1		
+Cre16.g661450	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTV3	"Cre16.g661450.t1.1;HTV3;g15972.t1"	HTV3	
+Cre16.g652050	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast	GO:0071949	"FAD binding"	ZXE3	"ZXE3;g15771.t1;Cre16.g652050.t1.1"		"Possible FAD-dependent monooxygenase"
+Cre16.g690506			"Secretory pathway"						
+Cre16.g666700									
+Cre16.g678300			"Secretory pathway"				g16548.t1		
+Cre16.g667701			"Secretory pathway"				"g16286.t1;Cre16.g667600.t1.2"		
+Cre16.g676400	"GMM:28.1;GMM:27.1.2"	"DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL63	"Cre16.g676400.t1.1;g16588.t1;HEL63;HEL63;g16588.t1;Cre16.g676400.t1.1"		
+Cre16.g683081	GMM:21.2.2	"redox.ascorbate and glutathione.glutathione"					"Cre01.g064450.t1.1;g16151.t1"		
+Cre16.g681352			Chloroplast						
+Cre16.g679200	"GMM:29.5.11.20;GMM:29.3.5"	"protein.degradation.ubiquitin.proteasom;protein.targeting.peroxisomes"	Chloroplast	"GO:0042623;GO:0007031;GO:0006625;GO:0005778;GO:0005777;GO:0005524"	"ATPase activity, coupled;peroxisome organization;protein targeting to peroxisome;peroxisomal membrane;peroxisome;ATP binding"	PEX1	"g16526.t1;PEX1"	PEX1	"Putative peroxisome biogenesis protein, possibly a vesicle-fusing ATPase; identified from study on acclimation to changing CO2 concentrations and light intensities by Yamano et al. 28 [PMID: 18322145]"
+Cre16.g674152							"g16639.t1;g16639.t1"		
+Cre16.g692585	GMM:28.2	DNA.repair	Chloroplast			MSH4	"Cre16.g692585.t1.1;g15626.t1;g15626.t1;Cre16.g692585.t1.1;Cre16.g692585.t1.1;g15626.t1;Cre16.g692585.t1.1;g15626.t1"		
+Cre16.g674602									
+Cre16.g663100	GMM:29.7	protein.glycosylation	"Secretory pathway"	"GO:0016021;GO:0008963"	"integral component of membrane;phospho-N-acetylmuramoyl-pentapeptide-transferase activity"	ALG7	"g16009.t1;ALG7"		"UDP-N-acetylglucosamine-dolichyl-phosphate N-acetylglucosaminephosphotransferase, GT4 family; first enzme of N-glycosylation pathway"
+Cre16.g681750	"GMM:34.21;GMM:30.3;GMM:3.3"	"transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols"		"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"	FAP381	"g16469.t1;g16469.t1"	"FAP381;FAP381"	"Similar to Calcium-Transporting ATPase;Similar to Calcium-Transporting ATPase"
+Cre16.g678997			Chloroplast	GO:0016757	"transferase activity, transferring glycosyl groups"		"Cre01.g067600.t1.1;g16764.t1"		
+Cre16.g655550			Mitochondrion				g15848.t1		
+Cre16.g652950				GO:0005515	"protein binding"		"g15790.t1;Cre16.g652950.t1.1"		
+Cre16.g693650							g15605.t1		
+Cre16.g655515							"g15847.t1;Cre16.g655515.t1.1"		
+Cre16.g686202			Chloroplast				g16371.t1		
+Cre16.g667353			Mitochondrion				g16311.t1		
+Cre16.g648150	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING					"g15687.t1;g15687.t1"		
+Cre16.g683147			Mitochondrion				"g16801.t1;Cre01.g069300.t1.1"		
+Cre16.g662852									
+Cre16.g666301				"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS30	"Cre16.g666301.t1.1;g16080.t1;Cre16.g666301.t1.1;g16080.t1"	"RPS30;RPS30"	" Cytosolic 40S small ribosomal subunit protein S30; Cytosolic 40S small ribosomal subunit protein S30"
+Cre16.g661950							"g15985.t1;Cre16.g661950.t1.1;g15985.t1;Cre16.g661950.t1.1;g15985.t1;Cre16.g661950.t1.1"		
+Cre16.g672453									
+Cre16.g660100			Chloroplast				g15945.t1		
+Cre16.g691850	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"				COX90	"g15642.t1;COX90;Cre16.g691850.t1.1;Cre16.g691850.t1.1;COX90;g15642.t1"	"COX90;COX90"	"Cytochrome c oxidase subunit Cox90, mitochondrial [gi:22001295]. Note: homologues not found in other organisms except other green algae. Identification based on mutant phenotype [PMID: 11498007];Cytochrome c oxidase subunit Cox90, mitochondrial [gi:22001295]. Note: homologues not found in other organisms except other green algae. Identification based on mutant phenotype [PMID: 11498007]"
+Cre16.g669123			Mitochondrion						
+Cre16.g665700							"Cre16.g665700.t1.1;g16067.t1;g16067.t1;Cre16.g665700.t1.1"		
+Cre16.g670850				"GO:0036459;GO:0016579"	"thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination"		"Cre16.g670850.t1.1;g16302.t1"		
+Cre16.g681000							g16487.t1		
+Cre16.g683707							"g16806.t1;Cre01.g069600.t1.1;Cre01.g069600.t1.1;g16806.t1;g16806.t1;Cre01.g069600.t1.1"		
+Cre16.g675076			Chloroplast				"g16727.t1;Cre01.g066200.t1.1"		
+Cre16.g694704			Chloroplast	GO:0005515	"protein binding"		g15579.t1		
+Cre16.g678773	GMM:11.8.4	"lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"		"GO:0055114;GO:0016616;GO:0006694;GO:0003854"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	BSD2	"BHSD2;Cre01.g067450.t1.1;BSD2;g16761.t1"		"NAD(P)-dependent 3-beta hydroxysteroid dehydrogenase/isomerase"
+Cre16.g671450	GMM:26.7	"misc.oxidases - copper, flavone etc"		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"g16290.t1;FAO12;Cre16.g671450.t1.1;g16290.t1;FAO12;Cre16.g671450.t1.1"		"FAD-dependent oxidoreductase, possible D-amino-acid dehydrogenase;FAD-dependent oxidoreductase, possible D-amino-acid dehydrogenase"
+Cre16.g672041							"g16119.t1;Cre01.g063050.t1.2;Cre01.g063050.t1.1;Cre01.g063050.t1.2;g16119.t1;Cre01.g063050.t1.1;g16119.t1;Cre01.g063050.t1.1;Cre01.g063050.t1.2;Cre01.g063050.t1.2;Cre01.g063050.t1.1;g16119.t1;Cre01.g063050.t1.2;Cre01.g063050.t1.1;g16119.t1;Cre01.g063050.t1.2;Cre01.g063050.t1.1;g16119.t1;Cre01.g063050.t1.2;Cre01.g063050.t1.1;g16119.t1;Cre01.g063050.t1.1;g16119.t1;Cre01.g063050.t1.2"		
+Cre16.g679520			Mitochondrion			CSB60	"g16141.t1;CSB60"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre16.g679600	GMM:27.1	RNA.processing					"Cre16.g679600.t1.1;g16518.t1"		
+Cre16.g660601			"Secretory pathway"				"g15955.t1;g15955.t1;g15955.t1"		
+Cre16.g678808	"GMM:33.99;GMM:3.5;GMM:27.1"	"development.unspecified;minor CHO metabolism.others;RNA.processing"		GO:0005515	"protein binding"		"g16139.t1;Cre01.g063850.t1.1;Cre01.g063850.t1.1;g16139.t1;Cre01.g063850.t1.1;g16139.t1"		
+Cre16.g666000	GMM:29.3.1	protein.targeting.nucleus	Chloroplast				"g16073.t1;g16073.t1"		
+Cre16.g665450	GMM:34.21	transport.calcium		"GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216"	"calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity"	RYR1	"RYR1;FAP48;g16061.t1;g16061.t1;RYR1;FAP48;g16061.t1;RYR1;FAP48;FAP48;g16061.t1;RYR1;RYR1;g16061.t1;FAP48;FAP48;RYR1;g16061.t1"	"RYR1;RYR1;RYR1;RYR1;RYR1;RYR1"	"ryanodine receptor calcium ion channel RIR-CaC; Inositol 1,4,5-trisphosphate receptor type 1 (Type 1 InsP3 receptor) (IP3 receptor) (InsP3R1) (IP3R); found in flagellar proteome as FAP48 (PMID: 15998802);ryanodine receptor calcium ion channel RIR-CaC; Inositol 1,4,5-trisphosphate receptor type 1 (Type 1 InsP3 receptor) (IP3 receptor) (InsP3R1) (IP3R); found in flagellar proteome as FAP48 (PMID: 15998802);ryanodine receptor calcium ion channel RIR-CaC; Inositol 1,4,5-trisphosphate receptor type 1 (Type 1 InsP3 receptor) (IP3 receptor) (InsP3R1) (IP3R); found in flagellar proteome as FAP48 (PMID: 15998802);ryanodine receptor calcium ion channel RIR-CaC; Inositol 1,4,5-trisphosphate receptor type 1 (Type 1 InsP3 receptor) (IP3 receptor) (InsP3R1) (IP3R); found in flagellar proteome as FAP48 (PMID: 15998802);ryanodine receptor calcium ion channel RIR-CaC; Inositol 1,4,5-trisphosphate receptor type 1 (Type 1 InsP3 receptor) (IP3 receptor) (InsP3R1) (IP3R); found in flagellar proteome as FAP48 (PMID: 15998802);ryanodine receptor calcium ion channel RIR-CaC; Inositol 1,4,5-trisphosphate receptor type 1 (Type 1 InsP3 receptor) (IP3 receptor) (InsP3R1) (IP3R); found in flagellar proteome as FAP48 (PMID: 15998802)"
+Cre16.g651750	GMM:29.1.5	"protein.aa activation.isoleucine-tRNA ligase"		"GO:0006418;GO:0005524;GO:0004812;GO:0000166"	"tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"	TSI	"Cre16.g651750.t1.1;g15764.t1;TSI;g15764.t1;Cre16.g651750.t1.1;TSI"	"TSI2;TSI2"	
+Cre16.g687300			Chloroplast			CPLD61	"Cre16.g687300.t1.1;g16344.t1;Cre16.g687300.t1.1;g16344.t1"	"CPLD61;CPLD61"	
+Cre16.g686061							g16826.t1		
+Cre16.g690450	GMM:30.4.1	"signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase"				FAP266	"g16206.t1;g16206.t1"	"FAP266;FAP266"	"Found in the flagellar proteome; Conserved uncharacterized Flagellar Associated Protein;Found in the flagellar proteome; Conserved uncharacterized Flagellar Associated Protein"
+Cre16.g656700	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN14A-2	"Cre16.g656700.t1.1;KIN14-5;g15872.t1;KIN14A-2;KIN14-5;Cre16.g656700.t1.1;g15872.t1;KIN14A-2;KIN14-5;g15872.t1;KIN14A-2;Cre16.g656700.t1.1;Cre16.g656700.t1.1;KIN14A-2;KIN14-5;g15872.t1;KIN14A-2;g15872.t1;Cre16.g656700.t1.1;KIN14-5;KIN14-5;Cre16.g656700.t1.1;KIN14A-2;g15872.t1;Cre16.g656700.t1.1;KIN14A-2;KIN14-5;g15872.t1;KIN14A-2;g15872.t1;Cre16.g656700.t1.1;KIN14-5;KIN14A-2;g15872.t1;Cre16.g656700.t1.1;KIN14-5"	"KIN14A2;KIN14A2;KIN14A2;KIN14A2;KIN14A2;KIN14A2;KIN14A2;KIN14A2;KIN14A2"	"kinesin-14 family, kinesin-14A subfamily;kinesin-14 family, kinesin-14A subfamily;kinesin-14 family, kinesin-14A subfamily;kinesin-14 family, kinesin-14A subfamily;kinesin-14 family, kinesin-14A subfamily;kinesin-14 family, kinesin-14A subfamily;kinesin-14 family, kinesin-14A subfamily;kinesin-14 family, kinesin-14A subfamily;kinesin-14 family, kinesin-14A subfamily"
+Cre16.g683850	GMM:11.9.3.3	"lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase"	Mitochondrion	"GO:0008889;GO:0008081;GO:0006629"	"glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process"	GDP1	"g16425.t1;GDP1;GDPD1"		
+Cre16.g690095							"g16863.t1;Cre01.g072050.t1.1;Cre01.g072050.t1.2"		
+Cre16.g677200							g16571.t1		
+Cre16.g669549									
+Cre16.g656000			"Secretory pathway"				"g15857.t1;Cre16.g656000.t1.1"		
+Cre16.g659400	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g15929.t1;g15929.t1;g15929.t1;g15929.t1"		
+Cre16.g651950			"Secretory pathway"				"g15769.t1;Cre16.g651950.t1.1"		
+Cre16.g679450				GO:0032040	"small-subunit processome"		"Cre16.g679450.t1.1;g16521.t1"		
+Cre16.g680550			Chloroplast				"Cre16.g680550.t1.1;g16497.t1"		
+Cre16.g676800	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity"		"g16579.t1;Cre16.g676800.t1.1;Cre16.g676800.t1.1;g16579.t1;g16579.t1;Cre16.g676800.t1.1;Cre16.g676800.t1.1;g16579.t1;Cre16.g676800.t1.1;g16579.t1;Cre16.g676800.t1.1;g16579.t1;g16579.t1;Cre16.g676800.t1.1"		
+Cre16.g656100			Chloroplast				g15859.t1		
+Cre16.g675630			Chloroplast				"g16605.t1;Cre16.g675630.t1.1;g16605.t1;Cre16.g675630.t1.1"		
+Cre16.g649100	"GMM:3.6;GMM:29.4"	"minor CHO metabolism.callose;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	MAPKKK13	"Cre16.g649100.t1.1;g15707.t1;MAPKKK13;Cre16.g649100.t1.1;g15707.t1;MAPKKK13"		
+Cre16.g685950			Mitochondrion				g16377.t1		
+Cre16.g683931			Mitochondrion				"Cre01.g069700.t1.1;g16808.t1;g16808.t1;Cre01.g069700.t1.1"		
+Cre16.g679781	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Chloroplast	GO:0005515	"protein binding"		"g16771.t1;Cre01.g067950.t1.1;g16771.t1;Cre01.g067950.t1.1;g16771.t1;Cre01.g067950.t1.1;g16771.t1;Cre01.g067950.t1.1"		
+Cre16.g680131			Mitochondrion				"Cre16.g680131.t1.1;g16507.t1;g16507.t1;Cre16.g680131.t1.1"		
+Cre16.g682400							"g16454.t1;Cre16.g682400.t1.1"		
+Cre16.g663200	"GMM:29.4;GMM:29.2.2"	"protein.postranslational modification;protein.synthesis.ribosome biogenesis"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	FAP295	"g16011.t1;g16011.t1;g16011.t1;g16011.t1;g16011.t1;g16011.t1;g16011.t1"	"FAP295;FAP295;FAP295;FAP295;FAP295;FAP295;FAP295"	"Flagellar Associated Protein, found in the flagellar proteome; Similar to cyclic nucleotide dependent protein kinase;Flagellar Associated Protein, found in the flagellar proteome; Similar to cyclic nucleotide dependent protein kinase;Flagellar Associated Protein, found in the flagellar proteome; Similar to cyclic nucleotide dependent protein kinase;Flagellar Associated Protein, found in the flagellar proteome; Similar to cyclic nucleotide dependent protein kinase;Flagellar Associated Protein, found in the flagellar proteome; Similar to cyclic nucleotide dependent protein kinase;Flagellar Associated Protein, found in the flagellar proteome; Similar to cyclic nucleotide dependent protein kinase;Flagellar Associated Protein, found in the flagellar proteome; Similar to cyclic nucleotide dependent protein kinase"
+Cre16.g673350			Chloroplast				"Cre16.g673350.t1.1;g16655.t1"		"Eight-member family found found at two loci on chromosomes 16 and 17"
+Cre16.g690207	GMM:29.4	"protein.postranslational modification"					"g16864.t1;Cre01.g072100.t1.1;Cre01.g072100.t1.1;g16864.t1;g16864.t1;Cre01.g072100.t1.1"		
+Cre16.g691352			Chloroplast						
+Cre16.g691776				GO:0006351	"transcription, DNA-templated"		"g16878.t1;Cre01.g072750.t1.1;Cre01.g072750.t1.2"		
+Cre16.g688850	GMM:34.99	transport.misc	Mitochondrion	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	HPT2	"HPT2;g16171.t1;HGPT2;HGPT2;g16171.t1;HPT2;HGPT2;g16171.t1;HPT2;HGPT2;g16171.t1;HPT2;HGPT2;HPT2;g16171.t1;HGPT2;HPT2;g16171.t1;HPT2;g16171.t1;HGPT2;HPT2;HGPT2;g16171.t1;HPT2;g16171.t1;HGPT2;HPT2;g16171.t1;HGPT2"		"membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); this is HPT2a, the most abundant of two splicing isoform; Note that HPT gene symbol conflicts with homogentisate phytyltransferase (HPT) gene;;membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); this is HPT2a, the most abundant of two splicing isoform; Note that HPT gene symbol conflicts with homogentisate phytyltransferase (HPT) gene;;membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); this is HPT2a, the most abundant of two splicing isoform; Note that HPT gene symbol conflicts with homogentisate phytyltransferase (HPT) gene;;membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); this is HPT2a, the most abundant of two splicing isoform; Note that HPT gene symbol conflicts with homogentisate phytyltransferase (HPT) gene;;membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); this is HPT2a, the most abundant of two splicing isoform; Note that HPT gene symbol conflicts with homogentisate phytyltransferase (HPT) gene;;membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); this is HPT2a, the most abundant of two splicing isoform; Note that HPT gene symbol conflicts with homogentisate phytyltransferase (HPT) gene;;membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); this is HPT2a, the most abundant of two splicing isoform; Note that HPT gene symbol conflicts with homogentisate phytyltransferase (HPT) gene;;membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); this is HPT2a, the most abundant of two splicing isoform; Note that HPT gene symbol conflicts with homogentisate phytyltransferase (HPT) gene;;membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); this is HPT2a, the most abundant of two splicing isoform; Note that HPT gene symbol conflicts with homogentisate phytyltransferase (HPT) gene;;membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); this is HPT2a, the most abundant of two splicing isoform; Note that HPT gene symbol conflicts with homogentisate phytyltransferase (HPT) gene;"
+Cre16.g680790	GMM:29.4	"protein.postranslational modification"	Chloroplast				"Cre01.g068400.t1.1;g16780.t1"		
+Cre16.g693200							"g15614.t2;g15614.t2"		
+Cre16.g678850	GMM:16.1.2.2	"secondary metabolism.isoprenoids.mevalonate pathway.HMG-CoA synthase"		"GO:0008299;GO:0004421"	"isoprenoid biosynthetic process;hydroxymethylglutaryl-CoA synthase activity"		"g16536.t1;g16536.t1;g16536.t1"		
+Cre16.g684379			Chloroplast				"g16812.t1;g16812.t1;g16812.t1;g16812.t1;g16812.t1"		
+Cre16.g658075				GO:0016787	"hydrolase activity"		g15901.t1		
+Cre16.g658950			Chloroplast				g15920.t1		
+Cre16.g665200			Chloroplast				"g16055.t1;Cre16.g665200.t1.1;g16055.t1;Cre16.g665200.t1.1"		
+Cre16.g691100							"Cre16.g691100.t1.1;g15663.t1"		
+Cre16.g695550							"g15557.t1;g15557.t1;g15557.t1"		
+Cre16.g650550	GMM:23.4.10	"nucleotide metabolism.phosphotransfer and pyrophosphatases.nucleoside diphosphate kinase"		"GO:0006241;GO:0006228;GO:0006183;GO:0006165;GO:0004550"	"CTP biosynthetic process;UTP biosynthetic process;GTP biosynthetic process;nucleoside diphosphate phosphorylation;nucleoside diphosphate kinase activity"	FAP103	"g15739.t1;g15739.t1"	"FAP103;FAP103"	"Flagellar Associated Protein similar to nucleoside diphosphate kinase, found in the flagellar proteome;Flagellar Associated Protein similar to nucleoside diphosphate kinase, found in the flagellar proteome"
+Cre16.g674250	GMM:27.1.1	RNA.processing.splicing		GO:0003676	"nucleic acid binding"	SRS10	"Cre16.g674250.t1.1;g16635.t1;SRS13;Cre16.g674250.t1.1;g16635.t1;SRS13"	"SRS10;SRS10"	"Serine/arginine-rich pre-mRNA splicing factor protein of the RS subfamily;Serine/arginine-rich pre-mRNA splicing factor protein of the RS subfamily"
+Cre16.g667900	"GMM:33.99;GMM:27.3.3"	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"	Chloroplast	"GO:0007275;GO:0006355;GO:0003700"	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		g16280.t1		"contains two copies of AP2 DNA-binding domain"
+Cre16.g663800	GMM:34.8	"transport.metabolite transporters at the envelope membrane"	Chloroplast			CGL51	"Cre16.g663800.t1.1;g16027.t1;TPT25"	CGL51	
+Cre16.g657250	GMM:24	"biodegradation of xenobiotics"	"Secretory pathway"			GOX19	"Cre16.g657250.t1.1;g15883.t1;GOX17"	GOX19	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); d"
+Cre16.g659450			"Secretory pathway"				"Cre16.g659450.t1.1;g15930.t1"		
+Cre16.g670500	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast	"GO:0006508;GO:0004176"	"proteolysis;ATP-dependent peptidase activity"		g16219.t1		
+Cre16.g654150						FAP63	"g15816.t1;g15816.t1;g15816.t1"	"FAP63;FAP63;FAP63"	"Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG20 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400];Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG20 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400];Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG20 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400]"
+Cre16.g686552							g16363.t1		
+Cre16.g686300			Chloroplast				"Cre16.g686300.t1.1;g16368.t1"		
+Cre16.g664500	"GMM:29.4;GMM:29.3.4.99"	"protein.postranslational modification;protein.targeting.secretory pathway.unspecified"				BBS3	"g16042.t1;BBS3B;ARFA1aBBS3B;ARL6;Cre16.g664500.t1.1"	BBS3	"Flagellar ARF-like GTPase, most similar to mammalian ARL6; similar to mammalian BBS3 that, when mutated, causes Bardet-Biedl syndrome 3; ADP-ribosylation factor 1"
+Cre16.g658700						FAP376	g15912.t1	FAP376	
+Cre16.g680005							"g16773.t1;Cre01.g068050.t1.1"		
+Cre16.g675861	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin					"Cre01.g066500.t1.2;g16734.t1;Cre01.g066500.t1.1;Cre01.g066500.t1.2;g16734.t1;Cre01.g066500.t1.1"	"SUMO3;SUMO3"	"Post-translational modification by SUMO modulates many important cellular processes; Biochemical activity verified;Post-translational modification by SUMO modulates many important cellular processes; Biochemical activity verified"
+Cre16.g683500	"GMM:29.2.3;GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2"	"protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"	HEL64	"g16432.t1;HEL64;Cre16.g683500.t1.1;Cre16.g683500.t1.1;HEL64;g16432.t1"		
+Cre16.g660300				GO:0055114	"oxidation-reduction process"		"g15948.t1;Cre16.g660300.t1.1"		
+Cre16.g682138							"g16792.t1;g16792.t1"		
+Cre16.g684900			Chloroplast				"g16400.t1;g16400.t1;g16400.t1;g16400.t1;g16400.t1"		
+Cre16.g688863				GO:0005515	"protein binding"		"Cre01.g071559.t1.1;g16852.t1;Cre01.g071559.t1.2"		
+Cre16.g651200			Mitochondrion				"Cre16.g651200.t1.1;g15753.t1;Cre16.g651200.t1.1;g15753.t1;Cre16.g651200.t1.1;g15753.t1"		
+Cre16.g649900	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR24	"g15725.t1;HTR40"	HTR24	"Replication linked H3; histone gene cluster XXIV (type 43)"
+Cre16.g663950	GMM:17.3.1.2.6	"hormone metabolism.brassinosteroid.synthesis-degradation.sterols.DWF7"	"Secretory pathway"	"GO:0055114;GO:0016491;GO:0006633;GO:0005506"	"oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding"	ERG3	"g16031.t1;Cre16.g663950.t1.1;ERG3;Cre16.g663950.t1.1;ERG3;g16031.t1;g16031.t1;Cre16.g663950.t1.1;ERG3"	"ERG3;ERG3;ERG3"	"Characterized by Brumfield et al. 21 [PMID:20084111]; Delta7-sterol-C5-desaturase; Target of CRR1;Characterized by Brumfield et al. 21 [PMID:20084111]; Delta7-sterol-C5-desaturase; Target of CRR1;Characterized by Brumfield et al. 21 [PMID:20084111]; Delta7-sterol-C5-desaturase; Target of CRR1"
+Cre16.g653258	GMM:31.1	cell.organisation	"Secretory pathway"	GO:0005515	"protein binding"		"g15797.t1;Cre16.g653258.t1.1"		
+Cre16.g688500			Mitochondrion				"g16163.t1;g16163.t1"		
+Cre16.g656950							"g15877.t2;g15877.t2;g15877.t2;g15877.t2;g15877.t2;g15877.t2;g15877.t2;g15877.t2;g15877.t2"		
+Cre16.g657300	"GMM:31.4;GMM:17.3.1.2.99"	"cell.vesicle transport;hormone metabolism.brassinosteroid.synthesis-degradation.sterols.other"	"Secretory pathway"			CPI1	"Cre16.g657300.t1.1;g15884.t1;CPI1"		"Cycloeucalenol cycloisomerase (Cycloeucalenol--obtusifoliol isomerase) (Cyclopropyl sterol isomerase) (CCI)"
+Cre16.g650600			"Secretory pathway"			MST1	"Cre16.g650600.t1.1;MST1;g15740.t1;Cre16.g650600.t1.1;MST1;g15740.t1"	"MST1;MST1"	"Mastigoneme-like protein; 240 kDa flagellar protein in Chlamydomonas; Genbank entry AF508983. Mastigonemes are protein projections from the flagellar membrane. Found in the flagellar proteome [PMID: 15998802]; alhtough the gene shows one transmembrane helix, this is in signal sequence and is lost from the final protein which appears to be a peripheral membrane protein polymer.;Mastigoneme-like protein; 240 kDa flagellar protein in Chlamydomonas; Genbank entry AF508983. Mastigonemes are protein projections from the flagellar membrane. Found in the flagellar proteome [PMID: 15998802]; alhtough the gene shows one transmembrane helix, this is in signal sequence and is lost from the final protein which appears to be a peripheral membrane protein polymer."
+Cre16.g684550	GMM:7.1.3	"OPP.oxidative PP.6-phosphogluconate dehydrogenase"		GO:0051287	"NAD binding"		"HAR2;g16407.t1"		"COG284, MmsB, 3-hydroxyisobutyrate dehydrogenase and related beta-hydroxyacid dehydrogenases"
+Cre16.g678150			"Secretory pathway"				"Cre16.g678150.t1.1;g16552.t1"		
+Cre16.g674627							"Cre01.g066000.t1.2;g16723.t1;Cre01.g066000.t1.1;MKS1"	B9D1	"Transition zone protein; Ortholog of the Meckel syndrome type 1 (MKS1) gene"
+Cre16.g660951			Chloroplast				g15962.t1		
+Cre16.g685300			"Secretory pathway"				"Cre16.g685300.t1.1;g16391.t1"		
+Cre16.g691439						CSB63			
+Cre16.g694402			Mitochondrion				g15584.t1		
+Cre16.g654700			"Secretory pathway"			PHC61	"g15827.t1;g15827.t1"	"PHC61;PHC61"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre16.g676750			Chloroplast	GO:0005515	"protein binding"		"g16580.t1;Cre16.g676750.t1.1"		
+Cre16.g650200	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP17	"g15731.t1;MITC17;MCP17"		"Possible folate carrier"
+Cre16.g670800				"GO:0051082;GO:0015631;GO:0007021"	"unfolded protein binding;tubulin binding;tubulin complex assembly"	TFC1	"Cre16.g670800.t1.1;TFC1;g16303.t1"	TFC1	
+Cre16.g668550	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0046872	"metal ion binding"		"Cre16.g668550.t1.1;g16264.t1;g16264.t1;Cre16.g668550.t1.1"		
+Cre16.g681250			"Secretory pathway"						
+Cre16.g686958							"g16835.t1;g16835.t1;g16835.t1"		
+Cre16.g676200	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		"GO:0005525;GO:0003924"	"GTP binding;GTPase activity"		"g16593.t1;g16593.t1"		
+Cre16.g692751	"GMM:21.1.1;GMM:21.1"	"redox.thioredoxin.PDIL;redox.thioredoxin"	"Secretory pathway"	GO:0045454	"cell redox homeostasis"	PDI3	"PDI3;g15623.t1"	PDI3	"This type of single domain protein disulfide isomerase appears specific to photosynthetic eukaryotes. PMID: 16143836"
+Cre16.g647534	"GMM:35.1.26;GMM:29.5.7"	"not assigned.no ontology.DC1 domain containing protein;protein.degradation.metalloprotease"				NRX4	"Cre16.g647534.t1.1;g15675.t1"	NRX4	"related to animal thioredoxin, nucleoredoxin"
+Cre16.g676421	GMM:27.3.66	"RNA.regulation of transcription.pseudo ARR transcription factor family"		"GO:0005515;GO:0000160"	"protein binding;phosphorelay signal transduction system"		"Cre01.g066750.t1.1;TOC1;g16739.t1;TOC1;Cre01.g066750.t1.1;g16739.t1;TOC1;Cre01.g066750.t1.1;g16739.t1;TOC1;g16739.t1;Cre01.g066750.t1.1;g16739.t1;TOC1;Cre01.g066750.t1.1;TOC1;Cre01.g066750.t1.1;g16739.t1;g16739.t1;Cre01.g066750.t1.1;TOC1;TOC1;Cre01.g066750.t1.1;g16739.t1"	"PRR1;PRR1;PRR1;PRR1;PRR1;PRR1;PRR1;PRR1"	"One of the target genes of the circadian transcription factor ROC75; encodes a pseudo response regulator-like protein similar to the Arabidopsis clock protein TOC1 [PMID: 21186242];One of the target genes of the circadian transcription factor ROC75; encodes a pseudo response regulator-like protein similar to the Arabidopsis clock protein TOC1 [PMID: 21186242];One of the target genes of the circadian transcription factor ROC75; encodes a pseudo response regulator-like protein similar to the Arabidopsis clock protein TOC1 [PMID: 21186242];One of the target genes of the circadian transcription factor ROC75; encodes a pseudo response regulator-like protein similar to the Arabidopsis clock protein TOC1 [PMID: 21186242];One of the target genes of the circadian transcription factor ROC75; encodes a pseudo response regulator-like protein similar to the Arabidopsis clock protein TOC1 [PMID: 21186242];One of the target genes of the circadian transcription factor ROC75; encodes a pseudo response regulator-like protein similar to the Arabidopsis clock protein TOC1 [PMID: 21186242];One of the target genes of the circadian transcription factor ROC75; encodes a pseudo response regulator-like protein similar to the Arabidopsis clock protein TOC1 [PMID: 21186242];One of the target genes of the circadian transcription factor ROC75; encodes a pseudo response regulator-like protein similar to the Arabidopsis clock protein TOC1 [PMID: 21186242]"
+Cre16.g688050							"g16326.t1;g16326.t1"		
+Cre16.g671685			"Secretory pathway"	"GO:0016021;GO:0005783"	"integral component of membrane;endoplasmic reticulum"		"g16118.t1;Cre01.g063000.t1.1"		
+Cre16.g685949									
+Cre16.g675150	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g16615.t1		
+Cre16.g687800	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	PTK22	"PTK22;g16332.t1;g16332.t1;PTK22;PTK22;g16332.t1;g16332.t1;PTK22"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre16.g684065			Mitochondrion				"Cre16.g684065.t1.1;g16417.t1"		
+Cre16.g657000	GMM:27.2	RNA.transcription		"GO:0006352;GO:0005634"	"DNA-templated transcription, initiation;nucleus"		"Cre16.g657000.t1.1;g15878.t1"		
+Cre16.g679669	GMM:16.1.1.3	"secondary metabolism.isoprenoids.non-mevalonate pathway.CMS"	Chloroplast			CMS1	"CMS1;g16770.t1;CMS1;g16770.t1"	"CMS1;CMS1"	"4-diphosphocytidyl-2C-methyl-D-erythritol synthase (2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase) (MEP cytidylyltransferase) (MCT) (ispD) (ygbP), chloroplast precursor;4-diphosphocytidyl-2C-methyl-D-erythritol synthase (2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase) (MEP cytidylyltransferase) (MCT) (ispD) (ygbP), chloroplast precursor"
+Cre16.g663650	"GMM:33.99;GMM:31.4"	"development.unspecified;cell.vesicle transport"	Chloroplast			TRS33	"g16023.t1;TRS33;Cre16.g663650.t1.1"	TRS33	"Expressed Protein. Conserved protein similar to TRS33, a component of the TRAPP complex, involved in ER to Golgi vesicle transport."
+Cre16.g668100			Chloroplast				"g16276.t1;Cre16.g668100.t1.1;SMM48;SMM48;Cre16.g668100.t1.1;g16276.t1"		
+Cre16.g676300	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g16591.t1		
+Cre16.g655750						TEK1	"Cre16.g655750.t1.1;TEK1;p58;g15852.t1;g15852.t1;TEK1;p58;Cre16.g655750.t1.1;TEK1;Cre16.g655750.t1.1;g15852.t1;p58;p58;g15852.t1;TEK1;Cre16.g655750.t1.1;Cre16.g655750.t1.1;TEK1;g15852.t1;p58;p58;g15852.t1;TEK1;Cre16.g655750.t1.1;Cre16.g655750.t1.1;p58;g15852.t1;TEK1;Cre16.g655750.t1.1;TEK1;g15852.t1;p58;TEK1;g15852.t1;Cre16.g655750.t1.1;p58"	"TEK1;TEK1;TEK1;TEK1;TEK1;TEK1;TEK1;TEK1;TEK1"	"Flagellar protein associated with inner arm dynein; Phosphorylation characterized by Boesger et al; Found in proteome of basal body as Tektin; Related to Tektin in humans;Flagellar protein associated with inner arm dynein; Phosphorylation characterized by Boesger et al; Found in proteome of basal body as Tektin; Related to Tektin in humans;Flagellar protein associated with inner arm dynein; Phosphorylation characterized by Boesger et al; Found in proteome of basal body as Tektin; Related to Tektin in humans;Flagellar protein associated with inner arm dynein; Phosphorylation characterized by Boesger et al; Found in proteome of basal body as Tektin; Related to Tektin in humans;Flagellar protein associated with inner arm dynein; Phosphorylation characterized by Boesger et al; Found in proteome of basal body as Tektin; Related to Tektin in humans;Flagellar protein associated with inner arm dynein; Phosphorylation characterized by Boesger et al; Found in proteome of basal body as Tektin; Related to Tektin in humans;Flagellar protein associated with inner arm dynein; Phosphorylation characterized by Boesger et al; Found in proteome of basal body as Tektin; Related to Tektin in humans;Flagellar protein associated with inner arm dynein; Phosphorylation characterized by Boesger et al; Found in proteome of basal body as Tektin; Related to Tektin in humans;Flagellar protein associated with inner arm dynein; Phosphorylation characterized by Boesger et al; Found in proteome of basal body as Tektin; Related to Tektin in humans"
+Cre16.g660050				GO:0016020	membrane		"g15944.t1;g15944.t1"	"CMT1B;CMT1B"	"Co-orthologous with CMT1A to Arabidopsis thaliana CMT1;;Co-orthologous with CMT1A to Arabidopsis thaliana CMT1;"
+Cre16.g651700							"g15763.t1;g15763.t1"		
+Cre16.g686550			Mitochondrion				"g16362.t1;g16362.t1"		
+Cre16.g684800	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	"protein binding"		"g16402.t1;g16402.t1"		
+Cre16.g687200			Chloroplast				"g16346.t1;g16346.t1"		
+Cre16.g658150	GMM:29.4	"protein.postranslational modification"					"g15902.t1;Cre16.g658150.t1.1;Cre16.g658150.t1.1;g15902.t1"		
+Cre16.g692003									
+Cre16.g694750			"Secretory pathway"				"g15576.t1;Cre16.g694750.t1.1;GT90-30;GT90F30"		
+Cre16.g694450	GMM:29.9	protein.co-chaperones	Chloroplast			DNJ36	"CGL57;g15582.t1;DNJ36;Cre16.g694450.t1.1;DNJ36;CGL57;Cre16.g694450.t1.1;g15582.t1;g15582.t1;CGL57;Cre16.g694450.t1.1;DNJ36"		"Conserved expressed protein; possible peptidase motif?;Conserved expressed protein; possible peptidase motif?;Conserved expressed protein; possible peptidase motif?"
+Cre16.g656150			"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"		"g15860.t1;Cre16.g656150.t1.1;Cre16.g656150.t1.1;g15860.t1"		
+Cre16.g679151				GO:0005515	"protein binding"		g16528.t1		
+Cre16.g650850									
+Cre16.g672800	"GMM:3.5;GMM:10.1.1.1"	"minor CHO metabolism.others;cell wall.precursor synthesis.NDP sugar pyrophosphorylase.GDP mannose"				GMP1	"VTC1;GMP1;g16667.t1;Cre16.g672800.t1.1;g16667.t1;VTC1;Cre16.g672800.t1.1;GMP1"	"GMP1;GMP1"	"GDP-D-mannose pyrophosphorylase (D-mannose-1-phosphate guanylyltransferase); a nucleotidyl transferase, involved in vitamin C biosynthesis;GDP-D-mannose pyrophosphorylase (D-mannose-1-phosphate guanylyltransferase); a nucleotidyl transferase, involved in vitamin C biosynthesis"
+Cre16.g689950				GO:0005515	"protein binding"		"Cre16.g689950.t1.1;g16195.t1"		
+Cre16.g650750			Chloroplast			FAP268	g15744.t1	FAP268	"Flagellar Associated Protein, found in the flagellar proteome; Similar to Calcium-Binding Protein"
+Cre16.g652650							"g15784.t1;g15784.t1"		
+Cre16.g650500			Chloroplast				"g15738.t1;Cre16.g650500.t1.1"		
+Cre16.g674300	"GMM:31.1;GMM:27.3.39"	"cell.organisation;RNA.regulation of transcription.AtSR transcription factor family"	Chloroplast			FAP269	g16634.t1	FAP269	"Conserved uncharacterized Flagellar Associated Protein with ankyrin repeats; found in the flagellar proteome"
+Cre16.g664750				GO:0005515	"protein binding"		g16047.t1		
+Cre16.g660800	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion			TIM44	"TIM44;Cre16.g660800.t1.1;g15959.t1;TIM44;Cre16.g660800.t1.1;g15959.t1;TIM44;g15959.t1;Cre16.g660800.t1.1"	"TIM44;TIM44;TIM44"	"Similar to mitochondrial import inner membrane translocase subunit TIM44;Similar to mitochondrial import inner membrane translocase subunit TIM44;Similar to mitochondrial import inner membrane translocase subunit TIM44"
+Cre16.g670050	GMM:31.4	"cell.vesicle transport"					"g16229.t1;Cre16.g670050.t1.1;g16229.t1;Cre16.g670050.t1.1"		
+Cre16.g673300			Chloroplast				"Cre16.g673300.t1.1;g16656.t1"		"Eight-member family found found at two loci on chromosomes 16 and 17"
+Cre16.g653250							g15796.t1		
+Cre16.g657850	"GMM:29.9;GMM:29.3.4.1;GMM:20.2.1"	"protein.co-chaperones;protein.targeting.secretory pathway.ER;stress.abiotic.heat"	EndoplasmicReticulum	"GO:0031204;GO:0008565"	"posttranslational protein targeting to membrane, translocation;protein transporter activity"	SEC63	"g15895.t1;Cre16.g657850.t1.1"	SEC63	"63 kDa DnaJ-like protein, interacts with BIP (Hsp70-Homolog in ER) in preprotein import; closest homolog in higher plants is rice Q7XVN7"
+Cre16.g652700	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114	"oxidation-reduction process"		"g15785.t1;g15785.t1"		
+Cre16.g670652									
+Cre16.g676869	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g16743.t1;Cre01.g066950.t1.1;g16743.t1;Cre01.g066950.t1.1;g16743.t1;Cre01.g066950.t1.1;g16743.t1;Cre01.g066950.t1.1;g16743.t1;Cre01.g066950.t1.1;Cre01.g066950.t1.1;g16743.t1;g16743.t1;Cre01.g066950.t1.1"		
+Cre16.g667550									
+Cre16.g685900	GMM:26.6	"misc.O-methyl transferases"		"GO:0008168;GO:0008152;GO:0006479"	"methyltransferase activity;metabolic process;protein methylation"	PRMT3	"PRM3;Cre16.g685900.t1.1;g16378.t1;Cre16.g685900.t1.1;PRM3;g16378.t1"	"PRMT3;PRMT3"	"ChromDB PRMT3403;ChromDB PRMT3403"
+Cre16.g652250			"Secretory pathway"			CMA3	"g15776.t1;CMA3;Cre16.g652250.t1.1;CMA3;Cre16.g652250.t1.1;g15776.t1"		"Transmembrane protein with proline-rich C-terminal domain of unknown function; secretory pathway; One of three tandem paralogs (Cre16.g652250, Cre16.g652300, and Cre16.g652350);Transmembrane protein with proline-rich C-terminal domain of unknown function; secretory pathway; One of three tandem paralogs (Cre16.g652250, Cre16.g652300, and Cre16.g652350)"
+Cre16.g672497	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"		"Cre01.g065200.t1.1;g16703.t1;KIF11"		"ts-lethal mutant block at S/M (PMID 29743196)"
+Cre16.g665000						UMP1	"Cre16.g665000.t1.1;UMP1;g16052.t1;UMP1;g16052.t1;Cre16.g665000.t1.1"	"UMP1;UMP1"	"UMP1 is a short-lived chaperone present in the precursor form of the 2S proteasome and absent in the mature complex. UMP1 is required for the correct assembly and enzymatic activation of the proteasome. UMP1 seems to be degraded rapidly;UMP1 is a short-lived chaperone present in the precursor form of the 2S proteasome and absent in the mature complex. UMP1 is required for the correct assembly and enzymatic activation of the proteasome. UMP1 seems to be degraded rapidly"
+Cre16.g648950							"g15704.t1;g15704.t1"		
+Cre16.g688600			"Secretory pathway"	"GO:0006281;GO:0004518"	"DNA repair;nuclease activity"		"XPG4;g16165.t1"	XPG4	"DNA repair protein, resembling the Xeroderma pignmentosum group G protein, XPGC, and Rad2 yeast homolog"
+Cre16.g661000	GMM:21.3	redox.heme					"Cre16.g661000.t1.1;g15963.t1"	THB7	"oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is next to THB8, THB9 and THB10 on Chr_16; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor"
+Cre16.g664000	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		GO:0005515	"protein binding"	HLM25	"g16032.t1;Cre16.g664000.t1.1;HLM25"		
+Cre16.g654526									
+Cre16.g686398			Mitochondrion				g16830.t1		
+Cre16.g684715	"GMM:32;GMM:27.1.20;GMM:27.1.19"	"micro RNA, natural antisense etc;RNA.processing.degradation dicer;RNA.processing.ribonucleases"	Mitochondrion	"GO:0016891;GO:0006396;GO:0005524;GO:0004525;GO:0003723;GO:0003676"	"endoribonuclease activity, producing 5'-phosphomonoesters;RNA processing;ATP binding;ribonuclease III activity;RNA binding;nucleic acid binding"	DCL2	"Cre01.g070000.t1.1;g16815.t1;DCL2"		"Presumably involved in posttranscriptional gene silencing/RNA interference"
+Cre16.g691750	GMM:26.1	misc.misc2		GO:0016811	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides"	AMI1	"AMI1;g15644.t1;Cre16.g691750.t1.1;g15644.t1;AMI1;Cre16.g691750.t1.1;Cre16.g691750.t1.1;g15644.t1;AMI1"		"similar to plant formamidase (possibly acetamidase), not to yeast amidase;similar to plant formamidase (possibly acetamidase), not to yeast amidase;similar to plant formamidase (possibly acetamidase), not to yeast amidase"
+Cre16.g675301	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005515	"protein binding"		"Cre01.g066300.t1.2;Cre01.g066300.t1.1;g16729.t1"		
+Cre16.g690319				"GO:0016021;GO:0006810;GO:0005337"	"integral component of membrane;transport;nucleoside transmembrane transporter activity"		"Cre01.g072150.t1.2;g16865.t1;Cre01.g072150.t1.1"		
+Cre16.g685053			Chloroplast				"g16818.t1;Cre01.g070150.t1.1"		
+Cre16.g688901	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383"	"intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity"	cyg68	"g16173.t1;Cre16.g688901.t1.1;g16173.t1;Cre16.g688901.t1.1;g16173.t1;Cre16.g688901.t1.1"	"CYG56;CYG56;CYG56"	"contains N-terminal NO-sensing and dimerization domains; mutation of CYG56 renders expression of the nitrate reducatse gene partly insensitive to ammonium repression; published cDNA sequence (EU841916) differs from that of gene model in 5' region, but EST data supports gene model;contains N-terminal NO-sensing and dimerization domains; mutation of CYG56 renders expression of the nitrate reducatse gene partly insensitive to ammonium repression; published cDNA sequence (EU841916) differs from that of gene model in 5' region, but EST data supports gene model;contains N-terminal NO-sensing and dimerization domains; mutation of CYG56 renders expression of the nitrate reducatse gene partly insensitive to ammonium repression; published cDNA sequence (EU841916) differs from that of gene model in 5' region, but EST data supports gene model"
+Cre16.g665300							"Cre16.g665300.t1.1;g16057.t1;g16057.t1;Cre16.g665300.t1.1"		
+Cre16.g673841			"Secretory pathway"				"Cre01.g065650.t1.1;Cre01.g065650.t1.2;g16715.t1;g16715.t1;Cre01.g065650.t1.2;Cre01.g065650.t1.1"		
+Cre16.g661350	GMM:1.3.13	"PS.calvin cycle.rubisco interacting"	Chloroplast			RMT1	"RBCMT1;Cre16.g661350.t1.1;RMT1;g15970.t1"		EC:2.1.1.127
+Cre16.g655450	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Mitochondrion	"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g15845.t1;g15845.t1"		
+Cre16.g675413							"g16730.t1;Cre01.g066350.t1.1;g16730.t1;Cre01.g066350.t1.1"		
+Cre16.g691664			Mitochondrion						
+Cre16.g674000	"GMM:33.99;GMM:29.5"	"development.unspecified;protein.degradation"				wdr2	"g16642.t1;WDR2;Cre16.g674000.t1.1"	LWD1	"Orthologous to Arabidopsis LWD1"
+Cre16.g666300	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g16079.t1;g16079.t1;g16079.t1"		
+Cre16.g657700			Mitochondrion				"g15892.t1;g15892.t1;g15892.t1;g15892.t1;g15892.t1;g15892.t1;g15892.t1"		
+Cre16.g656750			Mitochondrion				"g15873.t1;g15873.t1;g15873.t1;g15873.t1;g15873.t1"		
+Cre16.g682450							"g16453.t2;g16453.t2"		
+Cre16.g685050	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast	GO:0005515	"protein binding"	LCI15	"g16396.t1;LCI14"	LCI15	"Related to PRLI-interacting factor L; Putative mitochondrial matrix protein; Homologous to PRLI-interacting factor L in Arabidopsis [PMID: 9765207]; regulated by CCM1 [PMID: 15235119]; contains PF07683, CobW_C domain; missing GTPase domain; involved in acclimation to low CO2; referred to as LCI14 in [PMID: 18322145]; One of three paralogous tandem genes (Cre16.g685000, Cre16.g685050, Cre16.g685100)"
+Cre16.g675850	GMM:11.9.4.2	"lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH"		"GO:0055114;GO:0050660;GO:0016627;GO:0008152;GO:0003995"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity, acting on the CH-CH group of donors;metabolic process;acyl-CoA dehydrogenase activity"		"g16600.t1;Cre16.g675850.t1.1"		
+Cre16.g659550			"Secretory pathway"				g15932.t2		
+Cre16.g679900	"GMM:28.99;GMM:27.1.19"	"DNA.unspecified;RNA.processing.ribonucleases"		"GO:0004527;GO:0003676"	"exonuclease activity;nucleic acid binding"	XRN3	"Cre16.g679900.t1.1;g16512.t1;XRN3;XRN3;g16512.t1;Cre16.g679900.t1.1"	"XRN3;XRN3"	"Putative homologue of yeast 5'-3' exoribonucleases Xrn1p(cytoplasmic) and Rat1p (nuclear).;Putative homologue of yeast 5'-3' exoribonucleases Xrn1p(cytoplasmic) and Rat1p (nuclear)."
+Cre16.g676500			Chloroplast				"g16586.t1;Cre16.g676500.t1.1;g16586.t1;Cre16.g676500.t1.1"		
+Cre16.g684450	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g16409.t1;Cre16.g684450.t1.1;g16409.t1;Cre16.g684450.t1.1;g16409.t1;Cre16.g684450.t1.1"		
+Cre16.g651500	"GMM:33.99;GMM:30.11.1"	"development.unspecified;signalling.light.COP9 signalosome"					"g15759.t1;Cre16.g651500.t1.1"		
+Cre16.g680800				GO:0005515	"protein binding"	CGL155	"g16491.t1;Cre16.g680800.t1.1"	CGL155	
+Cre16.g671250	GMM:34.14	"transport.unspecified cations"	"Secretory pathway"	"GO:0055085;GO:0016021;GO:0015299;GO:0006812"	"transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport"		"Cre16.g671250.t1.1;g16294.t1"		
+Cre16.g648200	"GMM:26.10;GMM:26.1;GMM:17.2.2"	"misc.cytochrome P450;misc.misc2;hormone metabolism.auxin.signal transduction"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP744C1	"CYP35;g15688.t1;Cre16.g648200.t1.1"	CYP744C1	"Cytochrome P450. The CYP711 clan includes CYP711A1 of Arabidopsis (MAX1). This gene product makes a carotenoid-derived branch inhibiting hormone. The CYP744 family has best BLAST hits to CYP5 family members (thromboxane A2 synthase in animals), followed by CYP3 sequences. The top 100 BLAST hits were all animal sequences. The plant CYP711 clan may share a common ancestor with the animal CYP3/CYP4 clan."
+Cre16.g682750							"g16447.t1;Cre16.g682750.t1.1;g16447.t1;Cre16.g682750.t1.1"		
+Cre16.g688800							"Cre16.g688800.t1.1;g16170.t1"		
+Cre16.g654850	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g15830.t1;g15830.t1;g15830.t1"		
+Cre16.g675550	"GMM:29.8;GMM:29.6.3.1;GMM:29.6"	"protein.assembly and cofactor ligation;protein.folding.immunophilins (IMM).FKBPs;protein.folding"	Chloroplast	GO:0006457	"protein folding"	FKB16-2	"Cre16.g675550.t1.1;FKB16-2;FKB5;g16607.t2;FKB5;g16607.t2;FKB16-2;Cre16.g675550.t1.1;FKB5;g16607.t2;Cre16.g675550.t1.1;FKB16-2;FKB5;g16607.t2;FKB16-2;Cre16.g675550.t1.1;FKB16-2;Cre16.g675550.t1.1;g16607.t2;FKB5"	"FKB16B;FKB16B;FKB16B;FKB16B;FKB16B"	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPiase) (Rotamase) (Immunophilin), orthologous to At5g45680; isoform a of gene FKB16-2, probably directed to thylakoid lumen (TP length 26, RR motif); other splicing isoforms possibly directed to stroma or mitochondrion; linked to FKB16-5;FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPiase) (Rotamase) (Immunophilin), orthologous to At5g45680; isoform a of gene FKB16-2, probably directed to thylakoid lumen (TP length 26, RR motif); other splicing isoforms possibly directed to stroma or mitochondrion; linked to FKB16-5;FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPiase) (Rotamase) (Immunophilin), orthologous to At5g45680; isoform a of gene FKB16-2, probably directed to thylakoid lumen (TP length 26, RR motif); other splicing isoforms possibly directed to stroma or mitochondrion; linked to FKB16-5;FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPiase) (Rotamase) (Immunophilin), orthologous to At5g45680; isoform a of gene FKB16-2, probably directed to thylakoid lumen (TP length 26, RR motif); other splicing isoforms possibly directed to stroma or mitochondrion; linked to FKB16-5;FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPiase) (Rotamase) (Immunophilin), orthologous to At5g45680; isoform a of gene FKB16-2, probably directed to thylakoid lumen (TP length 26, RR motif); other splicing isoforms possibly directed to stroma or mitochondrion; linked to FKB16-5"
+Cre16.g668900			Chloroplast	GO:0016021	"integral component of membrane"	MTA3	"MTA3;A3;g16257.t1"		"unknown protein; a pseudo-gene copy resides in the A region of the mt+ locus [PMID: 11805055]. Independently sequenced, see AF309495"
+Cre16.g681802	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005515;GO:0004672"	"protein phosphorylation;protein binding;protein kinase activity"		"Cre01.g068850.t1.1;g16789.t1;g16789.t1;Cre01.g068850.t1.1;g16789.t1;Cre01.g068850.t1.1;Cre01.g068850.t1.1;g16789.t1;g16789.t1;Cre01.g068850.t1.1;Cre01.g068850.t1.1;g16789.t1;Cre01.g068850.t1.1;g16789.t1"		
+Cre16.g693300			"Secretory pathway"				"g15612.t1;g15612.t1"		
+Cre16.g681301				GO:0005515	"protein binding"	MOT12	"Cre01.g064200.t1.1;MOT12;Cre01.g064200.t1.2;g16146.t1;Cre01.g064200.t1.2;g16146.t1;MOT12;Cre01.g064200.t1.1"	"MOT12;MOT12"	"Identified by comparative genomics as being present only in organisms having motile (MOT) cilia;Identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre16.g649200			Chloroplast				"Cre16.g649200.t1.1;g15709.t1;g15709.t1;Cre16.g649200.t1.1"		
+Cre16.g669400							"SMM49;g16243.t1;Cre16.g669400.t1.1"		
+Cre16.g690991	GMM:29.2.4	protein.synthesis.elongation	"Mitochondrion;Chloroplast"	"GO:0006414;GO:0003746"	"translational elongation;translation elongation factor activity"		"Cre01.g072400.t1.2;g16871.t1;Cre01.g072400.t1.1;Cre01.g072400.t1.2;g16871.t1;Cre01.g072400.t1.1;Cre01.g072400.t1.1;g16871.t1;Cre01.g072400.t1.2;g16871.t1;Cre01.g072400.t1.2;Cre01.g072400.t1.1;Cre01.g072400.t1.1;Cre01.g072400.t1.2;g16871.t1"		
+Cre16.g685350			Chloroplast				"Cre16.g685350.t1.1;g16390.t1"		
+Cre16.g679109			Chloroplast			YEE3	"g16765.t1;Cre01.g067650.t1.2;Cre01.g067650.t1.1;YEE3"	YEE3	"Contains 2 DUF395 domains, found in YeeE and YedE from Escherichia coli. These proteins are integral membrane proteins of unknown function. Many of these proteins contain two homologous regions that are represented by this entry. This region contains seve"
+Cre16.g685200	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g16393.t1;g16393.t1"		
+Cre16.g653601				"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPL33	"g15805.t1;bL33m;MRPL33"	MRPL33	
+Cre16.g666550	GMM:21.3	redox.heme	Chloroplast			SOUL3	"SOUL3;g16085.t1;SOUL3;g16085.t1;SOUL3;g16085.t1;g16085.t1;SOUL3"		"Conserved expressed SOUL heme binding protein; N-terminal (possibly lacking in alternatively spliced form) similar to unknown cyanobacterial protein; C-terminus similar to SOUL protein, putative heme-binding domain;Conserved expressed SOUL heme binding protein; N-terminal (possibly lacking in alternatively spliced form) similar to unknown cyanobacterial protein; C-terminus similar to SOUL protein, putative heme-binding domain;Conserved expressed SOUL heme binding protein; N-terminal (possibly lacking in alternatively spliced form) similar to unknown cyanobacterial protein; C-terminus similar to SOUL protein, putative heme-binding domain;Conserved expressed SOUL heme binding protein; N-terminal (possibly lacking in alternatively spliced form) similar to unknown cyanobacterial protein; C-terminus similar to SOUL protein, putative heme-binding domain"
+Cre16.g680454				GO:0005515	"protein binding"		"g16777.t1;Cre01.g068250.t1.2;Cre01.g068250.t1.1"		
+Cre16.g692400	GMM:27.3.54	"RNA.regulation of transcription.histone acetyltransferases"		"GO:0016568;GO:0006355;GO:0005634"	"chromatin modification;regulation of transcription, DNA-templated;nucleus"		g15630.t1		
+Cre16.g669200							"g16248.t1;Cre16.g669200.t1.1"		
+Cre16.g695900							g15550.t1		
+Cre16.g648550	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO23	"Cre16.g648550.t1.1;HFO41;g15696.t1"	HFO23	"Replication linked H4; histone gene cluster XXIII (type 43)"
+Cre16.g659667			Mitochondrion						
+Cre16.g685750			"Secretory pathway"				"g16381.t1;g16381.t1"		
+Cre16.g674850							"g16622.t1;g16622.t1"		
+Cre16.g691350			"Secretory pathway"				"g15655.t1;g15655.t1;g15655.t1;g15655.t1"		
+Cre16.g673109	GMM:11.1.12	"lipid metabolism.FA synthesis and FA elongation.ACP protein"	Mitochondrion			ACP1	"ACP1;Cre01.g063200.t1.1;g16122.t1;Cre01.g063200.t1.2"	ACP1	"Acyl-carrier protein, complex I, mitochondial respiratory chain; Acyl carrier protein (ACP), acetyl-CoA carboxylase component; Involved in glycerolipid metabolism; NADH:ubiquinone oxidoreductase subunit protein (=NDUFAB1 subunit); Ortholog to NDUFAB1 in Homo sapiens"
+Cre16.g691202									
+Cre16.g672150	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"				
+Cre16.g659100			"Secretory pathway"				"g15923.t1;g15923.t1"		
+Cre16.g691351									
+Cre16.g677702							g16319.t1		
+Cre16.g688751			Mitochondrion				"Cre01.g071550.t1.1;g16851.t1"		
+Cre16.g682250			"Secretory pathway"				g16458.t1		
+Cre16.g662150	"GMM:29.8;GMM:1.1.3.5"	"protein.assembly and cofactor ligation;PS.lightreaction.cytochrome b6/f.biogenesis"	Chloroplast			CCB1	"CPLD51;Cre16.g662150.t1.1;g15990.t1"	CCB1	"involved in heme c covalent linkage to cyt b6; conserved in plant lineage and diatoms (organisms performing oxygenic photosynthesis). Localized to chloroplast. PMID: 17535914"
+Cre16.g686800	GMM:34.7	transport.phosphate		"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"	PTA2	"g16356.t1;PTA2;Cre16.g686800.t1.1;Cre16.g686800.t1.1;g16356.t1;PTA2;g16356.t1;PTA2;Cre16.g686800.t1.1"	"PTA2;PTA2;PTA2"	"Putative phosphate transporter homolog type A-2, splice variant a, similar to yeast Pho84 H+/Pi symporter; clusters with PTA3 and PTA4 on scaffold 14. Possibly a non-functional transcript; corresponds to gi 21218041 dbj AB074875.1;Putative phosphate transporter homolog type A-2, splice variant a, similar to yeast Pho84 H+/Pi symporter; clusters with PTA3 and PTA4 on scaffold 14. Possibly a non-functional transcript; corresponds to gi 21218041 dbj AB074875.1;Putative phosphate transporter homolog type A-2, splice variant a, similar to yeast Pho84 H+/Pi symporter; clusters with PTA3 and PTA4 on scaffold 14. Possibly a non-functional transcript; corresponds to gi 21218041 dbj AB074875.1"
+Cre16.g683954									
+Cre16.g668451			"Secretory pathway"				"g16268.t1;Cre16.g668451.t1.1"		
+Cre16.g689100	GMM:29.1.30	"protein.aa activation.pseudouridylate synthase"		"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS6	"g16177.t1;PUS6;PUS6;g16177.t1;g16177.t1;PUS6;g16177.t1;PUS6;PUS6;g16177.t1"		
+Cre16.g678350			Mitochondrion			CAM19	"CAM19;g16547.t1;Cre16.g678350.t1.1"		
+Cre16.g690950			"Secretory pathway"				"g15666.t1;Cre16.g690950.t1.1"		
+Cre16.g667800							"g16282.t1;Cre16.g667800.t1.1"		
+Cre16.g677700			Mitochondrion	"GO:0017056;GO:0005643"	"structural constituent of nuclear pore;nuclear pore"		"g16562.t1;g16562.t1;g16562.t1;g16562.t1"	"NUP62;NUP62;NUP62;NUP62"	"62 kDa Nuclear Pore Complex Protein;62 kDa Nuclear Pore Complex Protein;62 kDa Nuclear Pore Complex Protein;62 kDa Nuclear Pore Complex Protein"
+Cre16.g661700			"Secretory pathway"				"Cre16.g661700.t1.1;g15979.t1"		
+Cre16.g649550			"Secretory pathway"				"g15717.t1;g15717.t1;g15717.t1;g15717.t1;g15717.t1"		
+Cre16.g695250			"Secretory pathway"				g15563.t1		
+Cre16.g657979									
+Cre16.g677765	GMM:27.3.66	"RNA.regulation of transcription.pseudo ARR transcription factor family"	"Secretory pathway"	GO:0004866	"endopeptidase inhibitor activity"		"Cre01.g067150.t1.2;g16751.t1;Cre01.g067150.t1.1;Cre01.g067150.t1.2;g16751.t1;Cre01.g067150.t1.1;Cre01.g067150.t1.1;g16751.t1;Cre01.g067150.t1.2"		
+Cre16.g664400							"Cre16.g664400.t1.1;g16040.t1"		
+Cre16.g693819						PWR12	"g15601.t1;Cre16.g693819.t1.1;PWR12"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre16.g675700							"BLZ21;g16603.t1"		"Putative basic-leucine zipper (bZIP) transcription factor"
+Cre16.g684000	GMM:29.5.7	protein.degradation.metalloprotease					g16420.t1		
+Cre16.g655250			"Secretory pathway"				"Cre16.g655250.t1.1;g15839.t1"		
+Cre16.g685725			Mitochondrion				"Cre01.g070450.t1.1;g16824.t2"		
+Cre16.g658600							" SPCB25;g15910.t1;SPC25;SPC25; SPCB25;g15910.t1"		"ts-lethal mutant block at S/M (PMID 29743196);ts-lethal mutant block at S/M (PMID 29743196)"
+Cre16.g663450			Chloroplast			LCI11B	"Cre16.g663450.t1.1;LCI11B;LCI11;g16017.t1;LCI11;Cre16.g663450.t1.1;LCI11B;g16017.t1;g16017.t1;LCI11;Cre16.g663450.t1.1;LCI11B;g16017.t1;LCI11;LCI11B;Cre16.g663450.t1.1;g16017.t1;LCI11;Cre16.g663450.t1.1;LCI11B;g16017.t1;Cre16.g663450.t1.1;LCI11;LCI11B;LCI11;LCI11B;Cre16.g663450.t1.1;g16017.t1;g16017.t1;LCI11;Cre16.g663450.t1.1;LCI11B;g16017.t1;Cre16.g663450.t1.1;LCI11B;LCI11;g16017.t1;LCI11;LCI11B;Cre16.g663450.t1.1;g16017.t1;Cre16.g663450.t1.1;LCI11B;LCI11;LCI11;LCI11B;Cre16.g663450.t1.1;g16017.t1;LCI11;Cre16.g663450.t1.1;LCI11B;g16017.t1"	"BST3;BST3;BST3;BST3;BST3;BST3;BST3;BST3;BST3;BST3;BST3;BST3;BST3"	"Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2;Thylakoid membrane protein with 4 transmembrane helices, probably pentameric; present in pyrenoid-traversing thylakoids; induction by Low-CO2 is cia5-dependent; RNAi mutants show growth defects under low CO2; similar to Bestrophin, RFP-TM, a ubiquitous chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family; very similar to closely linked BST1 and BST2"
+Cre16.g672385	"GMM:13.1.7.7;GMM:13.1.7"	"amino acid metabolism.synthesis.histidine.imidazoleglycerol-phosphate synthase (cyclase);amino acid metabolism.synthesis.histidine"		"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"	HIS5	"HIS5;Cre01.g065150.t1.1;g16702.t1;Cre01.g065150.t1.2"	HIS5	"Histidinol-phosphate aminotransferase (EC 2.6.1.9); predicted plastid targeting by Target-P"
+Cre16.g672650	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP14	"g16672.t1;MITC14;MCP14;Cre16.g672650.t1.1;g16672.t1;MITC14;MCP14;Cre16.g672650.t1.1;MITC14;MCP14;Cre16.g672650.t1.1;g16672.t1;g16672.t1;MCP14;Cre16.g672650.t1.1;MITC14;Cre16.g672650.t1.1;MCP14;MITC14;g16672.t1;MITC14;Cre16.g672650.t1.1;MCP14;g16672.t1;MITC14;Cre16.g672650.t1.1;g16672.t1;MCP14;MCP14;Cre16.g672650.t1.1;MITC14;g16672.t1;MITC14;MCP14;Cre16.g672650.t1.1;g16672.t1"		"Possible 2-oxoglutarate/malate carrier; highly related to other plant mitochondrial carriers;Possible 2-oxoglutarate/malate carrier; highly related to other plant mitochondrial carriers;Possible 2-oxoglutarate/malate carrier; highly related to other plant mitochondrial carriers;Possible 2-oxoglutarate/malate carrier; highly related to other plant mitochondrial carriers;Possible 2-oxoglutarate/malate carrier; highly related to other plant mitochondrial carriers;Possible 2-oxoglutarate/malate carrier; highly related to other plant mitochondrial carriers;Possible 2-oxoglutarate/malate carrier; highly related to other plant mitochondrial carriers;Possible 2-oxoglutarate/malate carrier; highly related to other plant mitochondrial carriers;Possible 2-oxoglutarate/malate carrier; highly related to other plant mitochondrial carriers"
+Cre16.g677001			Mitochondrion				"g16576.t1;g16576.t1;g16576.t1"		
+Cre16.g669700									
+Cre16.g678213	"GMM:29.4;GMM:11.9.1"	"protein.postranslational modification;lipid metabolism.lipid degradation.palmitoyl-protein hydrolase"	"Secretory pathway"	"GO:0098599;GO:0008474;GO:0002084"	"palmitoyl hydrolase activity;palmitoyl-(protein) hydrolase activity;protein depalmitoylation"		"g16756.t1;Cre01.g067300.t1.1"		
+Cre16.g673554									
+Cre16.g695218	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre16.g695218.t1.1;g15564.t1;Cre16.g695218.t1.1;g15564.t1"		
+Cre16.g678900	GMM:3.8	"minor CHO metabolism.galactose"	Chloroplast	GO:0000160	"phosphorelay signal transduction system"	HKR6	"Cre16.g678900.t1.1;HKR6;HIK;g16535.t1"	HIK6	"Contains only the signal receiver domain; Originally named HKR6, but was changed to avoid confusion with the histidine-kinase rhodopsins;"
+Cre16.g681914							"g16790.t1;Cre01.g068900.t1.1;Cre01.g068900.t1.1;g16790.t1"		
+Cre16.g689600						FAP73	"g16187.t1;FAP73;Cre16.g689600.t1.1;Cre16.g689600.t1.1;g16187.t1;FAP73"	"MIA2;MIA2"	"Conserved Flagellar Associated Protein 73;Conserved Flagellar Associated Protein 73"
+Cre16.g674700			Mitochondrion				"Cre16.g674700.t1.1;g16625.t1;AGH1"		
+Cre16.g657400							"g15886.t1;g15886.t1"		
+Cre16.g692600	GMM:29.5.3	"protein.degradation.cysteine protease"	Mitochondrion	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	ULP2	"ULP2;g15625.t1;SMT7;SMT7;g15625.t1;ULP2;ULP2;g15625.t1;SMT7"	"SENP1;SENP1;SENP1"	"SUMO protease identified in mutant screen as SMT7 by Fang and Umen [PMID; 18385113]. The smt7 mutants bypass the small-cell phenotype of mutants in the MAT3 locus, encoding a retinoblastoma tumor suppressor related protein;SUMO protease identified in mutant screen as SMT7 by Fang and Umen [PMID; 18385113]. The smt7 mutants bypass the small-cell phenotype of mutants in the MAT3 locus, encoding a retinoblastoma tumor suppressor related protein;SUMO protease identified in mutant screen as SMT7 by Fang and Umen [PMID; 18385113]. The smt7 mutants bypass the small-cell phenotype of mutants in the MAT3 locus, encoding a retinoblastoma tumor suppressor related protein"
+Cre16.g671700			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g16693.t1;g16693.t1"		
+Cre16.g663750			"Secretory pathway"				g16025.t1		
+Cre16.g677653									
+Cre16.g657150			Chloroplast	GO:0008080	"N-acetyltransferase activity"		"g15881.t1;NAT35"		"Related to GCN5"
+Cre16.g675246	"GMM:27.3.99;GMM:27.3.63;GMM:27.3.44"	"RNA.regulation of transcription.unclassified;RNA.regulation of transcription.PHD finger transcription factor;RNA.regulation of transcription.chromatin remodeling factors"		"GO:0005515;GO:0003682"	"protein binding;chromatin binding"		"Cre01.g063450.t1.1;Cre01.g063450.t1.2;g16129.t1"		
+Cre16.g674403	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre01.g065900.t1.2;Cre01.g065900.t1.1;g16721.t2;g16721.t2;Cre01.g065900.t1.1;Cre01.g065900.t1.2"		
+Cre16.g692901	"GMM:31.1;GMM:27.2"	"cell.organisation;RNA.transcription"	Chloroplast				g15619.t1		"Contains PF02492, CobW nucleotide-binding domain;"
+Cre16.g687600			"Secretory pathway"				"g16337.t1;g16337.t1;g16337.t1;g16337.t1;g16337.t1;g16337.t1"		
+Cre16.g675958	GMM:28.99	DNA.unspecified		GO:0016021	"integral component of membrane"		"g16131.t1;Cre01.g063550.t1.2;Cre01.g063550.t1.1"		
+Cre16.g678050	GMM:27.1.1	RNA.processing.splicing		GO:0006397	"mRNA processing"	SRE3	"SRS14;g16554.t1"	SRE3	"PWI domain-containing pre-mRNA splicing factor. An atypical serine/arginine-rich splicing factor lacking an RNA recognition motif (RRM), but which may help splice pre-mRNAs with weak 3' splice sites dependent on purine-rich exonic enhancer sequences (PMI"
+Cre16.g691327			"Secretory pathway"				"Cre01.g072551.t1.2;Cre01.g072551.t1.1;g16874.t1;Cre01.g072551.t1.1;g16874.t1;Cre01.g072551.t1.2;Cre01.g072551.t1.2;Cre01.g072551.t1.1;g16874.t1"		
+Cre16.g675050							g16617.t1		
+Cre16.g694809			"Secretory pathway"				"g15574.t1;Cre16.g694809.t1.1"		
+Cre16.g647850			"Secretory pathway"				"g15681.t1;g15681.t1"		
+Cre16.g688526	"GMM:29.4;GMM:1.1.30"	"protein.postranslational modification;PS.lightreaction.state transition"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g16849.t1;Cre01.g071450.t1.1;g16849.t1;Cre01.g071450.t1.1;Cre01.g071450.t1.1;g16849.t1"		
+Cre16.g684150			Chloroplast				"Cre16.g684150.t1.1;g16415.t1"		
+Cre16.g677350			Mitochondrion				"g16568.t1;Cre16.g677350.t1.1"		
+Cre16.g659250	GMM:21.2	"redox.ascorbate and glutathione"				CYB5	"Cre16.g659250.t1.1;g15926.t1;CYB5;CYB5-5"	CYB5	"linked to CYB1 and CYB2"
+Cre16.g687700							"CPY;g16334.t1;Cre16.g687700.t1.1;g16334.t1;CPY;Cre16.g687700.t1.1"		
+Cre16.g685277	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"				AP2M2	"AP2M2;g16820.t1;Cre01.g070250.t1.1;Cre01.g070250.t1.2;AP2M2;g16820.t1;Cre01.g070250.t1.2;Cre01.g070250.t1.1;AP2M2;Cre01.g070250.t1.2;g16820.t1;Cre01.g070250.t1.1;Cre01.g070250.t1.2;g16820.t1;AP2M2;Cre01.g070250.t1.1"	"AP2M2;AP2M2;AP2M2;AP2M2"	"Expressed protein. Mu2-Adaptin, clathrin adaptor complex medium subunit, putative member of AP-2 complex;Expressed protein. Mu2-Adaptin, clathrin adaptor complex medium subunit, putative member of AP-2 complex;Expressed protein. Mu2-Adaptin, clathrin adaptor complex medium subunit, putative member of AP-2 complex;Expressed protein. Mu2-Adaptin, clathrin adaptor complex medium subunit, putative member of AP-2 complex"
+Cre16.g672049			"Secretory pathway"				"g16699.t1;Cre01.g065000.t1.1;Cre01.g065000.t1.2;g16699.t1;Cre01.g065000.t1.2;Cre01.g065000.t1.1"		
+Cre16.g688000	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP2	"MCP2;g16327.t1;MITC2;MCP2;g16327.t1;MITC2"		
+Cre16.g650425	GMM:28.99	DNA.unspecified							
+Cre16.g687550	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"	CGL99	g16339.t1	CGL99	"Conserved in the Green Lineage"
+Cre16.g678551	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG34	"CYG34;g16544.t1;g16544.t1;CYG34"		"C-terminal domain similar to membrane guanylyl cyclase OlGC7 [Oryzias latipes];C-terminal domain similar to membrane guanylyl cyclase OlGC7 [Oryzias latipes]"
+Cre16.g683150			Mitochondrion				"g16439.t1;Cre16.g683150.t1.1"		
+Cre16.g692800	"GMM:3.5;GMM:16.8.2"	"minor CHO metabolism.others;secondary metabolism.flavonoids.chalcones"					"AKR4;g15621.t1"		
+Cre16.g661200	GMM:21.3	redox.heme		GO:0019825	"oxygen binding"		"Cre16.g661200.t1.1;g15967.t1;Cre16.g661200.t1.1;g15967.t1"	"THB8;THB8"	"oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is next to THB7, THB9 and THB10 on Chr_16; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor;oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is next to THB7, THB9 and THB10 on Chr_16; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor"
+Cre16.g682923			Mitochondrion				g16799.t1		
+Cre16.g686250							"g16369.t1;g16369.t1;g16369.t1;g16369.t1"		
+Cre16.g656400	GMM:11.10.3	"lipid metabolism.glycolipid synthesis.UDP-sulfoquinovose synthase"	Chloroplast	"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"	SQD1	"g15865.t1;Cre16.g656400.t1.1;g15865.t1;Cre16.g656400.t1.1;g15865.t1;Cre16.g656400.t1.1;Cre16.g656400.t1.1;g15865.t1"	"SQD1;SQD1;SQD1;SQD1"	"Genbank entry AB116936;Genbank entry AB116936;Genbank entry AB116936;Genbank entry AB116936"
+Cre16.g690655			Mitochondrion				"g16868.t1;Cre01.g072250.t1.1;Cre01.g072250.t1.1;g16868.t1;g16868.t1;Cre01.g072250.t1.1;g16868.t1;Cre01.g072250.t1.1"		
+Cre16.g659950	GMM:29.2.1.1.1.1.5	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S5"	Chloroplast	"GO:0006412;GO:0005840;GO:0003735;GO:0003723"	"translation;ribosome;structural constituent of ribosome;RNA binding"	PRPS5	g15941.t1	PRPS5	"imported to chloroplast; Chloroplast Small Ribosomal Subunit Protein S5"
+Cre16.g688650	GMM:30.4.1	"signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase"				MOT43	"MOT43;Cre16.g688650.t1.1;g16167.t1"	MOT43	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre16.g660470			Mitochondrion						
+Cre16.g687150							"g16347.t1;g16347.t1;g16347.t1"		
+Cre16.g668500									
+Cre16.g677300	GMM:24	"biodegradation of xenobiotics"	Chloroplast			GOX16	"g16569.t1;GOX16"	GOX16	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); n"
+Cre16.g672050							g16686.t1		
+Cre16.g664100			Chloroplast				"g16034.t1;g16034.t1;g16034.t1;g16034.t1;g16034.t1;g16034.t1;g16034.t1"		
+Cre16.g658350			"Secretory pathway"				"g15906.t1;g15906.t1"		
+Cre16.g674179	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre01.g065800.t1.1;g16719.t1"		
+Cre16.g667200							"g16315.t1;SMM47;Cre16.g667200.t1.1"		
+Cre16.g658250			Chloroplast				g15904.t2		
+Cre16.g650400	GMM:27.3.99	"RNA.regulation of transcription.unclassified"				CPL20	g15735.t1	CPL20	"Hypothetical zinc-dependent DNA-binding protein. Gene product similar to PLATZ1 from peas [gi:16117798, PMID: 116698] a plant-specific zinc-dependent DNA-binding protein responsible for A/T-rich sequence-mediated transcriptional repression."
+Cre16.g663315			Chloroplast				"g16014.t1;Cre16.g663300.t1.2"		
+Cre16.g694201							g15589.t1		
+Cre16.g667250			Chloroplast				"Cre16.g667250.t1.1;g16314.t1"		
+Cre16.g690543			Mitochondrion						
+Cre16.g691550							"g15650.t1;Cre16.g691550.t1.1"		
+Cre16.g669000							"g16255.t1;g16255.t1"		
+Cre16.g686734	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre01.g070750.t1.1;g16833.t1;g16833.t1;Cre01.g070750.t1.1"		
+Cre16.g659200	GMM:26.1	misc.misc2	Mitochondrion	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP742A1	"g15925.t1;CYP36"	CYP742A1	"Cytochrome P450, most like CYP4 family sequences in animals"
+Cre16.g679250	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELIP1	"g16525.t1;Cre16.g679250.t1.1;ELIP1;ELI2;ELI1"	ELIP2	"belongs to chlorophyll A-B binding protein superfamily, ELIP family"
+Cre16.g655650							"g15850.t1;g15850.t1;g15850.t1"		
+Cre16.g684149			"Secretory pathway"				"Cre01.g064580.t1.2;Cre01.g064580.t1.1;g16154.t1"		
+Cre16.g671500							"Cre16.g671500.t1.1;g16289.t1;g16289.t1;Cre16.g671500.t1.1;Cre16.g671500.t1.1;g16289.t1;Cre16.g671500.t1.1;g16289.t1;g16289.t1;Cre16.g671500.t1.1"		
+Cre16.g678452							"g16138.t1;Cre01.g063800.t1.1"		
+Cre16.g682305									
+Cre16.g673850			Mitochondrion				g16645.t1		
+Cre16.g652900	"GMM:28.99;GMM:27.3.99;GMM:27.1"	"DNA.unspecified;RNA.regulation of transcription.unclassified;RNA.processing"		GO:0003676	"nucleic acid binding"		g15789.t1		
+Cre16.g694550	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g15580.t1		
+Cre16.g682550	"GMM:30.2.12;GMM:30.2.11;GMM:30.2.10;GMM:17.3.2.1"	"signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;signalling.receptor kinases.leucine rich repeat X;hormone metabolism.brassinosteroid.signal transduction.BRI"	"Mitochondrion;Chloroplast"	GO:0005515	"protein binding"		"g16451.t3;g16451.t3;g16451.t3;g16451.t3;g16451.t3;g16451.t3;g16451.t3;g16451.t3"		
+Cre16.g677026	GMM:8.1.1.1	"TCA / organic transformation.TCA.pyruvate DH.E1"		"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	PDH1	"Cre01.g063700.t1.2;PDH1;g16134.t1;Cre01.g063700.t1.1;g16134.t1;Cre01.g063700.t1.1;PDH1;Cre01.g063700.t1.2"	"PDH1;PDH1"	"Pyruvate dehydrogenase (lipoamide); pyruvate dehydrogenase E1 beta subunit (EC 1.2.4.1), probable mitochondrial precursor by homology to 0850; dominant of 2 potential splicing variants (minor variant PDH1b);Pyruvate dehydrogenase (lipoamide); pyruvate dehydrogenase E1 beta subunit (EC 1.2.4.1), probable mitochondrial precursor by homology to 0850; dominant of 2 potential splicing variants (minor variant PDH1b)"
+Cre16.g673281	GMM:26.14	misc.oxygenases					"Cre01.g065400.t1.1;g16710.t1;g16710.t1;Cre01.g065400.t1.1"		
+Cre16.g674065	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g16717.t1;Cre01.g065750.t1.1"		
+Cre16.g682900	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"	Chloroplast			CLPR2	"Cre16.g682900.t1.1;g16444.t2"	CLPR2	
+Cre16.g662702	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"				
+Cre16.g674100			"Mitochondrion;Chloroplast"				"g16640.t1;g16640.t1"		
+Cre16.g670755									
+Cre16.g675950	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"							
+Cre16.g648850			Mitochondrion	GO:0003877	"ATP adenylyltransferase activity"	ADS1	"ADS1;Cre16.g648850.t1.1;g15702.t1"	ADS1	
+Cre16.g678661	GMM:26.1	misc.misc2	Chloroplast				g16760.t1		
+Cre16.g674938			Chloroplast				"Cre16.g674938.t1.1;g16620.t2"		
+Cre16.g687500	GMM:31.1	cell.organisation		"GO:0034314;GO:0007015;GO:0005885;GO:0005856;GO:0005524"	"Arp2/3 complex-mediated actin nucleation;actin filament organization;Arp2/3 protein complex;cytoskeleton;ATP binding"	ARP2	"ARP2;g16340.t1;g16340.t1;ARP2;ARP2;g16340.t1"	"ARP2;ARP2;ARP2"	"ChromDB ARP3404, similar to Arp2 of the Arp2/3 complex;ChromDB ARP3404, similar to Arp2 of the Arp2/3 complex;ChromDB ARP3404, similar to Arp2 of the Arp2/3 complex"
+Cre16.g672945									
+Cre16.g670501			Chloroplast				"Cre16.g670450.t1.2;g16220.t1"		
+Cre16.g671800			Chloroplast			PGA8	"g16691.t1;PGA8;Cre16.g671800.t1.1"		
+Cre16.g665600	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	CSK7	"CSK7;Cre16.g665600.t1.1;g16065.t1"		
+Cre16.g676550							"g16584.t1;Cre16.g676550.t1.1"		
+Cre16.g686286			"Secretory pathway"				"Cre01.g070550.t1.2;Cre01.g070550.t1.1;g16829.t1"		
+Cre16.g673400				"GO:0046872;GO:0016567;GO:0004842"	"metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity"		g16654.t1		"Eight-member family found found at two loci on chromosomes 16 and 17"
+Cre16.g685451			Mitochondrion						
+Cre16.g690509									
+Cre16.g652200	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP9	"MMP9;g15774.t1;Cre16.g652200.t1.1"	MMP9	"belongs to the large VMP-family of metalloproteinases (identified in Volvox); the binding site of the catalytic metal ion in VMPs is QExxHxxGxxH not HExxHxxGxxH, therefore VMPs prefer copper for activity rather than zinc; extracellular matrix glycoproteins (cell wall glycoproteins) with a hydroxyproline-rich (HR) domain [PMID: 12034745]"
+Cre16.g662500			Mitochondrion	GO:0005515	"protein binding"		"g15996.t1;Cre16.g662500.t1.1;g15996.t1;Cre16.g662500.t1.1;Cre16.g662500.t1.1;g15996.t1;g15996.t1;Cre16.g662500.t1.1"		
+Cre16.g684300			Chloroplast	GO:0016020	membrane	YGG3	"Cre16.g684300.t1.1;YGG3;g16412.t1"		
+Cre16.g687060			Chloroplast						
+Cre16.g693400			"Secretory pathway"				g15610.t1		
+Cre16.g657950				"GO:0016020;GO:0007155"	"membrane;cell adhesion"	SSA5	"SSA5;g15897.t1"	SSA5	"identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA)"
+Cre16.g653050	GMM:27.1	RNA.processing		"GO:0008173;GO:0006396;GO:0003723"	"RNA methyltransferase activity;RNA processing;RNA binding"		"g15792.t1;g15792.t1"		
+Cre16.g687000	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0034755;GO:0016021;GO:0005381"	"iron ion transmembrane transport;integral component of membrane;iron ion transmembrane transporter activity"		g16352.t1	FPN1	"Fe transporter; Orthologous to AtFPN1 in Arabidopsis thaliana"
+Cre16.g656250	"GMM:33.99;GMM:27.4;GMM:27.1.1"	"development.unspecified;RNA.RNA binding;RNA.processing.splicing"		GO:0003676	"nucleic acid binding"	SMP12	"g15862.t1;SMP12"	SMP12	"putative homolog of Arabidopsis U1 small nuclear ribonucleoprotein 70 kDa (U1 snRNP 70 kDa) (snRNP70) (U1-70K) PMID: 8776903"
+Cre16.g664200	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	"Secretory pathway"	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE33	"PDE33;g16036.t2;g16036.t2;PDE33;PDE33;g16036.t2;g16036.t2;PDE33;g16036.t2;PDE33;g16036.t2;PDE33"		"Metal-dependent phosphohydrolase;Metal-dependent phosphohydrolase;Metal-dependent phosphohydrolase;Metal-dependent phosphohydrolase;Metal-dependent phosphohydrolase;Metal-dependent phosphohydrolase"
+Cre16.g689001			"Secretory pathway"				"Cre16.g689000.t1.3;g16175.t1"		
+Cre16.g689250	GMM:11.10.4	"lipid metabolism.glycolipid synthesis.sulfolipid synthase"	Mitochondrion	"GO:0046872;GO:0016567;GO:0004842"	"metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity"	GTR23	"GTR23;g16180.t1;GTR23;g16180.t1;GTR23;g16180.t1"		"Belongs to the family of glycosyltransferases, might be a sulfolipid synthase; partial sequence similar to N-acetylglucosaminyltransferase complex, which is required for phosphatidylinositol biosynthesis;;Belongs to the family of glycosyltransferases, might be a sulfolipid synthase; partial sequence similar to N-acetylglucosaminyltransferase complex, which is required for phosphatidylinositol biosynthesis;Belongs to the family of glycosyltransferases, might be a sulfolipid synthase; partial sequence similar to N-acetylglucosaminyltransferase complex, which is required for phosphatidylinositol biosynthesis;"
+Cre16.g675250	"GMM:18.11;GMM:18"	"Co-factor and vitamine metabolism.lipoic acid;Co-factor and vitamine metabolism"	Mitochondrion	GO:0006464	"cellular protein modification process"	LPL2	"LPL2;g16613.t1"	LPL2	"biotin/lipoate A/B protein ligase; lipoyl(octanoyl) transferase"
+Cre16.g661100	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	MAPK7	"MAPK7;g15965.t1;Cre16.g661100.t1.1"		"Serine/threonine protein kinase MAK (male germ cell-associated kinase, Mitogen-Activated Protein Kinase Homolog 7); downstream kinase in the canonical MAP kinase pathway; found in the flagellar proteome [PMID: 15998802]"
+Cre16.g652550	GMM:29.2.1.1.1.2.24	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L24"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPL24	"Cre16.g652550.t1.1;g15782.t1;Cre16.g652550.t1.1;g15782.t1"	"PRPL24;PRPL24"	"imported to chloroplast; Chloroplast large ribosomal subunit protein L24;imported to chloroplast; Chloroplast large ribosomal subunit protein L24"
+Cre16.g665364	"GMM:4.1.16;GMM:30.3;GMM:29.4"	"glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"GAK;g16059.t1;Cre16.g665350.t1.2"	GDAK1	"Unique calcium-calmodulin dependent protein kinase; an insertional mutant obtained by Keith Kozminski (available from Chlamydomonas Resource Center as CC-3847 gli-7) is defective in gliding motility; GenBank AAQ23078; Contains 2 phosphopeptides [PMID: 30040123]"
+Cre16.g678650							"g16541.t1;Cre16.g678650.t1.1"		
+Cre16.g648650	GMM:28.2	DNA.repair					"g15698.t1;g15698.t1"		
+Cre16.g672602	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g16674.t1;g16674.t1;g16674.t1"		
+Cre16.g651050	GMM:1.1.5	"PS.lightreaction.other electron carrier (ox/red)"	Chloroplast	"GO:0020037;GO:0009055"	"heme binding;electron carrier activity"	CYC6	"Cre16.g651050.t1.1;PETJ;g15750.t1;PETJ;g15750.t1;Cre16.g651050.t1.1"	"CYC6;CYC6"	"cytochrome c6, chloroplast precursor (Cyt c553) (Cyt c552) (PETJ) [PMID: 3036842; PMID: 1714451];cytochrome c6, chloroplast precursor (Cyt c553) (Cyt c552) (PETJ) [PMID: 3036842; PMID: 1714451]"
+Cre16.g691050	"GMM:31.2;GMM:27.3.99"	"cell.division;RNA.regulation of transcription.unclassified"					"Cre16.g691050.t1.1;g15664.t1"		
+Cre16.g693204			Chloroplast			FAP348	g15617.t1	FAP348	"Found in the flagellar proteome"
+Cre16.g682052			Chloroplast						
+Cre16.g688201			Chloroplast						
+Cre16.g669800	"GMM:33.99;GMM:29.4;GMM:29.2.2"	"development.unspecified;protein.postranslational modification;protein.synthesis.ribosome biogenesis"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre16.g669800.t1.1;g16234.t1"		
+Cre16.g683650	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre16.g683650.t1.1;g16429.t1;g16429.t1;Cre16.g683650.t1.1"		
+Cre16.g667350			Chloroplast	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	CAV6	"CAV6;g16310.t1"	CAV6	"Voltage-dependent 4-domain calcium channel, alpha subunit; may exhibit altered ion selectivity as conserved P-loop loci differ from mammalian Ca2+ channels (PMID: 8968582)"
+Cre16.g674534			Chloroplast				"g16126.t1;Cre01.g063300.t1.1;Cre01.g063300.t1.1;g16126.t1;Cre01.g063300.t1.1;g16126.t1;g16126.t1;Cre01.g063300.t1.1"		
+Cre16.g659750	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP15	"g15937.t1;CEP15"		"Cysteine-type endopeptidase, papain type"
+Cre16.g670350			"Secretory pathway"				"g16222.t1;Cre16.g670350.t1.1;Cre16.g670350.t1.1;g16222.t1;Cre16.g670350.t1.1;g16222.t1;g16222.t1;Cre16.g670350.t1.1"		
+Cre16.g678437	GMM:16.1.4.7	"secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase"	Chloroplast	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"		"Cre01.g067400.t1.1;g16758.t1"	CYP97A6	
+Cre16.g659800			Chloroplast				"Cre16.g659800.t1.1;g15938.t1"		
+Cre16.g679445			"Secretory pathway"			FAS6	"Cre01.g067800.t1.1;FLA1;g16768.t1;Cre01.g067800.t1.2;FAS6"		"Contains 1 FAS1 (BIgH3) domains, involved in cell recognition; probably extracellular (by homology); Identified as Fasciclin-Like Arabinogalactan 1 (FLA1) in [PMID: 31010036]"
+Cre16.g687901			"Secretory pathway"						
+Cre16.g694206			Mitochondrion				"Cre72.g794707.t1.1;Cre72.g794707.t1.2;g15594.t1;Cre72.g794707.t1.1;Cre72.g794707.t1.2;g15594.t1"		
+Cre16.g684827	GMM:27.1.20	"RNA.processing.degradation dicer"	"Secretory pathway"				"g16816.t1;Cre01.g070050.t1.1;Cre01.g070050.t1.1;g16816.t1;Cre01.g070050.t1.1;g16816.t1"		
+Cre16.g683100			Mitochondrion				"Cre16.g683100.t1.1;g16440.t1;g16440.t1;Cre16.g683100.t1.1;Cre16.g683100.t1.1;g16440.t1"		
+Cre16.g650100			Chloroplast	"GO:0045158;GO:0017004;GO:0009512"	"electron transporter, transferring electrons within cytochrome b6/f complex of photosystem II activity;cytochrome complex assembly;cytochrome b6f complex"	PETN	"g15729.t1;PETN;Cre16.g650100.t1.1"	PETN1	"Small subunit of plastoquinol-plastocyanin oxido-reductase, chloroplast precursor; ortholog in Volvox is germline-specific and a putative target of RegA repression"
+Cre16.g654300	GMM:23.4.10	"nucleotide metabolism.phosphotransfer and pyrophosphatases.nucleoside diphosphate kinase"		"GO:0006241;GO:0006228;GO:0006183;GO:0006165;GO:0005515;GO:0004550"	"CTP biosynthetic process;UTP biosynthetic process;GTP biosynthetic process;nucleoside diphosphate phosphorylation;protein binding;nucleoside diphosphate kinase activity"	RSP23	"g15818.t1;NDK5;Cre16.g654300.t1.1;g15818.t1;NDK5;Cre16.g654300.t1.1;Cre16.g654300.t1.1;NDK5;g15818.t1;NDK5;Cre16.g654300.t1.1;g15818.t1;Cre16.g654300.t1.1;NDK5;g15818.t1"	"RSP23;RSP23;RSP23;RSP23;RSP23"	"RSP23, a spoke specific nucleotide diphosphate kinase [PMID: 16507594; PMID: 15194815; GI:42412387];RSP23, a spoke specific nucleotide diphosphate kinase [PMID: 16507594; PMID: 15194815; GI:42412387];RSP23, a spoke specific nucleotide diphosphate kinase [PMID: 16507594; PMID: 15194815; GI:42412387];RSP23, a spoke specific nucleotide diphosphate kinase [PMID: 16507594; PMID: 15194815; GI:42412387];RSP23, a spoke specific nucleotide diphosphate kinase [PMID: 16507594; PMID: 15194815; GI:42412387]"
+Cre16.g654950			"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR3	"SRR3;g15832.t1;g15832.t1;SRR3;SRR3;g15832.t1"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912)"
+Cre16.g681400							"g16475.t1;g16475.t1;g16475.t1;g16475.t1;g16475.t1;g16475.t1;g16475.t1;g16475.t1;g16475.t1"		
+Cre16.g672161			Chloroplast				"g16700.t2;Cre01.g065050.t1.1;Cre01.g065050.t1.1;g16700.t2;g16700.t2;Cre01.g065050.t1.1;Cre01.g065050.t1.1;g16700.t2;Cre01.g065050.t1.1;g16700.t2;g16700.t2;Cre01.g065050.t1.1;g16700.t2;Cre01.g065050.t1.1"		
+Cre16.g695450				GO:0003676	"nucleic acid binding"	UAF4	"SPL11;g15559.t2;UAF4;g15559.t2;UAF4;SPL11;g15559.t2;UAF4;SPL11;UAF4;g15559.t2;SPL11;g15559.t2;UAF4;SPL11;UAF4;SPL11;g15559.t2;g15559.t2;UAF4;SPL11"	"UAF4;UAF4;UAF4;UAF4;UAF4;UAF4;UAF4"	
+Cre16.g661876			Chloroplast						
+Cre16.g669950			Chloroplast			ALG14	"g16231.t1;ALG14;Cre16.g669950.t1.1"		
+Cre16.g679800	GMM:26.1	misc.misc2		GO:0016787	"hydrolase activity"		"g16514.t1;Cre16.g679800.t1.1"		
+Cre16.g673000	"GMM:34.12;GMM:33.99;GMM:15.3"	"transport.metal;development.unspecified;metal handling.regulation"	"Secretory pathway"				"Cre16.g673000.t1.1;g16664.t1"		
+Cre16.g685650			"Secretory pathway"	"GO:0016020;GO:0004970"	"membrane;ionotropic glutamate receptor activity"	GLR1	"GLR1;g16383.t1"	GLR1	
+Cre16.g662950			Mitochondrion			ANK3	"ANK3;g16005.t1"		"Protein of unknown function with ankyrin repeats"
+Cre16.g692050	GMM:31.4	"cell.vesicle transport"	Mitochondrion	GO:0005515	"protein binding"	SYP3	"g15637.t1;SYP3"	SYP3	"Expressed Protein. Similar to SYP3/Syntaxin 5/Sed5p Qa-SNAREs, involved in Golgi vesicle trafficking"
+Cre16.g669450							"g16241.t1;g16241.t1"		
+Cre16.g682013			Chloroplast				"Cre01.g064300.t1.1;Cre01.g064300.t1.2;g16148.t1;Cre01.g064300.t1.1;g16148.t1;Cre01.g064300.t1.2;Cre01.g064300.t1.1;g16148.t1;Cre01.g064300.t1.2;Cre01.g064300.t1.1;g16148.t1;Cre01.g064300.t1.2"		
+Cre16.g675450	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"		"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"g16609.t3;Cre16.g675450.t1.1;SDR25"		"possibly a carbonyl/acetoacetyl-CoA reductase"
+Cre16.g686900							"Cre16.g686900.t1.1;g16354.t1"		
+Cre16.g687900	GMM:1.1.2.1	"PS.lightreaction.photosystem I.LHC-I"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCA7	"g16329.t1;Cre16.g687900.t1.1;g16329.t1;Cre16.g687900.t1.1;g16329.t1;Cre16.g687900.t1.1"	"LHCA7;LHCA7;LHCA7"	
+Cre16.g677877			"Secretory pathway"				"Cre01.g067200.t1.1;g16753.t1;Cre01.g067200.t1.1;g16753.t1"		
+Cre16.g685000	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast				"Cre16.g685000.t1.1;g16398.t1"		"Contains PF07683, CobW_C domain; missing GTPase domain; One of three paralogous tandem genes (Cre16.g685000, Cre16.g685050, Cre16.g685100)"
+Cre16.g653150						CPR3	"g15794.t1;Cre16.g653150.t1.1;CPR3"	CPR3	"the U2f snRNA, not a protein gene, is in the vicinity"
+Cre16.g680700							"Cre16.g680700.t1.1;g16493.t1"		
+Cre16.g673203									
+Cre16.g681466			Mitochondrion				"g16786.t1;g16786.t1"		
+Cre16.g689535				GO:0046872	"metal ion binding"		"g16858.t1;g16858.t1"		
+Cre16.g654000				"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre16.g654000.t1.1;g15813.t1"		
+Cre16.g676402							g16589.t1		
+Cre16.g658800			"Secretory pathway"				"g15916.t1;g15916.t1"	"CDP1;CDP1"	"mutant 219.8 (insertion in 3'-UTR) has defect in ammonium-repression of nitrate reductase gene; the CPD1 transcript is upregulated in ammonium, and down in several Ammonium-Insensitive mutants; conserved only in colonial Volvocales;mutant 219.8 (insertion in 3'-UTR) has defect in ammonium-repression of nitrate reductase gene; the CPD1 transcript is upregulated in ammonium, and down in several Ammonium-Insensitive mutants; conserved only in colonial Volvocales"
+Cre16.g648750			Mitochondrion				g15700.t1		
+Cre16.g661638									
+Cre16.g689500	GMM:29.4	"protein.postranslational modification"	Mitochondrion				"g16185.t1;g16185.t1;g16185.t1"		
+Cre16.g677541			Chloroplast						
+Cre16.g656551	GMM:21.1	redox.thioredoxin	"Secretory pathway"	GO:0045454	"cell redox homeostasis"	PDI	"PDI;TRL14;TRXL14;g15869.t1;Cre16.g656550.t1.2"		
+Cre16.g666653			Mitochondrion						
+Cre16.g670300	"GMM:35.1.41;GMM:27.1.1"	"not assigned.no ontology.hydroxyproline rich proteins;RNA.processing.splicing"				PRP39	"g16223.t2;PRP39;Cre16.g670300.t1.1"	PRP39	"U1 snRNP protein involved in splicing, contains multiple tetratricopeptide repeats; homologue of S. cerevisiae Prp39"
+Cre16.g687518	GMM:29.2.3	protein.synthesis.initiation		GO:0044237	"cellular metabolic process"		"Cre01.g071050.t1.1;Cre01.g071050.t1.2;g16840.t1"		
+Cre16.g694950	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g15570.t1		
+Cre16.g669193	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"				g16109.t1		
+Cre16.g670900							"g16301.t1;SMM50"		
+Cre16.g683300							"Cre16.g683300.t1.1;g16436.t1"		
+Cre16.g661750			"Secretory pathway"	"GO:0006468;GO:0005516;GO:0004683"	"protein phosphorylation;calmodulin binding;calmodulin-dependent protein kinase activity"		"g15980.t1;Cre16.g661750.t1.1;Cre16.g661750.t1.1;g15980.t1"		
+Cre16.g662650			Chloroplast	GO:0008080	"N-acetyltransferase activity"		"g15999.t1;NAT36"		"Related to GCN5"
+Cre16.g690200	"GMM:9.7;GMM:34.13;GMM:29.3.2"	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase;transport.peptides and oligopeptides;protein.targeting.mitochondria"	Mitochondrion	"GO:0051205;GO:0016021"	"protein insertion into membrane;integral component of membrane"	OXA1	"Cre16.g690200.t1.1;COX18;g16201.t1"	OXA3	"Belongs to YidC/Alb3/Oxa1 family; mediates insertion of Cox1 subunit of cytochrome oxydase"
+Cre16.g663850	GMM:2.1.2.2	"major CHO metabolism.synthesis.starch.starch synthase"				SSS5	"g16028.t1;g16028.t1"	"SSS5;SSS5"	
+Cre16.g668000							"g16278.t1;Cre16.g668000.t1.1"		
+Cre16.g673200							"g16658.t1;Cre16.g673200.t1.1;g16658.t1;Cre16.g673200.t1.1"		
+Cre16.g671150			Mitochondrion				"g16296.t1;Cre16.g671150.t1.1"		
+Cre16.g670973	GMM:21.2.2	"redox.ascorbate and glutathione.glutathione"		GO:0005515	"protein binding"	GST3	"Cre01.g062900.t1.1;g16116.t1;GST3;Cre01.g062900.t1.2"	GSTS3	"Glutathione S-transferase (GST) (sigma class) with 59-61% identity with GSTS1 and GSTS2; similar to Glutathione-requiring prostaglandin D synthase (Glutathione-dependent PGD synthetase) [gi|6225842]. Possible prostaglandin-D synthase activity; One of three paralogs (Cre16.g670973, Cre16.g682725, Cre16.g688550)"
+Cre16.g683595	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	CAX4	"CAX4;g16805.t1;Cre01.g069550.t1.1;Cre01.g069550.t1.1;g16805.t1;CAX4;CAX4;Cre01.g069550.t1.1;g16805.t1"	"CAX4;CAX4;CAX4"	"Related to Ca2+/Na+ exchanger; cation exchanger family (CAX);Related to Ca2+/Na+ exchanger; cation exchanger family (CAX);Related to Ca2+/Na+ exchanger; cation exchanger family (CAX)"
+Cre16.g670617							"Cre01.g062850.t1.1;g16115.t1;g16115.t1;Cre01.g062850.t1.1"		
+Cre16.g684022			Mitochondrion				"g16419.t1;Cre16.g684022.t1.1"		
+Cre16.g681578	GMM:31.2	cell.division	"Secretory pathway"	"GO:0030071;GO:0005680"	"regulation of mitotic metaphase/anaphase transition;anaphase-promoting complex"	APC8	"Cre01.g068750.t1.1;g16787.t1;Cre01.g068750.t1.2;APC8"	APC8	"Subunit of anaphase promoting complex. Homolog of CDC23. ts-lethal mutants arrest with 2C DNA content and fail to initiate cleavage plane and complete mitosis (PMID 29743196)"
+Cre16.g666100							"g16075.t1;Cre16.g666100.t1.1;Cre16.g666100.t1.1;g16075.t1;Cre16.g666100.t1.1;g16075.t1;Cre16.g666100.t1.1;g16075.t1"		
+Cre16.g695350							g15561.t1		
+Cre16.g649466	GMM:34.21	transport.calcium	Mitochondrion	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	CAX5	"CAX5;g15715.t1;g15715.t1;CAX5"	"CAX5;CAX5"	"CAX family of Cation antiporters, membrane protein; Putative Ca2+/H+ antiporter; related to fungi and plants Ca2+/H+ antiporters (CAX); related to yeast VCX1 (or Manganese resistance 1); One of three paralogs in C.reinhardtii (Cre09.g409750, Cre12.g519500, Cre16.g649466); Co-orthologous with three CAX genes in Arabidopsis thaliana (AT1G55720.1, AT1G55730.1, AT3G13320.1);;CAX family of Cation antiporters, membrane protein; Putative Ca2+/H+ antiporter; related to fungi and plants Ca2+/H+ antiporters (CAX); related to yeast VCX1 (or Manganese resistance 1); One of three paralogs in C.reinhardtii (Cre09.g409750, Cre12.g519500, Cre16.g649466); Co-orthologous with three CAX genes in Arabidopsis thaliana (AT1G55720.1, AT1G55730.1, AT3G13320.1);"
+Cre16.g657500			Chloroplast				"g15888.t1;Cre16.g657500.t1.1"		
+Cre22.g754197			Chloroplast				"g18221.t1;Cre34.g783250.t1.1"		
+Cre22.g753597									
+Cre22.g753497			Chloroplast						
+Cre22.g754047			"Secretory pathway"						
+Cre22.g753997									
+Cre22.g753447									
+Cre22.g753547							"Cre34.g783750.t1.1;Cre34.g783750.t1.2;g18205.t1"		
+Cre22.g753947			Mitochondrion						
+Cre22.g753647									
+Cre22.g754097			Chloroplast						
+Cre22.g753747			Chloroplast						
+Cre22.g754247									
+Cre22.g753847	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre22.g753347									
+Cre22.g754147									
+Cre22.g753897			"Secretory pathway"						
+Cre22.g753697									
+Cre22.g753797									
+Cre22.g753397							g18200.t1		
+Cre42.g760347			Mitochondrion						
+Cre42.g760397									
+Cre42.g760447	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"				
+Cre36.g759747			"Secretory pathway"				"g18368.t1;g18368.t1;g18368.t1;g18368.t1;g18368.t1;g18368.t1;g18368.t1"		
+Cre36.g759597	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0008270	"zinc ion binding"		"Cre05.g230150.t1.2;Cre05.g230150.t1.1;g18365.t1"		
+Cre36.g759647	GMM:2.1.1.2	"major CHO metabolism.synthesis.sucrose.SPP"	Chloroplast			sph1	"Cre05.g230200.t1.2;Cre05.g230200.t1.1;g18366.t1"		
+Cre36.g759547									
+Cre36.g759697			"Secretory pathway"				"Cre05.g230250.t1.2;g18367.t1;Cre05.g230250.t1.1"		
+Cre50.g761397	GMM:29.1	"protein.aa activation"		GO:0003723	"RNA binding"		g18406.t1		
+Cre50.g761497	GMM:34.14	"transport.unspecified cations"	Mitochondrion	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"		"g18408.t1;g18408.t1"		
+Cre50.g761447	GMM:27.4	"RNA.RNA binding"		"GO:0008168;GO:0006355;GO:0003723"	"methyltransferase activity;regulation of transcription, DNA-templated;RNA binding"		g18407.t1		
+Cre26.g756797	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0005839;GO:0004298"	"proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity"		g18293.t1		
+Cre26.g757097									
+Cre26.g756747							"g18292.t1;Cre59.g791750.t1.2;Cre59.g791750.t1.1"		
+Cre26.g756997									
+Cre26.g756697			Chloroplast						
+Cre26.g756847			Mitochondrion				"Cre59.g791650.t1.2;g18294.t1;Cre59.g791650.t1.1;Cre59.g791650.t1.1;g18294.t1;Cre59.g791650.t1.2"		
+Cre26.g757047						FAP368			
+Cre26.g756547							"Cre59.g791900.t1.2;g18288.t1;Cre59.g791900.t1.1"		
+Cre26.g756647			Mitochondrion				"g18290.t1;Cre59.g791816.t1.2;Cre59.g791816.t1.1"		
+Cre26.g756897							"g18295.t1;g18295.t1"		
+Cre26.g756597							"Cre59.g791850.t1.1;g18289.t1;Cre59.g791850.t1.2"		
+Cre26.g756947							"Cre84.g796450.t1.1;g18296.t1"		
+Cre19.g751197			"Secretory pathway"				"g18143.t1;Cre33.g782159.t1.2;Cre33.g782159.t1.1;g18143.t1;Cre33.g782159.t1.2;Cre33.g782159.t1.1;g18143.t1;Cre33.g782159.t1.1;Cre33.g782159.t1.2;g18143.t1;Cre33.g782159.t1.2;Cre33.g782159.t1.1;Cre33.g782159.t1.1;Cre33.g782159.t1.2;g18143.t1"		
+Cre19.g750847			Mitochondrion	GO:0016020	membrane		"Cre33.g782550.t1.1;Cre33.g782550.t1.2;g18135.t2;Cre33.g782550.t1.1;Cre33.g782550.t1.2;g18135.t2;g18135.t2;Cre33.g782550.t1.2;Cre33.g782550.t1.1"		
+Cre19.g751247							g18144.t2		
+Cre19.g750897	GMM:23.2	"nucleotide metabolism.degradation"	"Secretory pathway"	GO:0008270	"zinc ion binding"		"Cre33.g782500.t1.1;g18136.t2"		
+Cre19.g750397							"g18125.t1;Cre33.g782950.t1.1;Cre33.g782950.t1.1;g18125.t1"		
+Cre19.g750997	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre33.g782400.t1.1;g18138.t1;g18138.t1;Cre33.g782400.t1.1"		
+Cre19.g750547	"GMM:9.2.2;GMM:9.2.1.2"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.external"	Chloroplast	"GO:0055114;GO:0016491;GO:0005509"	"oxidation-reduction process;oxidoreductase activity;calcium ion binding"	NDA2	"Cre33.g782800.t1.2;NDA2;Cre33.g782800.t1.1;g18128.t4;NDA2;Cre33.g782800.t1.1;Cre33.g782800.t1.2;g18128.t4;Cre33.g782800.t1.1;Cre33.g782800.t1.2;g18128.t4;NDA2;Cre33.g782800.t1.2;g18128.t4;Cre33.g782800.t1.1;NDA2;Cre33.g782800.t1.1;NDA2;g18128.t4;Cre33.g782800.t1.2;NDA2;Cre33.g782800.t1.1;g18128.t4;Cre33.g782800.t1.2;Cre33.g782800.t1.1;g18128.t4;Cre33.g782800.t1.2;NDA2;NDA2;g18128.t4;Cre33.g782800.t1.2;Cre33.g782800.t1.1;Cre33.g782800.t1.2;g18128.t4;Cre33.g782800.t1.1;NDA2;Cre33.g782800.t1.2;g18128.t4;Cre33.g782800.t1.1;NDA2;Cre33.g782800.t1.1;Cre33.g782800.t1.2;g18128.t4;NDA2;g18128.t4;Cre33.g782800.t1.2;Cre33.g782800.t1.1;NDA2;Cre33.g782800.t1.1;g18128.t4;Cre33.g782800.t1.2;NDA2;g18128.t4;Cre33.g782800.t1.2;Cre33.g782800.t1.1;NDA2;NDA2;g18128.t4;Cre33.g782800.t1.2;Cre33.g782800.t1.1;NDA2;Cre33.g782800.t1.2;g18128.t4;Cre33.g782800.t1.1;NDA2;g18128.t4;Cre33.g782800.t1.2;Cre33.g782800.t1.1"	"NDA2;NDA2;NDA2;NDA2;NDA2;NDA2;NDA2;NDA2;NDA2;NDA2;NDA2;NDA2;NDA2;NDA2;NDA2;NDA2;NDA2"	"Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration;Type-II NADH:plastoquinone reductase (non-electrogenic); involved in chlororespiration"
+Cre19.g750197	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"		"g18121.t1;g18121.t1"		
+Cre19.g750297							"g18123.t1;Cre33.g783000.t1.1"		
+Cre19.g751297			Mitochondrion				"g18145.t1;Cre33.g782150.t1.1"		
+Cre19.g751147	"GMM:30.6;GMM:30.2.22;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;signalling.receptor kinases.proline extensin like;protein.postranslational modification.kinase;protein.postranslational modification"	"Mitochondrion;Chloroplast"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g18142.t4;g18142.t4;g18142.t4;g18142.t4;g18142.t4;g18142.t4;g18142.t4;g18142.t4;g18142.t4"		
+Cre19.g750747			Chloroplast			NCL38	"Cre33.g782650.t1.1;g18132.t1;OPR110;g18132.t1;Cre33.g782650.t1.1;OPR110"	"NCL38;NCL38"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster F;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster F"
+Cre19.g750497			Mitochondrion			NCL36	"g18127.t1;OPR112;Cre33.g782850.t1.1;g18127.t1;OPR112;Cre33.g782850.t1.1;g18127.t1;Cre33.g782850.t1.1;OPR112;g18127.t1;OPR112;Cre33.g782850.t1.1"	"NCL36;NCL36;NCL36;NCL36"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster F;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster F;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster F;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster F"
+Cre19.g750147			Chloroplast				"g18120.t1;Cre33.g783150.t1.1"		
+Cre19.g750447	GMM:29.5.1	protein.degradation.subtilases	"Secretory pathway"	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"				
+Cre19.g751047									
+Cre19.g750097									
+Cre19.g751347	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Mitochondrion	"GO:0008536;GO:0006886"	"Ran GTPase binding;intracellular protein transport"				
+Cre19.g750697			Chloroplast			NCL37	"Cre33.g782674.t1.2;g18131.t1;OPR111;Cre33.g782674.t1.1;Cre33.g782674.t1.1;g18131.t1;OPR111;Cre33.g782674.t1.2;OPR111;g18131.t1;Cre33.g782674.t1.1;Cre33.g782674.t1.2;OPR111;Cre33.g782674.t1.2;g18131.t1;Cre33.g782674.t1.1"	"NCL37;NCL37;NCL37;NCL37"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster F;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster F;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster F;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster F"
+Cre19.g750947	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		"GO:0007275;GO:0006355;GO:0003700"	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"Cre33.g782450.t1.2;g18137.t1;Cre33.g782450.t1.1"		
+Cre19.g750647	"GMM:30.2.8.1;GMM:30.2.13;GMM:29.4"	"signalling.receptor kinases.leucine rich repeat VIII.type 1;signalling.receptor kinases.leucine rich repeat XIII;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre33.g782700.t1.1;g18130.t2;g18130.t2;Cre33.g782700.t1.1;Cre33.g782700.t1.1;g18130.t2;Cre33.g782700.t1.1;g18130.t2;g18130.t2;Cre33.g782700.t1.1;Cre33.g782700.t1.1;g18130.t2;Cre33.g782700.t1.1;g18130.t2"		
+Cre19.g751097	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g18141.t1;Cre33.g782250.t1.1;g18141.t1;Cre33.g782250.t1.1"		
+Cre19.g750797			"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g18134.t1;Cre33.g782575.t1.1;g18134.t1;Cre33.g782575.t1.1"		
+Cre19.g750347			"Secretory pathway"						
+Cre19.g750597	"GMM:30.3;GMM:3.3;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g18129.t1;Cre33.g782750.t1.1"	CDPK2	"Identified as CrCDPK2 in [PMID: 23936117]"
+Cre19.g750247	GMM:34.14	"transport.unspecified cations"	Chloroplast				"Cre33.g783050.t1.2;g18122.t1;Cre33.g783050.t1.1"		
+Cre46.g760947							g18397.t1		
+Cre46.g760997						FAP389			
+Cre46.g761047							"g18399.t1;g18399.t1"		
+Cre34.g759147	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"							
+Cre34.g759197			"Secretory pathway"						
+Cre34.g759097									
+Cre41.g760297									
+Cre48.g761247									
+Cre48.g761147			Mitochondrion						
+Cre48.g761197	GMM:29.2.1.1.1.2.3	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L3"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"		g18402.t1	PRPL3	"imported to chloroplast; Chloroplast large ribosomal subunit protein L3"
+Cre44.g760697									
+Cre44.g760747									
+Cre32.g758547									
+Cre32.g758697									
+Cre32.g758597							g18340.t1		
+Cre32.g758747			Mitochondrion						
+Cre32.g758647									
+Cre32.g758797			Mitochondrion	"GO:0006281;GO:0005524;GO:0005515;GO:0004386;GO:0003678;GO:0000723"	"DNA repair;ATP binding;protein binding;helicase activity;DNA helicase activity;telomere maintenance"				
+Cre06.g263176			"Secretory pathway"						
+Cre06.g259401			Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"SMM16;g5831.t1;SMM16;g5831.t1;SMM16;g5831.t1"		"Target of CRR1;Target of CRR1;Target of CRR1"
+Cre06.g306800				GO:0004674	"protein serine/threonine kinase activity"	CGL126	"Cre06.g306800.t1.1;g7107.t1"	CGL126	"Conserved in the Green Lineage"
+Cre06.g300050			Chloroplast			OPR27	"g6940.t1;g6940.t1;g6940.t1;g6940.t1"	"OPR27;OPR27;OPR27;OPR27"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre06.g271800	GMM:33.99	development.unspecified				LCI36	"Cre06.g271800.t1.1;g6099.t1;Cre06.g271800.t1.1;g6099.t1"	"LCI36;LCI36"	"Low-CO2 inducible gene related to Arabidopsis senescence-associated SWEET glucose efflux transporter; predicted to have 11 transmembrane domains and two MtN3/saliva family domains (pfam03083). Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Low-CO2 inducible gene related to Arabidopsis senescence-associated SWEET glucose efflux transporter; predicted to have 11 transmembrane domains and two MtN3/saliva family domains (pfam03083). Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]"
+Cre06.g303450			Mitochondrion				"g7026.t1;g7026.t1"		
+Cre06.g278220	"GMM:28.99;GMM:26.2;GMM:10.3.2"	"DNA.unspecified;misc.UDP glucosyl and glucoronyl transferases;cell wall.hemicellulose synthesis.glucuronoxylan"	"Secretory pathway"			ELG38	"g6362.t1;Cre13.g599300.t1.2;Cre13.g599300.t1.1;ELG38"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre06.g282900							"Cre06.g282900.t1.1;g6579.t1;Cre06.g282900.t1.1;g6579.t1"		
+Cre06.g305350							"g7068.t1;g7068.t1;g7068.t1"		
+Cre06.g289300							"g6713.t1;g6713.t1;g6713.t1;g6713.t1"		
+Cre06.g294000	GMM:26.1	misc.misc2				CGL113	g6807.t1	CGL113	"Conserved in the Green Lineage"
+Cre06.g273700	"GMM:29.8;GMM:1.1.1.3"	"protein.assembly and cofactor ligation;PS.lightreaction.photosystem II.biogenesis"	Chloroplast.Stroma.Thylakoid.Membrane			HCF136	"Cre06.g273700.t1.1;g6140.t1;HCF136;Cre06.g273700.t1.1;g6140.t1;HCF136"	"HCF136;HCF136"	"homolog of HCF136/Ycf48, thylakoid-lumen beta-propeller type protein involved in association of the pre-D2-Cytb559-precomplex (pre-D2) and pD1-PsbI precomplex (pre-D1);homolog of HCF136/Ycf48, thylakoid-lumen beta-propeller type protein involved in association of the pre-D2-Cytb559-precomplex (pre-D2) and pD1-PsbI precomplex (pre-D1)"
+Cre06.g299900							"g6936.t1;g6936.t1;g6936.t1;g6936.t1"		
+Cre06.g309800			Chloroplast			MOT2	"g7168.t1;MOT2;MOT2;g7168.t1"	"MOT57;MOT57"	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia; Previously annotated as MOT2, but was changed to MOT57 to avoid confusion with Cre13.g580150 (MOT2A) and Cre16.g695500 (MOT2B) which are Molybdate transporters;;identified by comparative genomics as being present only in organisms having motile (MOT) cilia; Previously annotated as MOT2, but was changed to MOT57 to avoid confusion with Cre13.g580150 (MOT2A) and Cre16.g695500 (MOT2B) which are Molybdate transporters;"
+Cre06.g278114			Mitochondrion				"Cre13.g594200.t1.2;g6257.t1;Cre13.g594200.t1.1"		
+Cre06.g299200	GMM:29.5	protein.degradation		GO:0005524	"ATP binding"		g6921.t1		
+Cre06.g278106									
+Cre06.g253102									
+Cre06.g282400							"Cre06.g282400.t1.1;g6568.t1"		
+Cre06.g289200			Mitochondrion						
+Cre06.g293950	"GMM:25.1;GMM:25;GMM:1.2.5"	"C1-metabolism.glycine hydroxymethyltransferase;C1-metabolism;PS.photorespiration.serine hydroxymethyltransferase"		GO:0016740	"transferase activity"	SHMT2	"g6806.t1;Cre06.g293950.t1.1;SHMT2;SHMT2;g6806.t1;Cre06.g293950.t1.1"	"SHMT2;SHMT2"	"Serine hydroxymethyltransferase, by homology to Arabidopsis gene (Identifier 023254); found in the flagellar proteome [PMID: 15998802];Serine hydroxymethyltransferase, by homology to Arabidopsis gene (Identifier 023254); found in the flagellar proteome [PMID: 15998802]"
+Cre06.g270250	GMM:31.2	cell.division		GO:0006270	"DNA replication initiation"	CDC45	"CDC45;DIV65;g6063.t1"	CDC45	"fungal and metazoan CDC45 homolog. ts-lethal mutations block DNA replication (PMID 25336509)"
+Cre06.g266750	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB11	"Cre06.g266750.t1.1;g5987.t1"	HTB11	"replication linked H2B; histone gene cluster XI (type 43AB)"
+Cre06.g267550	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"		GO:0034464	BBSome	BBS5	"g6004.t1;BBS5;Cre06.g267550.t1.1"	BBS5	"Flagellar protein, component of BBSome that targets membrane proteins to cilia; probably mediates membrane association of the BBSome via its pleckstrin homology domain"
+Cre06.g278223			"Secretory pathway"				"Cre13.g599450.t1.1;g6365.t1"		
+Cre06.g287900			"Secretory pathway"				g6686.t1		
+Cre06.g291550			"Secretory pathway"				"Cre06.g291550.t1.1;g6756.t1"		
+Cre06.g280700	GMM:27.3.73	"RNA.regulation of transcription.Zn-finger(CCHC)"	Chloroplast				"g6529.t1;Cre06.g280700.t1.1"		
+Cre06.g302300				GO:0003677	"DNA binding"		"Cre06.g302300.t1.1;g6996.t1"		
+Cre06.g276200			"Secretory pathway"				"g6191.t1;g6191.t1"		
+Cre06.g285300	GMM:34.14	"transport.unspecified cations"		"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"	SUT1	"g6632.t1;SUT1;SUT1;g6632.t1;SUT1;g6632.t1;SUT1;g6632.t1"	"SUT1;SUT1;SUT1;SUT1"	"major facilitator superfamily;major facilitator superfamily;major facilitator superfamily;major facilitator superfamily"
+Cre06.g250276									
+Cre06.g273500	GMM:23.2	"nucleotide metabolism.degradation"	"Secretory pathway"	GO:0016787	"hydrolase activity"		"g6136.t1;Cre06.g273500.t1.1;DIV61;DIV61;Cre06.g273500.t1.1;g6136.t1;g6136.t1;Cre06.g273500.t1.1;DIV61"		"Golgi-enzyme, involved in cell wall glycosylation; ts lethal mutations isolated (PMID 25336509);Golgi-enzyme, involved in cell wall glycosylation; ts lethal mutations isolated (PMID 25336509);Golgi-enzyme, involved in cell wall glycosylation; ts lethal mutations isolated (PMID 25336509)"
+Cre06.g278250				"GO:0070652;GO:0051225"	"HAUS complex;spindle assembly"		"g6471.t1;Cre06.g278250.t1.1"		
+Cre06.g267000				"GO:0016740;GO:0008152;GO:0005542"	"transferase activity;metabolic process;folic acid binding"		"g5992.t1;g5992.t1;g5992.t1"		
+Cre06.g274550	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g6157.t1;g6157.t1"		
+Cre06.g268950	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre06.g268950.t1.1;g6034.t1;Cre06.g268950.t1.1;g6034.t1;Cre06.g268950.t1.1;g6034.t1;g6034.t1;Cre06.g268950.t1.1"		
+Cre06.g278192							"Cre13.g597900.t1.1;g6335.t1;g6335.t1;Cre13.g597900.t1.1"		
+Cre06.g285950			Chloroplast				"g6646.t1;Cre06.g285950.t1.1;g6646.t1;Cre06.g285950.t1.1"		
+Cre06.g278149			Chloroplast				"g6294.t1;Cre13.g595950.t1.1;Cre13.g595950.t1.2"		
+Cre06.g275100	"GMM:30.5;GMM:29.2.2.3.1;GMM:27.4"	"signalling.G-proteins;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g6169.t1;Cre06.g275100.t1.1;g6169.t1;Cre06.g275100.t1.1;g6169.t1;Cre06.g275100.t1.1"		
+Cre06.g250050			Chloroplast				"g5600.t1;g5600.t1"		
+Cre06.g278107			Chloroplast				"g6250.t2;Cre13.g593850.t1.1"		
+Cre06.g251200	GMM:31.6.1.3.2.1	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A"		GO:0030991	"intraciliary transport particle A"	IFT43	"g5626.t1;MOT41;Cre06.g251200.t1.1;MOT41;g5626.t1;Cre06.g251200.t1.1"	"IFT43;IFT43"	"Component of IFT-A particle; identified by comparative genomics as being present only in organisms having motile cilia; this gene is in the location of Probe 2 used in PMID: 11805055;Component of IFT-A particle; identified by comparative genomics as being present only in organisms having motile cilia; this gene is in the location of Probe 2 used in PMID: 11805055"
+Cre06.g281286							"g6542.t1;Cre06.g281286.t1.1"		
+Cre06.g278278							"Cre13.g602000.t1.2;Cre13.g602000.t1.1;g6426.t1"		
+Cre06.g297800							"g6888.t1;Cre06.g297800.t1.1;Cre06.g297800.t1.1;g6888.t1;Cre06.g297800.t1.1;g6888.t1;g6888.t1;Cre06.g297800.t1.1;g6888.t1;Cre06.g297800.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre06.g279400	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"	"Secretory pathway"	"GO:0006508;GO:0004185"	"proteolysis;serine-type carboxypeptidase activity"		"CPY;Cre06.g279400.t1.1;g6496.t1;g6496.t1;CPY;Cre06.g279400.t1.1;g6496.t1;CPY;Cre06.g279400.t1.1"		
+Cre06.g254700							"g5729.t1;g5729.t1;g5729.t1"		
+Cre06.g258200	"GMM:31.2;GMM:29.6;GMM:29.5.11.20"	"cell.division;protein.folding;protein.degradation.ubiquitin.proteasom"		GO:0005524	"ATP binding"		g5803.t1		
+Cre06.g282100							"g6561.t1;Cre06.g282100.t1.1"		
+Cre06.g255950	GMM:29.2.2.3.4	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins"					"g5752.t1;g5752.t1"		
+Cre06.g296100			"Secretory pathway"	GO:0003824	"catalytic activity"		"g6849.t1;Cre06.g296100.t1.1"		
+Cre06.g302900	GMM:3.5	"minor CHO metabolism.others"		GO:0005096	"GTPase activator activity"		"g7012.t1;g7012.t1"		
+Cre06.g269450	GMM:29.2.3	protein.synthesis.initiation		"GO:0005852;GO:0005737;GO:0003743;GO:0003676"	"eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity;nucleic acid binding"	EIF3G	"Cre06.g269450.t1.1;g6045.t1;EIF3G"	EIF3G	"putative eukaryotic translation initiation factor 3 subunit"
+Cre06.g269650			Chloroplast	GO:2001070	"starch binding"		"g6050.t1;Cre06.g269650.t1.1;Cre06.g269650.t1.1;g6050.t1"		
+Cre06.g278157			Chloroplast				"Cre13.g596200.t1.1;g6300.t1;Cre13.g596200.t1.2"		
+Cre06.g278148	"GMM:7.1.3;GMM:13.1.1.1.4"	"OPP.oxidative PP.6-phosphogluconate dehydrogenase;amino acid metabolism.synthesis.central amino acid metabolism.GABA.gamma-hydroxybutyrate DH"	Chloroplast	GO:0051287	"NAD binding"		"Cre13.g595900.t1.1;g6293.t1;Cre13.g595900.t1.2"		
+Cre06.g257500	"GMM:31.6.1.1;GMM:30.7;GMM:3.7"	"cell.motility.eukaryotes.basal bodies;signalling.14-3-3 proteins;minor CHO metabolism.sugar kinases"		GO:0019904	"protein domain specific binding"	FTT2	"Cre06.g257500.t1.1;g5788.t1;FTT2;g5788.t1;FTT2;Cre06.g257500.t1.1;FTT2;g5788.t1;Cre06.g257500.t1.1"	"POC8;POC8;POC8"	"Found in basal body proteome; Similar to 14-3-3 protein found in human centrosome proteome; In addition to its presence in the flagellar and centriole proteomes, this protein was also found in the mitochondrial proteome (soluble fraction); In this study, one of the peptides contained the N-terminus (with initiator Met removed), suggesting either import without an mTP, or association with the surface of the organelle;Found in basal body proteome; Similar to 14-3-3 protein found in human centrosome proteome; In addition to its presence in the flagellar and centriole proteomes, this protein was also found in the mitochondrial proteome (soluble fraction); In this study, one of the peptides contained the N-terminus (with initiator Met removed), suggesting either import without an mTP, or association with the surface of the organelle;Found in basal body proteome; Similar to 14-3-3 protein found in human centrosome proteome; In addition to its presence in the flagellar and centriole proteomes, this protein was also found in the mitochondrial proteome (soluble fraction); In this study, one of the peptides contained the N-terminus (with initiator Met removed), suggesting either import without an mTP, or association with the surface of the organelle"
+Cre06.g282826			Chloroplast						
+Cre06.g285200	GMM:23.3.3	"nucleotide metabolism.salvage.NUDIX hydrolases"	Chloroplast	GO:0016787	"hydrolase activity"	NDH1	"g6630.t1;NDH1"	NDH1	"probably an ADP-ribose diphosphatase"
+Cre06.g254100	GMM:31.1	cell.organisation	Mitochondrion			HRP6	"g5711.t1;HGRP1;HRP6"		"cell wall protein; contains (hydroxy)proline-rich (HR) domain with (SP)n repeats"
+Cre06.g306501			"Secretory pathway"				"g7100.t1;Cre06.g306500.t1.3;Cre06.g306500.t1.3;g7100.t1"		
+Cre06.g263700			"Secretory pathway"				g5925.t1		
+Cre06.g276650	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO2	"Cre06.g276650.t1.1;g6201.t1"	HFO2	"replication linked H4; histone gene cluster II (type 43AB)"
+Cre06.g267100	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"				SRP68	"SRP68;g5994.t1;Cre06.g267100.t1.1"	SRP68	"Conserved Hypothetical Protein. Similar to the SRP68 subunit of the Signal Recognition Particle. Involved in ER protein translocation."
+Cre06.g260050							"Cre06.g260050.t1.1;g5845.t1;g5845.t1;Cre06.g260050.t1.1"		
+Cre06.g255750			Chloroplast			EZY1C	"g5748.t1;EZY1"	EZY1C	"Unknown protein, zygote-specific, originally called Class III, member of a tandemly repeated gene family [PMID: 3614194]; localizes to chloroplast nucleoids, expression is suppressed after UV treatment of plus gametes, postulated involvement in uniparental inheritance of chloroplast DNA [PMID: 8374951]. EZY1 transcripts are not detected in cells expressing GSP1 ectopically [PMID: 11641281]. Genbank entry L20945."
+Cre06.g263841	GMM:28.1	"DNA.synthesis/chromatin structure"	"Secretory pathway"				"g5928.t1;Cre06.g263841.t1.1"		
+Cre06.g288700	GMM:1.2.2	"PS.photorespiration.glycolate oxydase"	Mitochondrion	"GO:0055114;GO:0050660;GO:0016491;GO:0003824"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;catalytic activity"	GYD1			
+Cre06.g296200	"GMM:4.1.16;GMM:30.3;GMM:29.4.1;GMM:29.4"	"glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre06.g296200.t1.1;g6851.t1;Cre06.g296200.t1.1;g6851.t1"		
+Cre06.g258250			"Secretory pathway"				g5805.t1		
+Cre06.g298200			"Secretory pathway"				g6897.t1		
+Cre06.g288450				"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"Cre06.g288450.t1.1;g6695.t1"		
+Cre06.g310400							g7182.t1		
+Cre06.g303900				GO:0016021	"integral component of membrane"		"g7037.t1;g7037.t1;g7037.t1"		
+Cre06.g285150	"GMM:26.12;GMM:21.2.1"	"misc.peroxidases;redox.ascorbate and glutathione.ascorbate"	Chloroplast	"GO:0055114;GO:0020037;GO:0006979;GO:0004601"	"oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity"	APX2	"g6629.t1;APx-R;Cre06.g285150.t1.1;APX2"		"This is a ascorbate peroxidase-related (APX-R) because the binding motif for ascorbate is missing but the heme-binding and the catalytic residues are conserved; Likely localized to the thylakoid lumen"
+Cre06.g294850	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC10	"g6825.t1;Cre06.g294850.t1.1;UBC10;Cre06.g294850.t1.1;UBC10;g6825.t1"	"UBC10;UBC10"	"Ubiquitin-conjugating enzyme E2, subclass III;Ubiquitin-conjugating enzyme E2, subclass III"
+Cre06.g278093	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	Mitochondrion			ELG20	"ELG20;Cre13.g593250.t1.1;g6237.t1;Cre13.g593250.t1.1;ELG20;g6237.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family; null-allele mutant was isolated (PMID 29743196);putative terminal arabinosyl transferase on HRGP, GT47 family; null-allele mutant was isolated (PMID 29743196)"
+Cre06.g264600	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO14	"HFO14;g5944.t1;Cre06.g264600.t1.1"	HFO14	"replication linked H4; histone gene cluster XIV (type 43AB)"
+Cre06.g266500			"Secretory pathway"				"Cre06.g266500.t1.1;g5982.t1"		
+Cre06.g271000			"Secretory pathway"				"g6080.t1;Cre06.g271000.t1.1;Cre06.g271000.t1.1;g6080.t1"		
+Cre06.g250350							"Cre06.g250350.t1.1;g5607.t1"		
+Cre06.g278299									
+Cre06.g255800							g5749.t1		
+Cre06.g307200							"Cre06.g307200.t1.1;g7115.t1;Cre06.g307200.t1.1;g7115.t1"		
+Cre06.g257150	"GMM:29.2.1.2.2.537;GMM:29.2.1.2.2.0537"	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L37A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L37A"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL37A	"RPL37a;Cre06.g257150.t1.1;g5778.t1;RPL37a;Cre06.g257150.t1.1;g5778.t1"	"RPL37A;RPL37A"	"Cytosolic 60S large ribosomal subunit protein L37a;Cytosolic 60S large ribosomal subunit protein L37a"
+Cre06.g253754									
+Cre06.g265850	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"	Mitochondrion	"GO:0008236;GO:0006508;GO:0005515"	"serine-type peptidase activity;proteolysis;protein binding"	TSP2	"TSP2;TCP2;CTPA2;g5968.t1"	CTPC1	"One of three related C-terminal peptidases (CTPA1/Cre10.g420550, CTPB1/Cre10.g453807, CTPC1/Cre06.g265850) that are highly conserved in oxygenic photosynthetic organisms; CTPA1 cleaves the C-terminal extension of the D1 precursor (pD1) to form mature D1, but the function of CTPB1 and CTPC1 remains unknown; Orthologous to CtpC/CTPA1 (AT5G46390) in Arabidopsis thaliana;"
+Cre06.g293051	GMM:34.5	transport.ammonium	"Secretory pathway"	"GO:0072488;GO:0016020;GO:0015696;GO:0008519"	"ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity"	AMT3	"g6788.t1;AMT3"	AMT1C	"Belongs to AMT1 family (AMT1;3 or AMT1.3); corresponds to AF59497"
+Cre06.g279950							g6508.t1		
+Cre06.g253459									
+Cre06.g281950			Mitochondrion				"g6558.t1;g6558.t1"		
+Cre06.g303572							"Cre06.g303572.t1.1;g7030.t1"		
+Cre06.g263200						FAP325	g5913.t1	FAP325	
+Cre06.g281350	GMM:29.5.5	"protein.degradation.serine protease"	Mitochondrion	"GO:0030163;GO:0006508;GO:0005524;GO:0004252;GO:0004176"	"protein catabolic process;proteolysis;ATP binding;serine-type endopeptidase activity;ATP-dependent peptidase activity"	LON1	"LON1;g6544.t1;Cre06.g281350.t1.1;LON1;g6544.t1;Cre06.g281350.t1.1;g6544.t1;Cre06.g281350.t1.1;LON1"	"LON1;LON1;LON1"	"belongs to MEROPS peptidase family S16 of ATP-dependent proteases; similar to mitochondrial LON protease homolog from Arabidopsis thaliana;belongs to MEROPS peptidase family S16 of ATP-dependent proteases; similar to mitochondrial LON protease homolog from Arabidopsis thaliana;belongs to MEROPS peptidase family S16 of ATP-dependent proteases; similar to mitochondrial LON protease homolog from Arabidopsis thaliana"
+Cre06.g249550									
+Cre06.g259700			Mitochondrion				"g5838.t1;Cre06.g259700.t1.1;Cre06.g259700.t1.1;g5838.t1;Cre06.g259700.t1.1;g5838.t1"		
+Cre06.g252450	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"		"DRG1;g5652.t1"		
+Cre06.g284500	"GMM:28.99;GMM:27.1.19"	"DNA.unspecified;RNA.processing.ribonucleases"				RPH1	"RPH1;Cre06.g284500.t1.1;RNPH1;g6615.t1"	RPH1	"Homologue of S. cerevisiae Ski6/Rrp41, which is a core component of the exosome, a complex of multiple 3'-5' exoribonucleases involved in RNA processing and RNA degradation. Homologue of RNase PH; null-allele mutant was isolated (PMID 29743196)"
+Cre06.g278174							"g6317.t1;Cre13.g597000.t1.1"		
+Cre06.g252650	"GMM:16.5.1.1.1.4;GMM:13.2.4.4"	"secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.methylthioalkylmalate isomerase small subunit (MAM-IS);amino acid metabolism.degradation.branched chain group.leucine"	Chloroplast	GO:0008152	"metabolic process"	LEU1S	"IPMI1;LEUS1;LEU1S;Cre06.g252650.t1.1;g5657.t1;IPMI1;LEUS1;LEU1S;Cre06.g252650.t1.1;g5657.t1"	"LEU1S;LEU1S"	"isopropylmalate dehydratase (EC 4.2.1.33); small subunit; second committed step in Leu biosynthesis;isopropylmalate dehydratase (EC 4.2.1.33); small subunit; second committed step in Leu biosynthesis"
+Cre06.g298600							"Cre06.g298600.t1.1;g6907.t1;Cre06.g298600.t1.1;g6907.t1"		
+Cre06.g302551							g7005.t1		
+Cre06.g274850	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR4	"g6163.t1;HTR23;Cre06.g274850.t1.1;HTR6;HTR26"	HTR4	"replication linked H3; histone gene cluster IV (type 43AB)"
+Cre06.g303200	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			MAW7			
+Cre06.g259000			"Secretory pathway"				"g5823.t1;Cre06.g259000.t1.1"		
+Cre06.g290150			Mitochondrion	GO:0042274	"ribosomal small subunit biogenesis"	CGL65	"CGL65;RIMP;g6731.t1"	RIMP1	"Conserved in the Green Lineage"
+Cre06.g280420			"Secretory pathway"	GO:0016779	"nucleotidyltransferase activity"		"g6522.t1;Cre06.g280420.t1.1"	PAP6	"Non-canonical poly(A) polymerase (ncPAP) with PAP/25A core domain; related to MUT68, PAP10 and PAP7"
+Cre06.g278216							"Cre13.g599100.t1.1;g6358.t1;Cre13.g599100.t1.1;g6358.t1;g6358.t1;Cre13.g599100.t1.1"		
+Cre06.g268400	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO9	"g6022.t1;Cre06.g268400.t1.1;HFO9"	HFO9	"replication linked H4; histone gene cluster IX (type 43AB)"
+Cre06.g278265	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre13.g601550.t1.1;g6406.t1"		
+Cre06.g249700			Chloroplast	"GO:0006355;GO:0005739;GO:0003690"	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"		g5593.t1		
+Cre06.g278154							"g6298.t1;Cre13.g596100.t1.1;Cre13.g596100.t1.2;g6298.t1;Cre13.g596100.t1.1;Cre13.g596100.t1.2"		
+Cre06.g296850						FAP81	"Cre06.g296850.t1.1;DLEC1;g6864.t1"	FAP81	"Found in the flagellar proteome; Similar to DLEC1 deleted in lung and esophageal cancer 1"
+Cre06.g278118							"g6261.t3;Cre13.g594400.t2.1"		
+Cre06.g303183	GMM:29.4	"protein.postranslational modification"				PTK4	"g7019.t1;Cre06.g303183.t1.1"		
+Cre06.g309717	GMM:18.7	"Co-factor and vitamine metabolism.iron-sulphur clusters"	Chloroplast				"g7166.t1;g7166.t1"		
+Cre06.g278257			Chloroplast				"Cre13.g601150.t1.1;g6398.t1;Cre13.g601150.t1.2;Cre13.g601150.t1.1;Cre13.g601150.t1.2;g6398.t1;g6398.t1;Cre13.g601150.t1.2;Cre13.g601150.t1.1"		
+Cre06.g278162	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC3	"PHC3;Cre13.g596450.t1.1;g6305.t1;PHC3;g6305.t1;Cre13.g596450.t1.1;PHC3;Cre13.g596450.t1.1;g6305.t1"	"PHC3;PHC3;PHC3"	"Pherophorin-C3 (PHC3) [PMID: 16367971; Genbank entry DQ196109]; extracellular matrix protein (cell wall protein); belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain.;Pherophorin-C3 (PHC3) [PMID: 16367971; Genbank entry DQ196109]; extracellular matrix protein (cell wall protein); belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain.;Pherophorin-C3 (PHC3) [PMID: 16367971; Genbank entry DQ196109]; extracellular matrix protein (cell wall protein); belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain."
+Cre06.g280950	GMM:4.1.14	"glycolysis.cytosolic branch.pyruvate kinase (PK)"		"GO:0030955;GO:0006096;GO:0004743;GO:0000287"	"potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding"	PYK2	"g6534.t1;Cre06.g280950.t1.1;g6534.t1;Cre06.g280950.t1.1;g6534.t1;Cre06.g280950.t1.1;g6534.t1;Cre06.g280950.t1.1;g6534.t1;Cre06.g280950.t1.1"	"PYK2;PYK2;PYK2;PYK2;PYK2"	"Putative Pyruvate Kinase; EC 2.7.1.40; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP; probably cytosolic;;Putative Pyruvate Kinase; EC 2.7.1.40; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP; probably cytosolic;;Putative Pyruvate Kinase; EC 2.7.1.40; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP; probably cytosolic;;Putative Pyruvate Kinase; EC 2.7.1.40; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP; probably cytosolic;;Putative Pyruvate Kinase; EC 2.7.1.40; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP; probably cytosolic;"
+Cre06.g277650							"Cre06.g277650.t1.1;g6222.t1;BES4;Cre06.g277650.t1.1;BES4;g6222.t1"		"Similar to Bestrophin, RFP-TM, chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family that includes Low-CO2-inducible membrane protein LCI11;Similar to Bestrophin, RFP-TM, chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family that includes Low-CO2-inducible membrane protein LCI11"
+Cre06.g255200							"g5736.t1;g5736.t1"		
+Cre06.g297016	GMM:28.2	DNA.repair		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"		g6872.t1		
+Cre06.g261850			Chloroplast				"g5884.t1;Cre06.g261850.t1.1"		
+Cre06.g256526									
+Cre06.g283350						MRPS34	"g6589.t1;mS34;MRPS34"	MRPS34	
+Cre06.g283975			"Secretory pathway"						
+Cre06.g293650							g6800.t1		
+Cre06.g271300	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO8	"HFO8;g6087.t1;Cre06.g271300.t1.1"	HFO8	"replication linked H4; histone gene cluster VIII (type 34AB)"
+Cre06.g261350							g5874.t1		
+Cre06.g277350	GMM:27.3.55	"RNA.regulation of transcription.HDA"				HDA13	"HDA13;g6216.t1"	HDA13	"ChromDB HDA3414"
+Cre06.g296936			"Secretory pathway"				g6869.t1		
+Cre06.g303650	GMM:29.2.3	protein.synthesis.initiation		"GO:0006413;GO:0003743"	"translational initiation;translation initiation factor activity"		g7032.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g289000			"Secretory pathway"				"g6707.t1;g6707.t1;g6707.t1"		
+Cre06.g262150			Chloroplast				g5890.t2		
+Cre06.g264850							g5949.t1		
+Cre06.g256700			Chloroplast				"g5769.t1;g5769.t1;g5769.t1;g5769.t1;g5769.t1;g5769.t1;g5769.t1;g5769.t1;g5769.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre06.g297900			Mitochondrion	GO:0016021	"integral component of membrane"		g6890.t1		
+Cre06.g311900	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"	RAB7	"RABG1;g7214.t1;Cre06.g311900.t1.1;RAB7;g7214.t1;RABG1;RAB7;Cre06.g311900.t1.1"	"RAB7;RAB7"	"Possible hydrolase; shows homology to haloacid dehalogenases, possible phosphatase; Similar to mammalian Rab7; two unique peptides; Class III in [PMID: 8756593];Possible hydrolase; shows homology to haloacid dehalogenases, possible phosphatase; Similar to mammalian Rab7; two unique peptides; Class III in [PMID: 8756593]"
+Cre06.g286950			"Secretory pathway"				"g6666.t1;Cre06.g286950.t1.1;Cre06.g286950.t1.1;g6666.t1"		
+Cre06.g253000						MTA1	"g5668.t1;A1;MTA1"		"protein of unknown function; the mRNA is induced in plus gametes; the gene exists only in the MT+ locus [PMID: 11805055]. The gene was originally called A1. Independently sequenced, see AF417571."
+Cre06.g300750	GMM:27.1.1	RNA.processing.splicing		"GO:0005681;GO:0000398"	"spliceosomal complex;mRNA splicing, via spliceosome"		g6958.t1		
+Cre06.g280200				"GO:0016021;GO:0006355;GO:0005634"	"integral component of membrane;regulation of transcription, DNA-templated;nucleus"		"g6516.t1;g6516.t1"		
+Cre06.g305800	GMM:29.5	protein.degradation					"Cre06.g305800.t1.1;g7078.t1;g7078.t1;Cre06.g305800.t1.1"		
+Cre06.g311950	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG3	"g7215.t1;ELG3"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre06.g254027			Chloroplast						
+Cre06.g272500			Chloroplast				"Cre06.g272500.t1.1;g6114.t1"		
+Cre06.g290300			Mitochondrion				"Cre06.g290300.t1.1;g6734.t1"		
+Cre06.g305550							"g7073.t1;Cre06.g305550.t1.1"		
+Cre06.g294550			Chloroplast				"Cre06.g294550.t1.1;g6818.t1"		
+Cre06.g296000						PSK1	"g6847.t1;Cre06.g296000.t1.1;PSK1"	PSK1	"Putative O-phosphoseryl-tRNA(Sec) kinase, involved in selenocysteine biosynthesis"
+Cre06.g283550	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"	Chloroplast				"CRC2;g6593.t1"	POC6	"Found in basal body proteome; EF-hand protein similar to centrin-3"
+Cre06.g290450	"GMM:29.4;GMM:27.4"	"protein.postranslational modification;RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"Cre06.g290450.t1.1;g6737.t1;g6737.t1;Cre06.g290450.t1.1"		
+Cre06.g285650	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006260;GO:0005664;GO:0003677"	"DNA replication;nuclear origin of replication recognition complex;DNA binding"	ORC6	"ORC6;g6639.t1;Cre06.g285650.t1.1"	ORC6	"Homologous to eukaryotic ORC6, DNA replication control protein"
+Cre06.g292750			"Secretory pathway"	GO:0008430	"selenium binding"		"Cre06.g292750.t1.1;g6782.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g304250						RLS2	"RLS2;g7043.t1;g7043.t1;RLS2;g7043.t1;RLS2"		"Member of a family of proteins related to Volvox carteri RegA, which is a putative transcription repressor containing a SAND domain (IPR000770; PF01342); genetically linked to RLS12;Member of a family of proteins related to Volvox carteri RegA, which is a putative transcription repressor containing a SAND domain (IPR000770; PF01342); genetically linked to RLS12;Member of a family of proteins related to Volvox carteri RegA, which is a putative transcription repressor containing a SAND domain (IPR000770; PF01342); genetically linked to RLS12"
+Cre06.g269000							"Cre06.g269000.t1.1;g6036.t1"		
+Cre06.g306100							g7092.t2		
+Cre06.g278086							"Cre13.g592900.t1.2;g6230.t1;Cre13.g592900.t1.1"		
+Cre06.g301476									
+Cre06.g268100	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB10	"Cre06.g268100.t1.1;g6015.t1;HTB10"	HTB10	"replication linked H2B; histone gene cluster X (type 34AB)"
+Cre06.g278116			Chloroplast				"Cre13.g594300.t1.1;Cre13.g594300.t1.2;g6259.t1"		
+Cre06.g294650	"GMM:13.1.5.2.3;GMM:13.1.1.3.11;GMM:1.2.3"	"amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.serine glyoxylate aminotransferase;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase;PS.photorespiration.aminotransferases peroxisomal"	Chloroplast			AGT1	"AGT1;g6820.t1;Cre06.g294650.t1.1;AGT1;g6820.t1;Cre06.g294650.t1.1;AGT1;g6820.t1;Cre06.g294650.t1.1"	"AGT1;AGT1;AGT1"	"putative alanine-glyoxylate transaminase (EC 2.6.1.44); Present in thylakoid proteome based on mass spectrometric peptide identification; mitochondrial localization assumed [PMID: 17078018]; predicted by Target-P as mitochondrial; peroxisomal location supported by C-terminal PTS1 signal GKL;putative alanine-glyoxylate transaminase (EC 2.6.1.44); Present in thylakoid proteome based on mass spectrometric peptide identification; mitochondrial localization assumed [PMID: 17078018]; predicted by Target-P as mitochondrial; peroxisomal location supported by C-terminal PTS1 signal GKL;putative alanine-glyoxylate transaminase (EC 2.6.1.44); Present in thylakoid proteome based on mass spectrometric peptide identification; mitochondrial localization assumed [PMID: 17078018]; predicted by Target-P as mitochondrial; peroxisomal location supported by C-terminal PTS1 signal GKL"
+Cre06.g308250	GMM:29.2.1.2.1.4	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S4"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723"	"translation;ribosome;intracellular;structural constituent of ribosome;RNA binding"	RPS4	"g7136.t1;Cre06.g308250.t1.1;g7136.t1;Cre06.g308250.t1.1;g7136.t1;Cre06.g308250.t1.1;Cre06.g308250.t1.1;g7136.t1"	"RPS4;RPS4;RPS4;RPS4"	"Cytosolic 40S small ribosomal subunit protein S4;Cytosolic 40S small ribosomal subunit protein S4;Cytosolic 40S small ribosomal subunit protein S4;Cytosolic 40S small ribosomal subunit protein S4"
+Cre06.g265150	"GMM:29.5.11.5;GMM:29.5.11"	"protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin"	Chloroplast				"g5955.t1;g5955.t1"		
+Cre06.g310800			Mitochondrion				g7192.t1		
+Cre06.g308750				GO:0016021	"integral component of membrane"		"g7146.t1;Cre06.g308750.t1.1"		
+Cre06.g254550							"g5726.t1;Cre06.g254550.t1.1"		
+Cre06.g260300									
+Cre06.g296300			"Secretory pathway"			SRR1	"g6853.t2;SRR1;SRR1;g6853.t2;g6853.t2;SRR1"		"Scavenger receptor cysteine-rich protein; related to SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; related to SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; related to SRCR domain found in speract/scavenger receptor (PMID: 14995912)"
+Cre06.g278550	GMM:9.1.2	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear"	"Secretory pathway"				"Cre06.g278550.t1.1;g6477.t1"		
+Cre06.g306021									
+Cre06.g260700	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0006863;GO:0006810;GO:0005345;GO:0005215"	"transmembrane transport;membrane;purine nucleobase transport;transport;purine nucleobase transmembrane transporter activity;transporter activity"	XUV1	"Cre06.g260700.t1.1;g5858.t1;UAPA6;XUV1;Cre06.g260700.t1.1;g5858.t1;UAPA6;XUV1"		"related to plants and fungi; also related to bacterial inner membrane proteins;related to plants and fungi; also related to bacterial inner membrane proteins"
+Cre06.g258650			Chloroplast			PGM6	"Cre06.g258650.t1.1;g5816.t1;PGM6;g5816.t1;Cre06.g258650.t1.1;PGM6"		"phosphoglycerate/bisphosphoglycerate mutase family protein;phosphoglycerate/bisphosphoglycerate mutase family protein"
+Cre06.g299000	GMM:29.2.1.1.4.2	"protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit"	Chloroplast	GO:0005840	ribosome	PRPL21	"g6917.t1;Cre06.g299000.t1.1"	PRPL21	"imported to chloroplast; Chloroplast large ribosomal subunit protein L21"
+Cre06.g305200	GMM:27.3.11	"RNA.regulation of transcription.C2H2 zinc finger family"					g7064.t1		
+Cre06.g278197	GMM:29.5.3	"protein.degradation.cysteine protease"	Mitochondrion	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"		"g6340.t1;Cre13.g598150.t1.1;SENP6;Cre13.g598150.t1.1;SENP6;g6340.t1;Cre13.g598150.t1.1;SENP6;g6340.t1;Cre13.g598150.t1.1;SENP6;g6340.t1;Cre13.g598150.t1.1;SENP6;g6340.t1"	"SENP7;SENP7;SENP7;SENP7;SENP7"	"ts-lethal mutant arrest at G1 (PMID 29743196);ts-lethal mutant arrest at G1 (PMID 29743196);ts-lethal mutant arrest at G1 (PMID 29743196);ts-lethal mutant arrest at G1 (PMID 29743196);ts-lethal mutant arrest at G1 (PMID 29743196)"
+Cre06.g292400			Chloroplast				"SOUL5;g6775.t1;SOUL5;g6775.t1;g6775.t1;SOUL5"		"expressed protein conserved in photosynthetic organisms; the DUF2358 domain is also found in SOUL3 and SOUL4;expressed protein conserved in photosynthetic organisms; the DUF2358 domain is also found in SOUL3 and SOUL4;expressed protein conserved in photosynthetic organisms; the DUF2358 domain is also found in SOUL3 and SOUL4"
+Cre06.g292600			Mitochondrion			OPR26	g6779.t1	OPR26	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre06.g275150	GMM:11.9.2.1	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase"		GO:0006629	"lipid metabolic process"	CGL69	"Cre06.g275150.t1.1;TGL11;g6170.t1"	CGL69	"Conserved in the Green Lineage"
+Cre06.g294900			Chloroplast						
+Cre06.g272600			"Secretory pathway"	"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"g6116.t1;Cre06.g272600.t1.1"		
+Cre06.g306300	"GMM:19.10;GMM:19.1"	"tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase"	Chloroplast	"GO:0016851;GO:0015995;GO:0015979"	"magnesium chelatase activity;chlorophyll biosynthetic process;photosynthesis"	CHLI1	"CHLI1;g7096.t1;Cre06.g306300.t1.1;CHLI1;g7096.t1;Cre06.g306300.t1.1"	"CHLI1;CHLI1"	"Magnesium-chelatase subunit chlI, chloroplast precursor (Mg-protoporphyrin IX chelatase); orthologous to the bacterial magnesium chelatase subunits BchI, and other plant magnesium chelatase subunits ChlI [PMID: 9359397]. Forms an ATP dependent hexameric ring complex and a complex with the ChlD subunit (probably a double hexameric ring complex) before acting on the protoporphyrin which is bound to the ChlH protein to insert magnesium [PMID: 11469861]. Transcription is light regulated and may be diurnal and/;Magnesium-chelatase subunit chlI, chloroplast precursor (Mg-protoporphyrin IX chelatase); orthologous to the bacterial magnesium chelatase subunits BchI, and other plant magnesium chelatase subunits ChlI [PMID: 9359397]. Forms an ATP dependent hexameric ring complex and a complex with the ChlD subunit (probably a double hexameric ring complex) before acting on the protoporphyrin which is bound to the ChlH protein to insert magnesium [PMID: 11469861]. Transcription is light regulated and may be diurnal and/"
+Cre06.g253150	GMM:29.5.7	protein.degradation.metalloprotease							
+Cre06.g257650	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979"	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress"	MSRA2	"Cre06.g257650.t1.1;g5791.t1"	MSRA2	"catalyzes the thioredoxin-dependent reduction of L-methionine (S)-S-oxide in oxidized proteins"
+Cre06.g301900							"g6987.t1;g6987.t1"		
+Cre06.g274350	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR5	"Cre06.g274350.t1.1;g6153.t1;HTR29"	HTR5	"replication linked H3; histone gene cluster V (type 43)"
+Cre06.g287300			"Secretory pathway"				"Cre06.g287300.t1.1;COG9;g6674.t1"		
+Cre06.g301251							g6969.t1		
+Cre06.g277600							"g6221.t1;Cre06.g277600.t1.1;g6221.t1;Cre06.g277600.t1.1"		
+Cre06.g287600							"g6680.t1;g6680.t1;g6680.t1;g6680.t1"		
+Cre06.g278244			Chloroplast	GO:0009116	"nucleoside metabolic process"		"Cre13.g600600.t1.2;Cre13.g600600.t1.1;g6386.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g290900							"g6743.t1;g6743.t1"		
+Cre06.g271900							"g6101.t1;Cre06.g271900.t1.1"		
+Cre06.g252050							"g5644.t1;Cre06.g252050.t1.1"		
+Cre06.g266550							"Cre06.g266550.t1.1;g5983.t1"		
+Cre06.g278232			Chloroplast						
+Cre06.g251500	"GMM:22.1.7;GMM:22.1.6"	"polyamine metabolism.synthesis.spermine synthase;polyamine metabolism.synthesis.spermidine synthase"		"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	SPS1	"SPS1;g5632.t1;Cre06.g251500.t1.1"		"most similar to Arabidopsis spermine synthase ACAULIS 5 which transfers the aminopropyl group of decarboxylated S-AdoMet to spermidine, forming spermine (PMID: 12220656); note that spermine has not been found in a survey of Chlamydomonas polyamines (PMID: 15002659); SPS1 is found in the flagellar proteome [PMID: 15998802]"
+Cre06.g281650							"g6551.t1;Cre06.g281650.t1.1"		
+Cre06.g248750			Mitochondrion				"g5572.t1;g5572.t1"		
+Cre06.g275800	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB3	"Cre06.g275800.t1.1;HTB31;HTB4;g6183.t1"	HTB3	"replication linked H2B; histone gene cluster III (type 34AB)"
+Cre06.g310900			Mitochondrion				"g7194.t1;Cre06.g310900.t1.1"		
+Cre06.g254400	GMM:8.1.8	"TCA / organic transformation.TCA.fumarase"	Mitochondrion	"GO:0016836;GO:0016829"	"hydro-lyase activity;lyase activity"	FUM1	g5723.t1	FUM1	"similarity to class I prokaryotic fumarase; predicted to be mitochondrial"
+Cre06.g278134			Mitochondrion				"Cre13.g595150.t1.1;g6279.t1"		
+Cre06.g284050	GMM:27.3.51	"RNA.regulation of transcription.general transcription, TBP-binding protein"		GO:0006355	"regulation of transcription, DNA-templated"	TAF1	"TAF1;g6605.t1;Cre06.g284050.t1.1;TF2F"	TAF1	"contains a YEATS domain, similar to rice putative TAF14b"
+Cre06.g278098	GMM:13.2.4.4	"amino acid metabolism.degradation.branched chain group.leucine"				MCCA	"MCC1;g6242.t1;Cre13.g593500.t1.1;MCCA"		" alpha subunit of 3-methylcrotonoyl-CoA carboxylase, mitochondrial precursor; a biotin-dependent carboxylase; contains a very short LSU-rRNA motif on the opposite strand, in intron"
+Cre06.g250000							"Cre06.g250000.t1.1;g5599.t1"		
+Cre06.g297400	GMM:26.7	"misc.oxidases - copper, flavone etc"		"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"		g6879.t1		
+Cre06.g298350	GMM:29.2.3	protein.synthesis.initiation		GO:0005515	"protein binding"	FAP224	"Cre06.g298350.t1.1;g6902.t1;Cre06.g298350.t1.1;g6902.t1;g6902.t1;Cre06.g298350.t1.1"	"FAP224;FAP224;FAP224"	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome; may the target of a miRNA directing cleavage in the extended 3' UTR, after the main polyadenylation site, in a region that appears to be deleted in strain S1D2;Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome; may the target of a miRNA directing cleavage in the extended 3' UTR, after the main polyadenylation site, in a region that appears to be deleted in strain S1D2;Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome; may the target of a miRNA directing cleavage in the extended 3' UTR, after the main polyadenylation site, in a region that appears to be deleted in strain S1D2"
+Cre06.g295376							g6837.t1		
+Cre06.g283600			Chloroplast				"Cre06.g283600.t1.1;g6594.t1"		
+Cre06.g302800	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"STK;g7010.t1;Cre06.g302800.t1.1"		
+Cre06.g279300				GO:0005515	"protein binding"		"g6494.t1;Cre06.g279300.t1.1;Cre06.g279300.t1.1;g6494.t1;g6494.t1;Cre06.g279300.t1.1"		
+Cre06.g255550			Chloroplast				"EEP3;g5743.t1;g5743.t1;EEP3;g5743.t1;EEP3"		
+Cre06.g253975									
+Cre06.g274450				GO:0005515	"protein binding"		"SMM20;g6155.t1;g6155.t1;SMM20;SMM20;g6155.t1;g6155.t1;SMM20"		"next to Histone cluster VII and XXIV and to SMM19;next to Histone cluster VII and XXIV and to SMM19;next to Histone cluster VII and XXIV and to SMM19;next to Histone cluster VII and XXIV and to SMM19"
+Cre06.g262601	GMM:28.2	DNA.repair	Chloroplast				"g5899.t1;Cre06.g262600.t1.3"		
+Cre06.g253569			Chloroplast						
+Cre06.g250150							"Cre06.g250150.t1.1;g5602.t2"		
+Cre06.g278181	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Chloroplast				"g6324.t1;Cre13.g597350.t1.1;g6324.t1;Cre13.g597350.t1.1"		
+Cre06.g303800				GO:0005515	"protein binding"		"Cre06.g303800.t1.1;g7035.t1;g7035.t1;Cre06.g303800.t1.1"		
+Cre06.g270450			"Secretory pathway"				"g6068.t1;g6068.t1;g6068.t1;g6068.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre06.g278290			Chloroplast						
+Cre06.g256420	GMM:27.2	RNA.transcription		"GO:0017025;GO:0008270;GO:0006384;GO:0006355;GO:0006352;GO:0000126"	"TBP-class protein binding;zinc ion binding;transcription initiation from RNA polymerase III promoter;regulation of transcription, DNA-templated;DNA-templated transcription, initiation;transcription factor TFIIIB complex"		"g5762.t1;Cre06.g256420.t1.1;g5762.t1;Cre06.g256420.t1.1"		
+Cre06.g287800			"Secretory pathway"				"Cre06.g287800.t1.1;g6684.t1"		
+Cre06.g299300	"GMM:31.6.1.1;GMM:31.1.1.2;GMM:31.1"	"cell.motility.eukaryotes.basal bodies;cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"		"GO:0031122;GO:0007020;GO:0007017;GO:0005874;GO:0003924;GO:0000930"	"cytoplasmic microtubule organization;microtubule nucleation;microtubule-based process;microtubule;GTPase activity;gamma-tubulin complex"	TUG1	"TUG1;g6923.t1;Cre06.g299300.t1.1;TUG"	TUG1	"Gamma tubulin [gi:1098639][gi:8928436] [PMID: 10223635]"
+Cre06.g249101									
+Cre06.g267650	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g6006.t1;Cre06.g267650.t1.1;Cre06.g267650.t1.1;g6006.t1"		
+Cre06.g278190			Mitochondrion				"Cre13.g597800.t1.1;g6333.t1"		
+Cre06.g254175						PR72	"Cre06.g254189.t1.2;MT0796;g5713.t1;PR72"		
+Cre06.g270900	"GMM:27.2;GMM:27.1"	"RNA.transcription;RNA.processing"	Mitochondrion	GO:0016817	"hydrolase activity, acting on acid anhydrides"	SUV3	"SUV3;Cre06.g270900.t1.1;g6078.t1"	SUV3	"Putative mitochondrial DNA/RNA helicase SUV3 involved in 3'-5'RNA decay. See PUBMED 12466530 and 10570936."
+Cre06.g272250			"Secretory pathway"			PHC27	"PHC27;g6108.t1;PHC27;g6108.t1"		
+Cre06.g278285									
+Cre06.g278247			Mitochondrion				"Cre13.g600750.t1.1;g6389.t1"		
+Cre06.g304913							g7058.t1		
+Cre06.g300139			Mitochondrion				"Cre06.g300139.t1.1;Cre06.g300121.t1.2;g6942.t2;Cre06.g300121.t1.2;g6942.t2;Cre06.g300139.t1.1"		
+Cre06.g253750			"Secretory pathway"			EZY2	"EZY2A; g5694.t1;Cre06.g253750.t1.1"		"Encodes a predicted chloroplast protein with no recognizable domains or similarity, and its mRNA is zygote specific;One of six copies of the EZY2 gene in the mt+ locus (Cre06.g253750,Cre06.g253759,Cre06.g253800,Cre06.g253902,Cre06.g254052);Proposed to be involved in uniparental chloroplast DNA inheritance"
+Cre06.g261300			Chloroplast				"g5873.t1;Cre06.g261300.t1.1"		
+Cre06.g273800	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion				"g6142.t1;Cre06.g273800.t1.1;g6142.t1;Cre06.g273800.t1.1"		
+Cre06.g253350	"GMM:1.2.4.4;GMM:1.2.4"	"PS.photorespiration.glycine cleavage.H protein;PS.photorespiration.glycine cleavage"	Mitochondrion			GCSH	"GCSH;g5678.t1;Cre06.g253350.t1.1"	GCSH1	"glycine decarboxylase complex, H-protein, glycine cleavage system H protein, mitochondrial (GDC_H). Similar to Arabidopsis At1g32470.1. Linkage to the MT locus [PMID: 11805055. Independent sequence (partial): AF387366; C. incerta EST sequence: DQ122896]."
+Cre06.g262850	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"	RAB23	"RAB23;Cre06.g262850.t1.1;g5904.t1"	RAB23	"Class III in [PMID: 8756593]"
+Cre06.g301100			Mitochondrion				"g6966.t1;g6966.t1;g6966.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre06.g302250							"g6994.t1;g6994.t1;g6994.t1;g6994.t1"		
+Cre06.g278209			"Secretory pathway"			PRL8	"PRL8;Cre13.g598700.t1.1;g6351.t2;Cre13.g598700.t1.1;PRL8;g6351.t2"		"CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein;CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein"
+Cre06.g309200			Chloroplast				"Cre06.g309200.t1.1;g7154.t1"		
+Cre06.g266850	GMM:27.3.9	"RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family"		"GO:0043565;GO:0008270;GO:0006355;GO:0003700"	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g5989.t1;g5989.t1;g5989.t1;g5989.t1;g5989.t1"		
+Cre06.g299800	GMM:11.1.8	"lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase"	Chloroplast	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	LCL1	"g6933.t1;LCL1;Cre06.g299800.t1.1;g6933.t1;LCL1;Cre06.g299800.t1.1;Cre06.g299800.t1.1;g6933.t1;LCL1"	"LCL1;LCL1;LCL1"	
+Cre06.g301400									
+Cre06.g311350			"Secretory pathway"				"g7203.t1;g7203.t1"		
+Cre06.g273100	GMM:26.3	"misc.gluco-, galacto- and mannosidases"	"Secretory pathway"	GO:0019028	"viral capsid"		"g6127.t1;g6127.t1"		
+Cre06.g278222	"GMM:33.99;GMM:30.5;GMM:30.2.99;GMM:29.4"	"development.unspecified;signalling.G-proteins;signalling.receptor kinases.misc;protein.postranslational modification"		GO:0005515	"protein binding"		"CBLP;g6364.t1;Cre13.g599400.t1.1;RCK1;Cre13.g599400.t1.2"	RACK1	"Receptor of activated protein kinase C 1, component of 40S small ribosomal subunit; Also cytosolic 40S small ribosomal subunit protein RACK1; initially described [PMID: 2116589] as CBLP. Smith and Lee 2008 [PMID:"
+Cre06.g283250							"g6587.t1;Cre06.g283250.t1.1;g6587.t1;Cre06.g283250.t1.1"	"POB9;POB9"	"Found in basal body proteome;Found in basal body proteome"
+Cre06.g262500			Mitochondrion				"g5897.t1;Cre06.g262500.t1.1;Cre06.g262500.t1.1;g5897.t1"		
+Cre06.g270726							g6074.t1		
+Cre06.g286050	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP20	"g6648.t1;MCP20;Cre06.g286050.t1.1"		
+Cre06.g307100	GMM:35.1.1	"not assigned.no ontology.ABC1 family protein"				AKC2	g7113.t1	AKC2	"Similar to ABC1-transporter protein family; these proteins have a nuclear or mitochondrial subcellular location in eukaryotes; contains a LysM-domain which is found in a variety of enzymes in"
+Cre06.g281563							"g6549.t1;Cre06.g281550.t1.3"		
+Cre06.g278101	GMM:13.1.4.5	"amino acid metabolism.synthesis.branched chain group.isoleucine specific"				STD1	"g6244.t1;STD1;Cre13.g593600.t1.2;Cre13.g593600.t1.1;STD1;g6244.t1;Cre13.g593600.t1.2;Cre13.g593600.t1.1"		"Putative serine/threonine dehydratase (EC 4.3.1.19) - serine racemase (EC 5.1.1.10) ; based on similarity to bifunctional Arabidopsis serine racemase (GenBank AB206823) (PMID: 16483618); converts L-serine to D-serine (serine racemase) or to pyruvate (seri;Putative serine/threonine dehydratase (EC 4.3.1.19) - serine racemase (EC 5.1.1.10) ; based on similarity to bifunctional Arabidopsis serine racemase (GenBank AB206823) (PMID: 16483618); converts L-serine to D-serine (serine racemase) or to pyruvate (seri"
+Cre06.g280450							g6523.t1		
+Cre06.g273850	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB7	"Cre06.g273850.t1.1;g6143.t1;HTB7"	HTB7	"replication linked H2B; histone gene cluster VII (type 34AB)"
+Cre06.g276001						TOM5	"Cre06.g276000.t1.2;g6187.t1"	TOM5	"Mitochondrial import receptor subunit TOM5 (Translocase of outer membrane 5 kDa)"
+Cre06.g297300							"g6878.t1;g6878.t1;g6878.t1;g6878.t1"		
+Cre06.g278160	GMM:2.1	"major CHO metabolism.synthesis"	"Secretory pathway"			PRL5	"Cre13.g596350.t1.2;PRL5;g6303.t1;Cre13.g596350.t1.1;Cre13.g596350.t1.2;PRL5;Cre13.g596350.t1.1;g6303.t1;g6303.t1;Cre13.g596350.t1.1;Cre13.g596350.t1.2;PRL5"		"CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein;CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein;CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein"
+Cre06.g310500	GMM:27.3.60	"RNA.regulation of transcription.NIN-like bZIP-related family"	Mitochondrion	"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"BLZ3;Cre06.g310500.t1.1;g7184.t1;g7184.t1;BLZ3;Cre06.g310500.t1.1"		"Def HY5 (ELONGATED HYPOCOTYL 5); DNA binding / transcription factor - bZIP transcription factor family protein / HY5-like protein (HYH), nearly identical to HY5-like protein (Arabidopsis thaliana) GI:1842111; similar to TGACG-motif binding factor GI:2934;Def HY5 (ELONGATED HYPOCOTYL 5); DNA binding / transcription factor - bZIP transcription factor family protein / HY5-like protein (HYH), nearly identical to HY5-like protein (Arabidopsis thaliana) GI:1842111; similar to TGACG-motif binding factor GI:2934"
+Cre06.g278249	"GMM:16.2;GMM:13.1.1.2.1"	"secondary metabolism.phenylpropanoids;amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase"		"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"	AST5	"Cre13.g600800.t1.2;g6391.t1;AST5;Cre13.g600800.t1.1"	AST5	"Putative aspartate aminotransferase (EC 2.6.1.1); appears to lack an organelle targeting sequence; subcellular localization unsure; most closely related to aminotransferases from Thermus and from Cyanobacteria; could transaminate other substrates; Putativ"
+Cre06.g309350	GMM:29.3.4.1	"protein.targeting.secretory pathway.ER"	"Secretory pathway"	"GO:0046923;GO:0016021;GO:0006621"	"ER retention sequence binding;integral component of membrane;protein retention in ER lumen"	ERD2C	"Cre06.g309350.t1.1;g7158.t1;ERD2C"	ERD2C	"Hypothetical Conserved Protein. Has similarity to ERD2/KDEL receptor, proteins involved in ER retention of lumenal proteins."
+Cre06.g309050	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Mitochondrion	"GO:0006355;GO:0005634"	"regulation of transcription, DNA-templated;nucleus"	NOT2	"NOT2;Cre06.g309050.t1.1;g7151.t1;Cre06.g309050.t1.1;g7151.t1;NOT2;NOT2;g7151.t1;Cre06.g309050.t1.1;NOT2;Cre06.g309050.t1.1;g7151.t1"	"NOT2;NOT2;NOT2;NOT2"	"putative homolog of not2 in yeast: general negative regulator of transcription subunit 2. Volvox ortholog, 127435;putative homolog of not2 in yeast: general negative regulator of transcription subunit 2. Volvox ortholog, 127435;putative homolog of not2 in yeast: general negative regulator of transcription subunit 2. Volvox ortholog, 127435;putative homolog of not2 in yeast: general negative regulator of transcription subunit 2. Volvox ortholog, 127435"
+Cre06.g252800			"Secretory pathway"	GO:0006629	"lipid metabolic process"		"Cre06.g252801.t1.3;g5661.t1;LPS1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre06.g264750	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA14	"HTA14;g5947.t1;Cre06.g264750.t1.1"	HTA14	"replication linked H2A; histone gene cluster XIV (type 43AB)"
+Cre06.g264700	GMM:28.1.3	"DNA.synthesis/chromatin structure.histone"	"Secretory pathway"			CSS1	"CSS1;Cre06.g264700.t1.1;g5946.t1"		"expressed protein of unknown function; the gene interrupts histone gene cluster XIV, as does highly similar and linked CSS2"
+Cre06.g259100			Chloroplast				g5825.t1	POB30	"Found in basal body proteome"
+Cre06.g260776			"Secretory pathway"						
+Cre06.g302150			Chloroplast				"RLS12;g6992.t1;g6992.t1;RLS12;g6992.t1;RLS12"		"Very divergent member of a family of proteins related to Volvox carteri RegA, which is a putative transcription repressor containing a SAND domain (IPR000770 SAND; PF01342); genetically linked to RLS2;Very divergent member of a family of proteins related to Volvox carteri RegA, which is a putative transcription repressor containing a SAND domain (IPR000770 SAND; PF01342); genetically linked to RLS2;Very divergent member of a family of proteins related to Volvox carteri RegA, which is a putative transcription repressor containing a SAND domain (IPR000770 SAND; PF01342); genetically linked to RLS2"
+Cre06.g282700							"g6574.t1;Cre06.g282700.t1.1"		
+Cre06.g258100			Mitochondrion				"g5801.t1;g5801.t1"		
+Cre06.g264150						MAW11	"MAW11;g5935.t1"		"Contains a predicted C-terminal transmembrane domain."
+Cre06.g255050							"Cre06.g255050.t1.1;g5733.t1;g5733.t1;Cre06.g255050.t1.1"		
+Cre06.g288500			"Secretory pathway"			RRA2	"Cre06.g288500.t1.1;g6696.t1;Cre06.g288500.t1.1;g6696.t1"	"RRA2;RRA2"	"Arabinosyl transferase on mono-arabinosylated hydroxyproline; GT77 family;Arabinosyl transferase on mono-arabinosylated hydroxyproline; GT77 family"
+Cre06.g261100							"g5869.t1;Cre06.g261100.t1.1"		
+Cre06.g278292									
+Cre06.g282750			Mitochondrion				g6575.t1		
+Cre06.g271250	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR8	"Cre06.g271250.t1.1;g6086.t1;HTR8"	HTR8	"replication linked H3; histone gene cluster VIII (type 34AB)"
+Cre06.g256600							"g5767.t1;Cre06.g256600.t1.1;g5767.t1;Cre06.g256600.t1.1;g5767.t1;Cre06.g256600.t1.1;g5767.t1;Cre06.g256600.t1.1"		
+Cre06.g279800							"g6505.t1;Cre06.g279800.t1.1"		
+Cre06.g257200							"g5781.t1;g5781.t1"		
+Cre06.g278225	GMM:26.5	"misc.acyl transferases"					"g6367.t1;Cre13.g599550.t1.1"		
+Cre06.g286250	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MPC1	"MSCP1;g6652.t1;MPC1;Cre06.g286250.t1.1;MPC1;Cre06.g286250.t1.1;MSCP1;g6652.t1;MPC1;Cre06.g286250.t1.1;MSCP1;g6652.t1"		"Putative mitochondrial substrate carrier protein. Based on homology to: 1)gi 34394981 dbj BAC84529.1 [34394981] a mitochondrial aspartate-glutamate carrier protein-like from Oryza sativa 2)gi 15028275 gb AAK76726.1 [15028275] a putative mitochondrial carrier protein from Arabidopsis thaliana.;Putative mitochondrial substrate carrier protein. Based on homology to: 1)gi 34394981 dbj BAC84529.1 [34394981] a mitochondrial aspartate-glutamate carrier protein-like from Oryza sativa 2)gi 15028275 gb AAK76726.1 [15028275] a putative mitochondrial carrier protein from Arabidopsis thaliana.;Putative mitochondrial substrate carrier protein. Based on homology to: 1)gi 34394981 dbj BAC84529.1 [34394981] a mitochondrial aspartate-glutamate carrier protein-like from Oryza sativa 2)gi 15028275 gb AAK76726.1 [15028275] a putative mitochondrial carrier protein from Arabidopsis thaliana."
+Cre06.g278146			Mitochondrion				"Cre13.g595800.t1.1;g6291.t1;g6291.t1;Cre13.g595800.t1.1"		
+Cre06.g249450							"Cre06.g249450.t1.1;g5587.t1"		
+Cre06.g278136	"GMM:29.5.11.4.2;GMM:28.1.3;GMM:27.3.12"	"protein.degradation.ubiquitin.E3.RING;DNA.synthesis/chromatin structure.histone;RNA.regulation of transcription.C3H zinc finger family"		"GO:0046872;GO:0008270;GO:0005515"	"metal ion binding;zinc ion binding;protein binding"		"Cre13.g595300.t1.2;Cre13.g595300.t1.1;g6281.t1"		
+Cre06.g269200	GMM:30.2.11	"signalling.receptor kinases.leucine rich repeat XI"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	cya7	"g6040.t1;CYA7"		"possible guanylate or adenylate cyclase"
+Cre06.g267750	GMM:29.5.5	"protein.degradation.serine protease"	"Secretory pathway"	"GO:0006508;GO:0005515;GO:0004252"	"proteolysis;protein binding;serine-type endopeptidase activity"		"Cre06.g267750.t1.1;g6008.t1;Cre06.g267750.t1.1;g6008.t1"		
+Cre06.g257050	GMM:2.1.2.2	"major CHO metabolism.synthesis.starch.starch synthase"				GBS2	"GBS2;g5776.t1"	GBSS1B	"Granule bound starch synthase; GBSS-like protein; catalyses the transfer of a glucosyl moiety of the ADP-glc to the non-reducing end of a pre-existing alpha 1-4 linked chain. This sequence matches strongly the GBSSI sequences from higher plant. But it is highly different from the Chlamydomonas GBSSIA (STA2 gene), and there is no C-terminal extension."
+Cre06.g259476									
+Cre06.g278085									
+Cre06.g292950			Chloroplast	"GO:0006260;GO:0005634"	"DNA replication;nucleus"		"Cre06.g292950.t1.1;g6786.t1"		
+Cre06.g278168	GMM:34.99	transport.misc		GO:0005488	binding		"Cre13.g596730.t1.1;g6311.t1"		
+Cre06.g308350	GMM:29.4	"protein.postranslational modification"		GO:0016787	"hydrolase activity"		"PPP26;PPA1;g7138.t1;Cre06.g308350.t1.1;Cre06.g308350.t1.1;PPP26;PPA1;g7138.t1"		"serine/threonine protein phosphatase 2A;serine/threonine protein phosphatase 2A"
+Cre06.g263289			"Secretory pathway"	GO:0016765	"transferase activity, transferring alkyl or aryl (other than methyl) groups"		"Cre06.g263289.t1.1;g5915.t1;Cre06.g263289.t1.1;g5915.t1"		
+Cre06.g281850			Mitochondrion				"Cre06.g281850.t1.1;g6556.t1"		
+Cre06.g291750							"g6760.t1;g6760.t1"		
+Cre06.g308050			"Secretory pathway"				"g7132.t1;Cre06.g308050.t1.1"		
+Cre06.g268900			Mitochondrion				"Cre06.g268900.t1.1;g6032.t1"		
+Cre06.g256250	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF14	"TEF14;g5758.t1;Cre06.g256250.t1.1;Cre06.g256250.t1.1;TEF14;g5758.t1;TEF14;g5758.t1;Cre06.g256250.t1.1;TEF14;Cre06.g256250.t1.1;g5758.t1"	"TEF14;TEF14;TEF14;TEF14"	"Putative chloroplast thylakoid lumen protein conserved in Viridiplantae (see GI:7388292); present in thylakoid proteome [PMID: 17078018]. The restriction fragment used as Probe 99 in PMID: 11805055 overlaps this gene and the adjacent acetyltransferase. This gene matches the size of the mRNA (;Putative chloroplast thylakoid lumen protein conserved in Viridiplantae (see GI:7388292); present in thylakoid proteome [PMID: 17078018]. The restriction fragment used as Probe 99 in PMID: 11805055 overlaps this gene and the adjacent acetyltransferase. This gene matches the size of the mRNA (;Putative chloroplast thylakoid lumen protein conserved in Viridiplantae (see GI:7388292); present in thylakoid proteome [PMID: 17078018]. The restriction fragment used as Probe 99 in PMID: 11805055 overlaps this gene and the adjacent acetyltransferase. This gene matches the size of the mRNA (;Putative chloroplast thylakoid lumen protein conserved in Viridiplantae (see GI:7388292); present in thylakoid proteome [PMID: 17078018]. The restriction fragment used as Probe 99 in PMID: 11805055 overlaps this gene and the adjacent acetyltransferase. This gene matches the size of the mRNA ("
+Cre06.g307650			"Secretory pathway"				"g7124.t2;g7124.t2;g7124.t2;g7124.t2;g7124.t2;g7124.t2"		
+Cre06.g310250			Chloroplast				"Cre06.g310250.t1.1;g7178.t1"		
+Cre06.g299550							"g6928.t1;ZIP6;Cre06.g299550.t1.1"		
+Cre06.g301806						PHC76			
+Cre06.g294750	GMM:19.15	"tetrapyrrole synthesis.chlorophyll synthase"	Chloroplast	"GO:0016021;GO:0004659"	"integral component of membrane;prenyltransferase activity"	CHLG	"CHLG;Cre06.g294750.t1.1;g6822.t1"	CHLG1	"Chlorophyll synthetase, chloroplast precursor; ChlG; chlorophyll synthase [PMID: 15849308]; Predicted chloroplast transit peptide 1-43; UbiA prenyltransferase family protein; Interacts with petF [PMID: 28938113]"
+Cre06.g283700			Mitochondrion				"g6596.t1;Cre06.g283700.t1.1"		
+Cre06.g293750				GO:0046872	"metal ion binding"		"g6802.t2;Cre06.g293750.t1.1;Cre06.g293750.t1.1;g6802.t2"		
+Cre06.g250450	GMM:34.99	transport.misc	"Secretory pathway"	GO:0016020	membrane		"g5609.t1;Cre06.g250450.t1.1;g5609.t1;Cre06.g250450.t1.1;g5609.t1;Cre06.g250450.t1.1;Cre06.g250450.t1.1;g5609.t1"		
+Cre06.g278260	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"g6401.t1;Cre13.g601300.t1.1;g6401.t1;Cre13.g601300.t1.1;g6401.t1;Cre13.g601300.t1.1"		
+Cre06.g259950			Chloroplast				"g5843.t1;g5843.t1;g5843.t1;g5843.t1"		
+Cre06.g300400	GMM:29.5	protein.degradation					g6951.t1		
+Cre06.g278267			"Secretory pathway"				"g6408.t1;g6408.t1"		
+Cre06.g269100			Mitochondrion	GO:0008080	"N-acetyltransferase activity"		"NAT16;g6038.t1"		"Related to GCN5"
+Cre06.g252250							"MTP0428;g5648.t1"		"mt+ specific gene of unknown function;Has multiple full and partial copies on autosomal portions of Chromosome 6 (Cre06.g250550,Cre06.g249600,Cre06.g249555,Cre06.g249550)"
+Cre06.g265300			"Secretory pathway"			CSS2	"CSS2;g5958.t1;Cre06.g265300.t1.1"		"expressed protein of unknown function; the gene interrupts histone gene cluster XII, as does highly similar and linked CSS1"
+Cre06.g278143	GMM:10.1.6	"cell wall.precursor synthesis.GAE"				GAE	"GAE;g6288.t1;Cre13.g595650.t1.1;Cre13.g595650.t1.2;GAE;Cre13.g595650.t1.1;Cre13.g595650.t1.2;g6288.t1"	"GAE4;GAE4"	"likely localized to Golgi;likely localized to Golgi"
+Cre06.g278255			Chloroplast				"Cre13.g601050.t1.1;g6396.t1;Cre13.g601050.t1.1;g6396.t1"		
+Cre06.g296400	GMM:13.2.4.4	"amino acid metabolism.degradation.branched chain group.leucine"	Mitochondrion	"GO:0055114;GO:0050660;GO:0016627;GO:0008152;GO:0003995"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity, acting on the CH-CH group of donors;metabolic process;acyl-CoA dehydrogenase activity"		"g6855.t1;Cre06.g296400.t1.1"		
+Cre06.g279050			Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g6488.t1;Cre06.g279050.t1.1;g6488.t1;Cre06.g279050.t1.1"		
+Cre06.g255850			Chloroplast				"g5750.t1;Cre06.g255850.t1.1"		
+Cre06.g307950			Mitochondrion	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"		"bL9m;g7130.t1"	MRPL9	
+Cre06.g303000			Mitochondrion				"g7014.t1;g7014.t1;g7014.t1"		
+Cre06.g286850							"g6664.t1;g6664.t1;g6664.t1"		
+Cre06.g274200	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA6	"HTA42;Cre06.g274200.t1.1;g6150.t1"	HTA6	"replication linked H2A; histone gene cluster VI (type 34AB)"
+Cre06.g268000	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO10	"Cre06.g268000.t1.1;g6013.t1;HFO10"	HFO10	"replication linked H4; histone gene cluster X (type 34AB)"
+Cre06.g307750			"Secretory pathway"				"g7126.t1;Cre06.g307750.t1.1"		
+Cre06.g276950	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA1	"Cre06.g276950.t1.1;HTA24;g6208.t1"	HTA1	"replication linked H2A; histone gene cluster I (type 43BA)"
+Cre06.g258583			"Secretory pathway"				"g5814.t1;Cre06.g258583.t1.1;g5814.t1;Cre06.g258583.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre06.g286750			"Secretory pathway"	"GO:0003729;GO:0003723"	"mRNA binding;RNA binding"		"g6662.t1;Cre06.g286750.t1.1;Cre06.g286750.t1.1;g6662.t1;g6662.t1;Cre06.g286750.t1.1"		
+Cre06.g302400			Chloroplast			CSB31	"g7000.t1;CSB31;TNP17"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre06.g278123						VPS39	"g6269.t1;Cre13.g594700.t1.1;VPS39"	VPS39	"Conserved Protein, similar to VPS39 homologues, components of VPS-C complex"
+Cre06.g311800			"Secretory pathway"				g7212.t1		
+Cre06.g252576			Mitochondrion						
+Cre06.g295301									
+Cre06.g268350	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR9	"g6021.t1;HTR9;Cre06.g268350.t1.1"	HTR9	"replication linked H3; histone gene cluster IX (type 43AB)"
+Cre06.g280250			Chloroplast				"g6518.t1;Cre06.g280250.t1.1"		
+Cre06.g304350	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"		"GO:0005739;GO:0004129"	"mitochondrion;cytochrome-c oxidase activity"	COX12	"COX12;g7045.t1;Cre06.g304350.t1.1;Cre06.g304350.t1.1;g7045.t1;COX12"	"COX12;COX12"	"Cytochrome c oxidase COX12 (CoxVIb) subunit (16 kDa); gene termed COX12 in S. cerevisiae and other yeasts, but COX6B in H. sapiens & B. taurus. See also Genbank Acc. No. DQ401083 for prior naming as COX6B in Chlamydomonas sp.;;Cytochrome c oxidase COX12 (CoxVIb) subunit (16 kDa); gene termed COX12 in S. cerevisiae and other yeasts, but COX6B in H. sapiens & B. taurus. See also Genbank Acc. No. DQ401083 for prior naming as COX6B in Chlamydomonas sp.;"
+Cre06.g277050				"GO:0042273;GO:0030036;GO:0000055"	"ribosomal large subunit biogenesis;actin cytoskeleton organization;ribosomal large subunit export from nucleus"		g6210.t1		
+Cre06.g278302							g6467.t2		
+Cre06.g254300									
+Cre06.g284900	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"	"Secretory pathway"	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN20-1	"Cre06.g284900.t1.1;g6624.t1;ROC7;CYN20-1;CYN6"	CYN20A	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; secretory pathway; similar toROC7 (AtCYP20-1) and Cyp5 (AtCYP19-4)"
+Cre06.g289450							"g6717.t1;g6717.t1"		
+Cre06.g287450	"GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4"	"cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g6677.t1;g6677.t1;g6677.t1;g6677.t1;g6677.t1"		
+Cre06.g278172	GMM:31.4	"cell.vesicle transport"		"GO:0016192;GO:0016021"	"vesicle-mediated transport;integral component of membrane"				
+Cre06.g261950						ANK11	"ANK11;g5886.t1;Cre06.g261950.t1.1"		"protein of unknown function with ankyrin repeats"
+Cre06.g278350	"GMM:13.1.6.4.2;GMM:13.1.6.4.1"	"amino acid metabolism.synthesis.aromatic aa.tyrosine.prephenate dehydrogenase;amino acid metabolism.synthesis.aromatic aa.tyrosine.arogenate dehydrogenase / prephenate dehydrogenase"	Chloroplast	"GO:0055114;GO:0008977;GO:0006571;GO:0004665"	"oxidation-reduction process;prephenate dehydrogenase activity;tyrosine biosynthetic process;prephenate dehydrogenase (NADP+) activity"	AGD1	"AGD1;g6473.t1;g6473.t1;AGD1"	"AGD1;AGD1"	"putative arogenate/prephenate dehydrogenase, similarity to putative arogenate dehydrogenase from rice (GenBank BAD53632); predicted plastidic by Target-P and by homology;putative arogenate/prephenate dehydrogenase, similarity to putative arogenate dehydrogenase from rice (GenBank BAD53632); predicted plastidic by Target-P and by homology"
+Cre06.g249900	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"		"GO:0019205;GO:0006139;GO:0005524"	"nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding"	FAP75	"Cre06.g249900.t1.1;g5597.t1;g5597.t1;Cre06.g249900.t1.1;Cre06.g249900.t1.1;g5597.t1"	"FAP75;FAP75;FAP75"	"Flagellar Associated Protein containing P-loop; Found in the flagellar proteome; Null-allele mutant was isolated;Flagellar Associated Protein containing P-loop; Found in the flagellar proteome; Null-allele mutant was isolated;Flagellar Associated Protein containing P-loop; Found in the flagellar proteome; Null-allele mutant was isolated"
+Cre06.g267850			Mitochondrion			PLS1	"Cre06.g267850.t1.1;g6010.t1;PLS1"	PLS1	
+Cre06.g303300	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755"	"protein folding;peptidyl-prolyl cis-trans isomerase activity"	CYN37	"Cre06.g303300.t1.1;g7023.t1;g7023.t1;Cre06.g303300.t1.1;Cre06.g303300.t1.1;g7023.t1;g7023.t1;Cre06.g303300.t1.1"	"CYN37;CYN37;CYN37;CYN37"	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type [PMID: 15051864, PMID:15047905]; similar to At5g35100 (AtCYP28); possibly directed to chloroplast thylakoid lumen;Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type [PMID: 15051864, PMID:15047905]; similar to At5g35100 (AtCYP28); possibly directed to chloroplast thylakoid lumen;Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type [PMID: 15051864, PMID:15047905]; similar to At5g35100 (AtCYP28); possibly directed to chloroplast thylakoid lumen;Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type [PMID: 15051864, PMID:15047905]; similar to At5g35100 (AtCYP28); possibly directed to chloroplast thylakoid lumen"
+Cre06.g293400							"g6796.t1;Cre06.g293400.t1.1"		
+Cre06.g251800	GMM:28.1	"DNA.synthesis/chromatin structure"		GO:0005524	"ATP binding"	RFC4	"RFC4;g5639.t1;Cre06.g251800.t1.1"	RFC4	"Homologous to eukaryotic RFC4 (DNA replication factor C complex subunit 4); accessory protein of DNA polymerase"
+Cre06.g268300	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA9	"g6020.t1;Cre06.g268300.t1.1;HTA9"	HTA9	"replication linked H2A; histone gene cluster IX (type 43AB)"
+Cre06.g257700							"RAD18;g5793.t1;RAD18;g5793.t1;g5793.t1;RAD18;g5793.t1;RAD18;RAD18;g5793.t1"		"Found in basal body proteome as RAD18; Function prediction suggests that this may be a RAD18 DNA repair protein;Found in basal body proteome as RAD18; Function prediction suggests that this may be a RAD18 DNA repair protein;Found in basal body proteome as RAD18; Function prediction suggests that this may be a RAD18 DNA repair protein;Found in basal body proteome as RAD18; Function prediction suggests that this may be a RAD18 DNA repair protein;Found in basal body proteome as RAD18; Function prediction suggests that this may be a RAD18 DNA repair protein"
+Cre06.g269544									
+Cre06.g278199			Chloroplast				"g6342.t1;Cre13.g598250.t1.1"		
+Cre06.g302000	GMM:34.99	transport.misc				MFP31	"MFP1;MFP31;g6989.t1;g6989.t1;MFP31;MFP1;MFP31;g6989.t1;MFP1"		"Permease;Permease;Permease"
+Cre06.g278131			"Secretory pathway"				"Cre13.g595000.t1.1;g6276.t1;g6276.t1;Cre13.g595000.t1.1"		
+Cre06.g288150							"Cre06.g288150.t1.1;g6691.t1"		
+Cre06.g252150			Chloroplast				"g5646.t1;Cre06.g252150.t1.1;PGP6;g5646.t1;PGP6;Cre06.g252150.t1.1"		
+Cre06.g287700	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"STK18;STPK18;g6682.t1;g6682.t1;STPK18;STK18;STPK18;g6682.t1;STK18;STK18;STPK18;g6682.t1;STK18;STPK18;g6682.t1"		"Serine/Threonine Protein Kinase Homolog 18;Serine/Threonine Protein Kinase Homolog 18;Serine/Threonine Protein Kinase Homolog 18;Serine/Threonine Protein Kinase Homolog 18;Serine/Threonine Protein Kinase Homolog 18"
+Cre06.g292850			Chloroplast			CDC6	"Cre06.g292850.t1.1;g6784.t1"	CDC6	"Homologous to eukaryotic CDC6; AAA+ superfamily ATPase"
+Cre06.g272701									
+Cre06.g278451	GMM:30.1.2	"signalling.in sugar and nutrient physiology.pyruvate dehydrogenase kinase"	Mitochondrion			PDK2	"g6475.t1;Cre06.g278450.t1.2"	PDK2	"Inhibits pyruvate dehydrogenase by phosphorylation"
+Cre06.g295001			Mitochondrion				"Cre06.g295000.t1.3;g6829.t1"		
+Cre06.g306057			"Secretory pathway"				"g7090.t1;Cre06.g306057.t1.1"		
+Cre06.g297500			Chloroplast				g6881.t1		
+Cre06.g270300			Mitochondrion				g6065.t1		
+Cre06.g250700			Mitochondrion				g5615.t1		
+Cre06.g309600			Chloroplast				"g7163.t1;g7163.t1;g7163.t1;g7163.t1;g7163.t1;g7163.t1"		
+Cre06.g251350	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005515	"protein binding"		g5629.t1		
+Cre06.g266000	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"STK1;g5971.t1;Cre06.g266000.t1.1"		
+Cre06.g281050	GMM:29.3.4.3	"protein.targeting.secretory pathway.vacuole"		GO:0035091	"phosphatidylinositol binding"	VPS5A	"Cre06.g281050.t1.1;g6536.t1;VPS5A;g6536.t1;VPS5A;Cre06.g281050.t1.1"	"VPS5A;VPS5A"	"Expressed Protein. Similar to VPS5/SNX1, component of Retromer Coat complex involved in endosomal to Golgi trafficking.;Expressed Protein. Similar to VPS5/SNX1, component of Retromer Coat complex involved in endosomal to Golgi trafficking."
+Cre06.g268250	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB9	"g6019.t1;HTB9;Cre06.g268250.t1.1"	HTB9	"replication linked H2B; histone gene cluster IX (type 43AB)"
+Cre06.g269865			"Secretory pathway"				"Cre06.g269865.t1.1;g6055.t1;SMM18;SMM18;g6055.t1;Cre06.g269865.t1.1"		
+Cre06.g272950	GMM:29.2.1.2.1.18	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S18"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723"	"translation;ribosome;intracellular;structural constituent of ribosome;RNA binding"	RPS18	g6124.t1	RPS18	"Cytosolic 40S small ribosomal subunit protein S18"
+Cre06.g278240							"g6382.t1;Cre13.g600350.t2.1"		
+Cre06.g256950			Mitochondrion			SND1D	"Cre06.g256950.t1.1;SND1D;g5774.t1"		"contains divergent SAND domain"
+Cre06.g278237						CPLD34	"Cre13.g600200.t1.1;g6379.t1;CPLD34;CPLD34;g6379.t1;Cre13.g600200.t1.1;Cre13.g600200.t1.1;CPLD34;g6379.t1;Cre13.g600200.t1.1;CPLD34;g6379.t1"	"CPLD34;CPLD34;CPLD34;CPLD34"	"Plant-lineage-and-diatoms conserved protein with conserved carbohydrate/purine kinase, PfkB, conserved site;Plant-lineage-and-diatoms conserved protein with conserved carbohydrate/purine kinase, PfkB, conserved site;Plant-lineage-and-diatoms conserved protein with conserved carbohydrate/purine kinase, PfkB, conserved site;Plant-lineage-and-diatoms conserved protein with conserved carbohydrate/purine kinase, PfkB, conserved site"
+Cre06.g305900	GMM:29.7	protein.glycosylation				CPLD22	"UAA4;g7080.t1"	CPLD22	"UAA transporter"
+Cre06.g310700	"GMM:29.2.1.2.2.536;GMM:29.2.1.2.2.44"	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L36A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L44"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL36A	"RPL41;Cre06.g310700.t1.1;g7190.t2;RPL36a;g7190.t2;RPL41;Cre06.g310700.t1.1;RPL36a"	"RPL36A;RPL36A"	"component of cytosolic 80S ribosome and 60S large subunit; this gene has also been annotated as RPL41 (according to the nomenclature used for the yeast ribosomal subunits) and shown to be the site of the cycloheximide resistance mutation ACT2. See PMID: 11254126. Cytosolic 80S ribosomal protein L36a;component of cytosolic 80S ribosome and 60S large subunit; this gene has also been annotated as RPL41 (according to the nomenclature used for the yeast ribosomal subunits) and shown to be the site of the cycloheximide resistance mutation ACT2. See PMID: 11254126. Cytosolic 80S ribosomal protein L36a"
+Cre06.g294400	GMM:34.99	transport.misc		"GO:0016485;GO:0016021"	"protein processing;integral component of membrane"	NIS1	"NIS1;g6815.t1;NIS1;g6815.t1;g6815.t1;NIS1"	"NIS1;NIS1;NIS1"	"transmembrane glycoprotein, forms the gamma-secretase complex with presenilin, aph-1 and pen-2; involved in regulated intramembrane proteolysis of type I integral membrane proteins such as the amyloid precursor protein (APP) and Notch; null-allele passenger mutation was isolated (PMID 29743196);transmembrane glycoprotein, forms the gamma-secretase complex with presenilin, aph-1 and pen-2; involved in regulated intramembrane proteolysis of type I integral membrane proteins such as the amyloid precursor protein (APP) and Notch; null-allele passenger mutation was isolated (PMID 29743196);transmembrane glycoprotein, forms the gamma-secretase complex with presenilin, aph-1 and pen-2; involved in regulated intramembrane proteolysis of type I integral membrane proteins such as the amyloid precursor protein (APP) and Notch; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre06.g311150	GMM:34.99	transport.misc	Mitochondrion	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT20	"g7199.t1;MFT20;MFT20;g7199.t1"		"Similar to MFS-1 sugar transporter with Spinster-like transmembrane topology;Similar to MFS-1 sugar transporter with Spinster-like transmembrane topology"
+Cre06.g306400	GMM:17.5.1.1	"hormone metabolism.ethylene.synthesis-degradation.1-aminocyclopropane-1-carboxylate synthase"		"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"		"g7098.t1;Cre06.g306400.t1.1"		
+Cre06.g276500	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA2	"g6198.t1;HTA23;Cre06.g276500.t1.1"	HTA2	"replication linked H2A; histone gene cluster II (type 43BA)"
+Cre06.g249555							"Cre06.g249555.t1.1;g5590.t1"		
+Cre06.g278286			Mitochondrion						
+Cre06.g305100			"Secretory pathway"				"g7062.t1;g7062.t1"		
+Cre06.g298300	"GMM:35.1.5;GMM:27.3;GMM:1.3.13"	"not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;RNA.regulation of transcription;PS.calvin cycle.rubisco interacting"	Chloroplast			MRL1	"PPR2;g6900.t1;g6900.t1;PPR2;g6900.t1;PPR2"	"MRL1;MRL1;MRL1"	"PentatricoPeptide Repeat protein that stabilizes rbcL mRNA in the chloroplast;PentatricoPeptide Repeat protein that stabilizes rbcL mRNA in the chloroplast;PentatricoPeptide Repeat protein that stabilizes rbcL mRNA in the chloroplast"
+Cre06.g290800						RMG1	"g6741.t1;RMG1"	RMG1	
+Cre06.g274950	GMM:31.4	"cell.vesicle transport"					g6165.t1		
+Cre06.g298800			Mitochondrion			LTH5	"g6911.t1;LTH5;ARS73a"	ARS73A	"Belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox; Mutant at this locus was found that exhibited low ARS activity and failed to show increases in ECP76, LHCBM9, and HAP2 transcripts (among others) in response to S deprivation;"
+Cre06.g295050			"Secretory pathway"	GO:0005515	"protein binding"		g6830.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g274050	GMM:28.1.3	"DNA.synthesis/chromatin structure.histone"					"g6147.t1;g6147.t1"		
+Cre06.g271526									
+Cre06.g275900	GMM:28.1.3	"DNA.synthesis/chromatin structure.histone"		"GO:0006334;GO:0005634;GO:0003677;GO:0000786"	"nucleosome assembly;nucleus;DNA binding;nucleosome"	HON3	"g6185.t1;Cre06.g275900.t1.1;HON2"	HON3	"Histone H1 gene associated with replication linked histone gene cluster III; not H1A of Morris et al. 1990 [PMID: 2319488]. Likely H1B [PMID: 7480339]"
+Cre06.g278800	GMM:27.3.6	"RNA.regulation of transcription.basic helix-loop-helix family (bHLH)"	Mitochondrion	GO:0016021	"integral component of membrane"		"g6483.t1;Cre06.g278800.t1.1;g6483.t1;Cre06.g278800.t1.1;g6483.t1;Cre06.g278800.t1.1;g6483.t1;Cre06.g278800.t1.1"		
+Cre06.g311700			Mitochondrion			FAP349	"g7210.t1;Cre06.g311700.t1.1"	FAP349	
+Cre06.g283034			"Secretory pathway"				g6582.t1		
+Cre06.g291400				GO:0005524	"ATP binding"		"GAK2;g6753.t1;GALK2;GALK2;GAK2;g6753.t1"		"Galactokinase in the galacto- (EC:2.7.1.6), homoserine (EC:2.7.1.39), mevalonate (EC:2.7.1.36) and phosphomevalonate (EC:2.7.4.2) kinase (GHMP family);Galactokinase in the galacto- (EC:2.7.1.6), homoserine (EC:2.7.1.39), mevalonate (EC:2.7.1.36) and phosphomevalonate (EC:2.7.4.2) kinase (GHMP family)"
+Cre06.g299700	GMM:19.99	"tetrapyrrole synthesis.unspecified"				SOUL1	"SOUL1;Cre06.g299700.t1.1;g6931.t1"		
+Cre06.g262700	GMM:9.5	"mitochondrial electron transport / ATP synthesis.cytochrome c reductase"		"GO:0006122;GO:0005750"	"mitochondrial electron transport, ubiquinol to cytochrome c;mitochondrial respiratory chain complex III"	QCR7	"g5901.t1;g5901.t1;g5901.t1"	"QCR7;QCR7;QCR7"	"Ubiquinol-cytochrome c oxidoreductase (Complex III) 14 kDa protein (similar to bovine Complex III subunit VI (14 kDa), human subunit QCRB and yeast QCR7 subunit);;Ubiquinol-cytochrome c oxidoreductase (Complex III) 14 kDa protein (similar to bovine Complex III subunit VI (14 kDa), human subunit QCRB and yeast QCR7 subunit);;Ubiquinol-cytochrome c oxidoreductase (Complex III) 14 kDa protein (similar to bovine Complex III subunit VI (14 kDa), human subunit QCRB and yeast QCR7 subunit);"
+Cre06.g259200	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	"GTP binding"	EFS1	"SELB;EFS2;EFS1;g5827.t1"	SELB1	"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g295450	"GMM:13.2.5.2;GMM:13.2.5.1;GMM:1.2.6"	"amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;amino acid metabolism.degradation.serine-glycine-cysteine group.serine;PS.photorespiration.hydroxypyruvate reductase"	Mitochondrion	"GO:0055114;GO:0051287;GO:0016616;GO:0008152"	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process"	HPR1	"g6839.t1;HPR1;Cre06.g295450.t1.1;g6839.t1;Cre06.g295450.t1.1;HPR1"	"HPR1;HPR1"	"Hydroxypyruvate reductase, catalyzing the NADH-dependent conversion of hydroxypyruvate to glycerate; contains sequence nearly identical to Chlamydomonas HPR (GenBank AAW29979); predicted by Target-P to be organelle targeted;Hydroxypyruvate reductase, catalyzing the NADH-dependent conversion of hydroxypyruvate to glycerate; contains sequence nearly identical to Chlamydomonas HPR (GenBank AAW29979); predicted by Target-P to be organelle targeted"
+Cre06.g278245	"GMM:31.5.1;GMM:29.3.3"	"cell.cell death.plants;protein.targeting.chloroplast"	Chloroplast	"GO:0055114;GO:0051537;GO:0016491;GO:0010277"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"		"Cre13.g600650.t1.2;PAO9;Cre13.g600650.t1.1;g6387.t1"	PAO5	"Contains Rieske iron-sulfur cluster and PAO domains and transmembrane domain for attachment to thylakoid membrane; closely related to linked Cre06.g305650; belongs to the classical family of short chain dehydrogenases [PMID: 15180984]"
+Cre06.g277850									
+Cre06.g254213			Mitochondrion						
+Cre06.g252300	GMM:30.1.2	"signalling.in sugar and nutrient physiology.pyruvate dehydrogenase kinase"	Mitochondrion			PDK1	"g5649.t1;Cre06.g252300.t1.1"	PDK1	"Described in PMID: 118555; independent sequence (of the MT- allele): AF387365; C. incerta sequence: AY781412; closest human homolog is 3-methyl-2-oxobutanoate dehydrogenase [lipoamide] kinase"
+Cre06.g262950			Mitochondrion				"g5906.t1;g5906.t1;g5906.t1"		
+Cre06.g306007									
+Cre06.g254077			Chloroplast						
+Cre06.g261150	GMM:18.6.1	"Co-factor and vitamine metabolism.biotin.biotin synthase"	Mitochondrion	"GO:0051536;GO:0003824"	"iron-sulfur cluster binding;catalytic activity"	BIO2	"BIOB;g5871.t1;Cre06.g261150.t1.1;g5871.t1;Cre06.g261150.t1.1;BIOB;Cre06.g261150.t1.1;g5871.t1;BIOB"	"BIO2;BIO2;BIO2"	
+Cre06.g298450							"g6904.t1;Cre06.g298450.t1.1;g6904.t1;Cre06.g298450.t1.1"		
+Cre06.g263357			Chloroplast				"Cre06.g263357.t1.1;g5917.t1;Cre06.g263357.t1.1;g5917.t1"		
+Cre06.g278297									
+Cre06.g283750	"GMM:16.1.3.2;GMM:16.1.3"	"secondary metabolism.isoprenoids.tocopherol biosynthesis.homogentisate phytyltransferase;secondary metabolism.isoprenoids.tocopherol biosynthesis"	Chloroplast	"GO:0016021;GO:0004659"	"integral component of membrane;prenyltransferase activity"	HST1	"g6597.t1;HST1;Cre06.g283750.t1.1"	HST1	"putative homogentisate solanesyltransferase (homogentisate nonaprenyltransferase) (homogentisate polyprenyltransferase) (plastoquinone polyprenyltransferase)"
+Cre06.g261500			Chloroplast	GO:0005515	"protein binding"	CPLD58	"Cre06.g261500.t1.1;g5877.t1;g5877.t1;Cre06.g261500.t1.1"	"CPLD58;CPLD58"	
+Cre06.g300150	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion				"g6944.t1;g6944.t1;g6944.t1"		
+Cre06.g260650			"Secretory pathway"				g5857.t1		
+Cre06.g278229	"GMM:33.3;GMM:27.3.28"	"development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"Cre13.g599750.t1.1;g6371.t1"		
+Cre06.g301000	"GMM:30.6;GMM:30.2.9;GMM:29.4"	"signalling.MAP kinases;signalling.receptor kinases.leucine rich repeat IX;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre06.g301000.t1.1;g6964.t1;g6964.t1;Cre06.g301000.t1.1;g6964.t1;Cre06.g301000.t1.1"		
+Cre06.g278145			"Secretory pathway"				"Cre13.g595750.t1.1;g6290.t1"		
+Cre06.g278217			Mitochondrion				g6359.t1		
+Cre06.g282050			Mitochondrion				"g6560.t1;Cre06.g282050.t1.1"		
+Cre06.g254350			Mitochondrion	GO:0016020	membrane		g5722.t1		
+Cre06.g278275			Chloroplast						
+Cre06.g311050	"GMM:8.1.1.1;GMM:13.2.4.1"	"TCA / organic transformation.TCA.pyruvate DH.E1;amino acid metabolism.degradation.branched chain group.shared"	Mitochondrion	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"g7197.t1;Cre06.g311050.t1.1"		
+Cre06.g278293									
+Cre06.g286350			Mitochondrion	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	UMM6	"Cre06.g286350.t1.1;g6654.t1;UMM6"		"UbiE/COQ5 methyltransferase family"
+Cre06.g265000	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR13	"HTR13;Cre06.g265000.t1.1;g5952.t1"	HTR13	"Replication-linked Histone H3; histone gene cluster XIII (type 43AB)"
+Cre06.g256500			"Mitochondrion;Chloroplast"				"g5764.t2;Cre06.g256500.t1.1"		
+Cre06.g258600	GMM:26.1	misc.misc2	"Secretory pathway"				"Cre06.g258600.t1.1;g5815.t2"		
+Cre06.g263300	"GMM:31.1;GMM:29.3.5"	"cell.organisation;protein.targeting.peroxisomes"		"GO:0016559;GO:0005779"	"peroxisome fission;integral component of peroxisomal membrane"		"Cre06.g263300.t1.1;g5916.t1"		
+Cre06.g275350	"GMM:27.3.26;GMM:27.3.25"	"RNA.regulation of transcription.MYB-related transcription factor family;RNA.regulation of transcription.MYB domain transcription factor family"	Mitochondrion			ROC40	"g6174.t1;ROC40;ROC40;g6174.t1;g6174.t1;ROC40"	"ROC40;ROC40;ROC40"	"CCA1/LHY-like MYB protein, circadian clock associated transcription factor; Goncalves et al (2016) show that the mutant is impaired in lipid accumulation during N starvation;CCA1/LHY-like MYB protein, circadian clock associated transcription factor; Goncalves et al (2016) show that the mutant is impaired in lipid accumulation during N starvation;CCA1/LHY-like MYB protein, circadian clock associated transcription factor; Goncalves et al (2016) show that the mutant is impaired in lipid accumulation during N starvation"
+Cre06.g276100				GO:0005515	"protein binding"		"g6189.t1;Cre06.g276100.t1.1;g6189.t1;Cre06.g276100.t1.1"		
+Cre06.g261550			Mitochondrion				"Cre06.g261550.t1.1;g5878.t1"		
+Cre06.g300900	GMM:33.99	development.unspecified	Chloroplast	"GO:0016973;GO:0005643"	"poly(A)+ mRNA export from nucleus;nuclear pore"		"g6961.t1;g6961.t1"	"GLE1;GLE1"	"RNA export factor GLE1;RNA export factor GLE1"
+Cre06.g271600							g6095.t1		
+Cre06.g277801	GMM:28.2	DNA.repair		"GO:0006310;GO:0006281;GO:0005524;GO:0003910;GO:0003677"	"DNA recombination;DNA repair;ATP binding;DNA ligase (ATP) activity;DNA binding"	DNL7	"g6225.t1;DNL4;Cre06.g277800.t1.3;Cre06.g277800.t1.3;DNL4;g6225.t1;DNL4;g6225.t1;Cre06.g277800.t1.3"	"DNL7;DNL7;DNL7"	"ATP dependent DNA ligase, similar to DNL4, possibly also involved in non-homologous end joining (NHEJ); null-allele mutant was isolated (PMID 29743196);ATP dependent DNA ligase, similar to DNL4, possibly also involved in non-homologous end joining (NHEJ); null-allele mutant was isolated (PMID 29743196);ATP dependent DNA ligase, similar to DNL4, possibly also involved in non-homologous end joining (NHEJ); null-allele mutant was isolated (PMID 29743196)"
+Cre06.g263500			Chloroplast				"Cre06.g263500.t1.1;g5920.t1;Cre06.g263500.t1.1;g5920.t1;Cre06.g263500.t1.1;g5920.t1"		
+Cre06.g255450	GMM:31.2	cell.division		"GO:0051726;GO:0007049;GO:0006357;GO:0006351;GO:0005634"	"regulation of cell cycle;cell cycle;regulation of transcription from RNA polymerase II promoter;transcription, DNA-templated;nucleus"	MAT3	"g5741.t1;RB;RB;g5741.t1;RB;g5741.t1;RB;g5741.t1"	"MAT3;MAT3;MAT3;MAT3"	"Retinoblastoma (RB) tumor suppressor related protein; Genbank entry AF375824;Retinoblastoma (RB) tumor suppressor related protein; Genbank entry AF375824;Retinoblastoma (RB) tumor suppressor related protein; Genbank entry AF375824;Retinoblastoma (RB) tumor suppressor related protein; Genbank entry AF375824"
+Cre06.g276550	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB2	"HTB23;g6199.t1;Cre06.g276550.t1.1"	HTB2	"replication linked H2B; histone gene cluster II (type 43BA)"
+Cre06.g258850						EZY7	"g5820.t1;EZY7;Cre06.g258850.t1.1"	EZY7	"Early zygote expressed protein with homology to the stage V sporulation protein S in B. subtillis [PMID: 18487630]. Note that sequence of accession AB267734 differs from genomic sequence here, and may be due to strain differences"
+Cre06.g286700				GO:0005515	"protein binding"		"g6661.t1;Cre06.g286700.t1.1;Cre06.g286700.t1.1;g6661.t1"		
+Cre06.g288900									
+Cre06.g278121									
+Cre06.g301350			Chloroplast						
+Cre06.g283150							"g6585.t1;Cre06.g283150.t1.1"		
+Cre06.g249300	GMM:31.1	cell.organisation				ARP5	"ARP5;ARP4;Cre06.g249300.t1.1;g5584.t1;ARP4;ARP5;g5584.t1;Cre06.g249300.t1.1;ARP5;ARP4;Cre06.g249300.t1.1;g5584.t1"	"ARP5;ARP5;ARP5"	"ChromDB ARP3401; similar to the Arabidopsis ARP4 protein which is localized predominantly to the nucleus during interphase; may be involved in chromatin remodeling;ChromDB ARP3401; similar to the Arabidopsis ARP4 protein which is localized predominantly to the nucleus during interphase; may be involved in chromatin remodeling;ChromDB ARP3401; similar to the Arabidopsis ARP4 protein which is localized predominantly to the nucleus during interphase; may be involved in chromatin remodeling"
+Cre06.g309650			Mitochondrion				"g7164.t2;g7164.t2;g7164.t2;g7164.t2;g7164.t2;g7164.t2"		
+Cre06.g283800			Chloroplast				"Cre06.g283800.t1.1;g6598.t1"		
+Cre06.g297150	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"				RWP9	"g6875.t1;RWP9;g6875.t1;RWP9;RWP9;g6875.t1"		"putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor"
+Cre06.g278273			"Secretory pathway"						
+Cre06.g273400							"g6133.t1;TMC2;Cre06.g273400.t1.1"		
+Cre06.g280350				GO:0005515	"protein binding"		"g6520.t1;Cre06.g280350.t1.1;g6520.t1;Cre06.g280350.t1.1;Cre06.g280350.t1.1;g6520.t1;g6520.t1;Cre06.g280350.t1.1;g6520.t1;Cre06.g280350.t1.1"		
+Cre06.g278095	GMM:26.17	misc.dynamin					"g6239.t2;Cre13.g593350.t2.1;Cre13.g593350.t2.1;g6239.t2;g6239.t2;Cre13.g593350.t2.1"		
+Cre06.g265500	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR11B	"Cre06.g265500.t1.1;g5962.t1"	HTR11B	"replication linked H3; histone gene cluster XIB (type 43)"
+Cre06.g298850						LTH6	"Cre06.g298850.t1.1;g6913.t1;Cre06.g298850.t1.1;g6913.t1"	"LTH6;LTH6"	"Belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox;Belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox"
+Cre06.g304876			Chloroplast				g7057.t1		
+Cre06.g284950			Chloroplast				"g6625.t1;g6625.t1;g6625.t1;g6625.t1"		
+Cre06.g271750							"Cre06.g271750.t1.1;g6098.t1"		
+Cre06.g257600	GMM:31.6.1.2	cell.motility.eukaryotes.deflagellation				FA1	"g5790.t1;g5790.t1"	"FA1;FA1"	"Flagellar autotomy protein, required for pH-induced excision of flagella (gi:7671199); PMID: 18617;Flagellar autotomy protein, required for pH-induced excision of flagella (gi:7671199); PMID: 18617"
+Cre06.g301650			Chloroplast	GO:0030170	"pyridoxal phosphate binding"		"Cre06.g301650.t1.1;g6979.t1;g6979.t1;Cre06.g301650.t1.1"		
+Cre06.g253900			"Secretory pathway"						
+Cre06.g303350	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"				"g7024.t1;Cre06.g303350.t1.1;FAL9"		
+Cre06.g277200	"GMM:18.6.2;GMM:16.99"	"Co-factor and vitamine metabolism.biotin.Diaminopelargonic acid aminotransferase  and dethiobiotin synthetase;secondary metabolism.unspecified"	Mitochondrion	"GO:0030170;GO:0008483"	"pyridoxal phosphate binding;transaminase activity"	BIO1	"BIOA;g6213.t1;Cre06.g277200.t1.1;g6213.t1;Cre06.g277200.t1.1;BIOA"	"BIO1;BIO1"	"Adenosylmethionine-8-amino-7-oxononanoate aminotransferase;Adenosylmethionine-8-amino-7-oxononanoate aminotransferase"
+Cre06.g275450	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0005515;GO:0004672"	"protein phosphorylation;ATP binding;protein binding;protein kinase activity"		"g6176.t1;g6176.t1"		
+Cre06.g263850	GMM:34.8	"transport.metabolite transporters at the envelope membrane"	Chloroplast			TPT2	"g5929.t1;TPT2;PPT2;TPT20;TPT2;g5929.t1;TPT20;PPT2"		"related to Triose phosphate/phosphate translocator, non-green plastid, chloroplast precursor (CTPT); named PPT2 in gi:32815801;related to Triose phosphate/phosphate translocator, non-green plastid, chloroplast precursor (CTPT); named PPT2 in gi:32815801"
+Cre06.g278198	GMM:28.99	DNA.unspecified	Mitochondrion				"g6341.t1;Cre13.g598200.t1.1"		
+Cre06.g256300	"GMM:29.4;GMM:26.13"	"protein.postranslational modification;misc.acid and other phosphatases"	Mitochondrion	GO:0003824	"catalytic activity"		"g5759.t1;Cre06.g256300.t1.1;PBCP-LIKE;PPP20;g5759.t1;PPP20;PBCP-LIKE;Cre06.g256300.t1.1;g5759.t1;Cre06.g256300.t1.1;PBCP-LIKE;PPP20;Cre06.g256300.t1.1;PBCP-LIKE;g5759.t1;PPP20;PBCP-LIKE;PPP20;g5759.t1;Cre06.g256300.t1.1;PPP20;Cre06.g256300.t1.1;PBCP-LIKE;g5759.t1;PPP20;g5759.t1;PBCP-LIKE;Cre06.g256300.t1.1;PPP20;g5759.t1;Cre06.g256300.t1.1;PBCP-LIKE;g5759.t1;PPP20;PBCP-LIKE;Cre06.g256300.t1.1;g5759.t1;Cre06.g256300.t1.1;PBCP-LIKE;PPP20"	"PBCP2;PBCP2;PBCP2;PBCP2;PBCP2;PBCP2;PBCP2;PBCP2;PBCP2;PBCP2"	"Paralog of PBCP1 (Cre06.g257850), to which it is genetically linked;Paralog of PBCP1 (Cre06.g257850), to which it is genetically linked;Paralog of PBCP1 (Cre06.g257850), to which it is genetically linked;Paralog of PBCP1 (Cre06.g257850), to which it is genetically linked;Paralog of PBCP1 (Cre06.g257850), to which it is genetically linked;Paralog of PBCP1 (Cre06.g257850), to which it is genetically linked;Paralog of PBCP1 (Cre06.g257850), to which it is genetically linked;Paralog of PBCP1 (Cre06.g257850), to which it is genetically linked;Paralog of PBCP1 (Cre06.g257850), to which it is genetically linked;Paralog of PBCP1 (Cre06.g257850), to which it is genetically linked"
+Cre06.g265550	"GMM:30.3;GMM:29.4.1;GMM:29.4"	"signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005509;GO:0004672"	"protein phosphorylation;calcium ion binding;protein kinase activity"		"Cre06.g265550.t1.1;g5963.t1;Cre06.g265550.t1.1;g5963.t1;Cre06.g265550.t1.1;g5963.t1"	"CDPK12;CDPK12;CDPK12"	"Identified as CrCDPK12 in [PMID: 23936117];Identified as CrCDPK12 in [PMID: 23936117];Identified as CrCDPK12 in [PMID: 23936117]"
+Cre06.g255400	"GMM:33.99;GMM:27.1.1"	"development.unspecified;RNA.processing.splicing"		GO:0005515	"protein binding"		"Cre06.g255400.t1.1;g5740.t1"		
+Cre06.g298700							"Cre06.g298700.t1.1;g6909.t1;Cre06.g298700.t1.1;g6909.t1"		
+Cre06.g300550							"g6954.t1;Cre06.g300550.t1.1;g6954.t1;Cre06.g300550.t1.1"	"TIC100;TIC100"	"Forms with TIC20, TIC56 and TIC214 (Ycf1) the 1-MD complex mediating chlorolast protein import;;Forms with TIC20, TIC56 and TIC214 (Ycf1) the 1-MD complex mediating chlorolast protein import;"
+Cre06.g295500	GMM:26.28	"misc.GDSL-motif lipase"					"Cre06.g295500.t1.1;g6840.t1;Cre06.g295500.t1.1;g6840.t1"		
+Cre06.g284200	GMM:1.1.1.1	"PS.lightreaction.photosystem II.LHC-II"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCBM9	"Cre06.g284200.t1.1;g6608.t1;Cre06.g284200.t1.1;g6608.t1"	"LHCBM9;LHCBM9"	
+Cre06.g296912									
+Cre06.g295700	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006260;GO:0005524;GO:0003677"	"DNA replication;ATP binding;DNA binding"	MCM3	"g6844.t1;g6844.t1"	"MCM3;MCM3"	"Homologous to MCM3 DNA replication protein;Homologous to MCM3 DNA replication protein"
+Cre06.g298000			Chloroplast				g6893.t1		
+Cre06.g289700				"GO:0006888;GO:0005801"	"ER to Golgi vesicle-mediated transport;cis-Golgi network"	BET5	"BET5;Cre06.g289700.t1.1;g6722.t1"	BET5	"Expressed Protein. Conserved protein similar to BET5, a component of the TRAPP complex involved in ER to Golgi vesicle transport."
+Cre06.g296750	"GMM:5;GMM:1.1.7.1"	"fermentation;PS.lightreaction.hydrogenase.FeFe-hydrogenase"	Chloroplast	"GO:0051536;GO:0005525;GO:0003824"	"iron-sulfur cluster binding;GTP binding;catalytic activity"	HYDEF1	"HYDEF;g6862.t1;Cre06.g296750.t1.1;HYDEF;Cre06.g296750.t1.1;g6862.t1"	"HYDEF1;HYDEF1"	"Iron hydrogenase assembly protein, contains domains homologous to prokaryotic HydE and HydF; radical SAM domain present in N-terminal region. [PMID: 15082711]; maturation factor required for biosynthesis of [FeFe]-hydrogenase active site;;Iron hydrogenase assembly protein, contains domains homologous to prokaryotic HydE and HydF; radical SAM domain present in N-terminal region. [PMID: 15082711]; maturation factor required for biosynthesis of [FeFe]-hydrogenase active site;"
+Cre06.g282300			Mitochondrion				"g6566.t1;Cre06.g282300.t1.1"		
+Cre06.g308600			Chloroplast				"g7143.t1;Cre06.g308600.t1.1"		
+Cre06.g257351			"Secretory pathway"				"Cre06.g257350.t1.3;g5784.t1"		
+Cre06.g284650			Chloroplast	"GO:0004725;GO:0004721"	"protein tyrosine phosphatase activity;phosphoprotein phosphatase activity"	MKP6	"g6618.t1;Cre06.g284650.t1.1;MKP6"		"MAP kinase phosphatase 6 (Dual Specificity Protein Phosphatase 6) (DSP6); Dephosphorylates phosphotyrosine, phosphoserine, and phosphothreonine residues"
+Cre06.g255626									
+Cre06.g263602	GMM:29.3.5	protein.targeting.peroxisomes	"Secretory pathway"	"GO:0008270;GO:0008022;GO:0006625;GO:0005779"	"zinc ion binding;protein C-terminus binding;protein targeting to peroxisome;integral component of peroxisomal membrane"			PEX12	"Peroxisome assembly protein 12; Orthologous to Peroxin-12 (AT3G04460) in Arabidopsis thaliana"
+Cre06.g297600				GO:0010181	"FMN binding"		"Cre06.g297600.t1.1;g6884.t1;g6884.t1;Cre06.g297600.t1.1"		
+Cre06.g253300	GMM:29.5.11	protein.degradation.ubiquitin		"GO:0006511;GO:0005622;GO:0004843"	"ubiquitin-dependent protein catabolic process;intracellular;thiol-dependent ubiquitin-specific protease activity"		"Cre06.g253300.t1.1;UBCH1;g5677.t1"		
+Cre06.g268650	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP279	g6027.t1	FAP279	"Found in the flagellar proteome; Transcript upregulated during flagellar regeneration"
+Cre06.g278128							"Cre13.g594900.t1.2;g6274.t1;Cre13.g594900.t1.1"		
+Cre06.g254800	"GMM:27.4;GMM:27.1.1"	"RNA.RNA binding;RNA.processing.splicing"		GO:0003676	"nucleic acid binding"		"g5730.t1;Cre06.g254800.t1.1;SPL15"		"Nuclear pre-mRNA splicing factor, component of splicing factor 3b"
+Cre06.g278104			Chloroplast				"Cre13.g593750.t1.2;Cre13.g593750.t1.1;g6247.t1;Cre13.g593750.t1.2;Cre13.g593750.t1.1;g6247.t1"		
+Cre06.g308850	GMM:29.2.3	protein.synthesis.initiation		"GO:0005852;GO:0005737;GO:0003743"	"eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity"	EIF3X	"g7147.t1;EIF3X;Cre06.g308850.t1.1"	EIF3X	
+Cre06.g269601				GO:2001070	"starch binding"		g6049.t1		
+Cre06.g278236			Mitochondrion	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"g6378.t1;Cre13.g600150.t1.2;Cre13.g600150.t1.1;UMM12"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre06.g290000	GMM:27.3.30	"RNA.regulation of transcription.triple-helix transcription factor family (Trihelix)"	"Secretory pathway"			GIP1	"GIP1;g6728.t1;GIP1;g6728.t1"	"GIP1;GIP1"	
+Cre06.g290350							"g6735.t1;Cre06.g290350.t1.1"		
+Cre06.g278211			Chloroplast				"g6353.t1;Cre13.g598800.t1.2;Cre13.g598800.t1.1;Cre13.g598800.t1.2;g6353.t1;Cre13.g598800.t1.1"		
+Cre06.g280550	"GMM:27.4;GMM:27.3.12"	"RNA.RNA binding;RNA.regulation of transcription.C3H zinc finger family"		GO:0003676	"nucleic acid binding"		g6526.t1		
+Cre06.g301800			"Secretory pathway"			MFT19	"g6983.t2;MFT19"		Permease
+Cre06.g269950	"GMM:31.2;GMM:29.5.11.20"	"cell.division;protein.degradation.ubiquitin.proteasom"		"GO:0009378;GO:0006310;GO:0006281;GO:0005524"	"four-way junction helicase activity;DNA recombination;DNA repair;ATP binding"	CDC48	"CDC48;NSG14;Cre06.g269950.t1.1;EZY21;g6057.t1;EZY21;g6057.t1;CDC48;NSG14;Cre06.g269950.t1.1"	"CDC48;CDC48"	"Protein involved in ubiquitin-dependent degradation of ER-bound substrates; Conserved AAA domain; Flagellar Associated Protein; higher plant homologue is involved in formation of ER in the cell division plane during cytokinesis (PMID: 12427991); CDC48 (p97) functions as an hexameric complex presenting ER-bound substrates either to the ubiquitination machinery (Ufd2) for degradation, or to Ufd3 and deubiquitiating enzymes for repair and recycling (PMID: 16793541);Protein involved in ubiquitin-dependent degradation of ER-bound substrates; Conserved AAA domain; Flagellar Associated Protein; higher plant homologue is involved in formation of ER in the cell division plane during cytokinesis (PMID: 12427991); CDC48 (p97) functions as an hexameric complex presenting ER-bound substrates either to the ubiquitination machinery (Ufd2) for degradation, or to Ufd3 and deubiquitiating enzymes for repair and recycling (PMID: 16793541)"
+Cre06.g290050			"Secretory pathway"				"g6729.t1;Cre06.g290050.t1.1;g6729.t1;Cre06.g290050.t1.1"		
+Cre06.g263100							"g5910.t1;g5910.t1;g5910.t1"		
+Cre06.g282550							"g6571.t1;Cre06.g282550.t1.1"		
+Cre06.g279750	GMM:29.5.7	protein.degradation.metalloprotease				MAP1A	"Cre06.g279750.t1.1;g6504.t1"	MAP1A	"Involved in N-terminal maturation of proteins; cytosolic; MetAP1, Peptidase M"
+Cre06.g300800	"GMM:29.2.1.99.2.27;GMM:29.2.1.1.1.2.27"	"protein.synthesis.ribosomal protein.unknown.large subunit.L27;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L27"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPL27	"g6959.t1;Cre06.g300800.t1.1"	PRPL27	"imported to chloroplast; Chloroplast large ribosomal subunit protein L27"
+Cre06.g257450	"GMM:34.1.1.2;GMM:34.1.1"	"transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit C;transport.p- and v-ATPases.H+-transporting two-sector ATPase"	Mitochondrion	"GO:0033177;GO:0015991;GO:0015078"	"proton-transporting two-sector ATPase complex, proton-transporting domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVL1	"g5786.t1;Cre06.g257450.t1.1;ATPvL1;g5786.t1;Cre06.g257450.t1.1;ATPvL1;Cre06.g257450.t1.1;g5786.t1;ATPvL1;g5786.t1;Cre06.g257450.t1.1;ATPvL1;Cre06.g257450.t1.1;ATPvL1;g5786.t1;Cre06.g257450.t1.1;ATPvL1;g5786.t1;Cre06.g257450.t1.1;ATPvL1;g5786.t1;g5786.t1;ATPvL1;Cre06.g257450.t1.1"	"ATPVL1;ATPVL1;ATPVL1;ATPVL1;ATPVL1;ATPVL1;ATPVL1;ATPVL1"	"vacuolar H(+)-ATPase V0 sector, c/c' subunits, vacuolar ATP synthase 16 kDa proteolipid subunit;vacuolar H(+)-ATPase V0 sector, c/c' subunits, vacuolar ATP synthase 16 kDa proteolipid subunit;vacuolar H(+)-ATPase V0 sector, c/c' subunits, vacuolar ATP synthase 16 kDa proteolipid subunit;vacuolar H(+)-ATPase V0 sector, c/c' subunits, vacuolar ATP synthase 16 kDa proteolipid subunit;vacuolar H(+)-ATPase V0 sector, c/c' subunits, vacuolar ATP synthase 16 kDa proteolipid subunit;vacuolar H(+)-ATPase V0 sector, c/c' subunits, vacuolar ATP synthase 16 kDa proteolipid subunit;vacuolar H(+)-ATPase V0 sector, c/c' subunits, vacuolar ATP synthase 16 kDa proteolipid subunit;vacuolar H(+)-ATPase V0 sector, c/c' subunits, vacuolar ATP synthase 16 kDa proteolipid subunit"
+Cre06.g278288			Chloroplast						
+Cre06.g281526			"Secretory pathway"	GO:0005515	"protein binding"		"g6548.t1;Cre06.g281526.t1.1;Cre06.g281526.t1.1;g6548.t1"		
+Cre06.g258350			Chloroplast				g5807.t1		
+Cre06.g278178							"Cre13.g597200.t1.1;Cre13.g597200.t1.2;g6321.t1"		
+Cre06.g296500							"Cre06.g296500.t1.1;g6857.t1"		
+Cre06.g269300						CGL120	"Cre06.g269300.t1.1;g6042.t1"	CGL120	"Also present in some bacteria; contains DUF1365 domain"
+Cre06.g307850							"g7128.t1;Cre06.g307850.t1.1"		
+Cre06.g303100				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g7016.t1;Cre06.g303100.t1.1;g7016.t1;Cre06.g303100.t1.1;Cre06.g303100.t1.1;g7016.t1;Cre06.g303100.t1.1;g7016.t1;Cre06.g303100.t1.1;g7016.t1;Cre06.g303100.t1.1;g7016.t1;g7016.t1;Cre06.g303100.t1.1;Cre06.g303100.t1.1;g7016.t1"		
+Cre06.g306950	"GMM:33.99;GMM:29.4"	"development.unspecified;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"STK15;STPK15;g7110.t1;STPK15;STK15;g7110.t1;g7110.t1;STPK15;STK15;g7110.t1;STK15;STPK15;STPK15;g7110.t1;STK15;g7110.t1;STK15;STPK15;g7110.t1;STPK15;STK15;STK15;g7110.t1;STPK15"		"Serine/Threonine Protein Kinase Homolog 15;Serine/Threonine Protein Kinase Homolog 15;Serine/Threonine Protein Kinase Homolog 15;Serine/Threonine Protein Kinase Homolog 15;Serine/Threonine Protein Kinase Homolog 15;Serine/Threonine Protein Kinase Homolog 15;Serine/Threonine Protein Kinase Homolog 15;Serine/Threonine Protein Kinase Homolog 15"
+Cre06.g278184	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		GO:0005515	"protein binding"		"Cre13.g597500.t1.2;g6327.t1;Cre13.g597500.t1.1;Cre13.g597500.t1.2;Cre13.g597500.t1.1;g6327.t1"		
+Cre06.g254850							"g5731.t1;g5731.t1;g5731.t1;g5731.t1"		
+Cre06.g251716			Mitochondrion				"g5637.t1;Cre06.g251700.t1.2;g5637.t1;Cre06.g251700.t1.2"		
+Cre06.g294450	GMM:3.5	"minor CHO metabolism.others"	Chloroplast				"AKR6;g6816.t1"		"Possible 2,5-didehydrogluconate activity"
+Cre06.g262350			Mitochondrion				"Cre06.g262350.t1.1;g5894.t1;Cre06.g262350.t1.1;g5894.t1;g5894.t1;Cre06.g262350.t1.1;Cre06.g262350.t1.1;g5894.t1"		
+Cre06.g250100	"GMM:29.6.2.3;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat"	Chloroplast			HSP70B	"g5601.t1;Cre06.g250100.t1.1;g5601.t1;Cre06.g250100.t1.1"	"HSP70B;HSP70B"	"HSP70B is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; HSP70B is localized to the chloroplast, there mainly to the stroma, but also to thylakoid and low density membranes; HSP70B is inducible by heat shock and light; it interacts with the GrpE-type nucleotide exchange factor CGE1 in an ATP-sensitive manner; HSP70B also interacts with HSP90C; HSP70B by an unknown mechanism protects PSII from photodamage and improves the repair of photodamaged PSII; with its cochaperone CDJ2, HSP70B interact;HSP70B is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; HSP70B is localized to the chloroplast, there mainly to the stroma, but also to thylakoid and low density membranes; HSP70B is inducible by heat shock and light; it interacts with the GrpE-type nucleotide exchange factor CGE1 in an ATP-sensitive manner; HSP70B also interacts with HSP90C; HSP70B by an unknown mechanism protects PSII from photodamage and improves the repair of photodamaged PSII; with its cochaperone CDJ2, HSP70B interact"
+Cre06.g260850			Chloroplast	GO:0032040	"small-subunit processome"	NOP14	"g5862.t1;Cre06.g260850.t1.1;NOP14"	NOP14	"Nucleolar protein required for nuclear export of 40S ribosomal subunits; homologue of the yeast NOP14 protein"
+Cre06.g278950							"g6486.t1;g6486.t1;g6486.t1;g6486.t1;g6486.t1;g6486.t1"		
+Cre06.g276850	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR1	"HTR24;g6206.t1;Cre06.g276850.t1.1"	HTR1	"replication linked H3; histone gene cluster I (type 43BA)"
+Cre06.g306726							g7105.t1		
+Cre06.g277450							"g6218.t1;Cre06.g277450.t1.1"		
+Cre06.g268750	GMM:8.2.10	"TCA / organic transformation.other organic acid transformations.malic"	Mitochondrion	"GO:0055114;GO:0051287;GO:0004471"	"oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity"	MME1	"MME;g6029.t1;Cre06.g268750.t1.1;Cre06.g268750.t1.1;MME;g6029.t1;MME;g6029.t1;Cre06.g268750.t1.1"	"MME1;MME1;MME1"	"Malic enzyme, NAD-dependent (EC 1.1.1.39); malate dehydrogenase (decarboxylating); probable mitochondrial location based on Target-P prediction;Malic enzyme, NAD-dependent (EC 1.1.1.39); malate dehydrogenase (decarboxylating); probable mitochondrial location based on Target-P prediction;Malic enzyme, NAD-dependent (EC 1.1.1.39); malate dehydrogenase (decarboxylating); probable mitochondrial location based on Target-P prediction"
+Cre06.g310576			Chloroplast						
+Cre06.g298950			"Secretory pathway"				"g6916.t1;Cre06.g298950.t1.1;g6916.t1;Cre06.g298950.t1.1"		
+Cre06.g272760			Mitochondrion				"Cre06.g272760.t1.1;g6120.t1"		
+Cre06.g278283			Chloroplast						
+Cre06.g285500			Chloroplast				g6636.t1		
+Cre06.g278090	"GMM:29.2.1.1.3.2.1;GMM:29.2.1.1.1.2.1"	"protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L1;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L1"	Mitochondrion			MRPL1	"Cre13.g593100.t1.1;Cre13.g593100.t1.2;g6234.t1;MRPL1"	MRPL1	
+Cre06.g273150				"GO:0032259;GO:0008168"	"methylation;methyltransferase activity"		"g6128.t1;Cre06.g273150.t1.1;RRM4"	RRM4	"in the RrmJ/FtsJ family; possible RNA 2'-O-ribose methyltransferase"
+Cre06.g278138			Chloroplast			OPR119		OPR119	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; a pseudogene in CC-4532"
+Cre06.g250600			"Secretory pathway"						
+Cre06.g311300			Mitochondrion				g7202.t1		
+Cre06.g268200	GMM:34.99	transport.misc	Mitochondrion	"GO:0043190;GO:0006810"	"ATP-binding cassette (ABC) transporter complex;transport"	TGD1	"TGD1;g6017.t1;Cre06.g268200.t1.1;g6017.t1;TGD1;Cre06.g268200.t1.1"	"TGD1;TGD1"	"Similar to permease domain of putative lipid transfer machine;Similar to permease domain of putative lipid transfer machine"
+Cre06.g285700			"Secretory pathway"				"Cre06.g285700.t1.1;g6640.t1"		
+Cre06.g278109			Chloroplast	GO:0006629	"lipid metabolic process"		"Cre13.g593950.t1.1;FAD2B;g6252.t1;g6252.t1;Cre13.g593950.t1.1;FAD2B;g6252.t1;FAD2B;Cre13.g593950.t1.1;g6252.t1;Cre13.g593950.t1.1;FAD2B"		
+Cre06.g259850	GMM:29.2.1.1.4.2	"protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit"	Chloroplast			PRPL29	"Cre06.g259850.t1.1;g5841.t1;g5841.t1;Cre06.g259850.t1.1"	"PRPL29;PRPL29"	
+Cre06.g293200			Mitochondrion				g6791.t1		
+Cre06.g256550							g5766.t1		
+Cre06.g302426									
+Cre06.g264800	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB14	"Cre06.g264800.t1.1;HTB14;g5948.t1"	HTB14	"replication linked H2B ; histone gene cluster XIV (type 43AB)"
+Cre06.g307350	"GMM:30.5;GMM:3.5;GMM:27.3.99"	"signalling.G-proteins;minor CHO metabolism.others;RNA.regulation of transcription.unclassified"		GO:0005096	"GTPase activator activity"		"g7118.t1;g7118.t1"		
+Cre06.g257800	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0006260;GO:0003887;GO:0003677"	"DNA replication;DNA-directed DNA polymerase activity;DNA binding"	POL1-1	"POL1-1;POL1B;g5795.t1;POL1B;g5795.t1;POL1-1"	"POL1B;POL1B"	"Homologous to E. coli PolI-like DNA polymerase; POLA family DNA polymerase; probably functions in mitochondria and/or chloroplast.;Homologous to E. coli PolI-like DNA polymerase; POLA family DNA polymerase; probably functions in mitochondria and/or chloroplast."
+Cre06.g303751			"Secretory pathway"				"g7034.t1;g7034.t1"		
+Cre06.g275650	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0042176;GO:0030234;GO:0005515;GO:0000502"	"regulation of protein catabolic process;enzyme regulator activity;protein binding;proteasome complex"	RPN3	"RPN3;Cre06.g275650.t1.1;g6180.t1"	RPN3	"26S proteasome regulatory complex, lid subcomplex, non-ATPase subunit RPN3 (subunit 3) (PSD3) (PSMD3)"
+Cre06.g305650	"GMM:31.5.1;GMM:29.3.3;GMM:26.30"	"cell.cell death.plants;protein.targeting.chloroplast;misc.other Ferredoxins and Rieske domain"	Mitochondrion	"GO:0055114;GO:0051537;GO:0016491;GO:0010277"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"		"Tic55-like4;PAO6;TIC55-4;g7075.t1;Cre06.g305650.t1.1"		"Contains Rieske iron-sulfur cluster and PAO domains and transmembrane domain for attachment to thylakoid membrane; closely related to linked Cre06.g278245; belongs to the classical family of short chain dehydrogenases [PMID: 15180984]"
+Cre06.g293350									
+Cre06.g261650	"GMM:29.6.1;GMM:29.6"	"protein.folding.prefoldin and trigger factor;protein.folding"		"GO:0016272;GO:0006457"	"prefoldin complex;protein folding"	PFD1	"g5880.t1;PFD3;PFD1;g5880.t1;PFD1;PFD3"	"PFD3;PFD3"	"beta-type subunit of molecular chaperone Prefoldin (PMID: 11599560);has two coiled-coil domains separated by beta-sheet; stabilizes polypeptide chains prior to folding within CCT chaperonin, in particular tubulin;beta-type subunit of molecular chaperone Prefoldin (PMID: 11599560);has two coiled-coil domains separated by beta-sheet; stabilizes polypeptide chains prior to folding within CCT chaperonin, in particular tubulin"
+Cre06.g303171			Mitochondrion				"Cre06.g303171.t1.1;g7018.t1;g7018.t1;Cre06.g303171.t1.1;g7018.t1;Cre06.g303171.t1.1"		
+Cre06.g304500	GMM:31.7.1	cell.development.zygote	"Secretory pathway"	GO:0005515	"protein binding"	ZYS4	"ZYS4;g7049.t1;ZYS3-2;EZY9;Cre06.g304500.t1.1;ZYS3-2;g7049.t1;ZYS4;EZY9;Cre06.g304500.t1.1;Cre06.g304500.t1.1;ZYS4;EZY9;g7049.t1;ZYS3-2"	"ZYS4;ZYS4;ZYS4"	"Very similar to ZYS3, a zygote-specific protein [PMID: 10069826]; partial sequence contains ankyrin repeats;Very similar to ZYS3, a zygote-specific protein [PMID: 10069826]; partial sequence contains ankyrin repeats;Very similar to ZYS3, a zygote-specific protein [PMID: 10069826]; partial sequence contains ankyrin repeats"
+Cre06.g278253			Mitochondrion				"Cre13.g600950.t1.1;g6394.t1"		
+Cre06.g253852									
+Cre06.g269752			Chloroplast	"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRX15	"Cre06.g269750.t1.3;Cre06.g269752.t1.1;g6052.t1;TRXm;TRX15;TRX15;TRXm;g6052.t1;Cre06.g269750.t1.3;Cre06.g269752.t1.1;Cre06.g269752.t1.1;Cre06.g269750.t1.3;TRXm;g6052.t1;TRX15"	"TRXM1;TRXM1;TRXM1"	
+Cre06.g282450	"GMM:26.7;GMM:13.2.2.2"	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"	Mitochondrion	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PHX11	"PFH18;PHX11;Cre06.g282450.t1.1;g6569.t1"		"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate"
+Cre06.g292000	GMM:31.4	"cell.vesicle transport"		"GO:0006886;GO:0005622"	"intracellular protein transport;intracellular"		g6765.t1		
+Cre06.g251100	GMM:29.4	"protein.postranslational modification"		"GO:0006499;GO:0004379"	"N-terminal protein myristoylation;glycylpeptide N-tetradecanoyltransferase activity"	NMT1	"NMT1;Cre06.g251100.t1.1;g5624.t1;NMT1;Cre06.g251100.t1.1;g5624.t1;g5624.t1;Cre06.g251100.t1.1;NMT1;g5624.t1;Cre06.g251100.t1.1;NMT1;g5624.t1;Cre06.g251100.t1.1;NMT1"	"NMT1;NMT1;NMT1;NMT1;NMT1"	"putative N-myristoyl transferase, partial cds; involved in N-terminal myristoylation of cytosolic proteins;putative N-myristoyl transferase, partial cds; involved in N-terminal myristoylation of cytosolic proteins;putative N-myristoyl transferase, partial cds; involved in N-terminal myristoylation of cytosolic proteins;putative N-myristoyl transferase, partial cds; involved in N-terminal myristoylation of cytosolic proteins;putative N-myristoyl transferase, partial cds; involved in N-terminal myristoylation of cytosolic proteins"
+Cre06.g253759			"Secretory pathway"				"g5701.t1;EZY2B"		"Encodes a predicted chloroplast protein with no recognizable domains or similarity, and its mRNA is zygote specific;One of six copies of the EZY2 gene in the mt+ locus (Cre06.g253750,Cre06.g253759,Cre06.g253800,Cre06.g253902,Cre06.g254052);Proposed to be involved in uniparental chloroplast DNA inheritance"
+Cre06.g294800			"Secretory pathway"	GO:0016021	"integral component of membrane"	CPLD37	g6824.t1	CPLD37	"Conserved in the Plant Lineage and Diatoms; similar to Arabidopsis protein predicted to be an inner envelope membrane transporter"
+Cre06.g253566			"Secretory pathway"						
+Cre06.g253755							"MT0618;OTU2a;g5697.t1;155027"		
+Cre06.g305000			Chloroplast	GO:0005515	"protein binding"		"Cre06.g305000.t1.1;g7060.t1;g7060.t1;Cre06.g305000.t1.1;g7060.t1;Cre06.g305000.t1.1"		
+Cre06.g305302									
+Cre06.g309826	GMM:31.6.1.11	cell.motility.eukaryotes.other				MOT2	g7169.t1		
+Cre06.g296950	"GMM:27.3.99;GMM:27.3.63"	"RNA.regulation of transcription.unclassified;RNA.regulation of transcription.PHD finger transcription factor"	Mitochondrion				g6870.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g295150							"g6832.t1;g6832.t1"		
+Cre06.g279474						MUT68	g6498.t1	MUT68	"Class-I RNA nucleotidyl transferase (noncanonical Poly-A polymerase, ncPAP); acts as a TUTase, adding untemplated uridines to the 3' end of miRNA and siRNA, stimulating their degradation by exosome subunit RRP6; has orthologs in Chlorophyceae only; closely related to PAP6 and PAP10"
+Cre06.g278585			Mitochondrion				"g6478.t1;Cre06.g278585.t1.1;Cre06.g278585.t1.1;g6478.t1"		
+Cre06.g278158	GMM:2.1	"major CHO metabolism.synthesis"				PRL3	"g6301.t1;g6301.t1"		
+Cre06.g291800	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0016021;GO:0004659"	"integral component of membrane;prenyltransferase activity"	COQ2	"g6761.t1;Cre06.g291800.t1.1;COQ2;COQ2;g6761.t1;Cre06.g291800.t1.1;COQ2;Cre06.g291800.t1.1;g6761.t1"	"COQ2;COQ2;COQ2"	"para-hydroxybenzoate-polyprenyltransferase, mitochondrial precursor; UbiA homolog;para-hydroxybenzoate-polyprenyltransferase, mitochondrial precursor; UbiA homolog;para-hydroxybenzoate-polyprenyltransferase, mitochondrial precursor; UbiA homolog"
+Cre06.g267200	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"				NUO21	"Cre06.g267200.t1.1;g5996.t1"	NUO21	"NADH:ubiquinone oxidoreductase (Complex I) subunit, mitochondrial; gi 34334028 gb AAQ64641.1; Ortholog to NDUFB1 in Homo sapiens;"
+Cre06.g276450	GMM:24.1	"biodegradation of xenobiotics.hydroxyacylglutathione hydrolase"	"Secretory pathway"	"GO:0019243;GO:0004416"	"methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione;hydroxyacylglutathione hydrolase activity"		g6197.t2		
+Cre06.g308300	GMM:31.6.1.11	cell.motility.eukaryotes.other		"GO:0032259;GO:0008168"	"methylation;methyltransferase activity"		"Cre06.g308300.t1.1;g7137.t1;RRM6"	RRM6	
+Cre06.g278242				GO:0005739	mitochondrion		"g6384.t1;DC11"	SDHAF3	"Part of a bicistronically-expressed pair of genes (TOM9 and SDHAF3) that is widely conserved in green algae"
+Cre06.g268850			Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g6031.t2		
+Cre06.g251951	"GMM:27.1.3.11;GMM:27.1"	"RNA.processing.3' end processing.Pfs2;RNA.processing"		GO:0005515	"protein binding"		"g5642.t1;Cre06.g251950.t1.3"		
+Cre06.g256100			Mitochondrion				g5755.t1		
+Cre06.g256850			Chloroplast			SND1B	"SND1B;g5772.t1"		"contains divergent SAND domain"
+Cre06.g260200	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP18	"MITC18;MCP18;g5848.t1;Cre06.g260200.t1.1;Cre06.g260200.t1.1;g5848.t1;MITC18;MCP18"		"Possible 2-oxodicarboxylate carrier; highly related to plant mitochondrial carriers;Possible 2-oxodicarboxylate carrier; highly related to plant mitochondrial carriers"
+Cre06.g301550	GMM:34.2	transport.sugars	"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT18	"g6977.t1;MFT18;Cre06.g301550.t1.1;g6977.t1;MFT18;Cre06.g301550.t1.1"		"Similar to MFS-1 sugar transporter with Spinster-like transmembrane topology; null-allele passenger mutation was isolated (PMID 29743196);Similar to MFS-1 sugar transporter with Spinster-like transmembrane topology; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre06.g280600			Chloroplast			GEX1	"g6527.t1;Cre06.g280600.t1.1"	GEX1	"conserved nuclear enveloppe protein, necessary for rapid nuclear fusion during fertilization"
+Cre06.g300250	"GMM:31.1.1.2;GMM:31.1"	"cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"	Mitochondrion	GO:0006464	"cellular protein modification process"	TTL10	"g6946.t1;TTL10;TTL10;g6946.t1;TTL10;g6946.t1;TTL10;g6946.t1;TTL10;g6946.t1;g6946.t1;TTL10"	"TTL10;TTL10;TTL10;TTL10;TTL10;TTL10"	
+Cre06.g279183							"Cre06.g279200.t1.3;GEX150;g6491.t1;g6491.t1;Cre06.g279200.t1.3;GEX150;g6491.t1;Cre06.g279200.t1.3;GEX150;g6491.t1;Cre06.g279200.t1.3;GEX150;g6491.t1;Cre06.g279200.t1.3;GEX150"		"ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196)"
+Cre06.g258566									
+Cre06.g258000			"Secretory pathway"				"g5799.t1;Cre06.g258000.t1.1"		
+Cre06.g278500							"g6476.t1;TMG3;TMG3;g6476.t1"		
+Cre06.g310300			Chloroplast				"Cre06.g310300.t1.1;g7180.t1"		
+Cre06.g258733	GMM:13.1.4.4.1	"amino acid metabolism.synthesis.branched chain group.leucine specific.2-isopropylmalate synthase"		"GO:0009098;GO:0003852;GO:0003824"	"leucine biosynthetic process;2-isopropylmalate synthase activity;catalytic activity"	LEU2	"LEU2;g5818.t1;Cre06.g258750.t2.1;LEU2;Cre06.g258750.t2.1;g5818.t1"	"LEU2;LEU2"	"Involved in branched chain amino acid biosynthesis; first committed step in Leu biosynthesis;Involved in branched chain amino acid biosynthesis; first committed step in Leu biosynthesis"
+Cre06.g304800							"Cre06.g304800.t1.1;g7055.t1"		
+Cre06.g278258			Chloroplast				"Cre13.g601200.t1.1;g6399.t1;g6399.t1;Cre13.g601200.t1.1"		
+Cre06.g249750			Chloroplast	"GO:0030261;GO:0003677"	"chromosome condensation;DNA binding"		"g5594.t1;g5594.t1;g5594.t1"		
+Cre06.g278170			"Secretory pathway"			FAP237	"Cre13.g596800.t1.2;FAS16;FAS7;FLA11;g6313.t1;Cre13.g596800.t1.1;FLA11;g6313.t1;Cre13.g596800.t1.2;FAS16;FAS7;Cre13.g596800.t1.1;Cre13.g596800.t1.1;FAS16;FAS7;g6313.t1;Cre13.g596800.t1.2;FLA11"	"FAP237;FAP237;FAP237"	"Identified in the flagellar associated proteome as FAP237; Identified as Fasciclin-Like Arabinogalactan 11 (FLA11) in [PMID: 31010036];Identified in the flagellar associated proteome as FAP237; Identified as Fasciclin-Like Arabinogalactan 11 (FLA11) in [PMID: 31010036];Identified in the flagellar associated proteome as FAP237; Identified as Fasciclin-Like Arabinogalactan 11 (FLA11) in [PMID: 31010036]"
+Cre06.g293850	GMM:9.1.1.5	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I.carbonic anhydrase"	Mitochondrion			CAG2	"Cre06.g293850.t1.1;g6804.t1;CAG2;g6804.t1;Cre06.g293850.t1.1;CAG2;CAG2;Cre06.g293850.t1.1;g6804.t1;Cre06.g293850.t1.1;CAG2;g6804.t1;CAG2;g6804.t1;Cre06.g293850.t1.1;Cre06.g293850.t1.1;g6804.t1;CAG2;Cre06.g293850.t1.1;g6804.t1;CAG2;CAG2;Cre06.g293850.t1.1;g6804.t1;Cre06.g293850.t1.1;g6804.t1;CAG2;g6804.t1;Cre06.g293850.t1.1;CAG2;Cre06.g293850.t1.1;g6804.t1;CAG2;CAG2;g6804.t1;Cre06.g293850.t1.1"	"CAG2;CAG2;CAG2;CAG2;CAG2;CAG2;CAG2;CAG2;CAG2;CAG2;CAG2;CAG2"	"Putative carbonic anhydrase (gamma-type) identical to AAS48196 associated mitochondrial complex I; Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP2);Putative carbonic anhydrase (gamma-type) identical to AAS48196 associated mitochondrial complex I; Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP2);Putative carbonic anhydrase (gamma-type) identical to AAS48196 associated mitochondrial complex I; Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP2);Putative carbonic anhydrase (gamma-type) identical to AAS48196 associated mitochondrial complex I; Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP2);Putative carbonic anhydrase (gamma-type) identical to AAS48196 associated mitochondrial complex I; Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP2);Putative carbonic anhydrase (gamma-type) identical to AAS48196 associated mitochondrial complex I; Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP2);Putative carbonic anhydrase (gamma-type) identical to AAS48196 associated mitochondrial complex I; Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP2);Putative carbonic anhydrase (gamma-type) identical to AAS48196 associated mitochondrial complex I; Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP2);Putative carbonic anhydrase (gamma-type) identical to AAS48196 associated mitochondrial complex I; Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP2);Putative carbonic anhydrase (gamma-type) identical to AAS48196 associated mitochondrial complex I; Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP2);Putative carbonic anhydrase (gamma-type) identical to AAS48196 associated mitochondrial complex I; Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP2);Putative carbonic anhydrase (gamma-type) identical to AAS48196 associated mitochondrial complex I; Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP2)"
+Cre06.g259600	GMM:31.4	"cell.vesicle transport"				VPS53	"VPS53;g5836.t1"	VPS53	"Expressed Protein. Similar to VPS53, a component of the GARP (Golgi-associated retrograde protein) complex"
+Cre06.g263600			Mitochondrion				g5922.t1		
+Cre06.g256750	GMM:11.1.7	"lipid metabolism.FA synthesis and FA elongation.ACP thioesterase"	Chloroplast	"GO:0016790;GO:0006633"	"thiolester hydrolase activity;fatty acid biosynthetic process"	FAT1	"TEH9;g5770.t1;Cre06.g256750.t1.1"	FAT1	"Acyl carrier protein thioesterase; pfam01643, Acyl-ACP_TE, Acyl-ACP thioesterase. This family consists of various acyl-acyl carrier protein (ACP) thioesterases (TE). These enzymes terminate fatty acyl group extension via hydrolysing an acyl group on a fatty acid."
+Cre06.g302100							"Cre06.g302100.t1.1;g6991.t1"		
+Cre06.g251650	GMM:34.14	"transport.unspecified cations"		"GO:0055085;GO:0016020;GO:0006814;GO:0005215"	"transmembrane transport;membrane;sodium ion transport;transporter activity"	PTC1	"PTC1;g5635.t1;g5635.t1;PTC1;g5635.t1;PTC1;PTC1;g5635.t1;g5635.t1;PTC1;PTC1;g5635.t1;PTC1;g5635.t1;PTC1;g5635.t1;PTC1;g5635.t1;g5635.t1;PTC1;g5635.t1;PTC1;g5635.t1;PTC1"	"PTC1;PTC1;PTC1;PTC1;PTC1;PTC1;PTC1;PTC1;PTC1;PTC1;PTC1;PTC1"	"Putative low-affinity phosphate transporter, similar to yeast Pho87, Pho90 & Pho91 transporters involved in activation of the PHO pathway. Contains an N-terminal SPX domain and a C-terminal SLC13 permease domain.;Putative low-affinity phosphate transporter, similar to yeast Pho87, Pho90 & Pho91 transporters involved in activation of the PHO pathway. Contains an N-terminal SPX domain and a C-terminal SLC13 permease domain.;Putative low-affinity phosphate transporter, similar to yeast Pho87, Pho90 & Pho91 transporters involved in activation of the PHO pathway. Contains an N-terminal SPX domain and a C-terminal SLC13 permease domain.;Putative low-affinity phosphate transporter, similar to yeast Pho87, Pho90 & Pho91 transporters involved in activation of the PHO pathway. Contains an N-terminal SPX domain and a C-terminal SLC13 permease domain.;Putative low-affinity phosphate transporter, similar to yeast Pho87, Pho90 & Pho91 transporters involved in activation of the PHO pathway. Contains an N-terminal SPX domain and a C-terminal SLC13 permease domain.;Putative low-affinity phosphate transporter, similar to yeast Pho87, Pho90 & Pho91 transporters involved in activation of the PHO pathway. Contains an N-terminal SPX domain and a C-terminal SLC13 permease domain.;Putative low-affinity phosphate transporter, similar to yeast Pho87, Pho90 & Pho91 transporters involved in activation of the PHO pathway. Contains an N-terminal SPX domain and a C-terminal SLC13 permease domain.;Putative low-affinity phosphate transporter, similar to yeast Pho87, Pho90 & Pho91 transporters involved in activation of the PHO pathway. Contains an N-terminal SPX domain and a C-terminal SLC13 permease domain.;Putative low-affinity phosphate transporter, similar to yeast Pho87, Pho90 & Pho91 transporters involved in activation of the PHO pathway. Contains an N-terminal SPX domain and a C-terminal SLC13 permease domain.;Putative low-affinity phosphate transporter, similar to yeast Pho87, Pho90 & Pho91 transporters involved in activation of the PHO pathway. Contains an N-terminal SPX domain and a C-terminal SLC13 permease domain.;Putative low-affinity phosphate transporter, similar to yeast Pho87, Pho90 & Pho91 transporters involved in activation of the PHO pathway. Contains an N-terminal SPX domain and a C-terminal SLC13 permease domain.;Putative low-affinity phosphate transporter, similar to yeast Pho87, Pho90 & Pho91 transporters involved in activation of the PHO pathway. Contains an N-terminal SPX domain and a C-terminal SLC13 permease domain."
+Cre06.g271450			Mitochondrion				g6091.t1		
+Cre06.g253250				"GO:0046983;GO:0003677"	"protein dimerization activity;DNA binding"		"g5676.t1;MADS2"		
+Cre06.g298251			Mitochondrion				g6899.t1		
+Cre06.g275250			Mitochondrion				"Cre06.g275250.t1.1;g6172.t1;g6172.t1;Cre06.g275250.t1.1"		
+Cre06.g282250				GO:0008080	"N-acetyltransferase activity"		"g6564.t1;NAT18"		"Related to GCN5"
+Cre06.g274150	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO6	"HFO32;HFO31;HFO43;g6149.t1;Cre06.g274150.t1.1"	HFO6	"replication linked H4; histone gene cluster VI (type 34AB)"
+Cre06.g278262			Chloroplast						
+Cre06.g301725							g6981.t1		
+Cre06.g252350			Mitochondrion			CGL70	"g5650.t1;Cre06.g252350.t1.1"	CGL70	
+Cre06.g250200	"GMM:15.2;GMM:13.1.3.4.11;GMM:13.1.3.4"	"metal handling.binding, chelation and storage;amino acid metabolism.synthesis.aspartate family.methionine.S-adenosylmethionine synthetase;amino acid metabolism.synthesis.aspartate family.methionine"		"GO:0006556;GO:0005524;GO:0004478"	"S-adenosylmethionine biosynthetic process;ATP binding;methionine adenosyltransferase activity"	METM	"g5603.t1;Cre06.g250200.t1.1;METM;SAS1;Cre06.g250200.t1.1;METM;SAS1;g5603.t1;Cre06.g250200.t1.1;METM;SAS1;g5603.t1;SAS1;g5603.t1;METM;Cre06.g250200.t1.1"	"METM1;METM1;METM1;METM1"	"S-Adenosylmethionine (AdoMet) synthetase (SAS1); Methionine Adenosyl-transferase;S-Adenosylmethionine (AdoMet) synthetase (SAS1); Methionine Adenosyl-transferase;S-Adenosylmethionine (AdoMet) synthetase (SAS1); Methionine Adenosyl-transferase;S-Adenosylmethionine (AdoMet) synthetase (SAS1); Methionine Adenosyl-transferase"
+Cre06.g278152			"Secretory pathway"				"Cre13.g596016.t1.1;g6296.t1;Cre13.g596016.t1.2"		
+Cre06.g292100			Chloroplast				"Cre06.g292100.t1.1;g6767.t1"		
+Cre06.g308150	"GMM:29.9;GMM:20.2.1"	"protein.co-chaperones;stress.abiotic.heat"				DNJ23	"DNJ23;g7134.t1;Cre06.g308150.t1.1"		"DnaJ-like protein; contains N-terminal J-domain (pfam226); weak homology with rice Q337D7 and Arabidopsis Q3979, which is annotated as ER-localized, transmembrane protein containing coiled-coil"
+Cre06.g287150				GO:0005515	"protein binding"		g6670.t1		
+Cre06.g300650							"g6956.t1;Cre06.g300650.t1.1;g6956.t1;Cre06.g300650.t1.1"		
+Cre06.g308450							"Cre06.g308450.t1.1;g7140.t1"	RAF1	"In Cyanobacteria, a dimer of RAF1 binds to a dimer of RbcL to form a RbcL-8/RAF1-8 complex and promote association of RBCS"
+Cre06.g278301									
+Cre06.g286150			"Secretory pathway"				"g6650.t1;Cre06.g286150.t1.1;Cre06.g286150.t1.1;g6650.t1"		
+Cre06.g276800	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO1	"HFO24;g6205.t1;Cre06.g276800.t1.1"	HFO1	"replication linked H4; histone gene cluster I (type 43BA)"
+Cre06.g302750	"GMM:33.99;GMM:30.2.99;GMM:29.4.1;GMM:29.4"	"development.unspecified;signalling.receptor kinases.misc;protein.postranslational modification.kinase;protein.postranslational modification"		GO:0005515	"protein binding"		"Cre06.g302750.t1.1;g7009.t1;g7009.t1;Cre06.g302750.t1.1"		
+Cre06.g284750	"GMM:30.5;GMM:29.2.4"	"signalling.G-proteins;protein.synthesis.elongation"	Chloroplast			EFG3	"EFG3;g6621.t1;Cre06.g284750.t1.1"	EFG3	"Similar to GSPT1: Eukaryotic peptide chain release factor GTP-binding subunit ERF3A (Homo sapiens). Similarity to yeast Hbs1p which plays a role in nonsense-mediated decay"
+Cre06.g310000	GMM:31.4	"cell.vesicle transport"		"GO:0030117;GO:0016192;GO:0006886"	"membrane coat;vesicle-mediated transport;intracellular protein transport"	AP4E1	"Cre06.g310000.t1.1;AP4E1;g7173.t1"	AP4E1	"Hypothetical Conserved Protein. Epsilon-Adaptin. Clathrin Adaptor Complex Large Subunit, putative member of AP-4 complex"
+Cre06.g255300			Chloroplast			CGLD28	"g5738.t1;Cre06.g255300.t1.1"	CGLD28	
+Cre06.g292350	GMM:34.3	"transport.amino acids"	"Secretory pathway"	"GO:0055085;GO:0016020;GO:0015171;GO:0006810;GO:0003333"	"transmembrane transport;membrane;amino acid transmembrane transporter activity;transport;amino acid transmembrane transport"	AOC4	"g6774.t1;AOC4;Cre06.g292350.t1.1;AOC4;Cre06.g292350.t1.1;g6774.t1"	"AOC4;AOC4"	"amino acid carrier 4; belongs to APC (Amino acid Polyamine organoCation) family;amino acid carrier 4; belongs to APC (Amino acid Polyamine organoCation) family"
+Cre06.g296650	GMM:3.3	"minor CHO metabolism.sugar alcohols"				HYDG			
+Cre06.g304650	GMM:30.4.2	"signalling.phosphinositides.phosphatidylinositol 4-kinase"		"GO:0048015;GO:0046854;GO:0016773;GO:0006661;GO:0004430"	"phosphatidylinositol-mediated signaling;phosphatidylinositol phosphorylation;phosphotransferase activity, alcohol group as acceptor;phosphatidylinositol biosynthetic process;1-phosphatidylinositol 4-kinase activity"	PIK3	"PIK3;g7052.t1;g7052.t1;PIK3;g7052.t1;PIK3;PIK3;g7052.t1;PIK3;g7052.t1"	"PIK3;PIK3;PIK3;PIK3;PIK3"	"Phosphatidylinositol 3-kinase like with rhodanese-like domain;Phosphatidylinositol 3-kinase like with rhodanese-like domain;Phosphatidylinositol 3-kinase like with rhodanese-like domain;Phosphatidylinositol 3-kinase like with rhodanese-like domain;Phosphatidylinositol 3-kinase like with rhodanese-like domain"
+Cre06.g278099							"Cre13.g593550.t1.1;g6243.t1"		
+Cre06.g278096						SELU	"g6240.t1;Cre13.g593400.t1.2;SELU1;SELENOU;Cre13.g593400.t1.1"	SELU2	"Thioredoxin-like protein, similar to animal Selenoprotein U and Ostreococcus Thioredoxin-fold selenoprotein; UGA Sec codon at position 80;"
+Cre06.g291300			Chloroplast				"g6751.t1;mL41;Cre06.g291300.t1.1"	MRPL41	
+Cre06.g254250							"SRLa; g5719.t1;Cre06.g254250.t1.1;SRL1A"		"One of three genes SRL genes of unknown function in the mt+ mating locus (Cre06.g254200,Cre06.g254224,Cre06.g254250);Arose through a duplication-insertion of a 5.7 kb segment of SRR16 from Chromosome 10 into the mt+ locus"
+Cre06.g295950							"g6846.t1;g6846.t1"		
+Cre06.g278127			"Secretory pathway"				"Cre13.g594850.t1.2;Cre13.g594850.t1.1;g6273.t1"		
+Cre06.g294350									
+Cre06.g292550	GMM:29.4	"protein.postranslational modification"		GO:0016787	"hydrolase activity"	FAP15	"PP1c;PPP25;FAP15;PP1A;g6778.t1;Cre06.g292550.t1.1"	PP1C	"Protein Phosphatase 1a; Serine/Threonine Protein Phosphatase 1 alpha (gi:5153113); Associated with flagellar axoneme [PMID: 10591628]; found in the flagellar proteome [PMID: 15998802]"
+Cre06.g278274			Mitochondrion						
+Cre06.g278150			Chloroplast				g6468.t1		
+Cre06.g288350							"g6693.t1;g6693.t1"		
+Cre06.g306150			Mitochondrion				"g7093.t1;g7093.t1;g7093.t1;g7093.t1"		
+Cre06.g308500	"GMM:23.1.1.1;GMM:13.1.2.3.11"	"nucleotide metabolism.synthesis.pyrimidine.carbamoyl phosphate synthetase;amino acid metabolism.synthesis.glutamate family.arginine.carbamoyl-phosphate synthase"	Chloroplast	"GO:0016787;GO:0006541"	"hydrolase activity;glutamine metabolic process"	CMP2	"g7141.t1;Cre06.g308500.t1.1;CMP2;CMPS1;CMPS1;CMP2;Cre06.g308500.t1.1;g7141.t1"	"CMP2;CMP2"	"Putative carbamoyl phosphate synthase (glutamate dependent), small subunit (EC 6.3.5.5); Target-P predicts organelle (weakly mitochondrial) targeting;Putative carbamoyl phosphate synthase (glutamate dependent), small subunit (EC 6.3.5.5); Target-P predicts organelle (weakly mitochondrial) targeting"
+Cre06.g255350	GMM:18.2	"Co-factor and vitamine metabolism.thiamine"		"GO:0009228;GO:0004417"	"thiamine biosynthetic process;hydroxyethylthiazole kinase activity"	THI10	"g5739.t1;Cre06.g255350.t1.1"	THI10	"hydroxyethylthiazole kinase (HMT Kinase, THIM), involved in thiamine biosyntheis. Mutants in this gene (THI10) are thiamine-requiring. Identification of gene: PMID: 8647391; sequence of the C. incerta ortholog at AAV41809."
+Cre06.g273550			Chloroplast				"g6137.t1;Cre06.g273550.t1.1"		
+Cre06.g278205			Mitochondrion				"Cre13.g598500.t1.1;Cre13.g598500.t1.2;g6347.t1;Cre13.g598500.t1.1;g6347.t1;Cre13.g598500.t1.2"		
+Cre06.g251400	GMM:8.2.10	"TCA / organic transformation.other organic acid transformations.malic"	Mitochondrion	"GO:0055114;GO:0051287;GO:0004471"	"oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity"	MME6	"Cre06.g251400.t1.1;g5630.t1;g5630.t1;Cre06.g251400.t1.1"	"MME6;MME6"	"NADP-dependent malic enzyme, probably mitochondrial based on Target-P prediction;;NADP-dependent malic enzyme, probably mitochondrial based on Target-P prediction;"
+Cre06.g309900	GMM:31.6.1.8	"cell.motility.eukaryotes.flagellar membrane proteins"	"Secretory pathway"			MST2	"MST2;Cre06.g309900.t1.1;g7171.t1;Cre06.g309900.t1.1;MST2;g7171.t1;g7171.t1;MST2;Cre06.g309900.t1.1;g7171.t1;Cre06.g309900.t1.1;MST2"	"MST2;MST2;MST2;MST2"	"Sequence similarity to mastigoneme protein (MST1);Sequence similarity to mastigoneme protein (MST1);Sequence similarity to mastigoneme protein (MST1);Sequence similarity to mastigoneme protein (MST1)"
+Cre06.g278144	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"		"Cre13.g595700.t1.2;Cre13.g595700.t1.1;g6289.t1"		
+Cre06.g265652	GMM:31.6.1.11	cell.motility.eukaryotes.other	"Secretory pathway"						
+Cre06.g267500	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0005839;GO:0004298"	"proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity"		"Cre06.g267500.t1.1;g6003.t1;g6003.t1;Cre06.g267500.t1.1;g6003.t1;Cre06.g267500.t1.1"		
+Cre06.g298100	GMM:29.2.3	protein.synthesis.initiation		"GO:0006413;GO:0003743"	"translational initiation;translation initiation factor activity"	SUI1A	"SUI1;Cre06.g298100.t1.1;SUI1A;g6895.t1;SUI1;Cre06.g298100.t1.1;SUI1A;g6895.t1"	"SUI1A;SUI1A"	"putative SUI1 translation initiation protein, initiation factor 1 (eIF-1);putative SUI1 translation initiation protein, initiation factor 1 (eIF-1)"
+Cre06.g253902			Chloroplast				"g5687.t1;EZY2D"		"Encodes a predicted chloroplast protein with no recognizable domains or similarity, and its mRNA is zygote specific;One of six copies of the EZY2 gene in the mt+ locus (Cre06.g253750,Cre06.g253759,Cre06.g253800,Cre06.g253902,Cre06.g254052);Proposed to be involved in uniparental chloroplast DNA inheritance"
+Cre06.g249200	GMM:31.1	cell.organisation				ARP4			
+Cre06.g266250				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre06.g266250.t1.1;g5976.t1"		
+Cre06.g267476			Chloroplast						
+Cre06.g263450	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	"GTP binding"	EEF1A3	"Cre06.g263450.t1.1;EEF1A3;g5919.t2;g5919.t2;Cre06.g263450.t1.1;EEF1A3;g5919.t2;Cre06.g263450.t1.1;EEF1A3"	"EEF1A3;EEF1A3;EEF1A3"	"EEF1a; high similarity to EF1A2; found in the flagellar proteome [PMID: 1599882];EEF1a; high similarity to EF1A2; found in the flagellar proteome [PMID: 1599882];EEF1a; high similarity to EF1A2; found in the flagellar proteome [PMID: 1599882]"
+Cre06.g283050	GMM:1.1.2.1	"PS.lightreaction.photosystem I.LHC-I"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCA1	"g6583.t1;Cre06.g283050.t1.1;g6583.t1;Cre06.g283050.t1.1"	"LHCA1;LHCA1"	"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre06.g287250	GMM:35.1.5	"not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein"				COG4	"COG4;g6673.t1;Cre06.g287250.t1.1"	COG4	"Expressed protein. Similar to COG4/COD1 component of oligomeric golgi complex 4, involved in vesicle tethering and other Golgi functions; null-allele mutant was isolated (PMID 29743196)"
+Cre06.g278900							"g6485.t1;g6485.t1"	"NUP88;NUP88"	"Nuclear Pore Complex Protein 88;Nuclear Pore Complex Protein 88"
+Cre06.g278270			Chloroplast						
+Cre06.g278243				"GO:0055114;GO:0050660;GO:0016491"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity"		"g6385.t1;Cre13.g600550.t1.1"		
+Cre06.g285050							g6627.t1		
+Cre06.g283450			"Secretory pathway"				"g6591.t1;Cre06.g283450.t1.1"		
+Cre06.g295600	"GMM:27.1.5;GMM:25"	"RNA.processing.base modifications;C1-metabolism"		"GO:0008168;GO:0006139"	"methyltransferase activity;nucleobase-containing compound metabolic process"	RME1	"RME1;g6842.t1;Cre06.g295600.t1.1;Cre06.g295600.t1.1;RME1;g6842.t1;Cre06.g295600.t1.1;RME1;g6842.t1"		"RNA methylase with conserved N-6 adenine-specific DNA methylase site; may have protein disulfide reductase activity;RNA methylase with conserved N-6 adenine-specific DNA methylase site; may have protein disulfide reductase activity;RNA methylase with conserved N-6 adenine-specific DNA methylase site; may have protein disulfide reductase activity"
+Cre06.g278117			Chloroplast			CPLD7	"Cre13.g594350.t1.1;Cre13.g594350.t1.2;g6260.t1;CPLD7;CPLD7;g6260.t1;Cre13.g594350.t1.2;Cre13.g594350.t1.1"	"CPLD7;CPLD7"	
+Cre06.g275750	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR3	"HTR4;HTR12;g6182.t1;Cre06.g275750.t1.1"	HTR3	"replication linked H3; histone gene cluster III (type 43BA)"
+Cre06.g265100	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		g5954.t1		
+Cre06.g278272			Chloroplast						
+Cre06.g301201			Chloroplast						
+Cre06.g278196			"Secretory pathway"				"g6339.t1;Cre13.g598100.t1.2;Cre13.g598100.t1.1;Cre13.g598100.t1.1;Cre13.g598100.t1.2;g6339.t1"		
+Cre06.g278189			"Secretory pathway"				"Cre13.g597750.t1.1;g6332.t1;Cre13.g597750.t1.2"		
+Cre06.g308700							"g7145.t1;Cre06.g308700.t1.1"		
+Cre06.g277700			Mitochondrion				g6223.t1		
+Cre06.g264450	GMM:34.3	"transport.amino acids"	"Secretory pathway"			AOT5	"AOT5;g5941.t1;Cre06.g264450.t1.1;g5941.t1;Cre06.g264450.t1.1;AOT5;g5941.t1;AOT5;Cre06.g264450.t1.1;g5941.t1;Cre06.g264450.t1.1;AOT5;AOT5;Cre06.g264450.t1.1;g5941.t1;AOT5;g5941.t1;Cre06.g264450.t1.1"		"belongs to AAAP family of amino acid/auxin permeases; most similar to animal and fungal relatives, in particular to neutral amino acid transporter system N2; identified as MOT57 by comparative genomics as being present only in organisms having motile cilia;belongs to AAAP family of amino acid/auxin permeases; most similar to animal and fungal relatives, in particular to neutral amino acid transporter system N2; identified as MOT57 by comparative genomics as being present only in organisms having motile cilia;belongs to AAAP family of amino acid/auxin permeases; most similar to animal and fungal relatives, in particular to neutral amino acid transporter system N2; identified as MOT57 by comparative genomics as being present only in organisms having motile cilia;belongs to AAAP family of amino acid/auxin permeases; most similar to animal and fungal relatives, in particular to neutral amino acid transporter system N2; identified as MOT57 by comparative genomics as being present only in organisms having motile cilia;belongs to AAAP family of amino acid/auxin permeases; most similar to animal and fungal relatives, in particular to neutral amino acid transporter system N2; identified as MOT57 by comparative genomics as being present only in organisms having motile cilia;belongs to AAAP family of amino acid/auxin permeases; most similar to animal and fungal relatives, in particular to neutral amino acid transporter system N2; identified as MOT57 by comparative genomics as being present only in organisms having motile cilia"
+Cre06.g278294			"Secretory pathway"						
+Cre06.g287550							g6679.t1		
+Cre06.g310950							"FAO7;Cre06.g310950.t1.1;g7195.t1"		"FAD-dependent oxidoreductase, probably a sarcosine dehydrogenase/oxidase"
+Cre06.g280100			"Secretory pathway"	GO:0016021	"integral component of membrane"		"g6514.t1;Cre06.g280100.t1.1"		
+Cre06.g270276			Chloroplast						
+Cre06.g297750	GMM:27.1.1	RNA.processing.splicing				SPL3	"SPL3;Cre06.g297750.t1.1;g6887.t1;Cre06.g297750.t1.1;g6887.t1;SPL3;SPL3;Cre06.g297750.t1.1;g6887.t1;Cre06.g297750.t1.1;SPL3;g6887.t1;Cre06.g297750.t1.1;SPL3;g6887.t1"		
+Cre06.g266383						HEL26	"g5980.t2;g20002.t1;HEL26;Cre06.g266400.t1.3"		
+Cre06.g266416	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	GO:0004386	"helicase activity"				
+Cre06.g274250	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB6	"g6151.t1;Cre06.g274250.t1.1"	HTB6	"replication linked H2B; histone gene cluster VI (type 34AB)"
+Cre06.g277250	GMM:28.2	DNA.repair	Mitochondrion				"g6214.t1;Cre06.g277250.t1.1"		
+Cre06.g278133			Mitochondrion						
+Cre06.g266700	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA11	"HTA39;Cre06.g266700.t1.1;g5986.t1"	HTA11	"replication linked H2A; histone gene cluster XI (type 43AB)"
+Cre06.g252892			"Secretory pathway"			MTA4A	"MTA4;MTA4A;Cre06.g252950.t2.1; g5666.t2"		"MT+ locus copy of the MTA4 gene;This locus appears to have a premature stop codon in the laboratory strains, including the reference strain; Genbank entry AY596304; null-allele mutant was isolated (PMID 29743196)"
+Cre06.g278219	GMM:31.6.1.11	cell.motility.eukaryotes.other				SSA6	"Cre13.g599250.t1.2;SSA6;Cre13.g599250.t1.1;g6361.t1"	SSA6	"Identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA)"
+Cre06.g267300			Mitochondrion				"g5998.t1;Cre06.g267300.t1.1;g5998.t1;Cre06.g267300.t1.1;g5998.t1;Cre06.g267300.t1.1;Cre06.g267300.t1.1;g5998.t1"		
+Cre06.g272000							"g6103.t1;g6103.t1"		
+Cre06.g304100	GMM:28.99	DNA.unspecified		"GO:0007015;GO:0007010;GO:0003779"	"actin filament organization;cytoskeleton organization;actin binding"		"Cre06.g304100.t1.1;g7041.t1;g7041.t1;Cre06.g304100.t1.1"		
+Cre06.g278234			Mitochondrion	GO:0005515	"protein binding"	FAP343	g6376.t1	FAP343	
+Cre06.g270050							"g6059.t1;g6059.t1;g6059.t1"		
+Cre06.g311550							"g7207.t1;g7207.t1;g7207.t1;g7207.t1"		
+Cre06.g278213	GMM:1.1.2.1	"PS.lightreaction.photosystem I.LHC-I"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCA6	"g6355.t1;LHCA6;Cre13.g598900.t1.2;Cre13.g598900.t1.1;LHCA6;Cre13.g598900.t1.2;g6355.t1;Cre13.g598900.t1.1;Cre13.g598900.t1.2;LHCA6;g6355.t1;Cre13.g598900.t1.1;LHCA6;Cre13.g598900.t1.2;g6355.t1;Cre13.g598900.t1.1;Cre13.g598900.t1.1;Cre13.g598900.t1.2;g6355.t1;LHCA6;g6355.t1;Cre13.g598900.t1.1;LHCA6;Cre13.g598900.t1.2"	"LHCA6;LHCA6;LHCA6;LHCA6;LHCA6;LHCA6"	
+Cre06.g285900			Chloroplast			FAP396	g6644.t1	FAP396	"Found in Chlamydomonas and Volvox but not strongly conserved elsewhere"
+Cre06.g305400			Chloroplast				"g7069.t1;Cre06.g305400.t1.1;Cre06.g305400.t1.1;g7069.t1"		
+Cre06.g257601	GMM:21.5.1	redox.peroxiredoxin.BAS1	Chloroplast	"GO:0055114;GO:0051920;GO:0016491"	"oxidation-reduction process;peroxiredoxin activity;oxidoreductase activity"	PRX1	"g5792.t1;Cre06.g257601.t1.1;Cre06.g257601.t1.1;g5792.t1"	"PRX1;PRX1"	"Thioredoxin dependent peroxidase, chloroplast precursor, PMID: 11784321; Protein processed at aa 39 to produce N-terminus of SHAEKPL as determined by Edman degradation;Thioredoxin dependent peroxidase, chloroplast precursor, PMID: 11784321; Protein processed at aa 39 to produce N-terminus of SHAEKPL as determined by Edman degradation"
+Cre06.g278201							"Cre13.g598300.t1.2;Cre13.g598300.t1.1;g6343.t1"		
+Cre06.g297700	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"				"g6886.t1;g6886.t1;g6886.t1;g6886.t1;g6886.t1"		
+Cre06.g271188			"Secretory pathway"	GO:0016787	"hydrolase activity"		"Cre06.g271188.t1.1;g6084.t1"		
+Cre06.g292249			"Secretory pathway"			PHC50	"g6771.t1;PHC50;PHC50;g6771.t1"		
+Cre06.g305500				"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"g7071.t2;Cre06.g305500.t1.1;Cre06.g305500.t1.1;g7071.t2;Cre06.g305500.t1.1;g7071.t2"		
+Cre06.g311200	GMM:34.99	transport.misc		"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT21	"MFT21;g7200.t1;g7200.t1;MFT21;g7200.t1;MFT21"		"Similar to MFS-1 sugar transporter with Spinster-like transmembrane topology; null-allele mutant was isolated (PMID 29743196);Similar to MFS-1 sugar transporter with Spinster-like transmembrane topology; null-allele mutant was isolated (PMID 29743196);Similar to MFS-1 sugar transporter with Spinster-like transmembrane topology; null-allele mutant was isolated (PMID 29743196)"
+Cre06.g275050	GMM:29.5	protein.degradation	"Secretory pathway"	"GO:0016787;GO:0008242;GO:0006541;GO:0003824"	"hydrolase activity;omega peptidase activity;glutamine metabolic process;catalytic activity"	GGH2	"GGH2;g6168.t1;g6168.t1;GGH2;GGH2;g6168.t1;GGH2;g6168.t1"	"GGH2;GGH2;GGH2;GGH2"	"Putative gamma-glutamyl hydrolase, folate metabolism, ER targeting sequence predicted by Predotar.;Putative gamma-glutamyl hydrolase, folate metabolism, ER targeting sequence predicted by Predotar.;Putative gamma-glutamyl hydrolase, folate metabolism, ER targeting sequence predicted by Predotar.;Putative gamma-glutamyl hydrolase, folate metabolism, ER targeting sequence predicted by Predotar."
+Cre06.g257900			"Secretory pathway"				"g5797.t1;g5797.t1"		
+Cre06.g258500							g5811.t1		
+Cre06.g252743							" g5659.t1;Cre06.g252743.t1.1"		"mt+ specific gene of unknown function;"
+Cre06.g310650							"Cre06.g310650.t1.1;g7189.t1"		
+Cre06.g309550	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"				"g7162.t2;g7162.t2"		
+Cre06.g278088	GMM:28.1.3.2.1	"DNA.synthesis/chromatin structure.histone.core.H2A"		GO:0003677	"DNA binding"	HAV3	"g6232.t1;HAV2;HAV1"	HAV3	
+Cre06.g300300			Mitochondrion				"g6948.t1;g6948.t1;g6948.t1"		
+Cre06.g269850			Chloroplast						
+Cre06.g273950	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO7	"HFO7;g6145.t1;Cre06.g273950.t1.1"	HFO7	"replication linked H4; histone gene cluster VII (type 34AB)"
+Cre06.g284150	GMM:34.5	transport.ammonium	Chloroplast	"GO:0072488;GO:0016020;GO:0015696;GO:0008519"	"ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity"	RHP2	"RH2;g6607.t1"	RHP2	"highly similar to downstream RH1; similar to Rh50 gene product of Drosophila melanogaster"
+Cre06.g254650	"GMM:29.5.11.4.2;GMM:27.3.12"	"protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.C3H zinc finger family"		GO:0046872	"metal ion binding"		"g5728.t1;Cre06.g254650.t1.1"		
+Cre06.g291900						PHD1	"g6763.t1;PHD1;Cre06.g291900.t1.1"		"Phosducin (Phd)-like family, Viral inhibitor of apoptosis (IAP)-associated factor (VIAF) subfamily; VIAF is a Phd-like protein that functions in caspase activation during apoptosis; cd02988"
+Cre06.g265400	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB12	"HTB12;HTB42;g5960.t1;HTB11;Cre06.g265400.t1.1"	HTB12	"replication linked H2B; histone gene cluster XII (type 34BA)"
+Cre06.g267450			"Secretory pathway"						
+Cre06.g278140	"GMM:29.4;GMM:17.2.3"	"protein.postranslational modification;hormone metabolism.auxin.induced-regulated-responsive-activated"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre13.g595500.t1.1;Cre13.g595500.t1.2;g6285.t1;Cre13.g595500.t1.2;Cre13.g595500.t1.1;g6285.t1;Cre13.g595500.t1.2;Cre13.g595500.t1.1;g6285.t1;Cre13.g595500.t1.1;Cre13.g595500.t1.2;g6285.t1;g6285.t1;Cre13.g595500.t1.1;Cre13.g595500.t1.2;g6285.t1;Cre13.g595500.t1.1;Cre13.g595500.t1.2;Cre13.g595500.t1.1;Cre13.g595500.t1.2;g6285.t1;Cre13.g595500.t1.2;Cre13.g595500.t1.1;g6285.t1;Cre13.g595500.t1.1;Cre13.g595500.t1.2;g6285.t1;g6285.t1;Cre13.g595500.t1.2;Cre13.g595500.t1.1;Cre13.g595500.t1.2;Cre13.g595500.t1.1;g6285.t1;Cre13.g595500.t1.1;Cre13.g595500.t1.2;g6285.t1"		
+Cre06.g272850	GMM:29.2.1.1.1.2.10	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L10"	Chloroplast	"GO:0042254;GO:0005622"	"ribosome biogenesis;intracellular"	PRPL10	"PRPL10;Cre06.g272850.t1.1;g6122.t1;uL10m;uL10m;PRPL10;Cre06.g272850.t1.1;g6122.t1;uL10m;PRPL10;Cre06.g272850.t1.1;g6122.t1"	"MRPL10;MRPL10;MRPL10"	"Probably dual-targeted to the mitochondrion and chloroplast;Probably dual-targeted to the mitochondrion and chloroplast;Probably dual-targeted to the mitochondrion and chloroplast"
+Cre06.g281750							"g6553.t1;Cre06.g281750.t1.1"		
+Cre06.g288908	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g6705.t1;Cre06.g288908.t1.1"		
+Cre06.g285600	GMM:31.6.1.9	"cell.motility.eukaryotes.flagellar adhesion and gamete fusion"				RWP5	"RWP5;g6638.t2;MID;MID;g6638.t2;RWP5;RWP5;MID;g6638.t2"	"RWP5;RWP5;RWP5"	"putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor"
+Cre06.g266300			Chloroplast				"g5978.t1;Cre06.g266300.t1.1"		
+Cre06.g250800	GMM:27.4	"RNA.RNA binding"		"GO:0005515;GO:0003723"	"protein binding;RNA binding"	CRB1	"CRB1;g5617.t2;g5617.t2;CRB1;CRB1;g5617.t2;CRB1;g5617.t2"	"CRB1;CRB1;CRB1;CRB1"	"RNA-binding protein with three KH domains and a protein-protein interaction domain (WW) at the C-terminus; subunit of the circadian RNA-binding protein CHLAMY 1 [PMID: 15190002];RNA-binding protein with three KH domains and a protein-protein interaction domain (WW) at the C-terminus; subunit of the circadian RNA-binding protein CHLAMY 1 [PMID: 15190002];RNA-binding protein with three KH domains and a protein-protein interaction domain (WW) at the C-terminus; subunit of the circadian RNA-binding protein CHLAMY 1 [PMID: 15190002];RNA-binding protein with three KH domains and a protein-protein interaction domain (WW) at the C-terminus; subunit of the circadian RNA-binding protein CHLAMY 1 [PMID: 15190002]"
+Cre06.g304150	GMM:31.1	cell.organisation	Mitochondrion				"g7042.t1;g7042.t1;g7042.t1"		
+Cre06.g294200			Mitochondrion	"GO:0006281;GO:0006260;GO:0003911"	"DNA repair;DNA replication;DNA ligase (NAD+) activity"		g6811.t1		
+Cre06.g248900			Mitochondrion	GO:0005515	"protein binding"		g5575.t1		
+Cre06.g273350							"g6132.t1;Cre06.g273350.t1.1;NAT17;Cre06.g273350.t1.1;g6132.t1;NAT17"		"Related to GCN5;Related to GCN5"
+Cre06.g278203							"g6345.t1;Cre13.g598400.t1.1;Cre13.g598400.t1.2"		
+Cre06.g297082	GMM:30.2.11	"signalling.receptor kinases.leucine rich repeat XI"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	cya17	"Cre57.g791350.t1.1;g6874.t1;g6874.t1;Cre57.g791350.t1.1;g6874.t1;Cre57.g791350.t1.1"		
+Cre06.g261750			Chloroplast				"Cre06.g261750.t1.1;g5882.t1;BES3;Cre06.g261750.t1.1;g5882.t1;BES3"	"RBMP1;RBMP1"	"Similar to Bestrophin, RFP-TM, chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family that includes Low-CO2-inducible membrane protein LCI11;Similar to Bestrophin, RFP-TM, chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family that includes Low-CO2-inducible membrane protein LCI11"
+Cre06.g278111	"GMM:34.22;GMM:34.15"	"transport.cyclic nucleotide or calcium regulated channels;transport.potassium"		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"		"g6254.t1;Cre13.g594050.t1.2;Cre13.g594050.t1.1"		
+Cre06.g283900							"g6601.t1;Cre06.g283900.t1.1"		
+Cre06.g253753			Mitochondrion						
+Cre06.g254150	"GMM:3.5;GMM:27.1"	"minor CHO metabolism.others;RNA.processing"		GO:0005515	"protein binding"	UTP1	"g5712.t1;Cre06.g254150.t1.1;UTP1"	UTP1	"Associates with U3 snoRNA, required for pre-rRNA processing; Conserved 90S pre-ribosomal component essential for endonucleolytic cleavage of the 35 S rRNA precursor at A0, A1, and A2 sites; contains WD-40 repeats. Independent cDNA sequence: Genbank AY596303."
+Cre06.g307250							"g7116.t1;Cre06.g307250.t1.1;g7116.t1;Cre06.g307250.t1.1;Cre06.g307250.t1.1;g7116.t1;Cre06.g307250.t1.1;g7116.t1;g7116.t1;Cre06.g307250.t1.1;g7116.t1;Cre06.g307250.t1.1"		
+Cre06.g257167							g5779.t1		
+Cre06.g268050	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA10	"g6014.t1;Cre06.g268050.t1.1;HTA10"	HTA10	"replication linked H2A; histone gene cluster X (type 34AB)"
+Cre06.g286600	GMM:29.5.11	protein.degradation.ubiquitin					"g6659.t1;g6659.t1;g6659.t1;g6659.t1;g6659.t1;g6659.t1;g6659.t1"		
+Cre06.g260400						FAP287	"g5852.t1;Cre06.g260400.t1.1"	FAP287	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]; maybe ubiquitin related"
+Cre06.g262250	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"				AP1M1	"AP1M1;g5892.t1;Cre06.g262250.t1.1;Cre06.g262250.t1.1;g5892.t1;AP1M1;g5892.t1;Cre06.g262250.t1.1;AP1M1"	"AP1M1;AP1M1;AP1M1"	"Expressed Protein. Mu1-Adaptin. Clathrin Adaptor Complex Medium Subunit, putative member of AP-1 complex;Expressed Protein. Mu1-Adaptin. Clathrin Adaptor Complex Medium Subunit, putative member of AP-1 complex;Expressed Protein. Mu1-Adaptin. Clathrin Adaptor Complex Medium Subunit, putative member of AP-1 complex"
+Cre06.g276250	GMM:24.1	"biodegradation of xenobiotics.hydroxyacylglutathione hydrolase"					"g6192.t1;g6192.t1"		
+Cre06.g256050				GO:0005524	"ATP binding"		g5754.t1		
+Cre06.g264100							"g5934.t1;g5934.t1;g5934.t1"		
+Cre06.g299926			Mitochondrion						
+Cre06.g260550	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG1	"g5855.t1;CYG1"		"C terminal domain similar to guanylate cyclase 1 from Homo sapiens"
+Cre06.g276371	GMM:24.1	"biodegradation of xenobiotics.hydroxyacylglutathione hydrolase"					"g6195.t1;Cre06.g276371.t1.1"		
+Cre06.g281450			"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR22	"SRR22;g6546.t1;g6546.t1;SRR22;SRR22;g6546.t1"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912)"
+Cre06.g278256	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	"protein binding"	RPN8	"RPN8;Cre13.g601100.t1.1;Cre13.g601100.t1.2;g6397.t1"	RPN8	"26S proteasome regulatory complex, lid subcomplex, non-ATPase subunit RPN8 (subunit S12) (subunit 7) (PSD7) (PSMD7)"
+Cre06.g288050				"GO:0008324;GO:0006812"	"cation transmembrane transporter activity;cation transport"	MGTE	"g6689.t1;Cre06.g288050.t1.1;MGTE"	MGTE1	"related to cyanobacterial Mg/Co/Ni transporter MgtE"
+Cre06.g290250							g6733.t1		
+Cre06.g278186			Mitochondrion	"GO:0007165;GO:0005515"	"signal transduction;protein binding"		"g6329.t1;Cre13.g597600.t1.1;g6329.t1;Cre13.g597600.t1.1"		
+Cre06.g306650	"GMM:29.5.7;GMM:29.5"	"protein.degradation.metalloprotease;protein.degradation"	Mitochondrion	"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"		"g7103.t1;g7103.t1"		
+Cre06.g251300	GMM:27.1	RNA.processing		GO:0006396	"RNA processing"	SMP6B	"Cre06.g251300.t1.1;g5628.t1;SMP6B"	SMP6B	
+Cre06.g291650				"GO:0051536;GO:0009055"	"iron-sulfur cluster binding;electron carrier activity"	FDX11	"g6758.t1;Cre06.g291650.t1.1;Cre06.g291650.t1.1;g6758.t1"	"FDX11;FDX11"	"Possible 2Fe-2S ferredoxin; COG0633; cd00207, fer2, 2Fe-2S iron-sulfur cluster binding domain;Possible 2Fe-2S ferredoxin; COG0633; cd00207, fer2, 2Fe-2S iron-sulfur cluster binding domain"
+Cre06.g308400	"GMM:33.99;GMM:29.4;GMM:26.13"	"development.unspecified;protein.postranslational modification;misc.acid and other phosphatases"				PTN1	"Cre06.g308400.t1.1;g7139.t1;PTN1;Cre06.g308400.t1.1;PTN1;g7139.t1;Cre06.g308400.t1.1;g7139.t1;PTN1"	"PTN1;PTN1;PTN1"	"Homolog of Clathrin coat dissociation kinase GAK/PTEN/Auxilin and related tyrosine phosphatases; antagonizes PI3 kinases to regulate phosphatidyl inositol phosphorylation at 3 position;Homolog of Clathrin coat dissociation kinase GAK/PTEN/Auxilin and related tyrosine phosphatases; antagonizes PI3 kinases to regulate phosphatidyl inositol phosphorylation at 3 position;Homolog of Clathrin coat dissociation kinase GAK/PTEN/Auxilin and related tyrosine phosphatases; antagonizes PI3 kinases to regulate phosphatidyl inositol phosphorylation at 3 position"
+Cre06.g255700	GMM:31.7.1	cell.development.zygote	Mitochondrion						
+Cre06.g287050							"g6668.t1;Cre06.g287050.t1.1;g6668.t1;Cre06.g287050.t1.1"		
+Cre06.g280800							"g6531.t1;Cre06.g280800.t1.1"		
+Cre06.g289900	GMM:27.1.2	"RNA.processing.RNA helicase"				HEN2	g6726.t1	HEN2	"Putative homologue of Arabidopsis Hua Enhancer 2, HEN2, DExH box helicase"
+Cre06.g263950	"GMM:34.21;GMM:34.1"	"transport.calcium;transport.p- and v-ATPases"		"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"		"g5931.t1;g5931.t1;g5931.t1"		
+Cre06.g282500	"GMM:29.2.1.2.2.523;GMM:29.2.1.2.2.0523"	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L23A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L23A"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	RPL23A	"RPL23a;g6570.t1;Cre06.g282500.t1.1;Cre06.g282500.t1.1;g6570.t1;RPL23a;RPL23a;g6570.t1;Cre06.g282500.t1.1"	"RPL23A;RPL23A;RPL23A"	"Cytosolic 60S large ribosomal subunit protein L23a;Cytosolic 60S large ribosomal subunit protein L23a;Cytosolic 60S large ribosomal subunit protein L23a"
+Cre06.g281200				GO:0005515	"protein binding"		"g6540.t1;g6540.t1;g6540.t1"		
+Cre06.g285800	GMM:27.3.60	"RNA.regulation of transcription.NIN-like bZIP-related family"	Mitochondrion				"g6642.t1;Cre06.g285800.t1.1"		
+Cre06.g275550	GMM:27.3.60	"RNA.regulation of transcription.NIN-like bZIP-related family"	Chloroplast			RWP2	"RWP2;g6178.t1;RWP2;g6178.t1;RWP2;g6178.t1"	"RWP2;RWP2;RWP2"	"putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor"
+Cre06.g304000	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"	Mitochondrion	GO:0005524	"ATP binding"		"SRH14;Cre06.g304000.t1.1;g7039.t1;g7039.t1;Cre06.g304000.t1.1;SRH14"		"SNF2-related helicase, ChromDB CHR3419; Chromatin remodeling complex subunit R;SNF2-related helicase, ChromDB CHR3419; Chromatin remodeling complex subunit R"
+Cre06.g268550	"GMM:3.5;GMM:10.2.1;GMM:10.2"	"minor CHO metabolism.others;cell wall.cellulose synthesis.cellulose synthase;cell wall.cellulose synthesis"	"Secretory pathway"			CSL1	"g6025.t1;GTR;CGL121"	CSL1	"Conserved in the Green Lineage"
+Cre06.g279600							"g6501.t1;g6501.t1;g6501.t1"		
+Cre06.g253850				"GO:0032775;GO:0009007;GO:0003677"	"DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding"				
+Cre06.g278165	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			mmp28	"Cre13.g596600.t1.1;Cre13.g596600.t1.2;g6308.t1"		
+Cre06.g278142	"GMM:18.7;GMM:15.2"	"Co-factor and vitamine metabolism.iron-sulphur clusters;metal handling.binding, chelation and storage"	Chloroplast	"GO:0051539;GO:0051536;GO:0009451;GO:0003824"	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;RNA modification;catalytic activity"		"g6287.t1;Cre13.g595600.t1.2;Cre13.g595600.t1.1"		
+Cre06.g296600	GMM:18.3.2	"Co-factor and vitamine metabolism.riboflavin.riboflavin synthase"		"GO:0009231;GO:0004746"	"riboflavin biosynthetic process;riboflavin synthase activity"	RFS1	"Cre06.g296600.t1.1;RFS1;g6859.t1;Cre06.g296600.t1.1;g6859.t1;RFS1"	"RFS1;RFS1"	"More similar to bacterial than to fungal homologues, in contrast to other riboflavin biosynthesis genes which are similar to the genes of spermatophyta;More similar to bacterial than to fungal homologues, in contrast to other riboflavin biosynthesis genes which are similar to the genes of spermatophyta"
+Cre06.g254232			"Secretory pathway"						
+Cre06.g269400							g6044.t1		
+Cre06.g302350			Mitochondrion						
+Cre06.g258950			"Secretory pathway"				g5822.t1		
+Cre06.g270600			Mitochondrion				g6071.t1		
+Cre06.g289400	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	Chloroplast	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE11	"Cre06.g289400.t1.1;PDE11;g6715.t1;g6715.t1;PDE11;Cre06.g289400.t1.1;g6715.t1;PDE11;Cre06.g289400.t1.1;Cre06.g289400.t1.1;PDE11;g6715.t1;PDE11;g6715.t1;Cre06.g289400.t1.1;Cre06.g289400.t1.1;g6715.t1;PDE11;PDE11;Cre06.g289400.t1.1;g6715.t1"		"Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain"
+Cre06.g311450			Mitochondrion				"g7205.t1;g7205.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre06.g260100	"GMM:34.11;GMM:29.4"	"transport.NDP-sugars at the ER;protein.postranslational modification"		GO:0055085	"transmembrane transport"		"Cre06.g260100.t1.1;g5846.t1;UAA3"		"UAA transporter"
+Cre06.g260950	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"					"g5864.t1;Cre06.g260950.t1.1;g5864.t1;Cre06.g260950.t1.1;Cre06.g260950.t1.1;g5864.t1"		
+Cre06.g253757			Chloroplast						
+Cre06.g259300	GMM:29.2.4	protein.synthesis.elongation				EFS2			
+Cre06.g284550			Chloroplast				"Cre06.g284550.t1.1;g6616.t1;Cre06.g284550.t1.1;g6616.t1;g6616.t1;Cre06.g284550.t1.1"		
+Cre06.g305750	GMM:3.3	"minor CHO metabolism.sugar alcohols"		GO:0005515	"protein binding"		"g7077.t1;Cre06.g305750.t1.1"		
+Cre06.g263000				GO:0005515	"protein binding"		g5908.t1		
+Cre06.g305450			Mitochondrion				g7070.t1		
+Cre06.g263900							"Cre06.g263900.t1.1;g5930.t1"		
+Cre06.g250567									
+Cre06.g296800							"g6863.t1;g6863.t1"		
+Cre06.g278163	GMM:13.1.2.3.4	"amino acid metabolism.synthesis.glutamate family.arginine.acetylornithine aminotransferase"	Chloroplast	"GO:0030170;GO:0008483"	"pyridoxal phosphate binding;transaminase activity"	ARG9	"g6306.t1;Cre13.g596500.t1.1;Cre13.g596500.t1.2;ARG9;ARG9;Cre13.g596500.t1.1;Cre13.g596500.t1.2;g6306.t1;ARG9;Cre13.g596500.t1.1;g6306.t1;Cre13.g596500.t1.2"	"ARG9;ARG9;ARG9"	"Catalyzes the fourth step of arginine biosynthesis; the arg9 mutant in LG_VI lacks acetylornithine aminotransferase (Loppes, R. and Heindricks, R. (1986) Arch. Microbiol. 143:348-352); plastid-localized; plastome transformation with an ARG9 cassette restore arginine prototrophy;Catalyzes the fourth step of arginine biosynthesis; the arg9 mutant in LG_VI lacks acetylornithine aminotransferase (Loppes, R. and Heindricks, R. (1986) Arch. Microbiol. 143:348-352); plastid-localized; plastome transformation with an ARG9 cassette restore arginine prototrophy;Catalyzes the fourth step of arginine biosynthesis; the arg9 mutant in LG_VI lacks acetylornithine aminotransferase (Loppes, R. and Heindricks, R. (1986) Arch. Microbiol. 143:348-352); plastid-localized; plastome transformation with an ARG9 cassette restore arginine prototrophy"
+Cre06.g289050			Chloroplast				"g6709.t1;g6709.t1;g6709.t1;g6709.t1"		
+Cre06.g280385							"Cre06.g280400.t1.3;PAP6;g6521.t1"		
+Cre06.g282950							"g6580.t1;Cre06.g282950.t1.1"		
+Cre06.g253800			Chloroplast				"g5689.t1;EZY2C"		"Encodes a predicted chloroplast protein with no recognizable domains or similarity, and its mRNA is zygote specific;One of six copies of the EZY2 gene in the mt+ locus (Cre06.g253750,Cre06.g253759,Cre06.g253800,Cre06.g253902,Cre06.g254052);Proposed to be involved in uniparental chloroplast DNA inheritance"
+Cre06.g264250							"FAO6;g5937.t1"		"FAD-dependent oxidoreductase, phytoene dehydrogenase. Glycine/D-amino acid oxidase-like protein"
+Cre06.g251550	GMM:29.5.5	"protein.degradation.serine protease"		"GO:0008233;GO:0006508"	"peptidase activity;proteolysis"	SPP1C	"SPP1C;SPP3;SPPA1-3;g5633.t1"	SPP1C	"SppA, protease IV, signal peptide peptidase, serine endopeptidase of S49 family (ClpP clan)1; expressed only in zygotes; corresponds to probe 2 of MT+ locus in Ferris; probably a pseudogene in mt+: the second S49 domain is missing, due to a frameshift (confirmed in probe 6 and genome sequence), and the first one is degenerate; still, a cDNA was isolated from mt+; in the mt- allele, the second domain is translatable, but appears non functional (mutation in catalytic Ser); SppA proteases are considered assoc"
+Cre06.g309684			"Secretory pathway"						
+Cre06.g265250	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR12	"g5957.t1;Cre06.g265250.t1.1"	HTR12	"replication linked H3; histone gene cluster XII (type 43AB)"
+Cre06.g274400				"GO:0008168;GO:0006480"	"methyltransferase activity;N-terminal protein amino acid methylation"		"SMM19;Cre06.g274400.t1.1;g6154.t1"		"next to Histone cluster VII and XXIV and to SMM20"
+Cre06.g310750	GMM:31.4	"cell.vesicle transport"		"GO:0030126;GO:0030117;GO:0016192;GO:0006886;GO:0005198"	"COPI vesicle coat;membrane coat;vesicle-mediated transport;intracellular protein transport;structural molecule activity"	COPG1	"Cre06.g310750.t1.1;g7191.t1;COPG1;COPG1;g7191.t1;Cre06.g310750.t1.1"	"COPG1;COPG1"	"Expressed Protein. Gamma-COP. Subunit of COP-I complex involved in vesicle trafficking.;Expressed Protein. Gamma-COP. Subunit of COP-I complex involved in vesicle trafficking."
+Cre06.g309951							"g7172.t1;Cre06.g309950.t1.3;g7172.t1;Cre06.g309950.t1.3"		
+Cre06.g249150	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006810;GO:0006468;GO:0005622;GO:0005524;GO:0004672"	"transport;protein phosphorylation;intracellular;ATP binding;protein kinase activity"	MAPKK1	"g5581.t1;MAPKK1"		"MEK1; Dual-Specificity Map Kinase 1; Dual specificity kinase that phosphorylates tyrosine and threonine residues of MAP kinases"
+Cre06.g278156			"Secretory pathway"				"g6299.t1;Cre13.g596150.t1.1;g6299.t1;Cre13.g596150.t1.1"		
+Cre06.g271050	"GMM:23.2.1.2;GMM:23.2"	"nucleotide metabolism.degradation.pyrimidine.uridine nucleosidase;nucleotide metabolism.degradation"				URN1	"URN1;g6081.t1;g6081.t1;URN1"		
+Cre06.g304400	GMM:21.3	redox.heme				SOUL4	"g7046.t1;SOUL4"		"conserved expressed protein with SOUL heme binding motif"
+Cre06.g294250			Mitochondrion			PHC49	"g6812.t1;PHC49;Cre06.g294250.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre06.g274750	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB4	"Cre06.g274750.t1.1;HTB6;g6161.t1;HTB26"	HTB4	"replication linked H2B; histone gene cluster IV (type 43AB)"
+Cre06.g256200	"GMM:27.3.54;GMM:27.3.42"	"RNA.regulation of transcription.histone acetyltransferases;RNA.regulation of transcription.bromodomain proteins"		"GO:0008080;GO:0005515"	"N-acetyltransferase activity;protein binding"	HAT3	"HAT3;Cre06.g256200.t1.1;g5757.t1;Cre06.g256200.t1.1;HAT3;g5757.t1"	"HAT3;HAT3"	"ChromDB HAG342; GNAT superfamily histone acetyltransferase member; GCN5-related N-acetyltransferase; Contains bromodomain;ChromDB HAG342; GNAT superfamily histone acetyltransferase member; GCN5-related N-acetyltransferase; Contains bromodomain"
+Cre06.g278400			Chloroplast				"g6474.t1;Cre06.g278400.t1.1"		
+Cre06.g306079									
+Cre06.g249050							g5578.t1		
+Cre06.g271950	"GMM:31.4;GMM:29.3.4.2"	"cell.vesicle transport;protein.targeting.secretory pathway.golgi"		"GO:0048193;GO:0016020;GO:0008565;GO:0006886;GO:0005737"	"Golgi vesicle transport;membrane;protein transporter activity;intracellular protein transport;cytoplasm"	GC6	"GC6;g6102.t1;Cre06.g271950.t1.1"	CGL135	"Uso1 / p115 like vesicle tethering protein;"
+Cre06.g278115							"Cre13.g594250.t1.2;Cre13.g594250.t1.1;g6258.t1"		
+Cre06.g270150	"GMM:34.99;GMM:34.9;GMM:34.21"	"transport.misc;transport.metabolite transporters at the mitochondrial membrane;transport.calcium"				MCP13	"g6061.t1;MCP13;MITC13"		
+Cre06.g305850	"GMM:29.5;GMM:13.1.3.4.12"	"protein.degradation;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase"		"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	smm20	"SMM20;g7079.t1;SMM20;g7079.t1;g7079.t1;SMM20"		
+Cre06.g278261				"GO:0009058;GO:0003824"	"biosynthetic process;catalytic activity"		"Cre13.g601350.t1.2;g6402.t1;Cre13.g601350.t1.1;Cre13.g601350.t1.2;g6402.t1;Cre13.g601350.t1.1;Cre13.g601350.t1.1;g6402.t1;Cre13.g601350.t1.2"		
+Cre06.g295350			Chloroplast				"Cre06.g295350.t1.1;g6836.t1"		
+Cre06.g261000	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0042651;GO:0015979;GO:0009654;GO:0009523"	"thylakoid membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II"	PSBR	"PSBR;Cre06.g261000.t1.1;g5866.t1"	PSBR1	"similar to At1g79040, chloroplast-targeted"
+Cre06.g294950	GMM:11.1.6	"lipid metabolism.FA synthesis and FA elongation.enoyl ACP reductase"	Chloroplast			ENR1	g6828.t1	ENR1	"Enoyl-[acyl-carrier-protein] reductase, NADH-dependent (FAS complex);"
+Cre06.g292183						CAM13			
+Cre06.g287000	"GMM:33.99;GMM:30.3;GMM:11"	"development.unspecified;signalling.calcium;lipid metabolism"					"g6667.t1;Cre06.g287000.t1.1"		
+Cre06.g294876									
+Cre06.g260750	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG23	"CYG23;g5859.t1;CYG23;g5859.t1"		"Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre06.g255250							g5737.t1		"Arg and Ser rich protein; conserved in Viridiplantae and fungi"
+Cre06.g261900						FAP71	"Cre06.g261900.t1.1;g5885.t1;g5885.t1;Cre06.g261900.t1.1;Cre06.g261900.t1.1;g5885.t1"	"FAP71;FAP71;FAP71"	"Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG2 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400];Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG2 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400];Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG2 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400]"
+Cre06.g302500									
+Cre06.g265200	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO12	"g5956.t1;HFO34;Cre06.g265200.t1.1;HFO46"	HFO12	"replication linked H4; histone gene cluster XII (type 43AB)"
+Cre06.g258550			Mitochondrion				g5812.t1		
+Cre06.g278228			Chloroplast				"Cre13.g599700.t1.1;g6370.t1"		
+Cre06.g278206			Chloroplast				"Cre13.g598550.t1.2;g6348.t1;Cre13.g598550.t1.1"		
+Cre06.g284850							g6623.t1		
+Cre06.g276750							g6203.t1		
+Cre06.g278750	GMM:9.8	"mitochondrial electron transport / ATP synthesis.uncoupling protein"	Mitochondrion			UCP1	"Cre06.g278750.t1.1;g6482.t1"	UCP1	"Belong to mitochondrial substrate carrier family"
+Cre06.g278119			"Secretory pathway"				"Cre13.g594450.t1.2;g6262.t1;Cre13.g594450.t1.1;Cre13.g594450.t1.1;g6262.t1;Cre13.g594450.t1.2;Cre13.g594450.t1.1;Cre13.g594450.t1.2;g6262.t1"		
+Cre06.g278175	"GMM:3.5;GMM:27.1"	"minor CHO metabolism.others;RNA.processing"	Chloroplast	GO:0005515	"protein binding"		"g6318.t1;Cre13.g597050.t1.1;Cre13.g597050.t1.2;Cre13.g597050.t1.1;g6318.t1;Cre13.g597050.t1.2;Cre13.g597050.t1.2;Cre13.g597050.t1.1;g6318.t1;g6318.t1;Cre13.g597050.t1.2;Cre13.g597050.t1.1"		
+Cre06.g301050	"GMM:30.5;GMM:3.5;GMM:29.4;GMM:29.3.4.99"	"signalling.G-proteins;minor CHO metabolism.others;protein.postranslational modification;protein.targeting.secretory pathway.unspecified"		"GO:0006886;GO:0005622;GO:0005525"	"intracellular protein transport;intracellular;GTP binding"	ARL13	"ARL13B;g6965.t1;Cre06.g301050.t1.1;ARL13;Cre06.g301050.t1.1;ARL13;ARL13B;g6965.t1"	"ARL13;ARL13"	"Expressed Protein. ARF-like 13, a member of the ARF/Sar1 family of Ras-like GTPases. Conserved only in organisms with flagella (human orthologs - ARL13a and ARL13b), C. elegans ortholog specifically expressed in flagellated cells, hence a function in the flagellum/basal body can be inferred.;Expressed Protein. ARF-like 13, a member of the ARF/Sar1 family of Ras-like GTPases. Conserved only in organisms with flagella (human orthologs - ARL13a and ARL13b), C. elegans ortholog specifically expressed in flagellated cells, hence a function in the flagellum/basal body can be inferred."
+Cre06.g275850	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA3	"HTA6;Cre06.g275850.t1.1;g6184.t1"	HTA3	"replication linked H2A; histone gene cluster III (type 43BA)"
+Cre06.g284350	GMM:31.3	cell.cycle		GO:0005634	nucleus	CYCD3	g6611.t1	CYCD3	"D-type cyclin homolog. Contains N terminal LXCXE motif that binds retinoblastoma proteins; null-allele mutant was isolated (PMID 29743196)"
+Cre06.g249950	GMM:30.4.1	"signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase"		"GO:0046488;GO:0016307"	"phosphatidylinositol metabolic process;phosphatidylinositol phosphate kinase activity"		g5598.t1		
+Cre06.g296050	GMM:26.7	"misc.oxidases - copper, flavone etc"				FMO6	"FMO6;g6848.t1;FMO6;g6848.t1;FMO6;g6848.t1;g6848.t1;FMO6"		"Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification; linked to FMO3 and FMO7;Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification; linked to FMO3 and FMO7;Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification; linked to FMO3 and FMO7;Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification; linked to FMO3 and FMO7"
+Cre06.g287750	GMM:23.1.1.4	"nucleotide metabolism.synthesis.pyrimidine.dihydroorotate dehydrogenase"		"GO:0055114;GO:0016627;GO:0005737"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;cytoplasm"	PYR8	"PYR8;g6683.t1;Cre06.g287750.t1.1"	PYR8	
+Cre06.g269050	GMM:30.11	signalling.light	Chloroplast			TIC62	"g6037.t1;YCF39-2;Cre06.g269050.t1.1;TIC62;g6037.t1;YCF39-2;Cre06.g269050.t1.1;TIC62;g6037.t1;YCF39-2;Cre06.g269050.t1.1;TIC62;Cre06.g269050.t1.1;YCF39-2;g6037.t1;TIC62;g6037.t1;TIC62;Cre06.g269050.t1.1;YCF39-2"		"Previously described as possible chloroplast protein translocon component Tic62; short chain dehydrogenase belonging to the extended family [PMID: 1223552]. Similarity to the N-terminal domain of Tic62 [PMID: 17374152]., Similar to Ycf39-like proteins from Synechocystis sp. PCC 683 (BAA1812), Cyanophora paradoxa (AAA81188) and Guillardia theta;;Previously described as possible chloroplast protein translocon component Tic62; short chain dehydrogenase belonging to the extended family [PMID: 1223552]. Similarity to the N-terminal domain of Tic62 [PMID: 17374152]., Similar to Ycf39-like proteins from Synechocystis sp. PCC 683 (BAA1812), Cyanophora paradoxa (AAA81188) and Guillardia theta;;Previously described as possible chloroplast protein translocon component Tic62; short chain dehydrogenase belonging to the extended family [PMID: 1223552]. Similarity to the N-terminal domain of Tic62 [PMID: 17374152]., Similar to Ycf39-like proteins from Synechocystis sp. PCC 683 (BAA1812), Cyanophora paradoxa (AAA81188) and Guillardia theta;;Previously described as possible chloroplast protein translocon component Tic62; short chain dehydrogenase belonging to the extended family [PMID: 1223552]. Similarity to the N-terminal domain of Tic62 [PMID: 17374152]., Similar to Ycf39-like proteins from Synechocystis sp. PCC 683 (BAA1812), Cyanophora paradoxa (AAA81188) and Guillardia theta;;Previously described as possible chloroplast protein translocon component Tic62; short chain dehydrogenase belonging to the extended family [PMID: 1223552]. Similarity to the N-terminal domain of Tic62 [PMID: 17374152]., Similar to Ycf39-like proteins from Synechocystis sp. PCC 683 (BAA1812), Cyanophora paradoxa (AAA81188) and Guillardia theta;"
+Cre06.g278194						FAP236	"Cre13.g598000.t1.1;g6337.t1;Cre13.g598000.t1.2"	FAP236	"Identified in proteome of basal body as FAP236; Related to SAXO2 in humans"
+Cre06.g278087			Chloroplast						
+Cre06.g257183									
+Cre06.g311850						HAD1	"HAD1;g7213.t1;g7213.t1;HAD1;g7213.t1;HAD1"		
+Cre06.g272900				"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	AOF3	"g6123.t1;Cre06.g272900.t1.1;EZY10;AOF3;AOF3;g6123.t1;Cre06.g272900.t1.1;EZY10"		"Flavin-containing amine oxidase and early zygote expressed protein [PMID: 18487630];Flavin-containing amine oxidase and early zygote expressed protein [PMID: 18487630]"
+Cre06.g260450	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	Chloroplast	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	LCI20	"Cre06.g260450.t1.1;g5853.t1;g5853.t1;Cre06.g260450.t1.1;g5853.t1;Cre06.g260450.t1.1"	"LCI20;LCI20;LCI20"	"possibly chloroplast-located dicarboxylate transporter, homologous to AtDCT1/2 [PMID:7873543]; Low-CO2 Inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]; conserved in green lineage;possibly chloroplast-located dicarboxylate transporter, homologous to AtDCT1/2 [PMID:7873543]; Low-CO2 Inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]; conserved in green lineage;possibly chloroplast-located dicarboxylate transporter, homologous to AtDCT1/2 [PMID:7873543]; Low-CO2 Inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]; conserved in green lineage"
+Cre06.g283500							"g6592.t1;g6592.t1;g6592.t1"	"POB3;POB3;POB3"	"Found in basal body proteome;Found in basal body proteome;Found in basal body proteome"
+Cre06.g294500							g6817.t1		
+Cre06.g307075			Chloroplast						
+Cre06.g310850	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"g7193.t1;Cre06.g310850.t1.1"		
+Cre06.g266600	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO11	"g5984.t1;HFO11;Cre06.g266600.t1.1;HFO45"	HFO11	"replication linked H4; histone gene cluster XI (type 43AB)"
+Cre06.g271550	GMM:27.3.59	"RNA.regulation of transcription.methyl binding domain proteins"	"Secretory pathway"	"GO:0005634;GO:0003677"	"nucleus;DNA binding"				
+Cre06.g274900	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO4	"HFO26;HFO6;g6164.t1;Cre06.g274900.t1.1"	HFO4	"replication linked H4; histone gene cluster IV (type 43AB)"
+Cre06.g287650	"GMM:31.1;GMM:17.5.1.20"	"cell.organisation;hormone metabolism.ethylene.synthesis-degradation.XBAT32"	"Secretory pathway"				"Cre06.g287650.t1.1;g6681.t1;Cre06.g287650.t1.1;g6681.t1;Cre06.g287650.t1.1;g6681.t1"		
+Cre06.g296250	GMM:29.1.6	"protein.aa activation.lysine-tRNA ligase"	Chloroplast	"GO:0006418;GO:0005524;GO:0004812;GO:0003676;GO:0000166"	"tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleic acid binding;nucleotide binding"	SYK1	"TSK2;g6852.t1;SYK1"	TSK2	"ts-lethal mutant was isolated (PMID 29743196)"
+Cre06.g275200			Chloroplast				g6171.t1		
+Cre06.g278193							"Cre13.g597950.t1.1;g6336.t1;g6336.t1;Cre13.g597950.t1.1"		
+Cre06.g249600							"g5591.t1;Cre06.g249600.t1.1"		
+Cre06.g292450				"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS13	"PUS13;g6776.t1;Cre06.g292450.t1.1;g6776.t1;PUS13;Cre06.g292450.t1.1;PUS13;g6776.t1;Cre06.g292450.t1.1"		
+Cre06.g281000			"Secretory pathway"	GO:0005515	"protein binding"		g6535.t1		
+Cre06.g266350			"Secretory pathway"	GO:0005515	"protein binding"		g5979.t1		
+Cre06.g253758									
+Cre06.g275600	GMM:27.3.60	"RNA.regulation of transcription.NIN-like bZIP-related family"					"Cre06.g275600.t1.1;g6179.t1"		
+Cre06.g298802			Chloroplast						
+Cre06.g299350						FBB15	"g6924.t1;FBB15"	FBB15	"Conserved protein found in ciliated organisms, with unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation"
+Cre06.g293516			Mitochondrion			DEGO2	g6798.t1	DEGO2	"Similar to serine proteases/chaperones of the trypsin-like DegP family (HtrA) (protease Do) but lacks all three catalytic residues: H>G, S>W (confirmed in Volvox ortholog); contains patch of acidic residues that could mediate association with DEGO1; described in Chlamydomonas sourcebook, vol. II,p701"
+Cre06.g280150	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"	PSBP9	"Cre06.g280150.t1.1;PSBP9;g6515.t1"		"similar to 23 kDa subunit of the oxygen evolving system of photosystem II"
+Cre06.g270550			Chloroplast				"Cre06.g270550.t1.1;g6070.t1"		
+Cre06.g288252									
+Cre06.g259350							"g5830.t1;Cre06.g259350.t1.1"		
+Cre06.g281700	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"				g6552.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g304550	GMM:27.1	RNA.processing				PAR1	"PAN2;PAR1;g7050.t1;PAN2;PAR1;g7050.t1;PAR1;g7050.t1;PAN2"	"PAR1;PAR1;PAR1"	"sequence similarity with PAB-dependent poly(A)-specific ribonuclease subunit PAN2 (PAB1P-dependent poly(A)-nuclease) human, yeast. Also similar to ubiquitin specific protease 52 (usp52);sequence similarity with PAB-dependent poly(A)-specific ribonuclease subunit PAN2 (PAB1P-dependent poly(A)-nuclease) human, yeast. Also similar to ubiquitin specific protease 52 (usp52);sequence similarity with PAB-dependent poly(A)-specific ribonuclease subunit PAN2 (PAB1P-dependent poly(A)-nuclease) human, yeast. Also similar to ubiquitin specific protease 52 (usp52)"
+Cre06.g259750			"Secretory pathway"				g5839.t1		
+Cre06.g282850			Mitochondrion				"g6578.t1;g6578.t1"		
+Cre06.g301951									
+Cre06.g269908									
+Cre06.g279100						DPY30	"Cre06.g279100.t1.1;DPY30;g6489.t1"	DPY30	"Chromatin modifying protein complex member; Identified by mutations in C. elegans defective in male sensory behavior; Identified in the flagellar and basal body proteome as FBB12 [PMID: 15137946]; Transcript upregulated during flagellar regeneration [PMID: 15738400]"
+Cre06.g305700			Mitochondrion				"g7076.t1;g7076.t1;g7076.t1"		
+Cre06.g297450			"Secretory pathway"				"Cre06.g297450.t1.1;g6880.t1;Cre06.g297450.t1.1;g6880.t1;g6880.t1;Cre06.g297450.t1.1"		
+Cre06.g299050	GMM:26.5	"misc.acyl transferases"		GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	DGTT3	"Cre06.g299050.t1.1;g6918.t1;g6918.t1;Cre06.g299050.t1.1;g6918.t1;Cre06.g299050.t1.1"	"DGTT3;DGTT3;DGTT3"	
+Cre06.g272400	GMM:26.13	"misc.acid and other phosphatases"	"Secretory pathway"				"g6111.t1;Cre06.g272400.t1.1"		
+Cre06.g278277			"Secretory pathway"						
+Cre06.g309450	GMM:29.5	protein.degradation	Chloroplast				"CPZ;Cre06.g309450.t1.1;g7160.t1"		
+Cre06.g298326									
+Cre06.g287950	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		GO:0005524	"ATP binding"		"SRH13;g6687.t1;g6687.t1;SRH13"		"SNF2-related helicase; null-allele mutant was isolated (PMID 29743196);SNF2-related helicase; null-allele mutant was isolated (PMID 29743196)"
+Cre06.g306250			Chloroplast				"g7095.t1;g7095.t1;g7095.t1"		
+Cre06.g271350	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA8	"Cre06.g271350.t1.1;g6088.t1;HTA40"	HTA8	"replication linked H2A; histone gene cluster VIII (type 34AB)"
+Cre06.g248800							"g5573.t1;Cre06.g248800.t1.1"		
+Cre06.g252000						LZTFL1	"g5643.t1;Cre06.g252000.t1.1;g5643.t1;Cre06.g252000.t1.1"	"LZTFL1;LZTFL1"	"Lztfl1 bridges IFT27 to the BBSome in the removal of hedgehog receptors from cilia;Lztfl1 bridges IFT27 to the BBSome in the removal of hedgehog receptors from cilia"
+Cre06.g251150	"GMM:1.1.99;GMM:1.1.2.1"	"PS.lightreaction.unspecified;PS.lightreaction.photosystem I.LHC-I"	Chloroplast			OHP2	"g5625.t1;OHP1;LIL6;LCI25;Cre06.g251150.t1.1;OHP1;g5625.t1;Cre06.g251150.t1.1;LCI25;LIL6"	"OHP2;OHP2"	"Homologous to stress induced one-helix proteins of Cyanobacteria and land plants and belonging to high-light inducible protein (HLIP) family (LHCII superfamily); described as Low-CO2 inducible gene revealed by cDNA array analyses (LCI25); necessary for productive translation of D1; land plant homolog forms a complex with and co-stabilizes OHP1 and HCF244, coupling psbA translation and co-factor assembly;Homologous to stress induced one-helix proteins of Cyanobacteria and land plants and belonging to high-light inducible protein (HLIP) family (LHCII superfamily); described as Low-CO2 inducible gene revealed by cDNA array analyses (LCI25); necessary for productive translation of D1; land plant homolog forms a complex with and co-stabilizes OHP1 and HCF244, coupling psbA translation and co-factor assembly"
+Cre06.g250902	GMM:13.1.3.4.12	"amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase"		"GO:0046872;GO:0042558;GO:0031419;GO:0009086;GO:0008705;GO:0005622"	"metal ion binding;pteridine-containing compound metabolic process;cobalamin binding;methionine biosynthetic process;methionine synthase activity;intracellular"	METH	"METH;g5619.t1;METH;g5619.t1;g5619.t1;METH;METH;g5619.t1;g5619.t1;METH;METH;g5619.t1;g5619.t1;METH;METH;g5619.t1;g5619.t1;METH"	"METH1;METH1;METH1;METH1;METH1;METH1;METH1;METH1;METH1"	"Contains three pairs of Homocysteine S-methyltransferase/Pterin binding domains before the B12 binding and activation domains; is expressed in preference to METE when Vitamin B12 is present;;Contains three pairs of Homocysteine S-methyltransferase/Pterin binding domains before the B12 binding and activation domains; is expressed in preference to METE when Vitamin B12 is present;;Contains three pairs of Homocysteine S-methyltransferase/Pterin binding domains before the B12 binding and activation domains; is expressed in preference to METE when Vitamin B12 is present;;Contains three pairs of Homocysteine S-methyltransferase/Pterin binding domains before the B12 binding and activation domains; is expressed in preference to METE when Vitamin B12 is present;;Contains three pairs of Homocysteine S-methyltransferase/Pterin binding domains before the B12 binding and activation domains; is expressed in preference to METE when Vitamin B12 is present;;Contains three pairs of Homocysteine S-methyltransferase/Pterin binding domains before the B12 binding and activation domains; is expressed in preference to METE when Vitamin B12 is present;;Contains three pairs of Homocysteine S-methyltransferase/Pterin binding domains before the B12 binding and activation domains; is expressed in preference to METE when Vitamin B12 is present;;Contains three pairs of Homocysteine S-methyltransferase/Pterin binding domains before the B12 binding and activation domains; is expressed in preference to METE when Vitamin B12 is present;;Contains three pairs of Homocysteine S-methyltransferase/Pterin binding domains before the B12 binding and activation domains; is expressed in preference to METE when Vitamin B12 is present;"
+Cre06.g257750			Chloroplast				g5794.t1		
+Cre06.g265800	GMM:29.2.1.1.1.2.28	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L28"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPL28	"g5967.t1;Cre06.g265800.t1.1"	PRPL28	"Chloroplast large ribosomal subunit protein L28"
+Cre06.g267600	"GMM:20.2.5;GMM:16.1.4.5;GMM:16.1.4.4"	"stress.abiotic.light;secondary metabolism.isoprenoids.carotenoids.lycopene beta cyclase;secondary metabolism.isoprenoids.carotenoids.lycopene epsilon cyclase"	Chloroplast	"GO:0016705;GO:0016117"	"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;carotenoid biosynthetic process"	LCYE	"LEC1;g6005.t1;Cre06.g267600.t1.1;LCYE"	LCYE1	"also CrtL-e, LEC; its knock-out in a ZEP mutant imcreases zeaxanthin accumulation"
+Cre06.g296350				"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	ULP1	"g6854.t1;ULP1"	SENP5	
+Cre06.g278102			"Secretory pathway"				"g6245.t1;Cre13.g593650.t1.1;Cre13.g593650.t1.2;Cre13.g593650.t1.2;Cre13.g593650.t1.1;g6245.t1"		
+Cre06.g281250	GMM:11.3.7	"lipid metabolism.phospholipid synthesis.cyclopropane-fatty-acyl-phospholipid synthase"		"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	CFA1	"CFA1;Cre06.g281250.t1.1;g6541.t1;Cre06.g281250.t1.1;g6541.t1;CFA1;Cre06.g281250.t1.1;g6541.t1;CFA1"	"CFA1;CFA1;CFA1"	"Uses AdoMet to introduce a methylene group into fatty acids;Uses AdoMet to introduce a methylene group into fatty acids;Uses AdoMet to introduce a methylene group into fatty acids"
+Cre06.g278238							g6380.t1		
+Cre06.g273450							"g6135.t1;g6135.t1"	"POB11;POB11"	"Found in basal body proteome; Null allele mutant was isolated;Found in basal body proteome; Null allele mutant was isolated"
+Cre06.g281300							"g6543.t1;Cre06.g281300.t1.1"		
+Cre06.g266052			Mitochondrion				g5972.t1		
+Cre06.g291050							"g6746.t1;g6746.t1;g6746.t1"		
+Cre06.g302276									
+Cre06.g309150				GO:0008270	"zinc ion binding"	ROC56	"g7153.t1;ROC56;Cre06.g309150.t1.1;Cre06.g309150.t1.1;g7153.t1;ROC56"		"Zinc-finger containing protein; Matsuo et al.'s (2008) roc56 (rhythm of chloroplast 56) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];Zinc-finger containing protein; Matsuo et al.'s (2008) roc56 (rhythm of chloroplast 56) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618]"
+Cre06.g285350			Mitochondrion				"g6633.t1;g6633.t1;g6633.t1"		
+Cre06.g307150	"GMM:2.2.2.1.2;GMM:2.2.2.1"	"major CHO metabolism.degradation.starch.starch cleavage.beta amylase;major CHO metabolism.degradation.starch.starch cleavage"	Mitochondrion	"GO:0016161;GO:0000272"	"beta-amylase activity;polysaccharide catabolic process"	AMB1	"AMB1;g7114.t1;AMYB1;AMYB1;g7114.t1;AMB1;AMYB1;g7114.t1;AMB1;g7114.t1;AMYB1;AMB1;AMB1;AMYB1;g7114.t1;AMYB1;g7114.t1;AMB1;g7114.t1;AMYB1;AMB1"	"AMB1;AMB1;AMB1;AMB1;AMB1;AMB1;AMB1"	"Belongs to glycoside hydrolase family 14; alpha 1,4-glucan maltohydrolase (EC 3.2.1.2), hydrolyzes the alpha 1,4-glucosidic linkages of starch from the nonreducing ends;Belongs to glycoside hydrolase family 14; alpha 1,4-glucan maltohydrolase (EC 3.2.1.2), hydrolyzes the alpha 1,4-glucosidic linkages of starch from the nonreducing ends;Belongs to glycoside hydrolase family 14; alpha 1,4-glucan maltohydrolase (EC 3.2.1.2), hydrolyzes the alpha 1,4-glucosidic linkages of starch from the nonreducing ends;Belongs to glycoside hydrolase family 14; alpha 1,4-glucan maltohydrolase (EC 3.2.1.2), hydrolyzes the alpha 1,4-glucosidic linkages of starch from the nonreducing ends;Belongs to glycoside hydrolase family 14; alpha 1,4-glucan maltohydrolase (EC 3.2.1.2), hydrolyzes the alpha 1,4-glucosidic linkages of starch from the nonreducing ends;Belongs to glycoside hydrolase family 14; alpha 1,4-glucan maltohydrolase (EC 3.2.1.2), hydrolyzes the alpha 1,4-glucosidic linkages of starch from the nonreducing ends;Belongs to glycoside hydrolase family 14; alpha 1,4-glucan maltohydrolase (EC 3.2.1.2), hydrolyzes the alpha 1,4-glucosidic linkages of starch from the nonreducing ends"
+Cre06.g288800									
+Cre06.g253853			Chloroplast						
+Cre06.g272200			Chloroplast				"Cre06.g272200.t1.1;g6107.t1"		
+Cre06.g308100	GMM:11.8	"lipid metabolism.exotics (steroids, squalene etc)"					"g7133.t1;Cre06.g308100.t1.1;g7133.t1;Cre06.g308100.t1.1"	"ECH2;ECH2"	"3-hydroxyacyl-CoA dehydrogenase;3-hydroxyacyl-CoA dehydrogenase"
+Cre06.g279350	GMM:30.11	signalling.light	Mitochondrion				"g6495.t1;g6495.t1"		
+Cre06.g289800				GO:0005509	"calcium ion binding"	CAM12	"g6724.t1;CAM12;Cre06.g289800.t1.1"		
+Cre06.g306550	GMM:27.1.19	RNA.processing.ribonucleases		"GO:0033897;GO:0003723"	"ribonuclease T2 activity;RNA binding"		"g7101.t1;g7101.t1;g7101.t1"		
+Cre06.g274600							"Cre06.g274600.t1.1;g6158.t1;Cre06.g274600.t1.1;g6158.t1"		
+Cre06.g270700							"g6073.t1;g6073.t1;g6073.t1"		
+Cre06.g299850				GO:0005515	"protein binding"	HLM10	"HLM10;g6934.t1;HLM10;g6934.t1"		
+Cre06.g249650	GMM:27.3	"RNA.regulation of transcription"				CGL55	"g5592.t2;g5592.t2;g5592.t2;g5592.t2;g5592.t2"	"CGL55;CGL55;CGL55;CGL55;CGL55"	"Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre06.g302850							"Cre06.g302850.t1.1;g7011.t1;g7011.t1;Cre06.g302850.t1.1"		
+Cre06.g303950			"Secretory pathway"				"Cre06.g303950.t1.1;g7038.t1;Cre06.g303950.t1.1;g7038.t1"		
+Cre06.g259450			Chloroplast				"g5832.t1;Cre06.g259450.t1.1;g5832.t1;Cre06.g259450.t1.1"		
+Cre06.g278187	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0008270	"zinc ion binding"	MOT4	"g6330.t1;MOT4;Cre13.g597650.t1.1"	MOT4	"Identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre06.g297850	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"	Mitochondrion	"GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777"	"dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity"	DHC12	"PCR4;g6889.t1;DHC1a;PCR4;g6889.t1;DHC1a"	"DHC12;DHC12"	"Putative dynein heavy chain-like ATPase; fragments previously termed PCR4 or DHC1a;Putative dynein heavy chain-like ATPase; fragments previously termed PCR4 or DHC1a"
+Cre06.g301300			Chloroplast						
+Cre06.g278151							"Cre13.g596000.t1.1;g6295.t1"		
+Cre06.g250300	GMM:31.6.1.3.1.2	"cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.cytoplasmic dynein 1b subunits"		"GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777"	"dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity"	DHC16	"DHC1b;FLA24;Cre06.g250300.t1.1;g5606.t1"	DHC16	"Homologue of mammalian cytoplasmic dynein 2 heavy chain. Motor for retrograde intraflagellar transport. Not an inner arm dynein. Upregulated upon deflagellation by nearly 8-fold; null-allele mutant was isolated (PMID 29743196)"
+Cre06.g278279									
+Cre06.g301450			Mitochondrion				"g6974.t1;g6974.t1;g6974.t1"		
+Cre06.g278105			Chloroplast				"Cre13.g593800.t1.1;g6248.t1"		
+Cre06.g263800	GMM:28.1	"DNA.synthesis/chromatin structure"					"SEE2;g5927.t1;SEE2;g5927.t1;g5927.t1;SEE2;SEE2;g5927.t1;SEE2;g5927.t1"		"Putative splicing endonuclease positive effector, related to SEN1;Putative splicing endonuclease positive effector, related to SEN1;Putative splicing endonuclease positive effector, related to SEN1;Putative splicing endonuclease positive effector, related to SEN1;Putative splicing endonuclease positive effector, related to SEN1"
+Cre06.g291250			Mitochondrion				g6750.t1		
+Cre06.g299500							"g6927.t1;Cre06.g299500.t1.1;Cre06.g299500.t1.1;g6927.t1"		
+Cre06.g255100			Chloroplast				g5734.t1		
+Cre06.g279550			Chloroplast				"g6500.t1;g6500.t1"		
+Cre06.g307500	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	Chloroplast			LCIC	"LCIC;g7121.t1;LCIC;g7121.t1;g7121.t1;LCIC"	"LCIC1;LCIC1;LCIC1"	"low-CO2 inducible protein; homologous to LCIB with which it forms a complex; differentially expressed in Volvox regA mutant, impaired in somatic differentiation; regulated by CCM1 [PMID: 15235119]; localization is diffuse in chloroplast stroma under high-CO2 and low-CO2 conditions, but aggregated around pyrenoid as ring-like structure under very low-CO2 conditions; Crystal structure of LCIB and LCIC harbor motifs bearing close resemblance to the active site of canonical beta type carbonic anhydrase, sugges;low-CO2 inducible protein; homologous to LCIB with which it forms a complex; differentially expressed in Volvox regA mutant, impaired in somatic differentiation; regulated by CCM1 [PMID: 15235119]; localization is diffuse in chloroplast stroma under high-CO2 and low-CO2 conditions, but aggregated around pyrenoid as ring-like structure under very low-CO2 conditions; Crystal structure of LCIB and LCIC harbor motifs bearing close resemblance to the active site of canonical beta type carbonic anhydrase, sugges;low-CO2 inducible protein; homologous to LCIB with which it forms a complex; differentially expressed in Volvox regA mutant, impaired in somatic differentiation; regulated by CCM1 [PMID: 15235119]; localization is diffuse in chloroplast stroma under high-CO2 and low-CO2 conditions, but aggregated around pyrenoid as ring-like structure under very low-CO2 conditions; Crystal structure of LCIB and LCIC harbor motifs bearing close resemblance to the active site of canonical beta type carbonic anhydrase, sugges"
+Cre06.g263250							g5914.t1		
+Cre06.g278298			Chloroplast						
+Cre06.g258150							"g5802.t1;g5802.t1"		
+Cre06.g278850	GMM:28.2	DNA.repair				MND1	"g6484.t1;MND1"	MND1	"similar to mammalian GAJ protein"
+Cre06.g255900			"Secretory pathway"				"g5751.t1;Cre06.g255900.t1.1"		
+Cre06.g288550			"Secretory pathway"			ECP76	"ECP76;g6697.t1;Cre06.g288550.t1.1"	ECP76	"extracellular polypeptide Ecp76; induced by sulfur starvation; PMID: 11598240"
+Cre06.g276150							"g6190.t1;Cre06.g276150.t1.1;Cre06.g276150.t1.1;g6190.t1;g6190.t1;Cre06.g276150.t1.1"		
+Cre06.g302950	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion				"g7013.t1;g7013.t1"		
+Cre06.g280900	GMM:31.4	"cell.vesicle transport"		"GO:0016021;GO:0006888;GO:0005801;GO:0000139"	"integral component of membrane;ER to Golgi vesicle-mediated transport;cis-Golgi network;Golgi membrane"	VTI2	"VTI2;GOS1;g6533.t1;GOS1;g6533.t1;VTI2;GOS1;VTI2;g6533.t1;GOS1;VTI2;g6533.t1"	"VTI2;VTI2;VTI2;VTI2"	"Expressed Protein. Similar to GOS1/GS28, Qb-SNAREs involved in intra-Golgi trafficking.;Expressed Protein. Similar to GOS1/GS28, Qb-SNAREs involved in intra-Golgi trafficking.;Expressed Protein. Similar to GOS1/GS28, Qb-SNAREs involved in intra-Golgi trafficking.;Expressed Protein. Similar to GOS1/GS28, Qb-SNAREs involved in intra-Golgi trafficking."
+Cre06.g286000			Mitochondrion				"Cre06.g286000.t1.1;g6647.t1"		
+Cre06.g293000	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006269;GO:0003896"	"DNA replication, synthesis of RNA primer;DNA primase activity"	PRI2	"g6787.t1;PRI2;DIV37"	PRI2	"ts-lethal mutations block in S/M (PMID 25336509)"
+Cre06.g307700			Mitochondrion	"GO:0051607;GO:0003725"	"defense response to virus;double-stranded RNA binding"		"g7125.t1;g7125.t1"		
+Cre06.g261400			Mitochondrion				"g5875.t1;g5875.t1;g5875.t1;g5875.t1;g5875.t1"	"DTH1;DTH1;DTH1;DTH1;DTH1"	"Phosphatidylethanolamine-binding protein that mediates degradation of lipid droplets;Phosphatidylethanolamine-binding protein that mediates degradation of lipid droplets;Phosphatidylethanolamine-binding protein that mediates degradation of lipid droplets;Phosphatidylethanolamine-binding protein that mediates degradation of lipid droplets;Phosphatidylethanolamine-binding protein that mediates degradation of lipid droplets"
+Cre06.g285250	GMM:1.1.1.1	"PS.lightreaction.photosystem II.LHC-II"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCBM6	"Cre06.g285250.t1.1;g6631.t1;g6631.t1;Cre06.g285250.t1.1"	"LHCBM6;LHCBM6"	"Note that in P14273 and AAM18056, L101 is changed to Q, L149 to S and M209 to S;Note that in P14273 and AAM18056, L101 is changed to Q, L149 to S and M209 to S"
+Cre06.g260800	GMM:31.1	cell.organisation		"GO:0034314;GO:0030041;GO:0015629;GO:0005885"	"Arp2/3 complex-mediated actin nucleation;actin filament polymerization;actin cytoskeleton;Arp2/3 protein complex"		"g5861.t1;Cre06.g260800.t1.1;Cre06.g260800.t1.1;g5861.t1"		
+Cre06.g310450	GMM:27.2	RNA.transcription		"GO:0017025;GO:0008270;GO:0006355;GO:0006352"	"TBP-class protein binding;zinc ion binding;regulation of transcription, DNA-templated;DNA-templated transcription, initiation"		"g7183.t1;Cre06.g310450.t1.1"		
+Cre06.g278169							"g6312.t1;Cre13.g596750.t1.1;Cre13.g596750.t1.2"		
+Cre06.g262800	"GMM:28.1;GMM:27.3.63"	"DNA.synthesis/chromatin structure;RNA.regulation of transcription.PHD finger transcription factor"		"GO:0005634;GO:0005515"	"nucleus;protein binding"		"g5903.t1;Cre06.g262800.t1.1;g5903.t1;Cre06.g262800.t1.1"		
+Cre06.g303700			"Secretory pathway"				"g7033.t1;Cre06.g303700.t1.1"		
+Cre06.g257100			Mitochondrion						
+Cre06.g267050			Mitochondrion	GO:0005515	"protein binding"		"g5993.t1;Cre06.g267050.t1.1"		
+Cre06.g265750	GMM:29.5.7	protein.degradation.metalloprotease					"g5966.t1;g5966.t1"		
+Cre06.g254200	GMM:26.16	misc.myrosinases-lectin-jacalin	Chloroplast				"Cre06.g254200.t1.1; g5714.t1;SRL1C;SRLc"		"One of three genes SRL genes of unknown function in the mt+ mating locus (Cre06.g254200,Cre06.g254224,Cre06.g254250);Arose through a duplication-insertion of a 5.7 kb segment of SRR16 from Chromosome 10 into the mt+ locus"
+Cre06.g267800	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	"Secretory pathway"			MCP8	"MITC8;g6009.t1;MCP8;MCP8;MITC8;g6009.t1;MITC8;g6009.t1;MCP8"	"MML1;MML1;MML1"	"Similarity to Manganese Trafficking factor for Mitochondrial 1 (MTM1) from yeast;Similarity to Manganese Trafficking factor for Mitochondrial 1 (MTM1) from yeast;Similarity to Manganese Trafficking factor for Mitochondrial 1 (MTM1) from yeast"
+Cre06.g259050	GMM:7.1.1	"OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)"					g5824.t1		
+Cre06.g298150							"g6896.t1;Cre06.g298150.t1.1;g6896.t1;Cre06.g298150.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre06.g288400	GMM:29.2.1.1.1.1.11	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S11"	Mitochondrion	"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	MRPS11	"g6694.t1;uS11m;MRPS11"	MRPS11	
+Cre06.g296150			Chloroplast	"GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723"	"DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance"		"Cre06.g296150.t1.1;g6850.t1"		
+Cre06.g250400	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB28			
+Cre06.g309000	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	Chloroplast	"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	NAR1.2	"Cre06.g309000.t1.1;LCIA;g7150.t1;NAR1.2"	NAR1B	"Inorganic carbon channel localized at chloroplast membrane; Nitrite transporter-homologue, possibly chloroplastic [PMID: 11912227, AY612639]; significant similarities with two anion transporters, the chloroplastic nitrite transporter NAR1 and formate transporters in bacteria. LCIA Induced by CO2-limiting stress but not regulated by nitrogen species through CCM1 [PMID: 15235119]"
+Cre06.g253679			Chloroplast						
+Cre06.g286500							"g6657.t1;Cre06.g286500.t1.1;Cre06.g286500.t1.1;g6657.t1;g6657.t1;Cre06.g286500.t1.1"		
+Cre06.g282800	GMM:6.9	"gluconeogenesis / glyoxylate cycle.isocitrate lyase"				ICL1	"g6576.t1;Cre06.g282800.t1.1;Cre06.g282800.t1.1;g6576.t1;g6576.t1;Cre06.g282800.t1.1"	"ICL1;ICL1;ICL1"	"isocitrate lyase (EC 4.1.3.1); isocitrase; 98% identical to cDNA (AAB61446) [PMID: 9049260];isocitrate lyase (EC 4.1.3.1); isocitrase; 98% identical to cDNA (AAB61446) [PMID: 9049260];isocitrate lyase (EC 4.1.3.1); isocitrase; 98% identical to cDNA (AAB61446) [PMID: 9049260]"
+Cre06.g278208	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					"Cre13.g598650.t1.2;g6350.t1;Cre13.g598650.t1.1"		
+Cre06.g266950	GMM:27.3.9	"RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family"		"GO:0043565;GO:0008270;GO:0006355;GO:0003700"	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g5991.t1;g5991.t1;g5991.t1;g5991.t1"		
+Cre06.g278125	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005856;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;cytoskeleton;ATP binding;microtubule motor activity"		"Cre13.g594750.t1.1;g6271.t1;Cre13.g594750.t1.2;Cre13.g594750.t1.1;Cre13.g594750.t1.2;g6271.t1"		
+Cre06.g263150							"Cre06.g263150.t1.1;g5911.t1"		
+Cre06.g303536			Mitochondrion				"Cre06.g303550.t1.3;g7029.t1"		
+Cre06.g278215	"GMM:13.2.6.3;GMM:13.2.3.5"	"amino acid metabolism.degradation.aromatic aa.tryptophan;amino acid metabolism.degradation.aspartate family.lysine"		"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"g6357.t1;Cre13.g599050.t1.2;Cre13.g599050.t1.1;g6357.t1;Cre13.g599050.t1.2;Cre13.g599050.t1.1;Cre13.g599050.t1.2;g6357.t1;Cre13.g599050.t1.1"	"HIBCH1;HIBCH1;HIBCH1"	
+Cre06.g284450	"GMM:29.3.99;GMM:26.13"	"protein.targeting.unknown;misc.acid and other phosphatases"					"Cre06.g284450.t1.1;PPP24;g6614.t1"		"related to NLI interacting factor"
+Cre06.g255150									
+Cre06.g266800	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		GO:0005488	binding		g5988.t1		
+Cre06.g255600			Chloroplast			EZY1A	"EZY24;EZY1;g5744.t1"	EZY1A	"Unknown protein, zygote-specific, originally called Class III, member of a tandemly repeated gene family [PMID: 3614194]; localizes to chloroplast nucleoids, expression is suppressed after UV treatment of plus gametes, postulated involvement in uniparental inheritance of chloroplast DNA [PMID: 8374951]. EZY1 transcripts are not detected in cells expressing GSP1 ectopically [PMID: 11641281]. Genbank entry L20945."
+Cre06.g285926									
+Cre06.g278113							"Cre13.g594150.t1.1;g6256.t1"		
+Cre06.g278266			Mitochondrion				g6407.t1		
+Cre06.g278214			Chloroplast				"g6356.t1;Cre13.g598950.t1.1;Cre13.g598950.t1.1;g6356.t1;g6356.t1;Cre13.g598950.t1.1"		
+Cre06.g301802							"g6984.t1;Cre06.g301802.t1.1"		
+Cre06.g310200			Chloroplast				"g7177.t1;Cre06.g310200.t1.1"	DGAT3	"A soluble type 3 DGAT that is widely conserved in green algae"
+Cre06.g253903									
+Cre06.g248950	"GMM:29.5.11.5;GMM:29.5.11"	"protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin"	"Secretory pathway"	"GO:0036459;GO:0016579"	"thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination"		"g5576.t1;g5576.t1;g5576.t1;g5576.t1"		
+Cre06.g252600			Mitochondrion				"522872;g5656.t1;g5656.t1;522872"		
+Cre06.g278166	GMM:2.1	"major CHO metabolism.synthesis"				PRL4	"PRL4;g6309.t1;Cre13.g596650.t1.1;g6309.t1;PRL4;Cre13.g596650.t1.1;PRL4;g6309.t1;Cre13.g596650.t1.1;Cre13.g596650.t1.1;PRL4;g6309.t1;Cre13.g596650.t1.1;g6309.t1;PRL4"		"CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein;CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein;CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein;CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein;CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein"
+Cre06.g309850			Mitochondrion				g7170.t2		
+Cre06.g262000			Mitochondrion			SNR5	"SNR5;Cre06.g262000.t1.1;g5887.t1"		
+Cre06.g307800	GMM:29.6.3.2	"protein.folding.immunophilins (IMM).cyclophilins"	"Secretory pathway"			CYN49	"g7127.t1;Cre06.g307800.t1.1;g7127.t1;Cre06.g307800.t1.1"	"CYN49;CYN49"	"Peptidyl-prolyl cis-transisomerase, cyclophilin type; most similar to CYN48-CYN53 and bacterial cyclophilins;Peptidyl-prolyl cis-transisomerase, cyclophilin type; most similar to CYN48-CYN53 and bacterial cyclophilins"
+Cre06.g252913			"Secretory pathway"						
+Cre06.g297950							"g6892.t2;g6892.t2"		
+Cre06.g246958									
+Cre06.g274994	GMM:31.4	"cell.vesicle transport"					"Cre06.g274994.t1.1;g6166.t1"		
+Cre06.g268450	GMM:33.99	development.unspecified		GO:0005515	"protein binding"		g6023.t1		
+Cre06.g307600	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006334;GO:0005634"	"nucleosome assembly;nucleus"		"Cre06.g307600.t1.1;g7123.t1"		"ChromDB NFA345; a member of a small protein family related to Nucleosome Assembly Protein 1 (NAP1) in mouse and yeast. NAP proteins are thought to act as histone chaperones"
+Cre06.g252200	"GMM:30.5;GMM:29.3.3"	"signalling.G-proteins;protein.targeting.chloroplast"		GO:0005525	"GTP binding"	TOC34	"g5647.t1;Cre06.g252200.t1.1;Cre06.g252200.t1.1;g5647.t1"	"TOC34;TOC34"	"GTPase involved in recognition of the chloroplast transit peptide; contains a short acidic N-terminal domain missing in land plants which instead show an acidic TOC159 N-terminus; this has been proposed to affect the discrimination between mt and cp transit peptides;GTPase involved in recognition of the chloroplast transit peptide; contains a short acidic N-terminal domain missing in land plants which instead show an acidic TOC159 N-terminus; this has been proposed to affect the discrimination between mt and cp transit peptides"
+Cre06.g278254	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g6395.t1;Cre13.g601000.t1.1;Cre13.g601000.t1.2;g6395.t1;Cre13.g601000.t1.2;Cre13.g601000.t1.1;g6395.t1;Cre13.g601000.t1.1;Cre13.g601000.t1.2;Cre13.g601000.t1.1;Cre13.g601000.t1.2;g6395.t1"		
+Cre06.g297904	GMM:27.3.6	"RNA.regulation of transcription.basic helix-loop-helix family (bHLH)"	Mitochondrion	"GO:0033699;GO:0006281;GO:0003677"	"DNA 5'-adenosine monophosphate hydrolase activity;DNA repair;DNA binding"		"g6891.t1;Cre06.g297904.t1.1;g6891.t1;Cre06.g297904.t1.1;Cre06.g297904.t1.1;g6891.t1;Cre06.g297904.t1.1;g6891.t1;g6891.t1;Cre06.g297904.t1.1"		
+Cre06.g252100			Chloroplast				"g5645.t1;Cre06.g252100.t1.1"		
+Cre06.g278259							"g6400.t1;Cre13.g601250.t1.2;Cre13.g601250.t1.1"		
+Cre06.g269150			Chloroplast				"g6039.t1;g6039.t1;g6039.t1;g6039.t1;g6039.t1"		
+Cre06.g294050							"g6808.t1;g6808.t1;g6808.t1;g6808.t1"		
+Cre06.g305950	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB32	"CSB32;g7081.t1;Cre06.g305950.t1.1;TNP18"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre06.g265350	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA12	"Cre06.g265350.t1.1;HTA42;g5959.t1;HTA11"	HTA12	"replication linked H2A; histone gene cluster XII (type 34BA)"
+Cre06.g278268			"Secretory pathway"						
+Cre06.g308950							"Cre06.g308950.t1.1;g7149.t1"		
+Cre06.g298550	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast	"GO:0055114;GO:0050661;GO:0050660;GO:0004499"	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO7	"FMO7;g6906.t2"		"Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification; more closely related to bacterial than to plant homologues; linked to FMO6 and FMO3"
+Cre06.g289500			Chloroplast				"g6718.t1;Cre06.g289500.t1.1"		
+Cre06.g278122			"Secretory pathway"	GO:0008289	"lipid binding"		"g6268.t1;Cre13.g594650.t1.2;Cre13.g594650.t1.1"		
+Cre06.g264200	GMM:8.1.7	"TCA / organic transformation.TCA.succinate dehydrogenase"	Mitochondrion	"GO:0051536;GO:0009055"	"iron-sulfur cluster binding;electron carrier activity"	SDH2	"SDH2;g5936.t1;Cre06.g264200.t1.1;Cre06.g264200.t1.1;SDH2;g5936.t1;SDH2;Cre06.g264200.t1.1;g5936.t1;SDH2;g5936.t1;Cre06.g264200.t1.1"	"SDH2;SDH2;SDH2;SDH2"	"Iron-sulfur subunit of mitochondrial succinate dehydrogenase [ubiquinone] (complex II), precursor of iron-sulfur protein, (Ip, iron-sulfur subunit of complex II); SDHB;Iron-sulfur subunit of mitochondrial succinate dehydrogenase [ubiquinone] (complex II), precursor of iron-sulfur protein, (Ip, iron-sulfur subunit of complex II); SDHB;Iron-sulfur subunit of mitochondrial succinate dehydrogenase [ubiquinone] (complex II), precursor of iron-sulfur protein, (Ip, iron-sulfur subunit of complex II); SDHB;Iron-sulfur subunit of mitochondrial succinate dehydrogenase [ubiquinone] (complex II), precursor of iron-sulfur protein, (Ip, iron-sulfur subunit of complex II); SDHB"
+Cre06.g292800	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC17	"g6783.t1;UBC17"	UBC17	"E2 Ubiquitin conjugating enzyme, subclass VI"
+Cre06.g260000			"Secretory pathway"				"g5844.t1;g5844.t1;g5844.t1"		
+Cre06.g286800				"GO:0003729;GO:0003723"	"mRNA binding;RNA binding"	HBP1	"Cre06.g286800.t1.1;g6663.t1;HBP1"	HBP1	"Homologous to histone stem-loop/hairpin binding proteins involved in regulating replication-linked histone gene mRNA stability."
+Cre06.g286900			Mitochondrion				"g6665.t1;g6665.t1;g6665.t1;g6665.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre06.g278173						OPR59	"Cre13.g596950.t1.1;g6316.t1;Cre13.g596950.t1.1;g6316.t1;Cre13.g596950.t1.1;g6316.t1;g6316.t1;Cre13.g596950.t1.1"	"OPR59;OPR59;OPR59;OPR59"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; Cr_06_28609.2, the most frequent isoform, is predicted organelle targeted;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; Cr_06_28609.2, the most frequent isoform, is predicted organelle targeted;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; Cr_06_28609.2, the most frequent isoform, is predicted organelle targeted;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; Cr_06_28609.2, the most frequent isoform, is predicted organelle targeted"
+Cre06.g310545			Mitochondrion						
+Cre06.g311750	GMM:30.2.11	"signalling.receptor kinases.leucine rich repeat XI"	Mitochondrion	GO:0005515	"protein binding"		g7211.t1		
+Cre06.g285451							"g6635.t1;Cre06.g285450.t1.3"		
+Cre06.g262050	GMM:3.5	"minor CHO metabolism.others"	"Secretory pathway"	"GO:0016853;GO:0005975"	"isomerase activity;carbohydrate metabolic process"	AEP1	"Cre06.g262050.t1.1;AEP1;g5888.t1"	AEP1	"putative aldose-1-epimerase (EC 5.1.3.3) (aldose mutarotase), possible chloroplast localization"
+Cre06.g295250	GMM:26.13	"misc.acid and other phosphatases"	Chloroplast				"g6834.t1;g6834.t1;g6834.t1;g6834.t1"		
+Cre06.g276050	GMM:3.5	"minor CHO metabolism.others"	"Secretory pathway"				"g6188.t1;AKR2;Cre06.g276050.t1.1"		
+Cre06.g267950	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR10	"HTR10;Cre06.g267950.t1.1;g6012.t1"	HTR10	"replication linked H3; histone gene cluster X (type 34AB)"
+Cre06.g293700	GMM:29.2.1.1.1.2.12	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L12"	Mitochondrion	"GO:0006412;GO:0003735"	"translation;structural constituent of ribosome"	MRPL7	"MRPL7;Cre06.g293700.t1.1;g6801.t1;L12"		"GTP binding protein"
+Cre06.g296450	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Chloroplast				"g6856.t3;g6856.t3;g6856.t3;g6856.t3;g6856.t3;g6856.t3"		
+Cre06.g300700			Chloroplast				"g6957.t1;FLR?"		"This is an NAD dependent epimerase/dehydratase (see SNE series)"
+Cre06.g301850							g6986.t1		
+Cre06.g292900	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast				"g6785.t1;g6785.t1"		
+Cre06.g292216			Chloroplast						
+Cre06.g281100	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	MUT9	"ROC94;g6537.t1;ROC94;g6537.t1;ROC94;g6537.t1"	"MUT9;MUT9;MUT9"	"Serine/threonine protein kinase involved in transcriptional gene silencing (AAL60199) [PMID: 11782532]; Matsuo et al.'s (2008) roc94 (rhythm of chloroplast 94) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];Serine/threonine protein kinase involved in transcriptional gene silencing (AAL60199) [PMID: 11782532]; Matsuo et al.'s (2008) roc94 (rhythm of chloroplast 94) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];Serine/threonine protein kinase involved in transcriptional gene silencing (AAL60199) [PMID: 11782532]; Matsuo et al.'s (2008) roc94 (rhythm of chloroplast 94) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618]"
+Cre06.g304300	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0005839;GO:0004298"	"proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity"	POA6	"Cre06.g304300.t1.1;POA6;g7044.t1;g7044.t1;POA6;Cre06.g304300.t1.1;Cre06.g304300.t1.1;g7044.t1;POA6"	"POA6;POA6;POA6"	"20S proteasome alpha subunit F (type 1);20S proteasome alpha subunit F (type 1);20S proteasome alpha subunit F (type 1)"
+Cre06.g278103			"Secretory pathway"	"GO:0055114;GO:0016715;GO:0005507;GO:0004497"	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;copper ion binding;monooxygenase activity"		"Cre13.g593700.t1.1;g6246.t1;Cre13.g593700.t1.2"		
+Cre06.g281800			Chloroplast				"Cre06.g281800.t1.1;g6555.t1;g6555.t1;Cre06.g281800.t1.1"		
+Cre06.g303050			Mitochondrion			NIT3	"NIT3;g7015.t1;Cre06.g303050.t1.1"	NIT3	
+Cre06.g277100				"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"Cre06.g277100.t1.1;g6211.t1;Cre06.g277100.t1.1;g6211.t1"		
+Cre06.g275950						FAP395	"g6186.t1;g6186.t1;g6186.t1;g6186.t1"	"FAP395;FAP395;FAP395;FAP395"	"Chlamydomonas specific protein;Chlamydomonas specific protein;Chlamydomonas specific protein;Chlamydomonas specific protein"
+Cre06.g305516			Mitochondrion						
+Cre06.g272550	"GMM:27.1.2;GMM:27.1.19"	"RNA.processing.RNA helicase;RNA.processing.ribonucleases"							
+Cre06.g258700	"GMM:8;GMM:6;GMM:13.2.4.4;GMM:11.1.1.2.4"	"TCA / organic transformation;gluconeogenesis / glyoxylate cycle;amino acid metabolism.degradation.branched chain group.leucine;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.biotin carboxylase"		GO:0003824	"catalytic activity"	PYC1	"g5817.t1;PYC1;g5817.t1;PYC1;g5817.t1;PYC1"	"PYC1;PYC1;PYC1"	"Pyruvate carboxylase [EC:6.4.1.1]; a biotin-dependent enzyme; catalyses the ATP-dependent carboxylation of pyruvate to oxaloacetate; enzyme is essential in gluconeogenesis;Pyruvate carboxylase [EC:6.4.1.1]; a biotin-dependent enzyme; catalyses the ATP-dependent carboxylation of pyruvate to oxaloacetate; enzyme is essential in gluconeogenesis;Pyruvate carboxylase [EC:6.4.1.1]; a biotin-dependent enzyme; catalyses the ATP-dependent carboxylation of pyruvate to oxaloacetate; enzyme is essential in gluconeogenesis"
+Cre06.g257550	"GMM:9.8;GMM:34.9"	"mitochondrial electron transport / ATP synthesis.uncoupling protein;transport.metabolite transporters at the mitochondrial membrane"				UCP2	"g5789.t1;Cre06.g257550.t1.1;UCP2"	UCP2A	"Belong to mitochondrial substrate carrier family; Paralog of UCP2C (Cre15.g641200); Null-allele mutant was isolated (PMID 29743196)"
+Cre06.g273000	GMM:29.4	"protein.postranslational modification"					"g6125.t1;Cre06.g273000.t1.1;Cre06.g273000.t1.1;g6125.t1"		
+Cre06.g291150	"GMM:27.1.2;GMM:27.1;GMM:17.5.3"	"RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated"	Mitochondrion	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL29	"g6748.t1;HEL29;g6748.t1;HEL29"		
+Cre06.g280227			"Secretory pathway"				"g6517.t1;Cre06.g280227.t1.1;Cre06.g280227.t1.1;g6517.t1;g6517.t1;Cre06.g280227.t1.1"		
+Cre06.g299476			Chloroplast				g6926.t1		
+Cre06.g278135	GMM:29.2.1.2.2.21	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L21"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL21	"Cre13.g595250.t1.1;RPL21;g6280.t1;RPL21;g6280.t1;Cre13.g595250.t1.1;Cre13.g595250.t1.1;g6280.t1;RPL21;RPL21;Cre13.g595250.t1.1;g6280.t1;Cre13.g595250.t1.1;g6280.t1;RPL21;RPL21;g6280.t1;Cre13.g595250.t1.1;Cre13.g595250.t1.1;g6280.t1;RPL21;RPL21;Cre13.g595250.t1.1;g6280.t1;Cre13.g595250.t1.1;g6280.t1;RPL21;Cre13.g595250.t1.1;RPL21;g6280.t1;RPL21;Cre13.g595250.t1.1;g6280.t1;Cre13.g595250.t1.1;g6280.t1;RPL21;Cre13.g595250.t1.1;RPL21;g6280.t1"	"RPL21;RPL21;RPL21;RPL21;RPL21;RPL21;RPL21;RPL21;RPL21;RPL21;RPL21;RPL21;RPL21"	"Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit"
+Cre06.g306350	"GMM:34.9;GMM:1.1.5.2"	"transport.metabolite transporters at the mitochondrial membrane;PS.lightreaction.other electron carrier (ox/red).ferredoxin"	Chloroplast	"GO:0051536;GO:0009055"	"iron-sulfur cluster binding;electron carrier activity"	FDX3	"Cre06.g306350.t1.1;g7097.t1;Cre06.g306350.t1.1;g7097.t1"	"FDX3;FDX3"	"Fe2S2 containing redox protein, predicted chloroplast localization; PMID 28620699: Ferredoxin with 2Fe-2S iron-sulfur cluster binding domain;Fe2S2 containing redox protein, predicted chloroplast localization; PMID 28620699: Ferredoxin with 2Fe-2S iron-sulfur cluster binding domain"
+Cre06.g303251							"g7022.t1;g7022.t1"		
+Cre06.g311100			Mitochondrion				"g7198.t1;Cre06.g311100.t1.1"		
+Cre06.g278182			Chloroplast				"g6325.t1;Cre13.g597400.t1.1"		
+Cre06.g253756			Chloroplast						
+Cre06.g287400	"GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4"	"cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"STK23;g6676.t1;STPK23;g6676.t1;STK23;STPK23;STPK23;g6676.t1;STK23;g6676.t1;STK23;STPK23;STPK23;STK23;g6676.t1"		"Serine/Threonine Protein Kinase Homolog 23, hypothetical;Serine/Threonine Protein Kinase Homolog 23, hypothetical;Serine/Threonine Protein Kinase Homolog 23, hypothetical;Serine/Threonine Protein Kinase Homolog 23, hypothetical;Serine/Threonine Protein Kinase Homolog 23, hypothetical"
+Cre06.g297250			Mitochondrion				g6877.t2		
+Cre06.g278650							"g6480.t1;g6480.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre06.g272100				"GO:0043399;GO:0019988"	"tRNA A64-2'-O-ribosylphosphate transferase activity;charged-tRNA amino acid modification"		g6105.t1		
+Cre06.g264350	"GMM:29.2.1.1.4.2;GMM:29.2.1.1.3.2.13;GMM:29.2.1.1.1.2.13"	"protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L13;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L13"	Chloroplast	"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	PRPL13	"Cre06.g264350.t1.1;g5939.t1"	PRPL13	"imported to chloroplast; Chloroplast large ribosomal subunit protein L13"
+Cre06.g278231	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g6373.t1;Cre13.g599850.t1.1"		
+Cre06.g278108			Mitochondrion	GO:0008080	"N-acetyltransferase activity"		"Cre13.g593900.t1.1;Cre13.g593900.t1.2;g6251.t2"		
+Cre06.g279000	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0005839;GO:0004298"	"proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity"	PBA1	"g6487.t1;PBA1;Cre06.g279000.t1.1;Cre06.g279000.t1.1;PBA1;g6487.t1"	"PBA1;PBA1"	"20S proteasome beta subunit A1; (PRE3) peptidylglutamyl hydrolyzing activity;20S proteasome beta subunit A1; (PRE3) peptidylglutamyl hydrolyzing activity"
+Cre06.g270000							g6058.t1		
+Cre06.g271650							g6096.t1		
+Cre06.g295100			"Secretory pathway"				"EEP4;g6831.t1;g6831.t1;EEP4;g6831.t1;EEP4;g6831.t1;EEP4"		
+Cre06.g250500	GMM:3.5	"minor CHO metabolism.others"	Chloroplast	GO:0052855	"ADP-dependent NAD(P)H-hydrate dehydratase activity"		"Cre06.g250500.t1.1;g5610.t1;g5610.t1;Cre06.g250500.t1.1"		
+Cre06.g288100	"GMM:27.1.5;GMM:25"	"RNA.processing.base modifications;C1-metabolism"		"GO:0008168;GO:0006139"	"methyltransferase activity;nucleobase-containing compound metabolic process"		"g6690.t1;Cre06.g288100.t1.1"		
+Cre06.g296900							"Cre06.g296900.t1.1;g6865.t1;g6865.t1;Cre06.g296900.t1.1"		
+Cre06.g257850	GMM:29.4	"protein.postranslational modification"	Chloroplast	GO:0003824	"catalytic activity"		"g5796.t1;Cre06.g257850.t1.1;PPP21;PBCP;PBCP;PPP21;Cre06.g257850.t1.1;g5796.t1"	"PBCP1;PBCP1"	"Involved, together with PPH1 (Cre04.g218150), in state transitions and thylakoid protein de-phosphorylation, similar to PBCP of higher plants; Is genetically linked to paralog PBCP2 (Cre06.g256300);Involved, together with PPH1 (Cre04.g218150), in state transitions and thylakoid protein de-phosphorylation, similar to PBCP of higher plants; Is genetically linked to paralog PBCP2 (Cre06.g256300)"
+Cre06.g278276			"Secretory pathway"						
+Cre06.g254450	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX		GO:0005515	"protein binding"		"g5724.t1;Cre06.g254450.t1.1"		
+Cre06.g276600	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR2	"g6200.t1;Cre06.g276600.t1.1"	HTR2	"replication linked H3; histone gene cluster II (type 43AB)"
+Cre06.g293362							"Cre06.g293362.t1.1;g6795.t1"		
+Cre06.g262750			Mitochondrion				"g5902.t1;g5902.t1"		
+Cre06.g278132			Mitochondrion				"g6277.t1;Cre13.g595050.t1.1"		
+Cre06.g280000							g6512.t3		
+Cre06.g300450	GMM:29.5	protein.degradation	Chloroplast	GO:0005524	"ATP binding"		"g6952.t1;g6952.t1"		
+Cre06.g305250	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion				g7065.t1		
+Cre06.g290200	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG39	"Cre06.g290200.t1.1;g6732.t1;CYG39"		"similar to guanylate cyclase soluble, beta-2 chain (GCS-beta-2) [Bos taurus]"
+Cre06.g278241							"Cre13.g600400.t1.1;Cre13.g600400.t1.2;g6383.t1"		
+Cre06.g283634				GO:0006355	"regulation of transcription, DNA-templated"		"g6595.t2;g6595.t2;g6595.t2;g6595.t2;g6595.t2;g6595.t2"		
+Cre06.g274101	GMM:28.1.3.2.3	"DNA.synthesis/chromatin structure.histone.core.H3"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR6	"HTR33;HTR32;g6148.t1"	HTR6	"replication linked H3; histone gene cluster VI (type 34AB)"
+Cre06.g272475							"Cre06.g272489.t1.2;g6113.t1;Cre06.g272489.t1.2;g6113.t1;Cre06.g272489.t1.2;g6113.t1"		
+Cre06.g290500	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0005515;GO:0004672"	"protein phosphorylation;ATP binding;protein binding;protein kinase activity"		"g6738.t1;GEX63"		"Similar to phosphatidylinositol 3-kinase p150 regulatory subunit. ts lethal mutations isolated (PMID 25336509)"
+Cre06.g295650							g6843.t1		
+Cre06.g300966			"Secretory pathway"						
+Cre06.g270350	"GMM:2.2.2.1.2;GMM:2.2.2.1"	"major CHO metabolism.degradation.starch.starch cleavage.beta amylase;major CHO metabolism.degradation.starch.starch cleavage"	Mitochondrion	"GO:0016161;GO:0000272"	"beta-amylase activity;polysaccharide catabolic process"	AMB2	"AMYB2;AMB2;g6066.t1;AMB2;AMYB2;g6066.t1;g6066.t1;AMYB2;AMB2"	"AMB2;AMB2;AMB2"	"Belongs to glycoside hydrolase family 14; alpha 1,4-glucan maltohydrolase (EC 3.2.1.2), hydrolyzes the alpha 1,4-glucosidic linkages of starch from the nonreducing ends.; null-allele mutant was isolated (PMID 29743196);Belongs to glycoside hydrolase family 14; alpha 1,4-glucan maltohydrolase (EC 3.2.1.2), hydrolyzes the alpha 1,4-glucosidic linkages of starch from the nonreducing ends.; null-allele mutant was isolated (PMID 29743196);Belongs to glycoside hydrolase family 14; alpha 1,4-glucan maltohydrolase (EC 3.2.1.2), hydrolyzes the alpha 1,4-glucosidic linkages of starch from the nonreducing ends.; null-allele mutant was isolated (PMID 29743196)"
+Cre06.g292700	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"CKIN2.7;SNRK2.7;g6781.t1;Cre06.g292700.t1.1;Cre06.g292700.t1.1;g6781.t1;CKIN2.7;SNRK2.7"	"SNRK2G;SNRK2G"	"Mediates abiotic stress responses;Mediates abiotic stress responses"
+Cre06.g264900	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB13	"g5950.t1;HTB13"	HTB13	"replication linked H2B; histone gene cluster XIII (type 43AB)"
+Cre06.g278191							"g6334.t1;Cre13.g597850.t1.1;Cre13.g597850.t1.2"		
+Cre06.g278289	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion						
+Cre06.g306850	"GMM:29.2.3;GMM:28.1"	"protein.synthesis.initiation;DNA.synthesis/chromatin structure"		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"	HEL31	"Cre06.g306850.t1.1;g7108.t1;HEL31;HEL31;Cre06.g306850.t1.1;g7108.t1;g7108.t1;Cre06.g306850.t1.1;HEL31"		
+Cre06.g283300	GMM:31.1	cell.organisation					"Cre06.g283300.t1.1;g6588.t1"		
+Cre06.g303483			Mitochondrion				"Cre06.g303483.t1.1;g7027.t1;g7027.t1;Cre06.g303483.t1.1;Cre06.g303483.t1.1;g7027.t1"		
+Cre06.g291500	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"				RWP6	"RWP6;Cre06.g291500.t1.1;g6755.t1;g6755.t1;RWP6;Cre06.g291500.t1.1;Cre06.g291500.t1.1;g6755.t1;RWP6"		"putative RWP-RK domain transcription factor, however the domain is non-canonical in this gene (NWPsRK);putative RWP-RK domain transcription factor, however the domain is non-canonical in this gene (NWPsRK);putative RWP-RK domain transcription factor, however the domain is non-canonical in this gene (NWPsRK)"
+Cre06.g268925									
+Cre06.g280300	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	"ubiquitin-protein transferase activity"		"g6519.t1;g6519.t1;g6519.t1;g6519.t1;g6519.t1;g6519.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre06.g271850	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"Cre06.g271850.t1.1;g6100.t1;Cre06.g271850.t1.1;g6100.t1;g6100.t1;Cre06.g271850.t1.1"		
+Cre06.g304850							g7056.t1		
+Cre06.g261200				"GO:0055114;GO:0016491;GO:0006633;GO:0005506"	"oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding"	ERG5	"ERG25;ERG5;Cre06.g261200.t1.1;g5872.t1"	ERG5	"similar to SUR2 proteins from Arabidopsis and yeast"
+Cre06.g287350			Chloroplast	GO:0003677	"DNA binding"				
+Cre06.g278224	GMM:29.2.1.99.2.16	"protein.synthesis.ribosomal protein.unknown.large subunit.L16"	Mitochondrion	"GO:0019843;GO:0006412;GO:0005840;GO:0003735"	"rRNA binding;translation;ribosome;structural constituent of ribosome"	MRPL16	"MRPL16;Cre13.g599500.t1.1;Cre13.g599500.t1.2;uL16m;g6366.t1"	MRPL16	
+Cre06.g280475	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING					"g6524.t1;Cre06.g280475.t1.1;g6524.t1;Cre06.g280475.t1.1;Cre06.g280475.t1.1;g6524.t1;Cre06.g280475.t1.1;g6524.t1"		
+Cre06.g276400			Mitochondrion				"g6196.t1;g6196.t1;g6196.t1"		
+Cre06.g290950	GMM:29.2.1.2.1.5	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S5"		GO:0006412	translation	RPS5	"g6744.t1;RPS5;Cre06.g290950.t1.1"	RPS5	"Cytosolic 40S small ribosomal subunit protein S5"
+Cre06.g253851			"Secretory pathway"						
+Cre06.g265900			"Secretory pathway"				"g5969.t1;Cre06.g265900.t1.1;g5969.t1;Cre06.g265900.t1.1"		
+Cre06.g262450	"GMM:18;GMM:16.1.3"	"Co-factor and vitamine metabolism;secondary metabolism.isoprenoids.tocopherol biosynthesis"	"Secretory pathway"			VTE7	"VTE7;g5896.t1"	VTE7	
+Cre06.g294150			Mitochondrion				"g6810.t1;g6810.t1"		
+Cre06.g300100	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	"Secretory pathway"			PIGL	"Cre06.g300100.t1.1;g6941.t1;PIG-L;PIA1;Cre06.g300100.t1.1;PIA1;PIG-L;g6941.t1"		
+Cre06.g266150	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre06.g266150.t1.1;g5974.t1;Cre06.g266150.t1.1;g5974.t1"		
+Cre06.g250950	GMM:27.1.1	RNA.processing.splicing		"GO:0046872;GO:0005634;GO:0003723"	"metal ion binding;nucleus;RNA binding"		"Cre06.g250950.t1.1;g5620.t1;g5620.t1;Cre06.g250950.t1.1"		
+Cre06.g270850	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		GO:0005524	"ATP binding"		"Cre06.g270850.t1.1;SRH12;g6077.t1"		"Putative SNF2/RAD54 family DNA repair and recombination protein, ChromDB CHR3411"
+Cre06.g282350							g6567.t1		
+Cre06.g278221	"GMM:3.2.3;GMM:3.2.1"	"minor CHO metabolism.trehalose.potential TPS/TPP;minor CHO metabolism.trehalose.TPS"	Mitochondrion	"GO:0005992;GO:0003824"	"trehalose biosynthetic process;catalytic activity"	TPS1	"g6363.t1;Cre13.g599350.t1.1;TPS1;TSSP1"	TSPSP1	"Class II trehalose-6-phosphate synthase, carrying a glycosyl transferase and a TPP (phosphatase) domain; contains a complete TPP active site motif DYDGT, so could be active as a phosphatase;"
+Cre06.g260350	"GMM:29.9;GMM:20.2.1"	"protein.co-chaperones;stress.abiotic.heat"	Cytosol			DNJ6	"g5851.t1;Cre06.g260350.t1.1;DNJ6;Cre06.g260350.t1.1;DNJ6;g5851.t1"		"DnaJ-like protein; similar to E. coli Caj1p and to presumably cytosolic Arabidopsis Q9T24 and Q9SJS8; contains long N-terminal extension, which is absent from Arabidopsis homologs; TargetP gives no clear prediction for DNJ6; contains N-terminal J-domain;DnaJ-like protein; similar to E. coli Caj1p and to presumably cytosolic Arabidopsis Q9T24 and Q9SJS8; contains long N-terminal extension, which is absent from Arabidopsis homologs; TargetP gives no clear prediction for DNJ6; contains N-terminal J-domain"
+Cre06.g255500							"g5742.t1;Cre06.g255500.t1.1;Cre06.g255500.t1.1;g5742.t1;g5742.t1;Cre06.g255500.t1.1;g5742.t1;Cre06.g255500.t1.1;g5742.t1;Cre06.g255500.t1.1"		
+Cre06.g253200	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PKY1	"PKY1;g5674.t1;PKY1;g5674.t1"		
+Cre06.g256900			Chloroplast			SND1C	"SND1C;g5773.t1"		"contains divergent SAND domain"
+Cre06.g286100			"Secretory pathway"				"g6649.t1;g6649.t1"		
+Cre06.g252750						FUS1	g5660.t1	FUS1	"Glycoprotein localized to the membrane surface of the plus gamete mating structure;Lacking in non-fusing fus1 mutants;The FUS1 gene exists only in the mt+ locus"
+Cre06.g277000	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	"Secretory pathway"	GO:0008270	"zinc ion binding"		"g6209.t1;Cre06.g277000.t1.1"		
+Cre06.g262550			Mitochondrion						
+Cre06.g253404						Pr46b	"Cre06.g253404;PR46B;CCDC103;Cre06.g253404;CCDC103;PR46B"	"DAA1;DAA1"	"Coiled-coil domain containing protein 103; forms oligomers; contains two coiled coil domains and a RPAP3_C domain; gene located inside mating type locus; independently sequenced as AAK70875 [see PMID: 11805055]; the 3' UTR of this gene partially overlaps the adjacent gene;Coiled-coil domain containing protein 103; forms oligomers; contains two coiled coil domains and a RPAP3_C domain; gene located inside mating type locus; independently sequenced as AAK70875 [see PMID: 11805055]; the 3' UTR of this gene partially overlaps the adjacent gene"
+Cre06.g287850			Mitochondrion				g6685.t2		
+Cre06.g289150	GMM:34.12	transport.metal	Mitochondrion	"GO:0055085;GO:0016021;GO:0008324;GO:0006812"	"transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport"	MTP5	g6711.t1	MTP5	"Cation efflux transporter, group 3 CDF family; Zn transporter; related to HsZnT9 and AtMTP7"
+Cre06.g303850			Mitochondrion				"mL114;g7036.t1"	MRPL114	"an mTERF family repeat protein (Walz et al 2021); stabilizes the ES-66 of the L7 fragment via its C-terminal region, not its inner groove; interacts with mL113 and together with it compensates for loss of LSU rRNA domain III, just like plant rPPRs do;"
+Cre06.g259150	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0005525	"GTP binding"	EFG8	"Cre06.g259150.t1.1;g5826.t1"	EFG8	"Putative mitochondrial translation factor Tu"
+Cre06.g251000			"Secretory pathway"				"g5622.t1;Cre06.g251000.t1.1"		
+Cre06.g272350	GMM:26.13	"misc.acid and other phosphatases"					"g6110.t1;Cre06.g272350.t1.1"		
+Cre06.g278200				GO:0005515	"protein binding"	ROC66	"ROC66;g6470.t1;ROC66;g6470.t1"	"ROC66;ROC66"	"CONSTANS-like (COL) protein, circadian clock protein containing an internal CCT domain and two amino-terminal zinc-finger domains, of which only the first one is a consensus B-box; genetically linked to CONSTANT gene;CONSTANS-like (COL) protein, circadian clock protein containing an internal CCT domain and two amino-terminal zinc-finger domains, of which only the first one is a consensus B-box; genetically linked to CONSTANT gene"
+Cre06.g304950							"g7059.t1;Cre06.g304950.t1.1"		
+Cre06.g302200	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion	GO:0005509	"calcium ion binding"	EFH3	"g6993.t1;EFH3"		
+Cre06.g308200			"Secretory pathway"				"g7135.t1;g7135.t1"		
+Cre06.g268976	GMM:29.4	"protein.postranslational modification"							
+Cre06.g278251	"GMM:28.2;GMM:20.2"	"DNA.repair;stress.abiotic"					"Cre13.g600850.t1.1;g6392.t1;aCRY"	ACRY1	
+Cre06.g278161	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			mmp26	"g6304.t1;Cre13.g596400.t1.1"		
+Cre06.g254224							"SRLb; g5716.t1;SRL1B;Cre06.g254224.t1.1"		"One of three genes SRL genes of unknown function in the mt+ mating locus (Cre06.g254200,Cre06.g254224,Cre06.g254250);Arose through a duplication-insertion of a 5.7 kb segment of SRR16 from Chromosome 10 into the mt+ locus"
+Cre06.g278210	"GMM:4.2.2;GMM:4.1.2"	"glycolysis.plastid branch.phosphoglucomutase (PGM);glycolysis.cytosolic branch.phosphoglucomutase (PGM)"	Chloroplast	"GO:0071704;GO:0016868;GO:0005975"	"organic substance metabolic process;intramolecular transferase activity, phosphotransferases;carbohydrate metabolic process"	GPM1	"GPM1;PGM;Cre13.g598750.t1.1;STA5;g6352.t1;PGM;GPM1;Cre13.g598750.t1.1;STA5;g6352.t1;g6352.t1;STA5;PGM;Cre13.g598750.t1.1;GPM1"	"PGM1;PGM1;PGM1"	"Converts D-glucose 1-phosphate into D-glucose 6-phosphate, and participates in both the breakdown and synthesis of glucose; the reaction mechanism involves phosphoryl transfer from a phosphoserine to the substrate to create a biophosphorylated sugar, followed by a phosphoryl transfer from the substrate back to the enzyme; Identified in a screen for starchless mutants; Note that PGM = phosphogluco mutase and GPM = phosphoglycerate mutase;Converts D-glucose 1-phosphate into D-glucose 6-phosphate, and participates in both the breakdown and synthesis of glucose; the reaction mechanism involves phosphoryl transfer from a phosphoserine to the substrate to create a biophosphorylated sugar, followed by a phosphoryl transfer from the substrate back to the enzyme; Identified in a screen for starchless mutants; Note that PGM = phosphogluco mutase and GPM = phosphoglycerate mutase;Converts D-glucose 1-phosphate into D-glucose 6-phosphate, and participates in both the breakdown and synthesis of glucose; the reaction mechanism involves phosphoryl transfer from a phosphoserine to the substrate to create a biophosphorylated sugar, followed by a phosphoryl transfer from the substrate back to the enzyme; Identified in a screen for starchless mutants; Note that PGM = phosphogluco mutase and GPM = phosphoglycerate mutase"
+Cre06.g253600			Chloroplast						
+Cre06.g262900	"GMM:4.2.4;GMM:4.1.4"	"glycolysis.plastid branch.phosphofructokinase (PFK);glycolysis.cytosolic branch.phosphofructokinase (PFK)"	Chloroplast	"GO:0006096;GO:0003872"	"glycolytic process;6-phosphofructokinase activity"	PFK1	"Cre06.g262900.t1.1;g5905.t1;g5905.t1;Cre06.g262900.t1.1"	"PFK1;PFK1"	"Putative phosphofructokinase family protein (EC 2.7.1.11 or 2.7.1.90), based on similarity to rice (GenBank BAD29254) and Arabidopsis (GenBank AAM20228) genes; possible plastid-targeted splice variant of PFK1b; null-allele mutant was isolated (PMID 29743196);Putative phosphofructokinase family protein (EC 2.7.1.11 or 2.7.1.90), based on similarity to rice (GenBank BAD29254) and Arabidopsis (GenBank AAM20228) genes; possible plastid-targeted splice variant of PFK1b; null-allele mutant was isolated (PMID 29743196)"
+Cre06.g258363				GO:0005515	"protein binding"		"g5808.t1;Cre06.g258363.t1.1;g5808.t1;Cre06.g258363.t1.1"		
+Cre06.g311400	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0004518;GO:0003677"	"nuclease activity;DNA binding"		"g7204.t1;Cre06.g311400.t1.1;XPF1;XPF1;g7204.t1;Cre06.g311400.t1.1"	"XPF1;XPF1"	"Rad1/XPF homolog [PMID: 17992532];Rad1/XPF homolog [PMID: 17992532]"
+Cre06.g257000	GMM:14	S-assimilation	Mitochondrion	"GO:0015419;GO:0008272;GO:0006810;GO:0005215"	"sulfate transmembrane-transporting ATPase activity;sulfate transport;transport;transporter activity"	SULP3	"SBP1;g5775.t1;SLP3;Cre06.g257000.t1.1;SBP1;Cre06.g257000.t1.1;SLP3;g5775.t1"	"SULP3;SULP3"	"Chloroplast ABC-type sulfate transporter; NCBI accessions AAS20264 (protein) and AY536253 (mRNA);Chloroplast ABC-type sulfate transporter; NCBI accessions AAS20264 (protein) and AY536253 (mRNA)"
+Cre06.g270800							"Cre06.g270800.t1.1;g6076.t1;g6076.t1;Cre06.g270800.t1.1"		
+Cre06.g267150	GMM:31.2	cell.division					"Cre06.g267150.t1.1;g5995.t1"		
+Cre06.g257250	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"		"GO:0035058;GO:0034464"	"nonmotile primary cilium assembly;BBSome"	BBS2	"g5782.t1;BBS2"	BBS2	"Flagellar protein, component of the core BBSome complex that targets membrane proteins to cilia"
+Cre06.g278180	GMM:28.1.1	"DNA.synthesis/chromatin structure.retrotransposon/transposase"	Mitochondrion				"g6323.t1;Cre13.g597300.t1.1"		
+Cre06.g279250						PYM1	"g6493.t1;Cre06.g279250.t1.1;PYM1"	PYM1	"Exon Junction Complex dissociation factor; mainly located in the cytoplasm where it dissociates MAGOH/RBM8A from EIF4A3; human PYM has been"
+Cre06.g252401			"Secretory pathway"				"g5651.t1;NMDA1"		
+Cre06.g259500	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG2	"CYG2;g5834.t1"		"Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre06.g286300			Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	COQ5B	"Cre06.g286300.t1.1;COQ5B;UMM5;g6653.t1;COQ5B;UMM5;g6653.t1;Cre06.g286300.t1.1;g6653.t1;UMM5;Cre06.g286300.t1.1;COQ5B"	"COQ5B;COQ5B;COQ5B"	
+Cre06.g263750							"Cre06.g263750.t1.1;g5926.t1"	RPN15	
+Cre06.g309300	GMM:27.1	RNA.processing	Mitochondrion				"g7157.t1;RRM7;KSGA;Cre06.g309300.t1.1;RRM7;g7157.t1;Cre06.g309300.t1.1;KSGA"	"KSGA1;KSGA1"	"homolog of bacterial KsgA;homolog of bacterial KsgA"
+Cre06.g282651			Chloroplast	GO:0045454	"cell redox homeostasis"	TRX16	"TRX16;TRL2;g6573.t1"		
+Cre06.g308000						FAP331	"g7131.t1;Cre06.g308000.t1.1;g7131.t1;Cre06.g308000.t1.1;Cre06.g308000.t1.1;g7131.t1"	"FAP331;FAP331;FAP331"	"WD-repeat Flagellar Associated Protein 331;WD-repeat Flagellar Associated Protein 331;WD-repeat Flagellar Associated Protein 331"
+Cre06.g266450	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre06.g266450.t1.1;g5981.t1"		
+Cre06.g267700	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"	Mitochondrion	"GO:0008233;GO:0006508"	"peptidase activity;proteolysis"	SPP1B	"SPPA1-2;g6007.t1;Cre06.g267700.t1.1;SPP1B;SPP2"	SPP1B	"SppA, protease IV, signal peptide peptidase, serine endopeptidase of S49 family (ClpP clan); contains two S49 domains, of which the second only appears functional; probably associated with thylakoid membrane and involved in cleavage of membrane proteins or signal peptide; called SPPA1-2 in Sokolenko (2005), Physiol. Plantarum 123:391; linked to SPP1C in MT locus"
+Cre06.g273413	"GMM:29.2.2.3.3;GMM:28.1"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases;DNA.synthesis/chromatin structure"	Chloroplast	GO:0008168	"methyltransferase activity"		g6134.t1		
+Cre06.g264550			Chloroplast			CGL81	"Cre06.g264550.t1.1;g5943.t1;Cre06.g264550.t1.1;g5943.t1"	"CGL81;CGL81"	
+Cre06.g278167							"Cre13.g596700.t1.1;g6310.t1"		
+Cre06.g303600							"g7031.t1;g7031.t1"		
+Cre06.g280750							g6530.t1		
+Cre06.g306028									
+Cre06.g309100	"GMM:29.6.2.2;GMM:29.6"	"protein.folding.chaperones and co-chaperones.HSP60s;protein.folding"	Mitochondrion	GO:0005524	"ATP binding"	CPN60C	"g7152.t1;Cre06.g309100.t1.1;CPN60C;HSP60"	CPN60C	"GroEL/HSP60-homolog, targeted to mitochondria; forms stacks of two homo-oligomeric heptameric rings; Cpn60s require mitochondrial Cpn10s to fold non-native proteins to the native state in an ATP-consuming process"
+Cre06.g258051			Chloroplast			NCL2			
+Cre06.g279850	GMM:29.5	protein.degradation	Chloroplast				"Tic62-NAD-6;Cre06.g279850.t1.1;g6506.t1"		"Short chain dehydrogenase belonging to the extended family [PMID: 12230552]. Similarity to the N-terminal domain of Tic62 [PMID: 17374152]."
+Cre06.g256650			Mitochondrion				g5768.t1		
+Cre06.g310100	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g7175.t1;Cre06.g310100.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g282150	"GMM:18.1.1;GMM:18.1;GMM:18"	"Co-factor and vitamine metabolism.molybdenum cofactor.gephyrin;Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism"				CNX1G	"g6562.t1;CNX1G;CNX1C"	CNX1G	"Homolog to G-domain of molybdopterin biosynthesis CNX1 protein (Involved in molybdenum cofactor biosynthesis. May play a role in molybdenum transfer to molybdopterin); homologous to Arabidopsis thaliana Cnx1G"
+Cre06.g279900	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"				VFL3	"VFL3;MOT14;g6507.t1;g6507.t1;MOT14;VFL3;g6507.t1;MOT14;VFL3;g6507.t1;VFL3;MOT14;VFL3;MOT14;g6507.t1"	"VFL3;VFL3;VFL3;VFL3;VFL3"	"Protein required for templated centriole assembly; mutation in this gene causes loss of the templated centriole assembly pathway without eliminating de novo assembly [PMID: 11267867]; MOT14, gene identified by comparative genomics as being present only in organisms having motile cilia;Protein required for templated centriole assembly; mutation in this gene causes loss of the templated centriole assembly pathway without eliminating de novo assembly [PMID: 11267867]; MOT14, gene identified by comparative genomics as being present only in organisms having motile cilia;Protein required for templated centriole assembly; mutation in this gene causes loss of the templated centriole assembly pathway without eliminating de novo assembly [PMID: 11267867]; MOT14, gene identified by comparative genomics as being present only in organisms having motile cilia;Protein required for templated centriole assembly; mutation in this gene causes loss of the templated centriole assembly pathway without eliminating de novo assembly [PMID: 11267867]; MOT14, gene identified by comparative genomics as being present only in organisms having motile cilia;Protein required for templated centriole assembly; mutation in this gene causes loss of the templated centriole assembly pathway without eliminating de novo assembly [PMID: 11267867]; MOT14, gene identified by comparative genomics as being present only in organisms having motile cilia"
+Cre06.g251850									
+Cre06.g254917	GMM:31.6.1.9	"cell.motility.eukaryotes.flagellar adhesion and gamete fusion"	"Secretory pathway"			SAD1:3frag	g5732.t2		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre06.g299100							"g6919.t1;Cre06.g299100.t1.1"		
+Cre06.g261050			Chloroplast				"Cre06.g261050.t1.1;g5868.t1"		
+Cre06.g278147			Chloroplast				"g6292.t1;Cre13.g595850.t1.2;Cre13.g595850.t1.1"		
+Cre06.g288650	GMM:11.2.4	"lipid metabolism.FA desaturation.omega 6 desaturase"	Chloroplast	GO:0006629	"lipid metabolic process"		"g6699.t1;Cre06.g288650.t1.1"		
+Cre06.g278281									
+Cre06.g252700	GMM:35.1.41	"not assigned.no ontology.hydroxyproline rich proteins"					"Cre06.g252700.t1.1;SPL2;g5658.t1"		"similar to splicing factor 3a, subunit 2 [Genbank AY596301]"
+Cre06.g274500	"GMM:27.1.3.17;GMM:27.1"	"RNA.processing.3' end processing.PabN;RNA.processing"		GO:0003676	"nucleic acid binding"		"Cre06.g274500.t1.1;g6156.t1"		
+Cre06.g283950	GMM:1.1.1.1	"PS.lightreaction.photosystem II.LHC-II"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCBM4	"Cre06.g283950.t1.1;g6602.t1;Cre06.g283950.t1.1;g6602.t1"	"LHCBM4;LHCBM4"	"PSII-associated chlorophyll a/b-binding protein;PSII-associated chlorophyll a/b-binding protein"
+Cre06.g273750	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"	SABC	"g6141.t1;SUA1;SABC;g6141.t1;SABC;SUA1;g6141.t1;SUA1;SABC"	"SABC1;SABC1;SABC1"	"CysA-like protein, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]. Discussed by Lindberg and Melis 28 [PMID: 18682979].;CysA-like protein, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]. Discussed by Lindberg and Melis 28 [PMID: 18682979].;CysA-like protein, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]. Discussed by Lindberg and Melis 28 [PMID: 18682979]."
+Cre06.g262200							"g5891.t1;Cre06.g262200.t1.1"		
+Cre06.g278092							g6236.t1		
+Cre06.g249500	GMM:27.3.46	"RNA.regulation of transcription.DNA methyltransferases"	Mitochondrion			DMC7	"DMT1B;MET1;g5588.t1;DMT1;MET1;DMT1B;DMT1;g5588.t1"	"DMC7;DMC7"	"Dnmt1 class (cytosine-5-)DNA methyltransferase, ChromDB DMT343; allelic to the previously published sequence AB18536 at the DMT1 locus [also published as MET1; PMID: 11983892, PMID: 1551455], which was sequenced from strain CC-683, a strain carrying the me1 mutation that results in hypermethylation of chloroplast DNA;Dnmt1 class (cytosine-5-)DNA methyltransferase, ChromDB DMT343; allelic to the previously published sequence AB18536 at the DMT1 locus [also published as MET1; PMID: 11983892, PMID: 1551455], which was sequenced from strain CC-683, a strain carrying the me1 mutation that results in hypermethylation of chloroplast DNA"
+Cre06.g302650	"GMM:27.3.67;GMM:27.1"	"RNA.regulation of transcription.putative transcription regulator;RNA.processing"		"GO:0032259;GO:0008168;GO:0001510"	"methylation;methyltransferase activity;RNA methylation"		"g7007.t1;Cre06.g302650.t1.1"	RRM5	"in the RrmJ/FtsJ family. Possible 23S ribosomal methyltransferase"
+Cre06.g281600	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	Mitochondrion			LCI23	"Cre06.g281600.t1.1;g6550.t1;g6550.t1;Cre06.g281600.t1.1;g6550.t1;Cre06.g281600.t1.1;Cre06.g281600.t1.1;g6550.t1"	"LCI23;LCI23;LCI23;LCI23"	"Septin-like protein; Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Septin-like protein; Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Septin-like protein; Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Septin-like protein; Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]"
+Cre06.g281900	GMM:34.12	transport.metal	"Secretory pathway"			ZIP7	"Cre06.g281900.t1.1;g6557.t1;CrZIP7;ZIL2"	ZIP7	"Similarity to ZIP ZTP50-like subfamily; Target of CRR1"
+Cre06.g267250	"GMM:3.6;GMM:29.4"	"minor CHO metabolism.callose;protein.postranslational modification"		"GO:0008138;GO:0006470;GO:0005856"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation;cytoskeleton"	MKP2	"g5997.t1;MKP2;g5997.t1;MKP2;MKP2;g5997.t1"		"MKP2; Map Kinase Phosphatase Homolog 2; DSP2; Dual Specificity Protein Phosphatase Homolog 2;MKP2; Map Kinase Phosphatase Homolog 2; DSP2; Dual Specificity Protein Phosphatase Homolog 2;MKP2; Map Kinase Phosphatase Homolog 2; DSP2; Dual Specificity Protein Phosphatase Homolog 2"
+Cre06.g278179							"Cre13.g597250.t1.1;g6322.t1;g6322.t1;Cre13.g597250.t1.1;g6322.t1;Cre13.g597250.t1.1"		
+Cre06.g276900	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB1	"HTB24;g6207.t1;Cre06.g276900.t1.1"	HTB1	"replication linked H2B; histone gene cluster I (type 43BA)"
+Cre06.g260600	"GMM:30.3;GMM:29.4"	"signalling.calcium;protein.postranslational modification"					"Cre06.g260600.t1.1;g5856.t1;PPP22;PPP22;g5856.t1;Cre06.g260600.t1.1;g5856.t1;Cre06.g260600.t1.1;PPP22"		"EF-hand domain;EF-hand domain;EF-hand domain"
+Cre06.g278129			Mitochondrion				"g6275.t1;Cre13.g594950.t1.1"		
+Cre06.g257400			Chloroplast				"g5785.t1;Cre06.g257400.t1.1;g5785.t1;Cre06.g257400.t1.1;Cre06.g257400.t1.1;g5785.t1;g5785.t1;Cre06.g257400.t1.1;g5785.t1;Cre06.g257400.t1.1"		
+Cre06.g258400							"g5809.t1;Cre06.g258400.t1.1"		
+Cre06.g253789			"Secretory pathway"						
+Cre06.g304050	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PKC1	"g7040.t1;PKC1"	PKC1	"Homology to ribosomal protein S6 kinase alpha"
+Cre06.g254052			Chloroplast				"g5709.t1;EZY2E"		"Encodes a predicted chloroplast protein with no recognizable domains or similarity, and its mRNA is zygote specific;One of six copies of the EZY2 gene in the mt+ locus (Cre06.g253750,Cre06.g253759,Cre06.g253800,Cre06.g253902,Cre06.g254052);Proposed to be involved in uniparental chloroplast DNA inheritance"
+Cre06.g257300							"g5783.t1;g5783.t1;g5783.t1"		
+Cre06.g297049							g6873.t1		
+Cre06.g283100						FAP85	"g6584.t1;Cre06.g283100.t1.1"	FAP85	"EF-Hand Containing Flagellar Associated Protein 85; Microtubule inner protein"
+Cre06.g275700	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO3	"Cre06.g275700.t1.1;HFO4;g6181.t1"	HFO3	"replication linked H4; histone gene cluster III (type 43BA)"
+Cre06.g277300	"GMM:29.5.11.4.2;GMM:29.4.1.59"	"protein.degradation.ubiquitin.E3.RING;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX"	Mitochondrion	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		g6215.t1		
+Cre06.g266650	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR11	"HTR45;HTR11;g5985.t1;Cre06.g266650.t1.1"	HTR11	"replication linked H3; histone gene cluster XI (type 43AB)"
+Cre06.g279700			"Secretory pathway"				"g6503.t1;g6503.t1;g6503.t1;g6503.t1;g6503.t1"		
+Cre06.g279500			Chloroplast			CPL6	g6499.t1	CPL6	"co-chaperone, dnaJ-related; not ortholog of LQY1"
+Cre06.g269250			Chloroplast				"FKM5;Cre06.g269250.t1.1;g6041.t1"		"FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces"
+Cre06.g265050	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO13	"HFO13;Cre06.g265050.t1.1;g5953.t1"	HFO13	"replication linked H4; histone gene cluster XIII (type 43AB)"
+Cre06.g277500									
+Cre06.g274000	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR7	"HTR7;Cre06.g274000.t1.1;g6146.t1"	HTR7	"replication linked H3; histone gene cluster VII (type 34AB)"
+Cre06.g256000							"g5753.t1;Cre06.g256000.t1.1;Cre06.g256000.t1.1;g5753.t1;g5753.t1;Cre06.g256000.t1.1"		
+Cre06.g268600	GMM:1.1.1.4	"PS.lightreaction.photosystem II.LHC biogenesis"		"GO:0006355;GO:0003677;GO:0003676"	"regulation of transcription, DNA-templated;DNA binding;nucleic acid binding"	NAB1	"Cre06.g268600.t1.1;g6026.t1;NAB1;NAB1;Cre06.g268600.t1.1;g6026.t1"	"NAB1;NAB1"	"Nucleic acid binding protein; RNA binding protein involved in the light-regulated differential expression of the light-harvesting antenna of Chlamydomonas reinhardtii [PMID: 16284312, Genbank entry AY157846];Nucleic acid binding protein; RNA binding protein involved in the light-regulated differential expression of the light-harvesting antenna of Chlamydomonas reinhardtii [PMID: 16284312, Genbank entry AY157846]"
+Cre06.g272150			"Secretory pathway"				"Cre06.g272150.t1.1;g6106.t1"		
+Cre06.g292282									
+Cre06.g259900	"GMM:1.1.4.4;GMM:1.1.4"	"PS.lightreaction.ATP synthase.gamma chain;PS.lightreaction.ATP synthase"	Chloroplast	"GO:0046961;GO:0046933;GO:0045261;GO:0015986"	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;proton-transporting ATP synthase complex, catalytic core F(1);ATP synthesis coupled proton transport"	ATPC	"Cre06.g259900.t1.1;g5842.t1;ATPC;Cre06.g259900.t1.1;ATPC;g5842.t1"	"ATPC1;ATPC1"	"ATP synthase CF1 gamma chain, chloroplast precursor, gi:114638, PMID: 2904436, PMID: 8349573, PMID: 8543042;ATP synthase CF1 gamma chain, chloroplast precursor, gi:114638, PMID: 2904436, PMID: 8349573, PMID: 8543042"
+Cre06.g251750							"g5638.t1;Cre06.g251750.t1.1;Cre06.g251750.t1.1;g5638.t1"		
+Cre06.g278183	GMM:21.4	redox.glutaredoxins		"GO:0045454;GO:0015035;GO:0009055"	"cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity"		"g6326.t1;Cre13.g597450.t1.1;Cre13.g597450.t1.2;g6326.t1;Cre13.g597450.t1.2;Cre13.g597450.t1.1;g6326.t1;Cre13.g597450.t1.2;Cre13.g597450.t1.1;Cre13.g597450.t1.1;Cre13.g597450.t1.2;g6326.t1;Cre13.g597450.t1.2;Cre13.g597450.t1.1;g6326.t1"		
+Cre06.g310550						HY5	"BLZ3;g7186.t1;Cre06.g310550.t1.1"	HY5	"def HY5 (ELONGATED HYPOCOTYL 5); DNA binding / transcription factor / HY5-like protein (HYH), nearly identical to HY5-like protein (Arabidopsis thaliana) GI:18042111; similar to TGACG-motif binding factor GI:2934884 from (Glycine max); contains Pfam profile: PF00170 bZIP transcription factor The similarity is strong but only in this small domain region"
+Cre06.g260900			Mitochondrion						
+Cre06.g293300	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g6793.t1		
+Cre06.g287500							g6678.t1		
+Cre06.g306035									
+Cre06.g299450							"g6925.t1;Cre06.g299450.t1.1;g6925.t1;Cre06.g299450.t1.1;g6925.t1;Cre06.g299450.t1.1;g6925.t1;Cre06.g299450.t1.1;g6925.t1;Cre06.g299450.t1.1"		
+Cre06.g300326			Mitochondrion				g6949.t1		
+Cre06.g288600							"g6698.t1;g6698.t1;g6698.t1;g6698.t1"		
+Cre06.g306700							g7104.t1		
+Cre06.g263650			Chloroplast				g5924.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g307450	"GMM:27.1.1;GMM:27.1"	"RNA.processing.splicing;RNA.processing"		"GO:0006396;GO:0005515;GO:0003723"	"RNA processing;protein binding;RNA binding"	SPL1	"SPL1;g7120.t1;Cre06.g307450.t1.1"		
+Cre06.g281500			Chloroplast			OPR25	"g6547.t1;g6547.t1"	"OPR25;OPR25"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre06.g278287			"Secretory pathway"				g6446.t1		
+Cre06.g278091			"Secretory pathway"				"Cre13.g593150.t1.1;g6235.t1"		
+Cre06.g308900	GMM:29.3.2	protein.targeting.mitochondria		GO:0019867	"outer membrane"	TOB55	"Cre06.g308900.t1.1;TOB55;g7148.t1"	SAM50	"Component of the mitochondrial outer membrane sorting assembly machinery (SAM or TOB) complex; Mediates the insertion of beta-barrel proteins into the outer membrane of mitochondria. Also known as TOM38 or TOB55. Similar to yeast Tob55 (YNL026W) and to Arabidopsis Tob55 (AT5G05520.1)"
+Cre06.g285550			Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"PTK;g6637.t1;PTK;g6637.t1"		
+Cre06.g284700	GMM:13.1.1.3.1	"amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine aminotransferase"	Chloroplast	"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"	AAT2	"AAT2;Cre06.g284700.t1.1;g6619.t1;g6619.t1;Cre06.g284700.t1.1;AAT2"	"AAT2;AAT2"	
+Cre06.g258300	GMM:7.1.1	"OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)"					"g5806.t1;g5806.t1"		
+Cre06.g278126							"Cre13.g594800.t1.1;Cre13.g594800.t1.2;g6272.t1;g6272.t1;Cre13.g594800.t1.2;Cre13.g594800.t1.1"		
+Cre06.g273900	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA7	"g6144.t1;HTA8;HTA41;Cre06.g273900.t1.1"	HTA7	"replication linked H2A; histone gene cluster VII (type 34AB)"
+Cre06.g248850	"GMM:29.4.1;GMM:29.4;GMM:27.1.1"	"protein.postranslational modification.kinase;protein.postranslational modification;RNA.processing.splicing"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g5574.t1;g5574.t1;g5574.t1"		
+Cre06.g287100	GMM:3.8	"minor CHO metabolism.galactose"				CAM11	"g6669.t1;CAM11"		
+Cre06.g250250	GMM:34.1	"transport.p- and v-ATPases"		"GO:0033180;GO:0015991;GO:0015078"	"proton-transporting V-type ATPase, V1 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVC	"ATPVC;g5604.t1;Cre06.g250250.t1.1"	ATPVC1	"vacuolar ATP synthase subunit C, vacuolar H+ ATPase V1 sector, subunit C"
+Cre06.g297516							"g6882.t1;Cre06.g297516.t1.1"		
+Cre06.g274700	GMM:29.5.3	"protein.degradation.cysteine protease"	Chloroplast			OTU4	"OTU4;g6160.t1;g6160.t1;OTU4"		"Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila.;Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila."
+Cre06.g270100	GMM:2.1.2.3	"major CHO metabolism.synthesis.starch.starch branching"	Chloroplast	"GO:0043169;GO:0005975;GO:0004553;GO:0003824"	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	SBE2	"g6060.t1;SBE2a;SBE2a;g6060.t1"	"SBE2;SBE2"	"Catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position;Catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position"
+Cre06.g270750				"GO:0006950;GO:0005516"	"response to stress;calmodulin binding"		g6075.t1		
+Cre06.g302050	GMM:3.6	"minor CHO metabolism.callose"		"GO:0016020;GO:0006075;GO:0003843;GO:0000148"	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	GSL2	"GTR12;BGS5;BGS6;Cre06.g302050.t1.1;g6990.t1;Cre06.g302050.t1.1;BGS5;g6990.t1;GTR12;BGS6;Cre06.g302050.t1.1;BGS6;GTR12;BGS5;g6990.t1"	"GSL2;GSL2;GSL2"	"GT48 family 1,3-beta-D-glucan synthase; null-allele mutant was isolated (PMID 29743196);GT48 family 1,3-beta-D-glucan synthase; null-allele mutant was isolated (PMID 29743196);GT48 family 1,3-beta-D-glucan synthase; null-allele mutant was isolated (PMID 29743196)"
+Cre06.g298880									
+Cre06.g303150	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	PTK4	"PTK4;g7017.t1"		"Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre06.g311250			Mitochondrion				"g7201.t1;g7201.t1"		
+Cre06.g250976			Mitochondrion						
+Cre06.g293582	GMM:29.1.4	"protein.aa activation.leucine-tRNA ligase"		"GO:0006418;GO:0005524;GO:0004812;GO:0000166"	"tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"		"g6799.t1;g6799.t1;g6799.t1;g6799.t1;g6799.t1;g6799.t1;g6799.t1;g6799.t1"	"TSL2;TSL2;TSL2;TSL2;TSL2;TSL2;TSL2;TSL2"	
+Cre06.g259550	"GMM:29.5.9;GMM:29.5.11.20"	"protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom"	"Secretory pathway"	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"g5835.t1;Cre06.g259550.t1.1"		
+Cre06.g262977			Mitochondrion				"Cre06.g262977.t1.1;g5907.t1"		
+Cre06.g284376									
+Cre06.g250750	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		"GO:0036459;GO:0016579"	"thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination"		"g5616.t1;Cre06.g250750.t1.1"		
+Cre06.g290100	GMM:31.4	"cell.vesicle transport"		"GO:0048193;GO:0016020;GO:0005515"	"Golgi vesicle transport;membrane;protein binding"	SYP6	"g6730.t1;Cre06.g290100.t1.1;SYP6;g6730.t1;SYP6;Cre06.g290100.t1.1"	"SYP6;SYP6"	"Expressed Protein. Similar to SYP6/syntaxin 6/Tlg1p Qc-SNAREs, involved in Golgi/endosomal trafficking. Identical to ChlreSyntaxin 6 (AAM12662);Expressed Protein. Similar to SYP6/syntaxin 6/Tlg1p Qc-SNAREs, involved in Golgi/endosomal trafficking. Identical to ChlreSyntaxin 6 (AAM12662)"
+Cre06.g278164	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			mmp27	"Cre13.g596550.t1.1;g6307.t1"		
+Cre06.g278239	GMM:27.1.1	RNA.processing.splicing		GO:0003676	"nucleic acid binding"	SRS7	"SRP36;Cre13.g600300.t1.1;g6381.t2;g6381.t2;Cre13.g600300.t1.1;SRP36;SRP36;Cre13.g600300.t1.1;g6381.t2"	"SRS7;SRS7;SRS7"	"Note that this gene was previously identified as SRS7 in PMID 28364390 with gene ID of Cre13.g600300;Note that this gene was previously identified as SRS7 in PMID 28364390 with gene ID of Cre13.g600300;Note that this gene was previously identified as SRS7 in PMID 28364390 with gene ID of Cre13.g600300"
+Cre06.g261700	GMM:29.2.1.2.2.80	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.P0"		"GO:0042254;GO:0005622"	"ribosome biogenesis;intracellular"		"Cre06.g261700.t1.1;g5881.t1;Cre06.g261700.t1.1;g5881.t1"		
+Cre06.g262400				GO:0006629	"lipid metabolic process"		"g5895.t1;g5895.t1;g5895.t1"		
+Cre06.g278137			"Secretory pathway"				"Cre13.g595350.t1.1;Cre13.g595350.t1.2;g6282.t1;Cre13.g595350.t1.1;Cre13.g595350.t1.2;g6282.t1"		
+Cre06.g291850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING					"g6762.t3;Cre06.g291850.t1.1;g6762.t3;Cre06.g291850.t1.1;Cre06.g291850.t1.1;g6762.t3;Cre06.g291850.t1.1;g6762.t3;g6762.t3;Cre06.g291850.t1.1;Cre06.g291850.t1.1;g6762.t3;Cre06.g291850.t1.1;g6762.t3;g6762.t3;Cre06.g291850.t1.1"		
+Cre06.g289950	GMM:27.1	RNA.processing		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL28	"g6727.t1;HEL28;HEN2;HEL28;HEN2;g6727.t1;HEL28;HEN2;g6727.t1;g6727.t1;HEN2;HEL28;g6727.t1;HEN2;HEL28"		"Putative homologue of Arabidopsis Hua Enhancer 2, HEN2, DExH box helicase;Putative homologue of Arabidopsis Hua Enhancer 2, HEN2, DExH box helicase;Putative homologue of Arabidopsis Hua Enhancer 2, HEN2, DExH box helicase;Putative homologue of Arabidopsis Hua Enhancer 2, HEN2, DExH box helicase;Putative homologue of Arabidopsis Hua Enhancer 2, HEN2, DExH box helicase"
+Cre06.g307900						FAP141	"g7129.t1;Cre06.g307900.t1.1"	FAP141	"Flagellar Associated Protein, found in the flagellar proteome"
+Cre06.g268800	GMM:31.6.1.3.2.1	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A"		GO:0005515	"protein binding"	IFT139	"FAP60;Cre06.g268800.t1.1;FLA17;g6030.t1"	IFT139	"Flagellar Associated Protein, component of IFT-A particle; found in the flagellar proteome [PMID: 15998802]; Has four TPR motifs;"
+Cre06.g282600	"GMM:29.2.3;GMM:29.2.2.3.5;GMM:29.2.2.2.1;GMM:28.1"	"protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;protein.synthesis.ribosome biogenesis.assembly factors.DExD-box helicases;DNA.synthesis/chromatin structure"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL27	"g6572.t1;HEL27"		
+Cre06.g278110			"Secretory pathway"				"Cre13.g594000.t1.1;Cre13.g594000.t1.2;g6253.t1;Cre13.g594000.t1.1;g6253.t1;Cre13.g594000.t1.2"		
+Cre06.g302600				GO:0006886	"intracellular protein transport"		g7006.t1		
+Cre06.g251683	GMM:34.7	transport.phosphate	"Secretory pathway"			PTC1			
+Cre06.g306450							"Cre06.g306450.t1.1;g7099.t1"		
+Cre06.g279650			"Secretory pathway"			OPR24	g6502.t1	OPR24	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre06.g285750	GMM:27.3.60	"RNA.regulation of transcription.NIN-like bZIP-related family"					"g6641.t1;g6641.t1"		
+Cre06.g307400			Chloroplast			CCR5	"Cre06.g307400.t1.1;g7119.t2;CCR5;EEP4;g7119.t2;CCR5;EEP4;Cre06.g307400.t1.1;g7119.t2;CCR5;Cre06.g307400.t1.1;EEP4"	"CCR5;CCR5;CCR5"	"similar to CCR4 subunit 6; possibly a NOT-complex component involved in tyranscriptional regulation;similar to CCR4 subunit 6; possibly a NOT-complex component involved in tyranscriptional regulation;similar to CCR4 subunit 6; possibly a NOT-complex component involved in tyranscriptional regulation"
+Cre06.g279216							g6492.t1		
+Cre06.g269550						COQ9	"g6048.t1;COQ9"	COQ9	"Putative ubiquinone biosynthesis protein, mitochondrial precursor; similar to yeast ubiquinone biosynthesis protein COQ9(gi 74644909)"
+Cre06.g299150	GMM:1.5	"PS.carbon concentrating mechanism"	Mitochondrion			PHC26	"PHC9;g6920.t1;PHC9;g6920.t1"	"PHC26;PHC26"	"belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain"
+Cre06.g284400	GMM:31.1	cell.organisation					"g6613.t1;Cre06.g284400.t1.1"		
+Cre06.g308650							"g7144.t1;g7144.t1"		
+Cre06.g286550			Mitochondrion				"g6658.t1;Cre06.g286550.t1.1;g6658.t1;Cre06.g286550.t1.1"		
+Cre06.g256400			"Secretory pathway"				g5761.t1		
+Cre06.g269700							"g6051.t1;Cre06.g269700.t1.1"		
+Cre06.g253582			Chloroplast						
+Cre06.g305150							g7063.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g254275	GMM:26.16	misc.myrosinases-lectin-jacalin							
+Cre06.g268228							"Cre06.g268228.t1.1;g6018.t1"		
+Cre06.g297550			Mitochondrion				"g6883.t1;Cre06.g297550.t1.1"		
+Cre06.g296550	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	"GO:0055114;GO:0050661;GO:0050660;GO:0004499"	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO3	"FMO3;g6858.t1;Cre06.g296550.t1.1;g6858.t1;FMO3;Cre06.g296550.t1.1"		"Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification; more closely related to bacterial than to plant homologues; linked to FMO6 and FMO7;Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification; more closely related to bacterial than to plant homologues; linked to FMO6 and FMO7"
+Cre06.g310150							"Cre06.g310150.t1.1;g7176.t1"		
+Cre06.g278159	"GMM:33.99;GMM:27.3.7"	"development.unspecified;RNA.regulation of transcription.C2C2(Zn) Constans-like zinc finger family (CO-like)"	"Secretory pathway"	"GO:0008270;GO:0005622;GO:0005515"	"zinc ion binding;intracellular;protein binding"		"Cre13.g596300.t1.1;CO;CONSTANS;CRCO;Cre13.g596300.t1.2;g6302.t1;CON1;Cre13.g596300.t1.1;CON1;CRCO;g6302.t1;Cre13.g596300.t1.2;CONSTANS;CO"	"CON1;CON1"	"B-box zinc finger protein; contains CONSTANS-type zinc finger, conserved in Ostreococcus and involved in circadian rhythms. Previously annotated as CGLD18 for being conserved in the Green lineage and diatoms, as well as CO for CONSTANS by Serrano et al.;B-box zinc finger protein; contains CONSTANS-type zinc finger, conserved in Ostreococcus and involved in circadian rhythms. Previously annotated as CGLD18 for being conserved in the Green lineage and diatoms, as well as CO for CONSTANS by Serrano et al."
+Cre06.g276350	GMM:24.1	"biodegradation of xenobiotics.hydroxyacylglutathione hydrolase"		"GO:0019243;GO:0004416"	"methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione;hydroxyacylglutathione hydrolase activity"		g6194.t1		
+Cre06.g288950							"g6706.t1;Cre06.g288950.t1.1;Cre06.g288950.t1.1;g6706.t1;Cre06.g288950.t1.1;g6706.t1"		
+Cre06.g293800	GMM:14.1	S-assimilation.APS	Chloroplast	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS16	"g6803.t1;ARS16;ARS16;g6803.t1"	"ARS16;ARS16"	
+Cre06.g267900	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"					"Cre06.g267900.t1.1;g6011.t1"		
+Cre06.g299750									
+Cre06.g298750	GMM:34.3	"transport.amino acids"				AOT4	"Cre06.g298750.t1.1;g6910.t1;AOT4"		"belongs to AAAP family of amino acid/auxin permeases; most similar to plant and fungal relatives"
+Cre06.g278284							g6437.t1		
+Cre06.g273650	"GMM:33.99;GMM:30.3"	"development.unspecified;signalling.calcium"					"Cre06.g273650.t1.1;g6139.t1"		
+Cre06.g295200	GMM:30.11	signalling.light				CPH1	"CPH1;g6833.t1;Cre06.g295200.t1.1;pCRY"	PCRY1	"Most similar to plant cryptochromes; (CRY1) (PMID: 7632915); contains 6-4 photolyase and FAD-binding domains; C-terminal extension shows no similarity to that in other cryptochromes (except Volvox) and is important for stability in the dark and degradation in the light, possibly via post-translational modifications (PMID: 15064387)"
+Cre06.g278230	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g6372.t1;Cre13.g599800.t1.2;Cre13.g599800.t1.1;Cre13.g599800.t1.1;Cre13.g599800.t1.2;g6372.t1;Cre13.g599800.t1.1;g6372.t1;Cre13.g599800.t1.2"		
+Cre06.g294100							g6809.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g294700			Chloroplast	GO:0005515	"protein binding"		"g6821.t1;DIV152;DIV152;g6821.t1;DIV152;g6821.t1"		"ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196)"
+Cre06.g278207	GMM:20.2.3	stress.abiotic.drought/salt					g6349.t1		
+Cre06.g278227			Mitochondrion				g6369.t1		
+Cre06.g256350			"Secretory pathway"				"g5760.t1;Cre06.g256350.t1.1;Cre06.g256350.t1.1;g5760.t1;g5760.t1;Cre06.g256350.t1.1;g5760.t1;Cre06.g256350.t1.1;g5760.t1;Cre06.g256350.t1.1"		
+Cre06.g289426						CSB29			
+Cre06.g278282							g6433.t1		
+Cre06.g282000	GMM:2.1.2.2	"major CHO metabolism.synthesis.starch.starch synthase"	Chloroplast			STA3	"SSIII;g6559.t1;STA3;SSS3;SSS3;STA3;SSIII;g6559.t1;SSS3;STA3;SSIII;g6559.t1;g6559.t1;STA3;SSIII;SSS3;SSIII;SSS3;g6559.t1;STA3;SSIII;g6559.t1;SSS3;STA3"	"SSS3A;SSS3A;SSS3A;SSS3A;SSS3A;SSS3A"	"Starch/Glycogen Synthase ADPG - SS3;Starch/Glycogen Synthase ADPG - SS3;Starch/Glycogen Synthase ADPG - SS3;Starch/Glycogen Synthase ADPG - SS3;Starch/Glycogen Synthase ADPG - SS3;Starch/Glycogen Synthase ADPG - SS3"
+Cre06.g249850							"g5596.t1;g5596.t1"		
+Cre06.g282251							"Cre06.g282251.t1.1;g6565.t1"		
+Cre06.g300933							"g6962.t1;g6962.t1"		
+Cre06.g286400							"Cre06.g286400.t1.1;g6655.t1;CMCL1"		"Has CMC1 domain; Conserved in chlorophytes"
+Cre06.g300350	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"					"g6950.t2;g6950.t2;g6950.t2"		
+Cre06.g261600			Chloroplast				"Cre06.g261600.t1.1;g5879.t1"		
+Cre06.g289100			Chloroplast				"g6710.t1;g6710.t1"		
+Cre06.g270400							"g6067.t1;Cre06.g270400.t1.1;GT90F6;GT90-6"		
+Cre06.g256800			Chloroplast			SND1A	"SND1A;g5771.t2;SND1A;g5771.t2"		"contains divergent SAND domain;contains divergent SAND domain"
+Cre06.g301600	GMM:26.3	"misc.gluco-, galacto- and mannosidases"	"Secretory pathway"	"GO:0016020;GO:0005509;GO:0004571"	"membrane;calcium ion binding;mannosyl-oligosaccharide 1,2-alpha-mannosidase activity"	MAN2	"MAN2;g6978.t1;MAN2;g6978.t1"	"EDEM1;EDEM1"	"EDEM ortholog. It trims a mannose from Man8GlcNac2 glycans to generate Man7GlcNac2, an oligosaccharide signal on glycoproteins destined for ER-associated protein degradation, GH38 family;EDEM ortholog. It trims a mannose from Man8GlcNac2 glycans to generate Man7GlcNac2, an oligosaccharide signal on glycoproteins destined for ER-associated protein degradation, GH38 family"
+Cre06.g260250	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	Mitochondrion	GO:0016021	"integral component of membrane"	CEM1	"Cre06.g260250.t1.1;YCF10;g5849.t1;CEMA"	CEM1	"Similar to the plastid encoded cemA, chloroplast envelope membrane protein; contains weak similarity to Proton extrusion protein pcxA (Swiss-Prot:P7528) which seems involved in both light-induced Na+-dependent proton extrusion and CO(2) transport; possibly involved in CO2 uptake"
+Cre06.g291450							"Cre06.g291450.t1.1;g6754.t1;g6754.t1;Cre06.g291450.t1.1;g6754.t1;Cre06.g291450.t1.1;Cre06.g291450.t1.1;g6754.t1;Cre06.g291450.t1.1;g6754.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre06.g278269	GMM:33.99	development.unspecified	"Secretory pathway"				"Cre13.g601750.t1.1;g6411.t1;g6411.t1;Cre13.g601750.t1.1"	"SCC2;SCC2"	"ts-lethal mutant block at S/M (PMID 29743196);ts-lethal mutant block at S/M (PMID 29743196)"
+Cre06.g302700	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	"protein binding"		"g7008.t1;g7008.t1"		
+Cre06.g306000	GMM:24	"biodegradation of xenobiotics"	"Secretory pathway"			GOX3	"GOX3;g7082.t1;g7082.t1;GOX3;g7082.t1;GOX3;g7082.t1;GOX3;GOX3;g7082.t1"	"GOX3;GOX3;GOX3;GOX3;GOX3"	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); c;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); c;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); c;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); c;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); c"
+Cre06.g272650	GMM:1.1.2.1	"PS.lightreaction.photosystem I.LHC-I"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCA8	"g6117.t1;Cre06.g272650.t1.1;Cre06.g272650.t1.1;g6117.t1"	"LHCA8;LHCA8"	
+Cre06.g252550	GMM:8.1.1.2	"TCA / organic transformation.TCA.pyruvate DH.E2"	Mitochondrion	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"	DLA3	"g5653.t1;g5653.t1;g5653.t1"	"DLA3;DLA3;DLA3"	"Dihydrolipoamide acetyltransferase; E2 component of pyruvate dehydrogenase complex. Independent sequence at AY596299.;Dihydrolipoamide acetyltransferase; E2 component of pyruvate dehydrogenase complex. Independent sequence at AY596299.;Dihydrolipoamide acetyltransferase; E2 component of pyruvate dehydrogenase complex. Independent sequence at AY596299."
+Cre06.g278252	GMM:24	"biodegradation of xenobiotics"	"Secretory pathway"			GOX18	"GOX9;Cre13.g600900.t1.1;Cre13.g600900.t1.2;g6393.t1;GOX18;GOX9;Cre13.g600900.t1.1;Cre13.g600900.t1.2;g6393.t1;GOX18"	"GOX18;GOX18"	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi (both use the same Tyr radical / metal mechanism); the higher plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and glyoxal oxidase domain (incl SCOP d1k3ia1, E-set domains of sugar-utilizing enzymes); contains N-terminal hy;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi (both use the same Tyr radical / metal mechanism); the higher plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and glyoxal oxidase domain (incl SCOP d1k3ia1, E-set domains of sugar-utilizing enzymes); contains N-terminal hy"
+Cre06.g264050							"Cre06.g264050.t1.1;g5933.t1;g5933.t1;Cre06.g264050.t1.1;Cre06.g264050.t1.1;g5933.t1;Cre06.g264050.t1.1;g5933.t1"		
+Cre06.g290850							"g6742.t1;Cre06.g290850.t1.1"		
+Cre06.g297200						FAP108	"g6876.t1;Cre06.g297200.t1.1;Cre06.g297200.t1.1;g6876.t1"	"FAP108;FAP108"	"Found in the flagellar proteome;Found in the flagellar proteome"
+Cre06.g262100	GMM:21.2.2	"redox.ascorbate and glutathione.glutathione"		"GO:0055114;GO:0045454;GO:0016491"	"oxidation-reduction process;cell redox homeostasis;oxidoreductase activity"	GSR1	"g5889.t1;GSHR1;GSR1"	GSR1	"glutathione reductase (GR) (Grase)"
+Cre06.g286650	GMM:27.3.46	"RNA.regulation of transcription.DNA methyltransferases"	Chloroplast			DMC4	"DMT4;g6660.t1;DMC4"	DMC4	"Putative DNMT1-type cytosine-C5 specific DNA methylase; protein contains a methylase domain but appears to lack bromo adjacent homology (BAH) domains. ChromoDB DMT342"
+Cre06.g281150							"Cre06.g281150.t1.1;g6539.t1"		
+Cre06.g278120			Mitochondrion						
+Cre06.g298225			"Secretory pathway"				"g6898.t1;Cre06.g298219.t2.1"		
+Cre06.g278300	"GMM:34.99;GMM:34.1"	"transport.misc;transport.p- and v-ATPases"		GO:0016020	membrane		"g6472.t1;Cre06.g278300.t1.1;g6472.t1;Cre06.g278300.t1.1"		
+Cre06.g278700			Chloroplast				"g6481.t1;g6481.t1;g6481.t1;g6481.t1"		
+Cre06.g285001							"Cre06.g285000.t1.3;g6626.t1;Cre06.g285000.t1.3;g6626.t1"		
+Cre06.g291950	GMM:34.14	"transport.unspecified cations"	Chloroplast	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	MRS4	"g6764.t1;Cre06.g291950.t1.1;MRS3"	MRS4	"Putative Mg2+ dependent mitochondrial pre-mRNA splicing factor, with homology to CorA, a Mg2+ transporter protein. May be essential for group II intron splicing in mitochondria in response to Mg2+ (see PMID: 1154418). Homologous to the MRS2 splicing fa"
+Cre06.g275400	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"					g6175.t1		
+Cre06.g249350	GMM:27.3.46	"RNA.regulation of transcription.DNA methyltransferases"	Chloroplast			DMC3	"DMC3;DMT1A;g5585.t1;DMC3;DMT1A;g5585.t1;g5585.t1;DMC3;DMT1A;g5585.t1;DMT1A;DMC3;DMT1A;DMC3;g5585.t1"	"DMC3;DMC3;DMC3;DMC3;DMC3"	"DNA methylase, C-5 cytosine-specific. ChromoDB DMT348;DNA methylase, C-5 cytosine-specific. ChromoDB DMT348;DNA methylase, C-5 cytosine-specific. ChromoDB DMT348;DNA methylase, C-5 cytosine-specific. ChromoDB DMT348;DNA methylase, C-5 cytosine-specific. ChromoDB DMT348"
+Cre06.g273600	"GMM:29.5.11;GMM:29.2.1.2.1.27"	"protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27"		"GO:0006412;GO:0005840;GO:0005515;GO:0003735"	"translation;ribosome;protein binding;structural constituent of ribosome"	RPS27A	"Cre06.g273600.t1.1;RPS27a;g6138.t1;g6138.t1;RPS27a;Cre06.g273600.t1.1"	"RPS27A;RPS27A"	"Cytosolic 40S small ribosomal subunit protein S27a;Cytosolic 40S small ribosomal subunit protein S27a"
+Cre06.g263550			Chloroplast			LCI7	"g5921.t1;LCI7;Cre06.g263550.t1.1;LCI7;Cre06.g263550.t1.1;g5921.t1"	"SELU1;SELU1"	"Similar to selenoprotein SELU, but lack selenocysteine residue; R53.5-related; low-CO2-inducible protein 7, regulated by CCM1 [PMID: 15235119]; identified in the flagellar and basal body proteome [PMID: 15137946] and upregulated by deflagellation;Similar to selenoprotein SELU, but lack selenocysteine residue; R53.5-related; low-CO2-inducible protein 7, regulated by CCM1 [PMID: 15235119]; identified in the flagellar and basal body proteome [PMID: 15137946] and upregulated by deflagellation"
+Cre06.g278295									
+Cre06.g289650			Mitochondrion				"Cre06.g289650.t1.1;g6721.t1;g6721.t1;Cre06.g289650.t1.1"		
+Cre06.g291100			"Secretory pathway"				"g6747.t1;Cre06.g291100.t1.1"		
+Cre06.g294301									
+Cre06.g301750							"Cre06.g301750.t1.1;g6982.t1"		
+Cre06.g253901			Chloroplast						
+Cre06.g264650	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR14	"HTR27;Cre06.g264650.t1.1;g5945.t1"	HTR14	"replication linked H3; histone gene cluster XIV (type 43AB)"
+Cre06.g266100	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g5973.t1		
+Cre06.g252850							"522875;Cre06.g252850.t1.1;g5662.t2;g5662.t2;Cre06.g252850.t1.1;522875"		
+Cre06.g288850							"g6703.t1;Cre06.g288850.t1.1"		
+Cre06.g311500			"Secretory pathway"				g7206.t1		
+Cre06.g258900							"Cre06.g258900.t1.1;g5821.t1"		
+Cre06.g283826							g6599.t1		
+Cre06.g273050	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Chloroplast			CGLD10	"Cre06.g273050.t1.1;g6126.t1"	CGLD10	"related to SET domain transcriptional regulators"
+Cre06.g299650	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast			CLPR6	"Cre06.g299650.t1.1;g6930.t1;Cre06.g299650.t1.1;g6930.t1;g6930.t1;Cre06.g299650.t1.1"	"CLPR6;CLPR6;CLPR6"	"ortholog of plant ClpP6;ortholog of plant ClpP6;ortholog of plant ClpP6"
+Cre06.g278171						CGL132	"Cre13.g596850.t1.1;g6314.t1;Cre13.g596850.t1.2;g6314.t1;Cre13.g596850.t1.1;Cre13.g596850.t1.2;g6314.t1;Cre13.g596850.t1.2;Cre13.g596850.t1.1;g6314.t1;Cre13.g596850.t1.2;Cre13.g596850.t1.1;Cre13.g596850.t1.1;Cre13.g596850.t1.2;g6314.t1;g6314.t1;Cre13.g596850.t1.2;Cre13.g596850.t1.1;g6314.t1;Cre13.g596850.t1.2;Cre13.g596850.t1.1;Cre13.g596850.t1.1;Cre13.g596850.t1.2;g6314.t1"	"CGL132;CGL132;CGL132;CGL132;CGL132;CGL132;CGL132;CGL132"	
+Cre06.g298500							"g6905.t1;g6905.t1;g6905.t1;g6905.t1;g6905.t1"		
+Cre06.g296700	"GMM:5;GMM:1.1.7.1"	"fermentation;PS.lightreaction.hydrogenase.FeFe-hydrogenase"	Chloroplast			HYDG1	"Cre06.g296700.t1.1;g6861.t1;HYDG;HYDG;Cre06.g296700.t1.1;g6861.t1"	"HYDG1;HYDG1"	"Related to Thiazole biosynthesis protein thiH/O. Pfam motif found in thiamin and biotin biosynthesis genes. Radical SAM protein required for the assembly of an active [Fe]-hydrogenase [PMID: 15082711];Related to Thiazole biosynthesis protein thiH/O. Pfam motif found in thiamin and biotin biosynthesis genes. Radical SAM protein required for the assembly of an active [Fe]-hydrogenase [PMID: 15082711]"
+Cre06.g284726			Chloroplast						
+Cre06.g278226	GMM:34.99	transport.misc	Mitochondrion	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"		"Cre13.g599600.t1.2;g6368.t1;Cre13.g599600.t1.1"		
+Cre06.g276759			Mitochondrion				"Cre06.g276759.t1.1;g6204.t2;g6204.t2;Cre06.g276759.t1.1;Cre06.g276759.t1.1;g6204.t2;Cre06.g276759.t1.1;g6204.t2"		
+Cre06.g287176	GMM:31.6.1.4.1	"cell.motility.eukaryotes.axonemal dyneins.outer arm"	Mitochondrion			CPLD67	"g6671.t1;Cre06.g287176.t1.1;g6671.t1;Cre06.g287176.t1.1;g6671.t1;Cre06.g287176.t1.1;Cre06.g287176.t1.1;g6671.t1"	"CPLD67;CPLD67;CPLD67;CPLD67"	"Conserved in the Plant Lineage and Diatoms;Conserved in the Plant Lineage and Diatoms;Conserved in the Plant Lineage and Diatoms;Conserved in the Plant Lineage and Diatoms"
+Cre06.g300144									
+Cre06.g301325			Mitochondrion						
+Cre06.g278202	"GMM:3.4.5;GMM:21.2.1.3"	"minor CHO metabolism.myo-inositol.inositol phosphatase;redox.ascorbate and glutathione.ascorbate.L-galactose-1-phosphate phosphatase"		GO:0046854	"phosphatidylinositol phosphorylation"		"Cre13.g598350;Cre13.g598350.t1.2;g6344.t1;Cre13.g598350.t1.1"		"involved in vitamin C biosynthesis"
+Cre06.g298050							"g6894.t1;Cre06.g298050.t1.1"		
+Cre06.g304750	"GMM:30.5;GMM:3.5;GMM:27.3.99"	"signalling.G-proteins;minor CHO metabolism.others;RNA.regulation of transcription.unclassified"		GO:0005096	"GTPase activator activity"		"Cre06.g304750.t1.1;g7054.t1"		
+Cre06.g253051			Chloroplast	GO:0016021	"integral component of membrane"	MTA3A	"MTA3;MTA3A;Cre06.g253050.t1.2; g5669.t1"		"unknown protein; this duplicate copy of MTA3 is located in the MT+ locus (see PMID: 11805055) . Independently sequenced: AF417571. This gene may be a pseudogene"
+Cre06.g278296									
+Cre06.g303400	"GMM:31.6.1.11;GMM:31.6.1.10"	"cell.motility.eukaryotes.other;cell.motility.eukaryotes.flagellar associated proteins"				ADF3	"g7025.t1;FAP16;g7025.t1;FAP16"	"ADF3;ADF3"	"ADF3, necessary for axonemal severing; Similar to Echinoderm Microtubule Binding Protein;ADF3, necessary for axonemal severing; Similar to Echinoderm Microtubule Binding Protein"
+Cre06.g257950	GMM:13.1.1.2.1	"amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase"	"Secretory pathway"	"GO:0030170;GO:0009058;GO:0008483;GO:0006520"	"pyridoxal phosphate binding;biosynthetic process;transaminase activity;cellular amino acid metabolic process"	AST4	"Cre06.g257950.t1.1;g5798.t1;g5798.t1;Cre06.g257950.t1.1"	"AST4;AST4"	"Putative aspartate aminotransferase (EC 2.6.1.1); weak Target-P prediction of mitochondrial targeting; homology also predicts mitochondrial location; found in the mitochondrial proteomic survey.;Putative aspartate aminotransferase (EC 2.6.1.1); weak Target-P prediction of mitochondrial targeting; homology also predicts mitochondrial location; found in the mitochondrial proteomic survey."
+Cre06.g300500				"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"CYA18;g6953.t1;ADCY1;ADCY1;g6953.t1;CYA18"		"Most similar to the adenylyl cyclases of Paramecium, Tetrahymena, and Plasmodium. Weber et al. 2004 (Cellular Signalling 16:115-125) suggested that these proteins are potassium channel/cyclase fusion proteins and that they localize to the cilia. The similarity between these proteins and ADCY1 is greatest in the C-terminal region: the catalytic domain and the putative TPR (tetratricopeptide) domain that may be implicated in protein-protein interaction. To a lesser degree, the six transmembrane segment and t;Most similar to the adenylyl cyclases of Paramecium, Tetrahymena, and Plasmodium. Weber et al. 2004 (Cellular Signalling 16:115-125) suggested that these proteins are potassium channel/cyclase fusion proteins and that they localize to the cilia. The similarity between these proteins and ADCY1 is greatest in the C-terminal region: the catalytic domain and the putative TPR (tetratricopeptide) domain that may be implicated in protein-protein interaction. To a lesser degree, the six transmembrane segment and t"
+Cre06.g278248			Mitochondrion				"Cre13.g600776.t1.2;Cre13.g600776.t1.1;g6390.t1;Cre13.g600776.t1.2;g6390.t1;Cre13.g600776.t1.1;Cre13.g600776.t1.1;g6390.t1;Cre13.g600776.t1.2;g6390.t1;Cre13.g600776.t1.2;Cre13.g600776.t1.1;Cre13.g600776.t1.2;Cre13.g600776.t1.1;g6390.t1"		
+Cre06.g296924			Chloroplast						
+Cre06.g264400							"g5940.t1;g5940.t1"		
+Cre06.g304700							"Cre06.g304700.t1.1;g7053.t1;Cre06.g304700.t1.1;g7053.t1;g7053.t1;Cre06.g304700.t1.1"		
+Cre06.g283200	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		GO:0005515	"protein binding"		"g6586.t1;Cre06.g283200.t1.1"		
+Cre06.g278235							"g6377.t1;Cre13.g600100.t1.1;g6377.t1;Cre13.g600100.t1.1"		
+Cre06.g306750						FAP290	"Cre06.g306750.t1.1;g7106.t1;g7106.t1;Cre06.g306750.t1.1"	"FAP290;FAP290"	"Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384];Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre06.g249400			Mitochondrion				g5586.t1		
+Cre06.g300001			"Secretory pathway"				g6939.t1		
+Cre06.g277150			Chloroplast				"Cre06.g277150.t1.1;g6212.t1"		
+Cre06.g264950	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA13	"Cre06.g264950.t1.1;HTA13;HTA12;g5951.t1"	HTA13	"replication linked H2A; histone gene cluster XIII (type 43AB)"
+Cre06.g263400	GMM:29.2.4	protein.synthesis.elongation					"Cre06.g263400.t1.1;g5918.t1"		
+Cre06.g271200	GMM:21.2.1	"redox.ascorbate and glutathione.ascorbate"	Chloroplast	"GO:0055114;GO:0045454;GO:0016491"	"oxidation-reduction process;cell redox homeostasis;oxidoreductase activity"	PNO1	"Cre06.g271200.t1.1;PNO1;g6085.t1;Cre06.g271200.t1.1;PNO1;g6085.t1;Cre06.g271200.t1.1;PNO1;g6085.t1;Cre06.g271200.t1.1;PNO1;g6085.t1"		"CoA-disulfide reductase; flavoprotein, putative NADH oxidase, bacterial type;CoA-disulfide reductase; flavoprotein, putative NADH oxidase, bacterial type;CoA-disulfide reductase; flavoprotein, putative NADH oxidase, bacterial type;CoA-disulfide reductase; flavoprotein, putative NADH oxidase, bacterial type"
+Cre06.g250850	GMM:28.2	DNA.repair		"GO:0030983;GO:0006298;GO:0005524"	"mismatched DNA binding;mismatch repair;ATP binding"	MSH1	"MSH1;g5618.t1"	MSH1	"Orthologous to MSH1 (AT3G24320) in Arabidopsis thaliana;"
+Cre06.g289600							"g6720.t1;Cre06.g289600.t1.1"		
+Cre06.g271400	"GMM:3.99;GMM:1.2.1"	"minor CHO metabolism.misc;PS.photorespiration.phosphoglycolate phosphatase"	Mitochondrion			PGP3	"PGP3;g6090.t1"		"Phosphoglycolate phosphatase (EC 3.1.3.18), chloroplast precursor; similar to Chlamydomonas PGP1"
+Cre06.g278188	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"		"GO:0008137;GO:0005739;GO:0003954"	"NADH dehydrogenase (ubiquinone) activity;mitochondrion;NADH dehydrogenase activity"	NUOB18	"NUOB18;Cre13.g597700.t1.1;g6331.t1;Cre13.g597700.t1.2"	NUOB18	"NADH:ubiquinone oxidoreductase (Complex I) B18-like subunit, mitochondrial; [=NDUFB7 subunit]; Ortholog of NDUFB7 in Homo sapiens;"
+Cre06.g272050	GMM:4.1.12	"glycolysis.cytosolic branch.phosphoglycerate mutase"		"GO:0046872;GO:0030145;GO:0006007;GO:0005737;GO:0004619;GO:0003824"	"metal ion binding;manganese ion binding;glucose catabolic process;cytoplasm;phosphoglycerate mutase activity;catalytic activity"	PGM1	"PGM1;g6104.t1;FAP15;Cre06.g272050.t1.1;Cre06.g272050.t1.1;g6104.t1;FAP15;PGM1;FAP15;Cre06.g272050.t1.1;g6104.t1;PGM1"	"GPM1;GPM1;GPM1"	"Phosphoglycerate mutase, 2,3-bisphosphoglycerate-independent (EC 5.4.2.1); bisphosphoglycerate-independent; probably plastid form; Also known as Flagellar associated protein 15 (FAP15); Note that Phosphoglycerate mutase proteins should use GPM as a gene symbol to avoid confusion with phosphoglucomutase;Phosphoglycerate mutase, 2,3-bisphosphoglycerate-independent (EC 5.4.2.1); bisphosphoglycerate-independent; probably plastid form; Also known as Flagellar associated protein 15 (FAP15); Note that Phosphoglycerate mutase proteins should use GPM as a gene symbol to avoid confusion with phosphoglucomutase;Phosphoglycerate mutase, 2,3-bisphosphoglycerate-independent (EC 5.4.2.1); bisphosphoglycerate-independent; probably plastid form; Also known as Flagellar associated protein 15 (FAP15); Note that Phosphoglycerate mutase proteins should use GPM as a gene symbol to avoid confusion with phosphoglucomutase"
+Cre06.g302389									
+Cre06.g273250			Chloroplast	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"		"GPA2;g6130.t1;Cre06.g273250.t1.1;g6130.t1;Cre06.g273250.t1.1;GPA2;GPA2;Cre06.g273250.t1.1;g6130.t1;GPA2;Cre06.g273250.t1.1;g6130.t1;Cre06.g273250.t1.1;GPA2;g6130.t1;Cre06.g273250.t1.1;g6130.t1;GPA2"	"GPAT2;GPAT2;GPAT2;GPAT2;GPAT2;GPAT2"	"ER glycerol-3-phosphate O-acyltransferase;ER glycerol-3-phosphate O-acyltransferase;ER glycerol-3-phosphate O-acyltransferase;ER glycerol-3-phosphate O-acyltransferase;ER glycerol-3-phosphate O-acyltransferase;ER glycerol-3-phosphate O-acyltransferase"
+Cre06.g284250	GMM:1.1.1.1	"PS.lightreaction.photosystem II.LHC-II"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCBM8	"g6609.t1;Cre06.g284250.t1.1"	LHCBM8	
+Cre06.g281766			Mitochondrion				"g6554.t2;g6554.t2;g6554.t2"		
+Cre06.g278185	"GMM:3.5;GMM:10.1.4"	"minor CHO metabolism.others;cell wall.precursor synthesis.UGD"		"GO:0055114;GO:0051287;GO:0016616;GO:0003979"	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;UDP-glucose 6-dehydrogenase activity"	UGD2	"Cre13.g597550.t1.2;Cre13.g597550.t1.1;UGD2;g6328.t1"	UGD2	"belongs to the UDP-glucose/GDP-mannose dehydrogenase family. Found in the flagellar proteome [PMID: 15998802]; (UGPD1, UDP2); may be involved in alginate biosynthesis"
+Cre06.g267350			Mitochondrion				"Cre06.g267350.t1.1;g5999.t1"		
+Cre06.g297650	GMM:29.4	"protein.postranslational modification"		GO:0003950	"NAD+ ADP-ribosyltransferase activity"		g6885.t2	UBC36	
+Cre06.g274300	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO5	"Cre06.g274300.t1.1;HFO29;g6152.t1"	HFO5	"replication linked H4; histone gene cluster V (type 43)"
+Cre06.g269801	GMM:35.1.1	"not assigned.no ontology.ABC1 family protein"	Chloroplast				g6053.t1		
+Cre06.g284100	"GMM:34.5;GMM:1.5.3"	"transport.ammonium;PS.carbon concentrating mechanism.algal"		"GO:0072488;GO:0016020;GO:0015696;GO:0008519"	"ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity"	RHP1	"Cre06.g284100.t1.1;RH1;g6606.t1;Cre06.g284100.t1.1;RH1;g6606.t1;Cre06.g284100.t1.1;RH1;g6606.t1;g6606.t1;RH1;Cre06.g284100.t1.1;RH1;g6606.t1;Cre06.g284100.t1.1"	"RHP1;RHP1;RHP1;RHP1;RHP1"	"RH50-like protein; elevated expression in cells grown in high CO2 (5%) [PMID: 12032358; PMID: 11358367]; necessary for adaptation to high CO2; located in plasma membrane;RH50-like protein; elevated expression in cells grown in high CO2 (5%) [PMID: 12032358; PMID: 11358367]; necessary for adaptation to high CO2; located in plasma membrane;RH50-like protein; elevated expression in cells grown in high CO2 (5%) [PMID: 12032358; PMID: 11358367]; necessary for adaptation to high CO2; located in plasma membrane;RH50-like protein; elevated expression in cells grown in high CO2 (5%) [PMID: 12032358; PMID: 11358367]; necessary for adaptation to high CO2; located in plasma membrane;RH50-like protein; elevated expression in cells grown in high CO2 (5%) [PMID: 12032358; PMID: 11358367]; necessary for adaptation to high CO2; located in plasma membrane"
+Cre06.g311650			Mitochondrion	"GO:0016021;GO:0006813;GO:0005242"	"integral component of membrane;potassium ion transport;inward rectifier potassium channel activity"	IRK1	"IRK1;g7209.t1;g7209.t1;IRK1;IRK1;g7209.t1;IRK1;g7209.t1;IRK1;g7209.t1"	"IRK1;IRK1;IRK1;IRK1;IRK1"	"Putative inward rectifier K+ channel TC; 1.A.2;Putative inward rectifier K+ channel TC; 1.A.2;Putative inward rectifier K+ channel TC; 1.A.2;Putative inward rectifier K+ channel TC; 1.A.2;Putative inward rectifier K+ channel TC; 1.A.2"
+Cre06.g278291									
+Cre06.g269350				"GO:0006355;GO:0005634;GO:0003700;GO:0003677"	"regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding;DNA binding"		"Cre06.g269350.t1.1;g6043.t1"		
+Cre06.g255650			Chloroplast			EZY1B	"EZY25;g5746.t1;EZY1"	EZY1B	"Unknown protein, zygote-specific, originally called Class III, member of a tandemly repeated gene family [PMID: 3614194]; localizes to chloroplast nucleoids, expression is suppressed after UV treatment of plus gametes, postulated involvement in uniparental inheritance of chloroplast DNA [PMID: 8374951]. EZY1 transcripts are not detected in cells expressing GSP1 ectopically [PMID: 11641281]. Genbank entry L20945."
+Cre06.g278264			Chloroplast				"g6405.t1;Cre13.g601500.t1.2;Cre13.g601500.t1.1;g6405.t1;Cre13.g601500.t1.1;Cre13.g601500.t1.2;Cre13.g601500.t1.1;Cre13.g601500.t1.2;g6405.t1"		
+Cre06.g295550							"g6841.t1;Cre06.g295550.t1.1"		
+Cre06.g305251	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	GO:0005515	"protein binding"		"Cre06.g305251.t1.1;g7066.t1;Cre06.g305251.t1.1;g7066.t1;Cre06.g305251.t1.1;g7066.t1"		
+Cre06.g252871	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"	Mitochondrion			MTA5	"g5665.t1;MTA5A;MTA5"		"This is part of a cluster of genes in the mt+ mating locus that was derived from an autosomal translocation from chromosome_16"
+Cre06.g309750							"g7167.t1;Cre06.g309750.t1.1"		
+Cre06.g275500	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		"GO:0006355;GO:0003700"	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g6177.t1;Cre06.g275500.t1.1;g6177.t1;Cre06.g275500.t1.1;g6177.t1;Cre06.g275500.t1.1"		
+Cre06.g296983	GMM:29.5.11.2	protein.degradation.ubiquitin.E1		GO:0008641	"small protein activating enzyme activity"		g6871.t1	SAE2	"E1 SUMO activating enzyme; Biochemical activity verified"
+Cre06.g298911			"Secretory pathway"						
+Cre06.g268700							"g6028.t1;g6028.t1"	"POB28;POB28"	"Found in basal body proteome;Found in basal body proteome"
+Cre06.g266276			Mitochondrion						
+Cre06.g258226			"Secretory pathway"	"GO:0009341;GO:0005975;GO:0004565"	"beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity"		"g5804.t1;g5804.t1"		
+Cre06.g289033							"Cre06.g289033.t1.1;g6708.t1"		
+Cre06.g285401			Chloroplast	GO:0003677	"DNA binding"	FAP355	"HLP1;Cre06.g285400.t1.3;g6634.t1"	FAP355	"Similar to bacterial DNA-binding protein HU; Karcher et al. (29) [PMID: 19995727] showed this protein is associated with chloroplast nucleoids, and that RNAi knockdown of the gene expression reduced the level of compaction of chloroplast nucleoids"
+Cre06.g284600			Chloroplast			RBD2	"g6617.t1;Cre06.g284600.t1.1;g6617.t1;Cre06.g284600.t1.1"	"RBD2;RBD2"	
+Cre06.g289850	GMM:2.1.2.3	"major CHO metabolism.synthesis.starch.starch branching"	Mitochondrion	"GO:0043169;GO:0005975;GO:0004553;GO:0003824"	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	SBE1	"g6725.t1;g6725.t1;g6725.t1;g6725.t1;g6725.t1;g6725.t1"	"SBE1;SBE1;SBE1;SBE1;SBE1;SBE1"	"Catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position;Catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position;Catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position;Catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position;Catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position;Catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position"
+Cre06.g277550	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	"Secretory pathway"	"GO:0016810;GO:0006807"	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"		"g6220.t1;Cre06.g277550.t1.1"		
+Cre06.g257476									
+Cre06.g309500			Chloroplast			OPR28	"g7161.t1;g7161.t1"	"OPR28;OPR28"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre06.g258450							"Cre06.g258450.t1.1;g5810.t2"		
+Cre06.g254240									
+Cre06.g308533	GMM:29.2.1.1.4.2	"protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit"	Chloroplast			PSRP6	cL38	PSRP6	"Chloroplast large ribosomal subunit protein Plastid-Specific Ribosomal Protein 6 (cL38); this is a different protein from plastid ribosomal protein S6, product of the PRPS6 gene."
+Cre06.g278089	GMM:26.17	misc.dynamin					"g6233.t1;Cre13.g593050.t1.1;Cre13.g593050.t1.1;g6233.t1;Cre13.g593050.t1.1;g6233.t1;g6233.t1;Cre13.g593050.t1.1;Cre13.g593050.t1.1;g6233.t1;Cre13.g593050.t1.1;g6233.t1;Cre13.g593050.t1.1;g6233.t1;Cre13.g593050.t1.1;g6233.t1;Cre13.g593050.t1.1;g6233.t1;Cre13.g593050.t1.1;g6233.t1"		
+Cre06.g288000							g6688.t1		
+Cre06.g279450			Chloroplast				"g6497.t1;MUT68"		"closely related to nearby Cre06.g279050"
+Cre06.g273300	GMM:29.1.3	"protein.aa activation.threonine-tRNA ligase"		"GO:0043039;GO:0016876;GO:0006418;GO:0005524;GO:0004812;GO:0000166"	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"	TST1	"g6131.t1;TST1;Cre06.g273300.t1.1;Cre06.g273300.t1.1;g6131.t1;TST1"	"TST1;TST1"	
+Cre06.g275000	GMM:33.99	development.unspecified	"Secretory pathway"				"g6167.t1;g6167.t1;g6167.t1"		
+Cre06.g305600				"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	ADH9	"ADH9;g7074.t1;Cre06.g305600.t1.1;Cre06.g305600.t1.1;ADH9;g7074.t1"		"Alcohol dehydrogenase, zinc-containing;Alcohol dehydrogenase, zinc-containing"
+Cre06.g278280									
+Cre06.g271150	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP74	"g6083.t1;C1d-HC3"	FAP74	"Found in the flagellar proteome; HC3 of C1d projection on central pair; Together with FAP221, FAP46, FAP54, C1d-87 and calmodulin, form a single complex in the C1d projection;"
+Cre06.g275300							"Cre06.g275300.t1.1;g6173.t1"		
+Cre06.g278204			"Secretory pathway"				"Cre13.g598450.t1.1;g6346.t1;g6346.t1;Cre13.g598450.t1.1;g6346.t1;Cre13.g598450.t1.1"		
+Cre06.g271700	GMM:29.5.7	protein.degradation.metalloprotease					g6097.t1		
+Cre06.g307012							"g7111.t1;Cre06.g307050.t1.3;Cre06.g307050.t1.3;g7111.t1"		
+Cre06.g278212						CGL46	"Cre13.g598850.t1.1;CGL46;g6354.t1;Cre13.g598850.t1.2;CGL46;g6354.t1;Cre13.g598850.t1.2;Cre13.g598850.t1.1;g6354.t1;CGL46;Cre13.g598850.t1.1;Cre13.g598850.t1.2;Cre13.g598850.t1.1;Cre13.g598850.t1.2;g6354.t1;CGL46"	"CGL46;CGL46;CGL46;CGL46"	
+Cre06.g310601							"TNP19;g7188.t1"		"Has a putative transposase DNA-binding domain containing four conserved cysteines suggestive of a zinc binding domain."
+Cre06.g280050	"GMM:28.99;GMM:27.1.19"	"DNA.unspecified;RNA.processing.ribonucleases"		"GO:0004527;GO:0003676"	"exonuclease activity;nucleic acid binding"	XRN1	"ROC86;XRN1;Cre06.g280050.t1.1;g6513.t1;ROC86;g6513.t1;XRN1;Cre06.g280050.t1.1;XRN1;g6513.t1;ROC86;Cre06.g280050.t1.1;ROC86;g6513.t1;Cre06.g280050.t1.1;XRN1;g6513.t1;XRN1;Cre06.g280050.t1.1;ROC86;g6513.t1;XRN1;ROC86;Cre06.g280050.t1.1"	"XRN1;XRN1;XRN1;XRN1;XRN1;XRN1"	"Homologue of yeast 5'-3' exoribonucleases Xrn1p (cytoplasmic) and Rat1p (nuclear); probably organelle targeted; Matsuo et al.'s (2008) roc86 (rhythm of chloroplast 86) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];Homologue of yeast 5'-3' exoribonucleases Xrn1p (cytoplasmic) and Rat1p (nuclear); probably organelle targeted; Matsuo et al.'s (2008) roc86 (rhythm of chloroplast 86) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];Homologue of yeast 5'-3' exoribonucleases Xrn1p (cytoplasmic) and Rat1p (nuclear); probably organelle targeted; Matsuo et al.'s (2008) roc86 (rhythm of chloroplast 86) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];Homologue of yeast 5'-3' exoribonucleases Xrn1p (cytoplasmic) and Rat1p (nuclear); probably organelle targeted; Matsuo et al.'s (2008) roc86 (rhythm of chloroplast 86) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];Homologue of yeast 5'-3' exoribonucleases Xrn1p (cytoplasmic) and Rat1p (nuclear); probably organelle targeted; Matsuo et al.'s (2008) roc86 (rhythm of chloroplast 86) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];Homologue of yeast 5'-3' exoribonucleases Xrn1p (cytoplasmic) and Rat1p (nuclear); probably organelle targeted; Matsuo et al.'s (2008) roc86 (rhythm of chloroplast 86) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618]"
+Cre06.g290400	GMM:27.3.55	"RNA.regulation of transcription.HDA"	Chloroplast			HDA5	"g6736.t2;HDA5;HDA5;g6736.t2;HDA5;g6736.t2"	"HDA5;HDA5;HDA5"	"Histone deacetylase. ChromDB HDA3413;Histone deacetylase. ChromDB HDA3413;Histone deacetylase. ChromDB HDA3413"
+Cre06.g286200			"Secretory pathway"	"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		"Cre06.g286200.t1.1;g6651.t1;Cre06.g286200.t1.1;g6651.t1;Cre06.g286200.t1.1;g6651.t1;g6651.t1;Cre06.g286200.t1.1"		
+Cre06.g270650	GMM:29.2.1.1.2.51	"protein.synthesis.ribosomal protein.prokaryotic.mitochondrion.L51/S25/CI-B8"				MRPL43	"Cre06.g270650.t1.1;mL43;MRPL43;g6072.t1"	MRPL43	
+Cre06.g278600							"Cre06.g278600.t1.1;g6479.t1;g6479.t1;Cre06.g278600.t1.1"		
+Cre06.g268150	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CNK3	"g6016.t1;CNK3"	CNK3	"NimA related kinase homolog 3 [gi:34334395, PMID: 15068267]"
+Cre06.g279976	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"						
+Cre06.g306601	GMM:13.1.6.5.1	"amino acid metabolism.synthesis.aromatic aa.tryptophan.anthranilate synthase"	Chloroplast	"GO:0016833;GO:0009058"	"oxo-acid-lyase activity;biosynthetic process"	ANS1	"ANS1;g7102.t1"	ANS1	"Putative anthranilate synthase, alpha subunit, component I-2 (ASA2) [EC:4.1.3.27]"
+Cre06.g272800	GMM:29.2.1.2.1.8	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S8"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS8	"Cre06.g272800.t1.1;g6121.t1;g6121.t1;Cre06.g272800.t1.1;Cre06.g272800.t1.1;g6121.t1;g6121.t1;Cre06.g272800.t1.1"	"RPS8;RPS8;RPS8;RPS8"	"Cytosolic 40S small ribosomal subunit protein S8;Cytosolic 40S small ribosomal subunit protein S8;Cytosolic 40S small ribosomal subunit protein S8;Cytosolic 40S small ribosomal subunit protein S8"
+Cre06.g251250	GMM:17.4.2	"hormone metabolism.cytokinin.signal transduction"	Mitochondrion	"GO:0007165;GO:0000160;GO:0000155"	"signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity"	HKR3	"HIK;HKR3;g5627.t1"	HIK3	"Contains Histidine kinase and signal receiver domains; Originally named HKR3, but was changed to avoid confusion with the histidine-kinase rhodopsins;"
+Cre06.g302450									
+Cre06.g280850	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0005839;GO:0004298"	"proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity"	PBG1	"PBG1;g6532.t1"	PBG1	
+Cre06.g254600			Mitochondrion				"g5727.t1;mS45;g5727.t1;mS45;g5727.t1;mS45"	"MRPS45;MRPS45;MRPS45"	
+Cre06.g261123				GO:0005509	"calcium ion binding"		"g5870.t1;Cre06.g261123.t1.1"		
+Cre06.g285850							"g6643.t1;Cre06.g285850.t1.1"		
+Cre06.g307300						ANT2	"g7117.t1;ANT2"		"putative adenine nucleotide translocase; ADP/ATP carrier protein, probably mitochondrial"
+Cre06.g261800	GMM:13.1.6.3.1	"amino acid metabolism.synthesis.aromatic aa.phenylalanine.arogenate dehydratase / prephenate dehydratase"	Chloroplast	"GO:0009094;GO:0004664"	"L-phenylalanine biosynthetic process;prephenate dehydratase activity"	PRD1	"PRD1;g5883.t1;Cre06.g261800.t1.1"	ADT1	"putative prephenate dehydratase family protein [EC:4.2.1.51]; cyclohexadienyl dehydratase"
+Cre06.g288750	GMM:27.4	"RNA.RNA binding"		"GO:0006457;GO:0003755;GO:0003676"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;nucleic acid binding"	CBP20			
+Cre06.g294776			Chloroplast				"g6823.t1;g6823.t1"		
+Cre06.g291600	"GMM:11.3.2;GMM:11.3"	"lipid metabolism.phospholipid synthesis.choline kinase;lipid metabolism.phospholipid synthesis"				ETK1	"g6757.t2;ETK1;ETK1;g6757.t2;g6757.t2;ETK1"	"ETK1;ETK1;ETK1"	"Ethanolamine kinase (PtdEtn synthesis);Ethanolamine kinase (PtdEtn synthesis);Ethanolamine kinase (PtdEtn synthesis)"
+Cre06.g278141							"g6286.t1;Cre13.g595550.t1.1"		
+Cre06.g304450			Chloroplast						
+Cre06.g278112							"Cre13.g594100.t1.2;Cre13.g594100.t1.1;g6255.t1"		
+Cre06.g293250				"GO:0030132;GO:0030130;GO:0016192;GO:0006886;GO:0005198;GO:0005096"	"clathrin coat of coated pit;clathrin coat of trans-Golgi network vesicle;vesicle-mediated transport;intracellular protein transport;structural molecule activity;GTPase activator activity"		g6792.t1		
+Cre06.g283850							"Cre06.g283850.t1.1;g6600.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g263050	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	"GO:0043043;GO:0006414;GO:0005737;GO:0003746"	"peptide biosynthetic process;translational elongation;cytoplasm;translation elongation factor activity"	EFP2	"Cre06.g263050.t1.1;g5909.t1"	EFP2	"Putative mitochondrial elongation factor P (EF-P)"
+Cre06.g265950	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"		"GO:0030286;GO:0016887;GO:0007018;GO:0005858;GO:0005524;GO:0003777;GO:0001539"	"dynein complex;ATPase activity;microtubule-based movement;axonemal dynein complex;ATP binding;microtubule motor activity;cilium or flagellum-dependent cell motility"	DHC3	g5970.t1	DHC3	"Putative flagellar inner arm dynein heavy chain; has not been identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]; novel minor type found exclusively at the flagellar basal portion; in CC-4532, it is a pseudogene"
+Cre06.g254002			"Secretory pathway"						
+Cre06.g299250			Chloroplast				"g6922.t1;g6922.t1"		
+Cre06.g299950							g6938.t1		
+Cre06.g264000							"Cre06.g264000.t1.1;g5932.t1"		
+Cre06.g264300	GMM:29.2.1.1.1.1.15	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S15"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPS15	"g5938.t1;Cre06.g264300.t1.1"	PRPS15	"imported to chloroplast; Chloroplast small ribosomal subunit S15"
+Cre06.g293100	GMM:31.4	"cell.vesicle transport"		"GO:0048193;GO:0016020"	"Golgi vesicle transport;membrane"		"Cre06.g293100.t1.1;g6789.t1;g6789.t1;Cre06.g293100.t1.1"		
+Cre06.g303500							"g7028.t1;Cre06.g303500.t1.1;Cre06.g303500.t1.1;g7028.t1"		
+Cre06.g278139	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"		"g6284.t1;Cre13.g595450.t1.1"	RAB18B	"Similar to the RabC/Rab18 family of small GTP-ases; Class I in [PMID: 8756593]; One of three paralogogs (Cre11.g482900, Cre06.g278139, Cre09.g386900);"
+Cre06.g293900				GO:0005515	"protein binding"		"g6805.t1;g6805.t1"		
+Cre06.g292150							"g6768.t1;g6768.t1;g6768.t1;g6768.t1"		
+Cre06.g276300			Mitochondrion				g6193.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre06.g277400	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF					g6217.t1		
+Cre06.g278124							g6270.t1		
+Cre06.g251900	GMM:29.3.3	protein.targeting.chloroplast		"GO:0051205;GO:0016021"	"protein insertion into membrane;integral component of membrane"	ALB3.1	"ALB3.1;Cre06.g251900.t1.1;ALB3;g5641.t1"	ALB3A	"One of four proteins related to the Arabidopsis ALBINO3 and yeast OXA1 proteins; located in the chloroplast and involved in the translocation of thylakoid membrane proteins"
+Cre06.g259250									
+Cre06.g262650			Chloroplast			TAA1	"OPR22;g5900.t1"	TAA1	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; stabilizes psaA mRNA and activates its translation"
+Cre06.g270200	GMM:30.4.4	"signalling.phosphinositides.phosphoinositide phospholipase C"		"GO:0035556;GO:0007165;GO:0006629;GO:0005515;GO:0004435"	"intracellular signal transduction;signal transduction;lipid metabolic process;protein binding;phosphatidylinositol phospholipase C activity"		"g6062.t1;PLC;PLC;g6062.t1;g6062.t1;PLC"	"PLC1;PLC1;PLC1"	"Involved in Ca-mediated de-flagilation;Involved in Ca-mediated de-flagilation;Involved in Ca-mediated de-flagilation"
+Cre06.g286450	GMM:33.99	development.unspecified					"g6656.t1;Cre06.g286450.t1.1"		
+Cre06.g260500							g5854.t1		
+Cre06.g281400			"Secretory pathway"	"GO:0055085;GO:0016021;GO:0015299;GO:0006812"	"transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport"	NAH1	"NAH1;g6545.t1;g6545.t1;NAH1;NAH1;g6545.t1"	"NAH1;NAH1;NAH1"	"Similar to Na(+)/H(+) antiporter [Saccharomyces cerevisiae];Similar to Na(+)/H(+) antiporter [Saccharomyces cerevisiae];Similar to Na(+)/H(+) antiporter [Saccharomyces cerevisiae]"
+Cre06.g298400	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP224	"Cre06.g298400.t1.1;g6903.t1"		
+Cre06.g268501							"g6024.t1;Cre06.g268500.t1.3"		
+Cre06.g260150						FAP393	"SMM17;g5847.t1;Cre06.g260150.t1.1"	FAP393	"Conserved Protein with S-adenosylmethionine-dependent methyltransferase Domain"
+Cre06.g256150			"Secretory pathway"				"g5756.t1;Cre06.g256150.t1.1"		
+Cre06.g302305							"Cre06.g302305.t1.1;g6997.t1"		
+Cre06.g251050	"GMM:30.1;GMM:29.4.1;GMM:29.4"	"signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g5623.t1		
+Cre06.g307551			Mitochondrion				"g7122.t1;Cre06.g307550.t1.3;Cre06.g307550.t1.3;g7122.t1"		
+Cre06.g306014									
+Cre06.g305050	GMM:28.1	"DNA.synthesis/chromatin structure"				CGL45	"g7061.t1;EEP5"	CGL45	"Conserved in the Green Lineage"
+Cre06.g259800	"GMM:29.2.99;GMM:27.4;GMM:27.1.1"	"protein.synthesis.misc;RNA.RNA binding;RNA.processing.splicing"	Chloroplast	"GO:0005515;GO:0003723"	"protein binding;RNA binding"	CWC22	"CWC22;Cre06.g259800.t1.1;g5840.t1;g5840.t1;Cre06.g259800.t1.1;CWC22"	"CWC22;CWC22"	"high sequence similarity to putative cwc22 pre-mRNA splicing factor in Oryza sativa; shares MIF4G and MA3 domains in common with eIF4g. Contains alpha-helical MIF4G and MA3 domains, occurring in eIF4g, NM, D2p, CBP80; and MA3, DAP-5, respectively.;high sequence similarity to putative cwc22 pre-mRNA splicing factor in Oryza sativa; shares MIF4G and MA3 domains in common with eIF4g. Contains alpha-helical MIF4G and MA3 domains, occurring in eIF4g, NM, D2p, CBP80; and MA3, DAP-5, respectively."
+Cre06.g260976			"Secretory pathway"						
+Cre06.g278177	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0006310;GO:0006281;GO:0005524;GO:0003910;GO:0003677"	"DNA recombination;DNA repair;ATP binding;DNA ligase (ATP) activity;DNA binding"	DNL6	"g6320.t1;Cre13.g597150.t1.1;DNL6"	LIG6	"ATP-dependent DNA ligase; most similar to Arabidopsis LIG6 (AT1G66730)"
+Cre06.g261450	GMM:27.3.53	"RNA.regulation of transcription.high mobility group family (HMG)"					"g5876.t1;Cre06.g261450.t1.1"		"High mobility group protein, ChromDB HMGB341; a putative chromatin-associated HMGB protein containing one HMG box"
+Cre06.g295400	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP11	"g6838.t1;MCP11;Cre06.g295400.t1.1;MITC11"		"Present in thylakoid proteome based on mass spectrometric peptide identification; mitochondrial localization assumed [PMID: 17078018]"
+Cre06.g290676						PHC48			
+Cre06.g300600	"GMM:33.3;GMM:27.3.28"	"development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"	Mitochondrion	"GO:0005634;GO:0003677"	"nucleus;DNA binding"		g6955.t1		
+Cre06.g271500							"g6092.t1;Cre06.g271500.t1.1"		
+Cre06.g250650	GMM:26.17	misc.dynamin	Chloroplast	GO:0005525	"GTP binding"	DRP4	"EZY8;DRP4;Cre06.g250650.t1.1;DRP4A;g5614.t1;g5614.t1;DRP4A;Cre06.g250650.t1.1;EZY8;DRP4"		"Also named EZY8, an early zygote expressed protein [PMID: 18487630];Also named EZY8, an early zygote expressed protein [PMID: 18487630]"
+Cre06.g278246			Mitochondrion				"Cre13.g600700.t1.2;g6388.t1;Cre13.g600700.t1.1;Cre13.g600700.t1.1;Cre13.g600700.t1.2;g6388.t1"		
+Cre06.g278263	"GMM:33.99;GMM:33.2"	"development.unspecified;development.late embryogenesis abundant"	"Secretory pathway"				"g6404.t1;Cre13.g601450.t1.1;g6404.t1;Cre13.g601450.t1.1;g6404.t1;Cre13.g601450.t1.1"		
+Cre06.g300200							"g6945.t1;Cre06.g300200.t1.1"		
+Cre06.g278195			Chloroplast				"Cre13.g598050.t1.1;CTI1;g6338.t1; CTI"		
+Cre06.g278097	"GMM:31.2;GMM:27.1"	"cell.division;RNA.processing"		GO:0005515	"protein binding"	RAE1	"RAE1;Cre13.g593450.t1.1;g6241.t1;RAE1;g6241.t1;Cre13.g593450.t1.1;g6241.t1;RAE1;Cre13.g593450.t1.1"	"RAE1;RAE1;RAE1"	"contains WD40 repeats;contains WD40 repeats;contains WD40 repeats"
+Cre06.g277750							"g6224.t1;g6224.t1"		
+Cre06.g311000	GMM:34.99	transport.misc	"Secretory pathway"	"GO:0016021;GO:0006810"	"integral component of membrane;transport"	FBT2	"FBT2;g7196.t1;FBT2;g7196.t1"		"Similar to AT2G32040, which was identified as a folate/pteridine transporter [PMID: 16162503];;Similar to AT2G32040, which was identified as a folate/pteridine transporter [PMID: 16162503];"
+Cre06.g283400	GMM:2.1.1.2	"major CHO metabolism.synthesis.sucrose.SPP"	Chloroplast			CGL101	"Cre06.g283400.t1.1;SPH2;g6590.t1"	CGL101	"Conserved in the Green Lineage"
+Cre06.g289350	GMM:29.2.5	protein.synthesis.release	Mitochondrion	"GO:0016149;GO:0006415;GO:0005737;GO:0003747"	"translation release factor activity, codon specific;translational termination;cytoplasm;translation release factor activity"		"g6714.t1;PRF2"	PRFA2	
+Cre06.g266900							g5990.t1	LPA1L	"similar to LPA1, PSII biogenesis protein, but lacks TPR domain"
+Cre06.g301700									
+Cre06.g283000			Mitochondrion			CGLD39	g6581.t1	CGLD39	
+Cre06.g250550							g5648.t1		
+Cre06.g253550			Chloroplast						
+Cre06.g292050						MMP21	"g6766.t1;MMP21;Cre06.g292050.t1.1"	MMP21	"Matrix metalloproteinase belonging to the M11 peptidase family"
+Cre06.g279150	GMM:29.1.12	"protein.aa activation.aspartate-tRNA ligase"		"GO:0006418;GO:0005524;GO:0004812;GO:0003676;GO:0000166"	"tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleic acid binding;nucleotide binding"	TSD2	"Cre06.g279150.t1.1;TSD2;g6490.t1;Cre06.g279150.t1.1;TSD2;g6490.t1;TSD2;g6490.t1;Cre06.g279150.t1.1"	"TSD2;TSD2;TSD2"	"EC 6.1.1.12; aspartate-tRNA ligase, similar to eukaryotic aspartyl t-RNA synthetases (e.g., Medicago: GenBank ABE93908); probably cytosolic, based on Target-P;EC 6.1.1.12; aspartate-tRNA ligase, similar to eukaryotic aspartyl t-RNA synthetases (e.g., Medicago: GenBank ABE93908); probably cytosolic, based on Target-P;EC 6.1.1.12; aspartate-tRNA ligase, similar to eukaryotic aspartyl t-RNA synthetases (e.g., Medicago: GenBank ABE93908); probably cytosolic, based on Target-P"
+Cre06.g301500			"Secretory pathway"				"g6976.t1;g6976.t1;g6976.t1;g6976.t1"		
+Cre06.g259650	GMM:26.13	"misc.acid and other phosphatases"		GO:0016787	"hydrolase activity"	MPA7	"MPA7;Cre06.g259650.t1.1;g5837.t1;MPA7;Cre06.g259650.t1.1;g5837.t1"		
+Cre06.g258800	GMM:10.5.2	"cell wall.cell wall proteins.proline rich proteins"	"Secretory pathway"			GP2	"CWP2;FAP3;g5819.t1;GP2"	CWP2	"Extracellular matrix protein (cell wall protein) GP2; contains (hydroxy)proline-rich (HR) domains. Antibody against deglycosylated GP2 was used successfully to screen for a cDNA clone in a gt11 expression library [PMID: 1699225; M58497]. Independently sequenced cDNA, see AY596305; found in the flagella proteom"
+Cre06.g251600	GMM:29.2.3	protein.synthesis.initiation		"GO:0006413;GO:0005515;GO:0003743"	"translational initiation;protein binding;translation initiation factor activity"	EIF5B2	"EIF5B2;EIF5Bb;Cre06.g251600.t1.1;EIF5;g5634.t1"	EIF5B2	"eukaryotic translation initiation factor eIF5-like, eIF2 epsilon-like; probe 7 gene in PMID: 11805055."
+Cre06.g291350							"g6752.t1;g6752.t1;g6752.t1"		
+Cre06.g274800	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA4	"g6162.t1;Cre06.g274800.t1.1;HTA26"	HTA4	"replication linked H2A; histone gene cluster IV (type 43AB)"
+Cre06.g262300	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"	Chloroplast	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN51	"Cre06.g262300.t1.1;g5893.t1;Cre06.g262300.t1.1;g5893.t1"	"CYN51;CYN51"	"Peptidyl-prolyl cis-trans isomerase (rotamase); similar to CYN52 and CYN53, but a single cyclophilin domain; contains an N-term PAN domain;Peptidyl-prolyl cis-trans isomerase (rotamase); similar to CYN52 and CYN53, but a single cyclophilin domain; contains an N-term PAN domain"
+Cre06.g289550	GMM:29.2.1.2.2.32	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L32"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL32	"g6719.t1;Cre06.g289550.t1.1;Cre06.g289550.t1.1;g6719.t1"	"RPL32;RPL32"	"Cytosolic 60S large ribosomal subunit protein L32;Cytosolic 60S large ribosomal subunit protein L32"
+Cre06.g284000							"g6604.t1;Cre06.g284000.t1.1"		
+Cre06.g254500			Chloroplast				"g5725.t1;g5725.t1"		
+Cre06.g256450	GMM:31.6.1.6.1	"cell.motility.eukaryotes.central pair.C1a"				FAP119	"g5763.t1;PF6-IP2;C1a-34;Cre06.g256450.t1.1"	FAP119	"Found in the flagellar proteome; Also known as C1a-34; form the C1a projection, with PF6, C1a-86, C1a-32, C1a-18, and calmodulin; similar to C1a-32; may play a role in modulating both inner and outer dynein arm activity; pI shift in DRC mutants"
+Cre06.g291200							"g6749.t1;Cre06.g291200.t1.1"		
+Cre06.g261026			Chloroplast				g5867.t1		
+Cre06.g270950	GMM:27.3.60	"RNA.regulation of transcription.NIN-like bZIP-related family"					"g6079.t1;Cre06.g270950.t1.1;Cre06.g270950.t1.1;g6079.t1"		
+Cre06.g291700	GMM:31.6.1.5.2	"cell.motility.eukaryotes.radial spoke.stalk"				RSP3	"PF14;g6759.t1;Cre06.g291700.t1.1;g6759.t1;PF14;Cre06.g291700.t1.1"	"RSP3;RSP3"	"Flagellar radial spoke protein 3 (RSP3) [PMID: 16507594]; an axonemal A-kinase anchoring protein KAP [PMID: 11309423; PMID: 16571668; PMID: 16267272; GI:134041]. Gene originally termed PF14 [PMID: 7204490; PMID: 2745550; PMID: 2377611];Flagellar radial spoke protein 3 (RSP3) [PMID: 16507594]; an axonemal A-kinase anchoring protein KAP [PMID: 11309423; PMID: 16571668; PMID: 16267272; GI:134041]. Gene originally termed PF14 [PMID: 7204490; PMID: 2745550; PMID: 2377611]"
+Cre06.g306900			"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR9	"SRR9;g7109.t1"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912)"
+Cre06.g278153			"Secretory pathway"				"Cre13.g596050.t1.1;g6297.t1;g6297.t1;Cre13.g596050.t1.1;g6297.t1;Cre13.g596050.t1.1"		
+Cre06.g278233			"Secretory pathway"			OPR60	"Cre13.g600000.t1.1;g6375.t1"	OPR60	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre06.g274650	GMM:30.11	signalling.light	Chloroplast			NUOAF4	"g6159.t1;NUOAF4"	NUOAF4	"Similar to complex I intermediate-associated protein 3; see NUOAF1. Also resembles NmrA negative transcriptional regulator protein family"
+Cre06.g292650				"GO:0006351;GO:0005634;GO:0003677"	"transcription, DNA-templated;nucleus;DNA binding"	ROC93	"ROC93;g6780.t1;ROC93;g6780.t1;ROC93;g6780.t1"		"Transcription elongation factor homolog; Matsuo et al.'s (2008) roc93 (rhythm of chloroplast 93) circadian bioluminescence rhythm mutant locus maps here;Transcription elongation factor homolog; Matsuo et al.'s (2008) roc93 (rhythm of chloroplast 93) circadian bioluminescence rhythm mutant locus maps here;Transcription elongation factor homolog; Matsuo et al.'s (2008) roc93 (rhythm of chloroplast 93) circadian bioluminescence rhythm mutant locus maps here"
+Cre06.g299600	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	ZIP6	"ZRT6;g6929.t1;ZIP6;Cre06.g299600.t1.1;ZRT6;Cre06.g299600.t1.1;ZIP6;g6929.t1"	"ZRT4;ZRT4"	"Similarity to ZIP Subfamily II; originally annotated based on expression during Zn deficiency, but expression higher in Cu and Mn deficiency;;Similarity to ZIP Subfamily II; originally annotated based on expression during Zn deficiency, but expression higher in Cu and Mn deficiency;"
+Cre06.g295826			Chloroplast				"g6845.t1;g6845.t1;g6845.t1"		
+Cre06.g276700	GMM:29.5	protein.degradation		"GO:0016787;GO:0008152"	"hydrolase activity;metabolic process"		"g6202.t1;Cre06.g276700.t1.1;Cre06.g276700.t1.1;g6202.t1;Cre06.g276700.t1.1;g6202.t1;g6202.t1;Cre06.g276700.t1.1"		
+Cre06.g271100	"GMM:31.3;GMM:29.4.1;GMM:29.4"	"cell.cycle;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CDKG1	g6082.t1	CDKG1	"Chlamydomonas specific; SDSTIRE motif. Novel CDK subfamily"
+Cre06.g284800	GMM:12.4	N-metabolism.misc		"GO:0055114;GO:0050660;GO:0017150;GO:0008033"	"oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing"		"Cre06.g284800.t1.1;g6622.t1"		
+Cre06.g267400	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g6000.t1;Cre06.g267400.t1.1;Cre06.g267400.t1.1;g6000.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre06.g306200							g7094.t1		
+Cre06.g272300			Chloroplast			CPLD57	"Cre06.g272300.t1.1;g6109.t1"	CPLD57	"Conserved in the Plant Lineage and Diatoms"
+Cre06.g287200			Chloroplast				"g6672.t2;Cre06.g287200.t1.1"		
+Cre06.g285100			Mitochondrion				"g6628.t1;g6628.t1;g6628.t1"		
+Cre06.g278176	"GMM:33.99;GMM:31.4;GMM:30.5"	"development.unspecified;cell.vesicle transport;signalling.G-proteins"		GO:0005515	"protein binding"		"g6319.t1;Cre13.g597100.t1.2;Cre13.g597100.t1.1;g6319.t1;Cre13.g597100.t1.2;Cre13.g597100.t1.1;Cre13.g597100.t1.1;Cre13.g597100.t1.2;g6319.t1;Cre13.g597100.t1.2;g6319.t1;Cre13.g597100.t1.1;Cre13.g597100.t1.1;Cre13.g597100.t1.2;g6319.t1"		
+Cre06.g266200									
+Cre06.g272750							g6119.t1		
+Cre06.g270500	"GMM:26.3.4;GMM:26.3"	"misc.gluco-, galacto- and mannosidases.endoglucanase;misc.gluco-, galacto- and mannosidases"	"Secretory pathway"	"GO:0019028;GO:0005975;GO:0004553"	"viral capsid;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"		"g6069.t1;g6069.t1;g6069.t1;g6069.t1;g6069.t1;g6069.t1;g6069.t1;g6069.t1;g6069.t1;g6069.t1;g6069.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre06.g271376	"GMM:28.1.3.2.2;GMM:28.1.3.2.1"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB8			
+Cre06.g301150							"g6967.t1;g6967.t1;g6967.t1;g6967.t1;g6967.t1;g6967.t1"		
+Cre06.g292500	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"	"Secretory pathway"	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN23	"CYN23;CYN23b;Cre06.g292500.t1.1;g6777.t3;CYN23b;g6777.t3;Cre06.g292500.t1.1;CYN23;CYN23;CYN23b;g6777.t3;Cre06.g292500.t1.1"	"CYN23;CYN23;CYN23"	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; two alternatively spliced isoforms;Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; two alternatively spliced isoforms;Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; two alternatively spliced isoforms"
+Cre06.g310050	GMM:29.5	protein.degradation	Chloroplast	GO:0016020	membrane	CPL13	"g7174.t1;g7174.t1"	"CPL13;CPL13"	
+Cre06.g273200				"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"		"g6129.t1;g6129.t1"		
+Cre06.g292315			Mitochondrion				g6773.t1		
+Cre06.g284300							g6610.t1		
+Cre06.g310350							"Cre06.g310350.t1.1;g7181.t1;Cre06.g310350.t1.1;g7181.t1"		
+Cre06.g311600	GMM:18.3	"Co-factor and vitamine metabolism.riboflavin"		"GO:0009231;GO:0008531"	"riboflavin biosynthetic process;riboflavin kinase activity"	RFK3	"Cre06.g311600.t1.1;g7208.t1;RFK3"	RFK3	"Riboflavin kinase/FMN hydrolase"
+Cre06.g298650	GMM:29.2.3	protein.synthesis.initiation	"Secretory pathway"	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	EIF4A	"Cre06.g298650.t1.1;g6908.t1;HEL30;Cre06.g298650.t1.1;HEL30;g6908.t1;g6908.t1;Cre06.g298650.t1.1;HEL30"	"EIF4A;EIF4A;EIF4A"	"DEAD/DEAH box DNA/RNA helicase;DEAD/DEAH box DNA/RNA helicase;DEAD/DEAH box DNA/RNA helicase"
+Cre06.g293450							"Cre06.g293450.t1.1;g6797.t2"		
+Cre06.g290550							g6739.t1		
+Cre06.g304600	GMM:26.23	misc.rhodanese	Chloroplast				"Cre06.g304600.t1.1;g7051.t1;g7051.t1;Cre06.g304600.t1.1;g7051.t1;Cre06.g304600.t1.1;g7051.t1;Cre06.g304600.t1.1"		"Target of CRR1;Target of CRR1;Target of CRR1;Target of CRR1"
+Cre06.g265450	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO11B	"g5961.t1;HFO12;Cre06.g265450.t1.1;g5961.t1;Cre06.g265450.t1.1;HFO12"	"HFO11B;HFO11B"	"replication linked H4; histone gene cluster XIB (type 43);replication linked H4; histone gene cluster XIB (type 43)"
+Cre06.g278271			Mitochondrion				"Cre13.g601800.t1.2;g6413.t1;Cre13.g601800.t1.1;Cre13.g601800.t1.1;g6413.t1;Cre13.g601800.t1.2"		
+Cre06.g294600							"g6819.t1;Cre06.g294600.t1.1"		
+Cre06.g282200			Chloroplast	GO:0007034	"vacuolar transport"	SNF7	"SNF7;g6563.t1;Cre06.g282200.t1.1;VPS32;g6563.t1;SNF7;VPS32;Cre06.g282200.t1.1;Cre06.g282200.t1.1;VPS32;g6563.t1;SNF7;SNF7;g6563.t1;Cre06.g282200.t1.1;VPS32"	"SNF7;SNF7;SNF7;SNF7"	"Expressed Protein. Similar to SNF7, a SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes);Expressed Protein. Similar to SNF7, a SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes);Expressed Protein. Similar to SNF7, a SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes);Expressed Protein. Similar to SNF7, a SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes)"
+Cre06.g251450	GMM:18.7	"Co-factor and vitamine metabolism.iron-sulphur clusters"	Mitochondrion	"GO:0051539;GO:0009435;GO:0008987"	"4 iron, 4 sulfur cluster binding;NAD biosynthetic process;quinolinate synthetase A activity"	NIC7	"g5631.t1;g5631.t1"	"NIC7;NIC7"	"Putative quinolinate synthetase. This is the NIC7 gene, mutants of which require nicotinamide for growth [PMID: 8647391; partial gene sequence, AY032929];Putative quinolinate synthetase. This is the NIC7 gene, mutants of which require nicotinamide for growth [PMID: 8647391; partial gene sequence, AY032929]"
+Cre06.g300850				GO:0005634	nucleus		"g6960.t1;g6960.t1;g6960.t1;g6960.t1;g6960.t1"		
+Cre06.g280650			Chloroplast			CGL59	"Cre06.g280650.t1.1;CGL59;g6528.t1"	Y3IP1	"Conserved in the Green Lineage"
+Cre06.g249800	GMM:26.13	"misc.acid and other phosphatases"	Mitochondrion				"g5595.t1;Cre06.g249800.t1.1"		
+Cre06.g278218							"Cre13.g599200.t1.1;Cre13.g599200.t1.2;g6360.t1"		
+Cre06.g272450			Mitochondrion			MBI1	"OPR23;g6112.t1;OPR23;g6112.t1"	"MBI1;MBI1"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; stabilizes psbI mRNA;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; stabilizes psbI mRNA"
+Cre06.g278094	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"				ELG14	"g6238.t1;ELG14;Cre13.g593300.t1.1;Cre13.g593300.t1.1;ELG14;g6238.t1;ELG14;g6238.t1;Cre13.g593300.t1.1;Cre13.g593300.t1.1;ELG14;g6238.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre06.g265602	GMM:27.1	RNA.processing					"g5964.t2;g5964.t2;g5964.t2"		
+Cre06.g249250	"GMM:29.2.2.3.1;GMM:29.2.1.2.2.57;GMM:29.2.1.2.2.1730"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7/L30/S12"				RPL7AE	"g5583.t1;Cre06.g249250.t1.1;RPL7AE"	RPL7AE	"Cytosolic 60S large ribosomal subunit protein L7ae"
+Cre06.g310276									
+Cre06.g293150			"Secretory pathway"			PGM12	"g6790.t1;PGM12;Cre06.g293150.t1.1"		
+Cre06.g264500	"GMM:29.2.2.3.99;GMM:27.3.51"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;RNA.regulation of transcription.general transcription, TBP-binding protein"	Chloroplast				"Cre06.g264500.t1.1;g5942.t1"		
+Cre06.g280500	GMM:27.4	"RNA.RNA binding"					"PPP23;g6525.t2;g6525.t2;PPP23"		"related to NLI interacting factor;related to NLI interacting factor"
+Cre06.g303192			Chloroplast						
+Cre06.g289750	GMM:31.3	cell.cycle		GO:0005634	nucleus	CYCD2	g6723.t1	CYCD2	"D type cyclin; contains LXCXE motif"
+Cre06.g306050				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g7089.t1;g7089.t1;g7089.t1;g7089.t1"		
+Cre09.g392356							"g9722.t1;Cre02.g128050.t1.1;g9722.t1;Cre02.g128050.t1.1"		
+Cre09.g393750			Mitochondrion				g9414.t3		
+Cre09.g413450	GMM:28.1.1	"DNA.synthesis/chromatin structure.retrotransposon/transposase"							
+Cre09.g413050				"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"BLZ7;g10226.t1"		"Basic-leucine zipper (bZIP) transcription factor"
+Cre09.g399912	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"	GO:0016020	membrane		"g9277.t1;g9277.t1;g9277.t1;g9277.t1;g9277.t1;g9277.t1;g9277.t1;g9277.t1"		
+Cre09.g398660			"Secretory pathway"						
+Cre09.g398700	GMM:11.3.10	"lipid metabolism.phospholipid synthesis.(S)-coclaurine-N-methyltransferase"				CPLD27	"Cre09.g398700.t1.1;CFA2;g9302.t1"	CPLD27	"Cyclopropane-fatty-acyl-phospholipid synthase. Plant-lineage-and-diatoms conserved expressed protein related to putative coclaurine N-methyltransferase; this protein is found in the eyespot proteome. Previously annotated as CPLD27"
+Cre09.g415050							g10276.t1		
+Cre09.g396600	"GMM:5;GMM:33.99;GMM:1.1.7.1"	"fermentation;development.unspecified;PS.lightreaction.hydrogenase.FeFe-hydrogenase"	Chloroplast			HYDA2	"g9355.t1;HYD2"	HYDA2	"Chloroplast Fe-hydrogenase (= HYDA2); corresponds to GI:18026272 [PMID: 12823545]; reversible reduction of 2H+ to H2, oxidizing two ferredoxins;"
+Cre09.g416400	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g10306.t1		
+Cre09.g409250	GMM:11.8.1.3	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids.ceramide glucosyltransferase"	"Secretory pathway"			GTR24	"Cre09.g409250.t1.1;GTR24;g10142.t1"		"Putative ceramide glucosyltransferase; Orthologous to AT2G19880 in Arabidopsis thaliana"
+Cre09.g402041									
+Cre09.g411800			Chloroplast				"g10195.t2;g10195.t2;g10195.t2"		
+Cre09.g396900	"GMM:26.13;GMM:23.3.3"	"misc.acid and other phosphatases;nucleotide metabolism.salvage.NUDIX hydrolases"	Mitochondrion	"GO:0046872;GO:0016787"	"metal ion binding;hydrolase activity"		"g9348.t1;Cre09.g396900.t1.1;g9348.t1;Cre09.g396900.t1.1;Cre09.g396900.t1.1;g9348.t1"		"AtNUDIX19 ortholog, possibly involved in pyridine metabolism;AtNUDIX19 ortholog, possibly involved in pyridine metabolism;AtNUDIX19 ortholog, possibly involved in pyridine metabolism"
+Cre09.g396176									
+Cre09.g403250	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g9197.t1;g9197.t1"		
+Cre09.g389652							"g9647.t1;Cre02.g124750.t1.1;Cre02.g124750.t1.2;Cre02.g124750.t1.2;g9647.t1;Cre02.g124750.t1.1;Cre02.g124750.t1.1;g9647.t1;Cre02.g124750.t1.2"		
+Cre09.g399909									
+Cre09.g388615	"GMM:29.2.99;GMM:29.2.5"	"protein.synthesis.misc;protein.synthesis.release"		"GO:0071025;GO:0070966;GO:0070481"	"RNA surveillance;nuclear-transcribed mRNA catabolic process, no-go decay;nuclear-transcribed mRNA catabolic process, non-stop decay"		"g9618.t1;Cre02.g123400.t1.1"		
+Cre09.g403293	"GMM:25.4;GMM:25"	"C1-metabolism.5-formyltetrahydrofolate cyclo-ligase;C1-metabolism"				FCL1	"Cre02.g120950.t1.2;g10042.t1;FCL1;Cre02.g120950.t1.1;FCL1;Cre02.g120950.t1.1;g10042.t1;Cre02.g120950.t1.2"		"Putative 5-Formyltetrahydrofolate cycloligase (5,10-methenytetrahydrofolate synthetase), probably mitochondrial protein, metabolism of tetrahydrofolate-bound one-carbon units. Possibly mitochondrial;Putative 5-Formyltetrahydrofolate cycloligase (5,10-methenytetrahydrofolate synthetase), probably mitochondrial protein, metabolism of tetrahydrofolate-bound one-carbon units. Possibly mitochondrial"
+Cre09.g390604									
+Cre09.g416150	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"	Mitochondrion			ASA7	"Cre09.g416150.t1.1;ASA7;g10300.t1;g10300.t1;Cre09.g416150.t1.1;ASA7;Cre09.g416150.t1.1;g10300.t1;ASA7;g10300.t1;ASA7;Cre09.g416150.t1.1"	"ASA7;ASA7;ASA7;ASA7"	"Mitochondrial ATP synthase associated protein 7; part of peripheral stalk involed in dimerization; unknown evolutionary origin; previously identified as NUOP6, a component of complex I, but now known to belong to complex V [PMID: 15450959, PMID: 15710684, PMID: 11744727];Mitochondrial ATP synthase associated protein 7; part of peripheral stalk involed in dimerization; unknown evolutionary origin; previously identified as NUOP6, a component of complex I, but now known to belong to complex V [PMID: 15450959, PMID: 15710684, PMID: 11744727];Mitochondrial ATP synthase associated protein 7; part of peripheral stalk involed in dimerization; unknown evolutionary origin; previously identified as NUOP6, a component of complex I, but now known to belong to complex V [PMID: 15450959, PMID: 15710684, PMID: 11744727];Mitochondrial ATP synthase associated protein 7; part of peripheral stalk involed in dimerization; unknown evolutionary origin; previously identified as NUOP6, a component of complex I, but now known to belong to complex V [PMID: 15450959, PMID: 15710684, PMID: 11744727]"
+Cre09.g401293	"GMM:34.6;GMM:26.23"	"transport.sulphate;misc.rhodanese"	Chloroplast	"GO:0055085;GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0008271"	"transmembrane transport;integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;secondary active sulfate transmembrane transporter activity"	SULTR3	"Cre02.g138950.t1.2;SUL3;Cre02.g138950.t1.1;g9987.t1;Cre02.g138950.t1.1;SUL3;Cre02.g138950.t1.2;g9987.t1"	"SULTR3;SULTR3"	
+Cre09.g407501			Chloroplast	GO:2001070	"starch binding"		"g10103.t1;Cre09.g407501.t1.1;g10103.t1;Cre09.g407501.t1.1;g10103.t1;Cre09.g407501.t1.1"		
+Cre09.g389700			Mitochondrion	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT24	"Cre09.g389700.t1.1;MFT24;g9503.t1;g9503.t1;MFT24;Cre09.g389700.t1.1;MFT24;g9503.t1;Cre09.g389700.t1.1;Cre09.g389700.t1.1;MFT24;g9503.t1"		"Major facilitator superfamily MFS-1 sugar transporter with Spinster-like transmembrane topology;Major facilitator superfamily MFS-1 sugar transporter with Spinster-like transmembrane topology;Major facilitator superfamily MFS-1 sugar transporter with Spinster-like transmembrane topology;Major facilitator superfamily MFS-1 sugar transporter with Spinster-like transmembrane topology"
+Cre09.g407850			Chloroplast				"g10110.t1;Cre09.g407850.t1.1"		
+Cre09.g393600	GMM:28.1	"DNA.synthesis/chromatin structure"					"g9417.t1;Cre09.g393600.t1.1"		
+Cre09.g394325	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELIP3	"Cre02.g130500.t1.1;ELIP3;ELI9;ELI3;Cre02.g130500.t1.2;g9779.t1"	ELIP9	"belongs to chlorophyll A-B binding protein superfamily, ELIP family; accumulates during cold stress and may protect against high light in the cold"
+Cre09.g397095									
+Cre09.g400923						FAP28	"Cre02.g138450.t1.1;g9977.t1"	FAP28	
+Cre09.g409600			Mitochondrion				g10149.t1	FAP411	"Found in the flagellar proteome"
+Cre09.g396363	"GMM:29.3.2;GMM:20.2.1"	"protein.targeting.mitochondria;stress.abiotic.heat"	Mitochondrion			TIM14	"g9834.t1;Cre02.g133000.t1.1;TIM14;Cre02.g133000.t1.2"	PAM18	"PAM18, subunit of the presequence translocase-associated protein import complex (TIM23), which drives the completion of protein transport into the mitochondrial matrix. Also named TIM14;"
+Cre09.g389089	GMM:18.1	"Co-factor and vitamine metabolism.molybdenum cofactor"	Mitochondrion	"GO:0030170;GO:0030151;GO:0003824"	"pyridoxal phosphate binding;molybdenum ion binding;catalytic activity"	CNX5	"Cre09.g389089.t1.1;CNX5;NOFNiR;ARC1;g9517.t1;ARC1;NOFNiR;CNX5;g9517.t1;Cre09.g389089.t1.1"	"NOFNIR1;NOFNIR1"	"Molybdopterin cofactor protein, homologous to animal amidoxime-reducing component 1 (ARC1); Combined with nitrate reductase, can reduce nitrite to nitric oxyde (NO); Was renamed from ARC1 to NOFNIR1 as per PMID: 26992087;;Molybdopterin cofactor protein, homologous to animal amidoxime-reducing component 1 (ARC1); Combined with nitrate reductase, can reduce nitrite to nitric oxyde (NO); Was renamed from ARC1 to NOFNIR1 as per PMID: 26992087;"
+Cre09.g388726	GMM:28.2	DNA.repair					g9621.t3		
+Cre09.g386800							"g9569.t1;Cre09.g386800.t1.1"		
+Cre09.g388949							"g9628.t1;Cre02.g123850.t1.2;Cre02.g123850.t1.1;g9628.t1;Cre02.g123850.t1.2;Cre02.g123850.t1.1;Cre02.g123850.t1.1;Cre02.g123850.t1.2;g9628.t1;Cre02.g123850.t1.1;g9628.t1;Cre02.g123850.t1.2"		
+Cre09.g391615			"Secretory pathway"				"g9700.t1;g9700.t1"		
+Cre09.g398363			Mitochondrion						
+Cre09.g399450							"g9286.t1;Cre09.g399450.t1.1"		
+Cre09.g391900	GMM:21.1	redox.thioredoxin		"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRXH2	"g9453.t1;TRX5;Chh1;TRXh1;TRXH"	TRXH1	"This protein was previously named Ch1; mRNA level regulated by light, circadian clock and heavy metals [PMID: 11898433; PMID: 1436225, PMID: 1398712, PMID: 11538123"
+Cre09.g402775							"Cre02.g140700.t1.2;g10027.t1;ROC81;Cre02.g140700.t1.1"	VTC4	"Vacuolar tansporter Chaperone(VTC) subunit; Matsuo et al.'s (2008) roc81 (rhythm of chloroplast 81) circadian bioluminescence rhythm mutant locus maps here"
+Cre09.g388550			Mitochondrion	GO:0005840	ribosome	MRPL21	"g9529.t1;bL21m;Cre09.g388550.t1.1;bL21m;g9529.t1;Cre09.g388550.t1.1"	"MRPL21;MRPL21"	
+Cre09.g391838	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"	Mitochondrion	GO:0006629	"lipid metabolic process"		"Cre02.g127300.t1.2;Cre02.g127300.t1.1;g9707.t1;Cre02.g127300.t1.2;Cre02.g127300.t1.1;g9707.t1;g9707.t1;Cre02.g127300.t1.1;Cre02.g127300.t1.2"		
+Cre09.g397200	"GMM:29.6.2.2;GMM:29.6"	"protein.folding.chaperones and co-chaperones.HSP60s;protein.folding"	Cytosol	"GO:0051082;GO:0006457;GO:0005524"	"unfolded protein binding;protein folding;ATP binding"	CCT6	"g9338.t1;CCT6;Cre09.g397200.t1.1;g9338.t1;CCT6;Cre09.g397200.t1.1"	"CCT6;CCT6"	"T-complex protein 1, zeta subunit (TCP-1-zeta) (CCT-zeta) (TCPF); subunit of cytosolic chaperonin complex; ts-lethal mutation block at S/M (29743196);T-complex protein 1, zeta subunit (TCP-1-zeta) (CCT-zeta) (TCPF); subunit of cytosolic chaperonin complex; ts-lethal mutation block at S/M (29743196)"
+Cre09.g408626			Mitochondrion						
+Cre09.g386167							"Cre29.g777950.t1.2;g9096.t1;Cre29.g777950.t1.1"		
+Cre09.g415800	GMM:28.99	DNA.unspecified					"Cre09.g415800.t1.1;g10293.t1"		
+Cre09.g402212									
+Cre09.g388350			Chloroplast			MMP11	"g9534.t1;RAT2;MMP11"	MMP11	"belongs to the large VMP-family of metalloproteinases (identified in Volvox); the binding site of the catalytic metal ion in VMPs is QExxHxxGxxH not HExxHxxGxxH, therefore VMPs prefer copper for activity rather than zinc; extracellular matrix glycoproteins (cell wall glycoproteins) with a hydroxyproline-rich (HR) domain [PMID: 12034745]"
+Cre09.g400441	"GMM:29.5.11.4.3.2;GMM:27.3.57"	"protein.degradation.ubiquitin.E3.SCF.FBOX;RNA.regulation of transcription.JUMONJI family"	Mitochondrion				"g9963.t1;Cre02.g137750.t1.1"		
+Cre09.g397950	GMM:31.1	cell.organisation		"GO:0034314;GO:0030833;GO:0005885;GO:0005856"	"Arp2/3 complex-mediated actin nucleation;regulation of actin filament polymerization;Arp2/3 protein complex;cytoskeleton"		g9323.t1		
+Cre09.g392653			"Secretory pathway"				g9438.t1		
+Cre09.g398554									
+Cre09.g386747							"Cre29.g778650.t1.1;Cre29.g778650.t1.2;g9130.t1;Cre29.g778650.t1.2;g9130.t1;Cre29.g778650.t1.1"		
+Cre09.g389001			Mitochondrion				"g9520.t1;Cre09.g388950.t1.3;Cre09.g388950.t1.3;g9520.t1;Cre09.g388950.t1.3;g9520.t1"		
+Cre09.g407120			Mitochondrion				"g10094.t1;Cre09.g407120.t1.1;Cre09.g407120.t1.1;g10094.t1"		
+Cre09.g402256	GMM:29.5	protein.degradation		"GO:0008270;GO:0008237;GO:0006508"	"zinc ion binding;metallopeptidase activity;proteolysis"		"g10013.t1;g10013.t1;g10013.t1"		
+Cre09.g386131			"Secretory pathway"				"Cre29.g777700.t1.2;Cre29.g777700.t1.1;g9089.t1"		
+Cre09.g416583									
+Cre09.g394547	GMM:2	"major CHO metabolism"	Chloroplast	GO:2001070	"starch binding"		"g9785.t1;Cre02.g130800.t1.1"		
+Cre09.g413850							"g10251.t1;GT90-17;Cre09.g413850.t1.1;GT90F17;Cre09.g413850.t1.1;GT90-17;g10251.t1;GT90F17;GT90-17;g10251.t1;Cre09.g413850.t1.1;GT90F17"		
+Cre09.g417076			"Secretory pathway"						
+Cre09.g390800							"g9476.t1;Cre09.g390800.t1.1"		
+Cre09.g391400							g9464.t1		
+Cre09.g405002									
+Cre09.g392245			"Secretory pathway"			DPM3	"g9719.t1;Cre02.g127900.t1.1;Cre02.g127900.t1.2;DPMS3"	DPM3	"Orthologous to AT1G48140 in Arabidopsis thaliana"
+Cre09.g388171				GO:0016787	"hydrolase activity"		"g9606.t1;Cre02.g122800.t1.2;Cre02.g122800.t1.1"		
+Cre09.g409000	GMM:16.1	"secondary metabolism.isoprenoids"	"Secretory pathway"				"g10137.t1;g10137.t1"		
+Cre09.g386735	GMM:8.1.1.2	"TCA / organic transformation.TCA.pyruvate DH.E2"	Mitochondrion	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"	DLA1	"DLA1;Cre29.g778200.t1.2;Cre29.g778200.t1.1;g9117.t1;g9117.t1;Cre29.g778200.t1.1;Cre29.g778200.t1.2;DLA1;g9117.t1;DLA1;Cre29.g778200.t1.2;Cre29.g778200.t1.1;Cre29.g778200.t1.2;DLA1;g9117.t1;Cre29.g778200.t1.1;Cre29.g778200.t1.2;DLA1;g9117.t1;Cre29.g778200.t1.1;Cre29.g778200.t1.1;g9117.t1;DLA1;Cre29.g778200.t1.2"	"DLA1;DLA1;DLA1;DLA1;DLA1;DLA1"	"Dihydrolipoamide acetyltransferase, probably mitochondrial; EC 2.3.1.12); E2 component of pyruvate dehydrogenase complex; null-allele mutant was isolated (PMID 29743196);Dihydrolipoamide acetyltransferase, probably mitochondrial; EC 2.3.1.12); E2 component of pyruvate dehydrogenase complex; null-allele mutant was isolated (PMID 29743196);Dihydrolipoamide acetyltransferase, probably mitochondrial; EC 2.3.1.12); E2 component of pyruvate dehydrogenase complex; null-allele mutant was isolated (PMID 29743196);Dihydrolipoamide acetyltransferase, probably mitochondrial; EC 2.3.1.12); E2 component of pyruvate dehydrogenase complex; null-allele mutant was isolated (PMID 29743196);Dihydrolipoamide acetyltransferase, probably mitochondrial; EC 2.3.1.12); E2 component of pyruvate dehydrogenase complex; null-allele mutant was isolated (PMID 29743196);Dihydrolipoamide acetyltransferase, probably mitochondrial; EC 2.3.1.12); E2 component of pyruvate dehydrogenase complex; null-allele mutant was isolated (PMID 29743196)"
+Cre09.g405106							g9151.t1		
+Cre09.g390615	GMM:11.9.2.1	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase"		GO:0006629	"lipid metabolic process"	FAP12	"g9673.t1;FAP12;Cre02.g126050.t1.1;Cre02.g126050.t1.2"	LIP1	"Diacylglycerol lipase; Identified in proteomic analysis of cilia as Flagellar Associated Protein 12 with lipase domain"
+Cre09.g398771			"Secretory pathway"				"Cre02.g135750.t1.1;Cre02.g135750.t1.2;g9901.t1"		
+Cre09.g387949			"Secretory pathway"				"g9600.t1;Cre02.g122550.t1.1;Cre02.g122550.t1.2"		
+Cre09.g397364			Mitochondrion				"Cre02.g134250.t1.2;g9862.t1;Cre02.g134250.t1.1"		
+Cre09.g395150	GMM:29.4	"protein.postranslational modification"		"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"	MKP3	"MKP3;MKP3, MKP4;Cre09.g395150.t1.1;g9388.t1;Cre09.g395150.t1.1;g9388.t1;MKP3, MKP4;MKP3"		"MKP4;MKP4"
+Cre09.g407750						CGL130	"Cre09.g407750.t1.1;g10108.t1"	CGL130	
+Cre09.g402600			"Secretory pathway"				g9209.t1		
+Cre09.g386450							"g9104.t1;Cre09.g386450.t1.1"		
+Cre09.g395000			Mitochondrion				"g9391.t1;Cre09.g395000.t1.1"		
+Cre09.g400664							"g9969.t1;Cre02.g138050.t1.1;Cre02.g138050.t1.2;g9969.t1;Cre02.g138050.t1.1;Cre02.g138050.t1.2"		
+Cre09.g390838									
+Cre09.g387356							"Cre02.g121800.t1.1;Cre02.g121800.t1.2;g9584.t1;g9584.t1;Cre02.g121800.t1.1;Cre02.g121800.t1.2"		
+Cre09.g399326	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP3	"Cre02.g136500.t1.1;MITC3, MCP3;g9916.t1"		
+Cre09.g394700			Mitochondrion			RNZ1	"RNZ1;g9396.t1;g9396.t1;RNZ1;RNZ1;g9396.t1;g9396.t1;RNZ1"		"contains SAP domain; may be tRNase Z, involved in 3'-end maturation of tRNA;contains SAP domain; may be tRNase Z, involved in 3'-end maturation of tRNA;contains SAP domain; may be tRNase Z, involved in 3'-end maturation of tRNA;contains SAP domain; may be tRNase Z, involved in 3'-end maturation of tRNA"
+Cre09.g395250	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP36	"MOT5;g9386.t1;g9386.t1;MOT5;MOT5;g9386.t1"	"FAP36;FAP36;FAP36"	"Alanine rich protein, found in flagellar proteome; MOT5; identified by comparative genomics as being present only in organisms having motile (MOT) cilia;Alanine rich protein, found in flagellar proteome; MOT5; identified by comparative genomics as being present only in organisms having motile (MOT) cilia;Alanine rich protein, found in flagellar proteome; MOT5; identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre09.g403850	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9184.t1;g9184.t1"		
+Cre09.g392097			"Secretory pathway"				"g9715.t1;Cre02.g127700.t1.2;Cre02.g127700.t1.1"		
+Cre09.g410750	GMM:12.1.2	"N-metabolism.nitrate metabolism.nitrite reductase"	Chloroplast	"GO:0055114;GO:0051536;GO:0020037;GO:0016491"	"oxidation-reduction process;iron-sulfur cluster binding;heme binding;oxidoreductase activity"	NII1	"g10174.t1;NIR1;NII1;Cre09.g410750.t1.1;NIR1;Cre09.g410750.t1.1;g10174.t1;NII1"	"NII1;NII1"	"Ferredoxin-dependent nitrite-ammonium oxidoreductase; GI:3776043; is part of the NIT1 cluster of nitrate/nitrite assimilation genes; expression is NIT2-dependent;Ferredoxin-dependent nitrite-ammonium oxidoreductase; GI:3776043; is part of the NIT1 cluster of nitrate/nitrite assimilation genes; expression is NIT2-dependent"
+Cre09.g396213	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0042549;GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"photosystem II stabilization;extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"	PSBO	"g9830.t1;OEE1;OEC33;Cre02.g132800.t1.1;PSBO;Cre02.g132800.t1.2;g9830.t1;Cre02.g132800.t1.1;OEE1;Cre02.g132800.t1.2;PSBO;OEC33;g9830.t1;OEE1;Cre02.g132800.t1.1;Cre02.g132800.t1.2;PSBO;OEC33"	"PSBO1;PSBO1;PSBO1"	"Chloroplast precursor;Chloroplast precursor;Chloroplast precursor"
+Cre09.g389250	GMM:26.7	"misc.oxidases - copper, flavone etc"				AOF1	"AOF1;g9513.t1;Cre09.g389250.t1.1"	AOF1	"Target of CRR1"
+Cre09.g416650			"Secretory pathway"				"Cre09.g416650.t1.1;g10312.t1;Cre09.g416650.t1.1;g10312.t1;Cre09.g416650.t1.1;g10312.t1"		
+Cre09.g405450			Chloroplast				"Cre09.g405450.t1.1;g10054.t1"		
+Cre09.g387450			Mitochondrion			OPR37	"g9556.t1;g9556.t1;g9556.t1"	"OPR37;OPR37;OPR37"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; next to OPR38;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; next to OPR38;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; next to OPR38"
+Cre09.g401441	GMM:3.3	"minor CHO metabolism.sugar alcohols"	"Secretory pathway"				"Cre02.g139112.t1.2;Cre02.g139112.t1.1;g9991.t1;Cre02.g139112.t1.2;Cre02.g139112.t1.1;g9991.t1"		
+Cre09.g392171			"Secretory pathway"	GO:0016757	"transferase activity, transferring glycosyl groups"		"Cre02.g127800.t1.2;Cre02.g127800.t1.1;g9717.t1"		
+Cre09.g401850	"GMM:30.2.99;GMM:30.11"	"signalling.receptor kinases.misc;signalling.light"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g9227.t1;g9227.t1;g9227.t1;g9227.t1;g9227.t1"		
+Cre09.g409951				GO:0006310	"DNA recombination"		"g10157.t1;Cre09.g409950.t1.3;g10157.t1;Cre09.g409950.t1.3"		"Involved in 16S rRNA processing;Involved in 16S rRNA processing"
+Cre09.g400700			Mitochondrion				"g9254.t1;g9254.t1"		
+Cre09.g395436	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"Cre02.g131900.t1.2;Cre02.g131900.t1.1;g9809.t1"		"SF3b is part of the core complex of the spliceosome machinery; many orthologs in Chlamydomonas"
+Cre09.g394510			Chloroplast	GO:2001070	"starch binding"		"Cre02.g130750.t1.1;g9784.t1;g9784.t1;Cre02.g130750.t1.1"		
+Cre09.g388208			Chloroplast				"Cre02.g122850.t1.2;Cre02.g122850.t1.1;g9607.t1;Cre02.g122850.t1.1;g9607.t1;Cre02.g122850.t1.2;g9607.t1;Cre02.g122850.t1.1;Cre02.g122850.t1.2"		
+Cre09.g397993			"Secretory pathway"			FAP201	"g9879.t2;Cre02.g135050.t1.1;g9879.t2;Cre02.g135050.t1.1"	"FAP201;FAP201"	
+Cre09.g389208	GMM:29.3.5	protein.targeting.peroxisomes		GO:0016021	"integral component of membrane"		"Cre02.g124150.t1.1;g9635.t1;Cre02.g124150.t1.2"		
+Cre09.g401150				"GO:0016020;GO:0009055;GO:0008137"	"membrane;electron carrier activity;NADH dehydrogenase (ubiquinone) activity"		"g9243.t1;g9243.t1"	"NUOFAF2;NUOFAF2"	"Assembly facator for NADH:ubiquinone oxidoreductase (Complex I), mitochondrial; Ortholog to NDUFAF2 in Homo sapiens;;Assembly facator for NADH:ubiquinone oxidoreductase (Complex I), mitochondrial; Ortholog to NDUFAF2 in Homo sapiens;"
+Cre09.g390150							g9492.t1		
+Cre09.g387750			Mitochondrion				g9549.t1		
+Cre09.g393469			"Secretory pathway"				"g9755.t1;Cre02.g129450.t1.1"		
+Cre09.g413123			Mitochondrion				g10230.t1		
+Cre09.g414626			Mitochondrion						
+Cre09.g406432			Mitochondrion	GO:0005509	"calcium ion binding"				
+Cre09.g402367							"Cre02.g140100.t1.1;Cre02.g140100.t1.2;g10016.t1"		
+Cre09.g394400	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g9401.t1		
+Cre09.g405900	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"STK;g10064.t1"		
+Cre09.g398438			Chloroplast						
+Cre09.g411400	GMM:31.6.1.11	cell.motility.eukaryotes.other				MOT45	"Cre09.g411400.t1.1;MOT45;g10186.t1"		
+Cre09.g401886	GMM:21.2.1	"redox.ascorbate and glutathione.ascorbate"	Mitochondrion	"GO:0055114;GO:0020037;GO:0006979;GO:0004601"	"oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity"		"Cre02.g139650.t1.2;g10003.t1;Cre02.g139650.t1.1"		
+Cre09.g392542	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"	hlm7	"g9727.t1;Cre02.g128300.t1.1;Cre02.g128300.t1.1;g9727.t1"		
+Cre09.g387134			Chloroplast				"Cre02.g121500.t1.1;g9578.t1;Cre02.g121500.t1.2;g9578.t1;Cre02.g121500.t1.2;Cre02.g121500.t1.1"		
+Cre09.g410087									
+Cre09.g389850			"Secretory pathway"				"g9500.t1;g9500.t1;g9500.t1"		
+Cre09.g415350									
+Cre09.g387726	GMM:13.1.1.2.1	"amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase"	Mitochondrion	"GO:0030170;GO:0009058;GO:0008483;GO:0006520"	"pyridoxal phosphate binding;biosynthetic process;transaminase activity;cellular amino acid metabolic process"	AST1	"g9594.t1;AST1;Cre02.g122250.t1.2;Cre02.g122250.t1.1;g9594.t1;AST1;Cre02.g122250.t1.2;Cre02.g122250.t1.1"	"AST1;AST1"	"Putative aspartate aminotransferase (EC 2.6.1.1); no organelle targeting sequence predicted by Target-P, but plastidic by homology, Found in the mitochondrial proteomic survey;Putative aspartate aminotransferase (EC 2.6.1.1); no organelle targeting sequence predicted by Target-P, but plastidic by homology, Found in the mitochondrial proteomic survey"
+Cre09.g392900							g9431.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g400404			Mitochondrion				"Cre02.g137700.t1.1;Cre02.g137700.t1.2;g9962.t1"		
+Cre09.g386400	GMM:29.5.11.2	protein.degradation.ubiquitin.E1		GO:0008641	"small protein activating enzyme activity"	FAP124	"POC20;UBA1;g9102.t1;Cre09.g386400.t1.1;FAP124;FAP124;Cre09.g386400.t1.1;g9102.t1;POC20;UBA1;g9102.t1;Cre09.g386400.t1.1;FAP124;POC20;UBA1"	"UBA1;UBA1;UBA1"	"Ubiquitin E1 activating enzyme; Found in the flagellar proteome as Flagellar asociated protein 124 (FAP124); Found in the basal body proteome as Proteome of centriole protein 20 (POC20);Ubiquitin E1 activating enzyme; Found in the flagellar proteome as Flagellar asociated protein 124 (FAP124); Found in the basal body proteome as Proteome of centriole protein 20 (POC20);Ubiquitin E1 activating enzyme; Found in the flagellar proteome as Flagellar asociated protein 124 (FAP124); Found in the basal body proteome as Proteome of centriole protein 20 (POC20)"
+Cre09.g401450							"g9236.t1;g9236.t1;g9236.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g414700									
+Cre09.g414300	GMM:29.4	"protein.postranslational modification"					"g10260.t1;Cre09.g414300.t1.1;g10260.t1;Cre09.g414300.t1.1;Cre09.g414300.t1.1;g10260.t1;g10260.t1;Cre09.g414300.t1.1"		
+Cre09.g410850	GMM:34.4	transport.nitrate		"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	NRT2.1	"g10176.t1;NRT2.1;Cre09.g410850.t1.1;NAR3"	NRT2A	"Carrier-type transporter with 12 putative transmembrane helices; together with NAR2, forms system I, a high-affinity nitrate and nitrite transporter; is part of the NIT1 cluster of nitrate/nitrite assimilation genes; expression is NIT2-dependent"
+Cre09.g407400			Mitochondrion				g10101.t1		
+Cre09.g397179			Chloroplast			OPR13	"Cre02.g134000.t1.1;g9857.t1;Cre02.g134000.t1.2"	OPR13	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre09.g396350							"Cre09.g396350.t1.1;MITC3;g9362.t1;Cre09.g396350.t1.1;g9362.t1;MITC3"		
+Cre09.g412803			"Secretory pathway"	GO:0016020	membrane	CGL88	"Cre09.g412803.t1.1;g10220.t1;g10220.t1;Cre09.g412803.t1.1"	"CGL88;CGL88"	
+Cre09.g396250	"GMM:18;GMM:16.1.3;GMM:11.3.3"	"Co-factor and vitamine metabolism;secondary metabolism.isoprenoids.tocopherol biosynthesis;lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase"	"Secretory pathway"			VTE5	"g9364.t1;Cre09.g396250.t1.1;VTE5"	VTE5	"related to VTE5 in Arabidopsis, PMID: 16361393"
+Cre09.g391150	GMM:29.5.7	protein.degradation.metalloprotease					"DIV153;g9469.t1"		"ts-lethal mutation block at S/M (PMID 29743196)"
+Cre09.g396883			Mitochondrion						
+Cre09.g389134			Mitochondrion	GO:0016757	"transferase activity, transferring glycosyl groups"		"g9633.t1;Cre02.g124100.t1.1"		
+Cre09.g392250	GMM:29.5.3	"protein.degradation.cysteine protease"	Mitochondrion			OTU5	"OTU5;g9446.t1"		"Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila."
+Cre09.g396700	GMM:2.2.1.1	"major CHO metabolism.degradation.sucrose.fructokinase"	Chloroplast	"GO:0016774;GO:0016310;GO:0016301;GO:0008152;GO:0005622"	"phosphotransferase activity, carboxyl group as acceptor;phosphorylation;kinase activity;metabolic process;intracellular"	ACK1	"g9352.t1;Cre09.g396700.t1.1;ACK1;g9352.t1;Cre09.g396700.t1.1;ACK1;Cre09.g396700.t1.1;g9352.t1;ACK1;g9352.t1;Cre09.g396700.t1.1;ACK1"	"ACK1;ACK1;ACK1;ACK1"	"Acetate Kinase; Acetokinase; Potential N-terminal organelle targeting sequence; phosphoryl transfer of phosphate from acetyl-phosphate to ADP for ATP synthesis;Acetate Kinase; Acetokinase; Potential N-terminal organelle targeting sequence; phosphoryl transfer of phosphate from acetyl-phosphate to ADP for ATP synthesis;Acetate Kinase; Acetokinase; Potential N-terminal organelle targeting sequence; phosphoryl transfer of phosphate from acetyl-phosphate to ADP for ATP synthesis;Acetate Kinase; Acetokinase; Potential N-terminal organelle targeting sequence; phosphoryl transfer of phosphate from acetyl-phosphate to ADP for ATP synthesis"
+Cre09.g392877									
+Cre09.g393173	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELI2	"g9747.t1;Cre02.g129000.t1.2;ELI8;ELI2;Cre02.g129000.t1.1;Cre02.g129000.t1.1;ELI2;g9747.t1;Cre02.g129000.t1.2;ELI8"	"ELIP8;ELIP8"	"belongs to chlorophyll A-B binding protein superfamily, ELIP family;belongs to chlorophyll A-B binding protein superfamily, ELIP family"
+Cre09.g406000	"GMM:18.6;GMM:18"	"Co-factor and vitamine metabolism.biotin;Co-factor and vitamine metabolism"	Mitochondrion	"GO:0006464;GO:0004077"	"cellular protein modification process;biotin-[acetyl-CoA-carboxylase] ligase activity"	BPL1	"BPL1;g10066.t1"	BPL1	"Biotin-acetyl-CoA-carboxylase ligase, biotin/lipoate A/B protein ligase; Biotin--[propionyl-CoA-carboxylase [ATP-hydrolyzing]] ligase (Holocarboxylase synthetase)"
+Cre09.g397216	"GMM:26.1;GMM:17.2.2"	"misc.misc2;hormone metabolism.auxin.signal transduction"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"		"g9858.t1;Cre02.g134050.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g386600	GMM:27.1	RNA.processing	Mitochondrion				"g9109.t2;g9109.t2"		
+Cre09.g389950	"GMM:26.6;GMM:26.5"	"misc.O-methyl transferases;misc.acyl transferases"	"Secretory pathway"			OAT1	"OAT1;Cre09.g389950.t1.1;g9497.t1;Cre09.g389950.t1.1;OAT1;g9497.t1"	"OAT1;OAT1"	"similar to O-acetyltransferase-related protein of Arabidopsis thaliana; Genbank entry AY136339;similar to O-acetyltransferase-related protein of Arabidopsis thaliana; Genbank entry AY136339"
+Cre09.g398800	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB36	"g9300.t1;CSB36;TNP23;Cre09.g398800.t1.1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre09.g398500							"g9311.t1;g9311.t1;g9311.t1"		
+Cre09.g388650	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG29	"CYG29;g9527.t1;CYG29;g9527.t1;CYG29;g9527.t1"		"C-terminal domain similar to guanylyl cyclase beta-3 [Apis mellifera];C-terminal domain similar to guanylyl cyclase beta-3 [Apis mellifera];C-terminal domain similar to guanylyl cyclase beta-3 [Apis mellifera]"
+Cre09.g389450	GMM:29.4.1.59	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX"	Mitochondrion	"GO:0016567;GO:0004842;GO:0003676"	"protein ubiquitination;ubiquitin-protein transferase activity;nucleic acid binding"		"g9509.t1;Cre09.g389450.t1.1;g9509.t1;Cre09.g389450.t1.1;Cre09.g389450.t1.1;g9509.t1;g9509.t1;Cre09.g389450.t1.1"		
+Cre09.g387950	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9544.t1;g9544.t1"		
+Cre09.g392951									
+Cre09.g416309			"Secretory pathway"				g10304.t1		
+Cre09.g396102	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9827.t1;Cre02.g132700.t1.2;Cre02.g132700.t1.1;Cre02.g132700.t1.1;g9827.t1;Cre02.g132700.t1.2"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g399513							"Cre02.g136750.t1.1;g9921.t1;Cre02.g136750.t1.1;g9921.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g414200	GMM:29.3.4.3	"protein.targeting.secretory pathway.vacuole"				VPS26	"VPS26;Cre09.g414200.t1.1;g10258.t1"	VPS26	"Expressed Protein. Similar to VPS26, a component of Retromer Coat complex involved in endosomal to Golgi trafficking."
+Cre09.g390319	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		"GO:0032012;GO:0005086"	"regulation of ARF protein signal transduction;ARF guanyl-nucleotide exchange factor activity"		"g9665.t1;Cre02.g125650.t1.1;Cre02.g125650.t1.1;g9665.t1;Cre02.g125650.t1.1;g9665.t1;g9665.t1;Cre02.g125650.t1.1;Cre02.g125650.t1.1;g9665.t1;Cre02.g125650.t1.1;g9665.t1;g9665.t1;Cre02.g125650.t1.1"		
+Cre09.g414951							"g10274.t1;g10274.t1"		
+Cre09.g417000			"Secretory pathway"				"GT90F20;g10319.t1;GT90-20;Cre09.g417000.t1.1"		
+Cre09.g393700	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP3	"MMP3;g9415.t1;MMP3;g9415.t1;g9415.t1;MMP3"	"MMP3;MMP3;MMP3"	"Matrix Metalloprotease -like protein. Homology to MMP1 and MMP2;Matrix Metalloprotease -like protein. Homology to MMP1 and MMP2;Matrix Metalloprotease -like protein. Homology to MMP1 and MMP2"
+Cre09.g387578			Chloroplast				"Cre02.g122050.t1.1;g9590.t1"		
+Cre09.g398650				GO:0005515	"protein binding"		"Cre09.g398650.t1.1;g9304.t1;g9304.t1;Cre09.g398650.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g398586							g9896.t1		
+Cre09.g406150			Mitochondrion				g10069.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre09.g403219	GMM:27.2	RNA.transcription		"GO:0009307;GO:0006351;GO:0004519;GO:0003899;GO:0003677"	"DNA restriction-modification system;transcription, DNA-templated;endonuclease activity;DNA-directed RNA polymerase activity;DNA binding"	RPB5	"g10040.t1;RPB5;Cre02.g120850.t1.2;Cre02.g120850.t1.1"	RPB5	
+Cre09.g392282	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"	Chloroplast	"GO:0030286;GO:0016887;GO:0007018;GO:0005858;GO:0005524;GO:0003777;GO:0003341"	"dynein complex;ATPase activity;microtubule-based movement;axonemal dynein complex;ATP binding;microtubule motor activity;cilium movement"	DHC2	"g9720.t1;DHC2;Cre02.g127950.t1.1;Cre02.g127950.t1.2"	DHC2	"Flagellar inner arm dynein heavy chain, dynein d (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]"
+Cre09.g399911	"GMM:33.99;GMM:31.2"	"development.unspecified;cell.division"		GO:0005515	"protein binding"	CDC20	"Cre62.g792700.t1.1;CDC20;g9276.t1;Cre62.g792700.t1.1;CDC20;g9276.t1"	"CDC20;CDC20"	"CDC20 homolog. Activator and specificity subunit for anaphase promoting complex. Subunit 1 of Anaphase Promoting Complex. Cell cycle regulated E3 ubiquitin ligase. Related to fizzy/cdh1 proteins; ts-lethal mutant arrests with 2C DNA content and fails to initiate cleavage plane and complete mitosis (PMID 29743196);CDC20 homolog. Activator and specificity subunit for anaphase promoting complex. Subunit 1 of Anaphase Promoting Complex. Cell cycle regulated E3 ubiquitin ligase. Related to fizzy/cdh1 proteins; ts-lethal mutant arrests with 2C DNA content and fails to initiate cleavage plane and complete mitosis (PMID 29743196)"
+Cre09.g414750	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG33	"g10270.t1;ELG33;g10270.t1;ELG33"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre09.g388352			"Secretory pathway"				"g9536.t1;g9536.t1;g9536.t1"		
+Cre09.g406100			Chloroplast						
+Cre09.g395769						FAP177	"Cre02.g132350.t1.1;g9818.t1;g9818.t1;Cre02.g132350.t1.1;g9818.t1;Cre02.g132350.t1.1;Cre02.g132350.t1.1;g9818.t1;Cre02.g132350.t1.1;g9818.t1;Cre02.g132350.t1.1;g9818.t1;Cre02.g132350.t1.1;g9818.t1;Cre02.g132350.t1.1;g9818.t1;g9818.t1;Cre02.g132350.t1.1;g9818.t1;Cre02.g132350.t1.1"	"FAP177;FAP177;FAP177;FAP177;FAP177;FAP177;FAP177;FAP177;FAP177;FAP177"	
+Cre09.g402800			Mitochondrion				"g9205.t1;g9205.t1"		
+Cre09.g396438							"Cre02.g133100.t1.1;g9836.t1;Cre02.g133100.t1.1;g9836.t1;g9836.t1;Cre02.g133100.t1.1;Cre02.g133100.t1.1;g9836.t1;Cre02.g133100.t1.1;g9836.t1;g9836.t1;Cre02.g133100.t1.1"		
+Cre09.g397512	"GMM:35.1.3;GMM:29.9;GMM:29.6.2.6"	"not assigned.no ontology.armadillo/beta-catenin repeat family protein;protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones"				HSPBP1	g9866.t1	HSPBP1	"In mammalian cells serves as a nucleotide exchange factor for hsp70 and inhibits the co-chaperone CHIP; upregulated at protein levels upon heat stress"
+Cre09.g396772	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			mmp18	"Cre02.g133500.t1.1;g9845.t1;Cre02.g133500.t1.1;g9845.t1;Cre02.g133500.t1.1;g9845.t1;g9845.t1;Cre02.g133500.t1.1;Cre02.g133500.t1.1;g9845.t1;g9845.t1;Cre02.g133500.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g386749			Chloroplast						
+Cre09.g401701			Mitochondrion				"g9998.t1;Cre02.g139500.t1.2;Cre02.g139500.t1.1;g9998.t1;Cre02.g139500.t1.2;Cre02.g139500.t1.1"		
+Cre09.g393913	GMM:25.7	"C1-metabolism.GTP cyclohydrolase I"		"GO:0046654;GO:0005737;GO:0003934"	"tetrahydrofolate biosynthetic process;cytoplasm;GTP cyclohydrolase I activity"		"g9767.t1;Cre02.g129950.t1.1"		
+Cre09.g400997			Chloroplast				"g9979.t1;Cre02.g138550.t1.1;g9979.t1;Cre02.g138550.t1.1;g9979.t1;Cre02.g138550.t1.1;g9979.t1;Cre02.g138550.t1.1"		
+Cre09.g392350	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"	CGLD37	"Cre09.g392350.t1.1;g9444.t2;Cre09.g392350.t1.1;g9444.t2"	"CGLD37;CGLD37"	"Conserved in the Green Lineage and Diatoms;Conserved in the Green Lineage and Diatoms"
+Cre09.g401022	GMM:10.1.9	"cell wall.precursor synthesis.MUR4"		"GO:0055114;GO:0016616;GO:0006694;GO:0003854"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	UXE	"Cre09.g401022.t1.1;g9246.t1;SNE3, UXE"	UXE1	"UDP-Arabinose synthesis enzyme, localized to Golgi"
+Cre09.g402300	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"				ASA8	"g9217.t1;ASA8;Cre09.g402300.t1.1"	ASA8	"Mitochondrial ATP synthase associated protein 8; part of peripheral stalk involed in dimerization"
+Cre09.g396950	GMM:34.7	transport.phosphate	Chloroplast	"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"		"MFT25;CGL15;g9347.t1;PHT4-9"	PHT4I	"Conserved expressed permease of the major facilitator superfamily; probable sodium-dependent phosphate transporter"
+Cre09.g395850			"Secretory pathway"				"g9372.t1;Cre09.g395850.t1.1"		
+Cre09.g412700			Mitochondrion				g10217.t1		
+Cre09.g402701									
+Cre09.g396549			"Secretory pathway"				"g9839.t1;Cre02.g133200.t1.1"		
+Cre09.g400516	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"		"GO:0016021;GO:0005783"	"integral component of membrane;endoplasmic reticulum"		"Cre02.g137850.t1.1;g9965.t1;Cre02.g137850.t1.2;Cre02.g137850.t1.2;g9965.t1;Cre02.g137850.t1.1"		
+Cre09.g408200	GMM:27.1.1	RNA.processing.splicing		"GO:0008270;GO:0003676"	"zinc ion binding;nucleic acid binding"	SRS4	"SRS5;g10117.t1;Cre09.g408200.t1.1;RSZ22"	SRS4	"Serine/arginine-rich pre-mRNA splicing factor protein of the 9G8 subfamily"
+Cre09.g403500			Mitochondrion				"Cre09.g403500.t1.1;g9192.t1;g9192.t1;Cre09.g403500.t1.1;Cre09.g403500.t1.1;g9192.t1;Cre09.g403500.t1.1;g9192.t1;g9192.t1;Cre09.g403500.t1.1"		
+Cre09.g389578	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"	PSBP5	"Cre02.g124650.t1.1;g9645.t1;PSBP5"		"Shows similarity to PSBP (OEE2, oxygen-evolving enhancer protein 2 of photosystem II, OEC23, 23 kDa subunit of oxygen evolving complex : PMID: 3468511); orthologous to At3g05410; targeted to thylakoid lumen by TAT pathway, but absence of AXA cleavage site"
+Cre09.g400256			Mitochondrion						
+Cre09.g408550	GMM:29.5.11.2	protein.degradation.ubiquitin.E1		GO:0008641	"small protein activating enzyme activity"		"g10125.t1;Cre09.g408550.t1.1"	SAE1	"E1 SUMO activating enzyme; Biochemical activity verified"
+Cre09.g387801				GO:0005515	"protein binding"		"Cre02.g122350.t1.1;g9596.t1;Cre02.g122350.t1.1;g9596.t1"		
+Cre09.g400738	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0008270	"zinc ion binding"		"Cre02.g138150.t1.1;g9971.t1;Cre02.g138150.t1.1;g9971.t1"		
+Cre09.g408851	GMM:29.5	protein.degradation					"g10134.t1;g10134.t1"		
+Cre09.g390957							"Cre09.g390957.t1.1;g9473.t1;g9473.t1;Cre09.g390957.t1.1;g9473.t1;Cre09.g390957.t1.1"		
+Cre09.g388852							"g9523.t1;g9523.t1;g9523.t1"		
+Cre09.g411600							g10190.t1		
+Cre09.g386875	GMM:29.4	"protein.postranslational modification"							
+Cre09.g405650				"GO:0005681;GO:0000398;GO:0000387"	"spliceosomal complex;mRNA splicing, via spliceosome;spliceosomal snRNP assembly"		"Cre09.g405650.t1.1;g10058.t1;g10058.t1;Cre09.g405650.t1.1"		
+Cre09.g387850	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"				RWP13	"g9547.t1;RWP13;Cre09.g387850.t1.1"	RWP13	"putative RWP-RK domain transcription factor"
+Cre09.g411700			Chloroplast				"g10193.t1;g10193.t1;g10193.t1"		
+Cre09.g398326			"Secretory pathway"				"Cre02.g135500.t1.1;g9889.t1"		
+Cre09.g406700	GMM:29.5.1	protein.degradation.subtilases	Mitochondrion	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"		"g10083.t1;g10083.t1"		
+Cre09.g400851							g9251.t1		
+Cre09.g393099									
+Cre09.g392050			Chloroplast				"g9451.t1;g9451.t1;g9451.t1;g9451.t1;g9451.t1"		
+Cre09.g386733									
+Cre09.g405104									
+Cre09.g396957			Mitochondrion				"Cre02.g133750.t1.1;g9851.t1;g9851.t1;Cre02.g133750.t1.1"		
+Cre09.g393850	"GMM:3.6;GMM:29.4"	"minor CHO metabolism.callose;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	MAPKKK2	"PTK28;MAPKKK2;g9412.t1;PTK28, MAPKKK2;MAPKKK2;PTK28, MAPKKK2;PTK28;g9412.t1;g9412.t1;PTK28, MAPKKK2;PTK28;MAPKKK2;MAPKKK2;g9412.t1;PTK28, MAPKKK2;PTK28"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329), MOT23; identified by comparative genomics as being present only in organisms having motile (MOT) cilia;Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329), MOT23; identified by comparative genomics as being present only in organisms having motile (MOT) cilia;Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329), MOT23; identified by comparative genomics as being present only in organisms having motile (MOT) cilia;Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329), MOT23; identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre09.g405550	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion	"GO:0030150;GO:0005744"	"protein import into mitochondrial matrix;mitochondrial inner membrane presequence translocase complex"	TIM21	"g10056.t1;Cre09.g405550.t1.1"	TIM21	"Mitochondrial import inner membrane translocase subunit of 21 kDa"
+Cre09.g396450			"Secretory pathway"			APT3	"g9360.t1;GOX15;APT3;g9360.t1;APT3;GOX15;GOX15;APT3;g9360.t1"		"Acid phosphatase. Previously annotated as GOX15 as a galactose oxidase, for which there is some structural similarlity;Acid phosphatase. Previously annotated as GOX15 as a galactose oxidase, for which there is some structural similarlity;Acid phosphatase. Previously annotated as GOX15 as a galactose oxidase, for which there is some structural similarlity"
+Cre09.g391912							"g9709.t1;Cre02.g127400.t1.1"		
+Cre09.g396289			Mitochondrion				"g9832.t1;Cre02.g132900.t1.1"		
+Cre09.g391541	"GMM:29.3.99;GMM:26.13"	"protein.targeting.unknown;misc.acid and other phosphatases"					"g9698.t1;Cre02.g127000.t1.1"		
+Cre09.g386756							"Cre29.g778800.t1.1;g9138.t1;Cre29.g778800.t1.1;g9138.t1"		
+Cre09.g404500						SFI1	"SFI1;g9168.t1;g9168.t1;SFI1;SFI1;g9168.t1;g9168.t1;SFI1;SFI1;g9168.t1;g9168.t1;SFI1;SFI1;g9168.t1;g9168.t1;SFI1;g9168.t1;SFI1"	"SFI1;SFI1;SFI1;SFI1;SFI1;SFI1;SFI1;SFI1;SFI1"	"Related to yeast spindle pole body protein SFI1. Contains at least 19 recognizable SFI repeat sequences, which in the yeast protein act as centrin-binding sequences.;Related to yeast spindle pole body protein SFI1. Contains at least 19 recognizable SFI repeat sequences, which in the yeast protein act as centrin-binding sequences.;Related to yeast spindle pole body protein SFI1. Contains at least 19 recognizable SFI repeat sequences, which in the yeast protein act as centrin-binding sequences.;Related to yeast spindle pole body protein SFI1. Contains at least 19 recognizable SFI repeat sequences, which in the yeast protein act as centrin-binding sequences.;Related to yeast spindle pole body protein SFI1. Contains at least 19 recognizable SFI repeat sequences, which in the yeast protein act as centrin-binding sequences.;Related to yeast spindle pole body protein SFI1. Contains at least 19 recognizable SFI repeat sequences, which in the yeast protein act as centrin-binding sequences.;Related to yeast spindle pole body protein SFI1. Contains at least 19 recognizable SFI repeat sequences, which in the yeast protein act as centrin-binding sequences.;Related to yeast spindle pole body protein SFI1. Contains at least 19 recognizable SFI repeat sequences, which in the yeast protein act as centrin-binding sequences.;Related to yeast spindle pole body protein SFI1. Contains at least 19 recognizable SFI repeat sequences, which in the yeast protein act as centrin-binding sequences."
+Cre09.g408428	"GMM:34.8;GMM:3.3"	"transport.metabolite transporters at the envelope membrane;minor CHO metabolism.sugar alcohols"	Mitochondrion				"Cre09.g408428.t1.1;g10122.t1"		
+Cre09.g394436	"GMM:34.30;GMM:34.3"	"transport.H+ transporting pyrophosphatase;transport.amino acids"	"Secretory pathway"	"GO:0016020;GO:0015992;GO:0009678;GO:0004427"	"membrane;proton transport;hydrogen-translocating pyrophosphatase activity;inorganic diphosphatase activity"		"Cre02.g130650.t1.1;g9782.t1;Cre02.g130650.t1.2;g9782.t1;Cre02.g130650.t1.1;Cre02.g130650.t1.2;g9782.t1;Cre02.g130650.t1.2;Cre02.g130650.t1.1;Cre02.g130650.t1.1;Cre02.g130650.t1.2;g9782.t1;g9782.t1;Cre02.g130650.t1.2;Cre02.g130650.t1.1;Cre02.g130650.t1.2;Cre02.g130650.t1.1;g9782.t1;g9782.t1;Cre02.g130650.t1.1;Cre02.g130650.t1.2"		
+Cre09.g386500	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast						
+Cre09.g395843	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING					"g9820.t1;Cre02.g132450.t1.1;Cre02.g132450.t1.1;g9820.t1"		
+Cre09.g396920			Chloroplast				"g9850.t1;Cre02.g133700.t1.2;Cre02.g133700.t1.1;Cre02.g133700.t1.2;Cre02.g133700.t1.1;g9850.t1;g9850.t1;Cre02.g133700.t1.2;Cre02.g133700.t1.1"		
+Cre09.g411525	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g10189.t3;Cre09.g411550.t2.1"		
+Cre09.g394050	"GMM:27.3.99;GMM:11.8.2"	"RNA.regulation of transcription.unclassified;lipid metabolism.exotics (steroids, squalene etc).methylsterol monooxygenase"	"Secretory pathway"	GO:0008270	"zinc ion binding"	CPLD19	"Cre09.g394050.t1.1;g9407.t1;g9407.t1;Cre09.g394050.t1.1"	"CPLD19;CPLD19"	"Conserved in the Plant Lineage and Diatoms;Conserved in the Plant Lineage and Diatoms"
+Cre09.g399626			Chloroplast				"Cre02.g136900.t1.1;g9924.t1;Cre02.g136900.t1.1;g9924.t1"		
+Cre09.g389000							g9519.t1		
+Cre09.g391350			"Secretory pathway"				g9466.t2		
+Cre09.g393802			Mitochondrion				"g9764.t1;Cre02.g129850.t1.2;Cre02.g129850.t1.1;Cre02.g129850.t1.2;Cre02.g129850.t1.1;g9764.t1;Cre02.g129850.t1.1;g9764.t1;Cre02.g129850.t1.2;g9764.t1;Cre02.g129850.t1.1;Cre02.g129850.t1.2;Cre02.g129850.t1.1;Cre02.g129850.t1.2;g9764.t1"		
+Cre09.g399812							"g9933.t1;Cre02.g137200.t1.1;Cre02.g137200.t1.2;Cre02.g137200.t1.2;Cre02.g137200.t1.1;g9933.t1"		
+Cre09.g400300							"g9263.t1;g9263.t1"		
+Cre09.g409801							"Cre09.g409800.t1.3;g10154.t1"		
+Cre09.g398845			"Secretory pathway"				"Cre02.g135850.t1.1;g9903.t1;Cre02.g135850.t1.2"		
+Cre09.g397586							"Cre02.g134550.t1.1;g9868.t1"		
+Cre09.g413650				"GO:0048193;GO:0005783"	"Golgi vesicle transport;endoplasmic reticulum"		g10247.t1		
+Cre09.g401350			Chloroplast				"g9238.t1;Cre09.g401350.t1.1;g9238.t1;Cre09.g401350.t1.1"		
+Cre09.g395139			"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"		"Cre02.g131550.t1.1;g9801.t1"		
+Cre09.g417150	GMM:21.6	"redox.dismutases and catalases"		"GO:0055114;GO:0020037;GO:0006979;GO:0004096"	"oxidation-reduction process;heme binding;response to oxidative stress;catalase activity"	CAT1	"CAT1;Cre09.g417150.t1.1;g10326.t1;Cre09.g417150.t1.1;g10326.t1;CAT1;Cre09.g417150.t1.1;g10326.t1;CAT1;g10326.t1;Cre09.g417150.t1.1;CAT1"	"CAT1;CAT1;CAT1;CAT1"	"mono-functional, haem-containing catalase (EC:1.11.1.6) involved in detoxification of H2O2; located in the mitochondrion, according to proteomic survey, but lacks a targeting peptide; has been found to be reduced and inhibited by thioredoxin (PMID: 15123830); null-allele mutant was isolated (PMID 29743196);mono-functional, haem-containing catalase (EC:1.11.1.6) involved in detoxification of H2O2; located in the mitochondrion, according to proteomic survey, but lacks a targeting peptide; has been found to be reduced and inhibited by thioredoxin (PMID: 15123830); null-allele mutant was isolated (PMID 29743196);mono-functional, haem-containing catalase (EC:1.11.1.6) involved in detoxification of H2O2; located in the mitochondrion, according to proteomic survey, but lacks a targeting peptide; has been found to be reduced and inhibited by thioredoxin (PMID: 15123830); null-allele mutant was isolated (PMID 29743196);mono-functional, haem-containing catalase (EC:1.11.1.6) involved in detoxification of H2O2; located in the mitochondrion, according to proteomic survey, but lacks a targeting peptide; has been found to be reduced and inhibited by thioredoxin (PMID: 15123830); null-allele mutant was isolated (PMID 29743196)"
+Cre09.g386746							"g9129.t1;Cre29.g778600.t1.1;Cre29.g778600.t1.1;g9129.t1"		
+Cre09.g410600	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"g10172.t1;PPP34;g10172.t1;PPP34;g10172.t1;PPP34;g10172.t1;PPP34;PPP34;g10172.t1;g10172.t1;PPP34"		
+Cre09.g407350			"Secretory pathway"				"g10099.t1;NAT23"		"Related to GCN5; a SOUL heme-binding protein with chaperonin Cpn6 conserved site. May have acetyl-CoA carboxylase activity"
+Cre09.g387282			Mitochondrion	"GO:0032259;GO:0008168"	"methylation;methyltransferase activity"		"g9582.t1;Cre02.g121700.t1.1"		
+Cre09.g405300			Chloroplast				"g10051.t1;Cre09.g405300.t1.1"		
+Cre09.g416850			Mitochondrion				"Cre09.g416850.t1.1;g10316.t1;Cre09.g416850.t1.1;g10316.t1;Cre09.g416850.t1.1;g10316.t1"	"POB32;POB32;POB32"	"Found in basal body proteome;Found in basal body proteome;Found in basal body proteome"
+Cre09.g396800	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			CSE19	"g9350.t1;CSE19"		"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre09.g391726							"Cre02.g127150.t1.2;Cre02.g127150.t1.1;g9703.t1"		
+Cre09.g388282			Mitochondrion	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPS18	"g9609.t1;Cre02.g122950.t1.1;bS18m;MRPS18"	MRPS18	
+Cre09.g391467			Mitochondrion				"g9696.t1;g9696.t1"		
+Cre09.g391801						VSP4	"g9706.t1;Cre02.g127250.t1.2;Cre02.g127250.t1.1;VSP4;VSP4;Cre02.g127250.t1.1;Cre02.g127250.t1.2;g9706.t1;VSP4;Cre02.g127250.t1.2;Cre02.g127250.t1.1;g9706.t1;Cre02.g127250.t1.2;Cre02.g127250.t1.1;VSP4;g9706.t1"	"VSP4;VSP4;VSP4;VSP4"	"Hydroxyproline rich glycoprotein VSP4; (SP)n-repeats, extracellular matrix protein (cell wall protein); resembles VSP6 [PMID: 7689882, Genbank entry AY036106];Hydroxyproline rich glycoprotein VSP4; (SP)n-repeats, extracellular matrix protein (cell wall protein); resembles VSP6 [PMID: 7689882, Genbank entry AY036106];Hydroxyproline rich glycoprotein VSP4; (SP)n-repeats, extracellular matrix protein (cell wall protein); resembles VSP6 [PMID: 7689882, Genbank entry AY036106];Hydroxyproline rich glycoprotein VSP4; (SP)n-repeats, extracellular matrix protein (cell wall protein); resembles VSP6 [PMID: 7689882, Genbank entry AY036106]"
+Cre09.g396550							"g9357.t1;Cre09.g396550.t1.1;g9357.t1;Cre09.g396550.t1.1;g9357.t1;Cre09.g396550.t1.1"		
+Cre09.g393050				"GO:0008168;GO:0006479"	"methyltransferase activity;protein methylation"		"g9428.t1;PRM6, PRMT6;Cre09.g393050.t1.1;PRM;PRM;Cre09.g393050.t1.1;PRM6, PRMT6;g9428.t1;g9428.t1;Cre09.g393050.t1.1;PRM6, PRMT6;PRM;g9428.t1;Cre09.g393050.t1.1;PRM6, PRMT6;PRM"		"PRMT6 was not found in a search for PRMT genes reported in PMID: 28298486;PRMT6 was not found in a search for PRMT genes reported in PMID: 28298486;PRMT6 was not found in a search for PRMT genes reported in PMID: 28298486;PRMT6 was not found in a search for PRMT genes reported in PMID: 28298486"
+Cre09.g416050	"GMM:13.1.2.3.22;GMM:13.1.2.3"	"amino acid metabolism.synthesis.glutamate family.arginine.argininosuccinate synthase;amino acid metabolism.synthesis.glutamate family.arginine"	Chloroplast	"GO:0006526;GO:0005524;GO:0004055"	"arginine biosynthetic process;ATP binding;argininosuccinate synthase activity"	AGS1	"Cre09.g416050.t1.1;g10298.t1;AGS1"	AGS1	"EC 6.3.4.5; similar to prokaryotic argininosuccinate synthases, such as that from Magnetococcus (GenBank EAN29055); this gene corresponds to the arg8 locus: Loppes, R., and Heindricks, R. (1986) Arch. Microbiol. 143, 348-352."
+Cre09.g395251			Chloroplast				"Cre02.g131650.t1.1;g9804.t1"		
+Cre09.g406400	GMM:34.12	transport.metal		"GO:0046872;GO:0030001;GO:0000166"	"metal ion binding;metal ion transport;nucleotide binding"	CTP3	g10074.t1	CTP3	"Cu transport across endomembrane system; similarity to Ccc2p from yeast and ATP7A/B from human; P-type ATPase superfamily, membrane protein, related to copper transporting P-type ATPases (HMA)"
+Cre09.g399252			Chloroplast				"g9914.t1;Cre02.g136400.t1.1;Cre02.g136400.t1.2"		
+Cre09.g387500			Mitochondrion			OPR38	"Cre09.g387500.t1.1;g9554.t1;g9554.t1;Cre09.g387500.t1.1"	"OPR38;OPR38"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; next to OPR37;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; next to OPR37"
+Cre09.g394600							"g9398.t1;Cre09.g394600.t1.1;Cre09.g394600.t1.1;g9398.t1"		
+Cre09.g393950	"GMM:31.2;GMM:29.5.7;GMM:29.5.11.20"	"cell.division;protein.degradation.metalloprotease;protein.degradation.ubiquitin.proteasom"		GO:0005524	"ATP binding"	FHL2	"FHL8;g9409.t1;FTSHi3;FHL2;Cre09.g393950.t1.1"	FTSHI3	"Similar to AAA domain of FtsH protease, but lacks peptidase domain; may function in the TIC translocon, but land plant homolog FtsHi3 forms a 1-MD complex different from that formed around Ycf2 and other FtsHi homologs"
+Cre09.g397105	"GMM:26.10;GMM:17.2.2;GMM:16.2.1.8"	"misc.cytochrome P450;hormone metabolism.auxin.signal transduction;secondary metabolism.phenylpropanoids.lignin biosynthesis.F5H"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"		"Cre02.g133915.t1.1;g9855.t1;Cre02.g133915.t1.2;Cre02.g133915.t1.2;g9855.t1;Cre02.g133915.t1.1"		
+Cre09.g404250	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0008234;GO:0006508;GO:0005509"	"cysteine-type peptidase activity;proteolysis;calcium ion binding"	CEP9	"SRR29, CEP9;g9174.t1;CEP9"		"Cysteine-type endopeptidase, papain type, with LysM, FTP-lectin, EGF and SRCR (Scavenger receptor cysteine-rich) domains"
+Cre09.g390450							"Cre09.g390450.t1.1;g9485.t1"	POB15	"Found in basal body proteome; Along with POC16 (Cre14.g613400), indentified as one of two proteins of the central core region, POB15 is an inner barrel protein in this region; Recruited after the cartwheel protein BLD12 (Cre12.g516950) and before tubulin glutamylation takes place"
+Cre09.g392800							g9433.t1	POB24	"Found in basal body proteome"
+Cre09.g395300			Mitochondrion				"Cre09.g395300.t1.1;g9384.t1"		
+Cre09.g388356	GMM:1.1.1.3	"PS.lightreaction.photosystem II.biogenesis"	Chloroplast			TBC2	"OPR7;Cre02.g123050.t1.1;TBC2;g9611.t1"	TBC2	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; activates translation of psbC mRNA"
+Cre09.g399900			"Secretory pathway;Chloroplast"				g9271.t2		
+Cre09.g394450	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Mitochondrion	GO:0046907	"intracellular transport"	RBP1	"RBP1;Cre09.g394450.t1.1;g9400.t1"		"has guanine nucleotide dissociation inhibitory activity, specific for the GTP form of Ran; also functions to stimulate Ran GTPase activating protein(GAP)-mediated GTP hydrolysis by Ran"
+Cre09.g412650			Chloroplast				"g10215.t1;g10215.t1"		
+Cre09.g412000			Chloroplast				g10201.t1		
+Cre09.g410450	GMM:27.3.20	"RNA.regulation of transcription.G2-like transcription factor family (GARP)"	"Secretory pathway"			ROC15	"Cre09.g410450.t1.1;g10169.t1;ROC74;ROC74;Cre09.g410450.t1.1;g10169.t1"	"ROC15;ROC15"	"LUX(PCL1)/BOA(NOX)-like GARP protein, transcription factor involved in the circadian clock and its resetting by light;LUX(PCL1)/BOA(NOX)-like GARP protein, transcription factor involved in the circadian clock and its resetting by light"
+Cre09.g387250	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	GO:0008146	"sulfotransferase activity"	CSR3	"g9560.t1;CSR3"		
+Cre09.g393284	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"				RLS8	"RLS8;Cre02.g129150.t1.2;Cre02.g129150.t1.1;g9750.t1;RLS8;Cre02.g129150.t1.2;g9750.t1;Cre02.g129150.t1.1;Cre02.g129150.t1.1;RLS8;Cre02.g129150.t1.2;g9750.t1;Cre02.g129150.t1.1;g9750.t1;RLS8;Cre02.g129150.t1.2"		"Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770 SAND; PF01342); genetically linked to RLS11;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770 SAND; PF01342); genetically linked to RLS11;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770 SAND; PF01342); genetically linked to RLS11;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770 SAND; PF01342); genetically linked to RLS11"
+Cre09.g397150			Mitochondrion				"g9339.t1;g9339.t1;g9339.t1;g9339.t1"		
+Cre09.g390500			"Secretory pathway"				"g9484.t1;Cre09.g390500.t1.1"		
+Cre09.g392467	GMM:34.12	transport.metal		"GO:0046872;GO:0030001"	"metal ion binding;metal ion transport"	ATX1	"Cre02.g128200.t1.2;ATX1;g9725.t1;Cre02.g128200.t1.1"	ATX1	"Cu chaperone for CTP1 or CTP3; Similarity to Atx1-type Cu chaperones; expression rescues yeast atx1 and sodC mutants"
+Cre09.g402923			"Secretory pathway"				"Cre02.g120450.t1.1;g10031.t1;Cre02.g120450.t1.1;g10031.t1"		
+Cre09.g392023						CSV2	"Cre02.g127600.t1.1;CSV2;g9713.t1;Cre02.g127600.t1.2"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre09.g401950			Chloroplast				"g9225.t1;g9225.t1;g9225.t1;g9225.t1"		
+Cre09.g403750			Mitochondrion			HAD6	"HAD6;g9186.t1;g9186.t1;HAD6"		
+Cre09.g417013							g10320.t1		
+Cre09.g403600							"g9190.t1;g9190.t1;g9190.t1;g9190.t1;g9190.t1"		
+Cre09.g411950							"g10199.t1;g10199.t1;g10199.t1;g10199.t1"		
+Cre09.g388541			Chloroplast				"Cre02.g123300.t1.2;Cre02.g123300.t1.1;g9616.t1"		
+Cre09.g390986	GMM:29.1.12	"protein.aa activation.aspartate-tRNA ligase"	Mitochondrion	"GO:0016874;GO:0006418;GO:0005524;GO:0004812;GO:0003676;GO:0000166"	"ligase activity;tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleic acid binding;nucleotide binding"		"Cre02.g126350.t1.2;g9683.t1;Cre02.g126350.t1.1;Cre02.g126350.t1.2;g9683.t1;Cre02.g126350.t1.1;g9683.t1;Cre02.g126350.t1.2;Cre02.g126350.t1.1;Cre02.g126350.t1.2;Cre02.g126350.t1.1;g9683.t1;Cre02.g126350.t1.1;Cre02.g126350.t1.2;g9683.t1"	"TSD1;TSD1;TSD1;TSD1;TSD1"	"Probable mitochondrial and chloroplast;Probable mitochondrial and chloroplast;Probable mitochondrial and chloroplast;Probable mitochondrial and chloroplast;Probable mitochondrial and chloroplast"
+Cre09.g404200							"g9175.t1;g9175.t1"		
+Cre09.g386113	GMM:29.5.7	protein.degradation.metalloprotease					"Cre29.g777600.t1.1;g9086.t1;Cre29.g777600.t1.2;Cre29.g777600.t1.2;g9086.t1;Cre29.g777600.t1.1"		
+Cre09.g399100			Mitochondrion			OPR42	g9293.t1	OPR42	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre09.g402402			"Secretory pathway"				g9215.t1		
+Cre09.g409325									
+Cre09.g399400	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"		GO:0006629	"lipid metabolic process"	FAP199	"g9287.t1;TGL15;g9287.t1;TGL15;g9287.t1;TGL15;g9287.t1;TGL15;TGL15;g9287.t1;TGL15;g9287.t1;TGL15;g9287.t1"	"FAP199;FAP199;FAP199;FAP199;FAP199;FAP199;FAP199"	"Found in the flagellar proteome; Putative triacylglycerol lipase;Found in the flagellar proteome; Putative triacylglycerol lipase;Found in the flagellar proteome; Putative triacylglycerol lipase;Found in the flagellar proteome; Putative triacylglycerol lipase;Found in the flagellar proteome; Putative triacylglycerol lipase;Found in the flagellar proteome; Putative triacylglycerol lipase;Found in the flagellar proteome; Putative triacylglycerol lipase"
+Cre09.g406983	GMM:31.1	cell.organisation							
+Cre09.g386731	GMM:27.1.1	RNA.processing.splicing		"GO:0045131;GO:0003723;GO:0003676;GO:0000398"	"pre-mRNA branch point binding;RNA binding;nucleic acid binding;mRNA splicing, via spliceosome"		"g9113.t1;Cre29.g778000.t1.2;Cre29.g778000.t1.1"		
+Cre09.g395584			Mitochondrion				"Cre02.g132100.t1.1;g9813.t1;g9813.t1;Cre02.g132100.t1.1"		
+Cre09.g402050			Mitochondrion				"g9223.t1;g9223.t1;g9223.t1"		
+Cre09.g413533			Chloroplast						
+Cre09.g399550	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g9284.t1;Cre09.g399550.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g412880	"GMM:29.6.2.3;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat"	Chloroplast			HSP70F	"g10222.t1;g10222.t1;g10222.t1;g10222.t1;g10222.t1;g10222.t1;g10222.t1"	"HSP70F;HSP70F;HSP70F;HSP70F;HSP70F;HSP70F;HSP70F"	"HSP70F is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it clusters together with HSP70D between chloroplast and mitochondrial HSP70s and contains an N-terminal extension, thus might be targeted to an organelle;;HSP70F is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it clusters together with HSP70D between chloroplast and mitochondrial HSP70s and contains an N-terminal extension, thus might be targeted to an organelle;;HSP70F is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it clusters together with HSP70D between chloroplast and mitochondrial HSP70s and contains an N-terminal extension, thus might be targeted to an organelle;;HSP70F is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it clusters together with HSP70D between chloroplast and mitochondrial HSP70s and contains an N-terminal extension, thus might be targeted to an organelle;;HSP70F is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it clusters together with HSP70D between chloroplast and mitochondrial HSP70s and contains an N-terminal extension, thus might be targeted to an organelle;;HSP70F is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it clusters together with HSP70D between chloroplast and mitochondrial HSP70s and contains an N-terminal extension, thus might be targeted to an organelle;;HSP70F is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it clusters together with HSP70D between chloroplast and mitochondrial HSP70s and contains an N-terminal extension, thus might be targeted to an organelle;"
+Cre09.g386744							"Cre29.g778550.t1.2;Cre29.g778550.t1.1;g9127.t1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre09.g388023									
+Cre09.g387050	GMM:3.5	"minor CHO metabolism.others"	Chloroplast			FRK1	"g9564.t1;Cre09.g387050.t1.1;FRK1;FRK1;g9564.t1;Cre09.g387050.t1.1"	"FRK1;FRK1"	
+Cre09.g406625			Mitochondrion						
+Cre09.g404550			"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004674"	"protein phosphorylation;ATP binding;protein serine/threonine kinase activity"		"Cre09.g404550.t1.1;g9166.t1"		
+Cre09.g400108									
+Cre09.g393991							g9769.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g395325							"g9806.t1;Cre02.g131750.t1.1;Cre02.g131750.t1.2"		
+Cre09.g415450	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN17-1	"g10286.t1;Cre09.g415450.t1.1;KIN17-1"	KIN17A	"kinesin-17 family, a novel family (PMID: 16481395); appears as molecular marker KIN3 in the map-based cloning kit developed by Rymarquis et al. [PMID: 15665247]; peptides shared with FLA8 FLA10 and other kinesins"
+Cre09.g389467			Chloroplast			OPR8	"g9642.t1;Cre02.g124500.t1.1;Cre02.g124500.t1.1;g9642.t1;Cre02.g124500.t1.1;g9642.t1"	"OPR8;OPR8;OPR8"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre09.g404050	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9178.t1;g9178.t1;g9178.t1"		
+Cre09.g394399	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					"g9781.t1;Cre02.g130600.t1.1;Cre02.g130600.t1.2;g9781.t1;Cre02.g130600.t1.1;Cre02.g130600.t1.2;Cre02.g130600.t1.1;Cre02.g130600.t1.2;g9781.t1"		
+Cre09.g417200							"g10328.t1;Cre09.g417200.t1.1;g10328.t1;Cre09.g417200.t1.1"		
+Cre09.g390801			Mitochondrion	"GO:0051536;GO:0003824"	"iron-sulfur cluster binding;catalytic activity"		"g9678.t1;Cre02.g126150.t1.1;g9678.t1;Cre02.g126150.t1.1;Cre02.g126150.t1.1;g9678.t1"		
+Cre09.g414000	GMM:16.1.3.2	"secondary metabolism.isoprenoids.tocopherol biosynthesis.homogentisate phytyltransferase"	Mitochondrion	"GO:0016021;GO:0004659"	"integral component of membrane;prenyltransferase activity"		"g10254.t1;Cre09.g414000.t1.1;HPT1;VTE8;g10254.t1;VTE8;Cre09.g414000.t1.1;HPT1;g10254.t1;Cre09.g414000.t1.1;HPT1;VTE8"		"UbiA prenyltransferase family protein involved in vitamin E biosynthesis; Similar to HPT1 gene in Arabidopsis;UbiA prenyltransferase family protein involved in vitamin E biosynthesis; Similar to HPT1 gene in Arabidopsis;UbiA prenyltransferase family protein involved in vitamin E biosynthesis; Similar to HPT1 gene in Arabidopsis"
+Cre09.g395750	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		g9374.t1		
+Cre09.g400590							"g9967.t1;Cre02.g137950.t1.1"		
+Cre09.g411633				"GO:0008270;GO:0006355;GO:0005634;GO:0004402;GO:0003712"	"zinc ion binding;regulation of transcription, DNA-templated;nucleus;histone acetyltransferase activity;transcription cofactor activity"		"Cre09.g411650.t1.3;g10191.t1;Cre09.g411650.t1.3;g10191.t1;g10191.t1;Cre09.g411650.t1.3"		
+Cre09.g399300	"GMM:31.3.1;GMM:29.6.3.1"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs"	"Secretory pathway"	GO:0006457	"protein folding"	FKB17-1	"FKB14;FKB17-1;g9289.t1;Cre09.g399300.t1.1"	FKB17A	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); possibly targeted to thylakoid lumen (presence of a RR motif); [PMID: 15701785]"
+Cre09.g411850							"g10196.t1;g10196.t1"		
+Cre09.g402602			Mitochondrion				"g9211.t1;g9211.t1;g9211.t1;g9211.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g401650							"g9231.t1;Cre09.g401650.t1.1;Cre09.g401650.t1.1;g9231.t1"		
+Cre09.g396028			Chloroplast				"Cre02.g132600.t1.2;Cre02.g132600.t1.1;g9825.t1"		
+Cre09.g408400			"Secretory pathway"				"TPT13;TPT12;g10121.t1;TPT13;TPT12;g10121.t1"		", contains MYND zinc-finger domain;, contains MYND zinc-finger domain"
+Cre09.g390060						RAA4	"g9658.t1;g9658.t1;g9658.t1"	"RAA4;RAA4;RAA4"	"Necessary for trans-splicing of psaA mRNA; no similarity to known proteins; component psaA trans-splicing sub complex I;Necessary for trans-splicing of psaA mRNA; no similarity to known proteins; component psaA trans-splicing sub complex I;Necessary for trans-splicing of psaA mRNA; no similarity to known proteins; component psaA trans-splicing sub complex I"
+Cre09.g389060			Mitochondrion				"Cre02.g124000.t1.1;g9631.t1"		
+Cre09.g400553	GMM:33.30.1	"development.multitarget.target of rapamycin"		"GO:0016773;GO:0008144;GO:0005515"	"phosphotransferase activity, alcohol group as acceptor;drug binding;protein binding"	TOR1	"Cre02.g137900.t1.1;TOR1;g9966.t1;g9966.t1;TOR1;Cre02.g137900.t1.1"	"TOR1;TOR1"	"Homologue of TOR, a PI3K-like protein kinase with a role in the regulation of protein synthesis and cellular organization. Ataxia telangiectasia mutated (ATR) -related. Characterized by Diaz-Troya et al. 2008 [PMID: 18039939, 18670193]; ts-lethal mutant was isolated (PMID 29743196);Homologue of TOR, a PI3K-like protein kinase with a role in the regulation of protein synthesis and cellular organization. Ataxia telangiectasia mutated (ATR) -related. Characterized by Diaz-Troya et al. 2008 [PMID: 18039939, 18670193]; ts-lethal mutant was isolated (PMID 29743196)"
+Cre09.g397808							"Cre02.g134850.t1.1;Cre02.g134850.t1.2;g9874.t1"		
+Cre09.g401145							"Cre02.g138750.t1.2;g9983.t1;Cre02.g138750.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g397438							"g9864.t1;Cre02.g134350.t1.1"		
+Cre09.g410650	GMM:13.1.7.1	"amino acid metabolism.synthesis.histidine.ATP phosphoribosyltransferase"	Chloroplast	"GO:0005737;GO:0003879;GO:0000287;GO:0000105"	"cytoplasm;ATP phosphoribosyltransferase activity;magnesium ion binding;histidine biosynthetic process"	HIS1	"g10171.t1;Cre09.g410650.t1.1;HIS1;HIS1;Cre09.g410650.t1.1;g10171.t1"	"HIS1;HIS1"	"performs the first step in the histidine biosynthesis pathway, the condensation of ATP with PRPP to form phosphoribosyl-ATP; the HIS1 gene contains within one of its internal introns a gene for a Protein phosphatase 2C, encoded on the other strand;performs the first step in the histidine biosynthesis pathway, the condensation of ATP with PRPP to form phosphoribosyl-ATP; the HIS1 gene contains within one of its internal introns a gene for a Protein phosphatase 2C, encoded on the other strand"
+Cre09.g391753							"g9457.t1;Cre09.g391753.t1.1"		
+Cre09.g387650			Mitochondrion				"g9551.t1;Cre09.g387650.t1.1"		
+Cre09.g412787	GMM:29.4	"protein.postranslational modification"	Chloroplast				"g10219.t1;g10219.t1;g10219.t1"		
+Cre09.g411200	"GMM:26.30;GMM:1.1.1.3"	"misc.other Ferredoxins and Rieske domain;PS.lightreaction.photosystem II.biogenesis"	Chloroplast.Stroma.Thylakoid.Membrane			TEF5	"Cre09.g411200.t1.1;TEF5;g10182.t1;LIL8"	PSB33	"N-terminal Rieske-type domain exposed to stroma side, double-pass transmembrane domain, and C-terminal partial chlorophyll-binding domain; could be involved in formation of PSII-LHCII and PSI/LHCI supercomplexes"
+Cre09.g402700	GMM:34.14	"transport.unspecified cations"	Mitochondrion	"GO:0055085;GO:0016021;GO:0015299;GO:0006812"	"transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport"		"g9207.t1;Cre09.g402700.t1.1"		
+Cre09.g416900	GMM:29.4	"protein.postranslational modification"					"g10317.t1;g10317.t1"		
+Cre09.g399050	GMM:26.28	"misc.GDSL-motif lipase"		GO:0016788	"hydrolase activity, acting on ester bonds"		g9295.t1		
+Cre09.g415200	GMM:29.2.99	protein.synthesis.misc		"GO:0005515;GO:0003723"	"protein binding;RNA binding"	NOM1	g10279.t1	NOM1	
+Cre09.g392700						CGL39	"g9435.t1;Cre09.g392700.t1.1"	CGL39	
+Cre09.g390300	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g9489.t1;g9489.t1;g9489.t1;g9489.t1"		
+Cre09.g395213							"Cre02.g131600.t1.1;g9803.t1"		
+Cre09.g388800	GMM:12.3.1	"N-metabolism.N-degradation.glutamate dehydrogenase"	Mitochondrion	"GO:0055114;GO:0016491;GO:0006520"	"oxidation-reduction process;oxidoreductase activity;cellular amino acid metabolic process"	GDH1	"g9524.t1;GDH1;Cre09.g388800.t1.1;Cre09.g388800.t1.1;GDH1;g9524.t1"	"GDH1;GDH1"	"EC 1.4.1.2; one of two GDH paralogs, possibly targeted to different organelles; could be involved in NH3 reassimilation under certain circumstances; predicted by Target-P and iPSORT to be mitochondrial;EC 1.4.1.2; one of two GDH paralogs, possibly targeted to different organelles; could be involved in NH3 reassimilation under certain circumstances; predicted by Target-P and iPSORT to be mitochondrial"
+Cre09.g415001									
+Cre09.g416250	"GMM:31.1.1.3.8;GMM:31.1"	"cell.organisation.cytoskeleton.Myosin.Class VII;cell.organisation"		"GO:0016459;GO:0005524;GO:0003774"	"myosin complex;ATP binding;motor activity"	MYO2	g10302.t1	MYO2	"Similar to V. carteri myoB; null-allele mutant was isolated (PMID 29743196)"
+Cre09.g397734	"GMM:26.10;GMM:26.1;GMM:17.2.2;GMM:16.8.3.3;GMM:16.1.4.7"	"misc.cytochrome P450;misc.misc2;hormone metabolism.auxin.signal transduction;secondary metabolism.flavonoids.dihydroflavonols.flavonoid 3'-monooxygenase;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP744A4	"Cre02.g134750.t1.2;Cre02.g134750.t1.1;g9872.t1;Cre02.g134750.t1.1;g9872.t1;Cre02.g134750.t1.2"		
+Cre09.g389150						FAP93	"Cre09.g389150.t1.1;g9515.t1;Cre09.g389150.t1.1;g9515.t1"	"FAP93;FAP93"	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802];Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]"
+Cre09.g397000	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Mitochondrion				"g9345.t1;g9345.t1;g9345.t1;g9345.t1;g9345.t1;g9345.t1"		
+Cre09.g390356			"Secretory pathway"	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g9666.t1;Cre02.g125700.t1.1;g9666.t1;Cre02.g125700.t1.1;Cre02.g125700.t1.1;g9666.t1"		
+Cre09.g389809			Chloroplast						
+Cre09.g398556									
+Cre09.g403367			"Secretory pathway"				g10045.t1		
+Cre09.g394850	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF				TEF24	"TEF24;Cre09.g394850.t1.1;g9393.t1;TEF24;g9393.t1;Cre09.g394850.t1.1;Cre09.g394850.t1.1;g9393.t1;TEF24;TEF24;Cre09.g394850.t1.1;g9393.t1;g9393.t1;Cre09.g394850.t1.1;TEF24;g9393.t1;TEF24;Cre09.g394850.t1.1;g9393.t1;Cre09.g394850.t1.1;TEF24;g9393.t1;TEF24;Cre09.g394850.t1.1"	"TEF24;TEF24;TEF24;TEF24;TEF24;TEF24;TEF24;TEF24"	"LrgB-like protein, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];LrgB-like protein, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];LrgB-like protein, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];LrgB-like protein, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];LrgB-like protein, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];LrgB-like protein, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];LrgB-like protein, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];LrgB-like protein, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]"
+Cre09.g398549			Chloroplast						
+Cre09.g389902			Mitochondrion						
+Cre09.g398702			Chloroplast						
+Cre09.g402950			Chloroplast			CGL21	"g9203.t1;g9203.t1;g9203.t1"	"CGL21;CGL21;CGL21"	
+Cre09.g407250	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP270	"g10097.t1;Cre09.g407250.t1.1;g10097.t1;Cre09.g407250.t1.1"	"FAP270;FAP270"	"Hypothetical Flagellar Associated Protein with ankyrin repeats, found in the flagellar proteome;Hypothetical Flagellar Associated Protein with ankyrin repeats, found in the flagellar proteome"
+Cre09.g403151			Mitochondrion				"Cre09.g403100.t1.2;g9200.t1"		
+Cre09.g398956							"Cre02.g136000.t1.1;g9906.t1;Cre02.g136000.t1.1;g9906.t1"		
+Cre09.g403071			Chloroplast				"g10035.t1;Cre02.g120600.t1.1"		
+Cre09.g393953			"Secretory pathway"						
+Cre09.g408750			Mitochondrion				"g10131.t1;Cre09.g408750.t1.1"		
+Cre09.g396400	"GMM:29.5.11.1;GMM:29.5.11"	"protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin"		GO:0005515	"protein binding"	UBQ2	"Cre09.g396400.t1.1;UBQ2;g9361.t1"	UBQ2	"post-translationally modifies protein to tag them for proteasome-mediated degradation, internalization etc..; contains two ubiquitin domains in tandem"
+Cre09.g402145			"Secretory pathway"				"Cre02.g139850.t1.2;Cre02.g139850.t1.1;g10010.t1"		
+Cre09.g408800							"Cre09.g408800.t1.1;g10132.t1"		
+Cre09.g386758	"GMM:13.1.4.1.1;GMM:13.1.4.1"	"amino acid metabolism.synthesis.branched chain group.common.acetolactate synthase;amino acid metabolism.synthesis.branched chain group.common"	Chloroplast	"GO:0030976;GO:0003824;GO:0000287"	"thiamine pyrophosphate binding;catalytic activity;magnesium ion binding"	ALS1	"g9140.t1;ALS1;Cre29.g778850.t1.2;Cre29.g778850.t1.1;ALSL1;Cre29.g778850.t1.1;ALSL1;Cre29.g778850.t1.2;g9140.t1;ALS1;g9140.t1;ALSL1;Cre29.g778850.t1.1;ALS1;Cre29.g778850.t1.2;g9140.t1;ALSL1;ALS1;Cre29.g778850.t1.2;Cre29.g778850.t1.1;ALSL1;g9140.t1;Cre29.g778850.t1.1;ALS1;Cre29.g778850.t1.2;Cre29.g778850.t1.2;g9140.t1;ALS1;Cre29.g778850.t1.1;ALSL1;Cre29.g778850.t1.1;ALSL1;g9140.t1;ALS1;Cre29.g778850.t1.2;Cre29.g778850.t1.2;ALSL1;Cre29.g778850.t1.1;ALS1;g9140.t1;g9140.t1;Cre29.g778850.t1.2;ALS1;Cre29.g778850.t1.1;ALSL1;g9140.t1;ALS1;Cre29.g778850.t1.2;ALSL1;Cre29.g778850.t1.1"	"ALS1;ALS1;ALS1;ALS1;ALS1;ALS1;ALS1;ALS1;ALS1;ALS1"	"Acetolactate synthase, large subunit (EC 2.2.1.6); (acetohydroxy acid synthase, large subunit); precursor, expected plastidic by homology, and predicted plastidic by Target-P. Previously annotated as ALSL1. Can be mutated to herbicide resistance. Requi;Acetolactate synthase, large subunit (EC 2.2.1.6); (acetohydroxy acid synthase, large subunit); precursor, expected plastidic by homology, and predicted plastidic by Target-P. Previously annotated as ALSL1. Can be mutated to herbicide resistance. Requi;Acetolactate synthase, large subunit (EC 2.2.1.6); (acetohydroxy acid synthase, large subunit); precursor, expected plastidic by homology, and predicted plastidic by Target-P. Previously annotated as ALSL1. Can be mutated to herbicide resistance. Requi;Acetolactate synthase, large subunit (EC 2.2.1.6); (acetohydroxy acid synthase, large subunit); precursor, expected plastidic by homology, and predicted plastidic by Target-P. Previously annotated as ALSL1. Can be mutated to herbicide resistance. Requi;Acetolactate synthase, large subunit (EC 2.2.1.6); (acetohydroxy acid synthase, large subunit); precursor, expected plastidic by homology, and predicted plastidic by Target-P. Previously annotated as ALSL1. Can be mutated to herbicide resistance. Requi;Acetolactate synthase, large subunit (EC 2.2.1.6); (acetohydroxy acid synthase, large subunit); precursor, expected plastidic by homology, and predicted plastidic by Target-P. Previously annotated as ALSL1. Can be mutated to herbicide resistance. Requi;Acetolactate synthase, large subunit (EC 2.2.1.6); (acetohydroxy acid synthase, large subunit); precursor, expected plastidic by homology, and predicted plastidic by Target-P. Previously annotated as ALSL1. Can be mutated to herbicide resistance. Requi;Acetolactate synthase, large subunit (EC 2.2.1.6); (acetohydroxy acid synthase, large subunit); precursor, expected plastidic by homology, and predicted plastidic by Target-P. Previously annotated as ALSL1. Can be mutated to herbicide resistance. Requi;Acetolactate synthase, large subunit (EC 2.2.1.6); (acetohydroxy acid synthase, large subunit); precursor, expected plastidic by homology, and predicted plastidic by Target-P. Previously annotated as ALSL1. Can be mutated to herbicide resistance. Requi;Acetolactate synthase, large subunit (EC 2.2.1.6); (acetohydroxy acid synthase, large subunit); precursor, expected plastidic by homology, and predicted plastidic by Target-P. Previously annotated as ALSL1. Can be mutated to herbicide resistance. Requi"
+Cre09.g397450							"g9333.t1;g9333.t1;g9333.t1;g9333.t1;g9333.t1;g9333.t1;g9333.t1"		
+Cre09.g407200	GMM:16.1.4	"secondary metabolism.isoprenoids.carotenoids"	Chloroplast				"g10096.t1;POD1;Cre09.g407200.t1.1"		"Phytoene dehydrogenase"
+Cre09.g401750			Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		g9229.t1		"One of three genes (Cre09.g401750, Cre13.g569400, Cre13.g569500) that is similar to Bordetella ACCESSION CAE41228"
+Cre09.g407650			Mitochondrion				"Cre09.g407650.t1.1;g10106.t1"		
+Cre09.g386912	GMM:26.5	"misc.acyl transferases"	"Secretory pathway"	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"		"Cre02.g121200.t1.2;Cre02.g121200.t1.1;g9572.t1;g9572.t1;Cre02.g121200.t1.1;Cre02.g121200.t1.2"	"DGTT2;DGTT2"	
+Cre09.g398050							"g9321.t1;g9321.t1;g9321.t1"		
+Cre09.g390689			Mitochondrion						
+Cre09.g417400				"GO:0006281;GO:0005524;GO:0005515;GO:0004386;GO:0003678;GO:0000723"	"DNA repair;ATP binding;protein binding;helicase activity;DNA helicase activity;telomere maintenance"		g10332.t2		
+Cre09.g398104				"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"Cre02.g135250.t1.1;g9882.t1;Cre02.g135250.t1.2"		
+Cre09.g386155			"Secretory pathway"						
+Cre09.g396500						HAD3	"HAD3;g9358.t1"		
+Cre09.g386143			"Secretory pathway"				"Cre29.g777800.t1.2;Cre29.g777800.t1.1;g9091.t1;g9091.t1;Cre29.g777800.t1.1;Cre29.g777800.t1.2"		
+Cre09.g390400			Chloroplast				g9487.t1		
+Cre09.g393210			"Secretory pathway"				"Cre02.g129050.t1.2;Cre02.g129050.t1.1;g9748.t1"		
+Cre09.g395350	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"				ASA9	"g9383.t1;ASA9;ASA9;g9383.t1"	"ASA9;ASA9"	"Mitochondrial ATP synthase associated protein 9; part of peripheral stalk involed in dimerization; found in mitochondrial membrane proteome (ObsMass=998 kDa) and in soluble fraction (< 25kDa) by Atteia et al; appears resistant to NaOH and NaCl extraction; N-terminal Met removed, N-terminally acetylated; unknown function; also found in thylakoid proteome (Allmer, Naumann, Markert, Zhang and Hippler);Mitochondrial ATP synthase associated protein 9; part of peripheral stalk involed in dimerization; found in mitochondrial membrane proteome (ObsMass=998 kDa) and in soluble fraction (< 25kDa) by Atteia et al; appears resistant to NaOH and NaCl extraction; N-terminal Met removed, N-terminally acetylated; unknown function; also found in thylakoid proteome (Allmer, Naumann, Markert, Zhang and Hippler)"
+Cre09.g398030							"g9880.t1;Cre02.g135100.t1.1"		
+Cre09.g391986	GMM:11.9.2.1	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase"		GO:0006629	"lipid metabolic process"		"g9712.t1;Cre02.g127550.t1.1;Cre02.g127550.t1.2"		
+Cre09.g409728									
+Cre09.g389949	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004725"	"protein dephosphorylation;protein tyrosine phosphatase activity"		"Cre02.g125150.t1.1;g9655.t1;Cre02.g125150.t1.2;g9655.t1;Cre02.g125150.t1.1;Cre02.g125150.t1.2"		
+Cre09.g390700							g9478.t1	POB1	"Found in basal body proteome; Null allele mutant was isolated"
+Cre09.g394917			Chloroplast				"Cre02.g131300.t1.2;g9795.t1;Cre02.g131300.t1.1"		
+Cre09.g386748			Chloroplast						
+Cre09.g387504			"Secretory pathway"				"g9588.t1;Cre02.g121950.t1.2;Cre02.g121950.t1.1"		
+Cre09.g402034	GMM:18.1	"Co-factor and vitamine metabolism.molybdenum cofactor"	Mitochondrion	GO:0008641	"small protein activating enzyme activity"		g10007.t1	UBA4	
+Cre09.g415700	"GMM:8.3;GMM:1.5"	"TCA / organic transformation.carbonic anhydrases;PS.carbon concentrating mechanism"	Chloroplast			CAH3	"CAH3;g10291.t1;Cre09.g415700.t1.1"	CAH3	"Carbonic anhydrase, carbonate dehydratase (EC 4.2.1.1) precursor, alpha type; located in thylakoid lumen (TAT pathway); identical to CRU73856; PSII associated, involved in photosynthesis and CO2 concentration; [PMID: 9482718]"
+Cre09.g392503									
+Cre09.g395732	GMM:29.9	protein.co-chaperones	Chloroplast				"Cre02.g132300.t1.1;g9817.t1;g9817.t1;Cre02.g132300.t1.1"		
+Cre09.g400812							"g9973.t1;Cre02.g138250.t1.1"		
+Cre09.g404400	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					"g9171.t1;Cre09.g404400.t1.1;Cre09.g404400.t1.1;g9171.t1"		"ChromDB HCP341; Putative histone deacetylase protein; possible SAP18 homolog;ChromDB HCP341; Putative histone deacetylase protein; possible SAP18 homolog"
+Cre09.g393350							"g9422.t1;Cre09.g393350.t1.1"		
+Cre09.g386700	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN13-1	"KIN13-1;kinesin-13;g9111.t1;CrKin13;Cre09.g386700.t1.1"	KIN13A	"Identified by Piao et al. [PMID: 19264963] as being in the kinesin-13 family; Similar to mammalan Kinesin Kif2 (peptide is unique to this kinesin); Is phosphorylated during flagellar regeneration, and required for proper flagellar assembly; Regulates depolymerization of cytoplasmic microtubules to control flagellar regeneration;"
+Cre09.g412500	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion				"Cre09.g412500.t1.1;g10212.t1;g10212.t1;Cre09.g412500.t1.1;Cre09.g412500.t1.1;g10212.t1"		
+Cre09.g393617			"Secretory pathway"				"Cre02.g129622.t1.1;g9759.t1;Cre02.g129622.t1.1;g9759.t1"		
+Cre09.g417401	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"	Chloroplast						
+Cre09.g386754							"Cre29.g778750.t1.2;Cre29.g778750.t1.1;g9136.t1"		
+Cre09.g388500			Chloroplast				"Cre09.g388500.t1.1;g9530.t1"		
+Cre09.g406900							"Cre09.g406900.t1.1;g10087.t1"		
+Cre09.g415550	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"	Mitochondrion			ASA2	"OPR43;Cre09.g415550.t1.1;g10288.t1;OPR43;Cre09.g415550.t1.1;g10288.t1;OPR43;Cre09.g415550.t1.1;g10288.t1"	"ASA2;ASA2;ASA2"	"Mitochondrial F1 ATP synthase associated 45.5 kDa protein; specific to Chlorophyceae; part of peripheral stalk involed in dimerization; a degenerated OctotricoPeptide (octotricopeptide) Repeat (OPR) protein;Mitochondrial F1 ATP synthase associated 45.5 kDa protein; specific to Chlorophyceae; part of peripheral stalk involed in dimerization; a degenerated OctotricoPeptide (octotricopeptide) Repeat (OPR) protein;Mitochondrial F1 ATP synthase associated 45.5 kDa protein; specific to Chlorophyceae; part of peripheral stalk involed in dimerization; a degenerated OctotricoPeptide (octotricopeptide) Repeat (OPR) protein"
+Cre09.g405701							"g10059.t1;g10059.t1"		
+Cre09.g404750	GMM:29.4.1	"protein.postranslational modification.kinase"		"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR2	"SRR2;g9162.t1;g9162.t1;SRR2;SRR2;g9162.t1;g9162.t1;SRR2"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912)"
+Cre09.g391652			Chloroplast				"Cre02.g127100.t1.1;g9701.t1"		
+Cre09.g402552	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion	"GO:0055114;GO:0042773;GO:0016651"	"oxidation-reduction process;ATP synthesis coupled electron transport;oxidoreductase activity, acting on NAD(P)H"	NUO11	"g10021.t1;Cre02.g140350.t1.1;NUO11;Cre02.g140350.t1.2;NUO11;g10021.t1;Cre02.g140350.t1.1;Cre02.g140350.t1.2;g10021.t1;Cre02.g140350.t1.1;Cre02.g140350.t1.2;NUO11"	"NUO11;NUO11;NUO11"	"Mitochondrial NADH-ubiquinone oxidoreductase (Complex I) subunit, mitochondrial; 4L.gi|28932861|gb|AAO61142.1|; NADH-ubiquinone oxidoreductase subunit 4L/subunit 11/chain K; Ortholog of MT-ND4L in Homo sapiens;;Mitochondrial NADH-ubiquinone oxidoreductase (Complex I) subunit, mitochondrial; 4L.gi|28932861|gb|AAO61142.1|; NADH-ubiquinone oxidoreductase subunit 4L/subunit 11/chain K; Ortholog of MT-ND4L in Homo sapiens;;Mitochondrial NADH-ubiquinone oxidoreductase (Complex I) subunit, mitochondrial; 4L.gi|28932861|gb|AAO61142.1|; NADH-ubiquinone oxidoreductase subunit 4L/subunit 11/chain K; Ortholog of MT-ND4L in Homo sapiens;"
+Cre09.g391393			Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g9694.t1		
+Cre09.g417050			"Secretory pathway"				"g10323.t2;g10323.t2;g10323.t2;g10323.t2;g10323.t2;g10323.t2"		
+Cre09.g408100							"Cre09.g408100.t1.1;g10115.t1"		
+Cre09.g389541						OPR9	"Cre02.g124600.t1.2;g9644.t1;Cre02.g124600.t1.1;Cre02.g124600.t1.1;g9644.t1;Cre02.g124600.t1.2;Cre02.g124600.t1.2;g9644.t1;Cre02.g124600.t1.1;Cre02.g124600.t1.1;g9644.t1;Cre02.g124600.t1.2"	"OPR9;OPR9;OPR9;OPR9"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain"
+Cre09.g400515									
+Cre09.g387150	"GMM:27.3.23;GMM:20.2.1"	"RNA.regulation of transcription.heat-shock transcription factor family (HSF);stress.abiotic.heat"		"GO:0043565;GO:0006355;GO:0005634;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding"	HSF1	"HSF1;g9562.t1;Cre09.g387150.t1.1"	HSF1	"Key regulator of the heat shock response in Chlamydomonas; similar to class A HSFs from Arabidopsis; essential for viability under heat stress"
+Cre09.g387319	GMM:12.4	N-metabolism.misc		"GO:0055114;GO:0050660;GO:0017150;GO:0008033"	"oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing"		"g9583.t1;Cre02.g121750.t1.1;Cre02.g121750.t1.2"		
+Cre09.g398300			Chloroplast				"g9315.t1;g9315.t1"		
+Cre09.g400900			Chloroplast				"g9249.t1;Cre09.g400900.t1.1"		
+Cre09.g405250			"Secretory pathway"				"g10050.t1;Cre09.g405250.t1.1"		
+Cre09.g400650	GMM:29.2.1.2.1.6	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S6"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS6	"Cre09.g400650.t1.1;g9255.t1;Cre09.g400650.t1.1;g9255.t1;g9255.t1;Cre09.g400650.t1.1"	"RPS6;RPS6;RPS6"	"Cytosolic 40S small ribosomal subunit protein S6;Cytosolic 40S small ribosomal subunit protein S6;Cytosolic 40S small ribosomal subunit protein S6"
+Cre09.g394750	"GMM:29.2.1.1.3.1.1;GMM:29.2.1.1.1.1.1"	"protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.30S subunit.S1;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S1"	Chloroplast	GO:0003676	"nucleic acid binding"	PRPS1	"g9395.t1;Cre09.g394750.t1.1;g9395.t1;Cre09.g394750.t1.1"	"PRPS1;PRPS1"	"imported to chloroplast; Chloroplast Small Ribosomal Subunit Protein S1. This is a polyribonucleotide nucleotidyltransferase (see PNK series);imported to chloroplast; Chloroplast Small Ribosomal Subunit Protein S1. This is a polyribonucleotide nucleotidyltransferase (see PNK series)"
+Cre09.g410300				"GO:0055114;GO:0016491;GO:0005515"	"oxidation-reduction process;oxidoreductase activity;protein binding"		g10165.t1		
+Cre09.g406250			"Secretory pathway"				"g10071.t1;g10071.t1;g10071.t1;g10071.t1"		
+Cre09.g396512			Chloroplast			OPR12	"Cre02.g133150.t1.1;Cre02.g133150.t1.2;g9838.t1;Cre02.g133150.t1.1;Cre02.g133150.t1.2;g9838.t1"	"OPR12;OPR12"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre09.g391500	GMM:29.5.2	protein.degradation.autophagy				ATG9	"g9462.t1;g9462.t1"	"ATG9;ATG9"	"Transmembrane protein involved in forming autophagic vesicles; cycles between the phagophore assembly site (PAS) and other cytosolic punctate structures, not found in autophagosomes; may be involved in membrane delivery to the PAS;Transmembrane protein involved in forming autophagic vesicles; cycles between the phagophore assembly site (PAS) and other cytosolic punctate structures, not found in autophagosomes; may be involved in membrane delivery to the PAS"
+Cre09.g403954									
+Cre09.g392655							"g9730.t1;Cre02.g128450.t1.2;Cre02.g128450.t1.1;g9730.t1;Cre02.g128450.t1.2;Cre02.g128450.t1.1;g9730.t1;Cre02.g128450.t1.2;Cre02.g128450.t1.1;Cre02.g128450.t1.2;g9730.t1;Cre02.g128450.t1.1"		
+Cre09.g386550	"GMM:3.5;GMM:29.4;GMM:27.3.99"	"minor CHO metabolism.others;protein.postranslational modification;RNA.regulation of transcription.unclassified"		GO:0005096	"GTPase activator activity"		"Cre09.g386550.t1.1;g9108.t1;Cre09.g386550.t1.1;g9108.t1;Cre09.g386550.t1.1;g9108.t1;g9108.t1;Cre09.g386550.t1.1;Cre09.g386550.t1.1;g9108.t1"		
+Cre09.g394150			Mitochondrion	GO:0004672	"protein kinase activity"	RAA1	"OPR40;g9405.t1"	RAA1	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; necessary for trans-splicing of psaA mRNA; component psaA trans-splicing sub complexes I and II"
+Cre09.g396050			Mitochondrion				g9368.t1		
+Cre09.g399738							"g9927.t1;Cre02.g137050.t1.1;g9927.t1;Cre02.g137050.t1.1"		
+Cre09.g388875	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g9626.t1;Cre02.g123800.t1.1;Cre02.g123800.t1.1;g9626.t1;Cre02.g123800.t1.1;g9626.t1"		
+Cre09.g400050							"g9268.t1;g9268.t1"		
+Cre09.g399439							"g9919.t1;Cre02.g136650.t1.1;Cre02.g136650.t1.1;g9919.t1"		
+Cre09.g395917				GO:0008080	"N-acetyltransferase activity"		"Cre02.g132550.t1.1;Cre02.g132550.t1.2;g9822.t1;g9822.t1;Cre02.g132550.t1.2;Cre02.g132550.t1.1;g9822.t1;Cre02.g132550.t1.1;Cre02.g132550.t1.2"		
+Cre09.g401600				GO:0003676	"nucleic acid binding"		"Cre09.g401600.t1.1;g9232.t1"		
+Cre09.g402515	GMM:26.7	"misc.oxidases - copper, flavone etc"		"GO:0055114;GO:0048038;GO:0009308;GO:0008131;GO:0005507"	"oxidation-reduction process;quinone binding;amine metabolic process;primary amine oxidase activity;copper ion binding"	AMX1	"Cre02.g140300.t1.1;AMX1;g10020.t1;Cre02.g140300.t1.1;AMX1;g10020.t1;g10020.t1;AMX1;Cre02.g140300.t1.1;AMX1;Cre02.g140300.t1.1;g10020.t1"	"AMX1;AMX1;AMX1;AMX1"	"Contains PTS1 canonical sequence;Contains PTS1 canonical sequence;Contains PTS1 canonical sequence;Contains PTS1 canonical sequence"
+Cre09.g416550			"Secretory pathway"			MBO2	"Cre09.g416550.t1.1;FAP193;g10309.t1;FAP193;Cre09.g416550.t1.1;g10309.t1"	"MBO2;MBO2"	"Coiled-coil flagellar protein; mbo2 (move backward only) mutants are defective in the production of the ciliary waveform; Coiled-Coil Flagellar Protein;Coiled-coil flagellar protein; mbo2 (move backward only) mutants are defective in the production of the ciliary waveform; Coiled-Coil Flagellar Protein"
+Cre09.g414416	GMM:31.3	cell.cycle	Mitochondrion			CYCD4	"g10263.t1;Cre09.g414450.t1.2;Cre09.g414450.t1.2;g10263.t1"	"CYCD4;CYCD4"	"D type cyclin. Contains LXCXE motif that binds to retinoblastoma related proteins.;D type cyclin. Contains LXCXE motif that binds to retinoblastoma related proteins."
+Cre09.g388430				GO:0005515	"protein binding"		"Cre02.g123150.t1.1;g9613.t1;Cre02.g123150.t1.2;Cre02.g123150.t1.2;g9613.t1;Cre02.g123150.t1.1;Cre02.g123150.t1.2;g9613.t1;Cre02.g123150.t1.1;Cre02.g123150.t1.1;Cre02.g123150.t1.2;g9613.t1"		
+Cre09.g400950			"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	NCT2	"g9248.t1;NCT2;Cre09.g400950.t1.1;Cre09.g400950.t1.1;NCT2;g9248.t1;Cre09.g400950.t1.1;g9248.t1;NCT2;g9248.t1;NCT2;Cre09.g400950.t1.1"		"major facilitator superfamily;major facilitator superfamily;major facilitator superfamily;major facilitator superfamily"
+Cre09.g390678				"GO:0006470;GO:0004722"	"protein dephosphorylation;protein serine/threonine phosphatase activity"		"g9479.t1;Cre09.g390678.t1.1"		
+Cre09.g393765			Chloroplast			LMR1	"g9763.t1;Cre02.g129800.t1.2;Cre02.g129800.t1.1;LMR1;g9763.t1;LMR1;Cre02.g129800.t1.2;Cre02.g129800.t1.1;Cre02.g129800.t1.1;LMR1;Cre02.g129800.t1.2;g9763.t1"		"similar to Volvox carteri clone A chitinase [PMID: 9596636, Genbank entry AF058716]; contains two LysM-domains which are found in a variety of enzymes involved in bacterial cell wall degradation; the domain may have a general peptidoglycan binding function;similar to Volvox carteri clone A chitinase [PMID: 9596636, Genbank entry AF058716]; contains two LysM-domains which are found in a variety of enzymes involved in bacterial cell wall degradation; the domain may have a general peptidoglycan binding function;similar to Volvox carteri clone A chitinase [PMID: 9596636, Genbank entry AF058716]; contains two LysM-domains which are found in a variety of enzymes involved in bacterial cell wall degradation; the domain may have a general peptidoglycan binding function"
+Cre09.g390152									
+Cre09.g393506	GMM:21.99	redox.misc	Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	HCP3	"HCP3;g9756.t1;Cre02.g129500.t1.1"	HCP3	"Prismane/CO dehydrogenase family"
+Cre09.g403150						PWR9	"PWR9;g9199.t1;g9199.t1;PWR9;PWR9;g9199.t1;g9199.t1;PWR9;PWR9;g9199.t1"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre09.g413250							"g10236.t1;GT90-15;GT90F15;Cre09.g413250.t1.1;g10236.t1;Cre09.g413250.t1.1;GT90F15;GT90-15;GT90F15;Cre09.g413250.t1.1;g10236.t1;GT90-15"		
+Cre09.g399476			Mitochondrion	GO:0005524	"ATP binding"		"Cre02.g136700.t1.2;g9920.t1;Cre02.g136700.t1.1;Cre02.g136700.t1.1;g9920.t1;Cre02.g136700.t1.2;Cre02.g136700.t1.2;Cre02.g136700.t1.1;g9920.t1"		
+Cre09.g387838				GO:0016020	membrane		"Cre02.g122400.t1.1;Cre02.g122400.t1.2;g9597.t1"		
+Cre09.g409050	GMM:29.5.3	"protein.degradation.cysteine protease"	Chloroplast			OTU6	"g10138.t1;Cre09.g409050.t1.1;OTU6;OTU6;g10138.t1;Cre09.g409050.t1.1;g10138.t1;Cre09.g409050.t1.1;OTU6"		"Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila.;Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila.;Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila."
+Cre09.g405776			Mitochondrion						
+Cre09.g397882			"Secretory pathway"						
+Cre09.g399363			Mitochondrion				"g9917.t1;Cre02.g136550.t1.1;g9917.t1;Cre02.g136550.t1.1;g9917.t1;Cre02.g136550.t1.1"		
+Cre09.g394701	GMM:27.3	"RNA.regulation of transcription"	Chloroplast						
+Cre09.g386200						OPR36	"g9098.t1;g9098.t1;g9098.t1;g9098.t1"	"OPR36;OPR36;OPR36;OPR36"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre09.g408250	GMM:29.2.4	protein.synthesis.elongation				EEF1A2	"EEF1A2;g10118.t1"	EEF1A2	EF-1-alpha
+Cre09.g392252			Mitochondrion	"GO:0008270;GO:0003676"	"zinc ion binding;nucleic acid binding"				
+Cre09.g402304									
+Cre09.g413900			"Secretory pathway"				"GT90-18;g10252.t1;GT90F18;Cre09.g413900.t1.1;GT90-18;g10252.t1;GT90F18;Cre09.g413900.t1.1"		
+Cre09.g415250							"Cre09.g415250.t1.1;g10281.t1;g10281.t1;Cre09.g415250.t1.1"		
+Cre09.g404503	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"	"Secretory pathway;Chloroplast"			SFI1	g9169.t1		
+Cre09.g387097			"Secretory pathway"	GO:0055114	"oxidation-reduction process"		"g9577.t1;Cre02.g121450.t1.2;Cre02.g121450.t1.1"		
+Cre09.g402200			Chloroplast				g9220.t1		
+Cre09.g402997	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	"GO:0006364;GO:0004222"	"rRNA processing;metalloendopeptidase activity"		"Cre02.g120500.t1.1;g10033.t1;Cre02.g120500.t1.2;YBEH"		
+Cre09.g391060			"Secretory pathway"						
+Cre09.g401515			Chloroplast				"g9993.t1;Cre02.g139200.t1.1"		
+Cre09.g414100							"g10256.t1;Cre09.g414100.t1.1;g10256.t1;Cre09.g414100.t1.1"		
+Cre09.g398150				GO:0004725	"protein tyrosine phosphatase activity"	EYA1	"g9319.t1;EYE4"	EYA1	"EYA domain protein, transcription factor and metal-dependent Tyrosine phosphatase, belonging to Haloacid dehalogenase superfamily; in animals, mutation results in eyes being absent; has homologs in all algae, including those without eyespot"
+Cre09.g409150						QCR10	"g10140.t1;Cre09.g409150.t1.1"	QCR10	"Subunit 10 of mitochondrial Complex III (ubiquinol:cytochrome c oxidoreductase); Homolog of human QCRXI, bovine subunit 6.4 kD and yeast QCR10;"
+Cre09.g387800	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast	"GO:0008199;GO:0006879;GO:0006826"	"ferric iron binding;cellular iron ion homeostasis;iron ion transport"	FER1	"g9548.t1;Cre09.g387800.t1.1"	FER1	"Ferritin, chloroplast precursor, pre-apoferritin gi 20530724 gb AF503338; For iron storage or buffering in the chloroplast during iron limitation; Expression induced during Fe deficiency; localized to the chloroplast; a strain with reduced FER1 FER2 abundance has delayed PSII degradation in Fe-deficiency photoheterotrophic growth"
+Cre09.g400750	GMM:34.5	transport.ammonium	Mitochondrion	"GO:0072488;GO:0016020;GO:0015696;GO:0008519"	"ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity"	AMT5	"Cre09.g400750.t1.1;AMT1Ea;AMT5;g9253.t1"	AMT1E	"belongs to AMT1 family (Amt1;5 or Amt1.5); two different splicing variants have been found for this gene, this one is AMT1Ea, the longer one (AY542492)"
+Cre09.g389319	GMM:29.3.5	protein.targeting.peroxisomes	Mitochondrion	GO:0016021	"integral component of membrane"		"g9638.t1;Cre02.g124300.t1.1;Cre02.g124300.t1.2"		
+Cre09.g401367			Mitochondrion				"g9989.t1;Cre02.g139050.t1.1;Cre02.g139050.t1.2"		
+Cre09.g390912			"Secretory pathway"				"g9681.t1;Cre02.g126250.t1.1;g9681.t1;Cre02.g126250.t1.1;g9681.t1;Cre02.g126250.t1.1;g9681.t1;Cre02.g126250.t1.1;Cre02.g126250.t1.1;g9681.t1"		
+Cre09.g413000			"Secretory pathway"				g10225.t1		
+Cre09.g395399							"Cre02.g131850.t1.2;g9808.t1;Cre02.g131850.t1.1"		
+Cre09.g395600	GMM:30.5	signalling.G-proteins	Mitochondrion	"GO:0005525;GO:0003924;GO:0000287"	"GTP binding;GTPase activity;magnesium ion binding"		"g9378.t1;OBGC1;OBGC"		
+Cre09.g412100	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast	"GO:0015979;GO:0009538;GO:0009522"	"photosynthesis;photosystem I reaction center;photosystem I"	PSAF	"Cre09.g412100.t1.1;PSAF;g10203.t1;Cre09.g412100.t1.1;g10203.t1;PSAF;Cre09.g412100.t1.1;g10203.t1;PSAF;g10203.t1;PSAF;Cre09.g412100.t1.1;g10203.t1;PSAF;Cre09.g412100.t1.1;g10203.t1;PSAF;Cre09.g412100.t1.1;PSAF;Cre09.g412100.t1.1;g10203.t1;g10203.t1;Cre09.g412100.t1.1;PSAF"	"PSAF1;PSAF1;PSAF1;PSAF1;PSAF1;PSAF1;PSAF1;PSAF1"	"Chloroplast precursor; donnor side subunit, involved in plastocyanin docking;Chloroplast precursor; donnor side subunit, involved in plastocyanin docking;Chloroplast precursor; donnor side subunit, involved in plastocyanin docking;Chloroplast precursor; donnor side subunit, involved in plastocyanin docking;Chloroplast precursor; donnor side subunit, involved in plastocyanin docking;Chloroplast precursor; donnor side subunit, involved in plastocyanin docking;Chloroplast precursor; donnor side subunit, involved in plastocyanin docking;Chloroplast precursor; donnor side subunit, involved in plastocyanin docking"
+Cre09.g402450	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"Cre09.g402450.t1.1;g9213.t1"		
+Cre09.g386986			"Secretory pathway"				"Cre02.g121300.t1.2;Cre02.g121300.t1.1;g9574.t1"		
+Cre09.g404650			Mitochondrion				"g9164.t1;Cre09.g404650.t1.1;Cre09.g404650.t1.1;g9164.t1;g9164.t1;Cre09.g404650.t1.1;Cre09.g404650.t1.1;g9164.t1;Cre09.g404650.t1.1;g9164.t1;g9164.t1;Cre09.g404650.t1.1"		
+Cre09.g399701							"Cre02.g137000.t1.1;g9926.t1;Cre02.g137000.t1.1;g9926.t1;Cre02.g137000.t1.1;g9926.t1;g9926.t1;Cre02.g137000.t1.1;Cre02.g137000.t1.1;g9926.t1"		
+Cre09.g405150	"GMM:29.1.30;GMM:23.5.2"	"protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase"	Chloroplast	"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS1	"PUS1;g10048.t1"		"tRNA pseudouridine synthase-like protein, putative precursor form possibly targeted to the mitochondria."
+Cre09.g403900	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP294	"g9183.t1;Cre09.g403900.t1.1;g9183.t1;Cre09.g403900.t1.1"	"FAP294;FAP294"	"Flagellar Associated Coiled-Coil Protein, found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384];Flagellar Associated Coiled-Coil Protein, found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre09.g397253				"GO:0055114;GO:0050660;GO:0016491"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity"		"g9859.t1;Cre02.g134100.t1.1"		
+Cre09.g402404							"g10017.t1;Cre02.g140150.t1.2;Cre02.g140150.t1.1"		
+Cre09.g392393							"g9723.t1;Cre02.g128100.t1.2;Cre02.g128100.t1.1"		
+Cre09.g397660			"Secretory pathway"				"g9870.t1;Cre02.g134650.t1.1;Cre02.g134650.t1.2"		
+Cre09.g413100							"g10228.t1;g10228.t1"		
+Cre09.g401100			"Secretory pathway"	"GO:0016021;GO:0005783"	"integral component of membrane;endoplasmic reticulum"		"g9244.t1;Cre09.g401100.t1.1;Cre09.g401100.t1.1;g9244.t1;g9244.t1;Cre09.g401100.t1.1"		
+Cre09.g407100			Mitochondrion	"GO:0006412;GO:0005840;GO:0003735;GO:0003723"	"translation;ribosome;structural constituent of ribosome;RNA binding"	MRPS5	"uS5m;g10092.t2;uS5m;g10092.t2;uS5m;g10092.t2"	"MRPS5;MRPS5;MRPS5"	"shows a C-terminal extension, like all Chlorophyceae and mammalian uS5m, possibly involved in recognition of leaderless mRNAs;shows a C-terminal extension, like all Chlorophyceae and mammalian uS5m, possibly involved in recognition of leaderless mRNAs;shows a C-terminal extension, like all Chlorophyceae and mammalian uS5m, possibly involved in recognition of leaderless mRNAs"
+Cre09.g416000	GMM:27.1	RNA.processing		"GO:0046540;GO:0000398"	"U4/U6 x U5 tri-snRNP complex;mRNA splicing, via spliceosome"		"PRP3;g10297.t1;Cre09.g416000.t1.1"	PRP3	"U4/U6-associated splicing factor in the snRNP family; identified in the eyespot phosphoproteome by Wagner et al. 28 [PMID: 1865559], predicted protein with similarity to an Ostreococcus protein"
+Cre09.g392106							"Cre09.g392100.t1.3;g9450.t1"		
+Cre09.g389550	"GMM:29.9;GMM:20.2.1"	"protein.co-chaperones;stress.abiotic.heat"	Cytosol			DNJ13	"DNJ13;g9506.t1;g9506.t1;DNJ13"		"DnaJ-like protein; probably cytosolic, since homologs in Arabidopsis (Q9LH49 and Q9FL54) are predicted to be cytosolic; contains J-domain (pfam226) at N-terminus;DnaJ-like protein; probably cytosolic, since homologs in Arabidopsis (Q9LH49 and Q9FL54) are predicted to be cytosolic; contains J-domain (pfam226) at N-terminus"
+Cre09.g410950	GMM:12.1.1	"N-metabolism.nitrate metabolism.NR"		"GO:0055114;GO:0042128;GO:0030151;GO:0016491"	"oxidation-reduction process;nitrate assimilation;molybdenum ion binding;oxidoreductase activity"	NIT1	"NIT1;g10178.t1;Cre09.g410950.t1.1"	NIA1	"KEGG enzyme E.C. 1.7.1.3, converts nitrate to nitrite, the first step in nitrate assimilation; This cytosolic enzyme contains a molybdopterin (MoCo) binding domain, a dimerization domain, a cytochrome B5, a FAD-binding and a NAD-binding domain [PMID: 2475871]; NIA1 (NIT1) is part of a gene cluster involved in nitrate assimilation and controlled by nitrate, ammonium and the NIT2 gene; Many commonly used lab strains, including the previous (CC-503) and current (CC-4532) reference strain, have a missense muta"
+Cre09.g388100							"g9541.t1;g9541.t1"		
+Cre09.g389801							"Cre02.g124950.t2.1;g9651.t1"		
+Cre09.g395510			Chloroplast						
+Cre09.g397300	GMM:29.5.5	"protein.degradation.serine protease"	Mitochondrion	"GO:0006508;GO:0004176"	"proteolysis;ATP-dependent peptidase activity"		"Cre09.g397300.t1.1;g9336.t1;g9336.t1;Cre09.g397300.t1.1;g9336.t1;Cre09.g397300.t1.1;Cre09.g397300.t1.1;g9336.t1"		
+Cre09.g396139	"GMM:28.1;GMM:27.1.2"	"DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"					"g9828.t1;Cre02.g132750.t1.1"		
+Cre09.g395650							g9376.t1		
+Cre09.g399030	"GMM:16.1.3.1;GMM:13.2.6.2"	"secondary metabolism.isoprenoids.tocopherol biosynthesis.hydroxyphenylpyruvate dioxygenase;amino acid metabolism.degradation.aromatic aa.tyrosine"		"GO:0055114;GO:0016701;GO:0009072;GO:0003868"	"oxidation-reduction process;oxidoreductase activity, acting on single donors with incorporation of molecular oxygen;aromatic amino acid family metabolic process;4-hydroxyphenylpyruvate dioxygenase activity"	HPD2	"g9908.t1;Cre02.g136100.t1.1;HPD2;Cre02.g136100.t1.2"		"4-hydroxyphenylpyruvate dioxygenase (EC 1.13.11.27) (4HPPD) (HPD) (HPPDase)"
+Cre09.g406600			"Secretory pathway"				"g10080.t1;g10080.t1"		
+Cre09.g394621			Chloroplast	GO:2001070	"starch binding"		"Cre02.g130900.t1.1;g9787.t1;Cre02.g130900.t1.1;g9787.t1"		
+Cre09.g413132									
+Cre09.g409426							g10146.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre09.g413150			Chloroplast				"g10234.t1;g10234.t1;g10234.t1;g10234.t1;g10234.t1;g10234.t1;g10234.t1;g10234.t1"		
+Cre09.g416450			"Secretory pathway"	GO:0016757	"transferase activity, transferring glycosyl groups"		"Cre09.g416450.t1.1;g10307.t1;Cre09.g416450.t1.1;g10307.t1;Cre09.g416450.t1.1;g10307.t1;g10307.t1;Cre09.g416450.t1.1;g10307.t1;Cre09.g416450.t1.1"		
+Cre09.g387689						FAP76	"CCDC180;g9593.t1;Cre02.g122200.t1.1"	FAP76	"Flagellar Associated Protein, found in the flagellar proteome; Contains Coiled-coil domain 180;"
+Cre09.g413500							"GT90F16;g10243.t1;GT90-16;GT90F16;g10243.t1;GT90-16;GT90F16;g10243.t1;GT90-16;GT90-16;GT90F16;g10243.t1"		
+Cre09.g390600	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"				
+Cre09.g389600	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9505.t1;g9505.t1"		
+Cre09.g410000							"g10158.t1;g10158.t1"		
+Cre09.g400145									
+Cre09.g398652									
+Cre09.g416800							"g10315.t1;Cre09.g416800.t1.1"		
+Cre09.g399141	"GMM:34.7;GMM:34.2"	"transport.phosphate;transport.sugars"	"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"		"Cre02.g136250.t1.2;g9911.t1;PHT4-2;Cre02.g136250.t1.1"	PHT4B	"Na+-dependent inorganic phosphate cotransporter"
+Cre09.g390282			Mitochondrion	GO:0016021	"integral component of membrane"		"g9664.t1;Cre02.g125600.t1.1;Cre02.g125600.t1.1;g9664.t1;Cre02.g125600.t1.1;g9664.t1;Cre02.g125600.t1.1;g9664.t1"		
+Cre09.g402182							g10011.t1		
+Cre09.g412400							"g10210.t1;g10210.t1;g10210.t1"		
+Cre09.g406800	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"		"GO:0016020;GO:0008233;GO:0006465"	"membrane;peptidase activity;signal peptide processing"	SPC18	"SPC12;SEC11;SPC18;g10085.t1;SPC18;SPC12;SEC11;g10085.t1"	"SPC18;SPC18"	"18 kDa subunit of the ER signal peptidase; involved in processing signal peptides from ER-targeted proteins;18 kDa subunit of the ER signal peptidase; involved in processing signal peptides from ER-targeted proteins"
+Cre09.g405350			Mitochondrion				"g10052.t2;Cre09.g405350.t1.1"		
+Cre09.g400960			Chloroplast	GO:0016757	"transferase activity, transferring glycosyl groups"		"Cre02.g138500.t1.1;g9978.t1;Cre02.g138500.t1.2"		
+Cre09.g408000			"Secretory pathway"				g10113.t1	POB22	"Found in basal body proteome"
+Cre09.g391319			Mitochondrion				"g9692.t1;Cre02.g126750.t1.1"		
+Cre09.g398100	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre09.g398350	GMM:29.5.11	protein.degradation.ubiquitin	Mitochondrion	"GO:0034450;GO:0016567;GO:0006511;GO:0004842;GO:0000151"	"ubiquitin-ubiquitin ligase activity;protein ubiquitination;ubiquitin-dependent protein catabolic process;ubiquitin-protein transferase activity;ubiquitin ligase complex"		"Cre09.g398350.t1.1;g9314.t1"		
+Cre09.g386750	"GMM:29.6.2.4;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP90s;stress.abiotic.heat"	"Cytosol;Chloroplast"	"GO:0051082;GO:0006950;GO:0006457;GO:0005524"	"unfolded protein binding;response to stress;protein folding;ATP binding"	HSP90A	"Cre09.g386750.t1.1;g9142.t1;Cre09.g386750.t1.1;g9142.t1"	"HSP90A;HSP90A"	"HSP90A is one of 3 HSP90 genes in Chlamydomonas; HSP90A is localized to the cytosol; PMID: 16143837 and 15995001;HSP90A is one of 3 HSP90 genes in Chlamydomonas; HSP90A is localized to the cytosol; PMID: 16143837 and 15995001"
+Cre09.g396850			Chloroplast				"g9349.t1;Cre09.g396850.t1.1"		
+Cre09.g400400			"Secretory pathway"	GO:0016020	membrane		"g9261.t1;g9261.t1"		
+Cre09.g403400							"g9194.t1;g9194.t1"		
+Cre09.g393800			Chloroplast				g9413.t1		
+Cre09.g395450			Mitochondrion	GO:0005515	"protein binding"		"g9381.t2;Cre09.g395450.t1.1;g9381.t2;Cre09.g395450.t1.1;g9381.t2;Cre09.g395450.t1.1;g9381.t2;Cre09.g395450.t1.1"		
+Cre09.g388400						RAT1	"g9532.t1;RAT1;Cre09.g388400.t1.1;g9532.t1;RAT1;Cre09.g388400.t1.1"	"RAT1;RAT1"	"thylakoid membrane protein necessary for 3' end maturation of tscA mRNA, hence for psaA trans-splicing of exons 1 and 2 (PMID: 16115062); has homologues of unknown function in a broad range of organisms; reported similarity to NAD+ binding domain of PARP is dubious;thylakoid membrane protein necessary for 3' end maturation of tscA mRNA, hence for psaA trans-splicing of exons 1 and 2 (PMID: 16115062); has homologues of unknown function in a broad range of organisms; reported similarity to NAD+ binding domain of PARP is dubious"
+Cre09.g388652			"Secretory pathway"				"g9619.t1;Cre02.g123401.t1.2;Cre02.g123401.t1.1"		
+Cre09.g386738			"Secretory pathway"						
+Cre09.g412175			Mitochondrion				g10205.t1		
+Cre09.g390171	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9661.t1;Cre02.g125450.t1.2;Cre02.g125450.t1.1;Cre02.g125450.t1.1;Cre02.g125450.t1.2;g9661.t1;Cre02.g125450.t1.1;Cre02.g125450.t1.2;g9661.t1"		
+Cre09.g414850				"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"g10272.t2;g10272.t2"		
+Cre09.g392729	GMM:13.2.3.4	"amino acid metabolism.degradation.aspartate family.methionine"	Mitochondrion	"GO:0016742;GO:0009058"	"hydroxymethyl-, formyl- and related transferase activity;biosynthetic process"	mtf2	"Cre02.g128550.t1.1;g9732.t1;g9732.t1;Cre02.g128550.t1.1"		
+Cre09.g414550			"Secretory pathway"			CSR7	"Cre09.g414550.t1.1;CSR7;g10265.t1;CSR7;g10265.t1;Cre09.g414550.t1.1"		
+Cre09.g390603			Mitochondrion						
+Cre09.g401551	GMM:11.8.4	"lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"	Chloroplast				"BHD1;Cre09.g401500.t1.3;g9234.t1"		"3-beta-hydroxy-delta5-steroid dehydrogenase"
+Cre09.g387245	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"	"GO:0016020;GO:0006486;GO:0004576"	"membrane;protein glycosylation;oligosaccharyl transferase activity"		"g9581.t1;Cre02.g121650.t1.1"	STT3A	"Catalytic subunit of the oligosaccharyl transferase (OST) complex that catalyzes the initial transfer of a defined glycan (Glc3Man9GlcNAc2 in eukaryotes) from the lipid carrier dolichol-pyrophosphate to an asparagine residue within an Asn-X-Ser/Thr consensus motif in nascent polypeptide chains, the first step in protein N-glycosylation; Orthologous to STT3A (AT5G19690) in Arabidopsis thaliana;"
+Cre09.g388504							"Cre02.g123250.t1.1;g9615.t1;Cre02.g123250.t1.1;g9615.t1;Cre02.g123250.t1.1;g9615.t1"		
+Cre09.g394200	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			FAP102	"FLA4;FAS9;g9404.t1;FLA4;g9404.t1;FAS9;FAS9;g9404.t1;FLA4;g9404.t1;FAS9;FLA4;g9404.t1;FLA4;FAS9;g9404.t1;FAS9;FLA4;g9404.t1;FLA4;FAS9"	"FAP102;FAP102;FAP102;FAP102;FAP102;FAP102;FAP102"	"Flagellar Associated Protein, found in the flagellar proteome as FAP102; Redox-sensitive; Identified as Fasciclin-Like Arabinogalactan 4 (FLA4) in [PMID: 31010036];Flagellar Associated Protein, found in the flagellar proteome as FAP102; Redox-sensitive; Identified as Fasciclin-Like Arabinogalactan 4 (FLA4) in [PMID: 31010036];Flagellar Associated Protein, found in the flagellar proteome as FAP102; Redox-sensitive; Identified as Fasciclin-Like Arabinogalactan 4 (FLA4) in [PMID: 31010036];Flagellar Associated Protein, found in the flagellar proteome as FAP102; Redox-sensitive; Identified as Fasciclin-Like Arabinogalactan 4 (FLA4) in [PMID: 31010036];Flagellar Associated Protein, found in the flagellar proteome as FAP102; Redox-sensitive; Identified as Fasciclin-Like Arabinogalactan 4 (FLA4) in [PMID: 31010036];Flagellar Associated Protein, found in the flagellar proteome as FAP102; Redox-sensitive; Identified as Fasciclin-Like Arabinogalactan 4 (FLA4) in [PMID: 31010036];Flagellar Associated Protein, found in the flagellar proteome as FAP102; Redox-sensitive; Identified as Fasciclin-Like Arabinogalactan 4 (FLA4) in [PMID: 31010036]"
+Cre09.g393150	GMM:15.2	"metal handling.binding, chelation and storage"		"GO:0055114;GO:0016491;GO:0005507"	"oxidation-reduction process;oxidoreductase activity;copper ion binding"	FOX1	"g9426.t1;Cre09.g393150.t1.1;FLP;Cre09.g393150.t1.1;FLP;g9426.t1;FLP;g9426.t1;Cre09.g393150.t1.1;FLP;Cre09.g393150.t1.1;g9426.t1;g9426.t1;Cre09.g393150.t1.1;FLP"	"FOX1;FOX1;FOX1;FOX1;FOX1"	"Similarity to characterized multi-copper oxidases; knockdown of FOX1 leads to poor growth during Fe deficiency and reduced Fe uptake; in vitro oxidase assays; glycosylated; Plasma membrane localized;Similarity to characterized multi-copper oxidases; knockdown of FOX1 leads to poor growth during Fe deficiency and reduced Fe uptake; in vitro oxidase assays; glycosylated; Plasma membrane localized;Similarity to characterized multi-copper oxidases; knockdown of FOX1 leads to poor growth during Fe deficiency and reduced Fe uptake; in vitro oxidase assays; glycosylated; Plasma membrane localized;Similarity to characterized multi-copper oxidases; knockdown of FOX1 leads to poor growth during Fe deficiency and reduced Fe uptake; in vitro oxidase assays; glycosylated; Plasma membrane localized;Similarity to characterized multi-copper oxidases; knockdown of FOX1 leads to poor growth during Fe deficiency and reduced Fe uptake; in vitro oxidase assays; glycosylated; Plasma membrane localized"
+Cre09.g394176			Mitochondrion				g9775.t1		
+Cre09.g410350			Chloroplast				g10167.t1		
+Cre09.g387350	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG30	"Cre09.g387350.t1.1;g9558.t1;CYG30;CYG30;g9558.t1;Cre09.g387350.t1.1;CYG30;g9558.t1;Cre09.g387350.t1.1;CYG30;Cre09.g387350.t1.1;g9558.t1;CYG30;Cre09.g387350.t1.1;g9558.t1"		"similar to guanylyl cyclase beta-3 [Apis mellifera];similar to guanylyl cyclase beta-3 [Apis mellifera];similar to guanylyl cyclase beta-3 [Apis mellifera];similar to guanylyl cyclase beta-3 [Apis mellifera];similar to guanylyl cyclase beta-3 [Apis mellifera]"
+Cre09.g406500			Chloroplast				g10078.t2		
+Cre09.g411975							g10200.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g397803							"g9327.t1;g9327.t1;g9327.t1"		
+Cre09.g407016									
+Cre09.g413700	GMM:34.8	"transport.metabolite transporters at the envelope membrane"					"g10248.t1;TPT14;TPT13"		
+Cre09.g386743							"g9126.t1;Cre29.g778500.t1.1;Cre29.g778500.t1.2"		
+Cre09.g393250			Mitochondrion	GO:0016020	membrane		g9424.t1		
+Cre09.g401589							"g9995.t1;Cre02.g139350.t1.1;Cre02.g139350.t1.1;g9995.t1;g9995.t1;Cre02.g139350.t1.1"		
+Cre09.g391600			Chloroplast			MEP1	"g9460.t1;MEP1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g390050	GMM:18.1	"Co-factor and vitamine metabolism.molybdenum cofactor"				MOL1	"g9495.t1;MCP1;Cre09.g390050.t1.1"	MOCOCP1	"Rossmann fold-containing protein. Involved in molybdenum cofactor storage, protection and transfer to apo-enzymes."
+Cre09.g393654	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"					"Cre02.g129650.t1.1;g9760.t1;RLS11;Cre02.g129650.t1.1;g9760.t1;RLS11;Cre02.g129650.t1.1;RLS11;g9760.t1"		"Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770 SAND; PF01342); genetically linked to RLS8;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770 SAND; PF01342); genetically linked to RLS8;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770 SAND; PF01342); genetically linked to RLS8"
+Cre09.g389393			Mitochondrion				"Cre02.g124400.t1.1;g9640.t1"		
+Cre09.g397290							"Cre02.g134150.t1.1;g9860.t1"		
+Cre09.g393432			Mitochondrion				"g9754.t1;Cre02.g129400.t1.1"		
+Cre09.g392803									
+Cre09.g417100			Mitochondrion				"mL87;g10325.t1;g10325.t1;mL87"	"MRPL87;MRPL87"	
+Cre09.g391352							g9467.t1		
+Cre09.g390250							g9490.t1		
+Cre09.g386950			Mitochondrion				g9566.t1		
+Cre09.g408650							g10128.t1		
+Cre09.g389726							"g9649.t1;Cre02.g124850.t1.1;g9649.t1;Cre02.g124850.t1.1;Cre02.g124850.t1.1;g9649.t1;g9649.t1;Cre02.g124850.t1.1;Cre02.g124850.t1.1;g9649.t1;g9649.t1;Cre02.g124850.t1.1;Cre02.g124850.t1.1;g9649.t1;Cre02.g124850.t1.1;g9649.t1;Cre02.g124850.t1.1;g9649.t1"		
+Cre09.g387430							g9586.t1		
+Cre09.g401775									
+Cre09.g399886			Mitochondrion						
+Cre09.g388050			Chloroplast				"Cre09.g388050.t1.1;g9542.t1;g9542.t1;Cre09.g388050.t1.1;g9542.t1;Cre09.g388050.t1.1"		
+Cre09.g398252	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Chloroplast				"Cre02.g135400.t1.1;g9887.t1;Cre02.g135400.t1.2"		
+Cre09.g399150			Mitochondrion				"g9292.t1;Cre09.g399150.t1.1"		
+Cre09.g396150			"Secretory pathway"				"g9366.t2;g9366.t2;g9366.t2;g9366.t2"		
+Cre09.g391875	GMM:33.99	development.unspecified	Chloroplast				"Cre02.g127371.t1.1;g9708.t1;Cre02.g127371.t1.2"		
+Cre09.g402626									
+Cre09.g404903									
+Cre09.g411300			Mitochondrion				g10184.t1		
+Cre09.g394732				GO:0035735	"intraciliary transport involved in cilium morphogenesis"	CEP131	"Cre02.g131050.t1.1;MOT3;g9790.t1;AZI1;Cre02.g131050.t1.1;g9790.t1;AZI1;MOT3"	"CEP131;CEP131"	"Identified by comparative genomics as being present only in organisms having motile (MOT) cilia; BBSome Regulator;Identified by comparative genomics as being present only in organisms having motile (MOT) cilia; BBSome Regulator"
+Cre09.g402108			"Secretory pathway"	"GO:0016021;GO:0008381"	"integral component of membrane;mechanically-gated ion channel activity"		"g10009.t1;g10009.t1"		"C-terminal domain PF12166 found as an extracellular domain in Piezo, FAM38 mechanosensitive non-specific cation channel proteins; may be involved in locolazing R-RAS to the ER;C-terminal domain PF12166 found as an extracellular domain in Piezo, FAM38 mechanosensitive non-specific cation channel proteins; may be involved in locolazing R-RAS to the ER"
+Cre09.g394769			Chloroplast	GO:0006464	"cellular protein modification process"		"Cre02.g131100.t1.1;g9791.t1"		
+Cre09.g396624							"Cre02.g133300.t1.1;Cre02.g133300.t1.2;g9841.t1;g9841.t1;Cre02.g133300.t1.2;Cre02.g133300.t1.1"		
+Cre09.g388060	GMM:16.1.4.21	"secondary metabolism.isoprenoids.carotenoids.violaxanthin de-epoxidase"	Chloroplast			VDR1	"g9603.t1;Cre02.g122650.t1.1;VDR1;Cre02.g122650.t1.2;Cre02.g122650.t1.2;g9603.t1;Cre02.g122650.t1.1;VDR1;Cre02.g122650.t1.2;g9603.t1;Cre02.g122650.t1.1;VDR1;Cre02.g122650.t1.2;g9603.t1;Cre02.g122650.t1.1;VDR1"	"VDR1;VDR1;VDR1;VDR1"	"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g394991			Mitochondrion				"Cre02.g131400.t1.1;g9797.t1;Cre02.g131400.t1.1;g9797.t1"		
+Cre09.g395658	"GMM:31.3;GMM:31.2;GMM:29.4.1;GMM:29.4"	"cell.cycle;cell.division;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre02.g132200.t1.1;g9815.t1"		
+Cre09.g400500							g9259.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre09.g395102							"Cre02.g131500.t1.1;g9800.t1;g9800.t1;Cre02.g131500.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g397956	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG40	"FAP201, ELG40;FAP201;g9878.t1;Cre02.g135000.t1.1;Cre02.g135000.t1.1;FAP201;FAP201, ELG40;g9878.t1"		"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802];Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]"
+Cre09.g413800	GMM:29.4	"protein.postranslational modification"					g10250.t1		
+Cre09.g404552			Mitochondrion						
+Cre09.g390134	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9660.t1;Cre78.g795700.t1.2;Cre78.g795700.t1.1;Cre78.g795700.t1.2;g9660.t1;Cre78.g795700.t1.1;Cre78.g795700.t1.2;g9660.t1;Cre78.g795700.t1.1;Cre78.g795700.t1.1;g9660.t1;Cre78.g795700.t1.2;Cre78.g795700.t1.2;g9660.t1;Cre78.g795700.t1.1;Cre78.g795700.t1.2;g9660.t1;Cre78.g795700.t1.1;g9660.t1;Cre78.g795700.t1.1;Cre78.g795700.t1.2;Cre78.g795700.t1.2;g9660.t1;Cre78.g795700.t1.1;Cre78.g795700.t1.2;g9660.t1;Cre78.g795700.t1.1"		
+Cre09.g416700							"g10313.t1;g10313.t1"		
+Cre09.g407801			Chloroplast			AKC1	"g10109.t1;Cre09.g407800.t1.3;g10109.t1;Cre09.g407800.t1.3"	"AKC1;AKC1"	"Conserved expressed protein related to ABC1/COQ8 putative ser/thr kinase; ABC1 kinase family protein of unknown function; similar to Arabidopsis At5g52000 associated with plastoglobules;Conserved expressed protein related to ABC1/COQ8 putative ser/thr kinase; ABC1 kinase family protein of unknown function; similar to Arabidopsis At5g52000 associated with plastoglobules"
+Cre09.g387393	GMM:27.3.55	"RNA.regulation of transcription.HDA"					"g9585.t1;Cre02.g121850.t1.1;Cre02.g121850.t1.2"		
+Cre09.g393839							g9765.t1		
+Cre09.g387900			Mitochondrion				"g9546.t1;g9546.t1"		
+Cre09.g401400							"Cre09.g401400.t1.1;g9237.t1"		
+Cre09.g386350	"GMM:29.2.4;GMM:27.3.67"	"protein.synthesis.elongation;RNA.regulation of transcription.putative transcription regulator"		"GO:0008270;GO:0006351;GO:0005634;GO:0003677;GO:0003676"	"zinc ion binding;transcription, DNA-templated;nucleus;DNA binding;nucleic acid binding"		g9101.t1		
+Cre09.g392652			"Secretory pathway"	"GO:0055114;GO:0050662;GO:0016491"	"oxidation-reduction process;coenzyme binding;oxidoreductase activity"		g9437.t1		
+Cre09.g393300			"Secretory pathway"				"g9423.t1;Cre09.g393300.t1.1"		
+Cre09.g399067	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"					"g9909.t1;Cre02.g136150.t1.1;Cre02.g136150.t1.2;Cre02.g136150.t1.1;g9909.t1;Cre02.g136150.t1.2;Cre02.g136150.t1.2;g9909.t1;Cre02.g136150.t1.1"		
+Cre09.g405850	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion	"GO:0055114;GO:0051287;GO:0048038;GO:0016651"	"oxidation-reduction process;NAD binding;quinone binding;oxidoreductase activity, acting on NAD(P)H"	NUO7	"g10063.t1;g10063.t1;g10063.t1;g10063.t1;g10063.t1"	"NUO7;NUO7;NUO7;NUO7;NUO7"	"NADH:ubiquinone oxidoreductase 49 kD subunit, mitochondrial. gi 34328792 gb AAQ63700.1 ; NADH:ubiquinone oxidoreductase (Complex I) subunit. =nad7. gi 34328792 gb AAQ63700.1; Ortholog of NDUFS2 in Homo sapiens;;NADH:ubiquinone oxidoreductase 49 kD subunit, mitochondrial. gi 34328792 gb AAQ63700.1 ; NADH:ubiquinone oxidoreductase (Complex I) subunit. =nad7. gi 34328792 gb AAQ63700.1; Ortholog of NDUFS2 in Homo sapiens;;NADH:ubiquinone oxidoreductase 49 kD subunit, mitochondrial. gi 34328792 gb AAQ63700.1 ; NADH:ubiquinone oxidoreductase (Complex I) subunit. =nad7. gi 34328792 gb AAQ63700.1; Ortholog of NDUFS2 in Homo sapiens;;NADH:ubiquinone oxidoreductase 49 kD subunit, mitochondrial. gi 34328792 gb AAQ63700.1 ; NADH:ubiquinone oxidoreductase (Complex I) subunit. =nad7. gi 34328792 gb AAQ63700.1; Ortholog of NDUFS2 in Homo sapiens;;NADH:ubiquinone oxidoreductase 49 kD subunit, mitochondrial. gi 34328792 gb AAQ63700.1 ; NADH:ubiquinone oxidoreductase (Complex I) subunit. =nad7. gi 34328792 gb AAQ63700.1; Ortholog of NDUFS2 in Homo sapiens;"
+Cre09.g392134	GMM:16.2.1.10	"secondary metabolism.phenylpropanoids.lignin biosynthesis.CAD"	Chloroplast	"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"		"g9716.t1;Cre02.g127750.t1.1"		
+Cre09.g394550	GMM:23.1.3	"nucleotide metabolism.synthesis.PRS-PP"		GO:0009116	"nucleoside metabolic process"	RPPK2	"g9399.t1;Cre09.g394550.t1.1"	RPPK2	"ribose-phosphate pyrophosphokinase (RPPK) = phosphoribosylpyrophosphate synthetase (P-Rib-PP synthetase) (PRPP synthetase); normally a highly regulated enzyme; PRPP is an essential precursor for purines and for histidine"
+Cre09.g415750	GMM:34.99	transport.misc	Chloroplast	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT8	"g10292.t1;Cre09.g415750.t1.1;MFT8"		"related to bacterial putative permeases"
+Cre09.g414600			Mitochondrion				"g10266.t1;g10266.t1;g10266.t1"		
+Cre09.g401900			"Secretory pathway"				"Cre09.g401900.t1.1;g9226.t1;g9226.t1;Cre09.g401900.t1.1"		
+Cre09.g396252	GMM:21.2.2	"redox.ascorbate and glutathione.glutathione"	Mitochondrion	"GO:0055114;GO:0045454;GO:0016491"	"oxidation-reduction process;cell redox homeostasis;oxidoreductase activity"	GSR2	"GSHR2;g9831.t1;GSR2;Cre02.g132850.t1.1;Cre02.g132850.t1.2;g9831.t1;Cre02.g132850.t1.2;Cre02.g132850.t1.1;GSHR2;GSR2"	"GSR2;GSR2"	"Glutathione reductase (GR) (Grase). Previously annotated as GSHR2;Glutathione reductase (GR) (Grase). Previously annotated as GSHR2"
+Cre09.g392654							"g9439.t1;Cre09.g392550.t1.2"		
+Cre09.g410100	"GMM:34.21;GMM:34.1"	"transport.calcium;transport.p- and v-ATPases"		"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"		"g10161.t1;Cre09.g410100.t1.1;Cre09.g410100.t1.1;g10161.t1;g10161.t1;Cre09.g410100.t1.1"		"Related to probable cation-transporting ATPase F and related to Cation-transporting ATPase pma1. Note relationship to bacterial homologs (gram positives and cyanobacteria);Related to probable cation-transporting ATPase F and related to Cation-transporting ATPase pma1. Note relationship to bacterial homologs (gram positives and cyanobacteria);Related to probable cation-transporting ATPase F and related to Cation-transporting ATPase pma1. Note relationship to bacterial homologs (gram positives and cyanobacteria)"
+Cre09.g412350	GMM:21.99	redox.misc					"g10209.t2;Cre09.g412350.t1.1;g10209.t2;Cre09.g412350.t1.1"		
+Cre09.g392208							"Cre02.g127852.t1.1;g9718.t1;Cre02.g127852.t1.2"		
+Cre09.g401849							"Cre02.g139638.t1.2;Cre02.g139638.t1.1;g10002.t1;Cre02.g139638.t1.1;g10002.t1;Cre02.g139638.t1.2"		
+Cre09.g413750	"GMM:13.2.4.1;GMM:13.1.2.3.4;GMM:13.1.1.3.11"	"amino acid metabolism.degradation.branched chain group.shared;amino acid metabolism.synthesis.glutamate family.arginine.acetylornithine aminotransferase;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase"	Mitochondrion	"GO:0030170;GO:0008483"	"pyridoxal phosphate binding;transaminase activity"		"g10249.t1;ABT1;ABT1;g10249.t1;ABT1;g10249.t1;ABT1;g10249.t1"		"similar to 4-aminobutyrate aminotransferase;similar to 4-aminobutyrate aminotransferase;similar to 4-aminobutyrate aminotransferase;similar to 4-aminobutyrate aminotransferase"
+Cre09.g392579			Mitochondrion			OPR10	"Cre02.g128350.t1.1;Cre02.g128350.t1.2;mL115;OPR10;g9728.t1"	MRPL115	"an OctotricoPeptide Repeat (OPR) protein (Walz et al 2021); stabilizes the 3' extremity and H4 and H19 of L1 fragment; interacts with RNA via the convex side of its super-helical fold; structurally compensate missing part of rRNA domain I on the backside of the LSU"
+Cre09.g399589			Mitochondrion				"Cre02.g136850.t1.1;Cre02.g136850.t1.2;g9923.t1"		
+Cre09.g389400			Chloroplast				g9510.t1		
+Cre09.g388353			"Secretory pathway"			PHC34	"g9537.t1;g9537.t1;g9537.t1"	"PHC34;PHC34;PHC34"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre09.g416100	"GMM:29.9;GMM:20.2.1"	"protein.co-chaperones;stress.abiotic.heat"	Cytosol			DNJ11	"g10299.t1;Cre09.g416100.t1.1;DNJ11"		"DnaJ-like protein; probably cytosolic; similar to rice Q8SV9, Xenopus Q7ZXQ8, and Arabidopsis Q9M2L3; contain J-domain (pfam226) in the middle of the protein"
+Cre09.g409901			"Secretory pathway"			PHC57			
+Cre09.g389245							"g9636.t1;Cre02.g124200.t1.1;g9636.t1;Cre02.g124200.t1.1"		
+Cre09.g410900			"Secretory pathway"			NAR2	"NIT8;g10177.t1;Cre09.g410900.t1.1"	NAR2	"collaborates with upstream NAR3/4 (NRT2;1/2) to build High Affinity Nitrate/nitrite Transport systems (PMID: 18310352); is part of the NIT1 cluster of nitrate/nitrite assimilation genes; expression is NIT2-dependent"
+Cre09.g402350				GO:0005515	"protein binding"		"g9216.t1;Cre09.g402350.t1.1"		
+Cre09.g406416							"g10075.t1;g10075.t1"		
+Cre09.g393136	GMM:35.1.21	"not assigned.no ontology.epsin N-terminal homology (ENTH) domain-containing protein"					"Cre02.g128950.t1.2;Cre02.g128950.t1.1;g9746.t1"		
+Cre09.g407450							"g10102.t1;Cre09.g407450.t1.1;Cre09.g407450.t1.1;g10102.t1;g10102.t1;Cre09.g407450.t1.1;g10102.t1;Cre09.g407450.t1.1;Cre09.g407450.t1.1;g10102.t1;Cre09.g407450.t1.1;g10102.t1"		
+Cre09.g402330	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre02.g140050.t1.1;g10015.t1"		
+Cre09.g404904			Mitochondrion				g9159.t1		
+Cre09.g410800	GMM:34.4	transport.nitrate	"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	NRT2.2	"g10175.t1;Cre09.g410800.t1.1;NAR4;NRT2.2"	NRT2B	"Carrier-type transporter with 12 putative transmembrane helices; together with NAR2, forms system II, a high-affinity nitrate transporter; is part of the NIT1 cluster of nitrate/nitrite assimilation genes; expression is NIT2-dependent"
+Cre09.g395065									
+Cre09.g397142	GMM:34.99	transport.misc		"GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216"	"calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity"	TRP15	"Cre02.g133950.t1.1;g9856.t1;TRP15"	ADF1	"Transient receptor channel that functions in acid-induced calcium entry"
+Cre09.g414150							"GT90F42;g10257.t3;GT90-42;g10257.t3;GT90-42;GT90F42;g10257.t3;GT90F42;GT90-42;GT90F42;GT90-42;g10257.t3"		
+Cre09.g399916							"g9280.t1;Cre09.g399700.t1.2;g9280.t1;Cre09.g399700.t1.2"		
+Cre09.g395900			"Secretory pathway"			CSV3	"Cre09.g395900.t1.1;g9371.t1;CSV3"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre09.g413141			Mitochondrion				"g10233.t1;Cre09.g413124.t1.2"		
+Cre09.g386741									
+Cre09.g400312	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	"protein binding"		g9262.t1		
+Cre09.g400367	GMM:27.1	RNA.processing		GO:0006396	"RNA processing"		"RCL1;g9961.t1;Cre02.g137650.t1.1;Cre02.g137650.t1.2"	RCL1	"Homologue of S. cerevisiae RCL1, which is an RNA terminal phosphate cyclase-like protein involved in the 35S pre-rRNA precursor processing at sites A0, A1, and A2; Yeast Rcl1 does not possess detectable RNA cyclase activity."
+Cre09.g403800	"GMM:31.6.1.4.2.1;GMM:31.6.1.4.1"	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.outer arm"		"GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777"	"dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity"	DHC14	"ROC54;g9185.t1;Cre09.g403800.t1.1;ROC30;ODA4;ODA-DHCbeta;DYHB;ROC54;ROC30;g9185.t1;Cre09.g403800.t1.1;DYHB;ODA-DHCbeta;ODA4"	"DHC14;DHC14"	"Locus first identified by mutations (sup-pf-1 alleles) that suppress flagellar paralysis from radial spoke or central pair defects; null mutations block ODA assembly; Matsuo et al.'s (2008) roc30 (rhythm of chloroplast 30) and roc54 circadian bioluminescence rhythm mutant loci map here;Locus first identified by mutations (sup-pf-1 alleles) that suppress flagellar paralysis from radial spoke or central pair defects; null mutations block ODA assembly; Matsuo et al.'s (2008) roc30 (rhythm of chloroplast 30) and roc54 circadian bioluminescence rhythm mutant loci map here"
+Cre09.g395500						HEATR2	"g9380.t1;HEATR2;DNAAF5;Cre09.g395500.t1.1;HEATR2A"	HTR2A	"Dynein assembly factor; Knockdown of HTR2A disrupts ODA assembly"
+Cre09.g414650	"GMM:31.3;GMM:29.4"	"cell.cycle;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g10268.t1;g10268.t1;g10268.t1;g10268.t1;g10268.t1"		
+Cre09.g393395			Chloroplast				"Cre02.g129350.t1.1;g9753.t1"		
+Cre09.g402650							"Cre09.g402650.t1.1;g9208.t1"		
+Cre09.g393100							"g9427.t1;g9427.t1;g9427.t1;g9427.t1"		
+Cre09.g389875	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	Chloroplast	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE7	"PDE7;Cre02.g125050.t1.1;g9653.t1;PDE7;Cre02.g125050.t1.1;g9653.t1;PDE7;Cre02.g125050.t1.1;g9653.t1"		"Cyclic nucleotide phosphodiesterase similar to calmodulin dependent phosphodiesterase from Bos taurus AAA92555.1;Cyclic nucleotide phosphodiesterase similar to calmodulin dependent phosphodiesterase from Bos taurus AAA92555.1;Cyclic nucleotide phosphodiesterase similar to calmodulin dependent phosphodiesterase from Bos taurus AAA92555.1"
+Cre09.g408500			Mitochondrion				"g10124.t1;g10124.t1"		
+Cre09.g391578	GMM:2.1.1.2	"major CHO metabolism.synthesis.sucrose.SPP"	Mitochondrion				"Cre02.g127050.t1.1;g9699.t1;g9699.t1;Cre02.g127050.t1.1;Cre02.g127050.t1.1;g9699.t1"		
+Cre09.g391245	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	ATG1	"Cre02.g126650.t1.2;g9690.t1;Cre02.g126650.t1.1;Cre02.g126650.t1.1;g9690.t1;Cre02.g126650.t1.2;g9690.t1;Cre02.g126650.t1.2;Cre02.g126650.t1.1"	"ATG1;ATG1;ATG1"	"Protein serine/threonine kinase; required for vesicle formation in autophagy; structurally required for phagophore assembly site formation; during autophagy forms a complex with Atg13 and Atg17;Protein serine/threonine kinase; required for vesicle formation in autophagy; structurally required for phagophore assembly site formation; during autophagy forms a complex with Atg13 and Atg17;Protein serine/threonine kinase; required for vesicle formation in autophagy; structurally required for phagophore assembly site formation; during autophagy forms a complex with Atg13 and Atg17"
+Cre09.g402960									
+Cre09.g399289	"GMM:33.99;GMM:33.3;GMM:27.3.28"	"development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0005515;GO:0003677"	"nucleus;protein binding;DNA binding"		"g9915.t1;Cre02.g136450.t1.1;g9915.t1;Cre02.g136450.t1.1;g9915.t1;Cre02.g136450.t1.1;Cre02.g136450.t1.1;g9915.t1"		
+Cre09.g396100	GMM:1.5	"PS.carbon concentrating mechanism"	Mitochondrion			PHC15	"PHC15;EZY16;Cre09.g396100.t1.1;g9367.t1;g9367.t1;PHC15;EZY16;Cre09.g396100.t1.1;g9367.t1;PHC15;EZY16;Cre09.g396100.t1.1"	"PHC15;PHC15;PHC15"	"Pherophorin-C15 (PHC15) [PMID: 16367971]; belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain.;Pherophorin-C15 (PHC15) [PMID: 16367971]; belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain.;Pherophorin-C15 (PHC15) [PMID: 16367971]; belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain."
+Cre09.g387171	"GMM:3.5;GMM:10.1.11;GMM:10.1.10"	"minor CHO metabolism.others;cell wall.precursor synthesis.UER;cell wall.precursor synthesis.RHM"				RHM1	"EZY22;g9579.t2;DIV109;Cre02.g121550.t2.1"	RHM1	"ts-lethal mutant has fragile cell membrane when poked with a needle at restrictive temperature (PMID 29743196)"
+Cre09.g387763	GMM:11.5.2	"lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)"		"GO:0055114;GO:0009331;GO:0006072;GO:0005975;GO:0004367"	"oxidation-reduction process;glycerol-3-phosphate dehydrogenase complex;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity"		"g9595.t1;Cre02.g122300.t1.1;g9595.t1;Cre02.g122300.t1.1"		
+Cre09.g392251			"Secretory pathway"				"g9447.t1;g9447.t1"		
+Cre09.g406200	"GMM:29.1.40;GMM:29.1.15"	"protein.aa activation.bifunctional aminoacyl-tRNA synthetase;protein.aa activation.proline-tRNA ligase"	Chloroplast	"GO:0006433;GO:0006418;GO:0005737;GO:0005524;GO:0004827;GO:0004812;GO:0000166"	"prolyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;proline-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding"	PRORS1	"g10070.t1;Cre09.g406200.t1.1;TSO1;Cre09.g406200.t1.1;TSO1;g10070.t1;TSO1;Cre09.g406200.t1.1;g10070.t1;Cre09.g406200.t1.1;TSO1;g10070.t1;TSO1;g10070.t1;Cre09.g406200.t1.1"	"PRORS1;PRORS1;PRORS1;PRORS1;PRORS1"	"Related to E coli proS prolyl-tRNA synthetase;Related to E coli proS prolyl-tRNA synthetase;Related to E coli proS prolyl-tRNA synthetase;Related to E coli proS prolyl-tRNA synthetase;Related to E coli proS prolyl-tRNA synthetase"
+Cre09.g395200							"g9387.t1;g9387.t1"		
+Cre09.g390467	"GMM:9.1.2;GMM:34.99"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;transport.misc"				CGL66	"CGL66;g9669.t1;Cre02.g125850.t1.1;CGL66;Cre02.g125850.t1.1;g9669.t1;CGL66;g9669.t1;Cre02.g125850.t1.1;Cre02.g125850.t1.1;g9669.t1;CGL66;Cre02.g125850.t1.1;g9669.t1;CGL66;CGL66;Cre02.g125850.t1.1;g9669.t1;g9669.t1;Cre02.g125850.t1.1;CGL66;g9669.t1;Cre02.g125850.t1.1;CGL66"	"CGL66;CGL66;CGL66;CGL66;CGL66;CGL66;CGL66;CGL66"	
+Cre09.g396650	GMM:2.2.1.2	"major CHO metabolism.degradation.acetate metabolism.phosphate acetyltransferase"	Chloroplast	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"	PAT2	"Cre09.g396650.t1.1;g9354.t1;g9354.t1;Cre09.g396650.t1.1"	"PAT2;PAT2"	"Putative phosphate acetyltransferase (EC 2.3.1.8); phosphotransacetylase; similarity to prokaryotic phosphate acetyltransferase (e.g., Desulfovibrio GenBank AAS975). Acclimation to changing CO2 concentrations and light intensities was studied by Yamano;Putative phosphate acetyltransferase (EC 2.3.1.8); phosphotransacetylase; similarity to prokaryotic phosphate acetyltransferase (e.g., Desulfovibrio GenBank AAS975). Acclimation to changing CO2 concentrations and light intensities was studied by Yamano"
+Cre09.g416950	GMM:29.4	"protein.postranslational modification"		"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"	MKP1	"g10318.t1;MKP1"		"Map Kinase Phosphatase 1 (Dual Specificity Protein Phosphatase)(DSP1); dephosphorylates and inactivates MAP kinases"
+Cre09.g401050			"Secretory pathway"				"g9245.t1;g9245.t1;g9245.t1;g9245.t1;g9245.t1;g9245.t1;g9245.t1;g9245.t1"		
+Cre09.g406550						RPP40	"MOT31;Cre09.g406550.t1.1;g10079.t1;g10079.t1;MOT31;Cre09.g406550.t1.1"	"RPP40;RPP40"	"Involved in precursor rRNA processing;Involved in precursor rRNA processing"
+Cre09.g405950							"g10065.t1;Cre09.g405950.t1.1"		
+Cre09.g386755									
+Cre09.g399250			Chloroplast			KIR1	"KIR1;Cre09.g399250.t1.1;g9290.t1"		"Related to a series of bacterial genes among which is a putative Ketosteroid isomerase-related protein of Ralstonia; however, it is impossible to find a similarity with the well-characterized delta5-3-ketosteroid isomerase of Pseudomonas putida or Comamonas testosteroni, so this may be a case of erroneous annotation in Ralstonia that spread into COG; is probably targeted to the thylakoid lumen (based on alignment and RR motif), like the related gene KIR2, the cTP is very similar to that of PSBP, PSBQ, HIS5"
+Cre09.g412050							g10202.t1		
+Cre09.g398850							"g9299.t1;Cre09.g398850.t1.1;g9299.t1;Cre09.g398850.t1.1"		
+Cre09.g397098									
+Cre09.g398750	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9301.t1;Cre09.g398750.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre09.g407900				GO:0008168	"methyltransferase activity"		"g10111.t1;RRM8;Cre09.g407900.t1.1"	RRM8	
+Cre09.g403300	GMM:27.3.50	"RNA.regulation of transcription.general transcription"		"GO:0006289;GO:0005634;GO:0004003;GO:0000439"	"nucleotide-excision repair;nucleus;ATP-dependent DNA helicase activity;core TFIIH complex"		"g9196.t1;Cre09.g403300.t1.1;Cre09.g403300.t1.1;g9196.t1"		
+Cre09.g416350	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006334;GO:0005634"	"nucleosome assembly;nucleus"		"g10305.t1;Cre09.g416350.t1.1;Cre09.g416350.t1.1;g10305.t1;Cre09.g416350.t1.1;g10305.t1"		"ChromoDB NFA341;ChromoDB NFA341;ChromoDB NFA341"
+Cre09.g404000	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			CPLD59	g9179.t1	CPLD59	"Conserved in the Plant Lineage and Diatoms"
+Cre09.g394288			"Secretory pathway"				"Cre02.g130450.t1.1;g9778.t1;Cre02.g130450.t1.2"		
+Cre09.g413075									
+Cre09.g412600	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190;GO:0000160"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;phosphorelay signal transduction system"	CYG52	"CYG52;g10214.t1;CYG52;g10214.t1;CYG52;g10214.t1"		"Guanylate cyclase domain similar to that of NPR2 protein [Homo sapiens];Guanylate cyclase domain similar to that of NPR2 protein [Homo sapiens];Guanylate cyclase domain similar to that of NPR2 protein [Homo sapiens]"
+Cre09.g386850			"Secretory pathway"				"g9568.t2;g9568.t2;g9568.t2"		
+Cre09.g402663									
+Cre09.g389838	GMM:27.4	"RNA.RNA binding"	"Secretory pathway"	GO:0003676	"nucleic acid binding"		"Cre02.g125000.t1.2;g9652.t1;Cre02.g125000.t1.1;g9652.t1;Cre02.g125000.t1.2;Cre02.g125000.t1.1;Cre02.g125000.t1.1;Cre02.g125000.t1.2;g9652.t1;Cre02.g125000.t1.2;Cre02.g125000.t1.1;g9652.t1"		
+Cre09.g389050			"Secretory pathway"	GO:0016021	"integral component of membrane"	MAW4	"CNX5;g9518.t1;MAW4;g9518.t1;CNX5;MAW4;g9518.t1;CNX5;MAW4;g9518.t1;CNX5;MAW4;MAW4;CNX5;g9518.t1"		"Contains a predicted C-terminal transmembrane domain.;Contains a predicted C-terminal transmembrane domain.;Contains a predicted C-terminal transmembrane domain.;Contains a predicted C-terminal transmembrane domain.;Contains a predicted C-terminal transmembrane domain."
+Cre09.g390949	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP140	"Cre02.g126300.t1.2;Cre02.g126300.t1.1;g9682.t1"	FAP140	
+Cre09.g400000							g9269.t1		
+Cre09.g395925			Mitochondrion				"g9145.t1;Cre29.g779000.t1.1"		
+Cre09.g412150			Chloroplast			PPR11	g10204.t1	PPR11	
+Cre09.g388763			Chloroplast	GO:0006629	"lipid metabolic process"		"Cre02.g123600.t1.1;g9622.t1"		
+Cre09.g389750	GMM:27.3.11	"RNA.regulation of transcription.C2H2 zinc finger family"		GO:0008270	"zinc ion binding"		g9502.t1		
+Cre09.g400850	GMM:26.16	misc.myrosinases-lectin-jacalin	"Secretory pathway"	"GO:0030246;GO:0007155"	"carbohydrate binding;cell adhesion"	CTL4	"CTL4;g9250.t1"		"Contains multiple carbohydrate binding domains: H-lectin, WSC, C-type lectin, PAN/APPLE-like; has many homologs in Chlamydomonas and Volvox; formerly annotated as putative polycystin cation channel"
+Cre09.g392914			"Mitochondrion;Chloroplast"				g9737.t1		
+Cre09.g417176									
+Cre09.g392500							"g9440.t1;Cre09.g392500.t1.1"		
+Cre09.g396698			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g9843.t1;Cre02.g133400.t1.1;g9843.t1;Cre02.g133400.t1.1;g9843.t1;Cre02.g133400.t1.1;g9843.t1;Cre02.g133400.t1.1;Cre02.g133400.t1.1;g9843.t1"		
+Cre09.g397250	GMM:11.2.1	"lipid metabolism.FA desaturation.desaturase"	Chloroplast	GO:0006629	"lipid metabolic process"	FAD5A	"g9337.t1;FAD5A;Cre09.g397250.t1.1;g9337.t1;FAD5A;Cre09.g397250.t1.1;Cre09.g397250.t1.1;FAD5A;g9337.t1"	"FAD5A;FAD5A;FAD5A"	"MGDG specific palmitate delta-7 desaturase; Target of CRR1;MGDG specific palmitate delta-7 desaturase; Target of CRR1;MGDG specific palmitate delta-7 desaturase; Target of CRR1"
+Cre09.g386161			"Secretory pathway"				"Cre29.g777900.t1.1;g9095.t1;g9095.t1;Cre29.g777900.t1.1"		
+Cre09.g405050	"GMM:34.1.1.3;GMM:34.1.1"	"transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit D;transport.p- and v-ATPases.H+-transporting two-sector ATPase"	Chloroplast	GO:0042626	"ATPase activity, coupled to transmembrane movement of substances"	ATPVD2	"Cre09.g405050.t1.1;ATPVD2;g9152.t1"	ATPVD2	"V-ATPase D subunit; Vacuolar proton pump D subunit; Vacuolar H+-ATPase V1 sector, subunit D"
+Cre09.g388912			"Secretory pathway"				"g9627.t1;Cre02.g123839.t1.1;Cre02.g123839.t1.2"		
+Cre09.g399908			Mitochondrion				"g9273.t1;Cre62.g792600.t1.1;Cre62.g792600.t1.1;g9273.t1"		
+Cre09.g397900			Mitochondrion	GO:0016021	"integral component of membrane"		"Cre09.g397900.t1.1;g9324.t1;g9324.t1;Cre09.g397900.t1.1;Cre09.g397900.t1.1;g9324.t1;Cre09.g397900.t1.1;g9324.t1"		
+Cre09.g411751			"Secretory pathway"				"g10194.t1;Cre09.g411750.t1.3;g10194.t1;Cre09.g411750.t1.3"		
+Cre09.g390850			"Secretory pathway"				g9475.t1		
+Cre09.g408950				GO:0006914	autophagy				
+Cre09.g400293			Chloroplast				"g9959.t1;Cre02.g137500.t1.1;g9959.t1;Cre02.g137500.t1.1"		
+Cre09.g403256				GO:0005525	"GTP binding"		"Cre02.g120900.t1.2;Cre02.g120900.t1.1;g10041.t1"		
+Cre09.g401034							"Cre02.g138600.t1.1;g9980.t1"		
+Cre09.g398808			Chloroplast	"GO:0005515;GO:0000042"	"protein binding;protein targeting to Golgi"		"Cre02.g135800.t1.1;g9902.t1;g9902.t1;Cre02.g135800.t1.1;g9902.t1;Cre02.g135800.t1.1;Cre02.g135800.t1.1;g9902.t1"		
+Cre09.g408150			Chloroplast				"Cre09.g408150.t1.1;g10116.t1;Cre09.g408150.t1.1;g10116.t1"		
+Cre09.g400701							"g9970.t1;Cre02.g138100.t1.1"		
+Cre09.g397401							"g9863.t1;Cre02.g134300.t1.1;Cre02.g134300.t1.2"		
+Cre09.g408900							"g10135.t1;Cre09.g408900.t1.1"		
+Cre09.g388850	"GMM:34.21;GMM:30.3;GMM:3.3"	"transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols"		"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"	FAP329	"ACA1;g9522.t1;g9522.t1;ACA1;g9522.t1;ACA1"	"FAP329;FAP329;FAP329"	"Related to plant potential calcium-transporting ATPase 9, plasma membrane-type (Ca(2+)-ATPase isoform 9); found in the flagellar proteome [PMID: 15998802];Related to plant potential calcium-transporting ATPase 9, plasma membrane-type (Ca(2+)-ATPase isoform 9); found in the flagellar proteome [PMID: 15998802];Related to plant potential calcium-transporting ATPase 9, plasma membrane-type (Ca(2+)-ATPase isoform 9); found in the flagellar proteome [PMID: 15998802]"
+Cre09.g399849									
+Cre09.g388600							g9528.t1		
+Cre09.g413350							g10238.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g389300	GMM:29.4	"protein.postranslational modification"					"g9512.t1;g9512.t1;g9512.t1;g9512.t1;g9512.t1;g9512.t1"	"ODA7B;ODA7B;ODA7B;ODA7B;ODA7B;ODA7B"	"Outer row dynein assembly protein, ODA7;Outer row dynein assembly protein, ODA7;Outer row dynein assembly protein, ODA7;Outer row dynein assembly protein, ODA7;Outer row dynein assembly protein, ODA7;Outer row dynein assembly protein, ODA7"
+Cre09.g393900	GMM:18.3.1	"Co-factor and vitamine metabolism.riboflavin.GTP cyclohydrolase II"	Chloroplast	"GO:0009231;GO:0003935"	"riboflavin biosynthetic process;GTP cyclohydrolase II activity"	GCH2	"Cre09.g393900.t1.1;GCH2;g9411.t2;Cre09.g393900.t1.1;g9411.t2;GCH2;g9411.t2;Cre09.g393900.t1.1;GCH2;g9411.t2;Cre09.g393900.t1.1;GCH2"		"Putative bifunctional GTP cyclohydrolase II/3,4-dihydroxy-2-butanone-4-phosphate synthase, riboflavin (vitamin B2) biosynthesis; RIBA. Catalyzes the first committed step in riboflavin biosynthesis;Putative bifunctional GTP cyclohydrolase II/3,4-dihydroxy-2-butanone-4-phosphate synthase, riboflavin (vitamin B2) biosynthesis; RIBA. Catalyzes the first committed step in riboflavin biosynthesis;Putative bifunctional GTP cyclohydrolase II/3,4-dihydroxy-2-butanone-4-phosphate synthase, riboflavin (vitamin B2) biosynthesis; RIBA. Catalyzes the first committed step in riboflavin biosynthesis;Putative bifunctional GTP cyclohydrolase II/3,4-dihydroxy-2-butanone-4-phosphate synthase, riboflavin (vitamin B2) biosynthesis; RIBA. Catalyzes the first committed step in riboflavin biosynthesis"
+Cre09.g390652			Chloroplast						
+Cre09.g390900							g9474.t1		
+Cre09.g399914			Mitochondrion			SSA8	"SSA8;Cre09.g399800.t1.3;g9278.t1;g9278.t1;Cre09.g399800.t1.3;SSA8"	"SSA8;SSA8"	"identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA)"
+Cre09.g407110	GMM:35.1.17	"not assigned.no ontology.transcription factor jumonji (jmjC) domain-containing protein"					g10093.t1		
+Cre09.g415900	GMM:34.8	"transport.metabolite transporters at the envelope membrane"	"Secretory pathway"	GO:0055085	"transmembrane transport"	MOT20	"TPT15;Cre09.g415900.t1.1;g10295.t1;TPT15;g10295.t1;Cre09.g415900.t1.1"	"MOT20;MOT20"	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia;identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre09.g387502									
+Cre09.g394584	"GMM:31.3;GMM:29.2.2.3.3"	"cell.cycle;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases"	Chloroplast	"GO:0008649;GO:0006364;GO:0005737"	"rRNA methyltransferase activity;rRNA processing;cytoplasm"	GID2	"GID2;g9786.t1;Cre02.g130850.t1.1;g9786.t1;Cre02.g130850.t1.1;GID2"		"Probable methyltransferase activity; related to glucose inhibited division protein;Probable methyltransferase activity; related to glucose inhibited division protein"
+Cre09.g398697			"Secretory pathway"						
+Cre09.g388134			"Secretory pathway"				"Cre02.g122750.t1.1;Cre02.g122750.t1.2;g9605.t1;g9605.t1;Cre02.g122750.t1.1;Cre02.g122750.t1.2;Cre02.g122750.t1.2;Cre02.g122750.t1.1;g9605.t1"		
+Cre09.g398178									
+Cre09.g392988			"Secretory pathway"						
+Cre09.g386119							"g9088.t2;Cre29.g777650.t2.1;g9088.t2;Cre29.g777650.t2.1"		
+Cre09.g386736	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"		GO:0005515	"protein binding"	FAP44	"g9118.t1;Cre29.g778250.t1.1;g9118.t1;Cre29.g778250.t1.1"	"FAP44;FAP44"	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]; part of tether complex that constrains inner arm I1/f;Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]; part of tether complex that constrains inner arm I1/f"
+Cre09.g388900				"GO:0016788;GO:0009058"	"hydrolase activity, acting on ester bonds;biosynthetic process"	TEH10	"TEH10;Cre09.g388900.t1.1;g9521.t1"		
+Cre09.g396994	"GMM:26.1;GMM:17.2.2"	"misc.misc2;hormone metabolism.auxin.signal transduction"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"		"Cre02.g133800.t1.1;g9852.t1;Cre02.g133800.t1.1;g9852.t1;Cre02.g133800.t1.1;g9852.t1;g9852.t1;Cre02.g133800.t1.1"		
+Cre09.g397850			Chloroplast				"Cre09.g397850.t1.1;g9325.t1;Cre09.g397850.t1.1;g9325.t1"		
+Cre09.g409700			Chloroplast				"Cre09.g409700.t1.1;g10151.t1"		
+Cre09.g399923			Chloroplast						
+Cre09.g394251	GMM:31.6.1.6.3	"cell.motility.eukaryotes.central pair.C1"		GO:0005515	"protein binding"	PF16	"Cre02.g130400.t1.2;Cre02.g130400.t1.1;g9777.t1;PF16;Cre02.g130400.t1.1;Cre02.g130400.t1.2;g9777.t1;PF16"	"PF16;PF16"	
+Cre09.g405100							g9148.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g391134							"Cre02.g126500.t1.1;Cre02.g126500.t1.2;g9687.t1;Cre02.g126500.t1.2;g9687.t1;Cre02.g126500.t1.1;Cre02.g126500.t1.1;Cre02.g126500.t1.2;g9687.t1;Cre02.g126500.t1.2;g9687.t1;Cre02.g126500.t1.1"		
+Cre09.g391450	GMM:21.99	redox.misc	Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	HCP1	"HCP1;g9463.t1;Cre09.g391450.t1.1"	HCP1	"Prismane/CO dehydrogenase family"
+Cre09.g402812							"Cre02.g140750.t1.1;g10028.t1;Cre02.g140750.t1.2"		
+Cre09.g388351			"Secretory pathway"			PHC32	"g9535.t1;g9535.t1"	"PHC32;PHC32"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre09.g397068							"g9854.t1;Cre02.g133900.t1.1;g9854.t1;Cre02.g133900.t1.1"		
+Cre09.g388200	GMM:29.2.1.2.2.10	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L10"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	RPL10	"g9539.t1;g9539.t1;g9539.t1;g9539.t1"	"RPL10;RPL10;RPL10;RPL10"	"Cytosolic 60S large ribosomal subunit protein L10;Cytosolic 60S large ribosomal subunit protein L10;Cytosolic 60S large ribosomal subunit protein L10;Cytosolic 60S large ribosomal subunit protein L10"
+Cre09.g393580							"Cre02.g129600.t1.1;g9758.t1"		
+Cre09.g416616			Mitochondrion						
+Cre09.g396300	GMM:19.9	"tetrapyrrole synthesis.protoporphyrin IX oxidase"	Chloroplast			PPX1	"Cre09.g396300.t1.1;g9363.t1;PPOX;g9363.t1;Cre09.g396300.t1.1;PPOX;PPOX;Cre09.g396300.t1.1;g9363.t1;PPOX;g9363.t1;Cre09.g396300.t1.1;g9363.t1;Cre09.g396300.t1.1;PPOX"	"PPX1;PPX1;PPX1;PPX1;PPX1"	"Protoporphyrinogen oxidase, chloroplast precursor (PPO I) [GI:3928794; PMID: 9862501; PMID: 16306143]; Protoporphyrinogen IX oxidase isozyme I (PPX I); similar to Bacillus subtilis HEMY type protoporphyrinogen oxidase; [PMID: 1459957, PMID: 7928957];Protoporphyrinogen oxidase, chloroplast precursor (PPO I) [GI:3928794; PMID: 9862501; PMID: 16306143]; Protoporphyrinogen IX oxidase isozyme I (PPX I); similar to Bacillus subtilis HEMY type protoporphyrinogen oxidase; [PMID: 1459957, PMID: 7928957];Protoporphyrinogen oxidase, chloroplast precursor (PPO I) [GI:3928794; PMID: 9862501; PMID: 16306143]; Protoporphyrinogen IX oxidase isozyme I (PPX I); similar to Bacillus subtilis HEMY type protoporphyrinogen oxidase; [PMID: 1459957, PMID: 7928957];Protoporphyrinogen oxidase, chloroplast precursor (PPO I) [GI:3928794; PMID: 9862501; PMID: 16306143]; Protoporphyrinogen IX oxidase isozyme I (PPX I); similar to Bacillus subtilis HEMY type protoporphyrinogen oxidase; [PMID: 1459957, PMID: 7928957];Protoporphyrinogen oxidase, chloroplast precursor (PPO I) [GI:3928794; PMID: 9862501; PMID: 16306143]; Protoporphyrinogen IX oxidase isozyme I (PPX I); similar to Bacillus subtilis HEMY type protoporphyrinogen oxidase; [PMID: 1459957, PMID: 7928957]"
+Cre09.g392950	GMM:27.1	RNA.processing		"GO:0008173;GO:0006396;GO:0003723"	"RNA methyltransferase activity;RNA processing;RNA binding"	tmg12	"TMG12;g9430.t1;Cre09.g392950.t1.1;g9430.t1;TMG12;Cre09.g392950.t1.1"		
+Cre09.g409300			"Secretory pathway"				"g10143.t1;Cre09.g409300.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre09.g391504									
+Cre09.g389900				GO:0005634	nucleus	HRP4	"g9498.t1;HRP4;HRP4;g9498.t1;HRP4;g9498.t1"		"partial sequence similar to hydroxyproline-rich glycoprotein family in Arabidopsis thaliana; Genbank entry NM_113865;partial sequence similar to hydroxyproline-rich glycoprotein family in Arabidopsis thaliana; Genbank entry NM_113865;partial sequence similar to hydroxyproline-rich glycoprotein family in Arabidopsis thaliana; Genbank entry NM_113865"
+Cre09.g405000			Chloroplast						
+Cre09.g400250			"Secretory pathway"				"g9264.t1;g9264.t1"		
+Cre09.g408825	GMM:29.5.3	"protein.degradation.cysteine protease"	Chloroplast	GO:0016787	"hydrolase activity"				
+Cre09.g411500	"GMM:23.2;GMM:23.1.2"	"nucleotide metabolism.degradation;nucleotide metabolism.synthesis.purine"	"Secretory pathway"			URN4	"g10188.t3;URN4;g10188.t3;URN4;g10188.t3;URN4"		
+Cre09.g390541	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"					"Cre02.g125950.t1.1;Cre02.g125950.t1.2;g9671.t1"		
+Cre09.g391370							"g9465.t1;Cre09.g391370.t1.1;g9465.t1;Cre09.g391370.t1.1"		
+Cre09.g391763	GMM:29.5	protein.degradation	"Secretory pathway"						
+Cre09.g395880			Chloroplast				"g9821.t1;Cre02.g132500.t1.1"	OPR11	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre09.g398141	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"		"GO:0015074;GO:0005515"	"DNA integration;protein binding"		"g9883.t1;Cre02.g135300.t1.1;Cre02.g135300.t1.2"		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g410200			"Secretory pathway"				"g10163.t1;Cre09.g410200.t1.1"		
+Cre09.g397623			"Secretory pathway"				"Cre02.g134600.t1.2;Cre02.g134600.t1.1;g9869.t1"		
+Cre09.g391430			Mitochondrion				"Cre02.g126850.t1.2;Cre02.g126850.t1.1;g9695.t1"		
+Cre09.g399551							"Cre09.g399500.t1.2;g9285.t1"		
+Cre09.g388245							"Cre02.g122900.t1.1;Cre02.g122900.t1.2;g9608.t1"		
+Cre09.g393550	"GMM:30.6;GMM:3.6"	"signalling.MAP kinases;minor CHO metabolism.callose"		GO:0008270	"zinc ion binding"		g9418.t1		
+Cre09.g408464				"GO:0055114;GO:0031418;GO:0016706;GO:0016491;GO:0005506"	"oxidation-reduction process;L-ascorbic acid binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors;oxidoreductase activity;iron ion binding"		g10123.t1		
+Cre09.g398882	GMM:31.6.1.3.1.2	"cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.cytoplasmic dynein 1b subunits"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	DLI1	"D1bLIC;Cre02.g135900.t1.1;g9904.t1;Cre02.g135900.t1.2"	DLI1	
+Cre09.g394473			Chloroplast	GO:2001070	"starch binding"	LCI9	"LCI9;g9783.t1;Cre02.g130700.t1.1;LCI9;g9783.t1;Cre02.g130700.t1.1;g9783.t1;LCI9;Cre02.g130700.t1.1;Cre02.g130700.t1.1;LCI9;g9783.t1;g9783.t1;Cre02.g130700.t1.1;LCI9;Cre02.g130700.t1.1;g9783.t1;LCI9;Cre02.g130700.t1.1;LCI9;g9783.t1;LCI9;g9783.t1;Cre02.g130700.t1.1;g9783.t1;LCI9;Cre02.g130700.t1.1;g9783.t1;LCI9;Cre02.g130700.t1.1"	"LCI9;LCI9;LCI9;LCI9;LCI9;LCI9;LCI9;LCI9;LCI9;LCI9"	"Low-CO2 inducible protein, containing starch-binding domain of CBM_20 (pfam00686) found in glycoside hydrolases. Because Chlamydomonas cells develop pyrenoids under low-CO2 conditions, which are surrounded by a typical starch sheath, Lci9 may function in;Low-CO2 inducible protein, containing starch-binding domain of CBM_20 (pfam00686) found in glycoside hydrolases. Because Chlamydomonas cells develop pyrenoids under low-CO2 conditions, which are surrounded by a typical starch sheath, Lci9 may function in;Low-CO2 inducible protein, containing starch-binding domain of CBM_20 (pfam00686) found in glycoside hydrolases. Because Chlamydomonas cells develop pyrenoids under low-CO2 conditions, which are surrounded by a typical starch sheath, Lci9 may function in;Low-CO2 inducible protein, containing starch-binding domain of CBM_20 (pfam00686) found in glycoside hydrolases. Because Chlamydomonas cells develop pyrenoids under low-CO2 conditions, which are surrounded by a typical starch sheath, Lci9 may function in;Low-CO2 inducible protein, containing starch-binding domain of CBM_20 (pfam00686) found in glycoside hydrolases. Because Chlamydomonas cells develop pyrenoids under low-CO2 conditions, which are surrounded by a typical starch sheath, Lci9 may function in;Low-CO2 inducible protein, containing starch-binding domain of CBM_20 (pfam00686) found in glycoside hydrolases. Because Chlamydomonas cells develop pyrenoids under low-CO2 conditions, which are surrounded by a typical starch sheath, Lci9 may function in;Low-CO2 inducible protein, containing starch-binding domain of CBM_20 (pfam00686) found in glycoside hydrolases. Because Chlamydomonas cells develop pyrenoids under low-CO2 conditions, which are surrounded by a typical starch sheath, Lci9 may function in;Low-CO2 inducible protein, containing starch-binding domain of CBM_20 (pfam00686) found in glycoside hydrolases. Because Chlamydomonas cells develop pyrenoids under low-CO2 conditions, which are surrounded by a typical starch sheath, Lci9 may function in;Low-CO2 inducible protein, containing starch-binding domain of CBM_20 (pfam00686) found in glycoside hydrolases. Because Chlamydomonas cells develop pyrenoids under low-CO2 conditions, which are surrounded by a typical starch sheath, Lci9 may function in;Low-CO2 inducible protein, containing starch-binding domain of CBM_20 (pfam00686) found in glycoside hydrolases. Because Chlamydomonas cells develop pyrenoids under low-CO2 conditions, which are surrounded by a typical starch sheath, Lci9 may function in"
+Cre09.g415650			Chloroplast			FAP351	"Cre09.g415650.t1.1;g10290.t2;g10290.t2;Cre09.g415650.t1.1;g10290.t2;Cre09.g415650.t1.1;g10290.t2;Cre09.g415650.t1.1;g10290.t2;Cre09.g415650.t1.1"	"FAP351;FAP351;FAP351;FAP351;FAP351"	"with Sperm-tail PG-rich repeat;with Sperm-tail PG-rich repeat;with Sperm-tail PG-rich repeat;with Sperm-tail PG-rich repeat;with Sperm-tail PG-rich repeat"
+Cre09.g395176			Chloroplast						
+Cre09.g398051			Mitochondrion				"g9322.t1;g9322.t1;g9322.t1;g9322.t1;g9322.t1"		
+Cre09.g390200	GMM:23.4.99	"nucleotide metabolism.phosphotransfer and pyrophosphatases.misc"	Chloroplast	"GO:0006796;GO:0005737;GO:0004427;GO:0000287"	"phosphate-containing compound metabolic process;cytoplasm;inorganic diphosphatase activity;magnesium ion binding"		"g9491.t1;IPY2"		
+Cre09.g401300				"GO:0008270;GO:0005685;GO:0000398;GO:0000387"	"zinc ion binding;U1 snRNP;mRNA splicing, via spliceosome;spliceosomal snRNP assembly"		"g9239.t1;Cre09.g401300.t1.1;g9239.t1;Cre09.g401300.t1.1;g9239.t1;Cre09.g401300.t1.1;Cre09.g401300.t1.1;g9239.t1"		
+Cre09.g387200	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG28	"CYG28;g9561.t1;CYG28;g9561.t1"		"similar to guanylyl cyclase beta-3 [Apis mellifera];similar to guanylyl cyclase beta-3 [Apis mellifera]"
+Cre09.g388986				GO:0003676	"nucleic acid binding"		"Cre02.g123900.t1.1;g9629.t1;g9629.t1;Cre02.g123900.t1.1"		
+Cre09.g407550							"g10104.t1;Cre09.g407550.t1.1"		
+Cre09.g386739			Chloroplast						
+Cre09.g391550									
+Cre09.g396200			"Secretory pathway"			CSV4	"g9365.t1;Cre09.g396200.t1.1;CSV4;g9365.t1;CSV4;Cre09.g396200.t1.1;CSV4;g9365.t1;Cre09.g396200.t1.1;Cre09.g396200.t1.1;g9365.t1;CSV4"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre09.g391901							"Cre09.g391850.t1.3;g9454.t1"		
+Cre09.g387550						CGL142	g9553.t1	CGL142	
+Cre09.g402400							"g9214.t1;g9214.t1"		
+Cre09.g410700	GMM:8.2.9	"TCA / organic transformation.other organic acid transformations.cyt MDH"	Chloroplast	"GO:0055114;GO:0016616;GO:0016615;GO:0016491;GO:0006108"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;malate dehydrogenase activity;oxidoreductase activity;malate metabolic process"	MDN5	"Cre09.g410700.t1.1;MDH5;MDN5;g10173.t1;MDN5;g10173.t1;Cre09.g410700.t1.1;MDH5;Cre09.g410700.t1.1;MDH5;MDN5;g10173.t1"	"MDH5;MDH5;MDH5"	"Malate dehydrogenase [NADP], possibly plastidic (NADP-MDH); GI:1969739; Found in the flagellar proteome;Malate dehydrogenase [NADP], possibly plastidic (NADP-MDH); GI:1969739; Found in the flagellar proteome;Malate dehydrogenase [NADP], possibly plastidic (NADP-MDH); GI:1969739; Found in the flagellar proteome"
+Cre09.g414800	"GMM:29.5.5;GMM:17.3.2.99"	"protein.degradation.serine protease;hormone metabolism.brassinosteroid.signal transduction.other"	"Secretory pathway"	"GO:0006508;GO:0004185"	"proteolysis;serine-type carboxypeptidase activity"		"g10271.t2;CPY"		
+Cre09.g388578			Chloroplast				"g9617.t1;Cre02.g123350.t1.2;Cre02.g123350.t1.1"		
+Cre09.g394350	GMM:29.3.1	protein.targeting.nucleus		"GO:0017056;GO:0006913;GO:0005643"	"structural constituent of nuclear pore;nucleocytoplasmic transport;nuclear pore"	NUP155	"Cre09.g394350.t1.1;g9402.t1;g9402.t1;Cre09.g394350.t1.1"	"NUP155;NUP155"	"155 kDa Nuclear Pore Complex Protein;155 kDa Nuclear Pore Complex Protein"
+Cre09.g403550	"GMM:26.7;GMM:17.5.1;GMM:16.8.4;GMM:16.4.1"	"misc.oxidases - copper, flavone etc;hormone metabolism.ethylene.synthesis-degradation;secondary metabolism.flavonoids.flavonols;secondary metabolism.N misc.alkaloid-like"		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	FVS1	"g9191.t2;Cre09.g403550.t1.1;FVS1;g9191.t2;FVS1;Cre09.g403550.t1.1"		"Oxoglutarate/iron-dependent oxygenase;Oxoglutarate/iron-dependent oxygenase"
+Cre09.g401219	GMM:31.1	cell.organisation	Mitochondrion	GO:0005515	"protein binding"		"g9985.t1;Cre02.g138850.t1.1;Cre02.g138850.t1.2"		
+Cre09.g401330	GMM:12.2.99	"N-metabolism.ammonia metabolism.unspecified"					"g9988.t1;Cre02.g139000.t1.1;Cre02.g139000.t1.2"		
+Cre09.g411100	GMM:29.2.1.2.1.10	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S10"				RPS10	"g10180.t1;Cre09.g411100.t1.1;Cre09.g411100.t1.1;g10180.t1;Cre09.g411100.t1.1;g10180.t1;Cre09.g411100.t1.1;g10180.t1;g10180.t1;Cre09.g411100.t1.1;g10180.t1;Cre09.g411100.t1.1;g10180.t1;Cre09.g411100.t1.1;g10180.t1;Cre09.g411100.t1.1;Cre09.g411100.t1.1;g10180.t1;Cre09.g411100.t1.1;g10180.t1;g10180.t1;Cre09.g411100.t1.1;g10180.t1;Cre09.g411100.t1.1;g10180.t1;Cre09.g411100.t1.1"	"RPS10;RPS10;RPS10;RPS10;RPS10;RPS10;RPS10;RPS10;RPS10;RPS10;RPS10;RPS10;RPS10"	"Cytosolic 40S small ribosomal subunit protein S10;Cytosolic 40S small ribosomal subunit protein S10;Cytosolic 40S small ribosomal subunit protein S10;Cytosolic 40S small ribosomal subunit protein S10;Cytosolic 40S small ribosomal subunit protein S10;Cytosolic 40S small ribosomal subunit protein S10;Cytosolic 40S small ribosomal subunit protein S10;Cytosolic 40S small ribosomal subunit protein S10;Cytosolic 40S small ribosomal subunit protein S10;Cytosolic 40S small ribosomal subunit protein S10;Cytosolic 40S small ribosomal subunit protein S10;Cytosolic 40S small ribosomal subunit protein S10;Cytosolic 40S small ribosomal subunit protein S10"
+Cre09.g392850							"g9432.t1;g9432.t1;g9432.t1"		
+Cre09.g399950			"Secretory pathway"				"Cre09.g399950.t1.1;g9270.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g403182	"GMM:28.1;GMM:27.3.52"	"DNA.synthesis/chromatin structure;RNA.regulation of transcription.global transcription factor group"		"GO:0032784;GO:0006357"	"regulation of DNA-templated transcription, elongation;regulation of transcription from RNA polymerase II promoter"		"g10039.t1;g10039.t1;g10039.t1;g10039.t1"	"SPT6;SPT6;SPT6;SPT6"	"ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196)"
+Cre09.g396326			Mitochondrion	GO:0005515	"protein binding"		"Cre02.g132950.t1.1;g9833.t1;Cre02.g132950.t1.1;g9833.t1"		
+Cre09.g406350	GMM:29.3.99	protein.targeting.unknown	"Secretory pathway"				g10073.t1		
+Cre09.g392300			"Secretory pathway"	GO:0008080	"N-acetyltransferase activity"		"NAT22;g9445.t1;NAT22;g9445.t1;g9445.t1;NAT22"		"Related to GCN5;Related to GCN5;Related to GCN5"
+Cre09.g403200						FAP198	"Cre09.g403200.t1.1;g9198.t1;g9198.t1;Cre09.g403200.t1.1"	"FAP198;FAP198"	"Conserved uncharacterized Flagellar Associated Protein; cyt-b5 -like domain in the N terminal part of the protein; found in the flagellar proteome; identified in the flagellar basal body proteome [PMID: 15137946]; upregulated by deflagellation;Conserved uncharacterized Flagellar Associated Protein; cyt-b5 -like domain in the N terminal part of the protein; found in the flagellar proteome; identified in the flagellar basal body proteome [PMID: 15137946]; upregulated by deflagellation"
+Cre09.g397702			Chloroplast				"Cre09.g397600.t1.3;g9330.t1;g9330.t1;Cre09.g397600.t1.3;g9330.t1;Cre09.g397600.t1.3;Cre09.g397600.t1.3;g9330.t1;g9330.t1;Cre09.g397600.t1.3;Cre09.g397600.t1.3;g9330.t1;g9330.t1;Cre09.g397600.t1.3;Cre09.g397600.t1.3;g9330.t1;g9330.t1;Cre09.g397600.t1.3;g9330.t1;Cre09.g397600.t1.3;g9330.t1;Cre09.g397600.t1.3;g9330.t1;Cre09.g397600.t1.3"		
+Cre09.g411900	"GMM:25.1;GMM:1.2.5"	"C1-metabolism.glycine hydroxymethyltransferase;PS.photorespiration.serine hydroxymethyltransferase"	Chloroplast	GO:0016740	"transferase activity"	SHMT3	"g10198.t1;SHMT3;g10198.t1;SHMT3;g10198.t1;SHMT3"	"SHMT3;SHMT3;SHMT3"	"Glycine/serine hydroxymethyltransferase-like protein (by homology to Arabidopsis gene AT4G32520);Glycine/serine hydroxymethyltransferase-like protein (by homology to Arabidopsis gene AT4G32520);Glycine/serine hydroxymethyltransferase-like protein (by homology to Arabidopsis gene AT4G32520)"
+Cre09.g398623									
+Cre09.g399600							"Cre09.g399600.t1.1;g9282.t1"		
+Cre09.g412676	GMM:29.4	"protein.postranslational modification"							
+Cre09.g388319							"g9610.t1;Cre02.g123000.t1.1"		
+Cre09.g402051	GMM:34.18	"transport.unspecified anions"		"GO:0055085;GO:0016020;GO:0006821;GO:0005247"	"transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity"	CLV4	"g9224.t1;CLV4"		
+Cre09.g397550			"Secretory pathway"				"g9331.t1;g9331.t1;g9331.t1"		
+Cre09.g392060	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	ZIP4	"ZIP4;CrZIP11;g9714.t1;Cre02.g127650.t1.1"	ZIP4	"Similarity to ZIP GufA-like subfamily"
+Cre09.g396694						CSB35			
+Cre09.g412850			Mitochondrion				g10221.t1		
+Cre09.g389356	"GMM:34.10;GMM:34.1"	"transport.nucleotides;transport.p- and v-ATPases"	Chloroplast	"GO:0055085;GO:0016020;GO:0005215"	"transmembrane transport;membrane;transporter activity"		"Cre02.g124350.t1.1;g9639.t1;Cre02.g124350.t1.2;g9639.t1;Cre02.g124350.t1.2;Cre02.g124350.t1.1"		
+Cre09.g386949			"Secretory pathway"				"g9573.t1;Cre02.g121250.t1.1"		
+Cre09.g400775	"GMM:18.7;GMM:16.5"	"Co-factor and vitamine metabolism.iron-sulphur clusters;secondary metabolism.sulfur-containing"				ISCA1	"g9972.t1;Cre02.g138200.t1.1;ISC1;g9972.t1;Cre02.g138200.t1.1;ISC1"	"ISCA1;ISCA1"	"Carrier protein, involved in Fe-S cluster trafficking; SufA/IscA homolog; very distantly related to ISCA2;Carrier protein, involved in Fe-S cluster trafficking; SufA/IscA homolog; very distantly related to ISCA2"
+Cre09.g412550			"Secretory pathway"				g10213.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g386476			"Secretory pathway"						
+Cre09.g413600			"Secretory pathway"				g10246.t1		
+Cre09.g400219							g9957.t1		
+Cre09.g389171							"Cre02.g124133.t1.1;g9634.t1;Cre02.g124133.t1.2"		
+Cre09.g403700							g9187.t1		
+Cre09.g393321			Mitochondrion	GO:0008146	"sulfotransferase activity"	CSR12	"g9751.t1;CSR12"		
+Cre09.g401923							"Cre02.g139700.t1.1;g10004.t1;Cre02.g139700.t1.2"	POB6	"Found in basal body proteome"
+Cre09.g398950	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB37	"g9297.t1;CSB37;Cre09.g398950.t1.1;TNP24"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre09.g389023			Mitochondrion				"g9630.t1;Cre02.g123950.t1.1"		
+Cre09.g402886									
+Cre09.g398450							g9312.t1		
+Cre09.g414350			"Secretory pathway"	GO:0005515	"protein binding"		"g10261.t1;g10261.t1;g10261.t1;g10261.t1;g10261.t1;g10261.t1"		
+Cre09.g390550			"Secretory pathway;Chloroplast"						
+Cre09.g398200	GMM:26.16	misc.myrosinases-lectin-jacalin		GO:0005515	"protein binding"		"Cre09.g398200.t1.1;g9318.t2;g9318.t2;Cre09.g398200.t1.1"		
+Cre09.g411666									
+Cre09.g400800	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre09.g400800.t1.1;g9252.t1"		
+Cre09.g415100	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"				ELG25	"g10277.t1;ELG33;ELG25;ELG33;ELG25;g10277.t1"		"belongs to the family of exostosin-like glycosyltransferases;belongs to the family of exostosin-like glycosyltransferases"
+Cre09.g414250	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"	"GO:0016758;GO:0005789"	"transferase activity, transferring hexosyl groups;endoplasmic reticulum membrane"	ALG8	"GTR20;g10259.t1;GTR20;g10259.t1;GTR20;g10259.t1"	"ALG8;ALG8;ALG8"	"Likely adds glucose to Man 8 on N-glycans; Orthologous to AT2G44660 in Arabidopsis thaliana;Likely adds glucose to Man 8 on N-glycans; Orthologous to AT2G44660 in Arabidopsis thaliana;Likely adds glucose to Man 8 on N-glycans; Orthologous to AT2G44660 in Arabidopsis thaliana"
+Cre09.g386734			"Secretory pathway"	"GO:0016757;GO:0006486"	"transferase activity, transferring glycosyl groups;protein glycosylation"		"Cre29.g778150.t1.1;Cre29.g778150.t1.2;g9116.t1"		
+Cre09.g406050	GMM:23.1.1.10	"nucleotide metabolism.synthesis.pyrimidine.CTP synthetase"		"GO:0006221;GO:0003883"	"pyrimidine nucleotide biosynthetic process;CTP synthase activity"	PYR7	"Cre09.g406050.t1.1;PYR7;DIV64;g10067.t1;g10067.t1;PYR7;DIV64;Cre09.g406050.t1.1;g10067.t1;DIV64;PYR7;Cre09.g406050.t1.1;Cre09.g406050.t1.1;g10067.t1;DIV64;PYR7;Cre09.g406050.t1.1;DIV64;PYR7;g10067.t1;Cre09.g406050.t1.1;DIV64;g10067.t1;PYR7;DIV64;Cre09.g406050.t1.1;g10067.t1;PYR7;PYR7;g10067.t1;DIV64;Cre09.g406050.t1.1;DIV64;PYR7;g10067.t1;Cre09.g406050.t1.1"	"PYR7;PYR7;PYR7;PYR7;PYR7;PYR7;PYR7;PYR7;PYR7"	"CTP synthase (UTP-ammonia lyase); CTPS or PYRG; URA7 and URA8 in yeast; contains a stretch of 9 His residues. ts lethal mutations isolated (PMID 25336509);CTP synthase (UTP-ammonia lyase); CTPS or PYRG; URA7 and URA8 in yeast; contains a stretch of 9 His residues. ts lethal mutations isolated (PMID 25336509);CTP synthase (UTP-ammonia lyase); CTPS or PYRG; URA7 and URA8 in yeast; contains a stretch of 9 His residues. ts lethal mutations isolated (PMID 25336509);CTP synthase (UTP-ammonia lyase); CTPS or PYRG; URA7 and URA8 in yeast; contains a stretch of 9 His residues. ts lethal mutations isolated (PMID 25336509);CTP synthase (UTP-ammonia lyase); CTPS or PYRG; URA7 and URA8 in yeast; contains a stretch of 9 His residues. ts lethal mutations isolated (PMID 25336509);CTP synthase (UTP-ammonia lyase); CTPS or PYRG; URA7 and URA8 in yeast; contains a stretch of 9 His residues. ts lethal mutations isolated (PMID 25336509);CTP synthase (UTP-ammonia lyase); CTPS or PYRG; URA7 and URA8 in yeast; contains a stretch of 9 His residues. ts lethal mutations isolated (PMID 25336509);CTP synthase (UTP-ammonia lyase); CTPS or PYRG; URA7 and URA8 in yeast; contains a stretch of 9 His residues. ts lethal mutations isolated (PMID 25336509);CTP synthase (UTP-ammonia lyase); CTPS or PYRG; URA7 and URA8 in yeast; contains a stretch of 9 His residues. ts lethal mutations isolated (PMID 25336509)"
+Cre09.g404351				GO:0005515	"protein binding"		"g9173.t1;Cre09.g404300.t1.3"		
+Cre09.g392505			Mitochondrion	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g9726.t1;Cre02.g128250.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre09.g392319			"Secretory pathway"			VSP6	"Cre02.g128000.t1.2;g9721.t1;VSP6;Cre02.g128000.t1.1;Cre02.g128000.t1.1;g9721.t1;Cre02.g128000.t1.2;VSP6;g9721.t1;Cre02.g128000.t1.1;VSP6;Cre02.g128000.t1.2;Cre02.g128000.t1.1;g9721.t1;Cre02.g128000.t1.2;VSP6"	"VSP6;VSP6;VSP6;VSP6"	"Hydroxyproline rich glycoprotein Vsp6; (SP)n-repeats, extracellular matrix protein (cell wall protein); resembles VSP4 [PMID: 7689882, Genbank AF382191];Hydroxyproline rich glycoprotein Vsp6; (SP)n-repeats, extracellular matrix protein (cell wall protein); resembles VSP4 [PMID: 7689882, Genbank AF382191];Hydroxyproline rich glycoprotein Vsp6; (SP)n-repeats, extracellular matrix protein (cell wall protein); resembles VSP4 [PMID: 7689882, Genbank AF382191];Hydroxyproline rich glycoprotein Vsp6; (SP)n-repeats, extracellular matrix protein (cell wall protein); resembles VSP4 [PMID: 7689882, Genbank AF382191]"
+Cre09.g401738				GO:0016791	"phosphatase activity"		"g9999.t1;Cre02.g139550.t1.2;Cre02.g139550.t1.1;g9999.t1;Cre02.g139550.t1.2;Cre02.g139550.t1.1"		
+Cre09.g391023	GMM:29.4	"protein.postranslational modification"		GO:0016787	"hydrolase activity"		"Cre02.g126400.t1.2;g9684.t1;Cre02.g126400.t1.1;Cre02.g126400.t1.2;g9684.t1;Cre02.g126400.t1.1;Cre02.g126400.t1.1;g9684.t1;Cre02.g126400.t1.2;Cre02.g126400.t1.1;g9684.t1;Cre02.g126400.t1.2;Cre02.g126400.t1.1;g9684.t1;Cre02.g126400.t1.2"		
+Cre09.g412250							"g10207.t1;g10207.t1"		
+Cre09.g417250	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"				ELG27	"ELG27;g10329.t1;ELG27;g10329.t1;ELG27;g10329.t1;g10329.t1;ELG27;g10329.t1;ELG27;g10329.t1;ELG27"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre09.g406750			"Secretory pathway"	"GO:0016758;GO:0008152"	"transferase activity, transferring hexosyl groups;metabolic process"				
+Cre09.g396065	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion			ALK5	"g9826.t1;ALK5;Cre02.g132650.t1.1;ALK5;g9826.t1;Cre02.g132650.t1.1"		
+Cre09.g402900			Mitochondrion				g9204.t1		
+Cre09.g389503									
+Cre09.g394028			"Secretory pathway"				"Cre02.g130100.t1.1;g9770.t1"		
+Cre09.g397100							"g9340.t1;Cre09.g397100.t1.1;Cre09.g397100.t1.1;g9340.t1"		
+Cre09.g401000			Mitochondrion			SNE3	"g9247.t1;SNE3"		"NAD-dependent epimerase/dehydratase (probably a UDP-glucose 4-epimerase); belongs to a family of proteins which utilise NAD as a cofactor and use nucleotide-sugar substrates for a variety of chemical reactions"
+Cre09.g399910			Mitochondrion				"g9275.t1;Cre62.g792650.t1.1;g9275.t1;Cre62.g792650.t1.1;g9275.t1;Cre62.g792650.t1.1"		
+Cre09.g390393							g9667.t2		
+Cre09.g391650	GMM:21.99	redox.misc	Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	HCP4	"g9459.t1;HCP4;Cre09.g391650.t1.1;Cre09.g391650.t1.1;HCP4;g9459.t1;g9459.t1;HCP4;Cre09.g391650.t1.1;g9459.t1;Cre09.g391650.t1.1;HCP4;Cre09.g391650.t1.1;HCP4;g9459.t1;g9459.t1;Cre09.g391650.t1.1;HCP4;g9459.t1;HCP4;Cre09.g391650.t1.1;g9459.t1;HCP4;Cre09.g391650.t1.1;g9459.t1;HCP4;Cre09.g391650.t1.1"	"HCP4;HCP4;HCP4;HCP4;HCP4;HCP4;HCP4;HCP4;HCP4"	"Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family"
+Cre09.g415400			"Secretory pathway"	GO:0006890	"retrograde vesicle-mediated transport, Golgi to ER"		"g10285.t1;g10285.t1;g10285.t1;g10285.t1;g10285.t1;g10285.t1;g10285.t1;g10285.t1;g10285.t1;g10285.t1;g10285.t1;g10285.t1"		
+Cre09.g393876	GMM:27.1	RNA.processing	Mitochondrion	"GO:0008173;GO:0006396;GO:0003723"	"RNA methyltransferase activity;RNA processing;RNA binding"		"g9766.t1;Cre02.g129900.t1.1;g9766.t1;Cre02.g129900.t1.1;g9766.t1;Cre02.g129900.t1.1"		
+Cre09.g396735	GMM:29.2.2	"protein.synthesis.ribosome biogenesis"					"Cre02.g133450.t1.1;Cre02.g133450.t1.2;g9844.t1;Cre02.g133450.t1.2;g9844.t1;Cre02.g133450.t1.1"		
+Cre09.g404850							"g9160.t1;g9160.t1"		
+Cre09.g401301									
+Cre09.g389615	GMM:27.1	RNA.processing	Mitochondrion				"Cre02.g124700.t1.2;Cre02.g124700.t1.1;g9646.t1;g9646.t1;Cre02.g124700.t1.2;Cre02.g124700.t1.1;Cre02.g124700.t1.1;Cre02.g124700.t1.2;g9646.t1"	"MAC1;MAC1;MAC1"	"repressed in low iron and differentially phosphorylated in response to iron availability;repressed in low iron and differentially phosphorylated in response to iron availability;repressed in low iron and differentially phosphorylated in response to iron availability"
+Cre09.g389851			Mitochondrion				"g9501.t1;g9501.t1;g9501.t1;g9501.t1"		
+Cre09.g395800							"g9373.t1;Cre09.g395800.t1.1;g9373.t1;Cre09.g395800.t1.1"		
+Cre09.g395806	GMM:17.1.1.1.1	"hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase"	Chloroplast	GO:0071949	"FAD binding"		"Cre02.g132400.t1.1;Cre02.g132400.t1.2;g9819.t1;g9819.t1;Cre02.g132400.t1.1;Cre02.g132400.t1.2"		
+Cre09.g408051			Mitochondrion	"GO:0006355;GO:0005739;GO:0003690"	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"		"Cre09.g408050.t1.3;g10114.t1"		
+Cre09.g392400	GMM:29.3.4.2	"protein.targeting.secretory pathway.golgi"				SEC24C	g9443.t1	SEC24C	"Hypothetical Conserved Protein. Similar to SEC24 component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex."
+Cre09.g390875							"g9680.t1;Cre02.g126200.t1.1;g9680.t1;Cre02.g126200.t1.1;Cre02.g126200.t1.1;g9680.t1;Cre02.g126200.t1.1;g9680.t1"		
+Cre09.g401108			Mitochondrion				"Cre02.g138700.t1.1;Cre02.g138700.t1.2;g9982.t1"		
+Cre09.g399960	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion						
+Cre09.g389200						UMM8	"UMM8;g9514.t1;UMM8;g9514.t1;g9514.t1;UMM8"		"UbiE/COQ5 methyltransferase family; possible phosphoethanolamine N-methyltransferase;UbiE/COQ5 methyltransferase family; possible phosphoethanolamine N-methyltransferase;UbiE/COQ5 methyltransferase family; possible phosphoethanolamine N-methyltransferase"
+Cre09.g397549							"g9867.t1;g9867.t1"		
+Cre09.g386650	"GMM:34.9;GMM:34.8;GMM:34.14;GMM:2.1.2.5"	"transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane;transport.unspecified cations;major CHO metabolism.synthesis.starch.transporter"				ANT1	"CRANT;g9110.t2;ANT1"	ANT1	"Adenine Nucleotide Translocator 1, mitochondrial; ADP,ATP carrier protein (ADP/ATP translocase) (Adenine nucleotide translocator) [gi:113465, PMID: 8455552]"
+Cre09.g388801							"g9624.t1;Cre02.g123700.t1.1;Cre02.g123700.t1.1;g9624.t1;g9624.t1;Cre02.g123700.t1.1;g9624.t1;Cre02.g123700.t1.1;Cre02.g123700.t1.1;g9624.t1"		
+Cre09.g400150			Chloroplast				g9266.t1		
+Cre09.g400849	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre02.g138300.t1.1;g9974.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g398401			"Secretory pathway"				"Cre02.g135550.t1.2;Cre02.g135550.t1.1;g9891.t1"		
+Cre09.g398289	GMM:33.99	development.unspecified	Chloroplast	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"		"Cre02.g135450.t1.1;g9888.t1;Cre02.g135450.t1.2;GPA3"	LPAAT1	
+Cre09.g394843			Chloroplast	"GO:0008270;GO:0005634"	"zinc ion binding;nucleus"		"Cre02.g131200.t1.2;g9793.t1;Cre02.g131200.t1.1"		
+Cre09.g400550			Chloroplast			NOA1	"NOA1;Cre09.g400550.t1.1;g9257.t1"		"NO-associated; carries a GTPase domain, homologue in Arabidopsis appears necessary for synthesis of nitric oxide, but does not carry out the reaction (PMID: 17030145)"
+Cre09.g410400							"g10168.t1;g10168.t1"		
+Cre09.g399215						FAP341	"g9913.t1;Cre02.g136350.t1.1"	FAP341	
+Cre09.g400478	GMM:30.4.1	"signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase"		"GO:0046488;GO:0016307"	"phosphatidylinositol metabolic process;phosphatidylinositol phosphate kinase activity"	DIV31	"Cre02.g137800.t1.1;Cre02.g137800.t1.2;g9964.t1"	DIV31	"ts-lethal mutants block initiation of DNA replication (PMID 25336509)"
+Cre09.g397701									
+Cre09.g391000			"Secretory pathway"				"GT90F14;GT90-14;g9472.t1;g9472.t1;GT90F14;GT90-14"		
+Cre09.g402293			"Secretory pathway"						
+Cre09.g391208			Mitochondrion			PSRP4	"Cre02.g126600.t1.1;bTHXc;PSRP4;bTHXm;Cre02.g126600.t1.2;THXM1;g9689.t1"	PSRP4	"identified in the mitoribosome, but not in the plastid ribosome; similar to plastid PSRP4 and bacterial Thx ribosomal proteins; could be dual targeted in Chlamydomonas"
+Cre09.g399552	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"				LCR1	"Cre02.g136800.t1.1;Cre02.g136800.t1.2;LCR1;g9922.t1;Cre02.g136800.t1.1;Cre02.g136800.t1.2;LCR1;g9922.t1;Cre02.g136800.t1.2;Cre02.g136800.t1.1;g9922.t1;LCR1;Cre02.g136800.t1.2;Cre02.g136800.t1.1;LCR1;g9922.t1"	"LCR1;LCR1;LCR1;LCR1"	"Myb-DNA binding transcriptional factor induced under low CO2 stress condition [PMID: 15155888]; regulates CO2-responsive genes, Cah1, Lci1, and Lci6; regulated by CCM1 [PMID: 15235119];Myb-DNA binding transcriptional factor induced under low CO2 stress condition [PMID: 15155888]; regulates CO2-responsive genes, Cah1, Lci1, and Lci6; regulated by CCM1 [PMID: 15235119];Myb-DNA binding transcriptional factor induced under low CO2 stress condition [PMID: 15155888]; regulates CO2-responsive genes, Cah1, Lci1, and Lci6; regulated by CCM1 [PMID: 15235119];Myb-DNA binding transcriptional factor induced under low CO2 stress condition [PMID: 15155888]; regulates CO2-responsive genes, Cah1, Lci1, and Lci6; regulated by CCM1 [PMID: 15235119]"
+Cre09.g386838			Chloroplast						
+Cre09.g386752			Mitochondrion						
+Cre09.g402738			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"				
+Cre09.g405600				GO:0005515	"protein binding"	SFT1	"Cre09.g405600.t1.1;SFT1;g10057.t1;SFT1;g10057.t1;Cre09.g405600.t1.1"	"SFT1;SFT1"	"Expressed protein. Similar to SFT1-like Qc-SNAREs found in animals, fungi and plants involved in intra-Golgi vesicle transport.;Expressed protein. Similar to SFT1-like Qc-SNAREs found in animals, fungi and plants involved in intra-Golgi vesicle transport."
+Cre09.g395050			Chloroplast						
+Cre09.g393062	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g9744.t1;Cre02.g128900.t1.1;Cre02.g128900.t1.1;g9744.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g396475	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"				"g9837.t1;Cre02.g133131.t1.1;Cre02.g133131.t1.1;g9837.t1;Cre02.g133131.t1.1;g9837.t1;Cre02.g133131.t1.1;g9837.t1"		
+Cre09.g403404			Mitochondrion						
+Cre09.g416300			"Secretory pathway"				"g10303.t1;g10303.t1"		
+Cre09.g386759							"Cre29.g778900.t1.1;g9141.t1;Cre29.g778900.t1.2;Cre29.g778900.t1.1;g9141.t1;Cre29.g778900.t1.2"		
+Cre09.g387652							"Cre02.g122150.t1.2;GT90-41;g9592.t1;GT90F41;Cre02.g122150.t1.1"		
+Cre09.g388372	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			RAT2	"Cre09.g388372.t1.1;OPR39;g9533.t1;OPR39;g9533.t1;Cre09.g388372.t1.1"	"RAT2;RAT2"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; stabilizes tscA mRNA to allow psaA trans-splicing; component of psaA trans-splicing subcomplex I;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; stabilizes tscA mRNA to allow psaA trans-splicing; component of psaA trans-splicing subcomplex I"
+Cre09.g391949	GMM:27.1.1	RNA.processing.splicing		GO:0003676	"nucleic acid binding"		"Cre02.g127500.t1.1;g9711.t1;Cre02.g127500.t1.1;g9711.t1;Cre02.g127500.t1.1;g9711.t1"		
+Cre09.g387541							"g9589.t1;Cre02.g122000.t1.1;Cre02.g122000.t1.1;g9589.t1;g9589.t1;Cre02.g122000.t1.1"		
+Cre09.g387615							"g9591.t1;Cre02.g122100.t1.1;Cre02.g122100.t1.1;g9591.t1"		
+Cre09.g394954			Chloroplast				"g9796.t1;Cre02.g131350.t1.1"		
+Cre09.g401960	GMM:26.25	misc.sulfotransferase		GO:0008146	"sulfotransferase activity"		"g10005.t1;Cre02.g139750.t1.1"		
+Cre09.g387875	GMM:23.4.99	"nucleotide metabolism.phosphotransfer and pyrophosphatases.misc"		"GO:0006796;GO:0005737;GO:0004427;GO:0000287"	"phosphate-containing compound metabolic process;cytoplasm;inorganic diphosphatase activity;magnesium ion binding"	IPY3	"g9598.t1;IPY3;Cre02.g122450.t1.1;Cre02.g122450.t1.2"		
+Cre09.g409850							"g10155.t1;Cre09.g409850.t1.1"		
+Cre09.g389986			Mitochondrion				"Cre02.g125200.t2.1;g9656.t2;g9656.t2;Cre02.g125200.t2.1;g9656.t2;Cre02.g125200.t2.1;g9656.t2;Cre02.g125200.t2.1;Cre02.g125200.t2.1;g9656.t2;g9656.t2;Cre02.g125200.t2.1;Cre02.g125200.t2.1;g9656.t2;g9656.t2;Cre02.g125200.t2.1;g9656.t2;Cre02.g125200.t2.1;Cre02.g125200.t2.1;g9656.t2;Cre02.g125200.t2.1;g9656.t2;g9656.t2;Cre02.g125200.t2.1"		
+Cre09.g392504			Chloroplast						
+Cre09.g390430	GMM:32	"micro RNA, natural antisense etc"		GO:0005515	"protein binding"		"g9668.t1;Cre02.g125800.t1.1;g9668.t1;Cre02.g125800.t1.1"		
+Cre09.g404800			"Secretory pathway"				"g9161.t1;g9161.t1"		
+Cre09.g393450	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			FAP233	"g9420.t1;FLA5;FAS10;FLA5;FAS10;g9420.t1;FAS10;g9420.t1;FLA5;g9420.t1;FAS10;FLA5;g9420.t1;FLA5;FAS10;g9420.t1;FLA5;FAS10;g9420.t1;FAS10;FLA5"	"FAP233;FAP233;FAP233;FAP233;FAP233;FAP233;FAP233"	"Flagellar Associated Protein, found in the flagellar proteome as FAP233; Null-allele mutant was isolated [PMID: 29743196]; Identified as Fasciclin-Like Arabinogalactan 5 (FLA5) in [PMID: 31010036];;Flagellar Associated Protein, found in the flagellar proteome as FAP233; Null-allele mutant was isolated [PMID: 29743196]; Identified as Fasciclin-Like Arabinogalactan 5 (FLA5) in [PMID: 31010036];;Flagellar Associated Protein, found in the flagellar proteome as FAP233; Null-allele mutant was isolated [PMID: 29743196]; Identified as Fasciclin-Like Arabinogalactan 5 (FLA5) in [PMID: 31010036];;Flagellar Associated Protein, found in the flagellar proteome as FAP233; Null-allele mutant was isolated [PMID: 29743196]; Identified as Fasciclin-Like Arabinogalactan 5 (FLA5) in [PMID: 31010036];;Flagellar Associated Protein, found in the flagellar proteome as FAP233; Null-allele mutant was isolated [PMID: 29743196]; Identified as Fasciclin-Like Arabinogalactan 5 (FLA5) in [PMID: 31010036];;Flagellar Associated Protein, found in the flagellar proteome as FAP233; Null-allele mutant was isolated [PMID: 29743196]; Identified as Fasciclin-Like Arabinogalactan 5 (FLA5) in [PMID: 31010036];;Flagellar Associated Protein, found in the flagellar proteome as FAP233; Null-allele mutant was isolated [PMID: 29743196]; Identified as Fasciclin-Like Arabinogalactan 5 (FLA5) in [PMID: 31010036];"
+Cre09.g395695	"GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4"	"cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9816.t1;Cre02.g132250.t1.1;Cre02.g132250.t1.1;g9816.t1;Cre02.g132250.t1.1;g9816.t1;g9816.t1;Cre02.g132250.t1.1;g9816.t1;Cre02.g132250.t1.1"		
+Cre09.g399907	"GMM:28.2;GMM:28.1"	"DNA.repair;DNA.synthesis/chromatin structure"	Chloroplast	GO:0005515	"protein binding"		g9272.t1		
+Cre09.g390245							"Cre02.g125550.t1.2;Cre02.g125550.t1.1;g9663.t1;Cre02.g125550.t1.2;Cre02.g125550.t1.1;g9663.t1"		
+Cre09.g415950	GMM:29.2.1.1.1.2.6	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L6"	Chloroplast	"GO:0019843;GO:0006412;GO:0005840;GO:0003735"	"rRNA binding;translation;ribosome;structural constituent of ribosome"	PRPL6	"uL6m;PRPL6;g10296.t1;Cre09.g415950.t1.1"	MRPL6	"Probably dual-targeted to the mitochondrion and chloroplast"
+Cre09.g406950			Chloroplast				g10088.t1		
+Cre09.g414900	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"				ELG41	"ELG33;g10273.t1;ELG41;ELG32;ELG33;ELG32;g10273.t1;ELG41"		"putative terminal arabinosyl transferase on HRGP, GT47 family; null-allele mutant was isolated (PMID 29743196);putative terminal arabinosyl transferase on HRGP, GT47 family; null-allele mutant was isolated (PMID 29743196)"
+Cre09.g405400	GMM:29.6.1	"protein.folding.prefoldin and trigger factor"		"GO:0051082;GO:0016272;GO:0006457"	"unfolded protein binding;prefoldin complex;protein folding"	PFP3	"PFP3;PFD1;Cre09.g405400.t1.1;g10053.t1;Cre09.g405400.t1.1;g10053.t1;PFD1;PFP3"		
+Cre09.g386742									
+Cre09.g402478	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre02.g140250.t1.1;g10019.t1"		
+Cre09.g401550							"g9233.t1;g9233.t1"		
+Cre09.g387100	"GMM:30.1;GMM:3.1"	"signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family"	Chloroplast			CGL12	"CGL12;g9563.t1;g9563.t1;CGL12;g9563.t1;CGL12;CGL12;g9563.t1"	"PTST1;PTST1;PTST1;PTST1"	"Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre09.g387208	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g9580.t1;Cre02.g121600.t1.2;Cre02.g121600.t1.1"		
+Cre09.g402589	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g10022.t1;Cre02.g140400.t1.1;g10022.t1;Cre02.g140400.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g393025									
+Cre09.g404350			"Secretory pathway"				"XPO4;g9172.t1;Cre09.g404350.t1.1"	XPO4	"Homolog of exportin 4, involved in mRNA transport between the nucleus and cytoplasmi"
+Cre09.g412450	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0005515;GO:0000228"	"protein binding;nuclear chromosome"	RAD21	g10211.t1	RAD21	"kleisin, RAD21 homolog; forms with SMC1, SMC3 and SCC3/SA/STAG the cohesin complex that holds siter chromatids together during S phase, allowing repair by homologous recombination"
+Cre09.g396451			"Secretory pathway"			GOX15	g9359.t1	GOX15	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); c"
+Cre09.g401997			"Secretory pathway"	"GO:0055114;GO:0051287;GO:0004616"	"oxidation-reduction process;NAD binding;phosphogluconate dehydrogenase (decarboxylating) activity"		"g10006.t1;g10006.t1"		
+Cre09.g392766				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9733.t4;Cre02.g128600.t1.2;Cre02.g128600.t1.1;Cre02.g128600.t1.2;g9733.t4;Cre02.g128600.t1.1;Cre02.g128600.t1.2;g9733.t4;Cre02.g128600.t1.1;Cre02.g128600.t1.1;Cre02.g128600.t1.2;g9733.t4;Cre02.g128600.t1.1;g9733.t4;Cre02.g128600.t1.2"		
+Cre09.g397700							"g9328.t1;g9328.t1;g9328.t1"		
+Cre09.g387300							g9559.t1		
+Cre09.g394065							"g9771.t2;Cre02.g130150.t2.1;g9771.t2;Cre02.g130150.t2.1"	"FAP414;FAP414"	"Found in the flagellar proteome;Found in the flagellar proteome"
+Cre09.g391356			"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre02.g126800.t1.1;g9693.t2;g9693.t2;Cre02.g126800.t1.1"		
+Cre09.g396750	"GMM:34.16;GMM:31.6.1.10"	"transport.ABC transporters and multidrug resistance systems;cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			CSE18	"g9351.t1;CSE18;CSE18;g9351.t1"		"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome;Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre09.g415600			Chloroplast	GO:2001070	"starch binding"		"g10289.t1;g10289.t1"		
+Cre09.g393543	GMM:21.99	redox.misc	Mitochondrion	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	HCP2	"Cre02.g129550.t1.1;HCP2;g9757.t1;Cre02.g129550.t1.2;HCP2;Cre02.g129550.t1.1;Cre02.g129550.t1.2;g9757.t1;g9757.t1;Cre02.g129550.t1.1;HCP2;Cre02.g129550.t1.2;Cre02.g129550.t1.1;HCP2;Cre02.g129550.t1.2;g9757.t1;g9757.t1;HCP2;Cre02.g129550.t1.1;Cre02.g129550.t1.2;Cre02.g129550.t1.2;HCP2;Cre02.g129550.t1.1;g9757.t1;g9757.t1;Cre02.g129550.t1.1;HCP2;Cre02.g129550.t1.2;g9757.t1;Cre02.g129550.t1.2;Cre02.g129550.t1.1;HCP2"	"HCP2;HCP2;HCP2;HCP2;HCP2;HCP2;HCP2;HCP2"	"Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family;Prismane/CO dehydrogenase family"
+Cre09.g392750	GMM:31.4	"cell.vesicle transport"					"Cre09.g392750.t1.1;g9434.t1;Cre09.g392750.t1.1;g9434.t1"		
+Cre09.g393691	"GMM:29.4.1;GMM:11.8.1;GMM:11.3.5;GMM:11.3"	"protein.postranslational modification.kinase;lipid metabolism.exotics (steroids, squalene etc).sphingolipids;lipid metabolism.phospholipid synthesis.diacylglycerol kinase;lipid metabolism.phospholipid synthesis"		GO:0016301	"kinase activity"	KDG4	"g9761.t1;KDG4;Cre02.g129700.t1.1"		"Similarity to ceramide kinase [Mus musculus] and diacylglycerol kinase [Arabidopsis thaliana]"
+Cre09.g403955									
+Cre09.g401071							"Cre02.g138650.t1.2;Cre02.g138650.t1.1;g9981.t1"		
+Cre09.g401404							"Cre02.g139100.t1.1;g9990.t1"		
+Cre09.g401663			Chloroplast				"Cre02.g139450.t1.1;g9997.t1;Cre02.g139450.t1.2"		
+Cre09.g390763	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"	FAP354	"Cre02.g126100.t1.1;g9677.t1;RAB2;Cre02.g126100.t1.2;Cre02.g126100.t1.1;g9677.t1;RAB2;Cre02.g126100.t1.2;RAB2;g9677.t1;Cre02.g126100.t1.1;Cre02.g126100.t1.2"	"FAP354;FAP354;FAP354"	"Similar to RAB2 in mammals; Class IV in [PMID: 8756593];Similar to RAB2 in mammals; Class IV in [PMID: 8756593];Similar to RAB2 in mammals; Class IV in [PMID: 8756593]"
+Cre09.g410250			Chloroplast				g10164.t1		
+Cre09.g414050	"GMM:33.99;GMM:28.99;GMM:28.1.3"	"development.unspecified;DNA.unspecified;DNA.synthesis/chromatin structure.histone"		"GO:0043141;GO:0005524;GO:0003678"	"ATP-dependent 5'-3' DNA helicase activity;ATP binding;DNA helicase activity"		"RUVBL1;Pontin;g10255.t1;Cre09.g414050.t1.1;g10255.t1;RUVBL1;Pontin;Cre09.g414050.t1.1;RUVBL1;Pontin;g10255.t1;Cre09.g414050.t1.1;Cre09.g414050.t1.1;g10255.t1;Pontin;RUVBL1;RUVBL1;Pontin;g10255.t1;Cre09.g414050.t1.1;Pontin;g10255.t1;RUVBL1;Cre09.g414050.t1.1;RUVBL1;g10255.t1;Pontin;Cre09.g414050.t1.1;Cre09.g414050.t1.1;RUVBL1;g10255.t1;Pontin"	"RVB1;RVB1;RVB1;RVB1;RVB1;RVB1;RVB1;RVB1"	"Part of a R2TP-like complex formed by RVB1 (Cre09.g414050), RVB2 (Cre10.g442700), MOT48 (Cre10.g467050), and RPAP3 (Cre02.g084900);;Part of a R2TP-like complex formed by RVB1 (Cre09.g414050), RVB2 (Cre10.g442700), MOT48 (Cre10.g467050), and RPAP3 (Cre02.g084900);;Part of a R2TP-like complex formed by RVB1 (Cre09.g414050), RVB2 (Cre10.g442700), MOT48 (Cre10.g467050), and RPAP3 (Cre02.g084900);;Part of a R2TP-like complex formed by RVB1 (Cre09.g414050), RVB2 (Cre10.g442700), MOT48 (Cre10.g467050), and RPAP3 (Cre02.g084900);;Part of a R2TP-like complex formed by RVB1 (Cre09.g414050), RVB2 (Cre10.g442700), MOT48 (Cre10.g467050), and RPAP3 (Cre02.g084900);;Part of a R2TP-like complex formed by RVB1 (Cre09.g414050), RVB2 (Cre10.g442700), MOT48 (Cre10.g467050), and RPAP3 (Cre02.g084900);;Part of a R2TP-like complex formed by RVB1 (Cre09.g414050), RVB2 (Cre10.g442700), MOT48 (Cre10.g467050), and RPAP3 (Cre02.g084900);;Part of a R2TP-like complex formed by RVB1 (Cre09.g414050), RVB2 (Cre10.g442700), MOT48 (Cre10.g467050), and RPAP3 (Cre02.g084900);"
+Cre09.g413300									
+Cre09.g401626			Mitochondrion				"g9996.t1;Cre02.g139400.t1.1;g9996.t1;Cre02.g139400.t1.1;Cre02.g139400.t1.1;g9996.t1;Cre02.g139400.t1.1;g9996.t1;g9996.t1;Cre02.g139400.t1.1;Cre02.g139400.t1.1;g9996.t1"		
+Cre09.g403450			Mitochondrion				"Cre09.g403450.t1.1;g9193.t1;Cre09.g403450.t1.1;g9193.t1;g9193.t1;Cre09.g403450.t1.1;Cre09.g403450.t1.1;g9193.t1"		
+Cre09.g388355			"Secretory pathway"			PHC33	"g9538.t1;PHC20;g9538.t1;PHC20"	"PHC33;PHC33"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre09.g392692	GMM:33.99	development.unspecified		GO:0005634	nucleus		"Cre02.g128500.t1.2;Cre02.g128500.t1.1;MGO1;MAGOH;g9731.t1"	MAGOH1	"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g399997									
+Cre09.g387023	"GMM:30.6;GMM:30.2.19;GMM:29.4"	"signalling.MAP kinases;signalling.receptor kinases.legume-lectin;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre02.g121350.t1.1;g9575.t1;Cre02.g121350.t1.1;g9575.t1;g9575.t1;Cre02.g121350.t1.1"		
+Cre09.g396586			Chloroplast						
+Cre09.g415150							"Cre09.g415150.t1.1;g10278.t1"		
+Cre09.g394880	"GMM:31.1.1.2;GMM:31.1"	"cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"					"Cre02.g131250.t1.1;g9794.t1;Cre02.g131250.t1.2"		
+Cre09.g391353			Mitochondrion				"Cre09.g391200.t1.3;g9468.t1;Cre09.g391200.t1.3;g9468.t1;g9468.t1;Cre09.g391200.t1.3;g9468.t1;Cre09.g391200.t1.3;Cre09.g391200.t1.3;g9468.t1;g9468.t1;Cre09.g391200.t1.3;g9468.t1;Cre09.g391200.t1.3;g9468.t1;Cre09.g391200.t1.3"		
+Cre09.g395954			Chloroplast				g9823.t1		
+Cre09.g396587							"g9840.t3;Cre02.g133250.t1.1;g9840.t3;Cre02.g133250.t1.1;Cre02.g133250.t1.1;g9840.t3;g9840.t3;Cre02.g133250.t1.1"		
+Cre09.g393650	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0005515;GO:0004672"	"protein phosphorylation;ATP binding;protein binding;protein kinase activity"		"Cre09.g393650.t1.1;g9416.t1"		
+Cre09.g390100				"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"SMM34;g9494.t1;SMM34;g9494.t1"		
+Cre09.g393728	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		GO:0005515	"protein binding"		"Cre02.g129750.t1.2;Cre02.g129750.t1.1;g9762.t1"		
+Cre09.g394800	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP16	"MITC16, MCP16;g9394.t1;MITC16;MITC16, MCP16;g9394.t1;MITC16"		"possible ADP,ATP carrier protein;possible ADP,ATP carrier protein"
+Cre09.g410150							g10162.t1		
+Cre09.g398215	GMM:29.2.3	protein.synthesis.initiation	Mitochondrion	"GO:0006413;GO:0003743"	"translational initiation;translation initiation factor activity"		"g9886.t1;TIF3B"	MIF3	"Mitochondrial, based on similarity to Arabidopsis AT1G34360, targeting predictions and proteomics results; lacks the N-terminal domain, like some closely related Chlamydomonadales"
+Cre09.g388393	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG13	"g9612.t1;ELG13;Cre02.g123100.t1.1"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre09.g387951									
+Cre09.g399200	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"					"SDR19;g9291.t1;Cre09.g399200.t1.1"		"possibly 3-oxoacyl-[acyl-carrier-protein] reductase; null-allele mutant was isolated (PMID 29743196)"
+Cre09.g389504			Mitochondrion				"Cre02.g124550.t1.1;Cre02.g124550.t1.2;g9643.t1"		
+Cre09.g394000			"Secretory pathway"				"Cre09.g394000.t1.1;g9408.t1"		
+Cre09.g408350							"Cre09.g408350.t1.1;DeSI-5;g10120.t1;g10120.t1;DeSI-5;Cre09.g408350.t1.1"	"DESI5;DESI5"	"deSUMOlyating isopeptidase;deSUMOlyating isopeptidase"
+Cre09.g386107			Chloroplast						
+Cre09.g400600			"Secretory pathway"						
+Cre09.g400330	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	ALK6	"ALK6;g9960.t1;Cre02.g137550.t1.1;ALK6;g9960.t1;Cre02.g137550.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g400071			Mitochondrion						
+Cre09.g415500			Mitochondrion			TCA1	"TCA1;g10287.t1;g10287.t1;TCA1;g10287.t1;TCA1;TCA1;g10287.t1"	"TCA1;TCA1;TCA1;TCA1"	"Required for translation of the chloroplast petA RNA (see PMID: 11560891 & PMID: 17494733);Required for translation of the chloroplast petA RNA (see PMID: 11560891 & PMID: 17494733);Required for translation of the chloroplast petA RNA (see PMID: 11560891 & PMID: 17494733);Required for translation of the chloroplast petA RNA (see PMID: 11560891 & PMID: 17494733)"
+Cre09.g386732			"Secretory pathway"				"g9114.t1;Cre29.g778050.t1.1;g9114.t1;Cre29.g778050.t1.1"		
+Cre09.g412910			Chloroplast						
+Cre09.g411450	GMM:31.6.1.11	cell.motility.eukaryotes.other				DAP1	"MOT45;g10187.t1;Ktu;DNAAF2;Cre09.g411450.t1.1;PRR1;DAP1"	PF13	"Contains PIH1/Nop17 domain found in HSP90 co-chaperones; Cytoplasmic, aids assembly of ODA and IDA c dyneins (PMID: 19052621) by stabilizing heavy chains (PMID: 22387996); identified by comparative genomics as being present only in organisms having motile cilia; mutated in pf13"
+Cre09.g409100	GMM:19.6	"tetrapyrrole synthesis.uroporphyrinogen III synthase"	Chloroplast	"GO:0033014;GO:0004852"	"tetrapyrrole biosynthetic process;uroporphyrinogen-III synthase activity"	UROS1	"HEMD;UPS1;g10139.t1;Cre09.g409100.t1.1;UROS;UPS1;UROS;HEMD;Cre09.g409100.t1.1;g10139.t1"	"UROS1;UROS1"	
+Cre09.g417025									
+Cre09.g391100							"g9470.t1;Cre09.g391100.t1.1;g9470.t1;Cre09.g391100.t1.1;g9470.t1;Cre09.g391100.t1.1"		
+Cre09.g410500			Chloroplast	GO:0016779	"nucleotidyltransferase activity"	PAP11	"g10170.t2;g10170.t2"	"PAP11;PAP11"	"Non-canonical poly(A) polymerase (ncPAP) with PAP/25A core domain; conserved in green algae;Non-canonical poly(A) polymerase (ncPAP) with PAP/25A core domain; conserved in green algae"
+Cre09.g403950	"GMM:4.1.16;GMM:30.3;GMM:29.4.1;GMM:29.4"	"glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g9180.t1;Cre09.g403950.t1.1"		
+Cre09.g413566			Mitochondrion						
+Cre09.g398919			Chloroplast				"g9905.t1;Cre02.g135950.t1.1"		
+Cre09.g391097	"GMM:29.2.2;GMM:29.2.1.2.2.24"	"protein.synthesis.ribosome biogenesis;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L24"	Mitochondrion			RPL24	"Cre02.g126450.t1.2;RPL24;Cre02.g126450.t1.1;g9686.t2;RPL24;Cre02.g126450.t1.2;g9686.t2;Cre02.g126450.t1.1"	"RPL24;RPL24"	"Component of cytosolic 80S ribosome and 60S large subunit;Component of cytosolic 80S ribosome and 60S large subunit"
+Cre09.g400200							g9265.t1		
+Cre09.g411876			Chloroplast						
+Cre09.g392430	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	"Secretory pathway"				"Cre02.g128150.t1.1;Cre02.g128150.t1.2;g9724.t1;g9724.t1;Cre02.g128150.t1.2;Cre02.g128150.t1.1"		
+Cre09.g389430	GMM:29.1.20	"protein.aa activation.phenylalanine-tRNA ligase"		"GO:0043039;GO:0005737;GO:0005524;GO:0004812;GO:0000049"	"tRNA aminoacylation;cytoplasm;ATP binding;aminoacyl-tRNA ligase activity;tRNA binding"		"Cre02.g124450.t1.1;g9641.t1;g9641.t1;Cre02.g124450.t1.1;g9641.t1;Cre02.g124450.t1.1"	"TSF3;TSF3;TSF3"	"Related to the yeast phenylalanyl-tRNA synthetase alpha subunit;Related to the yeast phenylalanyl-tRNA synthetase alpha subunit;Related to the yeast phenylalanyl-tRNA synthetase alpha subunit"
+Cre09.g412300			Chloroplast	"GO:0030150;GO:0005744"	"protein import into mitochondrial matrix;mitochondrial inner membrane presequence translocase complex"	TIM16	"Cre09.g412300.t1.1;g10208.t1;TIM16"	PAM16	"PAM16, subunit of the presequence translocase-associated protein import complex (TIM23), which drives the completion of protein transport into the mitochondrial matrix. Also named TIM16;"
+Cre09.g395991				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre09.g388750	"GMM:30.4;GMM:11.9.3.5;GMM:1.1.99.1"	"signalling.phosphinositides;lipid metabolism.lipid degradation.lysophospholipases.phosphoinositide phospholipase C;PS.lightreaction.unspecified.TEF"		GO:0042578	"phosphoric ester hydrolase activity"	TEF21	"Cre09.g388750.t1.1;g9525.t1;TEF21;TEF21;g9525.t1;Cre09.g388750.t1.1;g9525.t1;Cre09.g388750.t1.1;TEF21;TEF21;g9525.t1;Cre09.g388750.t1.1"	"TEF21;TEF21;TEF21;TEF21"	"Putative phosphoinositide phosphatase, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];Putative phosphoinositide phosphatase, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];Putative phosphoinositide phosphatase, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];Putative phosphoinositide phosphatase, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]"
+Cre09.g395288	GMM:34.12	transport.metal		"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"		"Cre02.g131700.t1.1;NHA1;g9805.t1"		"Sodium:hydrogen antiporter NhaD. Previously annotated as NHAD1"
+Cre09.g386745			Mitochondrion						
+Cre09.g391700			Chloroplast				"g9458.t1;Cre09.g391700.t1.1;g9458.t1;Cre09.g391700.t1.1;g9458.t1;Cre09.g391700.t1.1"		
+Cre09.g415240	GMM:29.2.99	protein.synthesis.misc							
+Cre09.g390097	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre78.g795750.t1.1;g9659.t1;Cre78.g795750.t1.1;g9659.t1;Cre78.g795750.t1.1;g9659.t1;g9659.t1;Cre78.g795750.t1.1;g9659.t1;Cre78.g795750.t1.1;g9659.t1;Cre78.g795750.t1.1;g9659.t1;Cre78.g795750.t1.1"		
+Cre09.g400182	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast						
+Cre09.g394362							"Cre02.g130550.t1.1;g9780.t1;Cre02.g130550.t1.1;g9780.t1;Cre02.g130550.t1.1;g9780.t1"		
+Cre09.g395700			Mitochondrion	GO:0016020	membrane		g9375.t1		
+Cre09.g399073	GMM:26.28	"misc.GDSL-motif lipase"	Chloroplast	GO:0016788	"hydrolase activity, acting on ester bonds"		"Cre09.g399073.t1.1;g9294.t1;g9294.t1;Cre09.g399073.t1.1"		
+Cre09.g413114			Chloroplast						
+Cre09.g397002									
+Cre09.g405750	GMM:8.3	"TCA / organic transformation.carbonic anhydrases"	Mitochondrion	"GO:0008270;GO:0004089"	"zinc ion binding;carbonate dehydratase activity"	CAH8	"CAH8;g10060.t1"	CAH8	"from cDNA data; null-allele mutant was isolated (PMID 29743196)"
+Cre09.g404201	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC30	"g9176.t1;PHC24;PHC10"	PHC30	"belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain. (partial sequence, codes only for the N-terminal domain and a part of the HR-domain; reason: sequence gap)"
+Cre09.g389097	GMM:20.2.3	stress.abiotic.drought/salt					g9632.t1		
+Cre09.g412940							"Cre09.g412950.t1.3;g10224.t1"		
+Cre09.g386751			Mitochondrion						
+Cre09.g397845	"GMM:30.5;GMM:28.2"	"signalling.G-proteins;DNA.repair"	Mitochondrion	"GO:0030983;GO:0006298;GO:0005524"	"mismatched DNA binding;mismatch repair;ATP binding"				
+Cre09.g413475							g10242.t1		
+Cre09.g394900	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g9392.t1;CYA10;CYA10;g9392.t1;g9392.t1;CYA10;CYA10;g9392.t1;CYA10;g9392.t1;g9392.t1;CYA10;CYA10;g9392.t1;CYA10;g9392.t1;g9392.t1;CYA10;CYA10;g9392.t1;g9392.t1;CYA10;CYA10;g9392.t1"		"Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade;Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade;Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade;Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade;Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade;Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade;Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade;Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade;Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade;Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade;Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade;Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade"
+Cre09.g401256			"Secretory pathway"				"Cre02.g138900.t1.2;Cre02.g138900.t1.1;g9986.t1"		
+Cre09.g403330									
+Cre09.g407300			Chloroplast				g10098.t1		
+Cre09.g391050			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g9471.t1;CYA9;CYA9;g9471.t1;CYA9;g9471.t1;g9471.t1;CYA9;CYA9;g9471.t1"		"possible guanylate or adenylate cyclase;possible guanylate or adenylate cyclase;possible guanylate or adenylate cyclase;possible guanylate or adenylate cyclase;possible guanylate or adenylate cyclase"
+Cre09.g400886	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9976.t1;Cre02.g138400.t1.1;g9976.t1;Cre02.g138400.t1.1;g9976.t1;Cre02.g138400.t1.1"		
+Cre09.g399650			Mitochondrion				"g9281.t2;g9281.t2"		
+Cre09.g416750	"GMM:29.6.2.2;GMM:29.6"	"protein.folding.chaperones and co-chaperones.HSP60s;protein.folding"	Cytosol	GO:0005524	"ATP binding"	CCT2	"CCT2;Cre09.g416750.t1.1;g10314.t1;Cre09.g416750.t1.1;g10314.t1;CCT2;CCT2;g10314.t1;Cre09.g416750.t1.1;CCT2;Cre09.g416750.t1.1;g10314.t1;Cre09.g416750.t1.1;g10314.t1;CCT2"	"CCT2;CCT2;CCT2;CCT2;CCT2"	"T-complex protein 1, beta subunit (TCP-1-beta) (CCT-beta) (TCPB); subunit of cytosolic chaperonin complex;T-complex protein 1, beta subunit (TCP-1-beta) (CCT-beta) (TCPB); subunit of cytosolic chaperonin complex;T-complex protein 1, beta subunit (TCP-1-beta) (CCT-beta) (TCPB); subunit of cytosolic chaperonin complex;T-complex protein 1, beta subunit (TCP-1-beta) (CCT-beta) (TCPB); subunit of cytosolic chaperonin complex;T-complex protein 1, beta subunit (TCP-1-beta) (CCT-beta) (TCPB); subunit of cytosolic chaperonin complex"
+Cre09.g390578	GMM:34.99	transport.misc		"GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216"	"calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity"	FAP11	"TRP23;g9672.t1;Cre02.g126000.t1.2;Cre02.g126000.t1.1;TRP23;g9672.t1;Cre02.g126000.t1.2;Cre02.g126000.t1.1;TRP23;Cre02.g126000.t1.2;g9672.t1;Cre02.g126000.t1.1"	"FAP11;FAP11;FAP11"	"with Similarity to TRP Channels;with Similarity to TRP Channels;with Similarity to TRP Channels"
+Cre09.g394139							"Cre02.g130250.t1.1;g9774.t1;Cre02.g130250.t1.1;g9774.t1"		
+Cre09.g399775	GMM:20.2.3	stress.abiotic.drought/salt					"Cre02.g137150.t1.1;Cre02.g137150.t1.2;g9930.t1"		
+Cre09.g401700	"GMM:35.1.5;GMM:35.1.27"	"not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;not assigned.no ontology.tetratricopeptide repeat (TPR)"					"Cre09.g401700.t1.1;g9230.t1"		
+Cre09.g386149			Chloroplast						
+Cre09.g393954						FAP106	"Cre02.g130000.t1.1;g9768.t1;Cre02.g130000.t1.2;Cre02.g130000.t1.1;Cre02.g130000.t1.2;g9768.t1;g9768.t1;Cre02.g130000.t1.1;Cre02.g130000.t1.2"	"FAP106;FAP106;FAP106"	"enkurin;enkurin;enkurin"
+Cre09.g389500							"g9507.t2;g9507.t2;g9507.t2;g9507.t2"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g403441									
+Cre09.g409350	GMM:27.2	RNA.transcription		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"	RLI1	"RLI1;Cre09.g409350.t1.1;g10145.t1;Cre09.g409350.t1.1;g10145.t1;RLI1;RLI1;g10145.t1;Cre09.g409350.t1.1;RLI1;g10145.t1;Cre09.g409350.t1.1"	"RLI1;RLI1;RLI1;RLI1"	"Essential Fe-S protein required for ribosome biogenesis and translation initiation. ABC-type ATPase.;Essential Fe-S protein required for ribosome biogenesis and translation initiation. ABC-type ATPase.;Essential Fe-S protein required for ribosome biogenesis and translation initiation. ABC-type ATPase.;Essential Fe-S protein required for ribosome biogenesis and translation initiation. ABC-type ATPase."
+Cre09.g403145							"g10038.t1;Cre02.g120750.t1.1;g10038.t1;Cre02.g120750.t1.1;g10038.t1;Cre02.g120750.t1.1"		
+Cre09.g399104							"Cre02.g136200.t1.2;g9910.t1;Cre02.g136200.t1.1;Cre02.g136200.t1.2;g9910.t1;Cre02.g136200.t1.1;Cre02.g136200.t1.2;g9910.t1;Cre02.g136200.t1.1;Cre02.g136200.t1.2;g9910.t1;Cre02.g136200.t1.1"		
+Cre09.g402601			Mitochondrion				"g9210.t1;Cre09.g402550.t1.3"		
+Cre09.g386250				"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"g9099.t1;SMM33;Cre09.g386250.t1.1"		
+Cre09.g408700			Mitochondrion				"g10130.t1;Cre09.g408700.t1.1"		
+Cre09.g397500			Chloroplast						
+Cre09.g411150			"Secretory pathway"				"g10181.t1;g10181.t1"		
+Cre09.g393200	"GMM:29.6.2.3;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat"	Mitochondrion.Matrix			HSP70C	"Cre09.g393200.t1.1;g9425.t1"	HSP70C	"HSP70C is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; HSP70C is localized to mitochondria; it is inducible by heat shock and light"
+Cre09.g406650			"Secretory pathway"				"g10082.t1;Cre09.g406650.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre09.g407600							"Cre09.g407600.t1.1;TEN1;g10105.t1"		"Belongs to TenA family, with homology to Neurospora THI-4 protein involved in the condensation of pyrimidine and thiazole precursors (PMID: 8662211)"
+Cre09.g395547							"g9812.t1;Cre02.g132050.t1.2;Cre02.g132050.t1.1;Cre02.g132050.t1.1;Cre02.g132050.t1.2;g9812.t1"		
+Cre09.g386730									
+Cre09.g403000	GMM:27.1	RNA.processing	"Secretory pathway"	GO:0016779	"nucleotidyltransferase activity"	PAP9	"PAP9;g9202.t1"	PAP9	"Non-canonical poly(A) polymerase (ncPAP) with PAP/25A core domain; conserved in green algae"
+Cre09.g388150				"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPL36	"MRPL36;bL36m;Cre09.g388150.t1.1;g9540.t1"	MRPL36	
+Cre09.g399350			Mitochondrion				"FAP199;g9288.t1;g9288.t1;FAP199;g9288.t1;FAP199;g9288.t1;FAP199"		
+Cre09.g387600							"g9552.t1;Cre09.g387600.t1.1;Cre09.g387600.t1.1;g9552.t1;Cre09.g387600.t1.1;g9552.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g398900	GMM:1.5	"PS.carbon concentrating mechanism"	Chloroplast			GP1	"CWP1;g9298.t1;GP1;GP1;g9298.t1;CWP1"	"CWP1;CWP1"	"Vegetative cell wall protein gp1, chaotrope-soluble [PMID: 11258910, Genbank entry AF309494];Vegetative cell wall protein gp1, chaotrope-soluble [PMID: 11258910, Genbank entry AF309494]"
+Cre09.g398550	"GMM:31.2;GMM:29.5.9;GMM:29.5.11.20;GMM:29.2.2.1"	"cell.division;protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom;protein.synthesis.ribosome biogenesis.export from nucleus"		"GO:0009378;GO:0006310;GO:0006281"	"four-way junction helicase activity;DNA recombination;DNA repair"		"Cre09.g398550.t1.1;g9306.t1;Cre09.g398550.t1.1;g9306.t1;g9306.t1;Cre09.g398550.t1.1"		
+Cre09.g392000							g9452.t2		
+Cre09.g416500	GMM:27.3.11	"RNA.regulation of transcription.C2H2 zinc finger family"				CGL151	"Cre09.g416500.t1.1;g10308.t1"	CGL151	
+Cre09.g411250							g10183.t1		
+Cre09.g404900			"Secretory pathway"				g9157.t1		
+Cre09.g393000						CSR6	"g9429.t1;CSR6"		
+Cre09.g408676							g10129.t1		
+Cre09.g398400	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	TRP5	"TRP5;Cre09.g398400.t1.1;g9313.t1;Cre09.g398400.t1.1;TRP5;g9313.t1;Cre09.g398400.t1.1;g9313.t1;TRP5"		"C-terminal 350 AA similar to transient receptor potential Ca2+ channel, involved in Ca2+ homeostasis, but N-terminal region has no similarity in databases; additional transmembrane helix at pos 1189-1211; member of a family of at least 8 TRP proteins;C-terminal 350 AA similar to transient receptor potential Ca2+ channel, involved in Ca2+ homeostasis, but N-terminal region has no similarity in databases; additional transmembrane helix at pos 1189-1211; member of a family of at least 8 TRP proteins;C-terminal 350 AA similar to transient receptor potential Ca2+ channel, involved in Ca2+ homeostasis, but N-terminal region has no similarity in databases; additional transmembrane helix at pos 1189-1211; member of a family of at least 8 TRP proteins"
+Cre09.g393551			Mitochondrion	GO:0005515	"protein binding"		g9419.t1		
+Cre09.g390350			"Secretory pathway"				g9488.t1		
+Cre09.g397800							"g9326.t1;Cre09.g397800.t1.1;Cre09.g397800.t1.1;g9326.t1"		
+Cre09.g395400							g9382.t1		
+Cre09.g403350			Chloroplast				"g9195.t1;g9195.t1;g9195.t1"		
+Cre09.g415850	GMM:9.1.1.5	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I.carbonic anhydrase"				CAG3	"CAG3;g10294.t1;Cre09.g415850.t1.1"	CAG3	"NADH:ubiquinone oxidoreductase (Complex I) subunit related to gamma carbonic anhydrase; identical to AY463241 (GCLP1) and identical to AY538681(mitochondrial complex I subunit)"
+Cre09.g403050	"GMM:29.4.1;GMM:2.2.2"	"protein.postranslational modification.kinase;major CHO metabolism.degradation.starch"	Chloroplast	"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"	DSP6	"g9201.t1;DSP6;g9201.t1;DSP6"	"LSF2;LSF2"	"MAP Kinase Phosphatase 6 (Mitogen-Activated Protein Kinase Phosphatase 6, Dual Specificity Protein Phosphatase 6) (DSP6); Dephosphorylates phosphotyrosine, phosphoserine, and phosphothreonine residues; probably chloroplast targeted;MAP Kinase Phosphatase 6 (Mitogen-Activated Protein Kinase Phosphatase 6, Dual Specificity Protein Phosphatase 6) (DSP6); Dephosphorylates phosphotyrosine, phosphoserine, and phosphothreonine residues; probably chloroplast targeted"
+Cre09.g410332	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre09.g394250			"Secretory pathway"				"Cre09.g394250.t1.1;g9403.t1"		
+Cre09.g401478			Mitochondrion	"GO:0055114;GO:0006744"	"oxidation-reduction process;ubiquinone biosynthetic process"		"Cre02.g139150.t1.1;g9992.t1"		
+Cre09.g401812	GMM:28.1	"DNA.synthesis/chromatin structure"		GO:0005524	"ATP binding"		"Cre02.g139600.t1.1;g10001.t1;g10001.t1;Cre02.g139600.t1.1"		
+Cre09.g389912	GMM:11.9.3	"lipid metabolism.lipid degradation.lysophospholipases"		GO:0005515	"protein binding"		"g9654.t1;Cre02.g125100.t1.1;Cre02.g125100.t1.2"		
+Cre09.g400034	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast						
+Cre09.g391282				GO:0016757	"transferase activity, transferring glycosyl groups"	XYT1	"Cre02.g126700.t1.2;g9691.t1;Cre02.g126700.t1.1"	XYT1	"involved in N-glycosylation"
+Cre09.g393358	GMM:27.3.70	"RNA.regulation of transcription.silencing group"					"Cre02.g129300.t1.1;g9752.t1;Cre02.g129300.t1.2"	VIG1	"Ortholog of Drosophila VIG gene, required for translational inhibition by RNA-induced silencing complexes formed by sRNA and Argonaute but dispensable for cleavage-mediated RNA interference; localizes to mono- and polyribosomes in the cytosol; copurifies with AGO3 and DCL3; mutant is hypersentitive to cycloheximide"
+Cre09.g398555									
+Cre09.g386300	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB34	"g9100.t1;TNP22;CSB34TNP22;Cre09.g386300.t1.1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre09.g411350			Mitochondrion				"g10185.t1;g10185.t1;g10185.t1"		
+Cre09.g395028			Mitochondrion				"g9798.t1;Cre02.g131450.t1.1;g9798.t1;Cre02.g131450.t1.1"		
+Cre09.g404450	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP24	"g9170.t1;MCP24"		
+Cre09.g417037							g10322.t1		
+Cre09.g396661						DIV39	"g9842.t1;DUO3;Cre02.g133350.t1.1;g9842.t1;DUO3;Cre02.g133350.t1.1;Cre02.g133350.t1.1;DUO3;g9842.t1;g9842.t1;Cre02.g133350.t1.1;DUO3;DUO3;Cre02.g133350.t1.1;g9842.t1"	"DIV39;DIV39;DIV39;DIV39;DIV39"	"ts-lethal mutations block in S/M (PMID 25336509);ts-lethal mutations block in S/M (PMID 25336509);ts-lethal mutations block in S/M (PMID 25336509);ts-lethal mutations block in S/M (PMID 25336509);ts-lethal mutations block in S/M (PMID 25336509)"
+Cre09.g387400	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0019985;GO:0016035;GO:0008408;GO:0006281;GO:0003677;GO:0000166"	"translesion synthesis;zeta DNA polymerase complex;3'-5' exonuclease activity;DNA repair;DNA binding;nucleotide binding"	POLZ1	"g9557.t1;POLZ1;POLZ1;g9557.t1"	"POLZ1;POLZ1"	"Homologous to eukaryotic DNA polymerase zeta. Involved in bypass synthesis/translesion synthesis/mutagenic DNA replication; a class B polymerase;Homologous to eukaryotic DNA polymerase zeta. Involved in bypass synthesis/translesion synthesis/mutagenic DNA replication; a class B polymerase"
+Cre09.g401500	GMM:11.8.4	"lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"		"GO:0055114;GO:0016616;GO:0006694;GO:0003854"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	BSD3			
+Cre09.g397475							"Cre02.g134400.t1.1;g9865.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre09.g395621				GO:0009966	"regulation of signal transduction"		"g9814.t1;DIV122;Cre02.g132150.t1.1;Cre02.g132150.t1.2;Cre02.g132150.t1.1;g9814.t1;Cre02.g132150.t1.2;DIV122;g9814.t1;DIV122;Cre02.g132150.t1.1;Cre02.g132150.t1.2"		"ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196)"
+Cre09.g403650	GMM:29.4	"protein.postranslational modification"	Chloroplast				"g9189.t1;g9189.t1;g9189.t1"		
+Cre09.g398512			"Secretory pathway"						
+Cre09.g393247			"Secretory pathway"						
+Cre09.g398983									
+Cre09.g386740			Mitochondrion						
+Cre09.g394213	GMM:31.6.1.4.2	"cell.motility.eukaryotes.axonemal dyneins.inner arm"				DLT4	"g9776.t1;Cre02.g130350.t1.1;Tctex2b"	DLT4	"Associated with Inner Arm Dynein I1/f and Cytoplasmic Dynein 1b"
+Cre09.g390208			Chloroplast				"g9662.t1;Cre02.g125500.t1.1;Cre02.g125500.t1.1;g9662.t1;Cre02.g125500.t1.1;g9662.t1;Cre02.g125500.t1.1;g9662.t1;g9662.t1;Cre02.g125500.t1.1;g9662.t1;Cre02.g125500.t1.1;g9662.t1;Cre02.g125500.t1.1;Cre02.g125500.t1.1;g9662.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g390000	"GMM:28.1;GMM:27.3.44"	"DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors"		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"		"g9496.t1;SRH17;Cre09.g390000.t1.1"		"SNF2-related helicase. ChromDB CHR349; null-allele mutant was isolated (PMID 29743196)"
+Cre09.g401552			Chloroplast				"g9994.t2;g9994.t2;g9994.t2"		
+Cre09.g408600				"GO:0016491;GO:0008198;GO:0006725"	"oxidoreductase activity;ferrous iron binding;cellular aromatic compound metabolic process"		"g10126.t1;Cre09.g408600.t1.1"		
+Cre09.g390726									
+Cre09.g406851	"GMM:31.3;GMM:31.2;GMM:27.3.99"	"cell.cycle;cell.division;RNA.regulation of transcription.unclassified"					"g10086.t1;Cre09.g406850.t1.3;CDH1"		"Activator and specificity factor for anaphase promoting complex. Cell cycle regulated E3 ubiquitin ligase. Related to CCS52 family from plants. Similar to CDC2/CCS52/fizzy related/Cdh1 family."
+Cre09.g388450	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG29	"ELG29;g9531.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre09.g416200	"GMM:27.1;GMM:1.1.1.3"	"RNA.processing;PS.lightreaction.photosystem II.biogenesis"	Mitochondrion			MBB1	"Cre09.g416200.t1.1;g10301.t1;HCF107;HCF107;g10301.t1;Cre09.g416200.t1.1;g10301.t1;HCF107;Cre09.g416200.t1.1"	"MBB1;MBB1;MBB1"	"TetratricoPeptide Repeat (TPR) protein; binds psbB and psbH 5'-UTR, stabilizing them against exonucleolytic attack;TetratricoPeptide Repeat (TPR) protein; binds psbB and psbH 5'-UTR, stabilizing them against exonucleolytic attack;TetratricoPeptide Repeat (TPR) protein; binds psbB and psbH 5'-UTR, stabilizing them against exonucleolytic attack"
+Cre09.g394100	"GMM:31.4;GMM:29.3.4.99"	"cell.vesicle transport;protein.targeting.secretory pathway.unspecified"		"GO:0015031;GO:0008565"	"protein transport;protein transporter activity"	AP1S1	"Cre09.g394100.t1.1;g9406.t1;AP1S1"	AP1S1	"Expressed Protein. Sigma1-Adaptin. Clathrin Adaptor Complex Subunit, putative member of AP-1 complex"
+Cre09.g392650	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"	MOT39	"Cre09.g392650.t1.1;MOT39;g9436.t1;g9436.t1;Cre09.g392650.t1.1;MOT39"	"MOT39;MOT39"	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia;identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre09.g386737			"Secretory pathway"				"g9119.t1;Cre29.g778300.t1.1;Cre29.g778300.t1.2;Cre29.g778300.t1.2;Cre29.g778300.t1.1;g9119.t1;Cre29.g778300.t1.1;Cre29.g778300.t1.2;g9119.t1"		
+Cre09.g386900	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"	RAB18	"RABC1;RAB18;Cre09.g386900.t1.1;g9567.t1"	RAB18A	"Similar to the RabC/Rab18 family of small GTP-ases; Class I in [PMID: 8756593]; One of three paralogogs (Cre11.g482900, Cre06.g278139, Cre09.g386900);"
+Cre09.g398475			"Secretory pathway"				"g9893.t1;Cre02.g135600.t1.1;Cre02.g135600.t1.2"		
+Cre09.g396401	"GMM:19.30;GMM:19.3"	"tetrapyrrole synthesis.urogen III methylase;tetrapyrrole synthesis.GSA"	Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	UPM1	"UPM1;g9835.t1;SUMT1:COBA;Cre02.g133050.t1.1;UPM1;SUMT1:COBA;Cre02.g133050.t1.1;g9835.t1"	"UPM1;UPM1"	"Siroheme synthesis [Includes: Uroporphyrin-III C-methyltransferase (Urogen III methylase) (SUMT) Uroporphyrinogen III methylase) (UROM); Precorrin-2 dehydrogenase; Sirohydrochlorin ferrochelatase]; formerly SUMT1--renamed UPM1 by the advice of Sam Beale.;Siroheme synthesis [Includes: Uroporphyrin-III C-methyltransferase (Urogen III methylase) (SUMT) Uroporphyrinogen III methylase) (UROM); Precorrin-2 dehydrogenase; Sirohydrochlorin ferrochelatase]; formerly SUMT1--renamed UPM1 by the advice of Sam Beale."
+Cre09.g392840									
+Cre09.g413200	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g10235.t2;STPK22;STK22;g10235.t2;STK22;STPK22;STK22;STPK22;g10235.t2;g10235.t2;STPK22;STK22;g10235.t2;STK22;STPK22"		"Serine/Threonine Protein Kinase Homolog 22, hypothetical; null-allele mutant was isolated (PMID 29743196);Serine/Threonine Protein Kinase Homolog 22, hypothetical; null-allele mutant was isolated (PMID 29743196);Serine/Threonine Protein Kinase Homolog 22, hypothetical; null-allele mutant was isolated (PMID 29743196);Serine/Threonine Protein Kinase Homolog 22, hypothetical; null-allele mutant was isolated (PMID 29743196);Serine/Threonine Protein Kinase Homolog 22, hypothetical; null-allele mutant was isolated (PMID 29743196)"
+Cre09.g388000	"GMM:31.2;GMM:29.4"	"cell.division;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CDKD1	"Cre09.g388000.t1.1;g9543.t1"	CDKD1	"Cyclin dependent kinase activating kinase; homologous to plant CDKD and animal CDK7 subfamilies; DPTLARE motif. Putative CAK function"
+Cre09.g413950			Mitochondrion	GO:0005509	"calcium ion binding"	EFH6	"g10253.t1;EFH6;EFH6;g10253.t1;g10253.t1;EFH6;EFH6;g10253.t1;g10253.t1;EFH6;EFH6;g10253.t1"		
+Cre09.g406448									
+Cre09.g396000	GMM:34.4	transport.nitrate		"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	NRT2.3	"g9369.t1;Cre09.g396000.t1.1;NRT2.3;NAR5;NAR5;g9369.t1;Cre09.g396000.t1.1;NRT2.3;NRT2.3;g9369.t1;Cre09.g396000.t1.1;NAR5;NAR5;g9369.t1;Cre09.g396000.t1.1;NRT2.3"	"NRT2C;NRT2C;NRT2C;NRT2C"	"high affinity nitrite transporter and low affinity nitrate transporter (system III);high affinity nitrite transporter and low affinity nitrate transporter (system III);high affinity nitrite transporter and low affinity nitrate transporter (system III);high affinity nitrite transporter and low affinity nitrate transporter (system III)"
+Cre09.g397697	GMM:29.2.1.2.2.141	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L4/L1"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	RPL4	"Cre02.g134700.t1.2;g9871.t1;Cre02.g134700.t1.1;RPL4"	RPL4	"Component of cytosolic 80S ribosome and 60S large subunit"
+Cre09.g398250							g9316.t1		
+Cre09.g407700	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP1	"Cre09.g407700.t1.1;g10107.t1;CEP1"		"Cysteine endopeptidases (EC 3.4.22), C1A family (papain-type); similar to protease component of protease-inhibitor complex of Zea mays BAA88898.1; contains N-terminal cathepsin propeptide inhibitor domain (I29) and C-terminal granulin (Cys-rich) domain"
+Cre09.g388467	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"				GDI1	"g9614.t1;Cre02.g123200.t1.2;Cre02.g123200.t1.1;Cre02.g123200.t1.2;Cre02.g123200.t1.1;g9614.t1"		
+Cre09.g393400	"GMM:17.3.1.2.2;GMM:16.1.3.5"	"hormone metabolism.brassinosteroid.synthesis-degradation.sterols.SMT2;secondary metabolism.isoprenoids.tocopherol biosynthesis.tocopherol methyltransferase"	Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	VTE4	"VTE4;Cre09.g393400.t1.1;g9421.t1;g9421.t1;Cre09.g393400.t1.1;VTE4;Cre09.g393400.t1.1;VTE4;g9421.t1;Cre09.g393400.t1.1;g9421.t1;VTE4"	"VTE4;VTE4;VTE4;VTE4"	"gamma-tocopherol methyltransferase, chloroplast precursor (EC 2.1.1.95) (TMT);gamma-tocopherol methyltransferase, chloroplast precursor (EC 2.1.1.95) (TMT);gamma-tocopherol methyltransferase, chloroplast precursor (EC 2.1.1.95) (TMT);gamma-tocopherol methyltransferase, chloroplast precursor (EC 2.1.1.95) (TMT)"
+Cre09.g406300	GMM:29.3.99	protein.targeting.unknown					"Cre09.g406300.t1.1;g10072.t1"		
+Cre09.g400450	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9260.t3;g9260.t3;g9260.t3"		
+Cre09.g414482									
+Cre09.g387467			"Secretory pathway"				"Cre02.g121900.t1.1;g9587.t1;Cre02.g121900.t1.2;g9587.t1;Cre02.g121900.t1.2;Cre02.g121900.t1.1;Cre02.g121900.t1.1;g9587.t1;Cre02.g121900.t1.2"		
+Cre09.g394102	"GMM:26.22;GMM:23.4.2"	"misc.short chain dehydrogenase/reductase (SDR);nucleotide metabolism.phosphotransfer and pyrophosphatases.guanylate kinase"	Mitochondrion			GUK2	"Cre02.g130200.t1.1;Cre02.g130200.t1.2;GUK2;g9773.t1;g9773.t1;Cre02.g130200.t1.2;Cre02.g130200.t1.1;GUK2;Cre02.g130200.t1.2;g9773.t1;Cre02.g130200.t1.1;GUK2;g9773.t1;Cre02.g130200.t1.2;GUK2;Cre02.g130200.t1.1"		"contains a guanylate kinase and an Enoyl-(Acyl carrier protein) reductase domain;contains a guanylate kinase and an Enoyl-(Acyl carrier protein) reductase domain;contains a guanylate kinase and an Enoyl-(Acyl carrier protein) reductase domain;contains a guanylate kinase and an Enoyl-(Acyl carrier protein) reductase domain"
+Cre09.g387986			Mitochondrion				"g9602.t2;Cre02.g122600.t1.1"		
+Cre09.g386125									
+Cre09.g417350							"g10331.t1;g10331.t1;g10331.t1;g10331.t1;g10331.t1"		
+Cre09.g402071			"Secretory pathway"				g10008.t1		
+Cre09.g405500						MLD1	"MLDP;g10055.t1;MLD1"	MLDP1	"Identified by proteomic analysis of lipid droplet fractions; necessary for normal oil body formation; induced during nitrogen starvation"
+Cre09.g394806			Chloroplast				"g9792.t1;Cre02.g131150.t1.2;Cre02.g131150.t1.1;Cre02.g131150.t1.1;g9792.t1;Cre02.g131150.t1.2;Cre02.g131150.t1.1;g9792.t1;Cre02.g131150.t1.2;Cre02.g131150.t1.1;g9792.t1;Cre02.g131150.t1.2"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre09.g388097	GMM:29.3.3	protein.targeting.chloroplast	Mitochondrion	GO:0019867	"outer membrane"	OEP80	"Cre02.g122700.t1.1;Cre02.g122700.t1.2;TOC80;OEP80;g9604.t1;Cre02.g122700.t1.1;g9604.t1;OEP80;TOC80;Cre02.g122700.t1.2;TOC80;OEP80;Cre02.g122700.t1.2;g9604.t1;Cre02.g122700.t1.1;g9604.t1;Cre02.g122700.t1.2;OEP80;TOC80;Cre02.g122700.t1.1"		"Chloroplast outer envelope protein homologous to OEP80; belongs to OMP85 family of bacterial beta-barrel outer-membrane proteins; contains a Targeting Peptide followed by a poly_glycine stretch that could target it to the envelope outer membrane;Chloroplast outer envelope protein homologous to OEP80; belongs to OMP85 family of bacterial beta-barrel outer-membrane proteins; contains a Targeting Peptide followed by a poly_glycine stretch that could target it to the envelope outer membrane;Chloroplast outer envelope protein homologous to OEP80; belongs to OMP85 family of bacterial beta-barrel outer-membrane proteins; contains a Targeting Peptide followed by a poly_glycine stretch that could target it to the envelope outer membrane;Chloroplast outer envelope protein homologous to OEP80; belongs to OMP85 family of bacterial beta-barrel outer-membrane proteins; contains a Targeting Peptide followed by a poly_glycine stretch that could target it to the envelope outer membrane"
+Cre09.g407950			"Secretory pathway"				"Cre09.g407950.t1.1;g10112.t1"		
+Cre09.g387000			Chloroplast			CGL34	"Cre09.g387000.t1.1;g9565.t1"	CGL34	
+Cre09.g388838							"Cre02.g123750.t1.2;g9625.t1;Cre02.g123750.t1.1"		
+Cre09.g388700	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9526.t1;g9526.t1"		
+Cre09.g399915	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast						
+Cre09.g397771			Chloroplast			OPR117	"Cre02.g134800.t1.1;g9873.t1;Cre02.g134800.t1.1;g9873.t1"	"OPR117;OPR117"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre09.g391689			Mitochondrion						
+Cre09.g389689	GMM:13.1.3.6.1.2	"amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate semialdehyde dehydrogenase"	Chloroplast	"GO:0055114;GO:0051287;GO:0046983;GO:0016620;GO:0008652;GO:0005737;GO:0003942"	"oxidation-reduction process;NAD binding;protein dimerization activity;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor;cellular amino acid biosynthetic process;cytoplasm;N-acetyl-gamma-glutamyl-phosphate reductase activity"	ASD1	"ASD1;Cre02.g124800.t1.2;ASSD1;g9648.t1;Cre02.g124800.t1.1"	ASD1	
+Cre09.g404100	GMM:34.18	"transport.unspecified anions"		"GO:0055085;GO:0016020;GO:0006821;GO:0005247"	"transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity"	CLV3	"g9177.t1;Cre09.g404100.t1.1;CLV3;CLV3;Cre09.g404100.t1.1;g9177.t1"		
+Cre09.g391171							"Cre02.g126550.t1.2;g9688.t1;Cre02.g126550.t1.1"		
+Cre09.g392616			"Secretory pathway"				"g9729.t1;Cre02.g128400.t1.2;Cre02.g128400.t1.1"		
+Cre09.g401182	"GMM:30.3;GMM:29.5.11.20"	"signalling.calcium;protein.degradation.ubiquitin.proteasom"	"Secretory pathway"	GO:0005524	"ATP binding"	CGL153	"g9984.t1;Cre02.g138800.t1.1;Cre02.g138800.t1.1;g9984.t1;g9984.t1;Cre02.g138800.t1.1"	"CGL153;CGL153;CGL153"	
+Cre09.g402150				"GO:0055114;GO:0009231;GO:0008703"	"oxidation-reduction process;riboflavin biosynthetic process;5-amino-6-(5-phosphoribosylamino)uracil reductase activity"		g9221.t1		
+Cre09.g389650	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g9504.t1;g9504.t1;g9504.t1;g9504.t1"		
+Cre09.g392105			Mitochondrion						
+Cre09.g390504									
+Cre09.g405800	"GMM:17.7.1;GMM:17.5.1"	"hormone metabolism.jasmonate.synthesis-degradation;hormone metabolism.ethylene.synthesis-degradation"	Chloroplast				"Cre09.g405800.t1.1;g10062.t1;Cre09.g405800.t1.1;g10062.t1"		
+Cre09.g389100	GMM:31.4	"cell.vesicle transport"	"Secretory pathway"	GO:0016192	"vesicle-mediated transport"	GOT1	"Cre09.g389100.t1.1;g9516.t1"	GOT1	"SFT2-like conserved protein with four putative transmembrane helices, thought to be involved in vesicular transport in later Golgi compartments"
+Cre09.g386173									
+Cre09.g407150							g10095.t1		
+Cre09.g395362			Chloroplast				"Cre02.g131800.t1.2;g9807.t1;Cre02.g131800.t1.1"		
+Cre09.g394695							"g9789.t1;Cre02.g131000.t1.1"		
+Cre09.g397031	"GMM:26.1;GMM:17.2.2"	"misc.misc2;hormone metabolism.auxin.signal transduction"		"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"		"Cre02.g133850.t1.1;g9853.t1"		
+Cre09.g409650	"GMM:29.5.11.4.2;GMM:27.3.99"	"protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.unclassified"		GO:0008270	"zinc ion binding"		"Cre09.g409650.t1.1;g10150.t1"		
+Cre09.g400627			Mitochondrion				"g9968.t1;Cre02.g138000.t1.1;Cre02.g138000.t1.2;Cre02.g138000.t1.2;Cre02.g138000.t1.1;g9968.t1"		
+Cre09.g395473			Chloroplast				"g9810.t1;Cre02.g131950.t1.1"		
+Cre09.g415300							"GT90-19;GT90F19;g10282.t1;g10282.t1;GT90F19;GT90-19"		
+Cre09.g407373			Mitochondrion	GO:0008080	"N-acetyltransferase activity"		"Cre09.g407373.t1.1;g10100.t1"		
+Cre09.g408300							"Cre09.g408300.t1.1;g10119.t1"		
+Cre09.g390023	"GMM:33.99;GMM:33.3;GMM:27.3.28"	"development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0003677"	"nucleus;DNA binding"	CRR1	"Cre02.g125250.t1.1;CRR1;g9657.t1;Cre02.g125250.t1.1;CRR1;g9657.t1;g9657.t1;CRR1;Cre02.g125250.t1.1;Cre02.g125250.t1.1;g9657.t1;CRR1;Cre02.g125250.t1.1;CRR1;g9657.t1;g9657.t1;CRR1;Cre02.g125250.t1.1;Cre02.g125250.t1.1;CRR1;g9657.t1;g9657.t1;CRR1;Cre02.g125250.t1.1;Cre02.g125250.t1.1;CRR1;g9657.t1;CRR1;g9657.t1;Cre02.g125250.t1.1;Cre02.g125250.t1.1;CRR1;g9657.t1;CRR1;g9657.t1;Cre02.g125250.t1.1"	"CRR1;CRR1;CRR1;CRR1;CRR1;CRR1;CRR1;CRR1;CRR1;CRR1;CRR1;CRR1"	"Copper responsive regulator 1; SBP domain containing, ankyrin repeats [gi:63145978; PMID: 16352720];Copper responsive regulator 1; SBP domain containing, ankyrin repeats [gi:63145978; PMID: 16352720];Copper responsive regulator 1; SBP domain containing, ankyrin repeats [gi:63145978; PMID: 16352720];Copper responsive regulator 1; SBP domain containing, ankyrin repeats [gi:63145978; PMID: 16352720];Copper responsive regulator 1; SBP domain containing, ankyrin repeats [gi:63145978; PMID: 16352720];Copper responsive regulator 1; SBP domain containing, ankyrin repeats [gi:63145978; PMID: 16352720];Copper responsive regulator 1; SBP domain containing, ankyrin repeats [gi:63145978; PMID: 16352720];Copper responsive regulator 1; SBP domain containing, ankyrin repeats [gi:63145978; PMID: 16352720];Copper responsive regulator 1; SBP domain containing, ankyrin repeats [gi:63145978; PMID: 16352720];Copper responsive regulator 1; SBP domain containing, ankyrin repeats [gi:63145978; PMID: 16352720];Copper responsive regulator 1; SBP domain containing, ankyrin repeats [gi:63145978; PMID: 16352720];Copper responsive regulator 1; SBP domain containing, ankyrin repeats [gi:63145978; PMID: 16352720]"
+Cre09.g410050	"GMM:34.21;GMM:34.1"	"transport.calcium;transport.p- and v-ATPases"		"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"		"Cre09.g410050.t1.1;g10159.t1;Cre09.g410050.t1.1;g10159.t1"		"High homology to bacterial genes; related to Cation-transporting ATPase pma1;High homology to bacterial genes; related to Cation-transporting ATPase pma1"
+Cre09.g405200	"GMM:29.2.1.2.2.13;GMM:29.2.1.1.4.2;GMM:29.2.1.1.3.2.13"	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L13;protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L13"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	MRPL13	"Cre09.g405200.t1.1;g10049.t1;uL13m;g10049.t1;uL13m;Cre09.g405200.t1.1"	"MRPL13;MRPL13"	
+Cre09.g392867	GMM:31.6.1.8	"cell.motility.eukaryotes.flagellar membrane proteins"	"Secretory pathway"			FMG2	"FMG2;Cre29.g778950.t1.2;Cre29.g778950.t1.1;FMG1-B;g9144.t1;FMG1-B;FMG2;g9144.t1;Cre29.g778950.t1.1;Cre29.g778950.t1.2;Cre29.g778950.t1.2;FMG2;Cre29.g778950.t1.1;g9144.t1;FMG1-B;FMG1-B;g9144.t1;Cre29.g778950.t1.1;FMG2;Cre29.g778950.t1.2;g9144.t1;Cre29.g778950.t1.1;FMG1-B;FMG2;Cre29.g778950.t1.2;Cre29.g778950.t1.2;FMG2;g9144.t1;Cre29.g778950.t1.1;FMG1-B;Cre29.g778950.t1.2;FMG2;Cre29.g778950.t1.1;FMG1-B;g9144.t1;FMG2;Cre29.g778950.t1.2;g9144.t1;FMG1-B;Cre29.g778950.t1.1;FMG2;Cre29.g778950.t1.2;Cre29.g778950.t1.1;FMG1-B;g9144.t1;Cre29.g778950.t1.2;FMG2;Cre29.g778950.t1.1;g9144.t1;FMG1-B;Cre29.g778950.t1.1;g9144.t1;FMG1-B;Cre29.g778950.t1.2;FMG2;FMG2;Cre29.g778950.t1.2;FMG1-B;g9144.t1;Cre29.g778950.t1.1;Cre29.g778950.t1.2;FMG2;Cre29.g778950.t1.1;g9144.t1;FMG1-B;g9144.t1;FMG1-B;Cre29.g778950.t1.1;Cre29.g778950.t1.2;FMG2;Cre29.g778950.t1.1;FMG1-B;g9144.t1;FMG2;Cre29.g778950.t1.2;Cre29.g778950.t1.1;FMG2;Cre29.g778950.t1.2;FMG1-B;g9144.t1;Cre29.g778950.t1.2;FMG2;FMG1-B;g9144.t1;Cre29.g778950.t1.1;FMG2;Cre29.g778950.t1.2;FMG1-B;g9144.t1;Cre29.g778950.t1.1;g9144.t1;FMG1-B;Cre29.g778950.t1.1;Cre29.g778950.t1.2;FMG2;Cre29.g778950.t1.2;FMG2;Cre29.g778950.t1.1;g9144.t1;FMG1-B;FMG2;Cre29.g778950.t1.2;g9144.t1;FMG1-B;Cre29.g778950.t1.1"	"FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B;FMG1B"	"Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A;Flagella membrane protein, major form; highly expressed in Chlamydomonas during vegetative growth (and likely even in gametes); mediates expression of force at the flagellar surface; forms the outermost layer of the flagellar coat; a repetitive protein, encoded by a gene characterized by short introns; genetically linked to FMG1-A"
+Cre09.g399402	GMM:26.1	misc.misc2	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"		"Cre02.g136600.t2.1;g9918.t2;g9918.t2;Cre02.g136600.t2.1;g9918.t2;Cre02.g136600.t2.1;Cre02.g136600.t2.1;g9918.t2;Cre02.g136600.t2.1;g9918.t2;g9918.t2;Cre02.g136600.t2.1"		
+Cre09.g400100	"GMM:27.3.99;GMM:27.3.11"	"RNA.regulation of transcription.unclassified;RNA.regulation of transcription.C2H2 zinc finger family"		"GO:0008270;GO:0003677"	"zinc ion binding;DNA binding"		g9267.t1		
+Cre09.g396846	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"					"Cre02.g133650.t1.1;g9848.t1;Cre02.g133650.t1.2"		
+Cre09.g399663	GMM:30.99	signalling.unspecified				FXL7	"Cre02.g136950.t2.1;FXL7;g9925.t2;g9925.t2;FXL7;Cre02.g136950.t2.1;FXL7;g9925.t2;Cre02.g136950.t2.1;FXL7;g9925.t2;Cre02.g136950.t2.1;FXL7;g9925.t2;Cre02.g136950.t2.1;FXL7;g9925.t2;Cre02.g136950.t2.1;Cre02.g136950.t2.1;g9925.t2;FXL7;Cre02.g136950.t2.1;FXL7;g9925.t2;Cre02.g136950.t2.1;g9925.t2;FXL7"	"FXL4;FXL4;FXL4;FXL4;FXL4;FXL4;FXL4;FXL4;FXL4"	"FixL like homolog 4 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 4 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 4 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 4 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 4 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 4 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 4 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 4 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 4 (FXL). PAS region shows high identity to Rhizobial FixL proteins."
+Cre09.g387060	GMM:34.14	"transport.unspecified cations"		"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"		"g9576.t1;Cre02.g121400.t1.1;Cre02.g121400.t1.1;g9576.t1"		
+Cre09.g403034				"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"Cre02.g120550.t1.1;Cre02.g120550.t1.2;g10034.t1"		
+Cre09.g395550							g9379.t1		
+Cre09.g399601			Mitochondrion				"g9283.t1;Cre09.g399572.t1.2"		
+Cre09.g402100							"Cre09.g402100.t1.1;g9222.t1;g9222.t1;Cre09.g402100.t1.1;g9222.t1;Cre09.g402100.t1.1"		
+Cre09.g397327				"GO:0016773;GO:0006303;GO:0005634;GO:0005524;GO:0005515;GO:0004677;GO:0003677"	"phosphotransferase activity, alcohol group as acceptor;double-strand break repair via nonhomologous end joining;nucleus;ATP binding;protein binding;DNA-dependent protein kinase activity;DNA binding"		"Cre02.g134200.t1.1;g9861.t1"		
+Cre09.g389350			Mitochondrion				g9511.t1		
+Cre09.g409200							"g10141.t1;SRS6;Cre09.g409200.t1.1;SRS12;SRS12;SRS6;g10141.t1;Cre09.g409200.t1.1"		"Putative pre-mRNA splicing factor related to Cwf21 splicing factor and serine/arginine repetitive matrix (SRRM2) protein;Putative pre-mRNA splicing factor related to Cwf21 splicing factor and serine/arginine repetitive matrix (SRRM2) protein"
+Cre09.g389282	GMM:31.6.1.6.1	"cell.motility.eukaryotes.central pair.C1a"				FAP114	"Cre02.g124250.t1.1;g9637.t1;C1a-32;PF6-IP3;PF6-IP3;C1a-32;Cre02.g124250.t1.1;g9637.t1"	"FAP114;FAP114"	"Found in the flagellar proteome; Also known as C1a-32; forms the C1a projection, with PF6, C1a-86, C1a-34, C1a-18, and calmodulin; similar to C1a-34; may play a role in modulating both inner and outer dynein arm activity;;Found in the flagellar proteome; Also known as C1a-32; forms the C1a projection, with PF6, C1a-86, C1a-34, C1a-18, and calmodulin; similar to C1a-34; may play a role in modulating both inner and outer dynein arm activity;"
+Cre09.g413400	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g10239.t1;g10239.t1;g10239.t1"		
+Cre09.g402500	GMM:34.1	"transport.p- and v-ATPases"		"GO:0033179;GO:0015991;GO:0015078"	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVA2	"Cre09.g402500.t1.1;g9212.t1;ATPvA2"	ATPVA2	"Vacuolar proton pump subunit 1; Vacuolar H+-ATPase V0 sector, subunit A"
+Cre09.g404700							g9163.t1		
+Cre09.g407050	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP24	"MMP24;Cre09.g407050.t1.1;g10091.t1"	MMP24	"Matrix metalloproteinase belonging to the M11 peptidase family"
+Cre09.g389763						HPAT4	"Cre02.g124900.t1.1;g9650.t1;Cre02.g124900.t1.2;HPAT4;Cre02.g124900.t1.2;HPAT4;g9650.t1;Cre02.g124900.t1.1;g9650.t1;Cre02.g124900.t1.1;HPAT4;Cre02.g124900.t1.2;Cre02.g124900.t1.1;g9650.t1;Cre02.g124900.t1.2;HPAT4;HPAT4;Cre02.g124900.t1.2;Cre02.g124900.t1.1;g9650.t1"		"GT8 family; Shares a common domain with HPAT1 and HPAT2;GT8 family; Shares a common domain with HPAT1 and HPAT2;GT8 family; Shares a common domain with HPAT1 and HPAT2;GT8 family; Shares a common domain with HPAT1 and HPAT2;GT8 family; Shares a common domain with HPAT1 and HPAT2"
+Cre09.g402441							"g10018.t1;Cre02.g140200.t1.1;g10018.t1;Cre02.g140200.t1.1;Cre02.g140200.t1.1;g10018.t1;g10018.t1;Cre02.g140200.t1.1"		
+Cre09.g402219			Chloroplast			LCI3	"g10012.t2;Cre02.g139950.t2.1;LCI3"	LCI3	"Regulated by CCM1 [PMID: 15235119]. Acclimation to changing CO2 concentrations and light intensities was studied by Yamano et al. 2008 [PMID: 18322145]."
+Cre09.g386757			Chloroplast						
+Cre09.g386753	GMM:27.3.81	"RNA.regulation of transcription.S1FA"		"GO:0006355;GO:0005634;GO:0003677"	"regulation of transcription, DNA-templated;nucleus;DNA binding"		"g9135.t1;Cre29.g778700.t1.1;Cre29.g778700.t1.2"		
+Cre09.g399000	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"					"g9296.t1;SDR18"		"possibly 3-oxoacyl-[acyl-carrier-protein] reductase"
+Cre09.g395950	GMM:9.4	"mitochondrial electron transport / ATP synthesis.alternative oxidase"	Mitochondrion	"GO:0055114;GO:0009916"	"oxidation-reduction process;alternative oxidase activity"	AOX1	"AOX1;Cre09.g395950.t1.1;g9370.t1;Cre09.g395950.t1.1;AOX1;g9370.t1;g9370.t1;AOX1;Cre09.g395950.t1.1"	"AOX1;AOX1;AOX1"	"ubiquinone oxidase, catalysing a shunt to oxidation of respiratory substrates by cytochrome bc1 and cytochrome oxidase; expression is dependent on NIT2; see gi 9027543 gb AAC05743.2;ubiquinone oxidase, catalysing a shunt to oxidation of respiratory substrates by cytochrome bc1 and cytochrome oxidase; expression is dependent on NIT2; see gi 9027543 gb AAC05743.2;ubiquinone oxidase, catalysing a shunt to oxidation of respiratory substrates by cytochrome bc1 and cytochrome oxidase; expression is dependent on NIT2; see gi 9027543 gb AAC05743.2"
+Cre09.g399178	"GMM:33.99;GMM:30.11.1"	"development.unspecified;signalling.light.COP9 signalosome"		GO:0005515	"protein binding"	CSN5	"Cre02.g136300.t1.1;g9912.t1;CSN5;Cre02.g136300.t1.2;g9912.t1;Cre02.g136300.t1.1;CSN5;Cre02.g136300.t1.2"	"CSN5;CSN5"	"Similar to COP signalosome subunit CSN5;Similar to COP signalosome subunit CSN5"
+Cre09.g397350	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0016818;GO:0008026;GO:0006139;GO:0005524;GO:0004003;GO:0003677;GO:0003676"	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;ATP-dependent helicase activity;nucleobase-containing compound metabolic process;ATP binding;ATP-dependent DNA helicase activity;DNA binding;nucleic acid binding"	XPD3	"RAD3A;g9335.t1;g9335.t1;RAD3A;g9335.t1;RAD3A"	"XPD3;XPD3;XPD3"	"Rad3-like ATP-dependent DNA helicase, probably mitochondrial; similar to BRCA1-binding helicase-like protein BACH1 (GI:13661819) Homo sapiens).Similar to Arabidopsis At1g21730; null-allele mutant was isolated (PMID 29743196);Rad3-like ATP-dependent DNA helicase, probably mitochondrial; similar to BRCA1-binding helicase-like protein BACH1 (GI:13661819) Homo sapiens).Similar to Arabidopsis At1g21730; null-allele mutant was isolated (PMID 29743196);Rad3-like ATP-dependent DNA helicase, probably mitochondrial; similar to BRCA1-binding helicase-like protein BACH1 (GI:13661819) Homo sapiens).Similar to Arabidopsis At1g21730; null-allele mutant was isolated (PMID 29743196)"
+Cre09.g402750				"GO:0016020;GO:0015031;GO:0007030"	"membrane;protein transport;Golgi organization"	COG2	"COG2;g9206.t1;Cre09.g402750.t1.1"	COG2	"Conserved Hypothetical Protein. Similar to COG2, component of oligomeric golgi complex 2, involved in vesicle tethering and other Golgi functions"
+Cre09.g387700			Mitochondrion				"g9550.t1;Cre09.g387700.t1.1;g9550.t1;Cre09.g387700.t1.1"		
+Cre09.g388689	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre02.g123450.t1.1;g9620.t1;Cre02.g123450.t1.1;g9620.t1;Cre02.g123450.t1.1;g9620.t1;g9620.t1;Cre02.g123450.t1.1;Cre02.g123450.t1.1;g9620.t1"		
+Cre09.g397919			Chloroplast						
+Cre09.g412201							g10206.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre09.g395646	GMM:3.5	"minor CHO metabolism.others"	Chloroplast						
+Cre09.g409750	GMM:34.21	transport.calcium	Chloroplast	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	CAX2	"CAX2;g10153.t1;g10153.t1;CAX2;CAX2;g10153.t1"	"CAX2;CAX2;CAX2"	"CAX family of Cation antiporters, membrane protein; Putative Ca2+/H+ antiporter; related to fungi and plants Ca2+/H+ antiporters (CAX); related to yeast VCX1 (or Manganese resistance 1); One of three paralogs in C.reinhardtii (Cre09.g409750, Cre12.g519500, Cre16.g649466); Co-orthologous with three CAX genes in Arabidopsis thaliana (AT1G55720.1, AT1G55730.1, AT3G13320.1);;CAX family of Cation antiporters, membrane protein; Putative Ca2+/H+ antiporter; related to fungi and plants Ca2+/H+ antiporters (CAX); related to yeast VCX1 (or Manganese resistance 1); One of three paralogs in C.reinhardtii (Cre09.g409750, Cre12.g519500, Cre16.g649466); Co-orthologous with three CAX genes in Arabidopsis thaliana (AT1G55720.1, AT1G55730.1, AT3G13320.1);;CAX family of Cation antiporters, membrane protein; Putative Ca2+/H+ antiporter; related to fungi and plants Ca2+/H+ antiporters (CAX); related to yeast VCX1 (or Manganese resistance 1); One of three paralogs in C.reinhardtii (Cre09.g409750, Cre12.g519500, Cre16.g649466); Co-orthologous with three CAX genes in Arabidopsis thaliana (AT1G55720.1, AT1G55730.1, AT3G13320.1);"
+Cre09.g387912						FAP139	"g9599.t1;Cre02.g122500.t1.1;Cre02.g122500.t1.1;g9599.t1;g9599.t1;Cre02.g122500.t1.1"	"FAP139;FAP139;FAP139"	"Found in the flagellar proteome;;Found in the flagellar proteome;;Found in the flagellar proteome;"
+Cre09.g403108			Mitochondrion	GO:0006464	"cellular protein modification process"		"g10036.t1;Cre02.g120650.t1.1"		
+Cre09.g405105									
+Cre09.g401800	"GMM:30.2.99;GMM:30.11"	"signalling.receptor kinases.misc;signalling.light"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g9228.t1;g9228.t1;g9228.t1;g9228.t1"		
+Cre09.g395100	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"	MKP4	"Cre09.g395100.t1.1;MKP4;g9389.t1;Cre09.g395100.t1.1;g9389.t1;MKP4;MKP4;Cre09.g395100.t1.1;g9389.t1"		"DSP4 (Dual Specificity Protein Phosphatase 4) Dephosphorylates and inactivates MAP kinases; Dephosphorylates phosphotyrosine, phosphoserine, and phosphothreonine residues; linked to related MKP3;DSP4 (Dual Specificity Protein Phosphatase 4) Dephosphorylates and inactivates MAP kinases; Dephosphorylates phosphotyrosine, phosphoserine, and phosphothreonine residues; linked to related MKP3;DSP4 (Dual Specificity Protein Phosphatase 4) Dephosphorylates and inactivates MAP kinases; Dephosphorylates phosphotyrosine, phosphoserine, and phosphothreonine residues; linked to related MKP3"
+Cre09.g412750	GMM:35.1.3	"not assigned.no ontology.armadillo/beta-catenin repeat family protein"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g10218.t1;Cre09.g412750.t1.1"		
+Cre09.g390750	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG24	"g9477.t1;ELG24"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre09.g413425			"Secretory pathway"						
+Cre09.g397400	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"		"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"Cre09.g397400.t1.1;SDR17;g9334.t1;g9334.t1;Cre09.g397400.t1.1;SDR17"		"Possble protochlorophyllide reductase or retinol/estradiol 17beta dehydrogenase;Possble protochlorophyllide reductase or retinol/estradiol 17beta dehydrogenase"
+Cre09.g411050							"g10179.t1;g10179.t1;g10179.t1"		
+Cre09.g402849			Chloroplast				"g10029.t1;Cre02.g140800.t1.1;Cre02.g140800.t1.2;Cre02.g140800.t1.2;Cre02.g140800.t1.1;g10029.t1;Cre02.g140800.t1.1;Cre02.g140800.t1.2;g10029.t1;Cre02.g140800.t1.2;Cre02.g140800.t1.1;g10029.t1"		
+Cre09.g397050	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"					"g9343.t1;g9343.t1;g9343.t1"		
+Cre09.g398067	"GMM:31.3.1;GMM:29.6.3.1"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs"		GO:0006457	"protein folding"	FKB62	"Cre02.g135150.t1.1;ROF1;g9881.t1;Cre02.g135150.t1.1;ROF1;g9881.t1"	"FKB62;FKB62"	"Co-chaperone of cytosolic HSP90; contains 3 N-terminal FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin) domains and C-terminal TPR repeats; orthologue of Arabidopsis ROF1;Co-chaperone of cytosolic HSP90; contains 3 N-terminal FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin) domains and C-terminal TPR repeats; orthologue of Arabidopsis ROF1"
+Cre09.g397052			Mitochondrion						
+Cre09.g398734			Mitochondrion				"Cre02.g135700.t1.1;Cre02.g135700.t1.2;g9900.t1"		
+Cre09.g394658	"GMM:3.5;GMM:16.8.2"	"minor CHO metabolism.others;secondary metabolism.flavonoids.chalcones"				LCI28	"Cre02.g130950.t1.1;Cre02.g130950.t1.2;g9788.t1;LCI28;LCI28;g9788.t1;Cre02.g130950.t1.1;Cre02.g130950.t1.2"	"LCI28;LCI28"	"Contains Aldo/keto reductase family (pfam00248.12). This family includes a number of K+ ion channel beta chain regulatory domains - these are reported to have oxidoreductase activity. Low-CO2 inducible gene revealed by cDNA array analyses. Acclimation to;Contains Aldo/keto reductase family (pfam00248.12). This family includes a number of K+ ion channel beta chain regulatory domains - these are reported to have oxidoreductase activity. Low-CO2 inducible gene revealed by cDNA array analyses. Acclimation to"
+Cre09.g386137							"g9090.t1;Cre29.g777750.t1.1"		
+Cre09.g409550							"g10148.t1;g10148.t1"		
+Cre09.g409500	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"		GO:0003676	"nucleic acid binding"		"g10147.t1;Cre09.g409500.t1.1"	RPP25	"Involved in precursor rRNA processing"
+Cre09.g404950							"g9155.t1;Cre09.g404950.t1.1"		
+Cre09.g398993	"GMM:16.1.3.1;GMM:13.2.6.2"	"secondary metabolism.isoprenoids.tocopherol biosynthesis.hydroxyphenylpyruvate dioxygenase;amino acid metabolism.degradation.aromatic aa.tyrosine"		"GO:0055114;GO:0016701;GO:0009072;GO:0003868"	"oxidation-reduction process;oxidoreductase activity, acting on single donors with incorporation of molecular oxygen;aromatic amino acid family metabolic process;4-hydroxyphenylpyruvate dioxygenase activity"	HPD1	"Cre02.g136050.t1.2;g9907.t1;Cre02.g136050.t1.1;HPD1"		"4-hydroxyphenylpyruvate dioxygenase (EC 1.13.11.27); (4HPPD) (HPD) (HPPDase); Target of CRR1"
+Cre09.g396809			Chloroplast				"Cre02.g133600.t1.1;g9847.t1;Cre02.g133600.t1.2"		
+Cre30.g758197			Chloroplast				g18329.t1		
+Cre30.g758297									
+Cre30.g757997			Mitochondrion				"g18324.t1;Cre53.g790600.t1.1;Cre53.g790600.t1.2"		
+Cre30.g758247			Chloroplast						
+Cre30.g758147			Mitochondrion						
+Cre30.g758097									
+Cre30.g758047									
+Cre31.g758447						CSU8			
+Cre31.g758347			Chloroplast						
+Cre31.g758497			Chloroplast						
+Cre31.g758397									
+Cre40.g760247	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion						
+Cre40.g760147							"g18380.t1;g18380.t1;g18380.t1;g18380.t1;g18380.t1;g18380.t1;g18380.t1;g18380.t1;g18380.t1"		
+Cre40.g760197									
+Cre35.g759447							"Cre66.g793600.t1.1;g18362.t1"		
+Cre35.g759347	GMM:29.4	"protein.postranslational modification"	Mitochondrion						
+Cre35.g759397			"Secretory pathway"						
+Cre35.g759297			"Secretory pathway"						
+Cre35.g759497									
+Cre35.g759247	GMM:26.16	misc.myrosinases-lectin-jacalin	Chloroplast			SRR5			
+Cre33.g758847	GMM:29.5.3	"protein.degradation.cysteine protease"	Mitochondrion	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"				
+Cre33.g758997							g18348.t1		
+Cre33.g758897	"GMM:28.1;GMM:27.1"	"DNA.synthesis/chromatin structure;RNA.processing"		"GO:0006397;GO:0006370;GO:0004484"	"mRNA processing;7-methylguanosine mRNA capping;mRNA guanylyltransferase activity"				
+Cre33.g759047									
+Cre33.g758947				GO:0008146	"sulfotransferase activity"	CSR11			
+Cre17.g705750			Chloroplast				"g17104.t1;Cre17.g705750.t1.1"		"Eight-member family found found at two loci on chromosomes 16 and 17"
+Cre17.g716451	"GMM:29.5.9;GMM:29.5.11.20"	"protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom"	Mitochondrion	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"Cre17.g716451.t1.1;g17343.t1"		"Simiar to the N-terminal part of nearby SUM4, SUM5, SUM6 which carry a C-terminal SUMO domain as a fusion"
+Cre17.g715350	"GMM:33.99;GMM:31.4;GMM:3.5;GMM:29.5.11.5"	"development.unspecified;cell.vesicle transport;minor CHO metabolism.others;protein.degradation.ubiquitin.ubiquitin protease"		GO:0005096	"GTPase activator activity"		"g17317.t2;Cre17.g715350.t1.1;Cre17.g715350.t1.1;g17317.t2"		
+Cre17.g715400	GMM:30.5	signalling.G-proteins					g17318.t1		
+Cre17.g703700	GMM:8.1.6	"TCA / organic transformation.TCA.succinyl-CoA ligase"	Mitochondrion	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	SCLB1	"SUCLA2;g17060.t1;SCL2;SCLB1;SCLB1;SCL2;SUCLA2;g17060.t1"	"SCLB1;SCLB1"	"Succinate-CoA ligase beta chain, possibly cytosolic; similarity to Arabidopsis mitochondrial SCL (GenBank NP_179632), but lacking organelle targeting sequence; apparently minority splice variant of SCLB1a;Succinate-CoA ligase beta chain, possibly cytosolic; similarity to Arabidopsis mitochondrial SCL (GenBank NP_179632), but lacking organelle targeting sequence; apparently minority splice variant of SCLB1a"
+Cre17.g746497									
+Cre17.g712771									
+Cre17.g727900							"g17596.t1;CRC1"		
+Cre17.g741700	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIL22	"g17939.t1;KIL22;KIL22;g17939.t1"		"Putative kinesin motor-like protein, closest match (though poor) to kinesin-14 family. No sequence gaps to account for poor assignment by HMM search;Putative kinesin motor-like protein, closest match (though poor) to kinesin-14 family. No sequence gaps to account for poor assignment by HMM search"
+Cre17.g731450							"g17674.t1;g17674.t1;g17674.t1"		
+Cre17.g731700	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	"GO:0055114;GO:0050661;GO:0050660;GO:0004499"	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO2	"FMO2;g17685.t1"		"Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification; one of the many Arabidopsis homologues is essential for Systemic Acquired Resistance to pathogens (PMID: 16778014)"
+Cre17.g739050			"Secretory pathway"				g17874.t1		
+Cre17.g728700	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g17612.t1;g17612.t1"		
+Cre17.g731500						FAP394	"g17676.t1;Cre17.g731500.t1.1;g17676.t1;Cre17.g731500.t1.1"	"FAP394;FAP394"	"Contains a TIR domain that are also found in bacterial Toll-like receptors and has a right handed beta helix region;Contains a TIR domain that are also found in bacterial Toll-like receptors and has a right handed beta helix region"
+Cre17.g712742			Chloroplast						
+Cre17.g747297			"Secretory pathway"	GO:0004045	"aminoacyl-tRNA hydrolase activity"	FAP37	"g18062.t1;Cre05.g230000.t1.2;Cre05.g230000.t1.1"	FAP37	"Peptidyl-tRNA hydrolase family"
+Cre17.g702850	GMM:34.21	transport.calcium	Mitochondrion	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	CAV5	"g17038.t1;CAV5"	CAV5	"Voltage-dependent 4-domain calcium channel, alpha subunit; may exhibit altered ion selectivity as conserved P-loop loci differ from mammalian Ca2+ channels (PMID: 8968582)"
+Cre17.g719651									
+Cre17.g737800			Chloroplast						
+Cre17.g719500			Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	AOF9	"g17410.t1;AOF9"		"Flavin-containing amine oxidase, possibly a carotene 7,8-desaturase (see ZDS1)"
+Cre17.g696300	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0003676	"nucleic acid binding"		"g16890.t1;g16890.t1;g16890.t1;g16890.t1"		
+Cre17.g709900	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g17194.t1;g17194.t1"		
+Cre17.g726526									
+Cre17.g698903	GMM:2.1.2.4	"major CHO metabolism.synthesis.starch.debranching"	Chloroplast				"g16952.t1;Cre17.g698903.t1.1"		
+Cre17.g724500			"Secretory pathway"				"g17522.t1;g17522.t1;g17522.t1"		
+Cre17.g720850							"g17445.t1;Cre17.g720850.t1.1"		
+Cre17.g713600	GMM:29.5.1	protein.degradation.subtilases	Chloroplast	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SUB13	"g17279.t1;SUB13;g17279.t1;SUB13;SUB13;g17279.t1;g17279.t1;SUB13"		
+Cre17.g737250	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	"GTP binding"	EFG5	"g17832.t1;Cre17.g737250.t1.1"	EFG5	"similar to translation elongation factor EFG, but N-terminal domain identifies it as U5-116kDa protein; involved in pre-mRNA splicing"
+Cre17.g742050							"g17946.t1;Cre17.g742050.t1.1"		
+Cre17.g719750			Mitochondrion				g17417.t1		
+Cre17.g697900			Chloroplast						
+Cre17.g739466			Chloroplast						
+Cre17.g700300	"GMM:29.5.9;GMM:29.5.11.20"	"protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom"		GO:0005524	"ATP binding"	CGL22	"g16984.t1;g16984.t1;g16984.t1"	"CGL22;CGL22;CGL22"	"Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre17.g715653			Mitochondrion				"Cre17.g715653.t1.1;g17324.t1"		
+Cre17.g724276							g17517.t1		
+Cre17.g717350	GMM:27.1	RNA.processing	Chloroplast	GO:0008033	"tRNA processing"	TRI1	"Cre17.g717350.t1.1;g17364.t1;Cre17.g717350.t1.1;g17364.t1"	"TRI1;TRI1"	
+Cre17.g701050	GMM:27.3.11	"RNA.regulation of transcription.C2H2 zinc finger family"					"g16998.t1;Cre17.g701050.t1.1"		
+Cre17.g707350			Mitochondrion				"Cre17.g707350.t1.1;g17138.t1"		
+Cre17.g729400	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"Cre17.g729400.t1.1;g17629.t1"		
+Cre17.g722500							"g17477.t1;Cre17.g722500.t1.1;Cre17.g722500.t1.1;g17477.t1"		
+Cre17.g729900			Mitochondrion				"Cre17.g729900.t1.1;g17639.t1;g17639.t1;Cre17.g729900.t1.1"		
+Cre17.g739650	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"	MFT1	"Cre17.g739650.t1.1;g17891.t1;MFT1;MAE1"		"putative MATE efflux family protein; related to Arabidopsis ferric reductase defective (FRD3)"
+Cre17.g711700	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA30	"Cre17.g711700.t1.1;g17236.t1;HTA5"	HTA30	"replication linked H2A; histone gene cluster XXX (type 34BA); mapped to LG XIX [PMID: 7479007]"
+Cre17.g736400			Chloroplast			SCC3	"g17812.t1;SCC3"	SCC3	
+Cre17.g703976			Chloroplast						
+Cre17.g704100			"Secretory pathway"				"g17070.t1;Cre17.g704100.t1.1"		
+Cre17.g733752									
+Cre17.g712000	GMM:27.1.1	RNA.processing.splicing		GO:0003676	"nucleic acid binding"	SRS11	"SCL26;SRS16;g17242.t1"	SRS11	"Serine/arginine-rich pre-mRNA splicing factor protein of the SC35-like subfamily"
+Cre17.g697200							g16908.t1		
+Cre17.g734050							"g17745.t1;g17745.t1"		
+Cre17.g708800	GMM:21.2.2	"redox.ascorbate and glutathione.glutathione"		"GO:0006750;GO:0005524;GO:0004363"	"glutathione biosynthetic process;ATP binding;glutathione synthase activity"	GSH2	"GSH2;g17171.t1;GSH2;g17171.t1;g17171.t1;GSH2"	"GSH2;GSH2;GSH2"	"catalyzes the addition of glycine to gamma-glutamylcysteine, forming glutathione (GSH synthetase) [EC:6.3.2.3]; higher plant enzyme is predicted chloroplastic, but found in the cytosol (PMID: 16328783); ts-lethal mutant block at S/M (PMID 29743196);catalyzes the addition of glycine to gamma-glutamylcysteine, forming glutathione (GSH synthetase) [EC:6.3.2.3]; higher plant enzyme is predicted chloroplastic, but found in the cytosol (PMID: 16328783); ts-lethal mutant block at S/M (PMID 29743196);catalyzes the addition of glycine to gamma-glutamylcysteine, forming glutathione (GSH synthetase) [EC:6.3.2.3]; higher plant enzyme is predicted chloroplastic, but found in the cytosol (PMID: 16328783); ts-lethal mutant block at S/M (PMID 29743196)"
+Cre17.g706300	GMM:28.2	DNA.repair		"GO:0016818;GO:0016787;GO:0008026;GO:0006139;GO:0005634;GO:0005524;GO:0003677;GO:0003676"	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;hydrolase activity;ATP-dependent helicase activity;nucleobase-containing compound metabolic process;nucleus;ATP binding;DNA binding;nucleic acid binding"	XPD1	"RAD3C;XPD1;g17117.t1;g17117.t1;XPD1;RAD3C"	"XPD1;XPD1"	"DNA repair helicase. Related to human XPD and yeast Rad3p.;DNA repair helicase. Related to human XPD and yeast Rad3p."
+Cre17.g738632							"Cre17.g738700.t1.1;RLS13;g17867.t1"		"Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770 SAND; PF01342)"
+Cre17.g704802			"Secretory pathway"						
+Cre17.g730400	GMM:3.3	"minor CHO metabolism.sugar alcohols"	"Secretory pathway"				"g17650.t1;g17650.t1;g17650.t1;g17650.t1;g17650.t1;g17650.t1"		
+Cre17.g699100	GMM:33.1	"development.storage proteins"	Mitochondrion	"GO:0006629;GO:0004806"	"lipid metabolic process;triglyceride lipase activity"	TGL20	"g16956.t1;TGL20;LIP4;SDP1"	TAGL1	"Orthologous to Sugar Dependent 1 (SDP1) in Arabidopsis thaliana"
+Cre17.g696400	"GMM:29.5;GMM:29.2.1.1.3.2.1712"	"protein.degradation;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L7/L12"	Chloroplast	GO:0030163	"protein catabolic process"	CLPS1	"g16892.t1;g16892.t1"	"CLPS1;CLPS1"	"Probably chloroplastic; homologous to E. coli ClpS [PMID: 11931773] and to At1g68660 [PMID: 12576022], but not to the plant-specific ClpT subunits of the ClpP complex (initially called ClpS; PMID: 14593120);Probably chloroplastic; homologous to E. coli ClpS [PMID: 11931773] and to At1g68660 [PMID: 12576022], but not to the plant-specific ClpT subunits of the ClpP complex (initially called ClpS; PMID: 14593120)"
+Cre17.g745247			Mitochondrion				"g18021.t1;Cre20.g759629.t1.1"		
+Cre17.g742700	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	"Secretory pathway"	GO:0005515	"protein binding"	CGLD30	"HLM32;g17961.t2;HLM32;g17961.t2"	"CGLD30;CGLD30"	"Conserved in the Green Lineage and Diatoms;Conserved in the Green Lineage and Diatoms"
+Cre17.g725800									
+Cre17.g714229	"GMM:34.15;GMM:27.3.25"	"transport.potassium;RNA.regulation of transcription.MYB domain transcription factor family"	"Secretory pathway"			KUP2	"Cre17.g714229.t1.1;g17294.t1"		
+Cre17.g721300	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"				ASA5	"g17452.t1;ASA5;Cre17.g721300.t1.1;Cre17.g721300.t1.1;ASA5;g17452.t1;Cre17.g721300.t1.1;g17452.t1;ASA5;ASA5;g17452.t1;Cre17.g721300.t1.1"	"ASA5;ASA5;ASA5;ASA5"	"Mitochondrial ATP synthase associated protein 5; part of peripheral stalk involed in dimerization; unknown evolutionary origin [PMID: 11744727, PMID: 15710684];Mitochondrial ATP synthase associated protein 5; part of peripheral stalk involed in dimerization; unknown evolutionary origin [PMID: 11744727, PMID: 15710684];Mitochondrial ATP synthase associated protein 5; part of peripheral stalk involed in dimerization; unknown evolutionary origin [PMID: 11744727, PMID: 15710684];Mitochondrial ATP synthase associated protein 5; part of peripheral stalk involed in dimerization; unknown evolutionary origin [PMID: 11744727, PMID: 15710684]"
+Cre17.g701800									
+Cre17.g722800	"GMM:29.5;GMM:29.3.2"	"protein.degradation;protein.targeting.mitochondria"	Mitochondrion			MPPA1	"MPPA1;MAS2;g17486.t1;Cre17.g722800.t1.1"	MPPA1	"Mitochondrial processing peptidase alpha subunit, mitochondrial precursor (Alpha-MPP) (MAS2)"
+Cre17.g698600	GMM:11.9.2.1	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase"		GO:0006629	"lipid metabolic process"	LIP3	"g16944.t1;LIP3;LIPG3"		"related to triacylglycerol lipase precursor (Gastric lipase) (GL)(Pregastric esterase) (PGE)and lipase 3 precursor (LIP3)"
+Cre17.g711450						SYP8	"g17228.t1;SYP8;g17228.t1;SYP8"	"SYP8;SYP8"	"Involved in Endoplasmic Reticulum trafficking; belongs to Syntaxin18/Syx18/Ufe1/Syp8 family (Qa.I);Involved in Endoplasmic Reticulum trafficking; belongs to Syntaxin18/Syx18/Ufe1/Syp8 family (Qa.I)"
+Cre17.g718500	"GMM:31.6.1.9;GMM:29.5.7"	"cell.motility.eukaryotes.flagellar adhesion and gamete fusion;protein.degradation.metalloprotease"	"Secretory pathway"			MMP1	"g17389.t1;MMP1;MMP2;GLE1;GLE1;g17389.t1;MMP1;MMP2;MMP2;g17389.t1;GLE1;MMP1"	"MMP1;MMP1;MMP1"	"Matrix Metalloprotease 2; Expressed in young zygotes [GI:15718393, PMID: 11680823];Matrix Metalloprotease 2; Expressed in young zygotes [GI:15718393, PMID: 11680823];Matrix Metalloprotease 2; Expressed in young zygotes [GI:15718393, PMID: 11680823]"
+Cre17.g736584			"Secretory pathway"						
+Cre17.g740300									
+Cre17.g701450	"GMM:3.5;GMM:1.1.99.1"	"minor CHO metabolism.others;PS.lightreaction.unspecified.TEF"	"Secretory pathway"				"g17006.t1;g17006.t1"		
+Cre17.g714300							"g17296.t1;Cre17.g714300.t1.1"		
+Cre17.g727350				"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	MRPL23	"g17585.t1;Cre17.g727350.t1.1;uL23m"	MRPL23	
+Cre17.g718185							"g17381.t1;Cre17.g718185.t1.1;g17381.t1;Cre17.g718185.t1.1"		
+Cre17.g708450	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			MMP33	"g17164.t1;MMP33;g17164.t1;MMP33"	"MMP33;MMP33"	"Matrix metalloproteinase belonging to the M11 peptidase family;Matrix metalloproteinase belonging to the M11 peptidase family"
+Cre17.g710700			Chloroplast				"Cre17.g710700.t1.1;g17210.t1;Cre17.g710700.t1.1;g17210.t1;Cre17.g710700.t1.1;g17210.t1"		
+Cre17.g740550			"Secretory pathway"				"GT90F33;GT90-33;g17913.t1"		
+Cre17.g722300			"Secretory pathway"				"g17473.t1;g17473.t1"		"Amidated at an internal site by peptidylglycine alpha-amidating monooxygenase;Amidated at an internal site by peptidylglycine alpha-amidating monooxygenase"
+Cre17.g730150			Chloroplast				"g17645.t1;g17645.t1"		
+Cre17.g720400	GMM:34.12	transport.metal	Chloroplast	"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"	HMA1	"g17436.t1;g17436.t1"	"HMA1;HMA1"	"Heavy metal transporting ATPase (HMA), P-type ATPase superfamily, membrane protein; Ortholog of HMA1 from A. thaliana; Like AtHMA1, the Chlamydomonas protein has an uncharacteristic Ser/Pro/Cys motif in the sixth transmembrane domain instead of the common Cys-Pro-Cys/His/Ser motif of HMAs [PMID: 15710683].;Heavy metal transporting ATPase (HMA), P-type ATPase superfamily, membrane protein; Ortholog of HMA1 from A. thaliana; Like AtHMA1, the Chlamydomonas protein has an uncharacteristic Ser/Pro/Cys motif in the sixth transmembrane domain instead of the common Cys-Pro-Cys/His/Ser motif of HMAs [PMID: 15710683]."
+Cre17.g743697			Mitochondrion				g17989.t1		
+Cre17.g738700			Mitochondrion						
+Cre17.g718468			"Secretory pathway"				"g17388.t1;Cre17.g718468.t1.1"		
+Cre17.g735900			Mitochondrion				g17802.t1		
+Cre17.g717950	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC28	"g17376.t2;PHC28"	PHC6	"pherophorin-C6 (PHC6) [PMID: 16367971; Genbank entry DQ196112]; belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain"
+Cre17.g732150			Mitochondrion			FAP130	"Cre17.g732150.t1.1;g17694.t1;FAP130b;FAP130b;g17694.t1;Cre17.g732150.t1.1"	"FAP130;FAP130"	"Flagellar Associated Protein, found in the flagellar proteome. Probably has 2 alternative transcripts;Flagellar Associated Protein, found in the flagellar proteome. Probably has 2 alternative transcripts"
+Cre17.g710879									
+Cre17.g699200							"Cre17.g699200.t1.1;g16958.t1"		
+Cre17.g710550	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HFO29	"Cre17.g710550.t1.1;g17207.t1"	HFO29	"Replication linked H4; histone gene cluster XXIX (type 43BA)"
+Cre17.g719325						MAW5			
+Cre17.g699750						CTL2	"g16969.t1;CTL2;g16969.t1;CTL2"		"Contains a pherophorin domain and a C-terminal C-type lectin domain responsible for carbohydrate binding activity;Contains a pherophorin domain and a C-terminal C-type lectin domain responsible for carbohydrate binding activity"
+Cre17.g746747							g18051.t1		
+Cre17.g722250			Chloroplast				"g17472.t1;RRM14"	RRM14	
+Cre17.g740470			"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"				
+Cre17.g720000			Cytosol	GO:0005524	"ATP binding"	CCT9	"g17426.t1;CCT9;g17426.t1;CCT9"	"CCT9;CCT9"	"T-complex protein 1, eta subunit (TCP-1-eta) (CCT-eta) (TCPF); subunit of cytosolic chaperonin complex;T-complex protein 1, eta subunit (TCP-1-eta) (CCT-eta) (TCPF); subunit of cytosolic chaperonin complex"
+Cre17.g723300	"GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4;GMM:27.3.99"	"cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification;RNA.regulation of transcription.unclassified"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g17496.t1;g17496.t1;g17496.t1;g17496.t1;g17496.t1;g17496.t1"		
+Cre17.g697406			Mitochondrion				"g16913.t1;Cre17.g697406.t1.1"		
+Cre17.g738350			"Secretory pathway"	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"	PGA5	"g17859.t1;PGA5;Cre17.g738350.t1.1"	LPAAT2	
+Cre17.g733600							g17729.t1		
+Cre17.g733652							g17730.t1		
+Cre17.g714600	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO33	"g17302.t1;Cre17.g714600.t1.1"	HFO33	"replication linked H4; histone gene cluster XXXIII (type 34BA)"
+Cre17.g700133	GMM:29.4	"protein.postranslational modification"				WNK1	"g16980.t1;WNK1;WNK1;g16980.t1"		"WNK (With No Lysine) protein kinase homolog;WNK (With No Lysine) protein kinase homolog"
+Cre17.g713025	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	DNJ33	"DNJ33;Cre17.g713050.t2.1;g17265.t1;g17265.t1;DNJ33;Cre17.g713050.t2.1;Cre17.g713050.t2.1;g17265.t1;DNJ33;Cre17.g713050.t2.1;DNJ33;g17265.t1;Cre17.g713050.t2.1;g17265.t1;DNJ33;Cre17.g713050.t2.1;g17265.t1;DNJ33;g17265.t1;Cre17.g713050.t2.1;DNJ33"		
+Cre17.g702250			Chloroplast				"g17025.t1;TRP4;TRP4;g17025.t1;TRP4;g17025.t1;TRP4;g17025.t1"		"TRP-like ion channel protein. Predicted 5TMH (trans-membrane-helices);TRP-like ion channel protein. Predicted 5TMH (trans-membrane-helices);TRP-like ion channel protein. Predicted 5TMH (trans-membrane-helices);TRP-like ion channel protein. Predicted 5TMH (trans-membrane-helices)"
+Cre17.g728900			Mitochondrion	GO:0005975	"carbohydrate metabolic process"	TAL3	"TAL3;FSA1;g17617.t1;Cre17.g728900.t1.1"	TAL3	"Putative fructose-6-P aldolase; similar to a novel class I aldolase from E coli (GI:418514); EC:2.2.1.-"
+Cre17.g730817			Chloroplast						
+Cre17.g721600	"GMM:29.5.11.1;GMM:27.1"	"protein.degradation.ubiquitin.ubiquitin;RNA.processing"		"GO:0036459;GO:0016579"	"thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination"		g17459.t1		
+Cre17.g738400			"Secretory pathway"				"Cre17.g738400.t1.1;g17860.t1"		
+Cre17.g743269									
+Cre17.g697300	GMM:29.5.3	"protein.degradation.cysteine protease"		"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP16	"g16910.t1;CEP16;CEP16;g16910.t1;CEP16;g16910.t1;CEP16;g16910.t1;CEP16;g16910.t1"		"Cysteine-type endopeptidase, papain type;Cysteine-type endopeptidase, papain type;Cysteine-type endopeptidase, papain type;Cysteine-type endopeptidase, papain type;Cysteine-type endopeptidase, papain type"
+Cre17.g745997			Chloroplast				"Cre20.g759000.t1.2;Cre20.g759000.t1.1;g18036.t1"		
+Cre17.g722675			Chloroplast				"g17483.t1;Cre17.g722657.t1.2"		
+Cre17.g708025									
+Cre17.g703250	"GMM:34.99;GMM:34"	"transport.misc;transport"					"TPT28;Cre17.g703250.t1.1;TPT29;g17050.t1"		
+Cre17.g735021							g17785.t2		
+Cre17.g703101			Chloroplast						
+Cre17.g736050			"Secretory pathway"				"g17805.t1;Cre17.g736050.t1.1"		
+Cre17.g703473									
+Cre17.g741900	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g17943.t2;g17943.t2;g17943.t2;g17943.t2;g17943.t2;g17943.t2"		
+Cre17.g724900							"Cre17.g724900.t1.1;g17531.t1;g17531.t1;Cre17.g724900.t1.1;g17531.t1;Cre17.g724900.t1.1"		
+Cre17.g734596			Mitochondrion				"Cre15.g644950.t1.2;Cre15.g644950.t1.1;g17766.t1"		
+Cre17.g707800	"GMM:30.1;GMM:29.4.1;GMM:29.4"	"signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g17147.t1;Cre17.g707800.t1.1;CKIN2.10"	SNRK2J	"Mediates abiotic stress responses"
+Cre17.g732400			Chloroplast				"g17699.t1;g17699.t1"		
+Cre17.g713850	GMM:13.1.5.3.2	"amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.SAT"	Chloroplast	"GO:0009001;GO:0006535;GO:0005737"	"serine O-acetyltransferase activity;cysteine biosynthetic process from serine;cytoplasm"	SAT2	"DIV184;SAT2;g17286.t1;DIV184;g17286.t1;SAT2"	"SAT2;SAT2"	"serine O-acetyl transferase (EC 2.3.1.30); plastid targeting weakly predicted by Target-P; involved in cysteine and methionine biosynthesis; one of three paralogs;serine O-acetyl transferase (EC 2.3.1.30); plastid targeting weakly predicted by Target-P; involved in cysteine and methionine biosynthesis; one of three paralogs"
+Cre17.g716000							"Cre17.g716000.t1.1;g17332.t1"		
+Cre17.g732700			Chloroplast	"GO:0055070;GO:0005507"	"copper ion homeostasis;copper ion binding"	CUTC1	"Cre17.g732700.t1.1;CUT2;g17706.t1;CUTC"	CUTC1	
+Cre17.g738250	GMM:16.1.5	"secondary metabolism.isoprenoids.terpenoids"	Chloroplast	GO:0016765	"transferase activity, transferring alkyl or aryl (other than methyl) groups"		"g17857.t1;g17857.t1"		
+Cre17.g747947									
+Cre17.g717550									
+Cre17.g744997			Mitochondrion				"g18016.t1;Cre20.g759750.t1.1;PNO4;g18016.t1;PNO4;Cre20.g759750.t1.1;Cre20.g759750.t1.1;PNO4;g18016.t1"		
+Cre17.g707850				GO:0003677	"DNA binding"		"g17148.t1;Cre17.g707850.t1.1"		
+Cre17.g705600	GMM:11.2.1	"lipid metabolism.FA desaturation.desaturase"	"Secretory pathway"	GO:0006629	"lipid metabolic process"		"Cre17.g705600.t1.1;g17101.t1;Cre17.g705600.t1.1;g17101.t1"		
+Cre17.g712850	GMM:21.1	redox.thioredoxin	"Secretory pathway"	GO:0045454	"cell redox homeostasis"	TRX23	"TRL9;g17261.t1;TRX23"		
+Cre17.g731850	"GMM:26.8;GMM:26.22"	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;misc.short chain dehydrogenase/reductase (SDR)"	Mitochondrion				"SDR29;g17688.t1;Cre17.g731850.t1.1"		"2,4-dienoyl-CoA reductase (NADPH-dependent), putatively peroxisomal"
+Cre17.g707500	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast				"TOC120;g17141.t1;Cre17.g707500.t1.1;Cre17.g707500.t1.1;TOC120;g17141.t1"	"TOC159;TOC159"	"GTPase involved in recognition of the chloroplast transit peptide; most closely related to Arabidopsis TOC120 and TOC132, more distantly to TOC159; lacks the acidic N-terminal domain found in most land-plant orthologs, found instead on TOC34: this could affect the discrimnation between mt and cp transit peptides;;GTPase involved in recognition of the chloroplast transit peptide; most closely related to Arabidopsis TOC120 and TOC132, more distantly to TOC159; lacks the acidic N-terminal domain found in most land-plant orthologs, found instead on TOC34: this could affect the discrimnation between mt and cp transit peptides;"
+Cre17.g733050									
+Cre17.g730483			Chloroplast				"g17652.t1;Cre17.g730455.t1.2;g17652.t1;Cre17.g730455.t1.2;Cre17.g730455.t1.2;g17652.t1"		
+Cre17.g696900	"GMM:30.2.24;GMM:29.4"	"signalling.receptor kinases.S-locus glycoprotein like;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"STPK20;g16903.t1;STK20;STPK20;g16903.t1;STK20;g16903.t1;STPK20;STK20;g16903.t1;STPK20;STK20"		"Serine/Threonine Protein Kinase Homolog 20, putative;Serine/Threonine Protein Kinase Homolog 20, putative;Serine/Threonine Protein Kinase Homolog 20, putative;Serine/Threonine Protein Kinase Homolog 20, putative"
+Cre17.g746597	GMM:29.5.5	"protein.degradation.serine protease"	"Secretory pathway"	"GO:0006508;GO:0004185"	"proteolysis;serine-type carboxypeptidase activity"		"g18048.t2;Cre20.g758550.t1.1;Cre20.g758550.t1.1;g18048.t2;Cre20.g758550.t1.1;g18048.t2"		
+Cre17.g739350			"Secretory pathway"				g17880.t1		
+Cre17.g745347	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"					"g18023.t2;Cre20.g759600.t1.1;Cre20.g759600.t1.1;g18023.t2;g18023.t2;Cre20.g759600.t1.1"		
+Cre17.g703350			Chloroplast						
+Cre17.g708200	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO26	"HFO36;Cre17.g708200.t1.1;g17159.t1"	HFO26	"Replication linked H4; histone gene cluster XXVI (type 43)"
+Cre17.g712300			Chloroplast				"g17249.t1;g17249.t1;g17249.t1"		
+Cre17.g710200			Chloroplast	GO:0020037	"heme binding"	IAD1	"IAD1;g17200.t2;g17200.t2;IAD1"	"IAD1;IAD1"	"contains WD4 repeats;contains WD4 repeats"
+Cre17.g720700	GMM:31.1	cell.organisation	Chloroplast			ANK14	"g17442.t2;ANK14"		"Protein of unknown function with ankyrin repeats"
+Cre17.g729050							"g17621.t1;g17621.t1"		
+Cre17.g699000	GMM:2.2.1.2	"major CHO metabolism.degradation.acetate metabolism.phosphate acetyltransferase"	Mitochondrion	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"	PAT1	"g16954.t1;Cre17.g699000.t1.1"	PAT1	"Putative phosphate acetyltransferase (EC 2.3.1.8); phosphotransacetylase; similarity to prokaryotic phosphate acetyltransferase (e.g., Desulfovibrio GenBank AAS975)"
+Cre17.g727801			Mitochondrion				"g17594.t1;Cre17.g727800.t1.3"		
+Cre17.g746097							"Cre68.g793900.t1.1;g18038.t1;g18038.t1;Cre68.g793900.t1.1"		
+Cre17.g735700			"Secretory pathway"				"Cre17.g735700.t1.1;g17797.t1"		
+Cre17.g725700									
+Cre17.g700850							"Cre17.g700850.t1.1;g16994.t1"		
+Cre17.g720950	GMM:17.3.1.1.1	"hormone metabolism.brassinosteroid.synthesis-degradation.BRs.DET2"	"Secretory pathway"	"GO:0016627;GO:0016021;GO:0006629;GO:0005737"	"oxidoreductase activity, acting on the CH-CH group of donors;integral component of membrane;lipid metabolic process;cytoplasm"	srd3	"SRD3;g17447.t1"		"Similar to steroid 5-alpha-reductase"
+Cre17.g736750							"g17821.t1;g17821.t1;g17821.t1"		
+Cre17.g744047			Chloroplast						
+Cre17.g716200	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	SUM6	"Cre17.g716200.t1.1;SUM6;g17337.t1;SUMO89B"		"Belongs to a cluster of 4 closely-related genes coding for fusion proteins between a Gibberellin 2-beta-dioxygenase domain and a C-terminal SUMO domain; does not contain the C-terminal GG motif, but GN; post-translational modification by SUMO modulates many important cellular processes"
+Cre17.g715550							g17322.t1		
+Cre17.g719550							"g17413.t1;Cre17.g719550.t1.1"		
+Cre17.g744647							"g18009.t1;Cre20.g760050.t1.1;Cre20.g760050.t1.1;g18009.t1;Cre20.g760050.t1.1;g18009.t1"		
+Cre17.g728976			"Secretory pathway"	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"		g17619.t1		
+Cre17.g733800							g17739.t1		
+Cre17.g741400			"Secretory pathway"						
+Cre17.g734628	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					"Cre15.g645050.t1.2;Cre15.g645050.t1.1;g17769.t1"		
+Cre17.g696700			"Secretory pathway"			PHC22	"g16899.t1;PHC22;Cre17.g696700.t1.1"	PHC22	"Pherophorin-C22 (PHC22) [PMID: 16367971]; belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre17.g707250				"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT29	"MFT29;g17136.t1;Cre17.g707250.t1.1"		Permease
+Cre17.g711100	GMM:27.3.42	"RNA.regulation of transcription.bromodomain proteins"		GO:0005515	"protein binding"		g17221.t1		
+Cre17.g734564			Chloroplast			MDH1	"OPR100;Cre15.g644900.t1.1;MDH1;g17764.t1;OPR100;Cre15.g644900.t1.1;MDH1;g17764.t1;Cre15.g644900.t1.1;MDH1;g17764.t1;OPR100;Cre15.g644900.t1.1;OPR100;g17764.t1;MDH1;MDH1;g17764.t1;Cre15.g644900.t1.1;OPR100;OPR100;MDH1;g17764.t1;Cre15.g644900.t1.1;g17764.t1;MDH1;Cre15.g644900.t1.1;OPR100;Cre15.g644900.t1.1;OPR100;g17764.t1;MDH1;MDH1;g17764.t1;OPR100;Cre15.g644900.t1.1;OPR100;Cre15.g644900.t1.1;MDH1;g17764.t1;OPR100;Cre15.g644900.t1.1;MDH1;g17764.t1"	"MTHI1;MTHI1;MTHI1;MTHI1;MTHI1;MTHI1;MTHI1;MTHI1;MTHI1;MTHI1;MTHI1"	"Stabilizes atpH mRNA and promotes translation of atpI; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; molecular mapping indicates that the gene is on chromosome 15 (formerly ), not 17; Originally identified in the ac46 mutant strain, which does not express the chloroplast-encoded AtpH subunit; Originally named as MDH1;Stabilizes atpH mRNA and promotes translation of atpI; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; molecular mapping indicates that the gene is on chromosome 15 (formerly ), not 17; Originally identified in the ac46 mutant strain, which does not express the chloroplast-encoded AtpH subunit; Originally named as MDH1;Stabilizes atpH mRNA and promotes translation of atpI; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; molecular mapping indicates that the gene is on chromosome 15 (formerly ), not 17; Originally identified in the ac46 mutant strain, which does not express the chloroplast-encoded AtpH subunit; Originally named as MDH1;Stabilizes atpH mRNA and promotes translation of atpI; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; molecular mapping indicates that the gene is on chromosome 15 (formerly ), not 17; Originally identified in the ac46 mutant strain, which does not express the chloroplast-encoded AtpH subunit; Originally named as MDH1;Stabilizes atpH mRNA and promotes translation of atpI; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; molecular mapping indicates that the gene is on chromosome 15 (formerly ), not 17; Originally identified in the ac46 mutant strain, which does not express the chloroplast-encoded AtpH subunit; Originally named as MDH1;Stabilizes atpH mRNA and promotes translation of atpI; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; molecular mapping indicates that the gene is on chromosome 15 (formerly ), not 17; Originally identified in the ac46 mutant strain, which does not express the chloroplast-encoded AtpH subunit; Originally named as MDH1;Stabilizes atpH mRNA and promotes translation of atpI; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; molecular mapping indicates that the gene is on chromosome 15 (formerly ), not 17; Originally identified in the ac46 mutant strain, which does not express the chloroplast-encoded AtpH subunit; Originally named as MDH1;Stabilizes atpH mRNA and promotes translation of atpI; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; molecular mapping indicates that the gene is on chromosome 15 (formerly ), not 17; Originally identified in the ac46 mutant strain, which does not express the chloroplast-encoded AtpH subunit; Originally named as MDH1;Stabilizes atpH mRNA and promotes translation of atpI; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; molecular mapping indicates that the gene is on chromosome 15 (formerly ), not 17; Originally identified in the ac46 mutant strain, which does not express the chloroplast-encoded AtpH subunit; Originally named as MDH1;Stabilizes atpH mRNA and promotes translation of atpI; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; molecular mapping indicates that the gene is on chromosome 15 (formerly ), not 17; Originally identified in the ac46 mutant strain, which does not express the chloroplast-encoded AtpH subunit; Originally named as MDH1;Stabilizes atpH mRNA and promotes translation of atpI; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; molecular mapping indicates that the gene is on chromosome 15 (formerly ), not 17; Originally identified in the ac46 mutant strain, which does not express the chloroplast-encoded AtpH subunit; Originally named as MDH1"
+Cre17.g736329			Mitochondrion				"g17810.t1;Cre17.g736329.t1.1"		
+Cre17.g716700							"g17351.t1;g17351.t1;g17351.t1"		
+Cre17.g720100			Mitochondrion				"g17428.t1;Cre17.g720100.t1.1"		
+Cre17.g734741			Chloroplast						
+Cre17.g702800			Mitochondrion				"Cre17.g702800.t1.1;g17037.t1;Cre17.g702800.t1.1;g17037.t1"		
+Cre17.g700950	"GMM:7.3;GMM:21.99;GMM:1.1.5.2"	"OPP.electron transfer;redox.misc;PS.lightreaction.other electron carrier (ox/red).ferredoxin"	Chloroplast	"GO:0051536;GO:0009055"	"iron-sulfur cluster binding;electron carrier activity"	FDX5	"Cre17.g700950.t1.1;g16996.t1"	FDX5	"Fe2S2 containing redox protein; Chloroplast localized"
+Cre17.g713575							g17278.t1		
+Cre17.g717000				"GO:0006508;GO:0004176"	"proteolysis;ATP-dependent peptidase activity"		g17357.t1		
+Cre17.g737702	"GMM:30.2.12;GMM:30.2.11"	"signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI"							
+Cre17.g699350							"g16961.t1;SMM51;SMM51;g16961.t1"		
+Cre17.g718050							"Cre17.g718050.t1.1;g17378.t1;Cre17.g718050.t1.1;g17378.t1"		
+Cre17.g737463				GO:0005515	"protein binding"				
+Cre17.g734134									
+Cre17.g748047			"Secretory pathway"						
+Cre17.g736618			Chloroplast				"Cre17.g736618.t1.1;g17818.t1"		
+Cre17.g733986									
+Cre17.g740000							"g17898.t1;g17898.t1;g17898.t1"		
+Cre17.g728400	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		g17606.t2		
+Cre17.g727300	GMM:17.7.1.5	"hormone metabolism.jasmonate.synthesis-degradation.12-oxophytodienoate reductase 3"	Chloroplast	"GO:0055114;GO:0016491;GO:0010181"	"oxidation-reduction process;oxidoreductase activity;FMN binding"	NFO2	"g17583.t1;Cre17.g727300.t1.1;NFO2;NFO2;g17583.t1;Cre17.g727300.t1.1"	"NFO2;NFO2"	"Possible N-ethylmaleimide reductase;Possible N-ethylmaleimide reductase"
+Cre17.g729350				"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g17627.t1;g17627.t1;g17627.t1;g17627.t1"		
+Cre17.g745747	"GMM:20.1;GMM:2.1"	"stress.biotic;major CHO metabolism.synthesis"					"Cre20.g759200.t1.1;g18031.t2"		
+Cre17.g726800			Mitochondrion				"g17573.t1;Cre17.g726800.t1.1;Cre17.g726800.t1.1;g17573.t1"		
+Cre17.g718100	"GMM:34.99;GMM:29.3.4.99"	"transport.misc;protein.targeting.secretory pathway.unspecified"					"g17379.t1;Cre17.g718100.t1.1;Cre17.g718100.t1.1;g17379.t1;Cre17.g718100.t1.1;g17379.t1"		
+Cre17.g701350	GMM:27.1.19	RNA.processing.ribonucleases		"GO:0004523;GO:0003723"	"RNA-DNA hybrid ribonuclease activity;RNA binding"		g17004.t3		
+Cre17.g718750	GMM:26.23	misc.rhodanese		GO:0005509	"calcium ion binding"	FAP309	"g17394.t1;Cre17.g718750.t1.1"	FAP309	
+Cre17.g713400	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA31	"HTA22;g17274.t1;Cre17.g713400.t1.1;HTA25"	HTA31	"replication linked H2A; histone gene cluster XXXI (type 34BA)"
+Cre17.g724200	"GMM:27.4;GMM:27.3.99"	"RNA.RNA binding;RNA.regulation of transcription.unclassified"		GO:0003723	"RNA binding"	LAL1	"g17515.t1;LAL1;Cre17.g724200.t1.1"		"contains an N-terminal La domain, two RRMs (RRM-3 at 318-423) and a very strong Nuclear Localization Signal; similar to At4g32720 which functions in Arabidopsis as a genuine La protein (PMID: 17459889); likely involved in stabilization and processsing of PolIII- and PolII-transcribed non coding RNAs (tRNAs, snRNAs, U3 snoRNA)"
+Cre17.g704750			Chloroplast				"g17083.t1;g17083.t1;g17083.t1;g17083.t1"		
+Cre17.g731571			Chloroplast				g17679.t1		
+Cre17.g705500			"Secretory pathway"			PHC23	"g17099.t1;PHC23;g17099.t1;PHC23"		
+Cre17.g706200				"GO:0016021;GO:0016020;GO:0006811"	"integral component of membrane;membrane;ion transport"		"g17115.t1;Cre17.g706200.t1.1"		
+Cre17.g737050	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"					"g17827.t1;Cre17.g737050.t1.1"		
+Cre17.g699900	GMM:3.5	"minor CHO metabolism.others"					"AKR10;g16973.t1;Cre17.g699900.t1.1"		"Probable aldo/keto reductase (related to aryl-alcohol dehydrogenases)"
+Cre17.g703400			"Secretory pathway"				g17053.t1		
+Cre17.g730575			Mitochondrion						
+Cre17.g723600	GMM:31.6.1.3.2.2	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B"		"GO:0042384;GO:0042073;GO:0030992;GO:0015631"	"cilium assembly;intraciliary transport;intraciliary transport particle B;tubulin binding"	IFT81	"FLA9;g17502.t1;Cre17.g723600.t1.1"	IFT81	"Component of IFT-B1 particle"
+Cre17.g735250			Mitochondrion				"g17787.t1;Cre17.g735250.t1.1"		
+Cre17.g698800	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0046872	"metal ion binding"		"Cre17.g698800.t1.1;g16949.t1"		
+Cre17.g734250	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g17753.t1;g17753.t1;g17753.t1"		
+Cre17.g727750							g17593.t1		
+Cre17.g720550							"Cre17.g720550.t1.1;g17440.t1"		
+Cre17.g745697	"GMM:30.9;GMM:20.1;GMM:2.1"	"signalling.lipids;stress.biotic;major CHO metabolism.synthesis"					"Cre20.g759250.t1.2;Cre20.g759250.t1.1;g18030.t1;Cre20.g759250.t1.2;g18030.t1;Cre20.g759250.t1.1;Cre20.g759250.t1.2;g18030.t1;Cre20.g759250.t1.1;g18030.t1;Cre20.g759250.t1.1;Cre20.g759250.t1.2"		
+Cre17.g727400	"GMM:35.1.42;GMM:35.1.41"	"not assigned.no ontology.proline rich family;not assigned.no ontology.hydroxyproline rich proteins"				HRP8	"HRP8;g17586.t1"		"cell wall protein; contains (hydroxy)proline-rich (HR) domain with (SP)n repeats"
+Cre17.g729500							"Cre17.g729500.t1.1;g17631.t1"		
+Cre17.g719450	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast				g17409.t1		
+Cre17.g723200			Chloroplast			FAP372	"g17494.t1;Cre17.g723200.t1.1;g17494.t1;Cre17.g723200.t1.1;Cre17.g723200.t1.1;g17494.t1"	"FAP372;FAP372;FAP372"	
+Cre17.g725500			Chloroplast				"g17546.t1;Cre17.g725500.t1.1"		
+Cre17.g730050									
+Cre17.g733900							"g17741.t1;Cre17.g733900.t1.1;g17741.t1;Cre17.g733900.t1.1;Cre17.g733900.t1.1;g17741.t1"		
+Cre17.g735375							"g17790.t1;Cre17.g735375.t1.1"		
+Cre17.g738500			"Secretory pathway"	"GO:0070652;GO:0051297;GO:0051225"	"HAUS complex;centrosome organization;spindle assembly"		"g17862.t1;g17862.t1"		
+Cre17.g719200	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Mitochondrion	GO:0008270	"zinc ion binding"	ZYS1A	"g17405.t1;ZYS1a;Cre17.g719200.t1.1"	ZYS1A	"Putative transcription factor, containing a zinc-finger domain. This is one of a pair of genes, ZYS1a and ZYS1b, present as an inverted tandem repeat, coding for nearly identical proteins. Both copies are transcribed within minutes after zygote formation, and the protein localizes to the nucleus. Production of the protein is affected if mt+, but not mt-, gametes are UV-irradiated before mating -- hinting that the gene may have an involvement in uniparental inheritance of chlpDNA [PMID: 8252638 and PMID: 10"
+Cre17.g699950			Mitochondrion				"g16975.t1;g16975.t1;g16975.t1"		
+Cre17.g710500	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HTR29	"g17206.t1;Cre17.g710500.t1.1"	HTR29	"Replication linked H3; histone gene cluster XXIX (type 43BA)"
+Cre17.g746997	GMM:5.3	fermentation.ADH	Chloroplast	"GO:0055114;GO:0046872;GO:0016491;GO:0008152"	"oxidation-reduction process;metal ion binding;oxidoreductase activity;metabolic process"	ADH1	"ADH1;ADHE1;g18056.t1;ADHE;Cre20.g758200.t1.1;Cre20.g758200.t1.2;ADH1;ADHE1;Cre20.g758200.t1.1;ADHE;g18056.t1;Cre20.g758200.t1.2;Cre20.g758200.t1.2;Cre20.g758200.t1.1;g18056.t1;ADHE;ADH1;ADHE1;ADH1;ADHE1;g18056.t1;Cre20.g758200.t1.1;ADHE;Cre20.g758200.t1.2"	"ADH1;ADH1;ADH1;ADH1"	"Dual function alcohol dehydrogenase / acetaldehyde dehydrogenase [EC:1.1.1.1 /1.2.1.10], probably mitochondrial; Partially duplicated on chromosome 16 (Cre16.g669150 Cre16.g669125); reduction of acetyl-CoA to ethanol and CoA, oxidizing 2 NADH;;Dual function alcohol dehydrogenase / acetaldehyde dehydrogenase [EC:1.1.1.1 /1.2.1.10], probably mitochondrial; Partially duplicated on chromosome 16 (Cre16.g669150 Cre16.g669125); reduction of acetyl-CoA to ethanol and CoA, oxidizing 2 NADH;;Dual function alcohol dehydrogenase / acetaldehyde dehydrogenase [EC:1.1.1.1 /1.2.1.10], probably mitochondrial; Partially duplicated on chromosome 16 (Cre16.g669150 Cre16.g669125); reduction of acetyl-CoA to ethanol and CoA, oxidizing 2 NADH;;Dual function alcohol dehydrogenase / acetaldehyde dehydrogenase [EC:1.1.1.1 /1.2.1.10], probably mitochondrial; Partially duplicated on chromosome 16 (Cre16.g669150 Cre16.g669125); reduction of acetyl-CoA to ethanol and CoA, oxidizing 2 NADH;"
+Cre17.g740390			Chloroplast				"Cre17.g740400.t1.2;g17909.t1"		
+Cre17.g721150			Chloroplast				"g17449.t1;Cre17.g721150.t1.1;g17449.t1;Cre17.g721150.t1.1"		
+Cre17.g697500			Chloroplast				g16915.t1		
+Cre17.g701300							"Cre17.g701300.t1.1;g17003.t1;Cre17.g701300.t1.1;g17003.t1"		
+Cre17.g723550	GMM:3.4.5	"minor CHO metabolism.myo-inositol.inositol phosphatase"	Chloroplast	GO:0046854	"phosphatidylinositol phosphorylation"	CPLD4	"IPP4;g17501.t1;Cre17.g723550.t1.1;IPP4;Cre17.g723550.t1.1;g17501.t1"	"CPLD4;CPLD4"	"Conserved in the Plant Lineage and Diatoms; inositol monophosphatase-related;Conserved in the Plant Lineage and Diatoms; inositol monophosphatase-related"
+Cre17.g702052			"Secretory pathway"						
+Cre17.g726050	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		GO:0005515	"protein binding"		"Cre17.g726050.t1.1;g17557.t1"		"This gene lies in a long intron of the PAP3 gene on the other strand"
+Cre17.g717150						FAP263	"g17360.t1;Cre17.g717150.t1.1;Cre17.g717150.t1.1;g17360.t1;g17360.t1;Cre17.g717150.t1.1"	"FAP263;FAP263;FAP263"	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome;Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome;Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome"
+Cre17.g704550						HRF1	"Cre17.g704550.t1.1;g17079.t1;g17079.t1;Cre17.g704550.t1.1"	"HRF1;HRF1"	
+Cre17.g721200			Chloroplast				"g17450.t1;Cre17.g721200.t1.1;Cre17.g721200.t1.1;g17450.t1;Cre17.g721200.t1.1;g17450.t1"		
+Cre17.g740800			"Secretory pathway"				g17918.t1		
+Cre17.g722900							"g17488.t1;g17488.t1"		
+Cre17.g713950	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR32	"Cre17.g713950.t1.1;HTR21;g17288.t1"	HTR32	"replication linked H3; histone gene cluster XXXII (type 34BA)"
+Cre17.g742300				GO:0005515	"protein binding"	FAP179	"GST14;g17953.t1;GST14;g17953.t1;g17953.t1;GST14"	"FAP179;FAP179;FAP179"	"Flagellar Associated Protein, found in the flagellar proteome. Glutathione-S-transferase with possible prostaglandin-D synthase activity;Flagellar Associated Protein, found in the flagellar proteome. Glutathione-S-transferase with possible prostaglandin-D synthase activity;Flagellar Associated Protein, found in the flagellar proteome. Glutathione-S-transferase with possible prostaglandin-D synthase activity"
+Cre17.g703050			Chloroplast				"Cre17.g703050.t1.1;g17043.t1;Cre17.g703050.t1.1;g17043.t1;Cre17.g703050.t1.1;g17043.t1;Cre17.g703050.t1.1;g17043.t1;g17043.t1;Cre17.g703050.t1.1;g17043.t1;Cre17.g703050.t1.1;Cre17.g703050.t1.1;g17043.t1"		
+Cre17.g712950			Mitochondrion				"g17263.t1;g17263.t1;g17263.t1;g17263.t1;g17263.t1;g17263.t1"		
+Cre17.g740900							"g17920.t1;Cre17.g740900.t1.1"		
+Cre17.g710850	"GMM:34.99;GMM:34.2"	"transport.misc;transport.sugars"					"g17213.t1;TPT4;TPT29;Cre17.g710850.t1.1"		
+Cre17.g733150	GMM:17.4.2	"hormone metabolism.cytokinin.signal transduction"		"GO:0016020;GO:0007165;GO:0000160;GO:0000155"	"membrane;signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity"	COP10	"HKR7;COP12HKR6;COP;COP11;HKR8;g17717.t1;HKR7;COP12HKR6;COP;COP11;HKR8;g17717.t1;g17717.t1;COP;COP12HKR6;COP11;HKR8;HKR7;COP12HKR6;COP;HKR8;COP11;g17717.t1;HKR7;COP12HKR6;COP;COP11;HKR8;g17717.t1;HKR7"	"HKR78;HKR78;HKR78;HKR78;HKR78"	"Encodes two proteins Histidine kinase rhodopsin 7/8 (HKR7 and HKR8), also known as Chlamyopsin 11/12 (COP11 and COP12); contains bacteriorhodopsin, Histine kinase and response regulator receiver domains;;Encodes two proteins Histidine kinase rhodopsin 7/8 (HKR7 and HKR8), also known as Chlamyopsin 11/12 (COP11 and COP12); contains bacteriorhodopsin, Histine kinase and response regulator receiver domains;;Encodes two proteins Histidine kinase rhodopsin 7/8 (HKR7 and HKR8), also known as Chlamyopsin 11/12 (COP11 and COP12); contains bacteriorhodopsin, Histine kinase and response regulator receiver domains;;Encodes two proteins Histidine kinase rhodopsin 7/8 (HKR7 and HKR8), also known as Chlamyopsin 11/12 (COP11 and COP12); contains bacteriorhodopsin, Histine kinase and response regulator receiver domains;;Encodes two proteins Histidine kinase rhodopsin 7/8 (HKR7 and HKR8), also known as Chlamyopsin 11/12 (COP11 and COP12); contains bacteriorhodopsin, Histine kinase and response regulator receiver domains;"
+Cre17.g708901	GMM:30.2.12	"signalling.receptor kinases.leucine rich repeat XII"	"Secretory pathway"				"Cre17.g708900.t1.3;g17173.t1"		
+Cre17.g714700							"g17304.t1;g17304.t1;g17304.t1"		
+Cre17.g743597							"Cre20.g761000.t1.2;mS107;g17987.t1;Cre20.g761000.t1.1"	MRPS107	"an OctotricoPeptide Repeat (OPR) protein (Waltz et al 2021); with PPR protein mS106 form the extenstion of the SSU foot; directly interacts with rRNA fragment S2, where it encapsulates the tip of helix H11"
+Cre17.g723900	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP131	"ROC103;Cre17.g723900.t1.1;g17508.t1"	FAP131	"Found in the flagellar proteome; similar to S926 Novel Nuclear-Encoded Protein; Matsuo et al.'s (2008) roc103 (rhythm of chloroplast 103) circadian bioluminescence rhythm mutant locus map here"
+Cre17.g731591			Mitochondrion				g17681.t1		
+Cre17.g718850	"GMM:29.5;GMM:28.1"	"protein.degradation;DNA.synthesis/chromatin structure"		"GO:0006260;GO:0005634;GO:0003677;GO:0003676"	"DNA replication;nucleus;DNA binding;nucleic acid binding"	RFA1	"RPA70A;g17396.t1;RFA1"	RFA1	"Homologous to eukaryotic RPA 70 kDa subunit; RP-A; RF-A; Replication factor-A protein 1; Single-stranded DNA-binding protein; Chlamydomonas has at least two homologues of RPA70."
+Cre17.g733250	"GMM:31.3.1;GMM:29.6.3.1"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs"	Chloroplast	GO:0006457	"protein folding"	FKB16-4	"g17722.t1;FKB16-4;Cre17.g733250.t1.1;FKB7"	FKB16D	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); probably located in thylakoid lumen (homology to AT3g10060, bipartite TP 27 + RR motif); [PMID: 15701785]"
+Cre17.g718400			Chloroplast	GO:0005515	"protein binding"		"Cre17.g718400.t1.1;g17386.t1;Cre17.g718400.t1.1;g17386.t1;g17386.t1;Cre17.g718400.t1.1"		
+Cre17.g744797			Mitochondrion				"Cre20.g759950.t1.1;g18012.t1;Cre20.g759950.t1.1;g18012.t1"		
+Cre17.g708550	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA27	"HTA20;Cre17.g708550.t1.1;g17166.t1"	HTA27	"replication linked H2A; histone gene cluster XXVII (type 34BA)"
+Cre17.g710900			Chloroplast				"g17217.t1;Cre17.g710900.t1.1"		
+Cre17.g731001			Mitochondrion				"Cre17.g731000.t1.3;g17665.t1;Cre17.g731000.t1.3;g17665.t1"		
+Cre17.g705316						CSB64			
+Cre17.g720528	GMM:30.4.1	"signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase"					"g17439.t1;Cre17.g720528.t1.1"		
+Cre17.g744197			Mitochondrion				"Cre20.g760450.t1.2;Cre20.g760450.t1.1;g18000.t1"		
+Cre17.g711600			Mitochondrion				"g17234.t1;Cre17.g711600.t1.1;Cre17.g711600.t1.1;g17234.t1"		
+Cre17.g724300	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast	"GO:0016020;GO:0015979;GO:0009522"	"membrane;photosynthesis;photosystem I"	PSAK	"PSAK;Cre17.g724300.t1.1;g17518.t1;g17518.t1;PSAK;Cre17.g724300.t1.1;g17518.t1;PSAK;Cre17.g724300.t1.1"	"PSAK1;PSAK1;PSAK1"	"Chloroplast precursor;Chloroplast precursor;Chloroplast precursor"
+Cre17.g715100							"g17311.t1;Cre17.g715100.t1.1"		
+Cre17.g746847	GMM:3.3	"minor CHO metabolism.sugar alcohols"				tnp47	"Cre20.g758351.t1.1;g18053.t1;Cre20.g758351.t1.2;Cre20.g758351.t1.2;g18053.t1;Cre20.g758351.t1.1"		
+Cre17.g698700			Mitochondrion				"g16947.t1;g16947.t1"		
+Cre17.g741950				"GO:0035058;GO:0034464"	"nonmotile primary cilium assembly;BBSome"	BBS1	"BBS1;g17944.t1;BBS1;g17944.t1"	"BBS1;BBS1"	"Component of the core BBSome complex that targets membrane proteins to cilia;Component of the core BBSome complex that targets membrane proteins to cilia"
+Cre17.g711850	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR30	"HTR19;HTR5;g17239.t1;Cre17.g711850.t1.1"	HTR30	"replication linked H3; histone gene cluster XXX (type 34BA); mapped to LG XIX - Walther & Hall (NAR 23:3756-3763; 1995)"
+Cre17.g737150			Chloroplast				"g17830.t1;g17830.t1"		
+Cre17.g729800	"GMM:31.2.5;GMM:29.3.3"	"cell.division.plastid;protein.targeting.chloroplast"	Chloroplast.Stroma.Thylakoid.Membrane	"GO:0051205;GO:0016021"	"protein insertion into membrane;integral component of membrane"	ALB3.2	"Cre17.g729800.t1.1;g17637.t1;ALB3.2"	ALB3B	"One of four proteins related to the Arabidopsis ALBINO3 and yeast OXA1 proteins; located in the chloroplast and involved in the translocation of thylakoid membrane proteins"
+Cre17.g740100							g17900.t1		
+Cre17.g735800							"g17799.t1;Cre17.g735800.t1.1;Cre17.g735800.t1.1;g17799.t1"		
+Cre17.g698299				GO:0046983	"protein dimerization activity"				
+Cre17.g712450							g17252.t1		
+Cre17.g732600	GMM:24	"biodegradation of xenobiotics"	"Secretory pathway"			GOX5	"Cre17.g732600.t1.1;GOX5;g17704.t1;g17704.t1;GOX5;Cre17.g732600.t1.1;GOX5;g17704.t1;Cre17.g732600.t1.1"	"GOX5;GOX5;GOX5"	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); l;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); l;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); l"
+Cre17.g734709			"Secretory pathway"				g17774.t1		
+Cre17.g738800				GO:0005515	"protein binding"		"g17869.t1;Cre17.g738800.t1.1"		
+Cre17.g712050							g17243.t1		
+Cre17.g736150	"GMM:29.4;GMM:28.1"	"protein.postranslational modification;DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0006260;GO:0003887;GO:0003677"	"DNA replication;DNA-directed DNA polymerase activity;DNA binding"	POL1-2	"POL1-2;g17807.t1"	POL1C	"Homologous to prokaryotic DNA polymerase I. Involved in DNA repair and functions in mitochondria (or chloroplast)"
+Cre17.g705100			Chloroplast				g17090.t2		
+Cre17.g741800							"g17941.t1;g17941.t1;g17941.t1;g17941.t1;g17941.t1"		
+Cre17.g706800				"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"g17126.t1;Cre17.g706800.t1.1"		
+Cre17.g697624	GMM:29.1	"protein.aa activation"	Mitochondrion				"g16919.t1;Cre17.g697624.t1.1"		
+Cre17.g741200	GMM:31.1	cell.organisation		"GO:0008017;GO:0005515"	"microtubule binding;protein binding"	EBP1	"EB1;g17927.t1;Cre17.g741200.t1.1;EBP1;EBP1;Cre17.g741200.t1.1;g17927.t1;EB1;EBP1;EB1;g17927.t1;Cre17.g741200.t1.1;Cre17.g741200.t1.1;EB1;g17927.t1;EBP1;EBP1;Cre17.g741200.t1.1;EB1;g17927.t1"	"EBP1;EBP1;EBP1;EBP1;EBP1"	"Microtubule plus-end binding protein; localizes to the tips of the flagella and the proximal ends of basal bodies. Genbank accession AY219336, PMID: 14614822;Microtubule plus-end binding protein; localizes to the tips of the flagella and the proximal ends of basal bodies. Genbank accession AY219336, PMID: 14614822;Microtubule plus-end binding protein; localizes to the tips of the flagella and the proximal ends of basal bodies. Genbank accession AY219336, PMID: 14614822;Microtubule plus-end binding protein; localizes to the tips of the flagella and the proximal ends of basal bodies. Genbank accession AY219336, PMID: 14614822;Microtubule plus-end binding protein; localizes to the tips of the flagella and the proximal ends of basal bodies. Genbank accession AY219336, PMID: 14614822"
+Cre17.g724400			Chloroplast			FAP257	"Cre17.g724400.t1.1;g17520.t1"	FAP257	"Flagellar Associated Protein, found in the flagellar proteome"
+Cre17.g744147	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0031204;GO:0008565;GO:0005524;GO:0003676"	"posttranslational protein targeting to membrane, translocation;protein transporter activity;ATP binding;nucleic acid binding"		"g17999.t1;Cre20.g760500.t1.1"		
+Cre17.g746147			"Secretory pathway"				g18039.t2		
+Cre17.g732350	GMM:24	"biodegradation of xenobiotics"	Mitochondrion			GOX4	"GOX4;g17698.t2;g17698.t2;GOX4;g17698.t2;GOX4;g17698.t2;GOX4;GOX4;g17698.t2;GOX4;g17698.t2;GOX4;g17698.t2;g17698.t2;GOX4"	"GOX4;GOX4;GOX4;GOX4;GOX4;GOX4;GOX4;GOX4"	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); p;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); p;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); p;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); p;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); p;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); p;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); p;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); p"
+Cre17.g732050				GO:0006284	"base-excision repair"	AGE3	"Cre17.g732050.t1.1;g17692.t2;AGE3;Cre17.g732050.t1.1;g17692.t2;AGE3"	"AGE3;AGE3"	"A/G-specific adenine glycosylase/endonuclease III. DNA repair glycosylase involved in base-excision repair, ChromDB DNRG341. Oxidizatively damaged G (8-oxoG) can mispair with A and C.;A/G-specific adenine glycosylase/endonuclease III. DNA repair glycosylase involved in base-excision repair, ChromDB DNRG341. Oxidizatively damaged G (8-oxoG) can mispair with A and C."
+Cre17.g696800			"Secretory pathway"				g16901.t1		
+Cre17.g725000							"g17533.t1;g17533.t1;g17533.t1;g17533.t1"		
+Cre17.g716101	GMM:28.2	DNA.repair		"GO:0034061;GO:0005634;GO:0003677"	"DNA polymerase activity;nucleus;DNA binding"	POLL1	"Cre17.g716100.t1.3;g17335.t1;POLL1;POLL1;Cre17.g716100.t1.3;g17335.t1"	"POLL1;POLL1"	
+Cre17.g722000				"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT30	"MFT30;g17467.t1;SOC1"		"Solute carrier protein"
+Cre17.g726400	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"	Chloroplast	"GO:0016021;GO:0005783"	"integral component of membrane;endoplasmic reticulum"		"g17564.t1;g17564.t1;g17564.t1"		
+Cre17.g738950							"g17872.t1;Cre17.g738950.t1.1"		
+Cre17.g701850									
+Cre17.g734805							g17781.t1		
+Cre17.g709500	"GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g17185.t1;g17185.t1;g17185.t1;g17185.t1"		
+Cre17.g718250				"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"		"g17383.t1;DRR1"		"dTDP-4-dehydrorhamnose reductase, an NAD-dependent epimerase/dehydratase (see SNE series)"
+Cre17.g728800	"GMM:8.2.4;GMM:8.1.4"	"TCA / organic transformation.other organic acid transformations.IDH;TCA / organic transformation.TCA.IDH"	Mitochondrion	"GO:0055114;GO:0051287;GO:0016616;GO:0000287"	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;magnesium ion binding"	IDH1	"Cre17.g728800.t1.1;g17614.t1"	IDH1	"NAD-dependent isocitrate dehydrogenase, probable mitochondrial isoform"
+Cre17.g721650							"Cre17.g721650.t1.1;g17460.t1"		
+Cre17.g738150	GMM:20.2.3	stress.abiotic.drought/salt		GO:0016020	membrane	ERM10	"g17855.t1;ERM10;ERM10;g17855.t1;g17855.t1;ERM10;ERM10;g17855.t1;ERM10;g17855.t1"		"transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration);transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration);transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration);transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration);transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration)"
+Cre17.g717250			"Secretory pathway"				g17362.t1		
+Cre17.g700700			"Secretory pathway"				"g16991.t1;g16991.t1;g16991.t1"		
+Cre17.g719834									
+Cre17.g745197			Mitochondrion						
+Cre17.g698332									
+Cre17.g715900	"GMM:25;GMM:23.5.1;GMM:23.5"	"C1-metabolism;nucleotide metabolism.deoxynucleotide metabolism.dihydrofolate reductase-thymidylate synthase;nucleotide metabolism.deoxynucleotide metabolism"		"GO:0055114;GO:0009165;GO:0006545;GO:0006231;GO:0004799;GO:0004146"	"oxidation-reduction process;nucleotide biosynthetic process;glycine biosynthetic process;dTMP biosynthetic process;thymidylate synthase activity;dihydrofolate reductase activity"		"Cre17.g715900.t1.1;g17330.t1;Cre17.g715900.t1.1;g17330.t1"		
+Cre17.g729393	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"							
+Cre17.g743497									
+Cre17.g707650	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"CKIN2.12;g17144.t1;g17144.t1;CKIN2.12;CKIN2.12;g17144.t1;CKIN2.12;g17144.t1;CKIN2.12;g17144.t1;g17144.t1;CKIN2.12;CKIN2.12;g17144.t1;g17144.t1;CKIN2.12;CKIN2.12;g17144.t1;g17144.t1;CKIN2.12"	"SNRK2L;SNRK2L;SNRK2L;SNRK2L;SNRK2L;SNRK2L;SNRK2L;SNRK2L;SNRK2L;SNRK2L"	"Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses"
+Cre17.g740750							"g17917.t1;Cre17.g740750.t1.1;Cre17.g740750.t1.1;g17917.t1;g17917.t1;Cre17.g740750.t1.1"		
+Cre17.g742350							"g17954.t1;Cre17.g742350.t1.1;Cre17.g742350.t1.1;g17954.t1"		
+Cre17.g746697	GMM:31.1	cell.organisation	Chloroplast			FAP249	"FAP249;g18050.t1;Cre20.g758450.t1.1;FAP249;Cre20.g758450.t1.1;g18050.t1"	"FAP249;FAP249"	"Flagellar Associated Protein with ankyrin repeats, found in the flagellar proteome [PMID: 15998802]. Possible phospholipase A2 or serine endopeptidase activity;Flagellar Associated Protein with ankyrin repeats, found in the flagellar proteome [PMID: 15998802]. Possible phospholipase A2 or serine endopeptidase activity"
+Cre17.g742150							"g17950.t1;Cre17.g742150.t1.1"		
+Cre17.g716613			"Secretory pathway"						
+Cre17.g729600	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		"GO:0007275;GO:0006355;GO:0003700"	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		g17633.t1		
+Cre17.g733850							"Cre17.g733850.t1.1;g17740.t1"		
+Cre17.g738200							"g17856.t1;Cre17.g738200.t1.1"		
+Cre17.g711750	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB30	"Cre17.g711750.t1.1;HTB5;g17237.t1;HTB22"	HTB30	"replication linked H2B; histone gene cluster XXX (type 34BA); mapped to LG XIX - Walther & Hall (NAR 23:3756-3763; 1995)"
+Cre17.g734548	GMM:6.5	"gluconeogenesis / glyoxylate cycle.pyruvate dikinase"	Mitochondrion	"GO:0050242;GO:0016772;GO:0016310;GO:0016301;GO:0006090;GO:0005524"	"pyruvate, phosphate dikinase activity;transferase activity, transferring phosphorus-containing groups;phosphorylation;kinase activity;pyruvate metabolic process;ATP binding"	PPD2	"PPD2;g17763.t1;Cre15.g644850.t1.1;Cre15.g644850.t1.1;g17763.t1;PPD2"	"PPD2;PPD2"	
+Cre17.g734612	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP2	"MRP2;Cre15.g645000.t1.1;g17767.t1"		"Putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683"
+Cre17.g725301	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g17541.t1;Cre17.g725300.t1.3;Cre17.g725300.t1.3;g17541.t1;Cre17.g725300.t1.3;g17541.t1"		
+Cre17.g724125			"Secretory pathway"						
+Cre17.g702451	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	"Secretory pathway"	GO:0005515	"protein binding"	hlm27	"Cre17.g702450.t1.3;HLM27;g17029.t1;g17029.t1;Cre17.g702450.t1.3;HLM27"		"Protein with weak similarity (mostly limited to SET domain) to Arabidopsis thaliana SUVR3, SET2, SDG2 (At3g375) and Zea mays SDG116. ChromoDB SDG349;Protein with weak similarity (mostly limited to SET domain) to Arabidopsis thaliana SUVR3, SET2, SDG2 (At3g375) and Zea mays SDG116. ChromoDB SDG349"
+Cre17.g734400	GMM:29.5.11.4.3.3	protein.degradation.ubiquitin.E3.SCF.cullin		"GO:0031625;GO:0006511"	"ubiquitin protein ligase binding;ubiquitin-dependent protein catabolic process"	CUL3	"g17756.t1;CUL3;CUL3;g17756.t1;g17756.t1;CUL3"	"CUL2;CUL2;CUL2"	"Cullin; Origninally annotated as CUL3, but has orthology to AtCUL2 in Arabidopsis thaliana;;Cullin; Origninally annotated as CUL3, but has orthology to AtCUL2 in Arabidopsis thaliana;;Cullin; Origninally annotated as CUL3, but has orthology to AtCUL2 in Arabidopsis thaliana;"
+Cre17.g721750	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG9	"g17462.t1;ELG9;ELG9;g17462.t1;ELG9;g17462.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre17.g744447	GMM:34.14	"transport.unspecified cations"		"GO:0046872;GO:0016887;GO:0016021;GO:0006812;GO:0000166"	"metal ion binding;ATPase activity;integral component of membrane;cation transport;nucleotide binding"		"Cre20.g760250.t1.2;Cre20.g760250.t1.1;g18005.t1;Cre20.g760250.t1.2;Cre20.g760250.t1.1;g18005.t1;g18005.t1;Cre20.g760250.t1.2;Cre20.g760250.t1.1;g18005.t1;Cre20.g760250.t1.1;Cre20.g760250.t1.2;g18005.t1;Cre20.g760250.t1.2;Cre20.g760250.t1.1"		
+Cre17.g721517							"Cre17.g721550.t1.2;g17457.t1"		
+Cre17.g747547							"g18067.t1;Cre20.g757850.t1.1;Cre20.g757850.t1.2;Cre20.g757850.t1.2;g18067.t1;Cre20.g757850.t1.1;g18067.t1;Cre20.g757850.t1.2;Cre20.g757850.t1.1;g18067.t1;Cre20.g757850.t1.1;Cre20.g757850.t1.2"		
+Cre17.g699776									
+Cre17.g699500	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0006464	"cellular protein modification process"	TTLL9	"g16964.t1;TTL8;FAP267;Tpg1;Cre17.g699500.t1.1"	TTLL9	" glutamic acid ligase; responsible for axonemal tubulin polyglutamylation"
+Cre17.g740150							g17901.t1		
+Cre17.g702976									
+Cre17.g720450							"g17437.t1;g17437.t1"		
+Cre17.g732650	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	"Secretory pathway"				"g17705.t1;Cre17.g732650.t1.1"		
+Cre17.g725950			Mitochondrion	GO:0008146	"sulfotransferase activity"	CSR13	"g17555.t2;CSR13;g17555.t2;CSR13"		
+Cre17.g700750				GO:0016021	"integral component of membrane"		"g16992.t1;Cre17.g700750.t1.1;GFY3"	GFY3	"GPR1/FUN34/YaaH family membrane protein; located in microbodies"
+Cre17.g733650	GMM:16.99	"secondary metabolism.unspecified"	"Secretory pathway"	"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"	BIO3	"BIO3;g17734.t1;BIOF"	BIO3	"Biotin biosynthesis protein BIOF 7-keto-8-aminopelargonic acid synthase; Ortholog of BIOF (AT5G04620) in Arabidopsis thaliana"
+Cre17.g707050	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"	UAF5	"g17131.t1;UAF5;SPL12;Cre17.g707050.t1.1"	UAF5	
+Cre17.g707600			"Secretory pathway"				"g17143.t2;g17143.t2;g17143.t2"		
+Cre17.g712126			Chloroplast						
+Cre17.g713500	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO31	"HFO22;Cre17.g713500.t1.1;g17276.t1;HFO25"	HFO31	"replication linked H4; histone gene cluster XXXI (type 34BA)"
+Cre17.g747047							g18057.t1		
+Cre17.g709300			"Secretory pathway"				g17181.t1		
+Cre17.g722150	"GMM:16.7;GMM:11.1.11;GMM:11.1.10"	"secondary metabolism.wax;lipid metabolism.FA synthesis and FA elongation.fatty acid elongase;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase"		"GO:0016747;GO:0016020;GO:0006633"	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;fatty acid biosynthetic process"	PKS3	"g17470.t1;Cre17.g722150.t1.1;PKS3;g17470.t1;PKS3;Cre17.g722150.t1.1;g17470.t1;PKS3;Cre17.g722150.t1.1;PKS3;Cre17.g722150.t1.1;g17470.t1"	"PKS3;PKS3;PKS3;PKS3"	"Variant PKS3b, generated by alternative transcription start; N-terminus differs from PKS3a; Similar to chalcone and stilbene synthases; plant-specific polyketide synthases (PKS) and related enzymes, also called type III PKSs. PKS generate an array of different products, dependent on the nature of the starter molecule. They share a common chemical strategy, after the starter molecule is loaded onto the active site cysteine, a carboxylative condensation reation extends the polyketide chain. Plant-specific PK;Variant PKS3b, generated by alternative transcription start; N-terminus differs from PKS3a; Similar to chalcone and stilbene synthases; plant-specific polyketide synthases (PKS) and related enzymes, also called type III PKSs. PKS generate an array of different products, dependent on the nature of the starter molecule. They share a common chemical strategy, after the starter molecule is loaded onto the active site cysteine, a carboxylative condensation reation extends the polyketide chain. Plant-specific PK;Variant PKS3b, generated by alternative transcription start; N-terminus differs from PKS3a; Similar to chalcone and stilbene synthases; plant-specific polyketide synthases (PKS) and related enzymes, also called type III PKSs. PKS generate an array of different products, dependent on the nature of the starter molecule. They share a common chemical strategy, after the starter molecule is loaded onto the active site cysteine, a carboxylative condensation reation extends the polyketide chain. Plant-specific PK;Variant PKS3b, generated by alternative transcription start; N-terminus differs from PKS3a; Similar to chalcone and stilbene synthases; plant-specific polyketide synthases (PKS) and related enzymes, also called type III PKSs. PKS generate an array of different products, dependent on the nature of the starter molecule. They share a common chemical strategy, after the starter molecule is loaded onto the active site cysteine, a carboxylative condensation reation extends the polyketide chain. Plant-specific PK"
+Cre17.g712500			Chloroplast				g17253.t1		
+Cre17.g699450							"g16963.t1;Cre17.g699450.t1.1"		
+Cre17.g716450	"GMM:33.99;GMM:31.1"	"development.unspecified;cell.organisation"		GO:0005524	"ATP binding"		g17342.t1	KATL3	"Similar to the catalytic subunit of Katanin"
+Cre17.g733700									
+Cre17.g742932									
+Cre17.g734150							g17750.t1		
+Cre17.g736700			"Secretory pathway"				"Cre17.g736700.t1.1;g17820.t1"		
+Cre17.g744347			"Secretory pathway"				g18003.t1		
+Cre17.g702576									
+Cre17.g717900	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC1	"g17374.t1;PHC1;Cre17.g717900.t1.1"	PHC1	"pherophorin-C1 (PHC1) [PMID: 16367971; Genbank entry DQ196107]; belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain"
+Cre17.g708250	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	ARL8	"ARL8;Cre17.g708250.t1.1;g17160.t1"		"Expressed Protein. Similar to the ARL8-type GTPases, involved in vesicle trafficking. Called ARLA in Arabidopsis."
+Cre17.g716050	GMM:29.5	protein.degradation	Chloroplast	GO:0005524	"ATP binding"		"g17334.t1;g17334.t1;g17334.t1"		
+Cre17.g701884									
+Cre17.g723150	GMM:29.3.4.1	"protein.targeting.secretory pathway.ER"	"Secretory pathway"	"GO:0055114;GO:0016671;GO:0005783;GO:0003756"	"oxidation-reduction process;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;endoplasmic reticulum;protein disulfide isomerase activity"	ERO1	"g17493.t1;ERO1;ERO1;g17493.t1;ERO1;g17493.t1;ERO1;g17493.t1;g17493.t1;ERO1"	"ERO1;ERO1;ERO1;ERO1;ERO1"	"Expressed Protein of endoplasmic reticulum oxidoreductin 1 (ERO1) family. Similar to conserved protein involved in redox reactions in the ER lumen.;Expressed Protein of endoplasmic reticulum oxidoreductin 1 (ERO1) family. Similar to conserved protein involved in redox reactions in the ER lumen.;Expressed Protein of endoplasmic reticulum oxidoreductin 1 (ERO1) family. Similar to conserved protein involved in redox reactions in the ER lumen.;Expressed Protein of endoplasmic reticulum oxidoreductin 1 (ERO1) family. Similar to conserved protein involved in redox reactions in the ER lumen.;Expressed Protein of endoplasmic reticulum oxidoreductin 1 (ERO1) family. Similar to conserved protein involved in redox reactions in the ER lumen."
+Cre17.g726250	"GMM:9.9;GMM:27.3.99"	"mitochondrial electron transport / ATP synthesis.F1-ATPase;RNA.regulation of transcription.unclassified"	"Secretory pathway"	GO:0043461	"proton-transporting ATP synthase complex assembly"	ATP12	"ATP12;g17561.t1;Cre17.g726250.t1.1;Cre17.g726250.t1.1;g17561.t1;ATP12"	"ATP12;ATP12"	"Putative assembly factor 2 for the F1 component of the mitochondrial ATP synthase complex; homolog of yeast protein ATP12 (named ATPAF2 in mammals); N-terminal mitochondrial targeting sequence predicted by TargetP;Putative assembly factor 2 for the F1 component of the mitochondrial ATP synthase complex; homolog of yeast protein ATP12 (named ATPAF2 in mammals); N-terminal mitochondrial targeting sequence predicted by TargetP"
+Cre17.g728750			"Secretory pathway"				"g17613.t1;Cre17.g728750.t1.1;g17613.t1;Cre17.g728750.t1.1;Cre17.g728750.t1.1;g17613.t1"		
+Cre17.g729700						CGL133	"g17635.t1;Cre17.g729700.t1.1"	CGL133	
+Cre17.g738900			Chloroplast				"g17871.t1;Cre17.g738900.t1.1"		
+Cre17.g698500			Chloroplast				"g16940.t1;Cre17.g698500.t1.1"		
+Cre17.g724450			Mitochondrion				"g17521.t1;g17521.t1;g17521.t1"	"RAA10;RAA10;RAA10"	"Necessary for trans-splicing of psaA mRNA; Component of psaA trans-splicing sub complex I;Necessary for trans-splicing of psaA mRNA; Component of psaA trans-splicing sub complex I;Necessary for trans-splicing of psaA mRNA; Component of psaA trans-splicing sub complex I"
+Cre17.g703900	GMM:31.6.1.3.2.2	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B"				IFT172	"SLB;Cre17.g703900.t1.1;g17064.t1;Cre17.g703900.t1.1;SLB;g17064.t1;SLB;Cre17.g703900.t1.1;g17064.t1"	"IFT172;IFT172;IFT172"	"Component of IFT-B2 particle; contains WD40 and TPR repeats;Component of IFT-B2 particle; contains WD40 and TPR repeats;Component of IFT-B2 particle; contains WD40 and TPR repeats"
+Cre17.g718900				"GO:0042254;GO:0031429;GO:0001522"	"ribosome biogenesis;box H/ACA snoRNP complex;pseudouridine synthesis"	FAP88	"Cre17.g718900.t1.1;g17397.t1;g17397.t1;Cre17.g718900.t1.1"	"FAP88;FAP88"	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802];Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]"
+Cre17.g713305									
+Cre17.g728050							"g17599.t1;Cre17.g728050.t1.1"		
+Cre17.g703176	GMM:21.6	"redox.dismutases and catalases"	"Secretory pathway"	"GO:0055114;GO:0046872;GO:0006801;GO:0004784"	"oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity"	MSD5	g17048.t1	MSD5	"Expression is up-regulated severalfold in Mn-deficient cells"
+Cre17.g705150			Chloroplast	"GO:0006260;GO:0003896"	"DNA replication;DNA primase activity"		"g17091.t1;g17091.t1"		
+Cre17.g741350	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN7-4	"Cre17.g741350.t1.1;KIN7-4;g17932.t1"	KIN7D	"kinesin-7 family"
+Cre17.g746547			Mitochondrion	"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g18047.t1;Cre20.g758600.t1.1;Cre20.g758600.t1.2;Cre20.g758600.t1.1;Cre20.g758600.t1.2;g18047.t1"		
+Cre17.g731550			Chloroplast				"g17677.t1;Cre17.g731550.t1.1"		
+Cre17.g734693			"Secretory pathway"						
+Cre17.g716800	GMM:34.99	transport.misc	Mitochondrion	"GO:0055085;GO:0016020;GO:0006810;GO:0005215"	"transmembrane transport;membrane;transport;transporter activity"	XUV7	"g17353.t1;Cre17.g716800.t1.1;Cre17.g716800.t1.1;g17353.t1"	"XUV7;XUV7"	" sodium-dependent; sodium-dependent"
+Cre17.g710150	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0009378;GO:0006310;GO:0006281"	"four-way junction helicase activity;DNA recombination;DNA repair"	RPT4	"RPT4;NSG8;Cre17.g710150.t1.1;g17199.t1;g17199.t1;RPT4;NSG8;Cre17.g710150.t1.1"	"RPT4;RPT4"	"26S proteasome regulatory complex, base subcomplex, ATPase RPT4;26S proteasome regulatory complex, base subcomplex, ATPase RPT4"
+Cre17.g714500	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA33	"g17300.t1;HTA1;Cre17.g714500.t1.1;NCG10"	HTA33	"replication linked H2A; histone gene cluster XXXIII (type 34BA)"
+Cre17.g707200			"Secretory pathway"	"GO:0016021;GO:0016020;GO:0006811;GO:0006810;GO:0005230"	"integral component of membrane;membrane;ion transport;transport;extracellular ligand-gated ion channel activity"	LIC2	"LIC2;g17135.t1"	LIC2	"some similarity to neuromediator-gated ion channels (nicotinic acetylcholine-gated ion channel); belongs to a small family of three linked genes"
+Cre17.g743947			Mitochondrion				"Cre20.g760714.t1.2;g17994.t1;Cre20.g760714.t1.1"		
+Cre17.g744897			"Secretory pathway"	"GO:0006355;GO:0005739;GO:0003690"	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"		"g18014.t1;Cre20.g759850.t1.1"		
+Cre17.g722650			Chloroplast				"Cre17.g722650.t1.1;g17482.t1"		
+Cre17.g707950	GMM:29.6.2.6	"protein.folding.chaperones and co-chaperones.co-chaperones"	Chloroplast	GO:0008270	"zinc ion binding"	HEP2	"g17150.t1;Cre17.g707950.t1.1"	HEP2	"Chloroplast stroma protein involved in folding of HSP70B. Similar to Hsp70 escorting protein 1 (HEP1)"
+Cre17.g743747	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"				"g17990.t1;Cre20.g760900.t1.1;Cre20.g760900.t1.2"		
+Cre17.g736300			"Secretory pathway"				g17809.t1		
+Cre17.g728483			Mitochondrion						
+Cre17.g714950	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0008270	"zinc ion binding"		"g17308.t1;Cre17.g714950.t1.1;g17308.t1;Cre17.g714950.t1.1;Cre17.g714950.t1.1;g17308.t1"		
+Cre17.g696950	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g16904.t1;g16904.t1;g16904.t1"		
+Cre17.g692564			Chloroplast						
+Cre17.g731350	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Chloroplast	"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"g17672.t1;SDR28;g17672.t1;SDR28"		"Possibly a;Possibly a"
+Cre17.g702300			"Secretory pathway"				g17026.t1		
+Cre17.g737100	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP127	"Cre17.g737100.t1.1;g17829.t1"	FAP127	"Found in the flagellar proteome; identified in the flagellar basal body proteome [PMID: 15137946]; upregulated by deflagellation; weakly Similar Nuclear Structural Protein; Mouse MNS1 is required for sperm formation"
+Cre17.g738600	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"	Mitochondrion			RLS5	"g17864.t1;RLS5;RLS5;g17864.t1"		"Member of a family of proteins [PMID: 1672695, 1662271] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF1342).;Member of a family of proteins [PMID: 1672695, 1662271] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF1342)."
+Cre17.g735450	GMM:29.5.1	protein.degradation.subtilases		"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SUB14	"SUB14;g17792.t1"		
+Cre17.g706900	GMM:34.15	transport.potassium		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	CNG3	"CNG3;Cre17.g706900.t1.1;g17128.t1"	CNG3	
+Cre17.g731200			Chloroplast				"g17669.t1;g17669.t1;g17669.t1;g17669.t1"		
+Cre17.g709850	GMM:2.2.1.1	"major CHO metabolism.degradation.sucrose.fructokinase"	Mitochondrion	"GO:0016774;GO:0016310;GO:0016301;GO:0008152;GO:0005622"	"phosphotransferase activity, carboxyl group as acceptor;phosphorylation;kinase activity;metabolic process;intracellular"	ACK2	"ACK2;g17192.t1;Cre17.g709850.t1.1"	ACK2	"E.C.2.7.2.1;phosphoryl transfer of phosphate from acetyl-phosphate to ADP for ATP synthesis"
+Cre17.g734773			Chloroplast						
+Cre17.g722450							"g17476.t1;g17476.t1;g17476.t1;g17476.t1"		
+Cre17.g745147							"Cre20.g759650.t1.1;g18019.t1"		
+Cre17.g703650							g17059.t1		
+Cre17.g742800							"Cre17.g742800.t1.1;g17963.t1"		"belongs to a small gene family specific of Chlamydomonas"
+Cre17.g704450			Mitochondrion				"g17077.t1;g17077.t1;g17077.t1"		
+Cre17.g725600	GMM:7.1.1	"OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)"	"Secretory pathway"				"g17548.t1;g17548.t1"		
+Cre17.g709000	GMM:31.6.1.11	cell.motility.eukaryotes.other	"Secretory pathway"				"Cre17.g709000.t1.1;g17175.t1;Cre17.g709000.t1.1;g17175.t1"		
+Cre17.g717050	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		g17358.t1		
+Cre17.g727650	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	ATM2	"ATM2;g17591.t1;ATM2;g17591.t1;g17591.t1;ATM2;ATM2;g17591.t1;g17591.t1;ATM2;g17591.t1;ATM2"	"ATM2;ATM2;ATM2;ATM2;ATM2;ATM2"	"half-size ABC transporter, related to mitochondrial proteins: A. thaliana ATM3, human ABC7, yeast ATM1;half-size ABC transporter, related to mitochondrial proteins: A. thaliana ATM3, human ABC7, yeast ATM1;half-size ABC transporter, related to mitochondrial proteins: A. thaliana ATM3, human ABC7, yeast ATM1;half-size ABC transporter, related to mitochondrial proteins: A. thaliana ATM3, human ABC7, yeast ATM1;half-size ABC transporter, related to mitochondrial proteins: A. thaliana ATM3, human ABC7, yeast ATM1;half-size ABC transporter, related to mitochondrial proteins: A. thaliana ATM3, human ABC7, yeast ATM1"
+Cre17.g726700	GMM:11.1.8	"lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase"	Mitochondrion	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"g17571.t1;g17571.t1;g17571.t1;g17571.t1;g17571.t1"		
+Cre17.g730100	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion	"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"	RSEP1	"g17644.t1;RSE1"	RSEP1	"Intramembrane metalloprotease related to site-2 protease; contains M5 domain, with HExxH motif embedded in transmembrane helix; homologous to bacterial RseP/YaeL/PsoIVFB involved in transmembrane signaling; could be organelle-targeted; Target of CRR1"
+Cre17.g713726			Chloroplast				g17283.t1		
+Cre17.g711200			Chloroplast				"PGM16;Cre17.g711200.t1.1;g17223.t1"		
+Cre17.g711457	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"	Mitochondrion				"Cre17.g711457.t1.1;g17229.t1"		
+Cre17.g704650							g17081.t1		
+Cre17.g717800	GMM:29.3.1	protein.targeting.nucleus		"GO:0006810;GO:0005643"	"transport;nuclear pore"		"Cre17.g717800.t1.1;g17372.t1;Cre17.g717800.t1.1;g17372.t1"	"NUP93;NUP93"	"93 kDa Nuclear Pore Complex Protein;93 kDa Nuclear Pore Complex Protein"
+Cre17.g719100	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Mitochondrion	GO:0008270	"zinc ion binding"	ZYS1B	"Cre17.g719100.t1.1;ZYS1B;g17401.t1"	ZYS1B	"expressed during early stage of zygote formation (PMID: 8252638); highly similar to ZYS1A"
+Cre17.g705400	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175"	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA1	"POA1;Cre17.g705400.t1.1;g17097.t1;g17097.t1;POA1;Cre17.g705400.t1.1"	"POA1;POA1"	"20S proteasome alpha subunit A (type 6);20S proteasome alpha subunit A (type 6)"
+Cre17.g715050	GMM:3.5	"minor CHO metabolism.others"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	RAB28	"RAB28;g17310.t1;Cre17.g715050.t1.1"	RAB28	"Expressed Protein. Similar to Rab28-like proteins from mammals and protists."
+Cre17.g701650	GMM:29.2.1.2.2.27	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L27"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL27	"g17010.t1;Cre17.g701650.t1.1"	RPL27	"Cytosolic 60S large ribosomal subunit protein L27"
+Cre17.g745897									
+Cre17.g706450			"Secretory pathway"	"GO:0016021;GO:0016020;GO:0006811;GO:0006810;GO:0005230"	"integral component of membrane;membrane;ion transport;transport;extracellular ligand-gated ion channel activity"	LIC3	g17120.t1	LIC3	"some similarity to neuromediator-gated ion channels (nicotinic acetylcholine-gated ion channel); belongs to a small family of three linked genes"
+Cre17.g739450	"GMM:28.1.3;GMM:27.3.13"	"DNA.synthesis/chromatin structure.histone;RNA.regulation of transcription.CCAAT box binding factor family, DR1"				DRT1	"g17883.t1;DRT1"	DRT1	"DR1 (Down-regulator of transcription 1) (SP:Q01658) is a phosphoprotein that interacts with TBP (TATA box-binding protein) of TFIID and prevents the formation of an active transcription complex by precluding the entry of TFIIA and/or TFIIB into the preinitiation complex. The interaction of DR1 with the corepressor DRAP1, is required for corepressor function and appears to stabilize the TBP-DR1-DNA complex"
+Cre17.g705950				GO:0008080	"N-acetyltransferase activity"		"g17111.t1;NAT37"		"Related to GCN5"
+Cre17.g710871			Mitochondrion						
+Cre17.g733300	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g17723.t1		
+Cre17.g698400						LCI31	"g16938.t1;Cre17.g698400.t1.1"	LCI31	"Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]"
+Cre17.g723800							"Cre17.g723800.t1.1;g17506.t1"		
+Cre17.g715800			"Secretory pathway"				g17327.t1		
+Cre17.g724150	GMM:26.17	misc.dynamin		"GO:0005525;GO:0003924"	"GTP binding;GTPase activity"	DRP3	"DRP3;g17514.t1;g17514.t1;DRP3;g17514.t1;DRP3"		"Similar to Arabidopsis DRP3 group (ADL2), a Dynamin-type GTPase involved in mitochondrial division.;Similar to Arabidopsis DRP3 group (ADL2), a Dynamin-type GTPase involved in mitochondrial division.;Similar to Arabidopsis DRP3 group (ADL2), a Dynamin-type GTPase involved in mitochondrial division."
+Cre17.g721500	GMM:2.1.2.2	"major CHO metabolism.synthesis.starch.starch synthase"	Chloroplast			STA2	"STA2;Cre17.g721500.t1.1;GBS1;g17456.t1;GBBSI"	GBSS1A	"Identified as STA2 in a screen for starchless mutants"
+Cre17.g729950	GMM:21.99	redox.misc	Chloroplast	"GO:0055114;GO:0032542"	"oxidation-reduction process;sulfiredoxin activity"	SRX2	"SRX1;g17641.t1;Cre17.g729950.t1.1"	SRX2	
+Cre17.g720256			Chloroplast						
+Cre17.g735500							"Cre17.g735500.t1.1;g17793.t1"		
+Cre17.g745497							"Cre20.g759450.t1.1;g18026.t1;Cre20.g759450.t1.2"		
+Cre17.g711150	GMM:11.2.4	"lipid metabolism.FA desaturation.omega 6 desaturase"		"GO:0055114;GO:0016717;GO:0006629"	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water;lipid metabolic process"	FAD2	"FAD2a;FAD2;Cre17.g711150.t1.1;g17222.t1"	FAD2	"Oleate/fatty acid desaturase, delta-12. Also known as FAD2a"
+Cre17.g701551			Mitochondrion				g17008.t1		
+Cre17.g729200							"g17624.t1;g17624.t1;g17624.t1"		
+Cre17.g714450	GMM:34.15	transport.potassium		"GO:0071805;GO:0016020;GO:0015079"	"potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity"	KUP3	"g17299.t1;KUP3;Cre17.g714450.t1.1;Cre17.g714450.t1.1;g17299.t1;KUP3;Cre17.g714450.t1.1;KUP3;g17299.t1;Cre17.g714450.t1.1;KUP3;g17299.t1;g17299.t1;KUP3;Cre17.g714450.t1.1;KUP3;g17299.t1;Cre17.g714450.t1.1;g17299.t1;KUP3;Cre17.g714450.t1.1"	"KUP3;KUP3;KUP3;KUP3;KUP3;KUP3;KUP3"	"Linked to closely related KUP1 and KUP2;Linked to closely related KUP1 and KUP2;Linked to closely related KUP1 and KUP2;Linked to closely related KUP1 and KUP2;Linked to closely related KUP1 and KUP2;Linked to closely related KUP1 and KUP2;Linked to closely related KUP1 and KUP2"
+Cre17.g705450			Mitochondrion	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"	LCI26	"g17098.t1;Cre17.g705450.t1.1;Cre17.g705450.t1.1;g17098.t1;g17098.t1;Cre17.g705450.t1.1"	"LCI26;LCI26;LCI26"	"Contains Ubox (smart00504), Modified RING finger domain without the full complement of Zn2+-binding ligands. Probable involvement in E2-dependent ubiquitination. SOSUI prediction: 5 transmembrane region. Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Contains Ubox (smart00504), Modified RING finger domain without the full complement of Zn2+-binding ligands. Probable involvement in E2-dependent ubiquitination. SOSUI prediction: 5 transmembrane region. Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Contains Ubox (smart00504), Modified RING finger domain without the full complement of Zn2+-binding ligands. Probable involvement in E2-dependent ubiquitination. SOSUI prediction: 5 transmembrane region. Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]"
+Cre17.g711526									
+Cre17.g732500							"g17701.t1;g17701.t1;g17701.t1;g17701.t1;g17701.t1"		
+Cre17.g698000	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"	Mitochondrion	"GO:0046933;GO:0046034;GO:0033178;GO:0016820;GO:0015992;GO:0015991;GO:0015986;GO:0005524"	"proton-transporting ATP synthase activity, rotational mechanism;ATP metabolic process;proton-transporting two-sector ATPase complex, catalytic domain;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;proton transport;ATP hydrolysis coupled proton transport;ATP synthesis coupled proton transport;ATP binding"	ATP2	"Cre17.g698000.t1.1;ATP2;g16928.t1;Cre17.g698000.t1.1;ATP2;g16928.t1;Cre17.g698000.t1.1;ATP2;g16928.t1"	"ATP2;ATP2;ATP2"	"ATP synthase F1F0 beta chain, mitochondrial precursor (GI:584796);;ATP synthase F1F0 beta chain, mitochondrial precursor (GI:584796);;ATP synthase F1F0 beta chain, mitochondrial precursor (GI:584796);"
+Cre17.g734125									
+Cre17.g700600	"GMM:35.1.9;GMM:29.5.11.5"	"not assigned.no ontology.BTB/POZ domain-containing protein;protein.degradation.ubiquitin.ubiquitin protease"		GO:0005515	"protein binding"		"g16989.t1;g16989.t1;g16989.t1"		
+Cre17.g709600			Mitochondrion				"g17187.t1;g17187.t1"		
+Cre17.g732250			Chloroplast				g17696.t1		
+Cre17.g708100	GMM:23.3.1.2	"nucleotide metabolism.salvage.phosphoribosyltransferases.hypoxanthine-guanine phosphoribosyltransferase (HPRT)"	Chloroplast	GO:0009116	"nucleoside metabolic process"		"Cre17.g708100.t1.1;g17157.t1;Cre17.g708100.t1.1;g17157.t1;Cre17.g708100.t1.1;g17157.t1"		
+Cre17.g733350			"Secretory pathway"				g17724.t1		
+Cre17.g725050	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	"protein binding"	UBL5	"Cre17.g725050.t1.1;g17534.t1;UBL5"		
+Cre17.g705850	"GMM:13.1.2.2.1;GMM:13.1.2.2"	"amino acid metabolism.synthesis.glutamate family.proline.delta 1-pyrroline-5-carboxylate synthetase;amino acid metabolism.synthesis.glutamate family.proline"		GO:0003723	"RNA binding"	GGK2	"GGK2;Cre17.g705850.t1.1;PROB2;g17109.t1"	PROB2	"Gamma-glutamyl kinase (GK); involved in proline biosynthesis (from glutamate); contains a C-terminal PUA domain possibly binding RNA; linked to PROB1"
+Cre17.g746247	GMM:27.3.65	"RNA.regulation of transcription.polycomb group (PcG)"		GO:0005515	"protein binding"		"g18041.t1;g18041.t1"		
+Cre17.g741100	GMM:31.3	cell.cycle					"g17925.t1;Cre17.g741100.t1.1;Cre17.g741100.t1.1;g17925.t1"		
+Cre17.g747797	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	Mitochondrion			MCP30	"Cre20.g757600.t1.2;MCP30;g18072.t2;Cre20.g757600.t1.1;g18072.t2;MCP30;Cre20.g757600.t1.1;Cre20.g757600.t1.2;Cre20.g757600.t1.2;Cre20.g757600.t1.1;g18072.t2;MCP30;Cre20.g757600.t1.1;g18072.t2;MCP30;Cre20.g757600.t1.2"		
+Cre17.g746197			"Secretory pathway"				"g18040.t1;g18040.t1;g18040.t1"		
+Cre17.g725851							g17553.t1		
+Cre17.g710881			Mitochondrion				"g17216.t1;Cre17.g710881.t1.1"		
+Cre17.g704050			"Secretory pathway"				"g17069.t1;g17069.t1"		
+Cre17.g712250							g17248.t1		
+Cre17.g747397	"GMM:29.4.1;GMM:29.4;GMM:29.2.2"	"protein.postranslational modification.kinase;protein.postranslational modification;protein.synthesis.ribosome biogenesis"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g18064.t1		
+Cre17.g726450			Chloroplast				"Cre17.g726450.t1.1;g17565.t1;Cre17.g726450.t1.1;g17565.t1"		
+Cre17.g707750			"Secretory pathway"				"g17146.t1;Cre17.g707750.t1.1;g17146.t1;Cre17.g707750.t1.1"		
+Cre17.g705650							"g17102.t2;g17102.t2"		
+Cre17.g725376			"Secretory pathway"				g17543.t1		
+Cre17.g721900	"GMM:31.4;GMM:29.3.4.2"	"cell.vesicle transport;protein.targeting.secretory pathway.golgi"		"GO:0017119;GO:0006891"	"Golgi transport complex;intra-Golgi vesicle-mediated transport"	COG5	"COG5;Cre17.g721900.t1.1;g17465.t1;COG5;Cre17.g721900.t1.1;g17465.t1;g17465.t1;Cre17.g721900.t1.1;COG5;g17465.t1;COG5;Cre17.g721900.t1.1;g17465.t1;COG5;Cre17.g721900.t1.1"	"COG5;COG5;COG5;COG5;COG5"	"Expressed protein. Similar to COG5/COD3; component of oligomeric golgi complex 5, involved in vesicle tethering and other Golgi functions;Expressed protein. Similar to COG5/COD3; component of oligomeric golgi complex 5, involved in vesicle tethering and other Golgi functions;Expressed protein. Similar to COG5/COD3; component of oligomeric golgi complex 5, involved in vesicle tethering and other Golgi functions;Expressed protein. Similar to COG5/COD3; component of oligomeric golgi complex 5, involved in vesicle tethering and other Golgi functions;Expressed protein. Similar to COG5/COD3; component of oligomeric golgi complex 5, involved in vesicle tethering and other Golgi functions"
+Cre17.g747197	GMM:31.1	cell.organisation		"GO:0034314;GO:0030833;GO:0015629;GO:0005885"	"Arp2/3 complex-mediated actin nucleation;regulation of actin filament polymerization;actin cytoskeleton;Arp2/3 protein complex"		"g18060.t2;Cre20.g758050.t1.1;Cre20.g758050.t1.2"		
+Cre17.g723650	GMM:13.2.4.1	"amino acid metabolism.degradation.branched chain group.shared"	Mitochondrion	"GO:0016747;GO:0008152"	"transferase activity, transferring acyl groups other than amino-acyl groups;metabolic process"	ATO1	"ATO1;g17503.t1;Cre17.g723650.t1.1;ATO1;g17503.t1;Cre17.g723650.t1.1;Cre17.g723650.t1.1;g17503.t1;ATO1;Cre17.g723650.t1.1;ATO1;g17503.t1;Cre17.g723650.t1.1;g17503.t1;ATO1"	"KAT1;KAT1;KAT1;KAT1;KAT1"	"EC 2.3.1.9; Orthologous to peroxisomal 3-ketoacyl-CoA thiolase 4 (KAT1 / PKT4) in Arabidopsis thaliana;EC 2.3.1.9; Orthologous to peroxisomal 3-ketoacyl-CoA thiolase 4 (KAT1 / PKT4) in Arabidopsis thaliana;EC 2.3.1.9; Orthologous to peroxisomal 3-ketoacyl-CoA thiolase 4 (KAT1 / PKT4) in Arabidopsis thaliana;EC 2.3.1.9; Orthologous to peroxisomal 3-ketoacyl-CoA thiolase 4 (KAT1 / PKT4) in Arabidopsis thaliana;EC 2.3.1.9; Orthologous to peroxisomal 3-ketoacyl-CoA thiolase 4 (KAT1 / PKT4) in Arabidopsis thaliana"
+Cre17.g730300							"g17648.t1;Cre17.g730300.t1.1;Cre17.g730300.t1.1;g17648.t1;g17648.t1;Cre17.g730300.t1.1"		
+Cre17.g711650	GMM:31.1	cell.organisation				NUDC1	"NUDC;g17235.t1;Cre17.g711650.t1.1;NUD1"	NUDC1	"Nuclear movement family protein ortholog to NudC protein from Aspergillus"
+Cre17.g711000							g17219.t1		
+Cre17.g718550			"Secretory pathway"				g17390.t1		
+Cre17.g697800							"Cre17.g697800.t1.1;g16923.t1;g16923.t1;Cre17.g697800.t1.1;g16923.t1;Cre17.g697800.t1.1;Cre17.g697800.t1.1;g16923.t1"		
+Cre17.g730700			Chloroplast				"g17658.t1;g17658.t1;g17658.t1"		
+Cre17.g703550							"Cre17.g703550.t1.1;g17057.t1;g17057.t1;Cre17.g703550.t1.1"		
+Cre17.g745047			"Secretory pathway"				g18017.t1		
+Cre17.g705250	"GMM:30.2.12;GMM:30.2.11"	"signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI"					"g17093.t1;g17093.t1;g17093.t1"		
+Cre17.g719876			Mitochondrion				g17423.t1		
+Cre17.g715250	"GMM:18.6;GMM:11.1.1.2.3;GMM:11.1.1"	"Co-factor and vitamine metabolism.biotin;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.biotin carboxyl carrier protein;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation"	Chloroplast			BCC1	"Cre17.g715250.t1.1;BCC1;g17315.t1;BCCP1;BCC1;g17315.t1;BCCP1;Cre17.g715250.t1.1;g17315.t1;BCC1;Cre17.g715250.t1.1;BCCP1;g17315.t1;BCC1;BCCP1;Cre17.g715250.t1.1"	"BCC1;BCC1;BCC1;BCC1"	"Biotin-containing subunit of the chloroplastic acetyl-coenzyme A carboxylase; N-terminal sequence identified by Edman degradation is AAKT...;Biotin-containing subunit of the chloroplastic acetyl-coenzyme A carboxylase; N-terminal sequence identified by Edman degradation is AAKT...;Biotin-containing subunit of the chloroplastic acetyl-coenzyme A carboxylase; N-terminal sequence identified by Edman degradation is AAKT...;Biotin-containing subunit of the chloroplastic acetyl-coenzyme A carboxylase; N-terminal sequence identified by Edman degradation is AAKT..."
+Cre17.g701200	GMM:29.2.1.2.2.14	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L14"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL14	"g17001.t2;Cre17.g701200.t1.1"	RPL14	"Cytosolic 60S large ribosomal subunit protein L14"
+Cre17.g743200									
+Cre17.g747447							"g18065.t1;Cre20.g757942.t1.2;Cre20.g757942.t1.1"		
+Cre17.g698233	"GMM:33.3;GMM:27.3.28"	"development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"	Mitochondrion	"GO:0005634;GO:0005515;GO:0003677"	"nucleus;protein binding;DNA binding"		g16933.t1		
+Cre17.g740224									
+Cre17.g721850			Mitochondrion	"GO:0006468;GO:0005524;GO:0004674"	"protein phosphorylation;ATP binding;protein serine/threonine kinase activity"	SSA16	"SSA16;Cre17.g721850.t1.1;g17464.t1;Cre17.g721850.t1.1;g17464.t1;SSA16;Cre17.g721850.t1.1;g17464.t1;SSA16;SSA16;Cre17.g721850.t1.1;g17464.t1;SSA16;Cre17.g721850.t1.1;g17464.t1"	"SSA16;SSA16;SSA16;SSA16;SSA16"	"identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA)"
+Cre17.g719537			"Secretory pathway"						
+Cre17.g702002									
+Cre17.g740650	GMM:29.4	"protein.postranslational modification"	Mitochondrion				g17915.t1		
+Cre17.g732566			"Secretory pathway"				g17703.t1		
+Cre17.g697701			Mitochondrion				g16921.t1		
+Cre17.g711300							"g17225.t1;Cre17.g711300.t1.1"		
+Cre17.g736800			Mitochondrion				"g17822.t1;g17822.t1"		
+Cre17.g707137			Mitochondrion				"Cre17.g707137.t1.1;g17133.t1"		
+Cre17.g731250	"GMM:29.2.1.1.4.1;GMM:29.2.1.1.3.1.15"	"protein.synthesis.ribosomal protein.prokaryotic.non-organellar.30S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.30S subunit.S15"	Mitochondrion	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPS15	"MRPS15;g17670.t1;uS15m;Cre17.g731250.t1.1"	MRPS15	
+Cre17.g698550	"GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4.1;GMM:29.4"	"cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g16943.t1		
+Cre17.g739150	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"	"Secretory pathway"	"GO:0008236;GO:0006508;GO:0005515"	"serine-type peptidase activity;proteolysis;protein binding"	TSP5	"CTPA5;TSP5;g17876.t1;Cre17.g739150.t1.1;g17876.t1;CTPA5;TSP5;Cre17.g739150.t1.1"		"Possible C-terminal peptidase based on conserved domains;Possible C-terminal peptidase based on conserved domains"
+Cre17.g719792			Mitochondrion				g17419.t1		
+Cre17.g744547			Chloroplast				"Cre20.g760150.t1.1;Cre20.g760150.t1.2;g18007.t1"		
+Cre17.g739500			Mitochondrion				"g17887.t1;g17887.t1;g17887.t1;g17887.t1"		
+Cre17.g709700							"Cre17.g709700.t1.1;g17189.t1"		
+Cre17.g728150	GMM:31.4	"cell.vesicle transport"		"GO:0016192;GO:0016021"	"vesicle-mediated transport;integral component of membrane"	YKT6	"Cre17.g728150.t1.1;YKT6;g17601.t1"	YKT6	"Expressed Protein. Similar to YKT6 R-SNAREs, involved in Golgi/Endosomal trafficking."
+Cre17.g711480									
+Cre17.g717919									
+Cre17.g705000	"GMM:30.3;GMM:3.3;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0005515;GO:0004672"	"protein phosphorylation;ATP binding;protein binding;protein kinase activity"	FAP223	"g17088.t1;Cre17.g705000.t1.1;CDPK1;CDPK1;Cre17.g705000.t1.1;g17088.t1"	"FAP223;FAP223"	"Calcium-dependent Protein Kinase Homolog 1; Found in the flagellar proteome as FAP223 [PMID: 15998802]; Identified as CrCDPK1 in [PMID: 23936117];Calcium-dependent Protein Kinase Homolog 1; Found in the flagellar proteome as FAP223 [PMID: 15998802]; Identified as CrCDPK1 in [PMID: 23936117]"
+Cre17.g741450	"GMM:29.6.2.2;GMM:29.6;GMM:1.3.13"	"protein.folding.chaperones and co-chaperones.HSP60s;protein.folding;PS.calvin cycle.rubisco interacting"	Chloroplast	GO:0005524	"ATP binding"	CPN60B1	"CPN60B1;g17934.t1;CPN60 beta1;Cre17.g741450.t1.1"	CPN60B1	"GroEL/HSP60-homolog, chloroplast chaperonin; forms with CPN60A and CPN60B2 a tetradecameric complex of stochiometry A-6:B1-2:B2-6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;"
+Cre17.g741300							"g17931.t1;g17931.t1"	"SAK1;SAK1"	"Mutant does not acclimate to singlet oxygen generated by Rose Bengal;Mutant does not acclimate to singlet oxygen generated by Rose Bengal"
+Cre17.g733425			Chloroplast						
+Cre17.g734660									
+Cre17.g708350			"Secretory pathway"				"g17162.t1;Cre17.g708350.t1.1"		
+Cre17.g724600	"GMM:31.5.1;GMM:29.3.3;GMM:26.30;GMM:26.3"	"cell.cell death.plants;protein.targeting.chloroplast;misc.other Ferredoxins and Rieske domain;misc.gluco-, galacto- and mannosidases"	Chloroplast	"GO:0055114;GO:0051537;GO:0016491;GO:0010277"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	PAO2	"Cre17.g724600.t1.1;PAO2;TIC55-2;g17524.t1;Cre17.g724600.t1.1;PAO2;g17524.t1;TIC55-2;Cre17.g724600.t1.1;PAO2;TIC55-2;g17524.t1"		"Contains Rieske iron-sulfur cluster and PAO domains and transmembrane domain for attachment to thylakoid membrane; closely related to nearby Cre17.g724700 (PAO3); belongs to the classical family of short chain dehydrogenases [PMID: 15180984];Contains Rieske iron-sulfur cluster and PAO domains and transmembrane domain for attachment to thylakoid membrane; closely related to nearby Cre17.g724700 (PAO3); belongs to the classical family of short chain dehydrogenases [PMID: 15180984];Contains Rieske iron-sulfur cluster and PAO domains and transmembrane domain for attachment to thylakoid membrane; closely related to nearby Cre17.g724700 (PAO3); belongs to the classical family of short chain dehydrogenases [PMID: 15180984]"
+Cre17.g728600							"g17610.t1;Cre17.g728600.t1.1"		
+Cre17.g731466			Mitochondrion	GO:0005515	"protein binding"		"Cre17.g731466.t1.1;g17675.t1"		
+Cre17.g742116									
+Cre17.g743288									
+Cre17.g719000	"GMM:29.2.3;GMM:28.1;GMM:27.1.2"	"protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"	UAP56	"g17399.t1;UAP56;Cre17.g719000.t1.1;NSG12"	UAP56	"Putative DEAD box protein UAP56, spliceosome-associated, part of EJC, involved in transport of mRNA out of nucleus"
+Cre17.g734450	"GMM:29.2.1.99.2.19;GMM:29.2.1.1.1.2.19"	"protein.synthesis.ribosomal protein.unknown.large subunit.L19;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L19"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPL19	"Cre17.g734450.t1.1;g17757.t1;g17757.t1;Cre17.g734450.t1.1"	"PRPL19;PRPL19"	"imported to chloroplast; Chloroplast large ribosomal subunit protein L19;imported to chloroplast; Chloroplast large ribosomal subunit protein L19"
+Cre17.g713150			"Mitochondrion;Secretory pathway"				"FLA3;FAS8;g17268.t1"		"Identified as Fasciclin-Like Arabinogalactan 3 (FLA3) in [PMID: 31010036]"
+Cre17.g741601			Chloroplast				g17937.t1		
+Cre17.g722700				GO:0016020	membrane		"Cre17.g722700.t1.1;g17484.t1;g17484.t1;Cre17.g722700.t1.1"		
+Cre17.g727950	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom				RPN2	"g17597.t1;RPN2"	RPN2	"26S proteasome regulatory complex, base subcomplex, non-ATPase regulatory RPN2 (subunit 1)"
+Cre17.g734516	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	"protein binding"	RPN9	"Cre15.g644800.t1.1;RPN9;Cre15.g644800.t1.2;g17761.t1"	RPN9	"26S proteasome regulatory complex, lid subcomplex, non-ATPase subunit RPN9 (subunit 9) (PSD11) (PSMD11); 26S proteasome regulatory complex, lid subcomplex, non-ATPase subunit RPN9 (subunit 13) (PSD13) (PSMD13)"
+Cre17.g713800			Chloroplast				"g17285.t1;Cre17.g713800.t1.1"		
+Cre17.g739550			Chloroplast			CPLD12	g17888.t1	CPLD12	
+Cre17.g739850						MOT47	"Seahorse;DNAAF11;MOT47;g17895.t1;Cre17.g739850.t1.1"	LRRC6	"Involved in dynein arm assembly; Ortholog to Dynein axonemal assembly factor 11 (DNAAF11) in humans; Identified by comparative genomics as being present only in organisms having motile (MOT) cilia; In previous annotations, the MOT51 annotation was assigned to the neighboring gene, Cre03.g178050. This is because the v3 gene model was a fusion between both"
+Cre17.g736950							"g17825.t2;g17825.t2;g17825.t2;g17825.t2;g17825.t2"		
+Cre17.g697334	GMM:29.5.3	"protein.degradation.cysteine protease"	Mitochondrion				"Cre17.g697334.t1.1;g16911.t1;g16911.t1;Cre17.g697334.t1.1;Cre17.g697334.t1.1;g16911.t1"		
+Cre17.g716576									
+Cre17.g723050	GMM:26.7	"misc.oxidases - copper, flavone etc"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"g17491.t1;g17491.t1;g17491.t1"		
+Cre17.g697050			Chloroplast				"g16906.t1;Cre17.g697050.t1.1"		
+Cre17.g720300			"Secretory pathway"	GO:0005515	"protein binding"		"g17434.t1;Cre17.g720300.t1.1;g17434.t1;Cre17.g720300.t1.1"		
+Cre17.g727050							g17578.t1		
+Cre17.g733000									
+Cre17.g736511									
+Cre17.g740344							"Cre17.g740344.t1.1;g17907.t1"		
+Cre17.g700000			Chloroplast						
+Cre17.g716950			Chloroplast				g17356.t1		
+Cre17.g728850			Mitochondrion				g17615.t1	RAA15	"Necessary for trans-splicing of psaA mRNA; Component of psaA trans-splicing sub complex II"
+Cre17.g714800			"Secretory pathway"			ISG6	"ISG-C3;Cre17.g714800.t1.1;g17306.t1;ISG6"	ISG6	"similar to Chlamydomonas incerta hydroxyproline-rich glycoprotein VSP-3"
+Cre17.g709100	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO28	"Cre17.g709100.t1.1;g17177.t1"	HFO28	"replication linked H4; histone gene cluster XXVIII (type 34BA)"
+Cre17.g727500							"g17588.t1;Cre17.g727500.t1.1"		
+Cre17.g724700	"GMM:31.5.1;GMM:29.3.3;GMM:26.30;GMM:26.3"	"cell.cell death.plants;protein.targeting.chloroplast;misc.other Ferredoxins and Rieske domain;misc.gluco-, galacto- and mannosidases"	Chloroplast	"GO:0055114;GO:0051537;GO:0016491;GO:0010277"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	PAO1	"PAO3;PAO1;g17526.t1;TIC55-3;Tic55-like3;TIC55-3;Tic55-like3;PAO1;PAO3;g17526.t1;TIC55-3;PAO1;Tic55-like3;PAO3;g17526.t1"		"Contains Rieske iron-sulfur cluster and PAO domains and transmembrane domain for attachment to thylakoid membrane; closely related to nearby Cre17.g724600 (PAO2); belongs to the classical family of short chain dehydrogenases [PMID: 15180984];Contains Rieske iron-sulfur cluster and PAO domains and transmembrane domain for attachment to thylakoid membrane; closely related to nearby Cre17.g724600 (PAO2); belongs to the classical family of short chain dehydrogenases [PMID: 15180984];Contains Rieske iron-sulfur cluster and PAO domains and transmembrane domain for attachment to thylakoid membrane; closely related to nearby Cre17.g724600 (PAO2); belongs to the classical family of short chain dehydrogenases [PMID: 15180984]"
+Cre17.g699650			Chloroplast				"DIV137;g16967.t1;DIV137;g16967.t1"		"ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196)"
+Cre17.g706050	GMM:29.4.1	"protein.postranslational modification.kinase"	"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR17	"SRR17;g17113.t2;g17113.t2;SRR17;g17113.t2;SRR17;SRR17;g17113.t2;g17113.t2;SRR17;g17113.t2;SRR17"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912)"
+Cre17.g742600							"g17959.t1;g17959.t1"		
+Cre17.g708038			Mitochondrion						
+Cre17.g739900							"Cre17.g739900.t1.1;g17896.t1"		
+Cre17.g726200			Mitochondrion				"Cre17.g726200.t1.1;g17560.t1;g17560.t1;Cre17.g726200.t1.1"		
+Cre17.g723750			"Secretory pathway"				g17505.t1		
+Cre17.g702500	GMM:1.1.2.3	"PS.lightreaction.photosystem I.biogenesis"	Chloroplast			TAB2	"Cre17.g702500.t1.1;g17030.t1"	TAB2	"Conserved chloroplast PsaB RNA binding protein with DUF192domain; Tab2 is involved in PsaB translation and photosystem I assembly. PMID: 14633996"
+Cre17.g745947	GMM:28.2	DNA.repair					"g18035.t1;Cre20.g759050.t1.1;g18035.t1;Cre20.g759050.t1.1"		
+Cre17.g720150							g17429.t1		
+Cre17.g737525	"GMM:30.2.12;GMM:30.2.11"	"signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI"							
+Cre17.g725150	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"		"g17536.t1;Cre17.g725150.t1.1;g17536.t1;Cre17.g725150.t1.1;Cre17.g725150.t1.1;g17536.t1;g17536.t1;Cre17.g725150.t1.1;Cre17.g725150.t1.1;g17536.t1;Cre17.g725150.t1.1;g17536.t1;Cre17.g725150.t1.1;g17536.t1;g17536.t1;Cre17.g725150.t1.1;g17536.t1;Cre17.g725150.t1.1"		
+Cre17.g743847	GMM:27.4	"RNA.RNA binding"		"GO:0016567;GO:0004842;GO:0003676"	"protein ubiquitination;ubiquitin-protein transferase activity;nucleic acid binding"		"g17992.t1;Cre20.g760800.t1.1;g17992.t1;Cre20.g760800.t1.1"		
+Cre17.g742500			Chloroplast				g17957.t1		
+Cre17.g745597							"g18028.t1;Cre20.g759350.t1.1;g18028.t1;Cre20.g759350.t1.1;Cre20.g759350.t1.1;g18028.t1;Cre20.g759350.t1.1;g18028.t1;g18028.t1;Cre20.g759350.t1.1;g18028.t1;Cre20.g759350.t1.1;Cre20.g759350.t1.1;g18028.t1;g18028.t1;Cre20.g759350.t1.1;g18028.t1;Cre20.g759350.t1.1;Cre20.g759350.t1.1;g18028.t1"		
+Cre17.g737353									
+Cre17.g723400			"Secretory pathway"				"Cre17.g723400.t1.1;g17498.t1;g17498.t1;Cre17.g723400.t1.1"		
+Cre17.g729301									
+Cre17.g738100			"Secretory pathway"				"g17854.t1;g17854.t1;g17854.t1;g17854.t1;g17854.t1"		
+Cre17.g730750			"Secretory pathway"	GO:0005515	"protein binding"		"g17659.t1;g17659.t1;g17659.t1;g17659.t1"		
+Cre17.g735850							g17800.t1		
+Cre17.g706700			"Secretory pathway"						
+Cre17.g705836			Mitochondrion				"Cre17.g705836.t1.1;g17107.t1"		"Eight-member family found found at two loci on chromosomes 16 and 17"
+Cre17.g737376			Mitochondrion						
+Cre17.g700200			Chloroplast				"g16982.t1;Cre17.g700200.t1.1"		
+Cre17.g733750			"Secretory pathway"				"g17732.t1;Cre17.g733750.t1.1"		
+Cre17.g734900			Chloroplast	"GO:0006508;GO:0004181"	"proteolysis;metallocarboxypeptidase activity"		"Cre17.g734900.t1.1;g17783.t2"		
+Cre17.g719950			Chloroplast				"Cre17.g719950.t1.1;g17425.t1;g17425.t1;Cre17.g719950.t1.1"		
+Cre17.g718650							"g17392.t1;Cre17.g718650.t1.1"		
+Cre17.g721400			Chloroplast				"g17454.t1;g17454.t1;g17454.t1;g17454.t1;g17454.t1"		
+Cre17.g716301			"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	SUM7	"g17339.t1;SUM7"		"Belongs to a cluster of 4 closely-related genes coding for fusion proteins between a Gibberellin 2-beta-dioxygenase domain and a C-terminal SUMO domain; does not contain the C-terminal GG motif, but GN; post-translational modification by SUMO modulates many important cellular processes"
+Cre17.g710800	GMM:29.8	"protein.assembly and cofactor ligation"	Chloroplast	"GO:0051536;GO:0016226;GO:0005506"	"iron-sulfur cluster binding;iron-sulfur cluster assembly;iron ion binding"	NFU3	"g17212.t2;NIFU3;Cre17.g710800.t1.1;Cre17.g710800.t1.1;g17212.t2;NIFU3"	"NFU3;NFU3"	"pfam01106, NifU-like domain; contains a C-terminal NifU domain (involved in biogenesis of FeS clusters);pfam01106, NifU-like domain; contains a C-terminal NifU domain (involved in biogenesis of FeS clusters)"
+Cre17.g746347	"GMM:28.2;GMM:28.1"	"DNA.repair;DNA.synthesis/chromatin structure"	Chloroplast	"GO:0006284;GO:0006281;GO:0004844"	"base-excision repair;DNA repair;uracil DNA N-glycosylase activity"	UNG1	"UNG1;g18043.t1;Cre20.g758750.t1.1"	UNG1	"Uracil DNA-glycosylase. Prevents mutagenesis by eliminating uracil from DNA by cleaving the N-glycosylic bond and triggering base-excision repair. Uracil bases occur from cytosine deamination or misincorporation of dUMP residues."
+Cre17.g747897			Chloroplast				"Cre20.g757500.t1.1;g18074.t2;Cre20.g757500.t1.1;g18074.t2;Cre20.g757500.t1.1;g18074.t2;g18074.t2;Cre20.g757500.t1.1;g18074.t2;Cre20.g757500.t1.1;Cre20.g757500.t1.1;g18074.t2"		
+Cre17.g731675			"Mitochondrion;Chloroplast"						
+Cre17.g703800	GMM:34.14	"transport.unspecified cations"		"GO:0055085;GO:0016020;GO:0006810;GO:0005215"	"transmembrane transport;membrane;transport;transporter activity"	DUR3C	"DUR3C;DUR32;DUR5;g17062.t1;g17062.t1;DUR5;DUR32;DUR3C;g17062.t1;DUR5;DUR32;DUR3C;DUR32;DUR3C;DUR5;g17062.t1"	"DUR3C;DUR3C;DUR3C;DUR3C"	"Na+/solute symporter family;Na+/solute symporter family;Na+/solute symporter family;Na+/solute symporter family"
+Cre17.g713674	GMM:28.2	DNA.repair					"Cre17.g713674.t1.1;g17281.t1;Cre17.g713674.t1.1;g17281.t1;g17281.t1;Cre17.g713674.t1.1"		
+Cre17.g710650	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK21	"PTK21;g17209.t1;g17209.t1;PTK21"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre17.g724050			"Secretory pathway"				"g17511.t1;g17511.t1"		
+Cre17.g719250			"Secretory pathway"				g17406.t1		
+Cre17.g741250			Mitochondrion	"GO:0051536;GO:0003824"	"iron-sulfur cluster binding;catalytic activity"	PHR6	"PHR1;g17928.t1;PHR1;g17928.t1;g17928.t1;PHR1;g17928.t1;PHR1;g17928.t1;PHR1"	"PHR6;PHR6;PHR6;PHR6;PHR6"	"FO synthase; member of the Radical SAM superfamily; enzyme has not been officially assigned an enzyme commission number, but falls under this category EC 2.5.1.-. Euryarchae FO is synthesized by two proteins encoded by separate genes called cofG and cofH (cof = coen;FO synthase; member of the Radical SAM superfamily; enzyme has not been officially assigned an enzyme commission number, but falls under this category EC 2.5.1.-. Euryarchae FO is synthesized by two proteins encoded by separate genes called cofG and cofH (cof = coen;FO synthase; member of the Radical SAM superfamily; enzyme has not been officially assigned an enzyme commission number, but falls under this category EC 2.5.1.-. Euryarchae FO is synthesized by two proteins encoded by separate genes called cofG and cofH (cof = coen;FO synthase; member of the Radical SAM superfamily; enzyme has not been officially assigned an enzyme commission number, but falls under this category EC 2.5.1.-. Euryarchae FO is synthesized by two proteins encoded by separate genes called cofG and cofH (cof = coen;FO synthase; member of the Radical SAM superfamily; enzyme has not been officially assigned an enzyme commission number, but falls under this category EC 2.5.1.-. Euryarchae FO is synthesized by two proteins encoded by separate genes called cofG and cofH (cof = coen"
+Cre17.g711950	GMM:29.6.1	"protein.folding.prefoldin and trigger factor"				PFP1	"PFP1;g17241.t2;Cre17.g711950.t1.1"		
+Cre17.g720800							"g17444.t1;g17444.t1;g17444.t1"		
+Cre17.g730550	"GMM:26.3.4;GMM:26.3;GMM:10.6.1"	"misc.gluco-, galacto- and mannosidases.endoglucanase;misc.gluco-, galacto- and mannosidases;cell wall.degradation.cellulases and beta-1,4-glucanases"	"Secretory pathway"	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"		"Cre17.g730550.t1.1;g17654.t1;g17654.t1;Cre17.g730550.t1.1"		
+Cre17.g743647	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"				"Cre20.g760950.t1.2;g17988.t1;Cre20.g760950.t1.1"		
+Cre17.g734142									
+Cre17.g715150							"Cre17.g715150.t1.1;g17312.t1"		
+Cre17.g710300			"Secretory pathway"			PHC31	"g17202.t1;g17202.t1"	"PHC31;PHC31"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre17.g696626			Mitochondrion				g16897.t1		
+Cre17.g698900			"Secretory pathway"						
+Cre17.g731100			Chloroplast			CPL14	"g17667.t1;Cre17.g731100.t1.1"	CPL14	
+Cre17.g714350			Chloroplast				"g17297.t1;g17297.t1;g17297.t1"		
+Cre17.g738650			"Secretory pathway"	GO:0046983	"protein dimerization activity"		"Cre17.g738650.t1.1;g17866.t1"		
+Cre17.g732802	GMM:13.2.6.2	"amino acid metabolism.degradation.aromatic aa.tyrosine"		"GO:0009072;GO:0008152;GO:0004334;GO:0003824"	"aromatic amino acid family metabolic process;metabolic process;fumarylacetoacetase activity;catalytic activity"		g17708.t1		
+Cre17.g704350	GMM:24.2	"biodegradation of xenobiotics.lactoylglutathione lyase"					"g17075.t1;Cre17.g704350.t1.1"	GLOD4	"Homolog of GLOD4 in mammals, which was shown to be differentially up-regulated in a canine model of retinal degeneration; Knock-down of GLOD4 in Chlamydomonas produced a short cilia phenotype;"
+Cre17.g714100	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA32	"HTA21;Cre17.g714100.t1.1;g17291.t1"	HTA32	"replication linked H2A; histone gene cluster XXXII (type 34BA)"
+Cre17.g713900	"GMM:33.99;GMM:3.5"	"development.unspecified;minor CHO metabolism.others"		GO:0005515	"protein binding"	LST8	"Cre17.g713900.t1.1;g17287.t1;LST8"	LST8	"WD-40 containing protein, homolog of LST8, GbetaL; conserved TOR kinase binding partner in complexes TORC1 and TORC2; abundance reduced during P starvation; hypomorphic mutant altered in the cellular response to P starvation; psr1 mutant fails to downregulate LST8 abundance and TORC1 activity under P-limitation"
+Cre17.g699700			Chloroplast				g16968.t1		
+Cre17.g710950			Mitochondrion				"g17218.t1;Cre17.g710950.t1.1"		
+Cre17.g718450			Mitochondrion			MMP2	"g17387.t1;MMP2"	MMP2	"Matrix Metalloprotease 2; Expressed in young zygotes [GI:15718393, PMID: 11680823]; Target of CRR1"
+Cre17.g736550			"Secretory pathway"						
+Cre17.g733550							"g17728.t1;Cre17.g733550.t1.1;Cre17.g733550.t1.1;g17728.t1"		
+Cre17.g718200							"g17382.t1;Cre17.g718200.t1.1"		
+Cre17.g711550	GMM:31.3	cell.cycle	Mitochondrion			CYCR2	"CYCR2;g17233.t1;CYCR2;g17233.t1"	"CYCR2;CYCR2"	
+Cre17.g742550			Chloroplast				"g17958.t1;Cre17.g742550.t1.1"		
+Cre17.g697550			Chloroplast				"g16916.t1;g16916.t1;g16916.t1"		
+Cre17.g726950	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g17576.t1		
+Cre17.g747247			Chloroplast			FAP2	"g18061.t1;Cre05.g229950.t1.1;g18061.t1;Cre05.g229950.t1.1;Cre05.g229950.t1.1;g18061.t1;Cre05.g229950.t1.1;g18061.t1"	"FAP2;FAP2;FAP2;FAP2"	"Similar to kinesin light chains;Similar to kinesin light chains;Similar to kinesin light chains;Similar to kinesin light chains"
+Cre17.g746897			Mitochondrion				"g18054.t2;Cre20.g758300.t1.1"		
+Cre17.g708850			Mitochondrion				"g17172.t1;g17172.t1;g17172.t1;g17172.t1;g17172.t1"		
+Cre17.g729901			"Secretory pathway"				g17640.t1		
+Cre17.g703075									
+Cre17.g708750	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			NSG1	"Cre17.g708750.t1.1;NSG1;CSE21;g17170.t1"	NSG1	"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre17.g699850	GMM:11.9.3.3	"lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase"	"Secretory pathway"	"GO:0008889;GO:0008081;GO:0006629"	"glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process"	GDP3	"Cre17.g699850.t1.1;GDP3;GDPD3;g16972.t1"		
+Cre17.g722350	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"	RABL2	"Cre17.g722350.t1.1;g17474.t1;RABL2A;g17474.t1;Cre17.g722350.t1.1;RABL2A"	"RABL2;RABL2"	"Distantly similar to a class of Rab-like proteins from mammals; IFT regulator;Distantly similar to a class of Rab-like proteins from mammals; IFT regulator"
+Cre17.g730600	"GMM:26.3.4;GMM:26.3;GMM:10.6.1"	"misc.gluco-, galacto- and mannosidases.endoglucanase;misc.gluco-, galacto- and mannosidases;cell wall.degradation.cellulases and beta-1,4-glucanases"		"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"		g17656.t1		
+Cre17.g734644	GMM:17.3.1.2.99	"hormone metabolism.brassinosteroid.synthesis-degradation.sterols.other"		GO:0071949	"FAD binding"	SQE1	"g17770.t1;Cre15.g645100.t1.1;Cre15.g645100.t1.2;SQE;SQE;Cre15.g645100.t1.1;Cre15.g645100.t1.2;g17770.t1"	"SQE1;SQE1"	"[EC: 1.14.14.17]; converts squalene to 2,3-oxidosqualene; predicted with three transmembrane domains; localized in ER;[EC: 1.14.14.17]; converts squalene to 2,3-oxidosqualene; predicted with three transmembrane domains; localized in ER"
+Cre17.g732533	GMM:24	"biodegradation of xenobiotics"	Chloroplast				g17702.t1		
+Cre17.g728350			"Secretory pathway"				g17605.t1		
+Cre17.g735600	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"	"Secretory pathway"	GO:0006629	"lipid metabolic process"	TGL21	"g17795.t1;TGL21;Cre17.g735600.t1.1"		
+Cre17.g708600	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB27	"HTB20;Cre17.g708600.t1.1;g17167.t1"	HTB27	"replication linked H2B; histone gene cluster XXVII (type 34BA)"
+Cre17.g701500	"GMM:29.9;GMM:29.6.2.6;GMM:20.2.1"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat"		"GO:0051082;GO:0031072"	"unfolded protein binding;heat shock protein binding"	DNJ1	"Cre17.g701500.t1.1;g17007.t1;g17007.t1;Cre17.g701500.t1.1;Cre17.g701500.t1.1;g17007.t1"	"DNJ1;DNJ1;DNJ1"	"DnaJ-like protein; probably cytosolic, as judged from absence of N-ter extension and also because it is co-orthologous to cytosolic ATJ2 and ATJ3 from Arabidopsis thaliana; Presumably involved in protein folding with HSP70A, since it contains N-terminal J-domain (pfam226), Cys-rich, DnaJ_CXXCX;;DnaJ-like protein; probably cytosolic, as judged from absence of N-ter extension and also because it is co-orthologous to cytosolic ATJ2 and ATJ3 from Arabidopsis thaliana; Presumably involved in protein folding with HSP70A, since it contains N-terminal J-domain (pfam226), Cys-rich, DnaJ_CXXCX;;DnaJ-like protein; probably cytosolic, as judged from absence of N-ter extension and also because it is co-orthologous to cytosolic ATJ2 and ATJ3 from Arabidopsis thaliana; Presumably involved in protein folding with HSP70A, since it contains N-terminal J-domain (pfam226), Cys-rich, DnaJ_CXXCX;"
+Cre17.g729250	GMM:29.2.99	protein.synthesis.misc		"GO:0005515;GO:0003723"	"protein binding;RNA binding"	UPF2	"UPF2;g17625.t1;g17625.t1;UPF2"	"UPF2;UPF2"	"Conserved Protein with MIF4G Domain; Part of a post-splicing multiprotein complex involved in both mRNA nuclear export and mRNA surveillance located in the perinuclear area interacts with translation release factors and the proteins that are functional homologs of yeast Upf1p and Upf3p;Conserved Protein with MIF4G Domain; Part of a post-splicing multiprotein complex involved in both mRNA nuclear export and mRNA surveillance located in the perinuclear area interacts with translation release factors and the proteins that are functional homologs of yeast Upf1p and Upf3p"
+Cre17.g728250	GMM:35.1.19	"not assigned.no ontology.C2 domain-containing protein"					g17603.t1		
+Cre17.g700166	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g16981.t1;g16981.t1;g16981.t1"		
+Cre17.g716750							"g17352.t1;g17352.t1"		
+Cre17.g740323			Chloroplast						
+Cre17.g714250	GMM:31.6.1.4.1	"cell.motility.eukaryotes.axonemal dyneins.outer arm"		GO:0045454	"cell redox homeostasis"	DLX2	"g17295.t1;Cre17.g714250.t1.1;ODA-LC5;DLC5"	DLX2	"LC5 component of outer arm dynein; thioredoxin homolog 14k Da"
+Cre17.g700100							g16979.t1		
+Cre17.g698683			Mitochondrion				"g16946.t1;Cre17.g698683.t1.1"		
+Cre17.g715600			Chloroplast				"g17323.t1;g17323.t1"		
+Cre17.g698650	"GMM:21.2.2;GMM:20.2"	"redox.ascorbate and glutathione.glutathione;stress.abiotic"	"Secretory pathway"	"GO:0006749;GO:0003840"	"glutathione metabolic process;gamma-glutamyltransferase activity"	GTP1	"GTP1;g16945.t1;GTP1;g16945.t1"	"GGT1;GGT1"	"catalyzes the first step in the degradation of glutathione; located on the external surface of the plasma membrane in other organisms; Orthologous to four GGT genes in Arabidopsis;catalyzes the first step in the degradation of glutathione; located on the external surface of the plasma membrane in other organisms; Orthologous to four GGT genes in Arabidopsis"
+Cre17.g742000						MOT8	"MOT8;Cre17.g742000.t1.1;g17945.t1"	MOT8	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre17.g723350	GMM:34.6	transport.sulphate		"GO:0055085;GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0008271"	"transmembrane transport;integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;secondary active sulfate transmembrane transporter activity"	SULTR2	"SUL2;g17497.t1;Cre17.g723350.t1.1"	SULTR2	"similar to Arabidopsis Sultr4;1"
+Cre17.g702550							"Cre17.g702550.t1.1;g17031.t1"		
+Cre17.g714750			Mitochondrion				"g17305.t1;Cre17.g714750.t1.1;g17305.t1;Cre17.g714750.t1.1"		
+Cre17.g710600	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g17208.t1;Cre17.g710600.t1.1"		
+Cre17.g723950						FAP397	"g17509.t1;g17509.t1"	"FAP397;FAP397"	
+Cre17.g726100	GMM:27.1	RNA.processing	Mitochondrion	"GO:0016779;GO:0006396;GO:0003723"	"nucleotidyltransferase activity;RNA processing;RNA binding"	PAP3			
+Cre17.g711401			Mitochondrion				g17227.t1		
+Cre17.g699250							"g16959.t1;g16959.t1"		
+Cre17.g713051	GMM:29.4	"protein.postranslational modification"	Mitochondrion			DNJ33	"Cre17.g713082.t1.3;g17266.t1"		
+Cre17.g705550							"Cre17.g705550.t1.1;g17100.t1"		
+Cre17.g706850	"GMM:34.99;GMM:29.5.5"	"transport.misc;protein.degradation.serine protease"	"Secretory pathway"	"GO:0016021;GO:0006890"	"integral component of membrane;retrograde vesicle-mediated transport, Golgi to ER"		"g17127.t1;g17127.t1"		
+Cre17.g733100			"Secretory pathway"				g17716.t1		
+Cre17.g733702									
+Cre17.g724350	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175"	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA5	"POA5;Cre17.g724350.t1.1;g17519.t1"	POA5	"20S proteasome alpha subunit E (type 5)"
+Cre17.g732850	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"	Mitochondrion	"GO:0055114;GO:0016491;GO:0016209"	"oxidation-reduction process;oxidoreductase activity;antioxidant activity"	SCO1	"g17709.t1;Cre17.g732850.t1.1;SCO1"	SCO1	"Putative mitochondrion-associated cytochrome c oxidase assembly factor SCO1/Sen1; Precursor of mitochondrial protein; May transport copper to the Cu site of COX2"
+Cre17.g731150				"GO:0016021;GO:0006810"	"integral component of membrane;transport"		"Cre17.g731150.t1.1;g17668.t1"		
+Cre17.g723500	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g17500.t1;g17500.t1;g17500.t1;g17500.t1;g17500.t1;g17500.t1;g17500.t1;g17500.t1"		"Target of CRR1;Target of CRR1;Target of CRR1;Target of CRR1;Target of CRR1;Target of CRR1;Target of CRR1;Target of CRR1"
+Cre17.g697350	GMM:20.1	stress.biotic		GO:0006397	"mRNA processing"		"Cre17.g697350.t1.1;g16912.t1"		
+Cre17.g722750							"Cre17.g722750.t1.1;g17485.t1"	CTAP4	"Copurifies with both Tic20 and Tic214 and may be part of the chloroplast translocon"
+Cre17.g741150	"GMM:30.2.7;GMM:30.2.12;GMM:30.2.11;GMM:30.2.10"	"signalling.receptor kinases.leucine rich repeat VII;signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;signalling.receptor kinases.leucine rich repeat X"	Chloroplast				g17926.t1		
+Cre17.g743064				"GO:0032775;GO:0009007;GO:0003677"	"DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding"		"g17969.t1;Cre17.g742900.t1.2"		
+Cre17.g736000							"g17804.t1;g17804.t1"		
+Cre17.g709450			"Secretory pathway"				"g17184.t1;Cre17.g709450.t1.1"		
+Cre17.g696750	"GMM:27.3.5;GMM:27.3.20;GMM:27.3"	"RNA.regulation of transcription.ARR;RNA.regulation of transcription.G2-like transcription factor family (GARP);RNA.regulation of transcription"	Mitochondrion				"g16900.t1;g16900.t1;g16900.t1;g16900.t1;g16900.t1;g16900.t1;g16900.t1;g16900.t1;g16900.t1;g16900.t1;g16900.t1;g16900.t1;g16900.t1"		
+Cre17.g735950			Mitochondrion				"Cre17.g735950.t1.1;g17803.t1"		
+Cre17.g696850	GMM:17.1.3	"hormone metabolism.abscisic acid.induced-regulated-responsive-activated"	Mitochondrion				"Cre17.g696850.t1.1;g16902.t1"	POB16	"Found in basal body proteome; Related to REEP5 in humans"
+Cre17.g732100						SSA4	"Cre17.g732100.t1.1;g17693.t1;SSA4"	SSA4	"identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA)"
+Cre17.g721250						IFT38	"Cre17.g721250.t1.1;FAP22;g17451.t1;Cluap1;QilinDyf-3"	IFT38	"Found in the flagellar proteome; component of IFT-B2 particle; similar to clusterin-associated protein 1 CLUAP1 and cystic kidney disease gene qilin"
+Cre17.g717500									
+Cre17.g744947	GMM:27.1	RNA.processing	Mitochondrion	"GO:0008173;GO:0006396;GO:0003723"	"RNA methyltransferase activity;RNA processing;RNA binding"		"g18015.t1;g18015.t1;g18015.t1"		
+Cre17.g702200	"GMM:31.1;GMM:27.3.39"	"cell.organisation;RNA.regulation of transcription.AtSR transcription factor family"	Chloroplast			ANK29	"ANK29;Cre17.g702200.t1.1;g17024.t1"		"protein of unknown function with ankyrin repeats"
+Cre17.g740600	GMM:29.5.5	"protein.degradation.serine protease"	"Secretory pathway"	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	MOT50	"g17914.t2;MOT50"	MOT50	"Identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre17.g720350			Mitochondrion	"GO:0051301;GO:0032955"	"cell division;regulation of barrier septum assembly"	MINE1	"ARC12;g17435.t1"	MINE1	"helps define position of the chloroplast division ring (PMID: 11743109); conserved in plants and eubacteria"
+Cre17.g732901	GMM:28.2	DNA.repair		GO:0005515	"protein binding"		"g17711.t1;Cre17.g732901.t1.1"		
+Cre17.g707900			"Secretory pathway"				"g17149.t1;Cre17.g707900.t1.1"		
+Cre17.g735750			Mitochondrion	GO:0005509	"calcium ion binding"	EFH11	"EFH11;g17798.t1;Cre17.g735750.t1.1;Cre17.g735750.t1.1;EFH11;g17798.t1"		
+Cre17.g716625									
+Cre17.g739000			Mitochondrion				g17873.t1		
+Cre17.g731800			"Secretory pathway"	GO:0005515	"protein binding"		"Cre17.g731800.t1.1;g17687.t1;Cre17.g731800.t1.1;g17687.t1;g17687.t1;Cre17.g731800.t1.1;g17687.t1;Cre17.g731800.t1.1;Cre17.g731800.t1.1;g17687.t1"		
+Cre17.g696550			Chloroplast				"g16895.t1;Cre17.g696550.t1.1;uS8m"	MRPS8	
+Cre17.g716500							"g17344.t1;Cre17.g716500.t1.1"		
+Cre17.g710050				"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"		"g17197.t1;g17197.t1"		
+Cre17.g704500			"Secretory pathway"				g17078.t1		
+Cre17.g743397									
+Cre17.g709200	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA28	"g17179.t1;HTA3;HTA30;Cre17.g709200.t1.1"	HTA28	"replication linked H2A; histone gene cluster XXVIII (type 34BA)"
+Cre17.g745397							"Cre20.g759550.t1.1;g18024.t1"		
+Cre17.g724550	GMM:31.6.1.2	cell.motility.eukaryotes.deflagellation				DIP13	"g17523.t1;Cre17.g724550.t1.1;NA14"	DIP13	"Deflagellation inducible protein, 13 kDa [gi:4689324]; Found in the flagellar proteome; Similar to Sjogren's syndrome nuclear autoantigen 1 (SSNA1)"
+Cre17.g733753									
+Cre17.g721950	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"Cre17.g721950.t1.1;g17466.t1"		
+Cre17.g715421	GMM:3.5	"minor CHO metabolism.others"	Mitochondrion				"Cre17.g715421.t1.1;g17319.t1;g17319.t1;Cre17.g715421.t1.1;g17319.t1;Cre17.g715421.t1.1;g17319.t1;Cre17.g715421.t1.1"		
+Cre17.g734821									
+Cre17.g702900				GO:0016021	"integral component of membrane"		"g17039.t1;Cre17.g702900.t1.1;GFY4"	GFY4	"GPR1/FUN34/YaaH family membrane protein; located in microbodies"
+Cre17.g711350				GO:0046983	"protein dimerization activity"		"g17226.t1;Cre17.g711350.t1.1"		
+Cre17.g724000							"g17510.t1;g17510.t1;g17510.t1;g17510.t1;g17510.t1;g17510.t1"		
+Cre17.g714200	GMM:34.15	transport.potassium		"GO:0071805;GO:0016020;GO:0015079"	"potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity"	KUP2	"g17293.t1;KUP1;KUP2;KUP6;g17293.t1;KUP1;KUP2;KUP6;KUP6;KUP2;KUP1;g17293.t1;g17293.t1;KUP6;KUP2;KUP1;KUP2;KUP6;g17293.t1;KUP1;KUP2;KUP6;KUP1;g17293.t1;KUP1;g17293.t1;KUP6;KUP2;KUP1;KUP6;g17293.t1;KUP2;KUP2;g17293.t1;KUP6;KUP1"	"KUP2;KUP2;KUP2;KUP2;KUP2;KUP2;KUP2;KUP2;KUP2"	"linked to related KUP2 and KUP3;linked to related KUP2 and KUP3;linked to related KUP2 and KUP3;linked to related KUP2 and KUP3;linked to related KUP2 and KUP3;linked to related KUP2 and KUP3;linked to related KUP2 and KUP3;linked to related KUP2 and KUP3;linked to related KUP2 and KUP3"
+Cre17.g736437			"Secretory pathway"						
+Cre17.g737300			"Secretory pathway"				"g17833.t1;g17833.t1;g17833.t1"		
+Cre17.g727850			Chloroplast				"g17595.t1;g17595.t1;g17595.t1"		
+Cre17.g709750	"GMM:31.3;GMM:30.6;GMM:29.4.1;GMM:29.4"	"cell.cycle;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g17190.t1		
+Cre17.g723000							g17490.t1		
+Cre17.g728650	"GMM:33.99;GMM:3.5"	"development.unspecified;minor CHO metabolism.others"		GO:0005515	"protein binding"	FAP196	g17611.t1	FAP196	"Flagellar Associated Protein; found in the flagellar proteome; identified in the flagellar basal body proteome [PMID: 15137946]; upregulated by deflagellation"
+Cre17.g719701			Chloroplast						
+Cre17.g739600							"g17890.t1;Cre17.g739600.t1.1;Cre17.g739600.t1.1;g17890.t1"		
+Cre17.g747347	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Chloroplast	GO:0005525	"GTP binding"		"g18063.t1;Cre05.g230050.t1.1;Cre05.g230050.t1.2"		
+Cre17.g712400	"GMM:33.99;GMM:1.1.1.3"	"development.unspecified;PS.lightreaction.photosystem II.biogenesis"	Chloroplast.Stroma.Thylakoid.Membrane	GO:0016021	"integral component of membrane"	TERC	"TERC;g17251.t1;Cre17.g712400.t1.1;g17251.t1;TERC;Cre17.g712400.t1.1;TERC;g17251.t1;Cre17.g712400.t1.1;Cre17.g712400.t1.1;TERC;g17251.t1;g17251.t1;Cre17.g712400.t1.1;TERC;Cre17.g712400.t1.1;TERC;g17251.t1;g17251.t1;Cre17.g712400.t1.1;TERC"	"TERC1;TERC1;TERC1;TERC1;TERC1;TERC1;TERC1"	"Homologous to bacterial tellurite-resistance gene TerC; contains 7-8 putative transmembrane helices; associates with ALB3 to promote integration of PSII subunits;Homologous to bacterial tellurite-resistance gene TerC; contains 7-8 putative transmembrane helices; associates with ALB3 to promote integration of PSII subunits;Homologous to bacterial tellurite-resistance gene TerC; contains 7-8 putative transmembrane helices; associates with ALB3 to promote integration of PSII subunits;Homologous to bacterial tellurite-resistance gene TerC; contains 7-8 putative transmembrane helices; associates with ALB3 to promote integration of PSII subunits;Homologous to bacterial tellurite-resistance gene TerC; contains 7-8 putative transmembrane helices; associates with ALB3 to promote integration of PSII subunits;Homologous to bacterial tellurite-resistance gene TerC; contains 7-8 putative transmembrane helices; associates with ALB3 to promote integration of PSII subunits;Homologous to bacterial tellurite-resistance gene TerC; contains 7-8 putative transmembrane helices; associates with ALB3 to promote integration of PSII subunits"
+Cre17.g746047			"Secretory pathway"				"g18037.t1;g18037.t1"		
+Cre17.g722583			"Secretory pathway"						
+Cre17.g715801	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion				"Cre17.g715801.t1.1;g17328.t1;g17328.t1;Cre17.g715801.t1.1"		
+Cre17.g704251									
+Cre17.g703126			Mitochondrion						
+Cre17.g719771							g17418.t1		
+Cre17.g712350	"GMM:29.5.7;GMM:29.5"	"protein.degradation.metalloprotease;protein.degradation"	"Secretory pathway"	GO:0016020	membrane	CPLD6	g17250.t1	CPLD6	"Conserved in the Plant Lineage and Diatoms"
+Cre17.g709400			"Secretory pathway"				"g17183.t1;g17183.t1"		
+Cre17.g697250			Chloroplast						
+Cre17.g725750				GO:0003723	"RNA binding"		"Cre17.g725750.t1.1;g17551.t1;Cre17.g725750.t1.1;g17551.t1;g17551.t1;Cre17.g725750.t1.1;Cre17.g725750.t1.1;g17551.t1"		
+Cre17.g726600	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway;Chloroplast"				"Cre17.g726600.t1.1;g17569.t3"		
+Cre17.g742100			Mitochondrion				"g17947.t1;Cre17.g742100.t1.1"		
+Cre17.g737000							"g17826.t1;Cre17.g737000.t1.1"		
+Cre17.g702750	"GMM:26.22;GMM:11.8.1"	"misc.short chain dehydrogenase/reductase (SDR);lipid metabolism.exotics (steroids, squalene etc).sphingolipids"					"SDR27;Cre17.g702750.t1.1;g17036.t1"		"May exihibit 3-dehydrosphinganine reductase and/or 3alpha,7alpha,12alpha-trihydroxy-5beta-cholest-24-enoyl-CoA hydratase activity"
+Cre17.g729850	GMM:31.6.1.6.1	"cell.motility.eukaryotes.central pair.C1a"				FAP227	"FAP227;Cre17.g729850.t1.1;PF6-IP4;g17638.t1;C1a-18"	FAP227	"Found in the flagellar proteome; Similar to Testis Specific Gene A2; Together with PF6, C1a-86, C1a-34, C1a-32 and calmodulin, forms the central pair projection C1a; may play a role in modulating both inner and outer dynein arm activity; Similar to Sjoegren syndrome nuclear autoantigen"
+Cre17.g700425									
+Cre17.g706350			"Secretory pathway"				g17118.t1		
+Cre17.g729450	GMM:34.18	"transport.unspecified anions"	Chloroplast	"GO:0055085;GO:0016020;GO:0006821;GO:0005247"	"transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity"	CLV2	"CLV2;Cre17.g729450.t1.1;g17630.t1;g17630.t1;Cre17.g729450.t1.1;CLV2;Cre17.g729450.t1.1;g17630.t1;CLV2"		
+Cre17.g712800							g17260.t1		
+Cre17.g733200				"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR4			
+Cre17.g740926							g17921.t1		
+Cre17.g704950			Mitochondrion				g17087.t1		
+Cre17.g739950			"Secretory pathway"	"GO:0008408;GO:0006139;GO:0003676"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding"		"g17897.t1;g17897.t1;g17897.t1;g17897.t1"		
+Cre17.g734300	GMM:29.3.3	protein.targeting.chloroplast	Mitochondrion	GO:0005525	"GTP binding"		"g17754.t1;AGI1;g17754.t1;AGI1"		"Initially described as the TOC159 ortholog, but in fact closer to Avirulence-Induced Gene 1 (AGI1) gene in Arabidopsis thaliana;;Initially described as the TOC159 ortholog, but in fact closer to Avirulence-Induced Gene 1 (AGI1) gene in Arabidopsis thaliana;"
+Cre17.g698950	GMM:27.2	RNA.transcription					"Cre17.g698950.t1.1;g16953.t1"		
+Cre17.g729000			Mitochondrion				"g17620.t1;g17620.t1"		
+Cre17.g733450	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"	Chloroplast	"GO:0015074;GO:0005515"	"DNA integration;protein binding"				
+Cre17.g745797			Mitochondrion				"Cre20.g759150.t1.1;g18032.t1;Cre20.g759150.t1.1;g18032.t1"		
+Cre17.g725450	GMM:29.5.11	protein.degradation.ubiquitin	Mitochondrion				"g17545.t1;g17545.t1"		
+Cre17.g724250			Chloroplast				"g17516.t1;g17516.t1"		
+Cre17.g727326							g17584.t1		
+Cre17.g697150			Mitochondrion				"Cre17.g697150.t1.1;g16907.t1"		
+Cre17.g720900			Chloroplast				"g17446.t1;g17446.t1"		
+Cre17.g701400			Mitochondrion						
+Cre17.g741650							"Cre17.g741650.t1.1;g17938.t1"		
+Cre17.g705778			Chloroplast			PROB2	"g17105.t1;Cre17.g705800.t1.3"		"Eight-member family found found at two loci on chromosomes 16 and 17"
+Cre17.g739457			Chloroplast				"Cre17.g739457.t1.1;g17884.t1"		
+Cre17.g698100	GMM:17.5.2	"hormone metabolism.ethylene.signal transduction"					"DeSI-3;g16930.t1;Cre17.g698100.t1.1"	DESI3	"deSUMOlyating isopeptidase"
+Cre17.g731750	GMM:26.1	misc.misc2	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP740A1	"CYP37;g17686.t1;CYP37;g17686.t1"	"CYP740A1;CYP740A1"	"Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols.;Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols."
+Cre17.g722100				GO:0005096	"GTPase activator activity"	SSA3	"g17469.t3;SSA3;SSA3;g17469.t3;g17469.t3;SSA3;SSA3;g17469.t3;g17469.t3;SSA3;g17469.t3;SSA3;SSA3;g17469.t3;SSA3;g17469.t3"	"SSA3;SSA3;SSA3;SSA3;SSA3;SSA3;SSA3;SSA3"	"identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA)"
+Cre17.g714900	GMM:16.8.4.1	"secondary metabolism.flavonoids.flavonols.flavonol synthase (FLS)"				CGL11	"g17307.t1;Cre17.g714900.t1.1"	CGL11	
+Cre17.g705300			"Secretory pathway"			PHC68	"g17094.t2;PHC68;g17094.t2;PHC68;g17094.t2;PHC68"		
+Cre17.g704000							"g17068.t1;Cre17.g704000.t1.1"		
+Cre17.g722526									
+Cre17.g740350	GMM:34.2	transport.sugars					g17908.t1		
+Cre17.g734100	GMM:23.1.2.20	"nucleotide metabolism.synthesis.purine.adenylosuccinate synthase"	Chloroplast	"GO:0006164;GO:0005525;GO:0004019"	"purine nucleotide biosynthetic process;GTP binding;adenylosuccinate synthase activity"		"g17746.t1;Cre17.g734100.t1.1"		
+Cre17.g710450	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB29	"g17205.t1;Cre17.g710450.t1.1;HTB44"	HTB29	"replication linked H2B; histone gene cluster XXIX (type 43BA)"
+Cre17.g722200	"GMM:29.2.1.1.4.2;GMM:29.2.1.1.1.2.11"	"protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L11"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	MRPL11	"Cre17.g722200.t1.1;uL11m;g17471.t1"	MRPL11	
+Cre17.g705350	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CDPKK2	"CDPKK2;g17096.t1;g17096.t1;CDPKK2;g17096.t1;CDPKK2;g17096.t1;CDPKK2;g17096.t1;CDPKK2"		
+Cre17.g713000			Chloroplast				"g17264.t1;Cre17.g713000.t1.1;g17264.t1;Cre17.g713000.t1.1;g17264.t1;Cre17.g713000.t1.1"		
+Cre17.g740510	GMM:31.2	cell.division				CDC27	"g17912.t1;APC3;DIV23;APC3;DIV23;g17912.t1"	"CDC27;CDC27"	"ts-lethal mutations block anaphase (PMID 25336509);;ts-lethal mutations block anaphase (PMID 25336509);"
+Cre17.g728450	GMM:31.6.1.11	cell.motility.eukaryotes.other	"Secretory pathway"				"Cre17.g728450.t1.1;g17607.t1;Cre17.g728450.t1.1;g17607.t1;Cre17.g728450.t1.1;g17607.t1;Cre17.g728450.t1.1;g17607.t1;Cre17.g728450.t1.1;g17607.t1;g17607.t1;Cre17.g728450.t1.1;g17607.t1;Cre17.g728450.t1.1;Cre17.g728450.t1.1;g17607.t1"		
+Cre17.g725550	GMM:7.1.1	"OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)"		"GO:0055114;GO:0050661;GO:0006006;GO:0004345"	"oxidation-reduction process;NADP binding;glucose metabolic process;glucose-6-phosphate dehydrogenase activity"	GLD1	"g17547.t1;Cre17.g725550.t1.1;g17547.t1;Cre17.g725550.t1.1;Cre17.g725550.t1.1;g17547.t1"	"GLD1;GLD1;GLD1"	"Putative glucose-6-phosphate-1-dehydrogenase, cytosolic, based on similarity to Chlorella vulgaris cytosolic G6P DH (gi:21262179);Putative glucose-6-phosphate-1-dehydrogenase, cytosolic, based on similarity to Chlorella vulgaris cytosolic G6P DH (gi:21262179);Putative glucose-6-phosphate-1-dehydrogenase, cytosolic, based on similarity to Chlorella vulgaris cytosolic G6P DH (gi:21262179)"
+Cre17.g733950						CGL152	"g17742.t1;Cre17.g733950.t1.1"	CGL152	
+Cre17.g702150	"GMM:29.8;GMM:21.1"	"protein.assembly and cofactor ligation;redox.thioredoxin"	Chloroplast	"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	CCS5	"TRX20;Cre17.g702150.t1.1;g17023.t1;HCF164"	CCS5	"Thioredoxin-like protein, similar to Arabidopsis HCF164, plastid localized, lumen-facing, membrane anchored; involved in biogenesis of the cytochrome b6f complex [PMID: 1171887]."
+Cre17.g720050	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	"GO:0006508;GO:0005524;GO:0004222"	"proteolysis;ATP binding;metalloendopeptidase activity"	FTSH2	"Cre17.g720050.t1.1;FHL2;g17427.t1;FHL2;g17427.t1;Cre17.g720050.t1.1;FHL2;Cre17.g720050.t1.1;g17427.t1;FHL2;g17427.t1;Cre17.g720050.t1.1"	"FTSH2;FTSH2;FTSH2;FTSH2"	"FtsH protease 2, type B; AAA metalloprotease protease, chloroplast; ortholog of Arabidopsis FtsH2=Var2 and FtsH8;FtsH protease 2, type B; AAA metalloprotease protease, chloroplast; ortholog of Arabidopsis FtsH2=Var2 and FtsH8;FtsH protease 2, type B; AAA metalloprotease protease, chloroplast; ortholog of Arabidopsis FtsH2=Var2 and FtsH8;FtsH protease 2, type B; AAA metalloprotease protease, chloroplast; ortholog of Arabidopsis FtsH2=Var2 and FtsH8"
+Cre17.g718300	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	"GO:0046872;GO:0008270"	"metal ion binding;zinc ion binding"		g17384.t2		
+Cre17.g726850				GO:0003723	"RNA binding"		"Cre17.g726850.t1.1;g17574.t1;g17574.t1;Cre17.g726850.t1.1;g17574.t1;Cre17.g726850.t1.1;Cre17.g726850.t1.1;g17574.t1;g17574.t1;Cre17.g726850.t1.1"		
+Cre17.g716150	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	Mitochondrion	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	SUM4	"g17336.t1;SUM4;SUMO90"		"Belongs to a cluster of 4 closely-related genes coding for fusion proteins between a Gibberellin 2-beta-dioxygenase domain and a C-terminal SUMO domain; does not contain the C-terminal GG motif, but GN; post-translational modification by SUMO modulates many important cellular processes"
+Cre17.g699926			"Secretory pathway"						
+Cre17.g730950	"GMM:31.6.1.3.1.1;GMM:31.1"	"cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.kinesin-2 subunits;cell.organisation"		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	FLA10	"Cre17.g730950.t1.1;g17664.t1;FLA10;KIN2-2;KHP1"	FLA10	"kinesin-2 (KRP85/95) family; motor subunit of heterotrimeric kinesin complex that drives anterograde intraflagellar transport"
+Cre17.g746947			"Secretory pathway"				"g18055.t1;Cre20.g758250.t1.1;g18055.t1;Cre20.g758250.t1.1"		
+Cre17.g741000			"Secretory pathway"	GO:0005789	"endoplasmic reticulum membrane"		"g17923.t1;Cre17.g741000.t1.1"		
+Cre17.g710351	GMM:29.5.7	protein.degradation.metalloprotease					g17203.t1		
+Cre17.g701100	GMM:3.5	"minor CHO metabolism.others"	"Secretory pathway"			CPK8	"CPK8;g16999.t1;Cre17.g701100.t1.1"		
+Cre17.g708700	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR27	"Cre17.g708700.t1.1;g17169.t1;HTR20"	HTR27	"replication linked H3; histone gene cluster XXVII (type 34BA)"
+Cre17.g699400			"Secretory pathway"				"Cre17.g699400.t1.1;g16962.t1"		
+Cre17.g706950							"Cre17.g706950.t1.1;g17129.t1;g17129.t1;Cre17.g706950.t1.1"		
+Cre17.g731300				GO:0016020	membrane		"Cre17.g731300.t1.1;g17671.t1"		"Similarity to UPF0016 family"
+Cre17.g742250	"GMM:31.3;GMM:31.2;GMM:3.6;GMM:29.4.1;GMM:29.4"	"cell.cycle;cell.division;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	CDKG2	"g17952.t1;NCG9"	CDKG2	"Chlamydomonas specific subfamily; AASTLRE motif. Novel CDK subfamily. Also identified from nitrogen starvation experiments as nitrogen-controlled-gene NCG9 [PMID: 11469597]"
+Cre17.g731581									
+Cre17.g730200	"GMM:33.99;GMM:29.3.5"	"development.unspecified;protein.targeting.peroxisomes"		GO:0005515	"protein binding"	PEX7	"Cre17.g730200.t1.1;g17646.t1"	PEX7	"Homolog of PEX7 peroxisomal targeting signal 2 receptor"
+Cre17.g740261			Chloroplast			FAP365	g17904.t1	FAP365	"Found in Cr and Volvox but not strongly conserved elsewhere"
+Cre17.g723250	GMM:29.5	protein.degradation	Chloroplast			CPE1	"Cre17.g723250.t1.1;CPP1;g17495.t1;g17495.t1;Cre17.g723250.t1.1;CPP1;CPP1;g17495.t1;Cre17.g723250.t1.1;g17495.t1;CPP1;Cre17.g723250.t1.1"	"CPE1;CPE1;CPE1;CPE1"	"Metalloendopeptidase, M16 family, homologous to mitochondrial MPP; cleaves chloroplast transit peptide after import, probably in a two-step reaction (PMID: 12888578); the extended cTP of CPE must be cleaved to activate the enzyme;Metalloendopeptidase, M16 family, homologous to mitochondrial MPP; cleaves chloroplast transit peptide after import, probably in a two-step reaction (PMID: 12888578); the extended cTP of CPE must be cleaved to activate the enzyme;Metalloendopeptidase, M16 family, homologous to mitochondrial MPP; cleaves chloroplast transit peptide after import, probably in a two-step reaction (PMID: 12888578); the extended cTP of CPE must be cleaved to activate the enzyme;Metalloendopeptidase, M16 family, homologous to mitochondrial MPP; cleaves chloroplast transit peptide after import, probably in a two-step reaction (PMID: 12888578); the extended cTP of CPE must be cleaved to activate the enzyme"
+Cre17.g726000			"Secretory pathway"			PAP3	"Cre17.g726000.t1.1;g17556.t1;g17556.t1;Cre17.g726000.t1.1;g17556.t1;Cre17.g726000.t1.1;Cre17.g726000.t1.1;g17556.t1;Cre17.g726000.t1.1;g17556.t1"	"PAP3;PAP3;PAP3;PAP3;PAP3"	"Belongs to class-II Ntrs; shows the Glu287 residue typical of tRNA CCA-nucleotidyl transferases; similar to AtNtr3 (At1g22660); conserved in Viridiplantae; predicted organellar; large intron contains an intervening ubiquitin carboxyl-terminal hydrolase on opposite strand;Belongs to class-II Ntrs; shows the Glu287 residue typical of tRNA CCA-nucleotidyl transferases; similar to AtNtr3 (At1g22660); conserved in Viridiplantae; predicted organellar; large intron contains an intervening ubiquitin carboxyl-terminal hydrolase on opposite strand;Belongs to class-II Ntrs; shows the Glu287 residue typical of tRNA CCA-nucleotidyl transferases; similar to AtNtr3 (At1g22660); conserved in Viridiplantae; predicted organellar; large intron contains an intervening ubiquitin carboxyl-terminal hydrolase on opposite strand;Belongs to class-II Ntrs; shows the Glu287 residue typical of tRNA CCA-nucleotidyl transferases; similar to AtNtr3 (At1g22660); conserved in Viridiplantae; predicted organellar; large intron contains an intervening ubiquitin carboxyl-terminal hydrolase on opposite strand;Belongs to class-II Ntrs; shows the Glu287 residue typical of tRNA CCA-nucleotidyl transferases; similar to AtNtr3 (At1g22660); conserved in Viridiplantae; predicted organellar; large intron contains an intervening ubiquitin carboxyl-terminal hydrolase on opposite strand"
+Cre17.g729101	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC37	"g17622.t1;PHC37"		
+Cre17.g733208	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"	SRR4	"Cre17.g733208.t1.1;g17721.t1;Cre17.g733208.t1.1;g17721.t1;Cre17.g733208.t1.1;g17721.t1;Cre17.g733208.t1.1;g17721.t1;g17721.t1;Cre17.g733208.t1.1;Cre17.g733208.t1.1;g17721.t1;Cre17.g733208.t1.1;g17721.t1;Cre17.g733208.t1.1;g17721.t1;Cre17.g733208.t1.1;g17721.t1"		
+Cre17.g706550							g17122.t1		
+Cre17.g713200	"GMM:34.9;GMM:34.8"	"transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane"		"GO:0055085;GO:0016020;GO:0006814;GO:0005215"	"transmembrane transport;membrane;sodium ion transport;transporter activity"	OMT2	"OMT2;g17269.t1;OMT2;g17269.t1"	"OMT2;OMT2"	"Chloroplast-located transporter, homologous to AtOMT1 [PMID:7873543]; participates probably in the export of glutamate (and aspartate), by exchanging stromal malate for cytosolic 2-oxoglutarate (oxaloacetate); linked to closely related OMT1; highest similarity to oxoglutarate/malate translocator (PMID: 7873543) and to di- and tri-carboxylate translocators, but also has similarity to a Na+/SO4-- translocator domain; could be a dicistronic mRNA: an upstream ORF starting at first AUG would stop 54 nt before t;Chloroplast-located transporter, homologous to AtOMT1 [PMID:7873543]; participates probably in the export of glutamate (and aspartate), by exchanging stromal malate for cytosolic 2-oxoglutarate (oxaloacetate); linked to closely related OMT1; highest similarity to oxoglutarate/malate translocator (PMID: 7873543) and to di- and tri-carboxylate translocators, but also has similarity to a Na+/SO4-- translocator domain; could be a dicistronic mRNA: an upstream ORF starting at first AUG would stop 54 nt before t"
+Cre17.g708950	"GMM:30.2.12;GMM:30.2.11"	"signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI"	"Secretory pathway"				"g17174.t1;g17174.t1;g17174.t1;g17174.t1;g17174.t1"		
+Cre17.g718800	GMM:26.27	"misc.calcineurin-like phosphoesterase family protein"		GO:0016787	"hydrolase activity"	mpa14	"g17395.t1;MPA14;Cre17.g718800.t1.1"		"Metallophosphoesterase/metallo-dependent phosphatase with type 1 Kelch-repeat"
+Cre17.g731950			Mitochondrion	"GO:0033177;GO:0015991;GO:0015078"	"proton-transporting two-sector ATPase complex, proton-transporting domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATP9B	"ATP9B;g17690.t1;Cre17.g731950.t1.1"	ATP9B	"next to ATP9A"
+Cre17.g703000			Mitochondrion	GO:2001070	"starch binding"		g17042.t1		
+Cre17.g704400			Chloroplast				"g17076.t1;g17076.t1;g17076.t1;g17076.t1"		
+Cre17.g743547	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g17986.t1;Cre20.g761050.t1.2;Cre20.g761050.t1.1;g17986.t1;Cre20.g761050.t1.1;Cre20.g761050.t1.2;g17986.t1;Cre20.g761050.t1.1;Cre20.g761050.t1.2"		
+Cre17.g717750	"GMM:31.1.1.2;GMM:21.1"	"cell.organisation.cytoskeleton.mikrotubuli;redox.thioredoxin"		GO:0045454	"cell redox homeostasis"	TRX24	"TRL10;Cre17.g717750.t1.1;g17371.t1;TRX24"		"Shares some similarities with putative ATP binding protein; contains a thioredoxin homology domain lacking the thioredoxin active site."
+Cre17.g720183							"g17430.t2;Cre17.g720200.t1.2;Cre17.g720200.t1.2;g17430.t2"		
+Cre17.g725250							g17540.t1		
+Cre17.g700650				GO:0016021	"integral component of membrane"		"g16990.t1;GFY2;Cre17.g700650.t1.1;g16990.t1;GFY2;Cre17.g700650.t1.1"	"GFY2;GFY2"	"GPR1/FUN34/YaaH family membrane protein; located in microbodies;GPR1/FUN34/YaaH family membrane protein; located in microbodies"
+Cre17.g733162			"Secretory pathway"				"Cre17.g733188.t1.2;g17718.t1"		
+Cre17.g740850							"g17919.t1;Cre17.g740850.t1.1;Cre17.g740850.t1.1;g17919.t1"		
+Cre17.g719813									
+Cre17.g715500			Chloroplast	"GO:0055114;GO:0016491;GO:0016209"	"oxidation-reduction process;oxidoreductase activity;antioxidant activity"		"Cre17.g715500.t1.1;g17321.t1;g17321.t1;Cre17.g715500.t1.1"		
+Cre17.g741050	GMM:17.2.3	"hormone metabolism.auxin.induced-regulated-responsive-activated"	Mitochondrion			COV1	"g17924.t1;COV1;LCV1;LCV1;COV1;g17924.t1"	"COV1;COV1"	"Integral membrane protein of unknown function, with homologs in plants and bacteria; in Arabidopsis, COV1 (CONTINUOUS VASCULAR RING) also called LCV1 is involved in auxin mediated signaling to control stem vascular tissue pattern formation - pfam4367, DUF52;Integral membrane protein of unknown function, with homologs in plants and bacteria; in Arabidopsis, COV1 (CONTINUOUS VASCULAR RING) also called LCV1 is involved in auxin mediated signaling to control stem vascular tissue pattern formation - pfam4367, DUF52"
+Cre17.g715950			Chloroplast				"g17331.t1;Cre17.g715950.t1.1"		
+Cre17.g712100	"GMM:21.2.1;GMM:21.2"	"redox.ascorbate and glutathione.ascorbate;redox.ascorbate and glutathione"		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"PNO2;g17244.t1;Cre17.g712100.t1.1;Cre17.g712100.t1.1;g17244.t1;PNO2;Cre17.g712100.t1.1;g17244.t1;PNO2"	"MDAR1;MDAR1;MDAR1"	"A key enzyme in ascorbate recycling, which is likely responsible along with VTC2 for the 10-fold increase in ascorbate content of iron-limited cells;;A key enzyme in ascorbate recycling, which is likely responsible along with VTC2 for the 10-fold increase in ascorbate content of iron-limited cells;;A key enzyme in ascorbate recycling, which is likely responsible along with VTC2 for the 10-fold increase in ascorbate content of iron-limited cells;"
+Cre17.g734725									
+Cre17.g736100	GMM:29.5.3	"protein.degradation.cysteine protease"		"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP17			
+Cre17.g744247				"GO:0006260;GO:0005664;GO:0003677"	"DNA replication;nuclear origin of replication recognition complex;DNA binding"		"g18001.t1;Cre20.g760400.t1.1"		
+Cre17.g703450							"g17054.t1;g17054.t1;g17054.t1"		
+Cre17.g717300	GMM:29.4	"protein.postranslational modification"		"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"		"g17363.t1;DSP"		"similar to PTP genes; protein-tyrosine phosphatase"
+Cre17.g699150							"Cre17.g699150.t1.1;g16957.t1;g16957.t1;Cre17.g699150.t1.1;Cre17.g699150.t1.1;g16957.t1"		
+Cre17.g701809				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre17.g701809.t1.1;g17014.t1;g17014.t1;Cre17.g701809.t1.1"		
+Cre17.g714000	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO32	"g17289.t1;HFO3;HFO21;HFO19;Cre17.g714000.t1.1"	HFO32	"replication linked H4; histone gene cluster XXXII (type 34BA)"
+Cre17.g738450			Chloroplast				"g17861.t1;g17861.t1;g17861.t1;g17861.t1"		
+Cre17.g738751			Mitochondrion				"g17868.t1;Cre17.g738750.t1.2"		
+Cre17.g732000			Mitochondrion	"GO:0033177;GO:0015991;GO:0015078"	"proton-transporting two-sector ATPase complex, proton-transporting domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATP9A	"g17691.t1;ATP9A;ATP9A;g17691.t1;ATP9A;g17691.t1"	"ATP9A;ATP9A;ATP9A"	"next to ATP9B;next to ATP9B;next to ATP9B"
+Cre17.g715750	GMM:29.3.4.4	"protein.targeting.secretory pathway.plasma membrane"		GO:0005515	"protein binding"	SEC13	"Cre17.g715750.t1.1;g17326.t1"	SEC13	"Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec13/31 sub-complex."
+Cre17.g717600									
+Cre17.g704150	GMM:11.9.3.3	"lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase"		"GO:0008889;GO:0008081;GO:0006629"	"glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process"	GDP5	"GDP5;GDPD5;g17071.t1;GDP5;GDPD5;g17071.t1"		
+Cre17.g732300	GMM:3.8.1	"minor CHO metabolism.galactose.galactokinases"		GO:0005524	"ATP binding"	GAL1	"Cre17.g732300.t1.1;GAL1;g17697.t1;Cre17.g732300.t1.1;GAL1;g17697.t1"	"GAL1;GAL1"	
+Cre17.g702650			Mitochondrion				"g17034.t1;g17034.t1"		"High mobility group protein, ChromDB HMGB344; a putative chromatin-associated HMGB protein containing two HMG boxes;High mobility group protein, ChromDB HMGB344; a putative chromatin-associated HMGB protein containing two HMG boxes"
+Cre17.g709550	GMM:27.3.57	"RNA.regulation of transcription.JUMONJI family"					"Cre17.g709550.t1.1;g17186.t1"		
+Cre17.g744697							"Cre20.g760000.t1.2;g18010.t1;Cre20.g760000.t1.1;Cre20.g760000.t1.1;g18010.t1;Cre20.g760000.t1.2"		
+Cre17.g698365						FAP172	"CCDC40;g16937.t1;PF7"	FAP172	"Flagellar Associated Protein, found in the flagellar proteome; possible DRC component; part of 96-nm molecular ruler"
+Cre17.g726350			Chloroplast	GO:0016021	"integral component of membrane"		g17563.t1		
+Cre17.g738300	"GMM:29.2.1.2.2.99;GMM:29.2.1.2.2.81"	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.unknown;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.P1"				RPP1	"g17858.t1;Cre17.g738300.t1.1;RPP1"	RPLP1	"Cytosolic 80S ribosomal protein P1; Cytosolic 60S large ribosomal subunit protein P1"
+Cre17.g741850	GMM:27.4	"RNA.RNA binding"				HNR1	"Cre17.g741850.t1.1;g17942.t1;HNR1;HNR1;g17942.t1;Cre17.g741850.t1.1;g17942.t1;HNR1;Cre17.g741850.t1.1"	"HNR1;HNR1;HNR1"	"contains two RRM (RNP-1) RNA-binding motifs similar to human Heterogeneous Nuclear Ribonucleoprotein H3 (hnRNP H3);contains two RRM (RNP-1) RNA-binding motifs similar to human Heterogeneous Nuclear Ribonucleoprotein H3 (hnRNP H3);contains two RRM (RNP-1) RNA-binding motifs similar to human Heterogeneous Nuclear Ribonucleoprotein H3 (hnRNP H3)"
+Cre17.g708013									
+Cre17.g724873							"Cre17.g724873.t1.1;g17530.t1"		
+Cre17.g697600							g16918.t1		
+Cre17.g712900			"Secretory pathway"				"g17262.t1;g17262.t1"		
+Cre17.g717700							g17370.t1		
+Cre17.g707400	GMM:27.4	"RNA.RNA binding"	Chloroplast	GO:0003723	"RNA binding"		"g17139.t1;Cre17.g707400.t1.1;Cre17.g707400.t1.1;g17139.t1;g17139.t1;Cre17.g707400.t1.1;g17139.t1;Cre17.g707400.t1.1"		
+Cre17.g729550							g17632.t1		
+Cre17.g722050				GO:0005515	"protein binding"		"g17468.t1;g17468.t1;g17468.t1"		
+Cre17.g739250	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	FAP402	"g17878.t1;g17878.t1;g17878.t1;g17878.t1;g17878.t1;g17878.t1;g17878.t1"	"FAP402;FAP402;FAP402;FAP402;FAP402;FAP402;FAP402"	
+Cre17.g746447							g18045.t1		
+Cre17.g736650	"GMM:29.5.31;GMM:29.5"	"protein.degradation.alanine protease;protein.degradation"		"GO:0008270;GO:0008237;GO:0006508"	"zinc ion binding;metallopeptidase activity;proteolysis"		"g17819.t1;Cre17.g736650.t1.1"		
+Cre17.g731050	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"g17666.t1;Cre17.g731050.t1.1"		
+Cre17.g728000							"Cre17.g728000.t1.1;g17598.t1"		
+Cre17.g707000							"g17130.t1;Cre17.g707000.t1.1"		
+Cre17.g742866									
+Cre17.g703750			"Secretory pathway"				"g17061.t1;Cre17.g703750.t1.1"		
+Cre17.g707450									
+Cre17.g747997			"Secretory pathway"				g18076.t1		
+Cre17.g718350	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"	"Secretory pathway"			SRP2	"SRP2;g17385.t1;SRRB1;Cre17.g718350.t1.1"	SRP2	"Expressed Protein. Similar to the Beta subunit of the Signal Recognition Particle (SRP) Receptor. Involved in Protein Translocation across the ER membrane"
+Cre17.g703300							"g17051.t1;g17051.t1"		
+Cre17.g716600	GMM:27.1	RNA.processing	Chloroplast				"g17347.t1;g17347.t1"		
+Cre17.g717100	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre17.g717100.t1.1;g17359.t1;Cre17.g717100.t1.1;g17359.t1"		
+Cre17.g696350				"GO:0016020;GO:0015672;GO:0005261"	"membrane;monovalent inorganic cation transport;cation channel activity"		"g16891.t1;Cre17.g696350.t1.1;g16891.t1;Cre17.g696350.t1.1;g16891.t1;Cre17.g696350.t1.1"		
+Cre17.g697934				GO:0004222	"metalloendopeptidase activity"		g16926.t2	ATP23	"Putative assembly factor for the F1 component of the mitochondrial ATP synthase complex"
+Cre17.g739752	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	"GO:0006508;GO:0005524;GO:0004222"	"proteolysis;ATP binding;metalloendopeptidase activity"		"FTSHi1;CTAP1;g17893.t1;g17893.t1;CTAP1;FTSHi1;g17893.t1;CTAP1;FTSHi1;FTSHi1;CTAP1;g17893.t1"	"FTSHI1;FTSHI1;FTSHI1;FTSHI1"	"Similar to FtsH protease, but peptidase HEXXH motif replaced by KEIGI; may function with Tic214 (Ycf2) in the 2-MD complex of TIC translocon;;Similar to FtsH protease, but peptidase HEXXH motif replaced by KEIGI; may function with Tic214 (Ycf2) in the 2-MD complex of TIC translocon;;Similar to FtsH protease, but peptidase HEXXH motif replaced by KEIGI; may function with Tic214 (Ycf2) in the 2-MD complex of TIC translocon;;Similar to FtsH protease, but peptidase HEXXH motif replaced by KEIGI; may function with Tic214 (Ycf2) in the 2-MD complex of TIC translocon;"
+Cre17.g702400	"GMM:29.1.30;GMM:23.5.2"	"protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase"		"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS5	"Cre17.g702400.t1.1;g17028.t1;PUS5"		
+Cre17.g706250	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"					g17116.t1		
+Cre17.g737400	"GMM:30.2.12;GMM:30.2.11"	"signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI"	Mitochondrion						
+Cre17.g719600			Mitochondrion			FAP338	"g17414.t1;Cre17.g719600.t1.1"	FAP338	
+Cre17.g739400			"Secretory pathway"						
+Cre17.g724800							"g17528.t1;g17528.t1;g17528.t1;g17528.t1"		
+Cre17.g744097							"Cre20.g760550.t1.2;GT90F49;g17998.t1;GT90-49;Cre20.g760550.t1.1;GT90F49;g17998.t1;Cre20.g760550.t1.2;Cre20.g760550.t1.1;GT90-49;Cre20.g760550.t1.1;GT90-49;g17998.t1;Cre20.g760550.t1.2;GT90F49"		
+Cre17.g713550	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR31	"HTR22;g17277.t1;Cre17.g713550.t1.1"	HTR31	"replication linked H3; histone gene cluster XXXI (type 34BA)"
+Cre17.g733689									
+Cre17.g701751							g17012.t1		
+Cre17.g704700							"g17082.t1;g17082.t1;g17082.t1;g17082.t1;g17082.t1"		
+Cre17.g696250	GMM:29.2.3	protein.synthesis.initiation		"GO:0005515;GO:0003723"	"protein binding;RNA binding"		"g16889.t1;g16889.t1"		
+Cre17.g699300			Mitochondrion				"g16960.t1;g16960.t1;g16960.t1;g16960.t1"		
+Cre17.g747697			Mitochondrion				"g18070.t1;Cre20.g757700.t1.1;mS33"	MRPS33	
+Cre17.g709950	GMM:35.1.3	"not assigned.no ontology.armadillo/beta-catenin repeat family protein"					"g17195.t1;Cre17.g709950.t1.1"		
+Cre17.g703950			"Secretory pathway"				"g17066.t1;Cre17.g703950.t1.1"		
+Cre17.g727700	GMM:27.1.2	"RNA.processing.RNA helicase"	Chloroplast	"GO:0016787;GO:0005634;GO:0005524;GO:0004386;GO:0003723;GO:0003677"	"hydrolase activity;nucleus;ATP binding;helicase activity;RNA binding;DNA binding"	HEL65	"HEL65;g17592.t1;g17592.t1;HEL65"		
+Cre17.g718000	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC7	"PHC6;g17377.t1;PHC7;PHC7;g17377.t1;PHC6"	"PHC7;PHC7"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre17.g721000	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215"	"ATPase activity;integral component of membrane;transport;ATP binding;transporter activity"		"g17448.t1;Cre17.g721000.t1.1;Cre17.g721000.t1.1;g17448.t1"	"ABCA5;ABCA5"	"ABCA superfamily; Along with ABCA3 (Cre14.g618400), is co-orthologous with eight ABCA proteins in Arabidopsis thaliana (ABCA3, ABCA4, ABCA5, ABCA6, ABCA7, ABCA10, ABCA12);;ABCA superfamily; Along with ABCA3 (Cre14.g618400), is co-orthologous with eight ABCA proteins in Arabidopsis thaliana (ABCA3, ABCA4, ABCA5, ABCA6, ABCA7, ABCA10, ABCA12);"
+Cre17.g727250			Chloroplast				"g17582.t1;g17582.t1"		
+Cre17.g732750			"Secretory pathway"				g17707.t1		
+Cre17.g723850			"Secretory pathway"				"Cre17.g723850.t1.1;g17507.t1;g17507.t1;Cre17.g723850.t1.1"		
+Cre17.g711050	"GMM:27.3;GMM:14.15"	"RNA.regulation of transcription;S-assimilation.AKN"					g17220.t1		
+Cre17.g727100							"Cre17.g727100.t1.1;g17579.t1"	TIC56	"Forms the 1-MD TIC complex mediating chlorolast protein import, along with TIC20, TIC100 and TIC214 (Ycf1)"
+Cre17.g713350	GMM:34.8	"transport.metabolite transporters at the envelope membrane"	Chloroplast	"GO:0055085;GO:0016020;GO:0006814;GO:0005215"	"transmembrane transport;membrane;sodium ion transport;transporter activity"	OMT1	"g17273.t1;Cre17.g713350.t1.1;OMT1"	OMT1	"Chloroplast-located transporter, homologous to AtOMT1 [PMID:7873543]; participates probably in the export of glutamate (and aspartate), by exchanging stromal malate for cytosolic 2-oxoglutarate (oxaloacetate); linked to related OMT2"
+Cre17.g699050							"g16955.t3;g16955.t3;g16955.t3;g16955.t3"		
+Cre17.g696650							"g16898.t1;g16898.t1;g16898.t1;g16898.t1"		
+Cre17.g727201			Mitochondrion				"g17581.t1;g17581.t1"		
+Cre17.g736350			Mitochondrion						
+Cre17.g718700			"Secretory pathway"				"Cre17.g718700.t1.1;g17393.t1;g17393.t1;Cre17.g718700.t1.1"		
+Cre17.g740430	GMM:34.2	transport.sugars	Chloroplast	"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"		"g17910.t1;g17910.t1"		
+Cre17.g734000							"g17744.t1;Cre17.g734000.t1.1"		
+Cre17.g737850			"Secretory pathway"	GO:0005515	"protein binding"		g17849.t1		
+Cre17.g735283	GMM:29.6.3.2	"protein.folding.immunophilins (IMM).cyclophilins"				CYN15			
+Cre17.g704850	GMM:23.3.1.1	"nucleotide metabolism.salvage.phosphoribosyltransferases.adenine phosphoribosyltransferase (APRT)"		GO:0009116	"nucleoside metabolic process"		"Cre17.g704850.t1.1;g17085.t1"		
+Cre17.g731900			Mitochondrion						
+Cre17.g728100	GMM:17.2.1	"hormone metabolism.auxin.synthesis-degradation"	"Secretory pathway"	"GO:0016787;GO:0008152"	"hydrolase activity;metabolic process"		"Cre17.g728100.t1.1;g17600.t1;g17600.t1;Cre17.g728100.t1.1"		
+Cre17.g700500							"g16987.t1;g16987.t1"		
+Cre17.g742650							"g17960.t1;g17960.t1;g17960.t1;g17960.t1"		
+Cre17.g737752			"Secretory pathway"						
+Cre17.g722950			"Secretory pathway"				"Cre17.g722950.t1.1;g17489.t1;Cre17.g722950.t1.1;g17489.t1"		
+Cre17.g740050							g17899.t1		
+Cre17.g696450			Mitochondrion				"g16893.t1;g16893.t1;g16893.t1;g16893.t1"		
+Cre17.g726983							"g17577.t1;g17577.t1"		
+Cre17.g702700	GMM:34.8	"transport.metabolite transporters at the envelope membrane"	"Secretory pathway"				"TPT27;TPT28;g17035.t1;TPT27;g17035.t1;TPT28"		
+Cre17.g709050	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR28	"Cre17.g709050.t1.1;g17176.t1;HTR3"	HTR28	"replication linked H3; histone gene cluster XXVIII (type 34BA)"
+Cre17.g724950							"g17532.t1;Cre17.g724950.t1.1;g17532.t1;Cre17.g724950.t1.1;g17532.t1;Cre17.g724950.t1.1;g17532.t1;Cre17.g724950.t1.1"		
+Cre17.g712550			Mitochondrion						
+Cre17.g697000			Mitochondrion	GO:0005515	"protein binding"		"g16905.t1;g16905.t1"		
+Cre17.g728864			Mitochondrion			OPR105	"g17616.t1;Cre17.g728864.t1.1;g17616.t1;Cre17.g728864.t1.1;Cre17.g728864.t1.1;g17616.t1"	"OPR105;OPR105;OPR105"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre17.g721450	GMM:34.14	"transport.unspecified cations"		"GO:0055085;GO:0016020;GO:0006810;GO:0005215"	"transmembrane transport;membrane;transport;transporter activity"	NSS4	"NSS4;g17455.t1;NSS4;g17455.t1"		
+Cre17.g692676									
+Cre17.g739700							"g17892.t1;g17892.t1"		
+Cre17.g744747			Chloroplast				g18011.t1		
+Cre17.g724850	GMM:33.99	development.unspecified		GO:0005515	"protein binding"		"g17529.t1;Cre17.g724850.t1.1"		
+Cre17.g738550	GMM:29.4	"protein.postranslational modification"		GO:0003950	"NAD+ ADP-ribosyltransferase activity"		g17863.t1		
+Cre17.g743250							"g17977.t1;Cre17.g743250.t1.1"		
+Cre17.g713450	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB31	"Cre17.g713450.t1.1;g17275.t1"	HTB31	"replication linked H2B; histone gene cluster XXXI (type 34BA)"
+Cre17.g701250						FAP59	"CCDC39;PF8;Cre17.g701250.t1.1;g17002.t1;FLA12;CCDC39;Cre17.g701250.t1.1;PF8;FLA12;g17002.t1"	"FAP59;FAP59"	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; possible DRC component; part of 96-nm molecular ruler;Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; possible DRC component; part of 96-nm molecular ruler"
+Cre17.g739551							"Cre17.g739551.t1.1;g17889.t1"		
+Cre17.g732951									
+Cre17.g737084							"g17828.t1;Cre17.g737084.t1.1;g17828.t1;Cre17.g737084.t1.1;Cre17.g737084.t1.1;g17828.t1"		
+Cre17.g719400			Mitochondrion				g17408.t1		
+Cre17.g722616			"Secretory pathway"						
+Cre17.g699975							g16976.t1		
+Cre17.g714050	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB32	"g17290.t1;HTB21;Cre17.g714050.t1.1"	HTB32	"replication linked H2B; histone gene cluster XXXII (type 34BA)"
+Cre17.g709651			Mitochondrion						
+Cre17.g701000							"g16997.t1;Cre17.g701000.t1.1;Cre17.g701000.t1.1;g16997.t1;g16997.t1;Cre17.g701000.t1.1"		
+Cre17.g736850	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"					"Cre17.g736850.t1.1;g17823.t1"		
+Cre17.g716900				"GO:0015074;GO:0006310;GO:0003677"	"DNA integration;DNA recombination;DNA binding"		"g17355.t1;g17355.t1"		
+Cre17.g742750			Mitochondrion						
+Cre17.g703600	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"				OFD1	"Cre17.g703600.t1.1;BUG11;g17058.t2;OFD1;Cre17.g703600.t1.1;OFD1;BUG11;g17058.t2"	"OFD1;OFD1"	"Homolog of Oral-facial-digital syndrome protein 1; Found in one basal body proteome as BUG11 [PMID: 15964273]; Found in another basal body proteome as OFD1 [PMID: 28781053]; Transcript upregulated during flagellar regeneration [PMID: 15738400]; Mammalian homolog is required for ciliogenesis and structure of distal fibers of centriole;Homolog of Oral-facial-digital syndrome protein 1; Found in one basal body proteome as BUG11 [PMID: 15964273]; Found in another basal body proteome as OFD1 [PMID: 28781053]; Transcript upregulated during flagellar regeneration [PMID: 15738400]; Mammalian homolog is required for ciliogenesis and structure of distal fibers of centriole"
+Cre17.g712600							"Cre17.g712600.t1.1;g17255.t1;Cre17.g712600.t1.1;g17255.t1"		
+Cre17.g746297	GMM:3.3	"minor CHO metabolism.sugar alcohols"	"Secretory pathway"				"Cre20.g758800.t1.1;g18042.t1;Cre20.g758800.t1.2;Cre20.g758800.t1.1;g18042.t1;Cre20.g758800.t1.2"		
+Cre17.g701700	GMM:11.1.15	"lipid metabolism.FA synthesis and FA elongation.ACP desaturase"	Chloroplast	"GO:0055114;GO:0045300;GO:0006631"	"oxidation-reduction process;acyl-[acyl-carrier-protein] desaturase activity;fatty acid metabolic process"	FAB2	"g17011.t1;Cre17.g701700.t1.1"	FAB2	"Plastidic acyl-ACP-like delta-9 stearate desaturase; Target of CRR1"
+Cre17.g726750	GMM:13.1.6.1.1	"amino acid metabolism.synthesis.aromatic aa.chorismate.3-deoxy-D-arabino-heptulosonate 7-phosphate synthase"	Chloroplast	"GO:0009073;GO:0003849"	"aromatic amino acid family biosynthetic process;3-deoxy-7-phosphoheptulonate synthase activity"	SHKA1	"g17572.t1;SHK1;Cre17.g726750.t1.1;SHKA1;SHKA1;SHK1;Cre17.g726750.t1.1;g17572.t1;g17572.t1;SHK1;Cre17.g726750.t1.1;SHKA1"	"DHAPS1;DHAPS1;DHAPS1"	"3-deoxy-D-arabino-heptulosonate 7-phosphate (DAHP) synthetase (EC 2.5.1.54); predicted mitochondrial by Target-P, but plastidic by homology; Orthologous to two 3-deoxy-D-arabino-heptulosonate 7-phosphate synthases in Arabidopsis thaliana, DHS1 (AT4G39980) and DHS2 (AT4G33510),;3-deoxy-D-arabino-heptulosonate 7-phosphate (DAHP) synthetase (EC 2.5.1.54); predicted mitochondrial by Target-P, but plastidic by homology; Orthologous to two 3-deoxy-D-arabino-heptulosonate 7-phosphate synthases in Arabidopsis thaliana, DHS1 (AT4G39980) and DHS2 (AT4G33510),;3-deoxy-D-arabino-heptulosonate 7-phosphate (DAHP) synthetase (EC 2.5.1.54); predicted mitochondrial by Target-P, but plastidic by homology; Orthologous to two 3-deoxy-D-arabino-heptulosonate 7-phosphate synthases in Arabidopsis thaliana, DHS1 (AT4G39980) and DHS2 (AT4G33510),"
+Cre17.g716350			Chloroplast				"GT90F32;GT90-32;g17340.t1;Cre17.g716350.t1.1"		
+Cre17.g725650	GMM:34.14	"transport.unspecified cations"	Mitochondrion	GO:0016020	membrane		"g17549.t1;NBS"		
+Cre17.g730650			"Secretory pathway"				"g17657.t1;Cre17.g730650.t1.1;g17657.t1;Cre17.g730650.t1.1"		
+Cre17.g696200							"g16888.t1;Cre17.g696200.t1.1"		
+Cre17.g737351	GMM:30.2.12	"signalling.receptor kinases.leucine rich repeat XII"							
+Cre17.g697950	"GMM:34.99;GMM:34.9;GMM:34.8"	"transport.misc;transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane"		"GO:0016021;GO:0006810;GO:0005524;GO:0005471"	"integral component of membrane;transport;ATP binding;ATP:ADP antiporter activity"	AAA3	"g16927.t1;AAA3;AAA3;g16927.t1;AAA3;g16927.t1;AAA3;g16927.t1"	"AAA3;AAA3;AAA3;AAA3"	"ADP,ATP carrier protein; belongs to a plant-specific transporter family;ADP,ATP carrier protein; belongs to a plant-specific transporter family;ADP,ATP carrier protein; belongs to a plant-specific transporter family;ADP,ATP carrier protein; belongs to a plant-specific transporter family"
+Cre17.g719522	GMM:26.23	misc.rhodanese	"Secretory pathway"				"Cre17.g719522.t1.1;g17411.t1;g17411.t1;Cre17.g719522.t1.1"		
+Cre17.g701600			Mitochondrion				"g17009.t1;Cre17.g701600.t1.1"		
+Cre17.g741750	GMM:31.1	cell.organisation	"Secretory pathway"				g17940.t1		
+Cre17.g705843			Mitochondrion	"GO:0046872;GO:0016567;GO:0004842"	"metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity"		"g17108.t1;Cre17.g705843.t1.1"		"Eight-member family found found at two loci on chromosomes 16 and 17"
+Cre17.g719855			Mitochondrion						
+Cre17.g745847			Chloroplast				"g18033.t1;g18033.t1;g18033.t1"		
+Cre17.g727150			Chloroplast				"g17580.t1;g17580.t1"		
+Cre17.g707150							"LIC2;g17134.t1;LIC2;g17134.t1;LIC2;g17134.t1"		
+Cre17.g723700	GMM:3.3	"minor CHO metabolism.sugar alcohols"		GO:0005515	"protein binding"		"g17504.t1;g17504.t1;g17504.t1"		
+Cre17.g720250	GMM:1.1.1.1	"PS.lightreaction.photosystem II.LHC-II"		"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCB4	"CP29;g17431.t1;Cre17.g720250.t1.1"	LHCB4	
+Cre17.g717200	GMM:28.99	DNA.unspecified	"Secretory pathway"	GO:0016888	"endodeoxyribonuclease activity, producing 5'-phosphomonoesters"		g17361.t1		
+Cre17.g719150									
+Cre17.g708150	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR26	"g17158.t1;Cre17.g708150.t1.1;HTR36"	HTR26	"Replication linked H3; histone gene cluster XXVI (type 43)"
+Cre17.g708000	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Chloroplast			FAP260	g17151.t1	FAP260	"Flagellar Associated Protein with PAS sensory domain, found in the flagellar proteome"
+Cre17.g713750	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g17284.t1;STPK16;STK16;Cre17.g713750.t1.1;Cre17.g713750.t1.1;STPK16;STK16;g17284.t1;g17284.t1;STPK16;STK16;Cre17.g713750.t1.1"		"Serine/Threonine Protein Kinase Homolog 16;Serine/Threonine Protein Kinase Homolog 16;Serine/Threonine Protein Kinase Homolog 16"
+Cre17.g737200							"g17831.t1;Cre17.g737200.t1.1"		
+Cre17.g747747	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	"zinc ion binding"		"g18071.t1;Cre20.g757650.t1.1"		
+Cre17.g702102			Chloroplast						
+Cre17.g725100	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006265;GO:0003917;GO:0003916;GO:0003677"	"DNA topological change;DNA topoisomerase type I activity;DNA topoisomerase activity;DNA binding"		"g17535.t1;Cre17.g725100.t1.1"		
+Cre17.g696600			Mitochondrion			FMR1	g16896.t1	FMR1	"Fumarate reductase/succinate dehydrogenase flavoprotein"
+Cre17.g736250	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre17.g704600			Chloroplast				"g17080.t1;Cre17.g704600.t1.1;Cre17.g704600.t1.1;g17080.t1"		
+Cre17.g700550	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		GO:0005515	"protein binding"		g16988.t1		
+Cre17.g728550			Mitochondrion				"g17609.t1;Cre17.g728550.t1.1"		
+Cre17.g739426	GMM:26.24	"misc.GCN5-related N-acetyltransferase"							
+Cre17.g704300	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"		GO:0005515	"protein binding"	FAP47	"g17074.t1;g17074.t1;g17074.t1;g17074.t1;g17074.t1;g17074.t1"	"FAP47;FAP47;FAP47;FAP47;FAP47;FAP47"	"Found in the flagellar proteome as FAP47; identified in the flagellar basal body proteome; upregulated by deflagellation; weakly Similar to Hydrocephalus 3;Found in the flagellar proteome as FAP47; identified in the flagellar basal body proteome; upregulated by deflagellation; weakly Similar to Hydrocephalus 3;Found in the flagellar proteome as FAP47; identified in the flagellar basal body proteome; upregulated by deflagellation; weakly Similar to Hydrocephalus 3;Found in the flagellar proteome as FAP47; identified in the flagellar basal body proteome; upregulated by deflagellation; weakly Similar to Hydrocephalus 3;Found in the flagellar proteome as FAP47; identified in the flagellar basal body proteome; upregulated by deflagellation; weakly Similar to Hydrocephalus 3;Found in the flagellar proteome as FAP47; identified in the flagellar basal body proteome; upregulated by deflagellation; weakly Similar to Hydrocephalus 3"
+Cre17.g735350	GMM:31.1	cell.organisation	Chloroplast			FAP164	g17789.t1	FAP164	"Flagellar Associated Protein, found in the flagellar proteome. Possible phospholipase A2 or serine endopeptidase activity"
+Cre17.g730450							"g17651.t1;g17651.t1;g17651.t1;g17651.t1"		
+Cre17.g734961	GMM:33.99	development.unspecified					g17784.t1		
+Cre17.g740700						FAP336	"g17916.t1;Cre17.g740700.t1.1"	FAP336	
+Cre17.g730350			"Secretory pathway"				"Cre17.g730350.t1.1;g17649.t1"		
+Cre17.g705200			"Secretory pathway"				"g17092.t1;g17092.t1"		
+Cre17.g712200	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		"GO:0036459;GO:0016579"	"thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination"		"g17247.t2;g17247.t2"		
+Cre17.g698750			Mitochondrion			OPR104	"OPR104;g16948.t1;Cre17.g698750.t1.1"	RAA12	"Necessary for trans-splicing of psaA mRNA; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; Component of psaA trans-splicing sub complex I"
+Cre17.g721553							"Cre17.g721553.t1.1;g17458.t1"		
+Cre17.g735550	GMM:29.4	"protein.postranslational modification"					"g17794.t1;g17794.t1;g17794.t1"		
+Cre17.g729650			Mitochondrion	GO:0016787	"hydrolase activity"	MPA15	"Cre17.g729650.t1.1;g17634.t1;MPA15;Cre17.g729650.t1.1;g17634.t1;MPA15;MPA15;Cre17.g729650.t1.1;g17634.t1"		"Metallophosphoesterase/metallo-dependent phosphatase related to diadenosine tetraphosphatase and serine/threonine protein phosphatases; may also be related to transcription factor - homologies are highest with the putative cyanobacterial protein - there i;Metallophosphoesterase/metallo-dependent phosphatase related to diadenosine tetraphosphatase and serine/threonine protein phosphatases; may also be related to transcription factor - homologies are highest with the putative cyanobacterial protein - there i;Metallophosphoesterase/metallo-dependent phosphatase related to diadenosine tetraphosphatase and serine/threonine protein phosphatases; may also be related to transcription factor - homologies are highest with the putative cyanobacterial protein - there i"
+Cre17.g738850			Chloroplast				"Cre17.g738850.t1.1;g17870.t1"		
+Cre17.g700900							g16995.t1		
+Cre17.g700450				GO:0016021	"integral component of membrane"		"GFY1;g16986.t1;Cre17.g700450.t1.1"	GFY1	"GPR1/FUN34/YaaH family membrane protein; located in microbodies"
+Cre17.g701950									
+Cre17.g708650	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO27	"HFO20;Cre17.g708650.t1.1;g17168.t1"	HFO27	"replication linked H4; histone gene cluster XXVII (type 34BA)"
+Cre17.g711800	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO30	"Cre17.g711800.t1.1;g17238.t1"	HFO30	"Replication linked H4; histone gene cluster XXX (type 34BA)"
+Cre17.g725350	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"	"Secretory pathway"	GO:0006491	"N-glycan processing"	GLC2B	"PSL4;g17542.t1;g17542.t1;PSL4"	"GLC2B;GLC2B"	
+Cre17.g734350			Chloroplast				g17755.t1		
+Cre17.g718950	GMM:1.3.13	"PS.calvin cycle.rubisco interacting"		GO:0005524	"ATP binding"	RCA2	"Cre17.g718950.t1.1;g17398.t1;g17398.t1;Cre17.g718950.t1.1"	"RCA2;RCA2"	"Related to RuBisCO activase (RCA1); Catalyzes the activation of RuBisCO (ribulose-1,5-bisphosphate carboxylase/oxygenase; EC 4.1.1.39); via the ATP-dependent carboxylation of the epsilon-amino group of lysine;Related to RuBisCO activase (RCA1); Catalyzes the activation of RuBisCO (ribulose-1,5-bisphosphate carboxylase/oxygenase; EC 4.1.1.39); via the ATP-dependent carboxylation of the epsilon-amino group of lysine"
+Cre17.g706600							"g17123.t1;Cre17.g706600.t1.1"		
+Cre17.g720750	GMM:27.1	RNA.processing	"Secretory pathway"	GO:0016779	"nucleotidyltransferase activity"	TRF4	"TRF4;Cre17.g720750.t1.1;g17443.t1"	TRF4	"Similar to yeast trf4, which belongs to the TRAMP complex that activates the nuclear exosome"
+Cre17.g747097			Chloroplast						
+Cre17.g725900			Mitochondrion				"g17554.t1;g17554.t1"		
+Cre17.g701917									
+Cre17.g747647			"Secretory pathway"				"Cre20.g757750.t1.1;g18069.t1;g18069.t1;Cre20.g757750.t1.1;g18069.t1;Cre20.g757750.t1.1"		
+Cre17.g733026			"Secretory pathway"						
+Cre17.g733174	GMM:17.4.2	"hormone metabolism.cytokinin.signal transduction"							
+Cre17.g711503			"Secretory pathway"						
+Cre17.g720500	GMM:30.4.1	"signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase"					"g17438.t1;g17438.t1;g17438.t1"		
+Cre17.g743447			"Secretory pathway"						
+Cre17.g744297							"Cre20.g760350.t1.2;Cre20.g760350.t1.1;g18002.t1;g18002.t1;Cre20.g760350.t1.1;Cre20.g760350.t1.2"		
+Cre17.g726500	GMM:31.3	cell.cycle				ORC4	"ORC4;Cre17.g726500.t1.1;g17566.t1"	ORC4	"Homologous to eukaryotic ORC4, DNA replication control protein; ts-lethal mutant was isolated (PMID 29743196)"
+Cre17.g740187			Mitochondrion			FAP390			
+Cre17.g698266	GMM:26.1	misc.misc2					g16934.t1		
+Cre17.g713700	GMM:13.2.6.3	"amino acid metabolism.degradation.aromatic aa.tryptophan"	Chloroplast	GO:0020037	"heme binding"	IAD2	"IAD2;g17282.t1"	IAD2	"genetically linked to IAD2"
+Cre17.g710400	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA29	"g17204.t1;Cre17.g710400.t1.1;HTA19"	HTA29	"replication linked H2A; histone gene cluster XXIX (type 43BA)"
+Cre17.g740950	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELIP6	"ELIP6;ELI6;Cre17.g740950.t1.1;g17922.t1;LHL4"	LHL4	"belongs to chlorophyll A-B binding protein superfamily, ELIP family; characterized by a large stromal loop between helices 2 and 3; first TM helix similar to cyanobacterial HLIPs; this gene was reported in PMID: 15509845 as transiently expressed in high light; Genbank AB159049."
+Cre17.g712150	GMM:11.9.3.2	"lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase"	Mitochondrion				"Cre17.g712150.t1.1;g17246.t1"		
+Cre17.g707551							"g17142.t1;g17142.t1"		
+Cre17.g718600	GMM:11.9.2.2	"lipid metabolism.lipid degradation.lipases.acylglycerol lipase"					"Cre17.g718600.t1.1;g17391.t1;Cre17.g718600.t1.1;g17391.t1"		
+Cre17.g710750							"g17211.t2;g17211.t2"		
+Cre17.g703200	"GMM:34.99;GMM:29.3.4.99;GMM:28.99"	"transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified"					"g17049.t1;Cre17.g703200.t1.1;Cre17.g703200.t1.1;g17049.t1"		
+Cre17.g721700	GMM:35.1.5	"not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein"	Chloroplast			CPLD44	"g17461.t1;Cre17.g721700.t1.1"	CPLD44	
+Cre17.g742400	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK17	"g17955.t1;PTK17"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre17.g699550			"Secretory pathway"				"g16965.t1;g16965.t1;g16965.t1;g16965.t1;g16965.t1"		
+Cre17.g743797	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	"GO:0055114;GO:0050661;GO:0050660;GO:0004499"	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO8	"Cre20.g760850.t1.1;FMO8;g17991.t1;Cre20.g760850.t1.1;g17991.t1;FMO8"		"Uses NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification;Uses NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification"
+Cre17.g709876			Mitochondrion						
+Cre17.g706150			Chloroplast				g17114.t1		
+Cre17.g731650			Chloroplast						
+Cre17.g715450	GMM:3.5	"minor CHO metabolism.others"	Mitochondrion				"Cre17.g715450.t1.1;g17320.t1"		
+Cre17.g716850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast				g17354.t1		
+Cre17.g702600	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK5	"PTK5;g17033.t1;PTK5;g17033.t1"		"Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre17.g720600	GMM:34.21	transport.calcium	Mitochondrion	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	CAV1	"CAV1;g17441.t1;CAV1;g17441.t1"	"CAV1;CAV1"	"Calcium channel, 4-domain, voltage-dependent, alpha subunit;Calcium channel, 4-domain, voltage-dependent, alpha subunit"
+Cre17.g731600									
+Cre17.g723450	"GMM:33.99;GMM:3.5;GMM:27.1"	"development.unspecified;minor CHO metabolism.others;RNA.processing"	Mitochondrion	GO:0005515	"protein binding"	FAP13	"g17499.t1;g17499.t1;g17499.t1;g17499.t1"	"FAP13;FAP13;FAP13;FAP13"	"Similar to notchless 1;Similar to notchless 1;Similar to notchless 1;Similar to notchless 1"
+Cre17.g737650				"GO:0032259;GO:0008168"	"methylation;methyltransferase activity"	SOM6	"g17845.t1;SOM6"		
+Cre17.g710100	"GMM:33.99;GMM:3.5"	"development.unspecified;minor CHO metabolism.others"		GO:0005515	"protein binding"		g17198.t1		
+Cre17.g747597			Mitochondrion				"Cre20.g757800.t1.1;g18068.t1;Cre20.g757800.t1.1;g18068.t1"		
+Cre17.g742450				GO:0005515	"protein binding"		"GST15;g17956.t1;g17956.t1;GST15"		
+Cre17.g729750				GO:0008080	"N-acetyltransferase activity"		"NAT3;AANAT;g17636.t1;Cre17.g729750.t1.1"		"Arylalkylamine N-acetyltransferase. Identified by Okazaki et al. (29) [PMID: 1955276], who suggested the gene name AANAT"
+Cre17.g728200				"GO:0043486;GO:0006355;GO:0006338;GO:0005634"	"histone exchange;regulation of transcription, DNA-templated;chromatin remodeling;nucleus"		"g17602.t1;g17602.t1"		
+Cre17.g703932			"Secretory pathway"						
+Cre17.g714550	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB33	"Cre17.g714550.t1.1;HTB1;g17301.t1"	HTB33	"replication linked H2B; histone gene cluster XXXIII (type 34BA)"
+Cre17.g741500	GMM:31.1	cell.organisation	Mitochondrion	"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIL7	"g17935.t1;KIL7;g17935.t1;KIL7;g17935.t1;KIL7;g17935.t1;KIL7;g17935.t1;KIL7;g17935.t1;KIL7;g17935.t1;KIL7"		"Putative kinesin motor-like protein, closest match to kinesin-7 family. No sequence gaps to account for poor assignment by HMM search;Putative kinesin motor-like protein, closest match to kinesin-7 family. No sequence gaps to account for poor assignment by HMM search;Putative kinesin motor-like protein, closest match to kinesin-7 family. No sequence gaps to account for poor assignment by HMM search;Putative kinesin motor-like protein, closest match to kinesin-7 family. No sequence gaps to account for poor assignment by HMM search;Putative kinesin motor-like protein, closest match to kinesin-7 family. No sequence gaps to account for poor assignment by HMM search;Putative kinesin motor-like protein, closest match to kinesin-7 family. No sequence gaps to account for poor assignment by HMM search;Putative kinesin motor-like protein, closest match to kinesin-7 family. No sequence gaps to account for poor assignment by HMM search"
+Cre17.g697450				"GO:0005852;GO:0005737;GO:0003743"	"eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity"		"Cre17.g697450.t1.1;g16914.t1;Cre17.g697450.t1.1;g16914.t1;g16914.t1;Cre17.g697450.t1.1"		
+Cre17.g722851	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"					"Cre17.g722850.t1.3;g17487.t1;g17487.t1;Cre17.g722850.t1.3;g17487.t1;Cre17.g722850.t1.3"		
+Cre17.g711900			"Secretory pathway"	"GO:0016021;GO:0008146"	"integral component of membrane;sulfotransferase activity"		g17240.t1		
+Cre17.g717850	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC8	"g17373.t1;PHC8;g17373.t1;PHC8"	"PHC8;PHC8"	"pherophorin-C8 (PHC8) [PMID: 16367971]; belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;pherophorin-C8 (PHC8) [PMID: 16367971]; belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain"
+Cre17.g745447	"GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	MAPK4	"MAPK4;g18025.t1;Cre20.g759500.t1.1"		"Hypothetical Mitogen-Activated Protein Kinase Homolog 4"
+Cre17.g709250			Mitochondrion	"GO:0016192;GO:0016021;GO:0006810"	"vesicle-mediated transport;integral component of membrane;transport"		g17180.t1		
+Cre17.g727450	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"					"g17587.t1;Cre17.g727450.t1.1;g17587.t1;Cre17.g727450.t1.1;g17587.t1;Cre17.g727450.t1.1"		
+Cre17.g707300	"GMM:3.3;GMM:26.5"	"minor CHO metabolism.sugar alcohols;misc.acyl transferases"	"Secretory pathway"	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"	PGA3	"PGA3;Cre17.g707300.t1.1;g17137.t1"	PGA3	
+Cre17.g739300							"g17879.t1;Cre17.g739300.t1.1"		
+Cre17.g734677			Chloroplast				g17772.t1		
+Cre17.g726300				"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPS14	"MRPS14;uS14m;g17562.t1"	MRPS14	
+Cre17.g732450			"Secretory pathway"				g17700.t1		
+Cre17.g709800	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"				RLS1	"g17191.t1;RLS1;Cre17.g709800.t1.1;Cre17.g709800.t1.1;RLS1;g17191.t1"		"contains a SAND domain (IPR000770; PF01342); member of the RegA/Rls protein family; expressed under light/S/P deprivation (from PMID: 16720695;19578098); closest homolog to the Volvox carteri RegA (ortholog of RlsD); RegA is a transcriptional repressor, responsible for maintenance of terminal differentiation in somatic cells (PMID: 16622701);contains a SAND domain (IPR000770; PF01342); member of the RegA/Rls protein family; expressed under light/S/P deprivation (from PMID: 16720695;19578098); closest homolog to the Volvox carteri RegA (ortholog of RlsD); RegA is a transcriptional repressor, responsible for maintenance of terminal differentiation in somatic cells (PMID: 16622701)"
+Cre17.g700050			"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"		"g16978.t1;g16978.t1;g16978.t1"		
+Cre17.g709150	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB28	"g17178.t1;HTB30;HTB3;Cre17.g709150.t1.1"	HTB28	"replication linked H2B; histone gene cluster XXVIII (type 34BA)"
+Cre17.g722550									
+Cre17.g725200	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"		"Cre17.g725200.t1.1;g17537.t1"		
+Cre17.g716650			Mitochondrion				"Cre17.g716650.t1.1;g17350.t1"		
+Cre17.g708300	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0006508;GO:0005838"	"proteolysis;proteasome regulatory particle"	RPN12	"Cre17.g708300.t1.1;g17161.t1;RPN12;g17161.t1;Cre17.g708300.t1.1;RPN12"	"RPN12;RPN12"	"26S proteasome regulatory complex, lid subcomplex, non-ATPase subunit RPN12 (PSD8);26S proteasome regulatory complex, lid subcomplex, non-ATPase subunit RPN12 (PSD8)"
+Cre17.g743897	"GMM:21.5.1;GMM:21.5"	"redox.peroxiredoxin.BAS1;redox.peroxiredoxin"	"Secretory pathway"	"GO:0055114;GO:0051920;GO:0045454;GO:0016491"	"oxidation-reduction process;peroxiredoxin activity;cell redox homeostasis;oxidoreductase activity"	PRX7	"Cre20.g760750.t1.2;g17993.t1;PRX7;Cre20.g760750.t1.1"	PRX7	"Related to thioredoxin-dependent peroxide reductase, mitochondrial precursor (Perioredoxin 3) (Antioxidant protein 1) (AOP-1) (MER5 protein)(PRX III) (PDX3)(TDX)"
+Cre17.g739800			Mitochondrion			NCL35			
+Cre17.g704901			Mitochondrion				"Cre17.g704900.t1.2;g17086.t1;Cre17.g704900.t1.2;g17086.t1"		
+Cre17.g732900			"Secretory pathway"	GO:0006281	"DNA repair"		g17710.t1		
+Cre17.g715200	"GMM:30.2.11;GMM:30.2"	"signalling.receptor kinases.leucine rich repeat XI;signalling.receptor kinases"		GO:0005515	"protein binding"		g17314.t1		
+Cre17.g747847				"GO:0060236;GO:0032147;GO:0005874;GO:0005819"	"regulation of mitotic spindle organization;activation of protein kinase activity;microtubule;spindle"		"Cre20.g757550.t1.1;g18073.t1;Cre20.g757550.t1.1;g18073.t1;Cre20.g757550.t1.1;g18073.t1"		
+Cre17.g747147			"Secretory pathway"				"g18059.t1;Cre20.g758100.t1.1;Cre20.g758100.t1.1;g18059.t1"		
+Cre17.g699600	GMM:1.3.9	"PS.calvin cycle.sedoheptulose bisphosphatase"	"Secretory pathway"	"GO:0042578;GO:0042132;GO:0005975"	"phosphoric ester hydrolase activity;fructose 1,6-bisphosphate 1-phosphatase activity;carbohydrate metabolic process"	SBP2	"SBP2;Cre17.g699600.t1.1;SEBP2;g16966.t1;SBP2;g16966.t1;SEBP2;Cre17.g699600.t1.1"		"Shows similarity to both fructose 1,6-bisphosphatase (FBPase) and sedoheptulose 1,7-bisphosphatase (SBPase); based on probable cytosolic localization, fructose appears as a more likely substrate, and the enzyme would participate in cytosolic glyconeogenesis;Shows similarity to both fructose 1,6-bisphosphatase (FBPase) and sedoheptulose 1,7-bisphosphatase (SBPase); based on probable cytosolic localization, fructose appears as a more likely substrate, and the enzyme would participate in cytosolic glyconeogenesis"
+Cre17.g714150	GMM:34.15	transport.potassium		"GO:0071805;GO:0016020;GO:0015079"	"potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity"	KUP1	"KUP1;g17292.t1;KUP1;g17292.t1"	"KUP1;KUP1"	"linked to related KUP2 and KUP3;linked to related KUP2 and KUP3"
+Cre17.g727550			Chloroplast				"g17589.t1;g17589.t1;g17589.t1;g17589.t1"		
+Cre17.g708076			"Secretory pathway"						
+Cre17.g706400			Chloroplast				"Cre17.g706400.t1.1;g17119.t1"		
+Cre17.g733678			"Secretory pathway"						
+Cre17.g734580									
+Cre17.g722400			Chloroplast			MOT25	"MOT25;Cre17.g722400.t1.1;g17475.t1;MOT25;Cre17.g722400.t1.1;g17475.t1;MOT25;Cre17.g722400.t1.1;g17475.t1"	"MOT25;MOT25;MOT25"	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia;identified by comparative genomics as being present only in organisms having motile (MOT) cilia;identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre17.g733400			"Secretory pathway"				"g17725.t1;Cre17.g733400.t1.1;g17725.t1;Cre17.g733400.t1.1;g17725.t1;Cre17.g733400.t1.1"		
+Cre17.g727600							"g17590.t1;g17590.t1;g17590.t1"		
+Cre17.g730250							"PIT;g17647.t1"	PIT1	
+Cre17.g708050	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g17155.t1;g17155.t1;g17155.t1;g17155.t1"		
+Cre17.g710000	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g17196.t1;g17196.t1;g17196.t1;g17196.t1;g17196.t1"		
+Cre17.g697850							"g16924.t1;Cre17.g697850.t1.1"		
+Cre17.g715000				"GO:0051082;GO:0006457;GO:0005737"	"unfolded protein binding;protein folding;cytoplasm"	HSP33	"Cre17.g715000.t1.1;g17309.t1"	HSP33	"Redox-regulated chaperone, activated by oxidative stress; inactive as a monomer, active as a dimer, dimerization via disulfide bond formation. Acts as holdase to maintain unfolded proteins in folding competent state until DnaK is reactivated [PMID: 15694339]; might be targeted to the chloroplast, as judged by N-terminal extension and prediction by ChloroP."
+Cre17.g713260									
+Cre17.g745547	GMM:31.6.1.11	cell.motility.eukaryotes.other					"g18027.t1;Cre20.g759400.t1.1;Cre20.g759400.t1.2;Cre20.g759400.t1.1;g18027.t1;Cre20.g759400.t1.2;Cre20.g759400.t1.2;g18027.t1;Cre20.g759400.t1.1;g18027.t1;Cre20.g759400.t1.1;Cre20.g759400.t1.2"		
+Cre17.g735400	GMM:27.3.71	"RNA.regulation of transcription.SNF7"		GO:0007034	"vacuolar transport"	VPS2B	"VPS2B;g17791.t1;Cre17.g735400.t1.1"	VPS2B	"Expressed Protein. Similar to yeast Vps2p/Did4p, SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes)"
+Cre17.g734757							"Cre17.g734700.t1.2;g17777.t1;TET5"		"converts 5-methylcytosine (5mC) to 5-glyceryl-methylcytosines (5gmC) using vitamin C (not 2-oxoglutarate) as a co-substrate; Fe-dependent dioxygenase; homologous to TET1/CMD1; part of a Helitron transposon"
+Cre17.g719900	GMM:2.2.2.3	"major CHO metabolism.degradation.starch.glucan water dikinase"	Chloroplast	"GO:2001070;GO:0016310;GO:0016301;GO:0005524"	"starch binding;phosphorylation;kinase activity;ATP binding"	PWD1	"g17424.t1;Cre17.g719900.t1.1"	PWD1	"Contains starch-bnding domain; involved in starch metabolism"
+Cre17.g734500	"GMM:34.1.1.4;GMM:34.1.1"	"transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit E;transport.p- and v-ATPases.H+-transporting two-sector ATPase"		"GO:0046961;GO:0033178;GO:0016747;GO:0015991"	"proton-transporting ATPase activity, rotational mechanism;proton-transporting two-sector ATPase complex, catalytic domain;transferase activity, transferring acyl groups other than amino-acyl groups;ATP hydrolysis coupled proton transport"	ATPVE	"Cre17.g734500.t1.1;ATPVE;g17758.t1;ATPVE;Cre17.g734500.t1.1;g17758.t1;g17758.t1;ATPVE;Cre17.g734500.t1.1"	"ATPVE1;ATPVE1;ATPVE1"	"Vacuolar ATP synthase subunit E, V-ATPase E subunit, Vacuolar proton pump E subunit;Vacuolar ATP synthase subunit E, V-ATPase E subunit, Vacuolar proton pump E subunit;Vacuolar ATP synthase subunit E, V-ATPase E subunit, Vacuolar proton pump E subunit"
+Cre17.g738050						AGG4	"AGG4;Cre17.g738050.t1.1;g17853.t1"	AGG4	"paralog of nearby AGG2; isolated as a detergent resistant membrane protein from flagellar membranes; required for phototactic orientation"
+Cre17.g710254							"g17201.t1;Cre17.g710254.t1.1"		
+Cre17.g735876							g17801.t1		
+Cre17.g734789			"Secretory pathway"	GO:0005515	"protein binding"				
+Cre17.g741272			Chloroplast						
+Cre17.g698850	GMM:2.1.2.4	"major CHO metabolism.synthesis.starch.debranching"	Chloroplast	GO:0003824	"catalytic activity"	ISA2	"STA8;g16950.t1;ISA2;ISA2;g16950.t1;STA8"	"ISA2;ISA2"	"Isoamylase-type starch debranching enzyme, isoform 2; Identified in a screen for starchless mutants;;Isoamylase-type starch debranching enzyme, isoform 2; Identified in a screen for starchless mutants;"
+Cre17.g739100	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0046872	"metal ion binding"		"g17875.t1;g17875.t1;g17875.t1"		
+Cre17.g704200			Mitochondrion						
+Cre17.g703151									
+Cre17.g703850						DCC1	"g17063.t1;ODA3;Cre17.g703850.t1.1;ODA-DC1;DC1;DC1;ODA-DC1;g17063.t1;ODA3;Cre17.g703850.t1.1"	"DCC1;DCC1"	"Outer dynein arm-docking complex subunit 1 (ODA-DC1); Mr 105000;Outer dynein arm-docking complex subunit 1 (ODA-DC1); Mr 105000"
+Cre17.g743307									
+Cre17.g700250							"g16983.t1;Cre17.g700250.t1.1"		
+Cre17.g716400	GMM:27.3.11	"RNA.regulation of transcription.C2H2 zinc finger family"					"g17341.t1;Cre17.g716400.t1.1;Cre17.g716400.t1.1;g17341.t1;g17341.t1;Cre17.g716400.t1.1"		
+Cre17.g736474							"g17814.t1;g17814.t1;g17814.t1;g17814.t1;g17814.t1"		
+Cre17.g730000			Chloroplast				"g17642.t1;Cre17.g730000.t1.1;Cre17.g730000.t1.1;g17642.t1;Cre17.g730000.t1.1;g17642.t1"		
+Cre17.g721350							"GST13;g17453.t1;Cre17.g721350.t1.1;Cre17.g721350.t1.1;g17453.t1;GST13"		
+Cre17.g699800			"Secretory pathway"			PHC67	"g16971.t1;PHC67"		
+Cre17.g729150	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"Cre17.g729150.t1.1;g17623.t1"		
+Cre17.g742200	GMM:31.2	cell.division					"g17951.t1;g17951.t1"		
+Cre17.g715176			Chloroplast						
+Cre17.g738000	GMM:31.6.1.8	"cell.motility.eukaryotes.flagellar membrane proteins"				AGG2	"g17851.t4;AGG2;g17851.t4;AGG2;AGG2;g17851.t4"	"AGG2;AGG2;AGG2"	"Paralog of nearby AGG4; isolated as a detergent resistant membrane protein from flagellar membranes; required for phototactic orientation;Paralog of nearby AGG4; isolated as a detergent resistant membrane protein from flagellar membranes; required for phototactic orientation;Paralog of nearby AGG4; isolated as a detergent resistant membrane protein from flagellar membranes; required for phototactic orientation"
+Cre17.g743130	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion						
+Cre17.g735200	GMM:31.1	cell.organisation	Chloroplast	"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN1-2	"g17786.t1;KIN1-2;Cre17.g735200.t1.1"	KIN1B	"kinesin-1 family"
+Cre17.g730516			Chloroplast				g17653.t1		
+Cre17.g705806			Chloroplast	"GO:0046872;GO:0016567;GO:0004842"	"metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity"		g17106.t1		"Eight-member family found found at two loci on chromosomes 16 and 17"
+Cre17.g712700			"Secretory pathway"				"TNP45;g17257.t1"		"Has a putative transposase DNA-binding domain containing four conserved cysteines suggestive of a zinc binding domain."
+Cre17.g745647			Mitochondrion				"g18029.t1;Cre20.g759300.t1.1;Cre20.g759300.t1.1;g18029.t1"		
+Cre17.g726650			Chloroplast			CGL96	"g17570.t1;Cre17.g726650.t1.1"	CGL96	
+Cre17.g744597			"Secretory pathway"				"Cre20.g760100.t1.1;g18008.t1"		
+Cre17.g720261			Mitochondrion				"g17433.t1;g17433.t1"		
+Cre17.g732200							"Cre17.g732200.t1.1;g17695.t1"		
+Cre17.g698150	GMM:31.3	cell.cycle	Mitochondrion	GO:0005634	nucleus	CYCR4	"CYCR4;g16931.t1"	CYCR4	
+Cre17.g737350							"g17834.t1;g17834.t1;g17834.t1"		
+Cre17.g706650						VPS22	"Cre17.g706650.t1.1;g17124.t1;VPS22;Cre17.g706650.t1.1;g17124.t1;VPS22"	"VPS22;VPS22"	"Expressed Protein. Similar to VPS22/SNF8, a VPS36-domain protein, component of the ESCRT-II complex involved in protein sorting in endosomes.;Expressed Protein. Similar to VPS22/SNF8, a VPS36-domain protein, component of the ESCRT-II complex involved in protein sorting in endosomes."
+Cre17.g696500	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC19	"PHC19;g16894.t1"	PHC19	"Pherophorin-C19 (PHC19) [PMID: 16367971]; belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre17.g728950	GMM:23.5.3	"nucleotide metabolism.deoxynucleotide metabolism.cytosine deaminase"	Chloroplast	"GO:0055114;GO:0009231;GO:0008703"	"oxidation-reduction process;riboflavin biosynthetic process;5-amino-6-(5-phosphoribosylamino)uracil reductase activity"	RFD2	"g17618.t1;RFD2"	RFD2	"Riboflavin metabolism-associated deaminase. Possible bifunctional enzyme of 5-amino-6-(5-phosphoribosylamino)uracil reductase and diaminohydroxyphosphoribosylaminopyrimidine deaminase. Probably cytosine/CMP/dCMP deaminase"
+Cre17.g706000			Mitochondrion				g17112.t1		
+Cre17.g716251	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	SUM5	"SUM5;SUMO89A;g17338.t1;Cre17.g716250.t1.3"		"Belongs to a cluster of 4 closely-related genes coding for fusion proteins between a Gibberellin 2-beta-dioxygenase domain and a C-terminal SUMO domain; does not contain the C-terminal GG motif, but GN; post-translational modification by SUMO modulates many important cellular processes"
+Cre17.g703495									
+Cre17.g744847				"GO:0006887;GO:0000145"	"exocytosis;exocyst"	SEC6	"SEC6;g18013.t1;Cre20.g759900.t1.1;Cre20.g759900.t1.1;g18013.t1;SEC6"	"SEC6;SEC6"	"Expressed Protein. Similar to SEC6, a component of the exocyst complex involved in secretion/exocytosis.;Expressed Protein. Similar to SEC6, a component of the exocyst complex involved in secretion/exocytosis."
+Cre17.g718150			Mitochondrion				g17380.t1		
+Cre17.g701150			Chloroplast				g17000.t1		
+Cre17.g726550							g17568.t1		
+Cre17.g698200			Mitochondrion				g16932.t1	MMS21	"E3 SUMO ligase"
+Cre17.g734200	GMM:13.1.3.5.3	"amino acid metabolism.synthesis.aspartate family.lysine.LL-diaminopimelic acid aminotransferase"	Chloroplast	"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"	DPA1	"DPA1;Cre17.g734200.t1.1;g17751.t1;DPA1;g17751.t1;Cre17.g734200.t1.1"		"Putative L,L-diaminopimelate aminotransferase (EC 2.6.1.-); aminotransferase, class 1 & 2; based on similarity to novel L,L-diaminopimelate aminotransferase (AGD2) in Arabidopsis (GenBank NP_567934) involved in lysine biosynthesis [PMID: 16361515]; organelle (mitochondria) targeting predicted by Target-P; plastid location expected based on homology;Putative L,L-diaminopimelate aminotransferase (EC 2.6.1.-); aminotransferase, class 1 & 2; based on similarity to novel L,L-diaminopimelate aminotransferase (AGD2) in Arabidopsis (GenBank NP_567934) involved in lysine biosynthesis [PMID: 16361515]; organelle (mitochondria) targeting predicted by Target-P; plastid location expected based on homology"
+Cre17.g700800			Mitochondrion				"g16993.t1;Cre17.g700800.t1.1;Cre17.g700800.t1.1;g16993.t1"		
+Cre17.g724650	GMM:17.1.1.1.1	"hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase"					"g17525.t1;Cre17.g724650.t1.1;g17525.t1;Cre17.g724650.t1.1;Cre17.g724650.t1.1;g17525.t1"		
+Cre17.g743346			Chloroplast						
+Cre17.g747497			Chloroplast				"Cre20.g757900.t1.1;g18066.t1"		
+Cre17.g726900							"g17575.t1;Cre17.g726900.t1.1;g17575.t1;Cre17.g726900.t1.1"		
+Cre17.g741550							"Cre17.g741550.t1.1;g17936.t1;Cre17.g741550.t1.1;g17936.t1"		
+Cre17.g707700	GMM:34.12	transport.metal		"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	NRAMP1	"DMT1;Cre17.g707700.t1.1;NRM1;g17145.t1;DMT1;NRM1;Cre17.g707700.t1.1;g17145.t1"	"NRAMP1;NRAMP1"	"Similarity to NRAMP MntH-like subfamily; expression in yeast smf1 mutant: with synthetic minimal medium, suggests transport of Mn/Fe/Cd/Cu but not Zn, while with YPD, results suggest transport of Zn/Cd/Co; Chlamydomonas: CLiP mutant resistant to excess Zn, overexpression lines sensitive to Zn;;Similarity to NRAMP MntH-like subfamily; expression in yeast smf1 mutant: with synthetic minimal medium, suggests transport of Mn/Fe/Cd/Cu but not Zn, while with YPD, results suggest transport of Zn/Cd/Co; Chlamydomonas: CLiP mutant resistant to excess Zn, overexpression lines sensitive to Zn;"
+Cre17.g705700	"GMM:13.1.2.2.1;GMM:13.1.2.2"	"amino acid metabolism.synthesis.glutamate family.proline.delta 1-pyrroline-5-carboxylate synthetase;amino acid metabolism.synthesis.glutamate family.proline"		GO:0003723	"RNA binding"	GGK1	"PROB1;GGK1;g17103.t1;Cre17.g705700.t1.1"	PROB1	"Gamma-glutamyl kinase (GK); delta-1-pyrroline-5-carboxylate synthase; involved in proline biosynthesis (from glutamate); contains a C-terminal PUA domain possibly binding RNA; linked to PROB2"
+Cre17.g698450	GMM:25.5	"C1-metabolism.methylenetetrahydrofolate dehydrogenase and methenyltetrahydrofolate cyclohydrolase"		"GO:0055114;GO:0009396;GO:0004488;GO:0003824"	"oxidation-reduction process;folic acid-containing compound biosynthetic process;methylenetetrahydrofolate dehydrogenase (NADP+) activity;catalytic activity"		"Cre17.g698450.t1.1;g16939.t1;g16939.t1;Cre17.g698450.t1.1"		
+Cre17.g717400	GMM:27.1	RNA.processing							
+Cre17.g744497	GMM:30.11	signalling.light	Mitochondrion				"g18006.t1;Cre20.g760200.t1.2;Cre20.g760200.t1.1"		
+Cre17.g719050							"g17400.t1;g17400.t1"		
+Cre17.g697750	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"							
+Cre17.g721800							"g17463.t1;Cre17.g721800.t1.1"		
+Cre17.g735650							"g17796.t1;g17796.t1;g17796.t1;g17796.t1"		
+Cre17.g705900							"Cre17.g705900.t1.1;g17110.t1"		
+Cre17.g715300	GMM:31.6.1.8	"cell.motility.eukaryotes.flagellar membrane proteins"				PKD2	"Cre17.g715300.t1.1;g17316.t1;PKD2;PKD2;Cre17.g715300.t1.1;g17316.t1;g17316.t1;PKD2;Cre17.g715300.t1.1"	"PKD2;PKD2;PKD2"	"Flagellar protein similar to polycystin-2; found in the flagellar proteome;Flagellar protein similar to polycystin-2; found in the flagellar proteome;Flagellar protein similar to polycystin-2; found in the flagellar proteome"
+Cre17.g713650	GMM:28.2	DNA.repair		"GO:0030983;GO:0006298;GO:0005524"	"mismatched DNA binding;mismatch repair;ATP binding"	MSH5	"g17280.t1;MSH5"	MSH5	"Orthologous to MSH5 (AT3G20475) in Arabidopsis thaliana; May form a complex with MutL (see MLH genes);"
+Cre17.g726150	"GMM:29.5.9;GMM:29.5.11.20"	"protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom"	Mitochondrion	"GO:0009378;GO:0006310;GO:0006281"	"four-way junction helicase activity;DNA recombination;DNA repair"		"g17559.t1;g17559.t1;g17559.t1"		
+Cre17.g707100							g17132.t1		
+Cre17.g728300	GMM:29.5.3	"protein.degradation.cysteine protease"		"GO:0006508;GO:0005622;GO:0004198"	"proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity"	FAP226	"g17604.t1;CAL6"	FAP226	"Flagellar Associated Protein, found in the flagellar proteome; Similar to Calpain cysteine protease"
+Cre17.g742998			Mitochondrion				g17968.t1		
+Cre17.g706500			Mitochondrion				"g17121.t1;g17121.t1"		
+Cre17.g715850							"g17329.t1;Cre17.g715850.t1.1;g17329.t1;Cre17.g715850.t1.1"		
+Cre17.g716026							g17333.t1		
+Cre17.g714400							g17298.t1		
+Cre17.g724100			"Secretory pathway"						
+Cre17.g697650	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"		"GO:0070008;GO:0008236;GO:0006508;GO:0004252"	"serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity"		"g16920.t1;g16920.t1;g16920.t1;g16920.t1;g16920.t1;g16920.t1;g16920.t1"		
+Cre17.g714650	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR33	"HTR47;g17303.t1;HTR1;Cre17.g714650.t1.1"	HTR33	"replication linked H3; histone gene cluster XXXIII (type 34BA)"
+Cre17.g705050			"Secretory pathway"	"GO:0016021;GO:0016020;GO:0006811;GO:0006810;GO:0005230"	"integral component of membrane;membrane;ion transport;transport;extracellular ligand-gated ion channel activity"	LIC1	"LIC1;Cre17.g705050.t1.1;g17089.t1"	LIC1	"some similarity to neuromediator-gated ion channels (nicotinic acetylcholine-gated ion channel); belongs to a small family of three linked genes"
+Cre17.g746647	GMM:35.1.12	"not assigned.no ontology.pumilio/Puf RNA-binding domain-containing protein"		GO:0003723	"RNA binding"	PUF2	"PUF2;Cre20.g758500.t1.1;g18049.t2;PUF2;g18049.t2;Cre20.g758500.t1.1"	"PUF2;PUF2"	"RNA-binding protein of the Puf family, translational repressor, may affect mRNA stability;RNA-binding protein of the Puf family, translational repressor, may affect mRNA stability"
+Cre17.g698532									
+Cre17.g711250	GMM:34.19	"transport.major intrinsic proteins"	"Secretory pathway"	"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	MIP2	"g17224.t1;MIP2;Cre17.g711250.t1.1"		"related to plant tonoplast TIP and aquaporins, major intrinsic protein"
+Cre17.g744397			Chloroplast				"g18004.t1;Cre20.g760300.t1.2;Cre20.g760300.t1.1"		
+Cre17.g702351	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		GO:0005515	"protein binding"	hlm26	"HLM26;g17027.t1;Cre17.g702350.t1.3"		"SET domain-containing protein; weak similarity (limited to the SET domain) to Zea mays SDG16, Oryza sativa SDG75, and Arabidopsis thaliana ATX4, SET16, SDG16 (At4g2791). ChromoDB SDG3423"
+Cre17.g741293			Mitochondrion						
+Cre17.g709350	GMM:31.4	"cell.vesicle transport"		GO:0005515	"protein binding"	SYP5	"Cre17.g709350.t1.1;g17182.t1"	SYP5	
+Cre17.g745097			"Secretory pathway"				"FLA10;g18018.t1;FAS15;Cre20.g759700.t1.1;FAS15;g18018.t1;Cre20.g759700.t1.1;FLA10"		"Identified as Fasciclin-Like Arabinogalactan 10 (FLA10) in [PMID: 31010036];Identified as Fasciclin-Like Arabinogalactan 10 (FLA10) in [PMID: 31010036]"
+Cre17.g746797			Chloroplast						
+Cre17.g708500							"g17165.t1;g17165.t1;g17165.t1"		
+Cre17.g734532			"Secretory pathway"						
+Cre17.g739201			Mitochondrion			FAP293	"Cre17.g739200.t1.2;g17877.t1;g17877.t1;Cre17.g739200.t1.2"	"FAP293;FAP293"	"Flagellar Associated Protein, found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384];Flagellar Associated Protein, found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre17.g715700	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672;GO:0003824"	"protein phosphorylation;protein kinase activity;catalytic activity"	VTC3	"PPP44;Cre17.g715700.t1.1;g17325.t1;PP2C5;PP2C5;g17325.t1;PPP44;Cre17.g715700.t1.1"	"VTC3;VTC3"	"VTC3 ortholog; contains N-terminal protein-kinase domain and C-terminal phosphatase domain;VTC3 ortholog; contains N-terminal protein-kinase domain and C-terminal phosphatase domain"
+Cre17.g746397			Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"		"Cre20.g758700.t1.1;g18044.t1;g18044.t1;Cre20.g758700.t1.1"		
+Cre17.g742132			"Secretory pathway"						
+Cre17.g702950				GO:0016021	"integral component of membrane"		"g17040.t1;Cre17.g702950.t1.1;GFY5;g17040.t1;GFY5;Cre17.g702950.t1.1"	"GFY5;GFY5"	"GPR1/FUN34/YaaH family membrane protein; located in microbodies;GPR1/FUN34/YaaH family membrane protein; located in microbodies"
+Cre17.g698516									
+Cre17.g743997							"g17995.t1;Cre20.g760700.t1.1"		
+Cre17.g725400							"g17544.t1;Cre17.g725400.t1.1"	NUOC1	"NADH:ubiquinone oxidoreductase (Complex I) subunit, mitochondrial; Ortholog to NDUFC1 in Homo sapiens;"
+Cre17.g745297							"Cre20.g759621.t1.1;Cre20.g759621.t1.2;g18022.t1;Cre20.g759621.t1.1;Cre20.g759621.t1.2;g18022.t1"		
+Cre17.g731561									
+Cre17.g713100							"g17267.t1;Cre17.g713100.t1.1"		
+Cre17.g736900							"Cre17.g736900.t1.1;g17824.t1"		
+Cre17.g723100			Chloroplast				"g17492.t1;Cre17.g723100.t1.1"		
+Cre17.g708400	GMM:29.5.1	protein.degradation.subtilases		"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SUB12	"g17163.t1;SUB12;Cre17.g708400.t1.1;Cre17.g708400.t1.1;SUB12;g17163.t1;Cre17.g708400.t1.1;SUB12;g17163.t1;g17163.t1;SUB12;Cre17.g708400.t1.1;g17163.t1;Cre17.g708400.t1.1;SUB12;SUB12;Cre17.g708400.t1.1;g17163.t1"		
+Cre17.g739515	GMM:3.3	"minor CHO metabolism.sugar alcohols"							
+Cre17.g724750							"Cre17.g724750.t1.1;g17527.t1"		
+Cre24.g755197			Chloroplast			RBD3	"Cre05.g230400.t1.1;RBD3;g18251.t1;Cre05.g230400.t1.2"	RBD3	
+Cre24.g755097	GMM:34.18.1	"transport.unspecified anions.arsenite-transporting ATPase"	Mitochondrion	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"g18249.t1;Cre05.g230350.t1.2;Cre05.g230350.t1.1"	RTA3	
+Cre24.g755247							"Cre05.g230450.t1.1;g18252.t1"		
+Cre24.g755997	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			FAP150	"g18268.t1;Cre05.g231850.t1.1;FAP150;PHC18;g18268.t1;Cre05.g231850.t1.1;FAP150;PHC18"	"PHC18;PHC18"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre24.g755447				"GO:0005681;GO:0000398"	"spliceosomal complex;mRNA splicing, via spliceosome"		"Cre05.g231300.t1.2;g18257.t1;Cre05.g231300.t1.1;g18257.t1;Cre05.g231300.t1.1;Cre05.g231300.t1.2"		
+Cre24.g755797			"Secretory pathway"				"g18264.t1;Cre05.g231650.t1.1;g18264.t1;Cre05.g231650.t1.1"		
+Cre24.g755297			Mitochondrion				"g18254.t1;Cre05.g230500.t1.1;Cre05.g230500.t1.2;uS10m"	MRPS10	
+Cre24.g756047	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"				cya6			
+Cre24.g755647	"GMM:27.3.99;GMM:27.1.3.6"	"RNA.regulation of transcription.unclassified;RNA.processing.3' end processing.CPSF30"					"Cre05.g231500.t1.1;g18261.t1"		
+Cre24.g755547							"Cre05.g231400.t1.2;Cre05.g231400.t1.1;g18259.t1"		
+Cre24.g755947			"Secretory pathway"				"g18267.t1;Cre05.g231800.t1.1;GT90-50;GT90F50"		
+Cre24.g755697							"Cre05.g231550.t1.1;Cre05.g231550.t1.2;g18262.t2;g18262.t2;Cre05.g231550.t1.2;Cre05.g231550.t1.1;g18262.t2;Cre05.g231550.t1.2;Cre05.g231550.t1.1;g18262.t2;Cre05.g231550.t1.2;Cre05.g231550.t1.1"		
+Cre24.g755497				GO:0016021	"integral component of membrane"		"Cre05.g231350.t1.2;Cre05.g231350.t1.1;g18258.t1;g18258.t1;Cre05.g231350.t1.1;Cre05.g231350.t1.2"		
+Cre24.g755897							"Cre05.g231750.t1.1;g18266.t1"		
+Cre24.g755397			"Secretory pathway"						
+Cre24.g755747							"Cre05.g231600.t1.1;g18263.t1"		
+Cre24.g755847			Mitochondrion				g18265.t1		
+Cre24.g755347	GMM:27.1.2	"RNA.processing.RNA helicase"		"GO:0005524;GO:0004386;GO:0003676"	"ATP binding;helicase activity;nucleic acid binding"		"g18255.t1;Cre05.g230550.t1.1;Cre05.g230550.t1.2;g18255.t1;Cre05.g230550.t1.2;Cre05.g230550.t1.1;Cre05.g230550.t1.2;Cre05.g230550.t1.1;g18255.t1;g18255.t1;Cre05.g230550.t1.1;Cre05.g230550.t1.2;g18255.t1;Cre05.g230550.t1.2;Cre05.g230550.t1.1;Cre05.g230550.t1.1;Cre05.g230550.t1.2;g18255.t1;Cre05.g230550.t1.2;Cre05.g230550.t1.1;g18255.t1;g18255.t1;Cre05.g230550.t1.1;Cre05.g230550.t1.2;g18255.t1;Cre05.g230550.t1.1;Cre05.g230550.t1.2;g18255.t1;Cre05.g230550.t1.2;Cre05.g230550.t1.1;Cre05.g230550.t1.2;Cre05.g230550.t1.1;g18255.t1"	"MUT6;MUT6;MUT6;MUT6;MUT6;MUT6;MUT6;MUT6;MUT6;MUT6;MUT6"	"A DEAH-box RNA helicase that is responsible for transgene silencing; Identified by insertional mutagenesis at this locus in the mut6 strain; This protein is necessary for the degradation of certain aberrant RNAs, such as improperly processed transcripts, which are often produced by transposons and some transgenes;A DEAH-box RNA helicase that is responsible for transgene silencing; Identified by insertional mutagenesis at this locus in the mut6 strain; This protein is necessary for the degradation of certain aberrant RNAs, such as improperly processed transcripts, which are often produced by transposons and some transgenes;A DEAH-box RNA helicase that is responsible for transgene silencing; Identified by insertional mutagenesis at this locus in the mut6 strain; This protein is necessary for the degradation of certain aberrant RNAs, such as improperly processed transcripts, which are often produced by transposons and some transgenes;A DEAH-box RNA helicase that is responsible for transgene silencing; Identified by insertional mutagenesis at this locus in the mut6 strain; This protein is necessary for the degradation of certain aberrant RNAs, such as improperly processed transcripts, which are often produced by transposons and some transgenes;A DEAH-box RNA helicase that is responsible for transgene silencing; Identified by insertional mutagenesis at this locus in the mut6 strain; This protein is necessary for the degradation of certain aberrant RNAs, such as improperly processed transcripts, which are often produced by transposons and some transgenes;A DEAH-box RNA helicase that is responsible for transgene silencing; Identified by insertional mutagenesis at this locus in the mut6 strain; This protein is necessary for the degradation of certain aberrant RNAs, such as improperly processed transcripts, which are often produced by transposons and some transgenes;A DEAH-box RNA helicase that is responsible for transgene silencing; Identified by insertional mutagenesis at this locus in the mut6 strain; This protein is necessary for the degradation of certain aberrant RNAs, such as improperly processed transcripts, which are often produced by transposons and some transgenes;A DEAH-box RNA helicase that is responsible for transgene silencing; Identified by insertional mutagenesis at this locus in the mut6 strain; This protein is necessary for the degradation of certain aberrant RNAs, such as improperly processed transcripts, which are often produced by transposons and some transgenes;A DEAH-box RNA helicase that is responsible for transgene silencing; Identified by insertional mutagenesis at this locus in the mut6 strain; This protein is necessary for the degradation of certain aberrant RNAs, such as improperly processed transcripts, which are often produced by transposons and some transgenes;A DEAH-box RNA helicase that is responsible for transgene silencing; Identified by insertional mutagenesis at this locus in the mut6 strain; This protein is necessary for the degradation of certain aberrant RNAs, such as improperly processed transcripts, which are often produced by transposons and some transgenes;A DEAH-box RNA helicase that is responsible for transgene silencing; Identified by insertional mutagenesis at this locus in the mut6 strain; This protein is necessary for the degradation of certain aberrant RNAs, such as improperly processed transcripts, which are often produced by transposons and some transgenes"
+Cre24.g755597	GMM:19.16	"tetrapyrrole synthesis.chlorophyll b synthase"	Chloroplast	"GO:0055114;GO:0051537;GO:0016491"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"		"g18260.t1;Cre05.g231450.t1.1;Cre05.g231450.t1.2;Cre05.g231450.t1.2;g18260.t1;Cre05.g231450.t1.1"		"Contains Rieske iron-sulfur cluster and PAO domains, but like CAO1 lacks a transmembrane domain; belongs to the classical family of short chain dehydrogenases [PMID: 15180984]; could be involved in Chlorophyll b synthesis in stress conditions;Contains Rieske iron-sulfur cluster and PAO domains, but like CAO1 lacks a transmembrane domain; belongs to the classical family of short chain dehydrogenases [PMID: 15180984]; could be involved in Chlorophyll b synthesis in stress conditions"
+Cre24.g755147			"Secretory pathway"						
+Cre37.g759897			"Secretory pathway"						
+Cre37.g759797							g18369.t1		
+Cre37.g759847			Mitochondrion						
+Cre37.g759947									
+Cre52.g761647			"Secretory pathway"				g18412.t1		
+Cre28.g757747							g18316.t1		
+Cre28.g757647							g18314.t1		
+Cre28.g757697									
+Cre28.g757497			"Secretory pathway"						
+Cre28.g757597									
+Cre28.g757547			Mitochondrion				"Cre54.g790801.t1.1;Cre54.g790801.t1.2;g18312.t1"		
+Cre49.g761297									
+Cre49.g761347						FAP360			
+Cre39.g760047				GO:0046983	"protein dimerization activity"				
+Cre39.g760097			"Secretory pathway"						
+Cre20.g751747									
+Cre20.g751597							g18153.t1		
+Cre20.g751497									
+Cre20.g751797			Chloroplast						
+Cre20.g751397							g18147.t1		
+Cre20.g751447									
+Cre20.g751547			Mitochondrion						
+Cre20.g751697							g18155.t1		
+Cre20.g751647			Mitochondrion						
+Cre05.g233450	"GMM:26.2;GMM:10.3.2"	"misc.UDP glucosyl and glucoronyl transferases;cell wall.hemicellulose synthesis.glucuronoxylan"				ELG30	"g5104.t1;Cre05.g233450.t1.1;ELG30;Cre05.g233450.t1.1;g5104.t1;ELG30"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre05.g236650	"GMM:30.1.1;GMM:23.1.2"	"signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG63	"CYG63;g5444.t1;g5444.t1;CYG63;CYG63;g5444.t1"		
+Cre05.g244350							"g5247.t1;Cre05.g244350.t1.1;Cre05.g244350.t1.1;g5247.t1"		
+Cre05.g236000	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g5425.t1		
+Cre05.g241400			"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		g5565.t1		
+Cre05.g234892									
+Cre05.g234652	"GMM:31.1;GMM:27.2"	"cell.organisation;RNA.transcription"					"Cre24.g769350.t1.1;Cre24.g769350.t1.2;POB4;g5371.t1;Cre24.g769350.t1.2;g5371.t1;POB4;Cre24.g769350.t1.1"	"ZNG2;ZNG2"	"Paralog of ZNG1 (Cre01.g052000); Ortholog of YNR029c from yeast; Also found in basal body proteome as POB4; Related to CBWD proteins in humans;Paralog of ZNG1 (Cre01.g052000); Ortholog of YNR029c from yeast; Also found in basal body proteome as POB4; Related to CBWD proteins in humans"
+Cre05.g233702									
+Cre05.g247450	GMM:26.23	misc.rhodanese	Chloroplast			CGL56	"RDP5;g5183.t1;Cre05.g247450.t1.1;CGL56;RDP5;g5183.t1;CGL56;Cre05.g247450.t1.1;Cre05.g247450.t1.1;CGL56;RDP5;g5183.t1"	"CGL56;CGL56;CGL56"	"Conserved in the green lineage;Conserved in the green lineage;Conserved in the green lineage"
+Cre05.g240800	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Chloroplast			NUO17	"g5553.t1;Cre05.g240800.t1.1"	NUO17	"Mitochondrial NADH:ubiquinone oxidoreductase (Complex I) 17 kDa subunit precursor, mitochondrial [ACCESSION AAS48192] similar to mammal complex I ESSS subunit, Yarrowia lipolytica NUWM subunit and At3g57785 gene product from Arabidopsis complex I; Ortholog of NDUFB11 in Homo sapiens;"
+Cre05.g230950			Mitochondrion				g5148.t1		
+Cre05.g234640							"Cre24.g769850.t1.1;g5360.t3"		
+Cre05.g241636	GMM:27.3.6	"RNA.regulation of transcription.basic helix-loop-helix family (bHLH)"		GO:0046983	"protein dimerization activity"		"g5331.t1;Cre24.g770450.t1.1;Cre24.g770450.t1.2;g5331.t1;Cre24.g770450.t1.1;Cre24.g770450.t1.2;g5331.t1;Cre24.g770450.t1.1;Cre24.g770450.t1.2;g5331.t1;Cre24.g770450.t1.2;Cre24.g770450.t1.1"		
+Cre05.g239978				GO:0016020	membrane		"g5534.t1;Cre05.g239978.t1.1"		
+Cre05.g237550			"Secretory pathway"				"g5466.t1;Cre05.g237550.t1.1"		
+Cre05.g245158	GMM:34.18.1	"transport.unspecified anions.arsenite-transporting ATPase"	Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"				
+Cre05.g236907							"g5450.t1;Cre05.g236907.t1.1"		
+Cre05.g243353							"g5280.t1;Cre05.g243353.t1.1"		
+Cre05.g234637	GMM:29.2.1.2.1.515	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S15A"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"		"g5356.t1;g5356.t1"		
+Cre05.g232304									
+Cre05.g238332	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast	"GO:0015979;GO:0009538;GO:0009522"	"photosynthesis;photosystem I reaction center;photosystem I"	PSAD	"PSAD;Cre56.g791050.t1.2;g5492.t1;Cre56.g791050.t1.1;g5492.t1;Cre56.g791050.t1.1;PSAD;Cre56.g791050.t1.2;g5492.t1;Cre56.g791050.t1.1;PSAD;Cre56.g791050.t1.2;Cre56.g791050.t1.2;PSAD;Cre56.g791050.t1.1;g5492.t1"	"PSAD1;PSAD1;PSAD1;PSAD1"	"Acceptor side subunit, involved in ferredoxin docking;Acceptor side subunit, involved in ferredoxin docking;Acceptor side subunit, involved in ferredoxin docking;Acceptor side subunit, involved in ferredoxin docking"
+Cre05.g247650			Chloroplast				g5179.t1		
+Cre05.g241600							"g5323.t1;Cre05.g241600.t1.1"		
+Cre05.g232900			Mitochondrion				g5116.t1		
+Cre05.g244950	GMM:29.3.4.1	"protein.targeting.secretory pathway.ER"	"Secretory pathway"	"GO:0016021;GO:0005783"	"integral component of membrane;endoplasmic reticulum"		"g5234.t1;Cre05.g244950.t1.1"		
+Cre05.g239550			Chloroplast				"g5525.t1;g5525.t1"		
+Cre05.g236850			Mitochondrion				"NAT14;g5448.t1;NAT14;g5448.t1;NAT14;g5448.t1;NAT14;g5448.t1;g5448.t1;NAT14"		"Related to GCN5. May have beta-N-acetylhexosaminidase activity;Related to GCN5. May have beta-N-acetylhexosaminidase activity;Related to GCN5. May have beta-N-acetylhexosaminidase activity;Related to GCN5. May have beta-N-acetylhexosaminidase activity;Related to GCN5. May have beta-N-acetylhexosaminidase activity"
+Cre05.g240950							"g5556.t1;g5556.t1;g5556.t1"		
+Cre05.g241655			Chloroplast				"Cre82.g796100.t1.2;g5350.t1;Cre82.g796100.t1.1;Cre05.g234450.t1.2"		
+Cre05.g237910									
+Cre05.g244000			"Secretory pathway"				g5256.t1		
+Cre05.g243453			Chloroplast						
+Cre05.g242178				"GO:0008889;GO:0008081;GO:0006629"	"glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process"		"Cre05.g242178.t1.1;g5310.t1;g5310.t1;Cre05.g242178.t1.1;Cre05.g242178.t1.1;g5310.t1;Cre05.g242178.t1.1;g5310.t1;g5310.t1;Cre05.g242178.t1.1"		
+Cre05.g234656	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g5375.t1;Cre24.g769150.t1.1;g5375.t1;Cre24.g769150.t1.1;g5375.t1;Cre24.g769150.t1.1;g5375.t1;Cre24.g769150.t1.1"		
+Cre05.g232300			Mitochondrion				g5132.t1		
+Cre05.g248401			"Secretory pathway"				g5165.t1		
+Cre05.g234576			Chloroplast						
+Cre05.g240600							g5549.t1		
+Cre05.g247900			Chloroplast	GO:0005515	"protein binding"		g5174.t1		
+Cre05.g242859									
+Cre05.g241640							"g5335.t1;Cre24.g770250.t1.1;g5335.t1;Cre24.g770250.t1.1"		
+Cre05.g243451			Chloroplast	GO:0005737	cytoplasm		g5274.t1		
+Cre05.g238761	GMM:3.3	"minor CHO metabolism.sugar alcohols"							
+Cre05.g240450			Mitochondrion				"g5545.t1;Cre05.g240450.t1.1"		
+Cre05.g245500	GMM:31.1	cell.organisation				FAP175	"ANK24;g5223.t1;g5223.t1;ANK24;ANK24;g5223.t1;ANK24;g5223.t1;g5223.t1;ANK24;g5223.t1;ANK24;ANK24;g5223.t1;g5223.t1;ANK24;g5223.t1;ANK24;g5223.t1;ANK24;ANK24;g5223.t1;g5223.t1;ANK24;g5223.t1;ANK24;g5223.t1;ANK24;g5223.t1;ANK24"	"FAP175;FAP175;FAP175;FAP175;FAP175;FAP175;FAP175;FAP175;FAP175;FAP175;FAP175;FAP175;FAP175;FAP175;FAP175"	"Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175;Protein of unknown function with ankyrin repeats, flagella associated; found in the flagellar proteome as FAP175"
+Cre05.g240050			Mitochondrion				g5536.t1		
+Cre05.g234655	GMM:29.4	"protein.postranslational modification"		GO:0005515	"protein binding"		"g5374.t1;Cre24.g769200.t1.1;Cre24.g769200.t1.2"		
+Cre05.g246753			"Secretory pathway"				g5199.t1		
+Cre05.g248650							"g5159.t1;g5159.t1;g5159.t1;g5159.t1;g5159.t1;g5159.t1;g5159.t1;g5159.t1;g5159.t1"		
+Cre05.g246250			"Secretory pathway"				"g5210.t1;g5210.t1"		
+Cre05.g238311			Chloroplast				"g5490.t2;Cre56.g791150.t2.1"		
+Cre05.g239950							g5533.t1		
+Cre05.g239300							g5520.t1		
+Cre05.g234638	GMM:23.1.2.1	"nucleotide metabolism.synthesis.purine.amidophosphoribosyltransferase"	Chloroplast	GO:0009116	"nucleoside metabolic process"		"g5357.t1;g5357.t1"		
+Cre05.g237000	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			MAP1D	"Cre05.g237000.t1.1;g5453.t1;g5453.t1;Cre05.g237000.t1.1"	"MAP1D;MAP1D"	"Involved in N-terminal maturation of proteins; Metallopeptidase family M24; probably targeted to both chloroplast and mitochondrial [PMID: 11060042, 14532271];Involved in N-terminal maturation of proteins; Metallopeptidase family M24; probably targeted to both chloroplast and mitochondrial [PMID: 11060042, 14532271]"
+Cre05.g234934			Mitochondrion						
+Cre05.g241633							"Cre24.g770600.t1.1;g5328.t1;Cre24.g770600.t1.2"		
+Cre05.g244900			Mitochondrion				"g5235.t1;g5235.t1;g5235.t1;g5235.t1;g5235.t1;g5235.t1;g5235.t1;g5235.t1;g5235.t1"		
+Cre05.g243151									
+Cre05.g242300	GMM:29.2.3	protein.synthesis.initiation		"GO:0005852;GO:0005737;GO:0003743"	"eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity"	EIF3D	"EIF3D;g5306.t1;Cre05.g242300.t1.1;EIF3D;g5306.t1;Cre05.g242300.t1.1"	"EIF3D;EIF3D"	"putative Eukaryotic translation initiation factor 3 subunit 7 (eIF-3 zeta); (IF3Z);putative Eukaryotic translation initiation factor 3 subunit 7 (eIF-3 zeta); (IF3Z)"
+Cre05.g235550			Chloroplast				"g5416.t1;g5416.t1;g5416.t1"	"OPR125;OPR125;OPR125"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre05.g246550			Chloroplast			LAO3	"g5202.t1;LAO3;Cre05.g246550.t1.1;LAO3;Cre05.g246550.t1.1;g5202.t1"	"LAO3;LAO3"	"similar to LAO1, L-amino-acid oxidase catalytic subunit; possibly the cytosolic enzyme described in PMID:24178194;similar to LAO1, L-amino-acid oxidase catalytic subunit; possibly the cytosolic enzyme described in PMID:24178194"
+Cre05.g244550				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g5243.t1;g5243.t1;g5243.t1;g5243.t1;g5243.t1;g5243.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre05.g238374	"GMM:29.5.11.4.2;GMM:27.3.99"	"protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.unclassified"	Chloroplast	"GO:0046872;GO:0016567;GO:0004842"	"metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity"		g5496.t1		
+Cre05.g232004							g5142.t1		
+Cre05.g243601						CSU5			
+Cre05.g239600			Chloroplast				g5526.t2		
+Cre05.g236183			"Secretory pathway"				g5430.t1		
+Cre05.g238500	GMM:29.2.2.3.3	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases"	Chloroplast	"GO:0008173;GO:0006364;GO:0005737"	"RNA methyltransferase activity;rRNA processing;cytoplasm"		"g5499.t1;g5499.t1"		
+Cre05.g241550									
+Cre05.g244300							g5248.t1		
+Cre05.g233051			Mitochondrion				"Cre05.g233000.t2.1;g5113.t2"		
+Cre05.g234050			Chloroplast				"Cre05.g234050.t1.1;g5092.t1"		
+Cre05.g230800	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		"GO:0008270;GO:0005524"	"zinc ion binding;ATP binding"		g5151.t1		
+Cre05.g237700	GMM:27.4	"RNA.RNA binding"		"GO:0072588;GO:0042254;GO:0030515;GO:0001522"	"box H/ACA RNP complex;ribosome biogenesis;snoRNA binding;pseudouridine synthesis"	NOP10	"g5469.t1;NOP10;Cre05.g237700.t1.1"	NOP10	"Structural Component of H/ACA snoRNPs which catalyze the snoRNA-guided pseudouridylation of the pre-rRNA and other RNA molecules"
+Cre05.g247600	"GMM:29.5.11.3;GMM:27.4"	"protein.degradation.ubiquitin.E2;RNA.RNA binding"				UBC2	"Cre05.g247600.t1.1;g5180.t1;UBC2;g5180.t1;Cre05.g247600.t1.1;UBC2"	"UBC2;UBC2"	"E2 Ubiquitin conjugating enzyme;E2 Ubiquitin conjugating enzyme"
+Cre05.g234666				"GO:0051607;GO:0003725"	"defense response to virus;double-stranded RNA binding"		"Cre24.g768650.t1.1;g5385.t2;Cre24.g768650.t1.1;g5385.t2"		
+Cre05.g245950	"GMM:30.5;GMM:26.17"	"signalling.G-proteins;misc.dynamin"		"GO:0005525;GO:0003924"	"GTP binding;GTPase activity"	DRP1	g5216.t1	DRP1	"Similar to Arabidopsis DRP1 group; probably involved in membrane vesicle trafficking"
+Cre05.g236500	GMM:11.8.1.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids.ceramidase"	"Secretory pathway"						
+Cre05.g243354			Chloroplast				"g5279.t1;Cre05.g243354.t1.1;g5279.t1;Cre05.g243354.t1.1"		
+Cre05.g233305	GMM:31.2.5	cell.division.plastid	Chloroplast	"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"		"g5110.t2;Cre05.g233150.t2.1;g5110.t2;Cre05.g233150.t2.1"		
+Cre05.g238260			Chloroplast				"g5485.t1;g5485.t1"		" null-allele mutant was isolated (PMID 29743196); null-allele mutant was isolated (PMID 29743196)"
+Cre05.g232100							"Cre05.g232100.t1.1;g5137.t1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre05.g232750	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"				CNK4	"g5119.t1;Cre05.g232750.t1.1;CNK4;g5119.t1;CNK4;Cre05.g232750.t1.1"	"CNK4;CNK4"	"NimA-related protein kinase homolog 4 [gi:34334397, PMID: 15068267];NimA-related protein kinase homolog 4 [gi:34334397, PMID: 15068267]"
+Cre05.g237450	"GMM:29.2.1.1.1.1.530;GMM:29.2.1.1.1.1.0530"	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S30A;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S30A"	Chloroplast	GO:0044238	"primary metabolic process"	PSRP1	"g5462.t1;Cre05.g237450.t1.1;g5462.t1;Cre05.g237450.t1.1;g5462.t1;Cre05.g237450.t1.1;Cre05.g237450.t1.1;g5462.t1;Cre05.g237450.t1.1;g5462.t1;g5462.t1;Cre05.g237450.t1.1;g5462.t1;Cre05.g237450.t1.1"	"PSRP1;PSRP1;PSRP1;PSRP1;PSRP1;PSRP1;PSRP1"	"Chloroplast ribosome hibernation factor, related to bacterial HPF. This is a different protein from plastid ribosomal protein S1, product of the PRPS1 gene.;Chloroplast ribosome hibernation factor, related to bacterial HPF. This is a different protein from plastid ribosomal protein S1, product of the PRPS1 gene.;Chloroplast ribosome hibernation factor, related to bacterial HPF. This is a different protein from plastid ribosomal protein S1, product of the PRPS1 gene.;Chloroplast ribosome hibernation factor, related to bacterial HPF. This is a different protein from plastid ribosomal protein S1, product of the PRPS1 gene.;Chloroplast ribosome hibernation factor, related to bacterial HPF. This is a different protein from plastid ribosomal protein S1, product of the PRPS1 gene.;Chloroplast ribosome hibernation factor, related to bacterial HPF. This is a different protein from plastid ribosomal protein S1, product of the PRPS1 gene.;Chloroplast ribosome hibernation factor, related to bacterial HPF. This is a different protein from plastid ribosomal protein S1, product of the PRPS1 gene."
+Cre05.g232752			Mitochondrion				"g5121.t1;COCA1"	COA1	
+Cre05.g241851	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"				g5319.t1		
+Cre05.g233751							"g5099.t1;Cre05.g233700.t1.3"		
+Cre05.g233800	GMM:29.1.14	"protein.aa activation.glycine-tRNA ligase"		"GO:0006418;GO:0005524;GO:0004812;GO:0000166"	"tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"	TSG1	"TSG1;Cre05.g233800.t1.1;g5097.t1;TSG1;Cre05.g233800.t1.1;g5097.t1"	"TSG1;TSG1"	
+Cre05.g243452			Mitochondrion	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"		g5275.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre05.g246376			Mitochondrion						
+Cre05.g239850	GMM:991.1	"Mineral Nutrition.phosphatie"	"Secretory pathway"			PHO4	"g5531.t3;PHOD;PHO4"	PHO4	"Similar to phosphate-deficiency inducible alkaline phosphatase/phosphodiesterase, APaseD, encoded by phoD, from Bacillus subtilis."
+Cre05.g234550	GMM:1.3.6	"PS.calvin cycle.aldolase"	Chloroplast	"GO:0006096;GO:0004332"	"glycolytic process;fructose-bisphosphate aldolase activity"	FBA3	"Cre05.g234550.t1.1;ALDCHL;g5352.t1;ALDCHL;Cre05.g234550.t1.1;g5352.t1"	"FBA3;FBA3"	"Fructose-1,6-bisphosphate aldolase 1 (EC:4.1.2.13); Calvin-Benson-Bassham cycle enzyme [Genbank entry X69969];Fructose-1,6-bisphosphate aldolase 1 (EC:4.1.2.13); Calvin-Benson-Bassham cycle enzyme [Genbank entry X69969]"
+Cre05.g242860									
+Cre05.g240300			Chloroplast						
+Cre05.g245800							"Cre05.g245800.t1.1;g5219.t1;Cre05.g245800.t1.1;g5219.t1;g5219.t1;Cre05.g245800.t1.1;g5219.t1;Cre05.g245800.t1.1"		
+Cre05.g233303	GMM:29.7.4	"protein.glycosylation.UDP-glucose glycoprotein glucosyltransferase"	Chloroplast	"GO:0016757;GO:0006486;GO:0003980"	"transferase activity, transferring glycosyl groups;protein glycosylation;UDP-glucose:glycoprotein glucosyltransferase activity"		"g5108.t2;g5108.t2;g5108.t2;g5108.t2"		" null-allele passenger mutation was isolated (PMID 29743196); null-allele passenger mutation was isolated (PMID 29743196); null-allele passenger mutation was isolated (PMID 29743196); null-allele passenger mutation was isolated (PMID 29743196)"
+Cre05.g233602									
+Cre05.g236700			Chloroplast				g5445.t2		
+Cre05.g241648			Chloroplast						
+Cre05.g248400	GMM:8.3	"TCA / organic transformation.carbonic anhydrases"	Mitochondrion	"GO:0008270;GO:0004089"	"zinc ion binding;carbonate dehydratase activity"	CAH4	"g5164.t1;mtCA1;MCA;CAH4;Cre05.g248400.t1.1"	CAH4	"Type beta_CA_cladeC; Mitochondrial carbonic anhydrase. Probably regulated by CCM1 [PMID: 15235119]; Acclimation to changing CO2 concentrations and light intensities was studied by Yamano et al. 2008 [PMID: 18322145], identified in their table as MCA"
+Cre05.g242602			Mitochondrion						
+Cre05.g234801	GMM:11.9.2.1	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase"	Chloroplast				"g5391.t1;g5391.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre05.g232456			Chloroplast						
+Cre05.g241202	GMM:29.5.3	"protein.degradation.cysteine protease"		"GO:0006508;GO:0005622;GO:0004198"	"proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity"		"g5561.t1;g5561.t1;g5561.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre05.g238850			Mitochondrion			PHC17	"PHC17;g5507.t1;Cre05.g238850.t1.1"		"pherophorin-C17 (PHC17) [PMID: 16367971]; partial sequence similar to extracellular matrix protein (cell wall protein) pherophorin-C4 [Genbank entry DQ196110], which belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain."
+Cre05.g246100			Mitochondrion				"g5213.t1;Cre05.g246100.t1.1;Cre05.g246100.t1.1;g5213.t1"		
+Cre05.g237600			Mitochondrion	"GO:0008168;GO:0006412"	"methyltransferase activity;translation"		"g5467.t1;g5467.t1;g5467.t1;g5467.t1;g5467.t1"		
+Cre05.g241000			Chloroplast				"Cre05.g241000.t1.1;g5557.t1"		
+Cre05.g247250			Mitochondrion				"g5187.t1;g5187.t1;g5187.t1;g5187.t1"		
+Cre05.g234657				GO:0003725	"double-stranded RNA binding"		"Cre24.g769100.t1.2;g5376.t1;Cre24.g769100.t1.1"		
+Cre05.g236626									
+Cre05.g244500							"Cre05.g244500.t1.1;g5244.t1;Cre05.g244500.t1.1;g5244.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre05.g241645							g5340.t1		
+Cre05.g239500						FAP38	"g5524.t1;g5524.t1"	"FAP38;FAP38"	
+Cre05.g236450			"Mitochondrion;Chloroplast"				g5437.t1		
+Cre05.g234600			"Secretory pathway"				g5354.t1		
+Cre05.g243150	GMM:33.99	development.unspecified	"Secretory pathway"				"g5283.t1;g5283.t1;g5283.t1"		
+Cre05.g247400	GMM:26.23	misc.rhodanese	"Secretory pathway"				"Cre05.g247400.t1.1;g5184.t1;RDP4"		
+Cre05.g241637	GMM:31.6.1.3.2.2	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B"		GO:0042073	"intraciliary transport"	IFT46	"FAP32;Cre24.g770400.t1.1;Cre24.g770400.t1.2;g5332.t1"	IFT46	"Flagellar Associated Protein; belongs to of IFT-B1 particle; N-terminus interacts with ODA transport adaptor ODA16"
+Cre05.g235500	GMM:31.1	cell.organisation	Chloroplast	"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN7-1	"KIN7-1;g5415.t1;g5415.t1;KIN7-1"	"KIN7A;KIN7A"	"kinesin-7 family;kinesin-7 family"
+Cre05.g235186			Mitochondrion				g5408.t1		
+Cre05.g233900	GMM:21.2.1	"redox.ascorbate and glutathione.ascorbate"	Chloroplast	"GO:0055114;GO:0020037;GO:0006979;GO:0004601"	"oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity"	APX4	"APX4;g5095.t1;Cre05.g233900.t1.1;APX4;g5095.t1;Cre05.g233900.t1.1"		"Knockdown amiRNA lines show reduced ascorbate content and ascorbate/dehydroascorbate ratio after prolonged HL treatment; APX-like because the conserved residues are lost;Knockdown amiRNA lines show reduced ascorbate content and ascorbate/dehydroascorbate ratio after prolonged HL treatment; APX-like because the conserved residues are lost"
+Cre05.g244050							"g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1;g5254.t1"		
+Cre05.g230971									
+Cre05.g241500						MOT30	"MOT30;g5567.t1"	MOT30	"Identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre05.g241630									
+Cre05.g242500	GMM:31.1	cell.organisation				RSP4	"Cre05.g242500.t1.1;g5301.t1;PF1"	RSP4	"Flagellar radial spoke protein 4 (RSP4), a component of the radial spoke head; gene originally termed PF1 [PMID: 7204490; PMID: 1508197; PMID: 16507594; GI:401050]"
+Cre05.g237800	"GMM:30.1.1;GMM:23.1.2"	"signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG64	"CYG64;g5471.t1"		
+Cre05.g238140							"g5481.t1;Cre05.g238140.t1.1"		
+Cre05.g242856	GMM:29.5.1	protein.degradation.subtilases	Mitochondrion	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"		g5290.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre05.g240750	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Mitochondrion			TEF17	"Cre05.g240750.t1.1;TEF17;g5552.t1"	TEF17	"Protein with unknown function, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification;"
+Cre05.g242400	GMM:1.1.40	"PS.lightreaction.cyclic electron flow-chlororespiration"	Chloroplast			PGR5	"g5304.t1;Cre05.g242400.t1.1"	PGR5	"thylakoid membrane protein involved in cyclic electron flow"
+Cre05.g244800	GMM:30.11	signalling.light	Chloroplast				"g5238.t1;Cre05.g244800.t1.1;NUOAF3;Cre05.g244800.t1.1;g5238.t1;NUOAF3;g5238.t1;Cre05.g244800.t1.1;NUOAF3"		"Similar to complex I intermediate-associated protein 3; see NUOAF1. Also resembles NmrA negative transcriptional regulator protein family;Similar to complex I intermediate-associated protein 3; see NUOAF1. Also resembles NmrA negative transcriptional regulator protein family;Similar to complex I intermediate-associated protein 3; see NUOAF1. Also resembles NmrA negative transcriptional regulator protein family"
+Cre05.g242502			Chloroplast						
+Cre05.g247700							g5178.t1		
+Cre05.g232450							"g5125.t1;g5125.t1;g5125.t1"		
+Cre05.g241350	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g5564.t1;g5564.t1;g5564.t1"		
+Cre05.g238100	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK25	"PTK25;g5480.t1;Cre05.g238100.t1.1;PTK25;g5480.t1;Cre05.g238100.t1.1;PTK25;g5480.t1;Cre05.g238100.t1.1;PTK25;g5480.t1;Cre05.g238100.t1.1;Cre05.g238100.t1.1;PTK25;g5480.t1;PTK25;g5480.t1;Cre05.g238100.t1.1;g5480.t1;PTK25;Cre05.g238100.t1.1;PTK25;g5480.t1;Cre05.g238100.t1.1;Cre05.g238100.t1.1;g5480.t1;PTK25"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre05.g238800							"g5506.t1;g5506.t1;g5506.t1;g5506.t1;g5506.t1;g5506.t1;g5506.t1"		
+Cre05.g232950	GMM:31.1	cell.organisation					"g5115.t1;Cre05.g232950.t1.1;Cre05.g232950.t1.1;g5115.t1;g5115.t1;Cre05.g232950.t1.1;Cre05.g232950.t1.1;g5115.t1"		
+Cre05.g235060									
+Cre05.g241650	GMM:29.5	protein.degradation	Chloroplast				"g5322.t1;g5322.t1"		
+Cre05.g245150							"g5230.t1;g5230.t1"		
+Cre05.g238550							"g5500.t1;g5500.t1"		
+Cre05.g247950			Mitochondrion				"Cre05.g247950.t1.1;g5173.t1;Cre05.g247950.t1.1;g5173.t1;g5173.t1;Cre05.g247950.t1.1;Cre05.g247950.t1.1;g5173.t1;Cre05.g247950.t1.1;g5173.t1"		
+Cre05.g238450			"Secretory pathway"				g5498.t1		
+Cre05.g233650	GMM:30.99	signalling.unspecified				FXL9	"FXL9;g5100.t1;g5100.t1;FXL9;g5100.t1;FXL9;FXL9;g5100.t1;g5100.t1;FXL9;FXL9;g5100.t1"	"FXL9;FXL9;FXL9;FXL9;FXL9;FXL9"	"FixL like homolog 9 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 9 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 9 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 9 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 9 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 9 (FXL). PAS region shows high identity to Rhizobial FixL proteins."
+Cre05.g234659						MRPL30	"Cre24.g769000.t1.1;MRPL30;g5378.t1;uL30m;Cre24.g769000.t1.2"	MRPL30	
+Cre05.g236039	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"				"g5426.t1;Cre05.g236039.t1.1"		"Target of CRR1"
+Cre05.g247500	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0046872	"metal ion binding"		g5182.t1		
+Cre05.g232150	GMM:12.3.1	"N-metabolism.N-degradation.glutamate dehydrogenase"	Mitochondrion	"GO:0055114;GO:0016491;GO:0006520"	"oxidation-reduction process;oxidoreductase activity;cellular amino acid metabolic process"	GDH2	"g5136.t1;GDH2;Cre05.g232150.t1.1;g5136.t1;GDH2;Cre05.g232150.t1.1;Cre05.g232150.t1.1;GDH2;g5136.t1"	"GDH2;GDH2;GDH2"	"EC 1.4.1.2; one of two GDH paralogs, possibly targeted to different organelles; could be involved in NH3 reassimilation under certain circumstances;EC 1.4.1.2; one of two GDH paralogs, possibly targeted to different organelles; could be involved in NH3 reassimilation under certain circumstances;EC 1.4.1.2; one of two GDH paralogs, possibly targeted to different organelles; could be involved in NH3 reassimilation under certain circumstances"
+Cre05.g239350			Chloroplast				g5521.t1		
+Cre05.g248300	GMM:34.12	transport.metal		"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"		g5166.t1	NRAMP4	"Similarity to NRAMP Eukaryotic group I subfamily, specifically expressed during Fe limitation;"
+Cre05.g237250							"g5458.t1;g5458.t1"		
+Cre05.g245102						CGL3	"g5233.t1;Cre05.g245000.t1.1"	CGL3	
+Cre05.g245550	"GMM:30.4.2;GMM:30.4"	"signalling.phosphinositides.phosphatidylinositol 4-kinase;signalling.phosphinositides"	Mitochondrion	"GO:0048015;GO:0046854;GO:0016773"	"phosphatidylinositol-mediated signaling;phosphatidylinositol phosphorylation;phosphotransferase activity, alcohol group as acceptor"	PIK1	"PIK1;g5222.t1;PIK1;g5222.t1;PIK1;g5222.t1;g5222.t1;PIK1;PIK1;g5222.t1;PIK1;g5222.t1;g5222.t1;PIK1"	"PIK1;PIK1;PIK1;PIK1;PIK1;PIK1;PIK1"	"Phosphatidylinositol 4-kinase (PI4K), phosphotransferase;Phosphatidylinositol 4-kinase (PI4K), phosphotransferase;Phosphatidylinositol 4-kinase (PI4K), phosphotransferase;Phosphatidylinositol 4-kinase (PI4K), phosphotransferase;Phosphatidylinositol 4-kinase (PI4K), phosphotransferase;Phosphatidylinositol 4-kinase (PI4K), phosphotransferase;Phosphatidylinositol 4-kinase (PI4K), phosphotransferase"
+Cre05.g235900			Chloroplast				"g5423.t1;g5423.t1"		
+Cre05.g237526			Chloroplast						
+Cre05.g240550	"GMM:33.99;GMM:1.1.1.4"	"development.unspecified;PS.lightreaction.photosystem II.LHC biogenesis"	"Secretory pathway"			TLA1	"Cre05.g240550.t1.1;g5548.t1;TLA1"	TLA1	"identified by Mitra and Melis [PMID: 212986]; insertional mutant has reduced antenna size [PMID: 12721848]"
+Cre05.g243600	GMM:24	"biodegradation of xenobiotics"				GOX2	"Cre05.g243600.t1.1;g5267.t1"	GOX2	"Truncated pseudogene with only the C-terminal DUF1929 domain; the substrate of this family of oxidases is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi (both use the same Tyr radical / metal mechanism); the higher plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues; linked to GOX1, shares similarity in 3'UTR; null-allele mutant w"
+Cre05.g233400							"g5105.t1;g5105.t1"		
+Cre05.g233802									
+Cre05.g245352			"Secretory pathway"	"GO:0016020;GO:0005975;GO:0005044;GO:0004553"	"membrane;carbohydrate metabolic process;scavenger receptor activity;hydrolase activity, hydrolyzing O-glycosyl compounds"				
+Cre05.g241649									
+Cre05.g242950			"Secretory pathway"	"GO:0015934;GO:0006412;GO:0005840;GO:0003735"	"large ribosomal subunit;translation;ribosome;structural constituent of ribosome"	MRPL22	"uL22m;g5287.t1;MRPL22"	MRPL22	
+Cre05.g234644							"g5364.t1;Cre24.g769700.t1.1;Cre24.g769700.t1.2"		
+Cre05.g233402			Mitochondrion				g5076.t1		
+Cre05.g234000	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB26			
+Cre05.g244750	GMM:31.2	cell.division	"Secretory pathway"				"g5239.t1;g5239.t1"		
+Cre05.g238290	GMM:26.17	misc.dynamin		"GO:0005525;GO:0003924"	"GTP binding;GTPase activity"	DRP7	"g5488.t1;Cre56.g791250.t1.2;Cre56.g791250.t1.1;DRP7;Cre56.g791250;Cre56.g791250.t1.2;g5488.t1;DRP7;Cre56.g791250;Cre56.g791250.t1.1"		
+Cre05.g248550	"GMM:29.5.11.4.2;GMM:27.3.57;GMM:27.3.11"	"protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.JUMONJI family;RNA.regulation of transcription.C2H2 zinc finger family"		"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"g5161.t1;g5161.t1;g5161.t1;g5161.t1;g5161.t1"		
+Cre05.g230803	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"	Mitochondrion	GO:0005524	"ATP binding"				
+Cre05.g239650			Mitochondrion				"g5527.t1;g5527.t1"		
+Cre05.g242600	GMM:27.3.9	"RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family"	Mitochondrion	"GO:0043565;GO:0008270;GO:0006355;GO:0003700"	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	CGL106	"g5298.t1;Cre05.g242600.t1.1;Cre05.g242600.t1.1;g5298.t1"	"CGL106;CGL106"	"Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre05.g233850							"g5096.t1;g5096.t1;g5096.t1;g5096.t1"		
+Cre05.g244700	GMM:26.7	"misc.oxidases - copper, flavone etc"		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH15	"g5240.t1;P4H-1;P4G15;PHX10;PHX10;g5240.t1;P4H-1;P4G15;g5240.t1;P4G15;P4H-1;PHX10;PHX10;g5240.t1;P4G15;P4H-1;PHX10;g5240.t1;P4H-1;P4G15"	"PFH15;PFH15;PFH15;PFH15;PFH15"	"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Studied in detail by Keskiaho et al. [PMID: 17220203] as v2 C_360012, who named this Cr-P4H-1; there are presumably 2 alternative transcripts for this gene;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Studied in detail by Keskiaho et al. [PMID: 17220203] as v2 C_360012, who named this Cr-P4H-1; there are presumably 2 alternative transcripts for this gene;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Studied in detail by Keskiaho et al. [PMID: 17220203] as v2 C_360012, who named this Cr-P4H-1; there are presumably 2 alternative transcripts for this gene;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Studied in detail by Keskiaho et al. [PMID: 17220203] as v2 C_360012, who named this Cr-P4H-1; there are presumably 2 alternative transcripts for this gene;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Studied in detail by Keskiaho et al. [PMID: 17220203] as v2 C_360012, who named this Cr-P4H-1; there are presumably 2 alternative transcripts for this gene"
+Cre05.g241646									
+Cre05.g234645			"Secretory pathway"	"GO:0055085;GO:0016021;GO:0015299;GO:0006812"	"transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport"		"Cre24.g769650.t1.1;g5365.t1"		
+Cre05.g244236							"Cre05.g244236.t1.1;g5250.t1"		
+Cre05.g246050	GMM:29.5.3	"protein.degradation.cysteine protease"				OTU3	"OTU3;g5214.t1;OTU3;g5214.t1;OTU3;g5214.t1"		"Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila.;Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila.;Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila."
+Cre05.g240100			Chloroplast			EXN9	"g5537.t1;EXN9"		
+Cre05.g238322	"GMM:29.1.13;GMM:29.1"	"protein.aa activation.tryptophan-tRNA ligase;protein.aa activation"	Chloroplast	"GO:0006436;GO:0006418;GO:0005737;GO:0005524;GO:0004830;GO:0004812;GO:0000166"	"tryptophanyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;tryptophan-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding"		"Cre56.g791100.t1.1;Cre56.g791100.t1.2;g5491.t1"	TSW2	
+Cre05.g240900			"Secretory pathway"				"g5555.t2;Cre05.g240900.t1.1"		
+Cre05.g233052			"Secretory pathway"						
+Cre05.g237930			"Secretory pathway"						
+Cre05.g234700	"GMM:4.3.14;GMM:4.2.14;GMM:4.1.14;GMM:11.1.30"	"glycolysis.unclear/dually targeted.pyruvate kinase (PK);glycolysis.plastid branch.pyruvate kinase (PK);glycolysis.cytosolic branch.pyruvate kinase (PK);lipid metabolism.FA synthesis and FA elongation.pyruvate kinase"		"GO:0030955;GO:0006096;GO:0004743;GO:0000287"	"potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding"	PYK3	"g5389.t1;g5389.t1;g5389.t1;g5389.t1;g5389.t1;g5389.t1;g5389.t1;g5389.t1;g5389.t1"	"PYK3;PYK3;PYK3;PYK3;PYK3;PYK3;PYK3;PYK3;PYK3"	"Multi-domain pyruvate kinase (EC 2.7.1.40), with four domains in a single large protein; possible single domain variants are indicated as PYK3b & PYK3c; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP;;Multi-domain pyruvate kinase (EC 2.7.1.40), with four domains in a single large protein; possible single domain variants are indicated as PYK3b & PYK3c; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP;;Multi-domain pyruvate kinase (EC 2.7.1.40), with four domains in a single large protein; possible single domain variants are indicated as PYK3b & PYK3c; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP;;Multi-domain pyruvate kinase (EC 2.7.1.40), with four domains in a single large protein; possible single domain variants are indicated as PYK3b & PYK3c; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP;;Multi-domain pyruvate kinase (EC 2.7.1.40), with four domains in a single large protein; possible single domain variants are indicated as PYK3b & PYK3c; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP;;Multi-domain pyruvate kinase (EC 2.7.1.40), with four domains in a single large protein; possible single domain variants are indicated as PYK3b & PYK3c; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP;;Multi-domain pyruvate kinase (EC 2.7.1.40), with four domains in a single large protein; possible single domain variants are indicated as PYK3b & PYK3c; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP;;Multi-domain pyruvate kinase (EC 2.7.1.40), with four domains in a single large protein; possible single domain variants are indicated as PYK3b & PYK3c; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP;;Multi-domain pyruvate kinase (EC 2.7.1.40), with four domains in a single large protein; possible single domain variants are indicated as PYK3b & PYK3c; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP;"
+Cre05.g231100	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		"g5143.t1;g5143.t1;g5143.t1;g5143.t1"		
+Cre05.g241641			Mitochondrion						
+Cre05.g246552	GMM:35.1.1	"not assigned.no ontology.ABC1 family protein"	Chloroplast				g5204.t1		
+Cre05.g239151	GMM:25.8	"C1-metabolism.tetrahydrofolate synthase"	Mitochondrion	GO:0006464	"cellular protein modification process"		"g5516.t1;Cre05.g239122.t1.2;g5516.t1;Cre05.g239122.t1.2;g5516.t1;Cre05.g239122.t1.2"		
+Cre05.g246200	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g5211.t1		
+Cre05.g248050							g5171.t1		
+Cre05.g242900			Mitochondrion				"g5288.t1;Cre05.g242900.t1.1"		
+Cre05.g241450	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	"GO:0006614;GO:0005525"	"SRP-dependent cotranslational protein targeting to membrane;GTP binding"	FTSY	"g5566.t1;Cre05.g241450.t1.1;FTSY;g5566.t1;Cre05.g241450.t1.1;FTSY;FTSY;Cre05.g241450.t1.1;g5566.t1"	"FTSY1;FTSY1;FTSY1"	"Conserved Hypothetical Protein. Similar to the Chloroplast SRP Receptor. Involved in protein import into the Thylakoid.;Conserved Hypothetical Protein. Similar to the Chloroplast SRP Receptor. Involved in protein import into the Thylakoid.;Conserved Hypothetical Protein. Similar to the Chloroplast SRP Receptor. Involved in protein import into the Thylakoid."
+Cre05.g242179			"Secretory pathway"	"GO:0008889;GO:0008081;GO:0006629"	"glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process"	GDP7			
+Cre05.g239083									
+Cre05.g241050							"g5558.t1;Cre05.g241050.t1.1;g5558.t1;Cre05.g241050.t1.1"		
+Cre05.g245450	"GMM:18.8;GMM:18"	"Co-factor and vitamine metabolism.ubiquinone;Co-factor and vitamine metabolism"	Mitochondrion	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	COQ5A	"g5224.t1;Cre05.g245450.t1.1;UMM4;COQ5A;UMM4;COQ5A;g5224.t1;Cre05.g245450.t1.1"	"COQ5A;COQ5A"	
+Cre05.g248150	"GMM:3.3;GMM:26.5;GMM:11.3.1"	"minor CHO metabolism.sugar alcohols;misc.acyl transferases;lipid metabolism.phospholipid synthesis.1-acylglycerol-3-phosphate O-acyltransferase"	"Secretory pathway"	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"	PGA2	"Cre05.g248150.t1.1;PGA2;g5169.t1"	PGA2	
+Cre05.g232751			Chloroplast				"g5120.t1;g5120.t1"		
+Cre05.g236216	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g5431.t1		
+Cre05.g243802			"Secretory pathway"				g5262.t1		
+Cre05.g241634	"GMM:28.1.3.2.1;GMM:28.1.3;GMM:28.1.1"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone;DNA.synthesis/chromatin structure.retrotransposon/transposase"		GO:0003677	"DNA binding"	HAV1			
+Cre05.g238364	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF					"Cre56.g790950.t1.2;g5495.t1;Cre56.g790950.t1.1"		
+Cre05.g241150			Mitochondrion	GO:0007076	"mitotic chromosome condensation"		g5560.t1		
+Cre05.g242301			Mitochondrion						
+Cre05.g241300	GMM:27.1	RNA.processing				SMPF	"SMPF;g5563.t1;Cre05.g241300.t1.1"		"putative small nuclear riboprotein F snRNP-F, SNRPF, Sm protein F, SmF"
+Cre05.g235850			Mitochondrion				"g5422.t2;g5422.t2"		
+Cre05.g242750	GMM:29.5.1	protein.degradation.subtilases	"Secretory pathway"	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"		"g5295.t1;g5295.t1"		
+Cre05.g238250	GMM:27.3.35	"RNA.regulation of transcription.bZIP transcription factor family"		"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"BLZ2;Cre05.g238250.t1.1;g5484.t1;g5484.t1;Cre05.g238250.t1.1;BLZ2;Cre05.g238250.t1.1;BLZ2;g5484.t1"	"BZIP1;BZIP1;BZIP1"	"Basic-leucine zipper (bZIP) transcription factor;Basic-leucine zipper (bZIP) transcription factor;Basic-leucine zipper (bZIP) transcription factor"
+Cre05.g243850							g5259.t1		
+Cre05.g234663				GO:0070403	"NAD+ binding"		"Cre24.g768800.t1.1;g5382.t1;SRTC;SRTC;g5382.t1;Cre24.g768800.t1.1"	"SRTC1;SRTC1"	"Similar to classes III sirtuins;Similar to classes III sirtuins"
+Cre05.g245701			Chloroplast			FAP104	"g5221.t1;Cre05.g245600.t2.1;Cre05.g245600.t2.1;g5221.t1"	"FAP104;FAP104"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre05.g243450	GMM:24	"biodegradation of xenobiotics"	"Secretory pathway"			GOX1	"GOX1;g5273.t1;g5273.t1;GOX1;GOX1;g5273.t1"	"GOX1;GOX1;GOX1"	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi (both use the same Tyr radical / metal mechanism); the higher plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and glyoxal oxidase domain (incl SCOP d1k3ia1, E-set domains of sugar-utilizing enzymes); contains N-terminal hy;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi (both use the same Tyr radical / metal mechanism); the higher plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and glyoxal oxidase domain (incl SCOP d1k3ia1, E-set domains of sugar-utilizing enzymes); contains N-terminal hy;The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi (both use the same Tyr radical / metal mechanism); the higher plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and glyoxal oxidase domain (incl SCOP d1k3ia1, E-set domains of sugar-utilizing enzymes); contains N-terminal hy"
+Cre05.g243803									
+Cre05.g240533			Mitochondrion	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"Cre05.g240533.t1.1;g5547.t1"		
+Cre05.g247200			Mitochondrion				"Cre05.g247200.t1.1;g5188.t1"		
+Cre05.g246800	"GMM:19.40;GMM:19.4"	"tetrapyrrole synthesis.regulation;tetrapyrrole synthesis.ALA dehydratase"	Chloroplast			GUN4	"Cre05.g246800.t1.1;g5196.t1"	GUN4	"Tetrapyrrole-binding protein, chloroplast precursor. In Arabidopsis, GUN4 (Genomes uncoupled 4) is required for the functioning of the plastid mediated repression of nuclear transcription that is involved in controlling the levels of magnesium- protoporphyrin IX. GUN4 binds the product and substrate of Mg-chelatase, an enzyme that produces Mg-Proto, and activates Mg-chelatase. GUN4 is thought to participates in plastid-to-nucleus signaling by regulating magnesium-protoporphyrin IX synthesis or trafficking."
+Cre05.g241629			Mitochondrion						
+Cre05.g230700			"Secretory pathway"				"Cre05.g230700.t1.1;g5154.t1"		
+Cre05.g240350							"g5543.t1;g5543.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre05.g237283			"Secretory pathway;Chloroplast"				g5459.t1		
+Cre05.g234300	GMM:30.11.1	"signalling.light.COP9 signalosome"		GO:0005515	"protein binding"		"Cre05.g234300.t1.1;g5087.t1;g5087.t1;Cre05.g234300.t1.1;Cre05.g234300.t1.1;g5087.t1"		
+Cre05.g242501									
+Cre05.g233502									
+Cre05.g237650			Mitochondrion				"g5468.t1;g5468.t1;g5468.t1"		
+Cre05.g232600							"g5122.t1;g5122.t1;g5122.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre05.g247050	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0035434;GO:0016021;GO:0005375"	"copper ion transmembrane transport;integral component of membrane;copper ion transmembrane transporter activity"	COPT1	"Cre05.g247050.t1.1;g5191.t1;CTR4"	COPT1	"CTR type copper ion transporter; related to COPT1 of Arabidopsis thaliana and Human high-affinity copper uptake protein [hCTR1; PMID: 165147]; fits the pattern for TM2 and TM3: MxxxM-X13-GxxxG; Expression not regulated by Cu"
+Cre05.g244052			Chloroplast						
+Cre05.g241850	GMM:8.2.11	"TCA / organic transformation.other organic acid transformations.atp-citrate lyase"				ACLA1	"Cre05.g241850.t1.1;ACLA1;g5318.t1;ACL1;ACLA1;Cre05.g241850.t1.1;g5318.t1;ACL1;Cre05.g241850.t1.1;ACLA1;ACL1;g5318.t1"	"ACLA1;ACLA1;ACLA1"	"ATP Citrate Lyase (ACL), subunit A (EC 2.3.3.8); ATP-citrate synthase, subunit A; location uncertain, but likely to be cytosol; Similar to Arabidopsis ATP citrate lyase subunit A (GenBank NP_187317), which is similar to the amino half of the human ACL; ACL is responsible for generating acetyl-CoA in the cytosol of Arabidopsis; null-allele mutant was isolated;ATP Citrate Lyase (ACL), subunit A (EC 2.3.3.8); ATP-citrate synthase, subunit A; location uncertain, but likely to be cytosol; Similar to Arabidopsis ATP citrate lyase subunit A (GenBank NP_187317), which is similar to the amino half of the human ACL; ACL is responsible for generating acetyl-CoA in the cytosol of Arabidopsis; null-allele mutant was isolated;ATP Citrate Lyase (ACL), subunit A (EC 2.3.3.8); ATP-citrate synthase, subunit A; location uncertain, but likely to be cytosol; Similar to Arabidopsis ATP citrate lyase subunit A (GenBank NP_187317), which is similar to the amino half of the human ACL; ACL is responsible for generating acetyl-CoA in the cytosol of Arabidopsis; null-allele mutant was isolated"
+Cre05.g246377			Mitochondrion	GO:0019239	"deaminase activity"		"g5208.t1;Cre05.g246350.t1.3;ADA2"		"Adenosine/AMP deaminase, metal-dependent hydrolase; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre05.g234750			Mitochondrion			CGLD25	"g5390.t1;Cre05.g234750.t1.1"	CGLD25	
+Cre05.g248600	GMM:34.12	transport.metal	Chloroplast	"GO:0046872;GO:0030001"	"metal ion binding;metal ion transport"	PCC1	"g5160.t1;Cre05.g248600.t1.1"	PCC1	"Similarity to other Cu chaperones; Has a common copper MxCxxC motif; Target of CRR1"
+Cre05.g246551			Chloroplast				g5203.t1		
+Cre05.g236750			Mitochondrion				g5446.t1		
+Cre05.g234500	"GMM:33.99;GMM:29.5.11"	"development.unspecified;protein.degradation.ubiquitin"	Chloroplast	GO:0005515	"protein binding"		"g5351.t1;g5351.t1"		
+Cre05.g238935	"GMM:29.2.3;GMM:28.1;GMM:27.1.2"	"protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"	"Secretory pathway"				"g5509.t1;Cre05.g238935.t1.1;g5509.t1;Cre05.g238935.t1.1"		
+Cre05.g243550							"Cre05.g243550.t1.1;g5270.t1"		
+Cre05.g236400			Mitochondrion	GO:0008080	"N-acetyltransferase activity"		"g5436.t1;NAT13;NAT13;g5436.t1;g5436.t1;NAT13"		"Related to GCN5. Contains WD4 repeats;Related to GCN5. Contains WD4 repeats;Related to GCN5. Contains WD4 repeats"
+Cre05.g234658							"Cre24.g769050.t1.1;g5377.t1;Cre24.g769050.t1.2;Cre24.g769050.t1.1;g5377.t1;Cre24.g769050.t1.2"		
+Cre05.g233050	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP162	"Cre05.g233050.t1.1;g5112.t1;g5112.t1;Cre05.g233050.t1.1;Cre05.g233050.t1.1;g5112.t1;g5112.t1;Cre05.g233050.t1.1"	"FAP162;FAP162;FAP162;FAP162"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre05.g233550	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"CBC1;g5102.t1;g5102.t1;CBC1;CBC1;g5102.t1;g5102.t1;CBC1"		
+Cre05.g238687			"Secretory pathway"			PHC35		"PHC35;PHC35"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre05.g247150			Chloroplast				"g5189.t1;Cre05.g247150.t1.1"		
+Cre05.g237200	GMM:26.17	misc.dynamin	"Secretory pathway"	GO:0005525	"GTP binding"	DRP6	"g5457.t2;DRP6;DRP4C;g5457.t2;DRP6;DRP4C"		"Similar to DRP4 (MX-like) class of Dynamin-like GTPases;Similar to DRP4 (MX-like) class of Dynamin-like GTPases"
+Cre05.g243700							"g5265.t1;g5265.t1;g5265.t1"		
+Cre05.g244450			Mitochondrion				g5245.t1		
+Cre05.g238950	GMM:27.1	RNA.processing		"GO:0008173;GO:0006396;GO:0003723"	"RNA methyltransferase activity;RNA processing;RNA binding"	CGLD33	g5510.t1	CGLD33	
+Cre05.g243650							"g5266.t1;Cre05.g243650.t1.1"		
+Cre05.g243351							"Cre05.g243351.t1.1;g5282.t1"		
+Cre05.g237100				"GO:0034453;GO:0005815"	"microtubule anchoring;microtubule organizing center"	MOT52	"g5455.t1;MOT52;Cre05.g237100.t1.1"	MOT52	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre05.g237050			Chloroplast			CGLD27	g5454.t1	CGLD27	
+Cre05.g237400	GMM:13.1.3.5.4	"amino acid metabolism.synthesis.aspartate family.lysine.diaminopimelate epimerase"	Chloroplast	"GO:0009089;GO:0008837"	"lysine biosynthetic process via diaminopimelate;diaminopimelate epimerase activity"	DAE1	"Cre05.g237400.t1.1;DAE1;g5461.t1;DAE1;Cre05.g237400.t1.1;g5461.t1"	"DAE1;DAE1"	"EC:5.1.1.7; lysine biosynthesis pathway (dapF); plastid location expected based on homology;EC:5.1.1.7; lysine biosynthesis pathway (dapF); plastid location expected based on homology"
+Cre05.g247851	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP2	"Cre05.g247800.t1.2;g5177.t1;CEP2"		"Cysteine endopeptidases (EC 3.4.22), C1A family (papain-type); similar to higher plant senescence-associated proteases; contains N-terminal cathepsin propeptide inhibitor domain (I29) and C-terminal granulin (Cys-rich) domain"
+Cre05.g245901									
+Cre05.g240000	"GMM:26.13;GMM:11.3"	"misc.acid and other phosphatases;lipid metabolism.phospholipid synthesis"	"Secretory pathway"				"Cre05.g240000.t1.1;g5535.t1;PAP2"	DPP2	
+Cre05.g244850							"g5237.t1;NUOB12;MOG1;Cre05.g244850.t1.1;g5237.t1;Cre05.g244850.t1.1;MOG1;NUOB12"		"involved in nuclear trafficking;involved in nuclear trafficking"
+Cre05.g242857							g5291.t1		
+Cre05.g238600	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC36		PHC36	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre05.g240150	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC16	"Cre05.g240150.t1.1;UBC16;g5538.t1"	UBC16	"E2 Ubiquitin conjugating enzyme, subclass IX"
+Cre05.g232800				"GO:0055114;GO:0032542"	"oxidation-reduction process;sulfiredoxin activity"	SRX1	"SRX1;g5118.t1"	SRX1	"see PMID: 15917647 for relationship to ParB"
+Cre05.g237950							"g5477.t1;g5477.t1"		
+Cre05.g246400				"GO:0016407;GO:0008152"	"acetyltransferase activity;metabolic process"		"g5206.t1;Cre05.g246400.t1.1"		
+Cre05.g246650			Chloroplast				"Cre05.g246650.t1.1;g5200.t1"		
+Cre05.g243000	"GMM:27.3.5;GMM:17.4.2"	"RNA.regulation of transcription.ARR;hormone metabolism.cytokinin.signal transduction"		GO:0000160	"phosphorelay signal transduction system"	hik	g5286.t1		
+Cre05.g232200	"GMM:9.2.2;GMM:9.2.1.4;GMM:9.2.1.2"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.internal matrix;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.external"	Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	NDA3	"g5135.t1;LCI18;Cre05.g232200.t1.1;NDA3;g5135.t1;LCI18;Cre05.g232200.t1.1;NDA3"	"NDA3;NDA3"	"NADH:quinone reductase (non-electrogenic);NADH:quinone reductase (non-electrogenic)"
+Cre05.g238280			Mitochondrion			FAP205	"Cre56.g791300.t1.2;Cre56.g791300.t1.1;g5487.t1"	FAP205	"null-allele mutant was isolated (PMID 29743196)"
+Cre05.g241644			Chloroplast						
+Cre05.g234642							"Cre24.g769750.t1.2;g5362.t1;Cre24.g769750.t1.1;Cre24.g769750.t1.2;g5362.t1;Cre24.g769750.t1.1;Cre24.g769750.t1.2;g5362.t1;Cre24.g769750.t1.1;g5362.t1;Cre24.g769750.t1.2;Cre24.g769750.t1.1;g5362.t1;Cre24.g769750.t1.2;Cre24.g769750.t1.1"		
+Cre05.g234643									
+Cre05.g244150							g5252.t1		
+Cre05.g242550	GMM:31.1	cell.organisation				RSP6	"Cre05.g242550.t1.1;PF26;g5300.t1"	RSP6	"Flagellar radial spoke protein 6; gene originally termed PF26 [PMID: 16507594; PMID: 7204490; PMID: 1508197; GI:401051]"
+Cre05.g247550	GMM:26.9	"misc.glutathione S transferases"	Mitochondrion	GO:0005515	"protein binding"		"Cre05.g247550.t1.1;g5181.t1;GST7"		
+Cre05.g243455				GO:0005515	"protein binding"				
+Cre05.g241651			Chloroplast						
+Cre05.g230900	"GMM:26.13;GMM:11.3"	"misc.acid and other phosphatases;lipid metabolism.phospholipid synthesis"	"Secretory pathway"				"PAP1;g5149.t1"	DPP1	
+Cre05.g236878			Mitochondrion	GO:0008080	"N-acetyltransferase activity"		"Cre05.g236900.t1.3;NAT15;g5449.t1;NAT15;g5449.t1;Cre05.g236900.t1.3;NAT15;g5449.t1;Cre05.g236900.t1.3"		"Related to GCN5;Related to GCN5;Related to GCN5"
+Cre05.g241900							"g5317.t1;g5317.t1;g5317.t1;g5317.t1"		
+Cre05.g239400							"g5522.t1;g5522.t1"		
+Cre05.g239652									
+Cre05.g233902									
+Cre05.g240700			"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	FAP378	g5551.t1	FAP378	
+Cre05.g240225							"g5540.t1;g5540.t1;g5540.t1;g5540.t1;g5540.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre05.g241638			Mitochondrion	"GO:0008408;GO:0006139;GO:0003676"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding"		"Cre24.g770350.t1.1;Cre24.g770350.t1.2;g5333.t1;Cre24.g770350.t1.2;Cre24.g770350.t1.1;g5333.t1;g5333.t1;Cre24.g770350.t1.2;Cre24.g770350.t1.1"		
+Cre05.g247350							"g5185.t1;Cre05.g247350.t1.1"		
+Cre05.g243050	GMM:21.1	redox.thioredoxin	Chloroplast	"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRXF2	"TRX3;g5285.t1;TRXf2;Cre05.g243050.t1.1;TRXf2;Cre05.g243050.t1.1;g5285.t1;TRX3"	"TRXF2;TRXF2"	"[Lemaire et al (23) Plant Physiol. Biochem. 41, 513-521]. Involved in the activation by light of carbon metabolism enzymes, including calvin cycle enzymes. Probably regulated by glutathionylation;[Lemaire et al (23) Plant Physiol. Biochem. 41, 513-521]. Involved in the activation by light of carbon metabolism enzymes, including calvin cycle enzymes. Probably regulated by glutathionylation"
+Cre05.g235750	GMM:28.2	DNA.repair		"GO:0030983;GO:0006298;GO:0005524"	"mismatched DNA binding;mismatch repair;ATP binding"	MSH6	"g5420.t1;MSH6;Cre05.g235750.t1.1;g5420.t1;MSH6;Cre05.g235750.t1.1;MSH6;Cre05.g235750.t1.1;g5420.t1"	"MSH6;MSH6;MSH6"	"Orthologous to MSH6 (AT4G02070) in Arabidopsis thaliana; Likely functions in mismatch repair (MMR); In other systems, MSH6 interacts with MSH2 to repair GT mismatches and short insertion/deletion mismatches;Orthologous to MSH6 (AT4G02070) in Arabidopsis thaliana; Likely functions in mismatch repair (MMR); In other systems, MSH6 interacts with MSH2 to repair GT mismatches and short insertion/deletion mismatches;Orthologous to MSH6 (AT4G02070) in Arabidopsis thaliana; Likely functions in mismatch repair (MMR); In other systems, MSH6 interacts with MSH2 to repair GT mismatches and short insertion/deletion mismatches"
+Cre05.g239250	GMM:27.3.57	"RNA.regulation of transcription.JUMONJI family"		GO:0005634	nucleus		"g5519.t1;Cre05.g239250.t1.1"		
+Cre05.g248500	GMM:21.1	redox.thioredoxin	Mitochondrion	"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRXO	"g5162.t1;Cre05.g248500.t1.1;TRXO;TRX15"	TRXO1	"Mitochondrial thioredoxin (by homology), putative N-terminal transit peptide for targeting to mitochondria (Lemaire et al (23) Plant Physiol. Biochem. 41, 513-521)"
+Cre05.g234646									
+Cre05.g236600							"g5442.t1;g5442.t1;g5442.t1"		
+Cre05.g237850			"Secretory pathway"				"Cre05.g237850.t1.1;g5472.t1"		
+Cre05.g233950			Chloroplast			CGL129	"g5094.t1;Cre05.g233950.t1.1;Cre05.g233950.t1.1;g5094.t1"	"CGL129;CGL129"	
+Cre05.g243454	GMM:34.15	transport.potassium		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"				
+Cre05.g241654									
+Cre05.g242858			Mitochondrion				"g5292.t1;Cre61.g792450.t1.1;Cre61.g792450.t1.1;g5292.t1"		
+Cre05.g232550	GMM:4.3.12	"glycolysis.unclear/dually targeted.phosphoglycerate mutase"				PGM4	"PGM4;GPM4;Cre05.g232550.t1.1;g5123.t1;PGM4;GPM4;g5123.t1;Cre05.g232550.t1.1;g5123.t1;Cre05.g232550.t1.1;GPM4;PGM4;PGM4;Cre05.g232550.t1.1;g5123.t1;GPM4;PGM4;g5123.t1;Cre05.g232550.t1.1;GPM4"	"CA1P1;CA1P1;CA1P1;CA1P1;CA1P1"	"Phosphoglycerate mutase-like protein lacking PGM activity, but having 2-carboxy-D-arabinitol 1-phosphate (CA1P) phosphatase activity;;Phosphoglycerate mutase-like protein lacking PGM activity, but having 2-carboxy-D-arabinitol 1-phosphate (CA1P) phosphatase activity;;Phosphoglycerate mutase-like protein lacking PGM activity, but having 2-carboxy-D-arabinitol 1-phosphate (CA1P) phosphatase activity;;Phosphoglycerate mutase-like protein lacking PGM activity, but having 2-carboxy-D-arabinitol 1-phosphate (CA1P) phosphatase activity;;Phosphoglycerate mutase-like protein lacking PGM activity, but having 2-carboxy-D-arabinitol 1-phosphate (CA1P) phosphatase activity;"
+Cre05.g238724						CSB27			
+Cre05.g240500				GO:0008270	"zinc ion binding"		g5546.t1		
+Cre05.g234661	GMM:9.5	"mitochondrial electron transport / ATP synthesis.cytochrome c reductase"	"Secretory pathway"	GO:0005524	"ATP binding"	BCS1	"g5380.t1;Cre24.g768900.t1.1;BCS1;Cre24.g768900.t1.2"	BCS1	"P-loop containing nucleoside triphosphate hydrolases superfamily protein"
+Cre05.g244701			Mitochondrion				"g5241.t1;g5241.t1"		
+Cre05.g242200	"GMM:33.99;GMM:31.1;GMM:30.1;GMM:29.4;GMM:29.2.2.3.4;GMM:27.3.51;GMM:27.1"	"development.unspecified;cell.organisation;signalling.in sugar and nutrient physiology;protein.postranslational modification;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins;RNA.regulation of transcription.general transcription, TBP-binding protein;RNA.processing"		GO:0005515	"protein binding"		g5309.t1		
+Cre05.g239900	GMM:14.1	S-assimilation.APS	Chloroplast	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS15	"ARS15;g5532.t1;ARS15;g5532.t1"	"ARS15;ARS15"	
+Cre05.g244200			Chloroplast			COTH2	"g5251.t1;TMA1;COTH2"		"Similar to bacterial CotH spore protein, found mostly in CFB group bacteria and in a few Chlorophytes; N-terminal domain shows no homolgy"
+Cre05.g237750							"g5470.t1;Cre05.g237750.t1.1"		
+Cre05.g235800						FBB19	"Cre05.g235800.t1.1;g5421.t1;FBB19;FBB19;g5421.t1;Cre05.g235800.t1.1"	"FBB19;FBB19"	"Conserved protein found in ciliated organisms, with unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation;Conserved protein found in ciliated organisms, with unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation"
+Cre05.g246553									
+Cre05.g236250	"GMM:33.99;GMM:3.5;GMM:29.2.2.3.4;GMM:27.3.55;GMM:20.2.2"	"development.unspecified;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins;RNA.regulation of transcription.HDA;stress.abiotic.cold"	Mitochondrion	GO:0005515	"protein binding"		"g5432.t1;g5432.t1;g5432.t1;g5432.t1;g5432.t1;g5432.t1"		
+Cre05.g239750	GMM:14.1	S-assimilation.APS		GO:0003824	"catalytic activity"	ARS13	"Cre05.g239750.t1.1;g5529.t1;ARS13"	ARS13	
+Cre05.g239067	GMM:25.8	"C1-metabolism.tetrahydrofolate synthase"	Mitochondrion	"GO:0009396;GO:0009058;GO:0005524;GO:0004326"	"folic acid-containing compound biosynthetic process;biosynthetic process;ATP binding;tetrahydrofolylpolyglutamate synthase activity"				
+Cre05.g246750			Chloroplast				g5197.t1		
+Cre05.g235450	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g5414.t1;Cre05.g235450.t1.1;Cre05.g235450.t1.1;g5414.t1"		
+Cre05.g245900	"GMM:26.26.1;GMM:18.4.1;GMM:16.5.1.1.1.1;GMM:13.1.4.1.4"	"misc.aminotransferases.aminotransferase class IV family protein;Co-factor and vitamine metabolism.pantothenate.branched-chain amino acid aminotransferase;secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.branched-chain amino acid aminotransferase  (BCAT/MAAT);amino acid metabolism.synthesis.branched chain group.common.branched-chain-amino-acid aminotransferase"	Chloroplast	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	BCA2	"Cre05.g245900.t1.1;g5217.t1;BCA2;BCA2;Cre05.g245900.t1.1;g5217.t1;Cre05.g245900.t1.1;g5217.t1;BCA2;BCA2;Cre05.g245900.t1.1;g5217.t1"		"class IV aminotransferase; performs the last step of biosynthesis of Leu, Ile and/or Vaal, transaminating the precursor using Glu as an amine donnor; there are 3 paralogs; similar to rice BCAT (GenBank NP_912527); predicted mitochondrial by Target-P; localization by homology is ambiguous;class IV aminotransferase; performs the last step of biosynthesis of Leu, Ile and/or Vaal, transaminating the precursor using Glu as an amine donnor; there are 3 paralogs; similar to rice BCAT (GenBank NP_912527); predicted mitochondrial by Target-P; localization by homology is ambiguous;class IV aminotransferase; performs the last step of biosynthesis of Leu, Ile and/or Vaal, transaminating the precursor using Glu as an amine donnor; there are 3 paralogs; similar to rice BCAT (GenBank NP_912527); predicted mitochondrial by Target-P; localization by homology is ambiguous;class IV aminotransferase; performs the last step of biosynthesis of Leu, Ile and/or Vaal, transaminating the precursor using Glu as an amine donnor; there are 3 paralogs; similar to rice BCAT (GenBank NP_912527); predicted mitochondrial by Target-P; localization by homology is ambiguous"
+Cre05.g245351							"g5227.t1;Cre05.g245259.t1.2;g5227.t1;Cre05.g245259.t1.2;g5227.t1;Cre05.g245259.t1.2;g5227.t1;Cre05.g245259.t1.2;Cre05.g245259.t1.2;g5227.t1"		
+Cre05.g234664	GMM:3.5	"minor CHO metabolism.others"		GO:0052855	"ADP-dependent NAD(P)H-hydrate dehydratase activity"		"Cre24.g768750.t1.1;g5383.t1;Cre24.g768750.t1.2;Cre24.g768750.t1.2;g5383.t1;Cre24.g768750.t1.1;Cre24.g768750.t1.2;g5383.t1;Cre24.g768750.t1.1"		
+Cre05.g235102	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion				g5405.t1		
+Cre05.g242850									
+Cre05.g236050							"g5427.t1;g5427.t1;g5427.t1;g5427.t1;g5427.t1;g5427.t1;g5427.t1;g5427.t1;g5427.t1;g5427.t1;g5427.t1;g5427.t1"		
+Cre05.g243472			Mitochondrion				"g5272.t1;Cre05.g243472.t1.1;Cre05.g243472.t1.1;g5272.t1;Cre05.g243472.t1.1;g5272.t1"		
+Cre05.g242180			"Secretory pathway"						
+Cre05.g245101			Mitochondrion						
+Cre05.g241631							"Cre24.g770700.t1.1;g5326.t1;Cre24.g770700.t1.2;g5326.t1;Cre24.g770700.t1.2;Cre24.g770700.t1.1;Cre24.g770700.t1.2;g5326.t1;Cre24.g770700.t1.1"		
+Cre05.g243900			"Secretory pathway"				"g5258.t1;g5258.t1"		
+Cre05.g233350							"Cre05.g233350.t1.1;g5106.t1"		
+Cre05.g245451	GMM:29.5	protein.degradation	"Secretory pathway"	"GO:0016021;GO:0006508;GO:0004252"	"integral component of membrane;proteolysis;serine-type endopeptidase activity"	RBL10	"Cre05.g245400.t1.3;g5225.t1;RBL10"		"similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579); possibly organelle-targeted"
+Cre05.g238353			Mitochondrion						
+Cre05.g232000			Mitochondrion				g5139.t2		
+Cre05.g247000	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"		GO:0005515	"protein binding"		"g5192.t1;Cre05.g247000.t1.1"		
+Cre05.g248100	GMM:31.1	cell.organisation				ANK1	"ANK1;g5170.t1;Cre05.g248100.t1.1"		"protein of unknown function with ankyrin repeats"
+Cre05.g235700			"Secretory pathway"	GO:0006629	"lipid metabolic process"		"g5419.t1;Cre05.g235700.t1.1"		
+Cre05.g246000							g5215.t1		
+Cre05.g243801			Chloroplast			FAP387	"g5261.t3;g5261.t3"	"FAP387;FAP387"	
+Cre05.g231050				"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		g5144.t1		
+Cre05.g231002									
+Cre05.g232350									
+Cre05.g234250	GMM:28.2	DNA.repair	Chloroplast	GO:0006284	"base-excision repair"		"g5088.t1;MBD4;MBD4;g5088.t1"		"5-methylcytosine G/T mismatch-specific DNA glycosylase; homolog of methyl-CpG binding domain protein MBD4. Deamination of 5-methylated cytosine leads to G/T mismatches, which is mutagenic if not corrected and alters the methylatio;5-methylcytosine G/T mismatch-specific DNA glycosylase; homolog of methyl-CpG binding domain protein MBD4. Deamination of 5-methylated cytosine leads to G/T mismatches, which is mutagenic if not corrected and alters the methylatio"
+Cre05.g234648							"Cre24.g769500.t1.1;g5368.t1"		
+Cre05.g237870			"Secretory pathway"						
+Cre05.g236501	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"							
+Cre05.g233551	"GMM:33.99;GMM:27.3.28"	"development.unspecified;RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"	Mitochondrion	"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"g5103.t1;Cre05.g233500.t1.2;Cre05.g233500.t1.2;g5103.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre05.g236926							"g5451.t1;Cre05.g236926.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre05.g235650			"Secretory pathway"				"g5418.t1;g5418.t1"		
+Cre05.g246850			"Secretory pathway"				"g5195.t1;Cre05.g246850.t1.1"		
+Cre05.g241751			Mitochondrion				"Cre05.g241700.t1.3;g5321.t1;Cre05.g241700.t1.3;g5321.t1"		
+Cre05.g242050	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Chloroplast				"Cre05.g242050.t1.1;g5314.t1"		
+Cre05.g234660	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0008270	"zinc ion binding"		"Cre24.g768950.t1.1;Cre24.g768950.t1.2;g5379.t1"		
+Cre05.g237150							"g5456.t1;Cre05.g237150.t1.1;g5456.t1;Cre05.g237150.t1.1"		
+Cre05.g242700	GMM:29.5.1	protein.degradation.subtilases	Mitochondrion	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SUB9	"g5296.t1;SUB9"		
+Cre05.g232454			Mitochondrion						
+Cre05.g240850	GMM:18.2	"Co-factor and vitamine metabolism.thiamine"	Chloroplast	"GO:0051536;GO:0009228"	"iron-sulfur cluster binding;thiamine biosynthetic process"	THIC	"g5554.t1;THI8;Cre05.g240850.t1.1;THIC;THIC;Cre05.g240850.t1.1;THI8;g5554.t1"	"THIC1;THIC1"	"involved in the regulation of thiamine biosynthesis. Precise catalytic function of this ThiC homolog is not known, though it participates in the formation of 4-amino-5-hydroxymethyl-2-methylpyrimidine;involved in the regulation of thiamine biosynthesis. Precise catalytic function of this ThiC homolog is not known, though it participates in the formation of 4-amino-5-hydroxymethyl-2-methylpyrimidine"
+Cre05.g238000	GMM:28.2	DNA.repair					"Cre05.g238000.t1.1;g5478.t1"		
+Cre05.g237500			"Secretory pathway"				"g5464.t1;Cre05.g237500.t1.1"		
+Cre05.g234653							"Cre24.g769300.t1.2;Cre24.g769300.t1.1;g5372.t1"		
+Cre05.g248200	GMM:11.9.2.1	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase"	Chloroplast	GO:0006629	"lipid metabolic process"		"g5168.t1;g5168.t1;g5168.t1"		
+Cre05.g238200			Chloroplast				"g5483.t1;Cre05.g238200.t1.1"		
+Cre05.g232305									
+Cre05.g248250			Chloroplast	"GO:0055114;GO:0016491;GO:0009073;GO:0003856"	"oxidation-reduction process;oxidoreductase activity;aromatic amino acid family biosynthetic process;3-dehydroquinate synthase activity"		"g5167.t1;g5167.t1;g5167.t1"		
+Cre05.g241250							"g5562.t1;g5562.t1"		
+Cre05.g246600							"g5201.t1;Cre05.g246600.t1.1"		
+Cre05.g240400	GMM:26.6	"misc.O-methyl transferases"		GO:0008171	"O-methyltransferase activity"	SOM2	"Cre05.g240400.t1.1;SOM2;g5544.t1"		"Contains conserved aldo/keto reductase site and phosphopantetheine attachment site"
+Cre05.g233100	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0005515;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;protein binding;microtubule motor activity"	KIN14B-1	"g5111.t2;KIN14B-1;KIN14-6;KIN14-6;KIN14B-1;g5111.t2;g5111.t2;KIN14B-1;KIN14-6"	"KIN14B;KIN14B;KIN14B"	"kinesin-14 family, kinesin-14B subfamily;kinesin-14 family, kinesin-14B subfamily;kinesin-14 family, kinesin-14B subfamily"
+Cre05.g241647									
+Cre05.g244400							g5246.t1		
+Cre05.g241652									
+Cre05.g230650							g5155.t1		
+Cre05.g234641			Mitochondrion				"Cre24.g769800.t1.1;g5361.t1"		
+Cre05.g235600							g5417.t1		
+Cre05.g246300							"Cre05.g246300.t1.1;g5209.t1"		
+Cre05.g241950	"GMM:34.9;GMM:34.18"	"transport.metabolite transporters at the mitochondrial membrane;transport.unspecified anions"		"GO:0055085;GO:0005741"	"transmembrane transport;mitochondrial outer membrane"	VDAC2	"ASC2;g5316.t1;Cre05.g241950.t1.1"	VDAC2	"Outer mitochondrial membrane protein porin."
+Cre05.g234350							"g5086.t1;g5086.t1;g5086.t1;g5086.t1"		
+Cre05.g238900	GMM:29.2.2.3.5	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL25	"HEL25;g5508.t1"		
+Cre05.g232455									
+Cre05.g241643									
+Cre05.g239450			"Secretory pathway"				g5523.t1		
+Cre05.g241639			Chloroplast				"g5334.t1;Cre24.g770300.t1.1"		
+Cre05.g245700	"GMM:31.1;GMM:29.4"	"cell.organisation;protein.postranslational modification"	Mitochondrion			ANK25	"ANK25;g5220.t1"		"Protein of unknown function with ankyrin repeats"
+Cre05.g239050							"Cre05.g239050.t1.1;g5512.t1;SMM15"		"Shows iron-type alcohol dehydrogenase conserved site"
+Cre05.g231000							"g5145.t1;CSA5;Cre05.g231000.t1.1;Cre05.g231000.t1.1;g5145.t1;CSA5;CSA5;g5145.t1;Cre05.g231000.t1.1"		"four close paralogs in C. reinhardtii, more distant homologs in Tetrabaena and Gonium;four close paralogs in C. reinhardtii, more distant homologs in Tetrabaena and Gonium;four close paralogs in C. reinhardtii, more distant homologs in Tetrabaena and Gonium"
+Cre05.g232850				"GO:0016531;GO:0006825;GO:0005758;GO:0005507"	"copper chaperone activity;copper ion transport;mitochondrial intermembrane space;copper ion binding"	COX17	"g5117.t1;Cre05.g232850.t1.1;COX17"	COX17	"putative cytochrome c oxidase assembly protein/Cu2+ chaperone COX17; gi 9022432; gb AF280543"
+Cre05.g247100			Chloroplast			COTH1	"COPT1;g5190.t1;COTH1"		"Similar to bacterial CotH spore protein, found mostly in CFB group bacteria and in a few Chlorophytes; N-terminal domain shows no homolgy"
+Cre05.g235355			Chloroplast						
+Cre05.g239200						FAP275	"g5518.t1;Cre05.g239200.t1.1"	FAP275	"Found in the flagellar proteome"
+Cre05.g239000							"g5511.t1;g5511.t1"		
+Cre05.g230804						SNF2		SNF2	
+Cre05.g243950			"Secretory pathway"				"Cre05.g243950.t1.1;g5257.t1"		
+Cre05.g234662							"Cre24.g768850.t1.2;Cre24.g768850.t1.1;g5381.t1"		
+Cre05.g233600	"GMM:31.3;GMM:31.2;GMM:29.4"	"cell.cycle;cell.division;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g5101.t1;DIV55"		"Kinase homology. ts-lethal mutations block in S/M (PMID 25336509)"
+Cre05.g234667	GMM:31.4	"cell.vesicle transport"		"GO:0030131;GO:0030117;GO:0016192;GO:0006886"	"clathrin adaptor complex;membrane coat;vesicle-mediated transport;intracellular protein transport"				
+Cre05.g234400	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g5085.t1;g5085.t1;g5085.t1;g5085.t1;g5085.t1;g5085.t1"		
+Cre05.g238650	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC5	"PHC5;g5502.t1;PHC5;g5502.t1;g5502.t1;PHC5"	"PHC5;PHC5;PHC5"	"Extracellular matrix protein (cell wall protein); belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain; Genbank entry DQ196111;;Extracellular matrix protein (cell wall protein); belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain; Genbank entry DQ196111;Extracellular matrix protein (cell wall protein); belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain; Genbank entry DQ196111;"
+Cre05.g241100	GMM:34.99	transport.misc	Chloroplast				"g5559.t1;Cre05.g241100.t1.1;g5559.t1;Cre05.g241100.t1.1;g5559.t1;Cre05.g241100.t1.1"		
+Cre05.g239100	GMM:25.8	"C1-metabolism.tetrahydrofolate synthase"	Mitochondrion	"GO:0009396;GO:0009058;GO:0005524;GO:0004326"	"folic acid-containing compound biosynthetic process;biosynthetic process;ATP binding;tetrahydrofolylpolyglutamate synthase activity"	FPG2	"g5515.t1;FPG2;FPG2;g5515.t1;FPG2;g5515.t1;g5515.t1;FPG2"	"FPG2;FPG2;FPG2;FPG2"	"Involved in folate biosynthesis; may also be a tubulin-tyrosine ligase (see TTL series);Involved in folate biosynthesis; may also be a tubulin-tyrosine ligase (see TTL series);Involved in folate biosynthesis; may also be a tubulin-tyrosine ligase (see TTL series);Involved in folate biosynthesis; may also be a tubulin-tyrosine ligase (see TTL series)"
+Cre05.g236350				GO:0055114	"oxidation-reduction process"		g5434.t1		
+Cre05.g236550				GO:0055114	"oxidation-reduction process"		"Cre05.g236550.t1.1;g5441.t1"		
+Cre05.g241632							"Cre24.g770650.t1.2;Cre24.g770650.t1.1;g5327.t1"		
+Cre05.g242650							"g5297.t1;g5297.t1"		
+Cre05.g244901				"GO:0022900;GO:0005747;GO:0005739"	"electron transport chain;mitochondrial respiratory chain complex I;mitochondrion"	NUOB12	g5236.t1	NUOB12	"NADH:ubiquinone oxidoreductase (Complex I) subunit, mitochondrial; [= NDUFB3 subunit] Ortholog to NDUFB3 in Homo sapiens;"
+Cre05.g238301			Mitochondrion				"g5489.t1;Cre56.g791200.t1.1"		
+Cre05.g241750	GMM:30.1.2	"signalling.in sugar and nutrient physiology.pyruvate dehydrogenase kinase"	Mitochondrion			PDK3	"g5320.t1;Cre05.g241750.t1.1;Cre05.g241750.t1.1;g5320.t1"	"PDK3;PDK3"	"Closest homolog of human enzyme; inhibits pyruvate dehydrogenase by phosphorylation;Closest homolog of human enzyme; inhibits pyruvate dehydrogenase by phosphorylation"
+Cre05.g246950							"g5193.t1;g5193.t1"		
+Cre05.g234636				"GO:0051536;GO:0003824"	"iron-sulfur cluster binding;catalytic activity"		"PFLAE;PFA1;PFA1;PFLAE"	"PFLA1;PFLA1"	"Radical S-adenosylmethionine enzyme that activates PFL enzyme by glycyl radical formation;Radical S-adenosylmethionine enzyme that activates PFL enzyme by glycyl radical formation"
+Cre05.g245100			Mitochondrion	GO:0055114	"oxidation-reduction process"		g5231.t1		
+Cre05.g234650									
+Cre05.g233750			"Secretory pathway"				g5098.t1		
+Cre05.g236802			Chloroplast				g5447.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre05.g235018			"Secretory pathway"						
+Cre05.g248700				GO:0003677	"DNA binding"				
+Cre05.g247300			Mitochondrion				"Cre05.g247300.t1.1;g5186.t1;Cre05.g247300.t1.1;g5186.t1"		
+Cre05.g234100	"GMM:26.1;GMM:16.1.4.7"	"misc.misc2;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP745A1	"Cre05.g234100.t1.1;CYP17;g5091.t1"	CYP745A1	"Cytochrome P450, most similar to CYP97 or CYP746 sequences. It clusters with the 72 clan or the 97 clan and these two cluster with each other; Target of CRR1"
+Cre05.g243352			Mitochondrion						
+Cre05.g234850	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		"GO:0036459;GO:0016579"	"thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination"		"g5392.t1;g5392.t1;g5392.t1"		
+Cre05.g239700			Mitochondrion				"Cre05.g239700.t1.1;g5528.t1;Cre05.g239700.t1.1;g5528.t1"		
+Cre05.g236375									
+Cre05.g241642			Mitochondrion						
+Cre05.g247850				GO:0016787	"hydrolase activity"		g5176.t1		
+Cre05.g248450	GMM:8.3	"TCA / organic transformation.carbonic anhydrases"	Mitochondrion	"GO:0008270;GO:0004089"	"zinc ion binding;carbonate dehydratase activity"	CAH5	"CAH5;Cre05.g248450.t1.1;g5163.t1"	CAH5	"Mitochondrial carbonic anhydrase, also called CA2. Matches exons 5 and 6 of CRU41190 Chlamydomonas reinhardtii carbonic anhydrase precursor (beta-CA2)"
+Cre05.g242350	GMM:34.21	transport.calcium		"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"		"Cre05.g242350.t1.1;g5305.t1"		
+Cre05.g237890			Chloroplast						
+Cre05.g230850			Chloroplast				g5150.t1		
+Cre05.g234649			"Secretory pathway"	GO:0005515	"protein binding"		"Cre24.g769478.t1.1;Cre24.g769478.t1.2;g5369.t1;g5369.t1;Cre24.g769478.t1.1;Cre24.g769478.t1.2;g5369.t1;Cre24.g769478.t1.1;Cre24.g769478.t1.2;g5369.t1;Cre24.g769478.t1.1;Cre24.g769478.t1.2;Cre24.g769478.t1.1;Cre24.g769478.t1.2;g5369.t1;g5369.t1;Cre24.g769478.t1.2;Cre24.g769478.t1.1"		
+Cre05.g237350							"Cre05.g237350.t1.1;g5460.t2;g5460.t2;Cre05.g237350.t1.1;g5460.t2;Cre05.g237350.t1.1"		
+Cre05.g238270									
+Cre05.g230600	"GMM:31.2;GMM:20.2.5"	"cell.division;stress.abiotic.light"					g5156.t1	UVR8	"Orthologous to UVR8 in Arabidopsis; Null-allele passenger mutation was isolated (PMID 29743196)"
+Cre05.g232003			"Secretory pathway"						
+Cre05.g238400			Mitochondrion				g5497.t1		
+Cre05.g243800	"GMM:1.1.1.3;GMM:1.1.1.2"	"PS.lightreaction.photosystem II.biogenesis;PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast.Stroma.Thylakoid.Lumen	GO:0010207	"photosystem II assembly"	PSB27	"CPLD45;Cre05.g243800.t1.1;g5260.t1"	PSB27	"Cyanobacterial homolog located in thylakoid lumen, associates with PSII intermediate close to CP43, where PsbV binds"
+Cre05.g234651	GMM:3.5	"minor CHO metabolism.others"	"Mitochondrion;Chloroplast"	"GO:0016853;GO:0005975"	"isomerase activity;carbohydrate metabolic process"		"Cre24.g769400.t1.1;g5370.t1"		
+Cre05.g236950	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		GO:0005524	"ATP binding"		"g5452.t1;SRH11"		"SNF2-related helicase. ChromoDB CHR341; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre05.g240200				GO:0008270	"zinc ion binding"		"g5539.t1;Cre05.g240200.t1.1"		
+Cre05.g240251			Chloroplast						
+Cre05.g234976									
+Cre05.g234150							"g5090.t1;g5090.t1;g5090.t1;g5090.t1;g5090.t1"		
+Cre05.g240650	"GMM:29.9;GMM:20.2.1"	"protein.co-chaperones;stress.abiotic.heat"				DNJ32	"Cre05.g240650.t1.1;DNJ32;g5550.t1"		"DnaJ-like protein; contains N-terminal J-domain (pfam226) and a Zn-finger double-stranded RNA-binding domain; weak similarity with Dictyostelium Q54LL9 and Brachydanio rerio Q6PGY5, which is considered to be a nuclear, Zn-ion-binding, nucleic acid binding protein"
+Cre05.g235950							"Cre05.g235950.t1.1;g5424.t1;g5424.t1;Cre05.g235950.t1.1"		
+Cre05.g246752									
+Cre05.g238150			"Secretory pathway"	GO:0005515	"protein binding"		"Cre05.g238150.t1.1;g5482.t1;g5482.t1;Cre05.g238150.t1.1;Cre05.g238150.t1.1;g5482.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre05.g234639	"GMM:29.6.2.2;GMM:29.6"	"protein.folding.chaperones and co-chaperones.HSP60s;protein.folding"	Cytosol	GO:0005524	"ATP binding"	CCT4	"Cre24.g769900.t1.1;g5358.t1;Cre24.g769900.t1.2;CCT4"	CCT4	"T-complex protein 1, delta subunit (TCP-1-delta) (CCT-delta) (TCPD); subunit of cytosolic chaperonin complex"
+Cre05.g244100							"g5253.t1;g5253.t1"		
+Cre05.g235228						CSU4			
+Cre05.g232050			Mitochondrion				"g5138.t1;g5138.t1"		
+Cre05.g236525			Mitochondrion						
+Cre05.g243358									
+Cre05.g233300	"GMM:26.6;GMM:19.3"	"misc.O-methyl transferases;tetrapyrrole synthesis.GSA"		"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"Cre05.g233300.t1.1;g5107.t1"		
+Cre05.g245350			"Secretory pathway"				"g5226.t1;g5226.t1;g5226.t1;g5226.t1"		
+Cre05.g244650							g5242.t1		
+Cre05.g236300							g5433.t1		
+Cre05.g243602			Chloroplast				"g5269.t1;g5269.t1"		
+Cre05.g244250	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"	Chloroplast	"GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777"	"dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity"	DHC6	"g5249.t1;Cre05.g244250.t1.1"	DHC6	"Flagellar inner arm dynein heavy chain, dynein a. Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]"
+Cre05.g242100	GMM:29.5.1	protein.degradation.subtilases		"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SUB8	"SUB8;g5313.t1;g5313.t1;SUB8;g5313.t1;SUB8;g5313.t1;SUB8;g5313.t1;SUB8"		
+Cre05.g246900			Mitochondrion				"Cre05.g246900.t1.1;g5194.t1"		
+Cre05.g241653				GO:0005515	"protein binding"		g5348.t1		
+Cre05.g239800	GMM:14.1	S-assimilation.APS	"Secretory pathway"	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS14	"ARS14;g5530.t1;g5530.t1;ARS14;ARS14;g5530.t1;ARS14;g5530.t1"	"ARS14;ARS14;ARS14;ARS14"	
+Cre05.g235144									
+Cre05.g235400	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"		"GO:0015074;GO:0005515"	"DNA integration;protein binding"				
+Cre05.g238052	GMM:31.1	cell.organisation					g5479.t1		
+Cre05.g248000			Mitochondrion			CGL29	"g5172.t1;CGL29;Cre05.g248000.t1.1;Cre05.g248000.t1.1;g5172.t1;CGL29;g5172.t1;CGL29;Cre05.g248000.t1.1"	"LESV1;LESV1;LESV1"	"Conserved in the Green Lineage; LESV1 then LESV is the name given for the homologous function studied in Arabidopsis [PMID: 27207856];Conserved in the Green Lineage; LESV1 then LESV is the name given for the homologous function studied in Arabidopsis [PMID: 27207856];Conserved in the Green Lineage; LESV1 then LESV is the name given for the homologous function studied in Arabidopsis [PMID: 27207856]"
+Cre05.g236150							"g5429.t1;PGM14;g5429.t1;PGM14"		
+Cre05.g246150	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG13			
+Cre05.g241635			"Secretory pathway"				"Cre24.g770500.t1.1;g5330.t1"		
+Cre05.g234665	GMM:31.4	"cell.vesicle transport"	Mitochondrion	"GO:0030131;GO:0030117;GO:0016192;GO:0006886"	"clathrin adaptor complex;membrane coat;vesicle-mediated transport;intracellular protein transport"	AP4B4	"AP4B4;g5384.t1;Cre24.g768700.t1.1;Cre24.g768700.t1.2;Cre24.g768700.t1.1;g5384.t1;Cre24.g768700.t1.2;AP4B4"	"AP4B4;AP4B4"	"Expressed protein. Beta4-Adaptin, clathrin adaptor complex large subunit, putative member of AP-4 complex;Expressed protein. Beta4-Adaptin, clathrin adaptor complex large subunit, putative member of AP-4 complex"
+Cre05.g232500	GMM:30.99	signalling.unspecified	Mitochondrion			FXL8	"g5124.t1;FXL8;g5124.t1;FXL8;g5124.t1;FXL8"	"FXL8;FXL8;FXL8"	"FixL like homolog 8 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 8 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 8 (FXL). PAS region shows high identity to Rhizobial FixL proteins."
+Cre05.g234654				"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g5373.t1;Cre24.g769250.t1.1"		
+Cre05.g232002	"GMM:11.9.4.2;GMM:11.9.4"	"lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH;lipid metabolism.lipid degradation.beta-oxidation"		"GO:0055114;GO:0016627;GO:0006635;GO:0005777;GO:0003997;GO:0003995"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;fatty acid beta-oxidation;peroxisome;acyl-CoA oxidase activity;acyl-CoA dehydrogenase activity"		"g5140.t2;g5140.t2;g5140.t2"	"ACX2;ACX2;ACX2"	"Catalyzes the oxidation of fatty acyl-CoAs into trans-2-enoyl-CoA, producing H2O2; Mutant is strongly impaired in oil remobilization; Involved in peroxisomal beta-oxidation of fatty acids;Catalyzes the oxidation of fatty acyl-CoAs into trans-2-enoyl-CoA, producing H2O2; Mutant is strongly impaired in oil remobilization; Involved in peroxisomal beta-oxidation of fatty acids;Catalyzes the oxidation of fatty acyl-CoAs into trans-2-enoyl-CoA, producing H2O2; Mutant is strongly impaired in oil remobilization; Involved in peroxisomal beta-oxidation of fatty acids"
+Cre05.g232400									
+Cre05.g234647							"g5367.t1;Cre24.g769550.t1.1;Cre24.g769550.t1.2"		
+Cre05.g236100							"g5428.t1;g5428.t1;g5428.t1;g5428.t1;g5428.t1;g5428.t1;g5428.t1"		
+Cre05.g242000	"GMM:19.10;GMM:19.1"	"tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase"	Chloroplast	"GO:0016851;GO:0015995;GO:0015979"	"magnesium chelatase activity;chlorophyll biosynthetic process;photosynthesis"	CHLD	"g5315.t1;Cre05.g242000.t1.1;CHLD"	CHLD1	"Magnesium-chelatase subunit chlD, chloroplast precursor (Mg-protoporphyrin IX chelatase) (Mg-chelatase subunit D); orthologous to the bacterial magnesium chelatase subunits BchD, and other plant magnesium chelatase subunits ChlD; [PMID: 9359397]; forms an ATP dependent complex with the ChlI subunit (probably a double hexameric ring complex) before acting on the protoporphyrin which is bound to the ChlH protein to insert magnesium [PMID: 11469861]. Transcription is light regulated and may be diurnal and/or"
+Cre05.g238343			Chloroplast				"g5493.t1;g5493.t1"		
+Cre05.g234200			Chloroplast	GO:0003676	"nucleic acid binding"		"g5089.t1;Cre05.g234200.t1.1"		
+Cre05.g233304	GMM:2.1	"major CHO metabolism.synthesis"	"Secretory pathway"	"GO:0008061;GO:0005975;GO:0004553"	"chitin binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI3	"CHI3;g5109.t1"		
+Cre15.g639000			Mitochondrion			NCL17			
+Cre15.g636050			Chloroplast			CPLD31	"g15344.t1;Cre15.g636050.t1.1"	CPLD31	"Conserved expressed protein; possible thylakoid lumen localization"
+Cre15.g639802						NCL8			
+Cre15.g642702									
+Cre15.g637150							"g15366.t1;g15366.t1"		
+Cre15.g643391									
+Cre15.g636600				GO:0005515	"protein binding"	FAP391	"Cre15.g636600.t1.1;g15355.t1;Cre15.g636600.t1.1;g15355.t1"	"FAP391;FAP391"	"Found in Cr and Volvox;Found in Cr and Volvox"
+Cre15.g634550									
+Cre15.g641850			Mitochondrion				"g15475.t1;Cre15.g641850.t1.1;Cre15.g641850.t1.1;g15475.t1;g15475.t1;Cre15.g641850.t1.1"		
+Cre15.g637700			Mitochondrion				"Cre15.g637700.t1.1;g15378.t1"		
+Cre15.g637900			Chloroplast						
+Cre15.g639304			Chloroplast			NCL15			
+Cre15.g634913			Chloroplast				g15311.t1		
+Cre15.g644051			Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"Cre15.g643800.t1.3;g15504.t1;Cre15.g643800.t1.3;g15504.t1"		
+Cre15.g635900							g15339.t1		
+Cre15.g637216									
+Cre15.g643550	GMM:18	"Co-factor and vitamine metabolism"		"GO:0042823;GO:0042819"	"pyridoxal phosphate biosynthetic process;vitamin B6 biosynthetic process"	PDX1	"g15513.t1;PDX1;Cre15.g643550.t1.1;g15513.t1;Cre15.g643550.t1.1;PDX1;Cre15.g643550.t1.1;PDX1;g15513.t1;Cre15.g643550.t1.1;PDX1;g15513.t1;Cre15.g643550.t1.1;PDX1;g15513.t1;PDX1;Cre15.g643550.t1.1;g15513.t1;Cre15.g643550.t1.1;PDX1;g15513.t1;PDX1;g15513.t1;Cre15.g643550.t1.1;PDX1;g15513.t1;Cre15.g643550.t1.1"	"PDX1;PDX1;PDX1;PDX1;PDX1;PDX1;PDX1;PDX1;PDX1"	"Involved in vitamin B6 biosynthesis;Involved in vitamin B6 biosynthesis;Involved in vitamin B6 biosynthesis;Involved in vitamin B6 biosynthesis;Involved in vitamin B6 biosynthesis;Involved in vitamin B6 biosynthesis;Involved in vitamin B6 biosynthesis;Involved in vitamin B6 biosynthesis;Involved in vitamin B6 biosynthesis"
+Cre15.g638304			Mitochondrion			NCL30	"g15448.t1;OPR74;g15448.t1;OPR74"	"NCL30;NCL30"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; similar to NCC1/NCC2; part of Chr_15 NCL gene sub-cluster E, in haplotype block different from CC-503;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; similar to NCC1/NCC2; part of Chr_15 NCL gene sub-cluster E, in haplotype block different from CC-503"
+Cre15.g635800	GMM:31.2	cell.division				SMC1	"g15337.t1;SMC1"	SMC1	"Structural maintenance of chromosome protein 1 (sister chromatid cohesion complex Cohesin, subunit SMC1); ChromDB CPC3404; ; ts-lethal mutant was isolated (PMID 29743196)"
+Cre15.g637249			Mitochondrion						
+Cre15.g643386			"Secretory pathway"				g15525.t1		
+Cre15.g638551							g15441.t1		
+Cre15.g638300			Mitochondrion			NCL28			
+Cre15.g637401									
+Cre15.g636300	"GMM:31.1.1.2;GMM:31.1"	"cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"		GO:0005515	"protein binding"	CPN2	"Cre15.g636300.t1.1;CPN2;g15349.t1;CPN2;Cre15.g636300.t1.1;g15349.t1"	"ALF1;ALF1"	"homologous to yeast ALF1 and human TBCB (CKAP1); contains an N-terminal ubiquitin-like domain;homologous to yeast ALF1 and human TBCB (CKAP1); contains an N-terminal ubiquitin-like domain"
+Cre15.g636700			Chloroplast				g15357.t1		
+Cre15.g636896	GMM:12.4	N-metabolism.misc		"GO:0055114;GO:0050660;GO:0017150;GO:0008033"	"oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing"		g15361.t1		
+Cre15.g641150			Chloroplast	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"				
+Cre15.g635993							"g15341.t1;Cre15.g635993.t1.1"		
+Cre15.g643850							"Cre15.g643850.t1.1;g15502.t1"		
+Cre15.g640800			Chloroplast				"Cre15.g640800.t1.1;g15328.t1"		
+Cre15.g643740			Chloroplast						
+Cre15.g640900			Mitochondrion				"g15330.t1;Cre15.g640900.t1.1"		
+Cre15.g642213									
+Cre15.g641500									
+Cre15.g643394									
+Cre15.g638956			Mitochondrion			NCL20			
+Cre15.g637750			"Secretory pathway"				g15379.t2		
+Cre15.g639350							"g15421.t1;g15421.t1;g15421.t1;g15421.t1;g15421.t1"		
+Cre15.g634650							"Cre15.g634650.t1.1;g15303.t1;g15303.t1;Cre15.g634650.t1.1;g15303.t1;Cre15.g634650.t1.1"		
+Cre15.g638150			Mitochondrion			NCL31			
+Cre15.g636450							"g15352.t1;Cre15.g636450.t1.1;SMM58"		"with homology to Bicoid-interacting 3 (Bin3) protein"
+Cre15.g638750			Mitochondrion			NCL21			
+Cre15.g641750			"Secretory pathway"	GO:0008270	"zinc ion binding"		g15473.t1		
+Cre15.g643702									
+Cre15.g639200			Mitochondrion				g15425.t1		
+Cre15.g638450			Chloroplast			NCL26	"RAP13;g15443.t1;Cre15.g638450.t1.1;OPR78;OPR78;g15443.t1;Cre15.g638450.t1.1;RAP13"	"NCL26;NCL26"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene cluster;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene cluster"
+Cre15.g638950			Chloroplast			NCC1	"CLR11;g15432.t1;RAP21;OPR87;OPR87;g15432.t1;RAP21;CLR11;RAP21;g15432.t1;OPR87;CLR11;CLR11;OPR87;g15432.t1;RAP21"	"NCC1;NCC1;NCC1;NCC1"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a very divergent C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster D; dominant mutation in this gene destabilizes atpA mRNA; In v5 annotation, the protein was C-terminally truncated because of a stop codon in CC-503;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a very divergent C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster D; dominant mutation in this gene destabilizes atpA mRNA; In v5 annotation, the protein was C-terminally truncated because of a stop codon in CC-503;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a very divergent C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster D; dominant mutation in this gene destabilizes atpA mRNA; In v5 annotation, the protein was C-terminally truncated because of a stop codon in CC-503;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a very divergent C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster D; dominant mutation in this gene destabilizes atpA mRNA; In v5 annotation, the protein was C-terminally truncated because of a stop codon in CC-503"
+Cre15.g635034									
+Cre15.g640502									
+Cre15.g638101			Chloroplast				"g15326.t1;g15326.t1"		
+Cre15.g643503			Chloroplast	"GO:0035556;GO:0016849;GO:0016020;GO:0009190;GO:0000160"	"intracellular signal transduction;phosphorus-oxygen lyase activity;membrane;cyclic nucleotide biosynthetic process;phosphorelay signal transduction system"	COP9	"COP9;g15518.t2;COP10;HKR6;HKR5;COP9;g15518.t2;COP10;HKR6;HKR5"	"HKR56;HKR56"	"Encodes two proteins Histidine kinase rhodopsin 5/6 (HKR5 and HKR6) also known as Chlamoypsin 9/10 (COP9 and COP10) ; contains bacteriorhodopsin, Histine kinase, response regulator receiver and Guanylate/adenylate cyclase catalytic domains; next to an expressed transposon-derived gene;Encodes two proteins Histidine kinase rhodopsin 5/6 (HKR5 and HKR6) also known as Chlamoypsin 9/10 (COP9 and COP10) ; contains bacteriorhodopsin, Histine kinase, response regulator receiver and Guanylate/adenylate cyclase catalytic domains; next to an expressed transposon-derived gene"
+Cre15.g639136			Mitochondrion						
+Cre15.g639700			Chloroplast			NCL10	"RAP25;g15409.t1;OPR93;RAP25;g15409.t1;OPR93"	"NCL10;NCL10"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster B;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster B"
+Cre15.g637050						FAP274	"FAP274a;Cre15.g637050.t1.1;g15364.t1"	FAP274	"Flagellar Associated Protein, found in the flagellar proteome; there are two isoforms, FAP274a and FAP274b, minor variant arising from alternative transcription start; function unknown; possible target of a miRNA directing cleavage at end of first exon"
+Cre15.g643393									
+Cre15.g635150			Mitochondrion				g15318.t1		
+Cre15.g637761	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Mitochondrion	"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"		"ABCD1;Cre15.g637761.t1.1;g15380.t3;Cre15.g637761.t1.1;ABCD1;g15380.t3"		"May play a role in the fatty acid beta-oxidation pathway;May play a role in the fatty acid beta-oxidation pathway"
+Cre15.g639650			Mitochondrion			NCL11	"OPR92;g15410.t1;RAP24;RAP24;OPR92;g15410.t1"	"NCL11;NCL11"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster B;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster B"
+Cre15.g643395									
+Cre15.g641700							g15472.t1		
+Cre15.g643704			Mitochondrion						
+Cre15.g634800			Mitochondrion			NCL3	"RAP7;CLR19;OPR68;g15306.t1"	NCL3	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; paralog of NCL genes, but does not contains a C-terminal RAP domain; probably a pseudogene both in CC-503 and CC-4532"
+Cre15.g641875			Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"SMM;Cre15.g641900.t1.2;g15476.t1;g15476.t1;Cre15.g641900.t1.2;SMM"		"a S-adenosyl-L-methionine-dependent methyltransferase;a S-adenosyl-L-methionine-dependent methyltransferase"
+Cre15.g635700	"GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	MAPKKK12	"g15334.t1;MAPKKK12;MAPKKK12;g15334.t1;g15334.t1;MAPKKK12;g15334.t1;MAPKKK12;MAPKKK12;g15334.t1"		
+Cre15.g639950	GMM:29.4	"protein.postranslational modification"					"g15403.t1;g15403.t1"		
+Cre15.g643400			"Secretory pathway"						
+Cre15.g636176							"g15347.t1;g15347.t1;g15347.t1"		
+Cre15.g638100			Mitochondrion			NCL32			
+Cre15.g636500							"Cre15.g636500.t1.1;g15353.t1"		
+Cre15.g639552							g15414.t1		
+Cre15.g642875									
+Cre15.g641400							g15464.t1		
+Cre15.g635067			"Secretory pathway"				"g15316.t1;g15316.t1;g15316.t1;g15316.t1"		
+Cre15.g641100	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g15456.t1		
+Cre15.g637315			Mitochondrion						
+Cre15.g635600	"GMM:31.99;GMM:29.2.4"	"cell.unspecified;protein.synthesis.elongation"				FAP357	"g15332.t1;Cre15.g635600.t1.1;NPC1;NPC1;Cre15.g635600.t1.1;g15332.t1;Cre15.g635600.t1.1;g15332.t1;NPC1;NPC1;Cre15.g635600.t1.1;g15332.t1"	"EGD2;EGD2;EGD2;EGD2"	"Named for cytosolic nascent polypeptide-associated complex (NAC) alpha subunit gene in Saccharomyces cerevisiae (EGD2);Named for cytosolic nascent polypeptide-associated complex (NAC) alpha subunit gene in Saccharomyces cerevisiae (EGD2);Named for cytosolic nascent polypeptide-associated complex (NAC) alpha subunit gene in Saccharomyces cerevisiae (EGD2);Named for cytosolic nascent polypeptide-associated complex (NAC) alpha subunit gene in Saccharomyces cerevisiae (EGD2)"
+Cre15.g634582									
+Cre15.g642000			Mitochondrion				"Cre15.g642000.t1.1;g15481.t1"		
+Cre15.g638700						NCL22			
+Cre15.g635450			Mitochondrion						
+Cre15.g635998							g15342.t1		
+Cre15.g634701	GMM:28.99	DNA.unspecified	"Secretory pathway"	"GO:0008270;GO:0005524;GO:0003676"	"zinc ion binding;ATP binding;nucleic acid binding"	RECQ4	"g15304.t1;DIV20"	RECQ4	"Most similar to RecQ4 class, implicated in replication initiation in animals. ts-lethal mutations block DNA replication (PMID 25336509)"
+Cre15.g639800						NCL7	"OPR95;g15406.t1"	NCL7	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster B"
+Cre15.g638955			"Secretory pathway"						
+Cre15.g641600							"Cre15.g641600.t1.1;g15468.t1"		
+Cre15.g641000	GMM:3.5	"minor CHO metabolism.others"		GO:0046907	"intracellular transport"		"Cre15.g641000.t1.1;g15454.t2;g15454.t2;Cre15.g641000.t1.1;Cre15.g641000.t1.1;g15454.t2"	"NUP50;NUP50;NUP50"	"Nuclear Pore Complex Protein 50;Nuclear Pore Complex Protein 50;Nuclear Pore Complex Protein 50"
+Cre15.g638651			Chloroplast			NCL24			
+Cre15.g639550			Mitochondrion				"g15413.t2;g15413.t2"		
+Cre15.g642976	GMM:34.8	"transport.metabolite transporters at the envelope membrane"							
+Cre15.g640203									
+Cre15.g636075									
+Cre15.g643389			"Secretory pathway"						
+Cre15.g640426						NCL18			
+Cre15.g636840			Chloroplast						
+Cre15.g640600			"Secretory pathway"	"GO:0055114;GO:0008199;GO:0006725;GO:0003824"	"oxidation-reduction process;ferric iron binding;cellular aromatic compound metabolic process;catalytic activity"		"Cre15.g640600.t1.1;g15388.t1"		
+Cre15.g643500			Mitochondrion				"g15516.t1;g15516.t1"		
+Cre15.g638401			Mitochondrion			NCL27			
+Cre15.g642376									
+Cre15.g643387			Chloroplast						
+Cre15.g635950			"Secretory pathway"				"g15340.t1;g15340.t1;g15340.t1;g15340.t1;g15340.t1"		
+Cre15.g634950			Mitochondrion				g15313.t1		
+Cre15.g637552			"Secretory pathway"						
+Cre15.g641926			"Secretory pathway"				g15478.t1		
+Cre15.g640651	GMM:29.4	"protein.postranslational modification"							
+Cre15.g639500							"Cre15.g639500.t1.1;g15415.t1;Cre15.g639500.t1.1;g15415.t1"		
+Cre15.g643384			Chloroplast						
+Cre15.g643517									
+Cre15.g641950							g15479.t1		
+Cre15.g643385	GMM:34.8	"transport.metabolite transporters at the envelope membrane"	"Secretory pathway"				"TPT24;Cre15.g643350.t1.3;g15523.t1;TPT26;TPT24;Cre15.g643350.t1.3;g15523.t1;TPT26"		"Putatively chloroplastic;Putatively chloroplastic"
+Cre15.g638000			Mitochondrion			NCL34			
+Cre15.g639614			Chloroplast			NCL12	"g15411.t1;OPR116;Cre15.g639614.t1.1"	NCL12	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster B"
+Cre15.g641298			Mitochondrion						
+Cre15.g640251									
+Cre15.g643028			Chloroplast						
+Cre15.g643388									
+Cre15.g639308			Mitochondrion			NCL14			
+Cre15.g642950							"TPT23;g15539.t1;TPT24;Cre15.g642950.t1.1"		
+Cre15.g639056			Chloroplast	GO:0005515	"protein binding"		"g15381.t1;g15381.t1"		
+Cre15.g635250			Mitochondrion				"g15320.t1;g15320.t1"		
+Cre15.g638050			Mitochondrion			NCL33			
+Cre15.g640350			Chloroplast			NCL4	"OPR97;CLR4;Cre15.g640350.t1.1;g15382.t1;g15382.t1;Cre15.g640350.t1.1;CLR4;OPR97;OPR97;CLR4;Cre15.g640350.t1.1;g15382.t1;CLR4;OPR97;g15382.t1;Cre15.g640350.t1.1;g15382.t1;Cre15.g640350.t1.1;CLR4;OPR97;g15382.t1;CLR4;Cre15.g640350.t1.1;OPR97;g15382.t1;Cre15.g640350.t1.1;CLR4;OPR97"	"NCL4;NCL4;NCL4;NCL4;NCL4;NCL4;NCL4"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster A;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster A;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster A;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster A;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster A;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster A;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster A"
+Cre15.g637183			Mitochondrion						
+Cre15.g634500									
+Cre15.g635850	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"	Mitochondrion	"GO:0046961;GO:0046933;GO:0045261;GO:0015986"	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;proton-transporting ATP synthase complex, catalytic core F(1);ATP synthesis coupled proton transport"	ATP3	"ATP3;Cre15.g635850.t1.1;g15338.t2;ATP3;Cre15.g635850.t1.1;g15338.t2;ATP3;g15338.t2;Cre15.g635850.t1.1"	"ATP3;ATP3;ATP3"	"H+-transporting two-sector ATPase, gamma subunit, mitochondria targeted (by homology to ATP3_ARATH, human ATP5C1); part of the F1 sector of the enzyme;H+-transporting two-sector ATPase, gamma subunit, mitochondria targeted (by homology to ATP3_ARATH, human ATP5C1); part of the F1 sector of the enzyme;H+-transporting two-sector ATPase, gamma subunit, mitochondria targeted (by homology to ATP3_ARATH, human ATP5C1); part of the F1 sector of the enzyme"
+Cre15.g641266							"TPT22;TPT23;Cre15.g641300.t2.1;g15460.t2"		
+Cre15.g637602			"Secretory pathway"						
+Cre15.g641674									
+Cre15.g637850			Mitochondrion			NCL13	"g15417.t1;OPR69;g15417.t1;OPR69;g15417.t1;OPR69;g15417.t1;OPR69"	"NCL13;NCL13;NCL13;NCL13"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene cluster;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene cluster;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene cluster;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene cluster"
+Cre15.g636350							g15350.t1		
+Cre15.g636650			Chloroplast				"g15356.t1;Cre15.g636650.t1.1;Cre15.g636650.t1.1;g15356.t1"		
+Cre15.g639379									
+Cre15.g642539									
+Cre15.g643050							"Cre15.g643050.t1.1;g15542.t1"		
+Cre15.g643392									
+Cre15.g634900			Chloroplast				"Cre15.g634900.t1.1;g15310.t1"		
+Cre15.g636250			"Secretory pathway"				"g15348.t1;Cre15.g636250.t1.1;Cre15.g636250.t1.1;g15348.t1;g15348.t1;Cre15.g636250.t1.1"		
+Cre15.g641650			Mitochondrion			HLM22	"g15469.t1;HLM22"		
+Cre15.g643700	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"				RLS6	"g15508.t1;RLS6"		"Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770 SAND; PF01342); in tandem with RLS9"
+Cre15.g641662									
+Cre15.g637450									
+Cre15.g635650			Chloroplast				"Cre15.g635650.t1.1;g15333.t2"		
+Cre15.g636400	"GMM:9.1.2;GMM:29.5"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;protein.degradation"					g15351.t2		
+Cre15.g642050			"Secretory pathway"						
+Cre15.g643191			Mitochondrion						
+Cre15.g640101			Mitochondrion				"g15400.t1;Cre15.g640050.t1.2;Cre15.g640050.t1.2;g15400.t1;g15400.t1;Cre15.g640050.t1.2"		
+Cre15.g643680									
+Cre15.g635376			Mitochondrion						
+Cre15.g637350	GMM:27.1	RNA.processing		"GO:0008173;GO:0006396;GO:0003723"	"RNA methyltransferase activity;RNA processing;RNA binding"		"TRM3;TMG13;g15372.t1;Cre15.g637350.t1.1;Cre15.g637350.t1.1;TRM3;g15372.t1;TMG13;Cre15.g637350.t1.1;g15372.t1;TRM3;TMG13"		"tRNA methyltransferase, catalyzes the transfer of a methyl group from S-adenosylmethionine to the 2'-OH of the guanosine residue at position 18 of tRNAs;tRNA methyltransferase, catalyzes the transfer of a methyl group from S-adenosylmethionine to the 2'-OH of the guanosine residue at position 18 of tRNAs;tRNA methyltransferase, catalyzes the transfer of a methyl group from S-adenosylmethionine to the 2'-OH of the guanosine residue at position 18 of tRNAs"
+Cre15.g634600			Mitochondrion				"g15301.t1;g15301.t1;g15301.t1"		
+Cre15.g640204									
+Cre15.g636750				GO:0005515	"protein binding"		"Cre15.g636750.t1.1;g15358.t1;GST11;GST11;Cre15.g636750.t1.1;g15358.t1"		
+Cre15.g634827									
+Cre15.g641451			"Secretory pathway"				"g15465.t1;Cre15.g641450.t1.3"		
+Cre15.g644050									
+Cre15.g643703	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"	RLS9	"RLS9;g15510.t1"		"Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770 SAND; PF01342); this protein also contains a putative RNA binding domain (PF00076); in tandem with RLS6"
+Cre15.g639900	GMM:29.4	"protein.postranslational modification"					g15404.t1		
+Cre15.g636950			Chloroplast				"g15362.t1;Cre15.g636950.t1.1"		
+Cre15.g638500	"GMM:9.6;GMM:9.5"	"mitochondrial electron transport / ATP synthesis.cytochrome c;mitochondrial electron transport / ATP synthesis.cytochrome c reductase"	Mitochondrion	"GO:0020037;GO:0009055"	"heme binding;electron carrier activity"	CYC1	"g15442.t1;CYC1;Cre15.g638500.t1.1"	CYT1	"cytochrome c1 of ubiquinol:cytochrome c oxidoreductase cytochrome c1 (mitochondrial complex III); mitochondrial pre-apocytochrome c1;[GI:12005507]; gb:AAG44483; PMID: 12589438; = CYT1 from yeast"
+Cre15.g639750			Chloroplast			NCL9	"g15408.t1;OPR94"	NCL9	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster B"
+Cre15.g641250	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"					"CNE1;g15459.t1;Cre15.g641250.t1.1"		"Serine/threonine-specific protein phosphatase and bis(5-nucleosyl)-tetraphosphatase"
+Cre15.g636800				GO:0005515	"protein binding"		"g15359.t1;GST12"		
+Cre15.g635200				GO:0000266	"mitochondrial fission"		"g15319.t1;BGY1;Cre15.g635200.t1.1"		"May play a role in controlling mitochondrial size and number"
+Cre15.g640901			Mitochondrion				g15331.t1		
+Cre15.g643390			"Secretory pathway"						
+Cre15.g640150							g15398.t1		
+Cre15.g641976			Mitochondrion						
+Cre15.g635750			Mitochondrion	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g15336.t2;g15336.t2"		
+Cre15.g639504							g15453.t1		
+Cre15.g636004							"g15343.t1;Cre15.g636004.t1.1"		
+Cre15.g639400	GMM:29.5	protein.degradation		GO:0002949	"tRNA threonylcarbamoyladenosine modification"		"g15419.t2;Cre15.g639400.t1.1"		
+Cre15.g639600							"g15412.t1;g15412.t1"		
+Cre15.g639850			Mitochondrion			NCL6	"g15405.t1;Cre15.g639850.t1.1;OPR96;g15405.t1;OPR96;Cre15.g639850.t1.1;OPR96;Cre15.g639850.t1.1;g15405.t1"	"NCL6;NCL6;NCL6"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster B; truncated at N-terminus compared to other NCL genes: probably a pseudogene;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster B; truncated at N-terminus compared to other NCL genes: probably a pseudogene;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster B; truncated at N-terminus compared to other NCL genes: probably a pseudogene"
+Cre15.g639150	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"	Mitochondrion				"g15426.t2;g15426.t2;g15426.t2"	"MDM38;MDM38;MDM38"	"Plays a role in ribosomal translation and protein insertion into the inner membrane; Related to MDM38 in Saccharomyces cerevisiae and MDM38-1 and MDM38-2 in Arabidopsis thaliana;Plays a role in ribosomal translation and protein insertion into the inner membrane; Related to MDM38 in Saccharomyces cerevisiae and MDM38-1 and MDM38-2 in Arabidopsis thaliana;Plays a role in ribosomal translation and protein insertion into the inner membrane; Related to MDM38 in Saccharomyces cerevisiae and MDM38-1 and MDM38-2 in Arabidopsis thaliana"
+Cre15.g635717							g15335.t2		
+Cre15.g637000			Mitochondrion				g15363.t1		
+Cre15.g639503	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"GEX173;g15416.t1"		"ts-lethal mutant was isolated (PMID 29743196)"
+Cre15.g636550			Mitochondrion				"Cre15.g636550.t1.1;g15354.t1"		
+Cre15.g641800	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	RAB8	"Cre15.g641800.t1.1;g15474.t1;RAB8;RABE1;RABE1;g15474.t1;RAB8;Cre15.g641800.t1.1"	"RAB8;RAB8"	"Similar to the RabE/Rab8 class of small GTPases; homologue of YptV2 [gi 549809 sp P36861 YPTV2_VOLCA]; single unique peptide; Class I in [PMID: 8756593];Similar to the RabE/Rab8 class of small GTPases; homologue of YptV2 [gi 549809 sp P36861 YPTV2_VOLCA]; single unique peptide; Class I in [PMID: 8756593]"
+Cre15.g635100			"Secretory pathway"	GO:0005515	"protein binding"		"Cre15.g635100.t1.1;g15317.t1"		
+Cre15.g640850			Mitochondrion				g15329.t1		
+Cre15.g640200	GMM:27.4	"RNA.RNA binding"	Chloroplast	GO:0003723	"RNA binding"		g15394.t1		
+Cre15.g640650			Mitochondrion				"g15389.t1;g15389.t1"		
+Cre15.g643000							"Cre15.g643000.t1.1;g15541.t1"		
+Cre15.g638650			Chloroplast			NCL23			
+Cre15.g640152			Mitochondrion				"Cre15.g640152.t1.1;g15397.t1"		
+Cre15.g637282			Mitochondrion						
+Cre15.g641901									
+Cre15.g639134			"Secretory pathway"				"g15427.t1;Cre15.g639134.t1.1;g15427.t1;Cre15.g639134.t1.1"		
+Cre15.g641350									
+Cre15.g638550			Mitochondrion			NCL25			
+Cre15.g643354							g15496.t1		
+Cre15.g643499									
+Cre15.g634566			"Secretory pathway"						
+Cre15.g640100	GMM:29.4	"protein.postranslational modification"					"g15399.t1;Cre15.g640100.t1.1"		
+Cre15.g638954			Chloroplast			NCL19			
+Cre15.g643600	GMM:29.8	"protein.assembly and cofactor ligation"	Chloroplast	GO:0016226	"iron-sulfur cluster assembly"	SUFB	"Cre15.g643600.t1.1;SUFB;g15512.t1;SUF2;g15512.t1;Cre15.g643600.t1.1;SUF2;SUFB;Cre15.g643600.t1.1;SUFB;g15512.t1;SUF2"	"SUFB1;SUFB1;SUFB1"	"ABC-type system involved in Fe-S cluster assembly, likely localized to plastid;ABC-type system involved in Fe-S cluster assembly, likely localized to plastid;ABC-type system involved in Fe-S cluster assembly, likely localized to plastid"
+Cre15.g643515									
+Cre15.g640000						FAP345	g15401.t1	FAP345	"Found in the flagellar proteome"
+Cre15.g634855			Mitochondrion				"Cre15.g634855.t1.1;g15308.t1"		
+Cre15.g638303			Mitochondrion			NCL29			
+Cre15.g637501									
+Cre15.g641050			Mitochondrion	"GO:0051607;GO:0003725"	"defense response to virus;double-stranded RNA binding"				
+Cre15.g639100						FAP195	"g15429.t1;Cre15.g639100.t1.1"	FAP195	
+Cre15.g640652			"Secretory pathway"						
+Cre15.g639050							"g15430.t1;g15430.t1;g15430.t1"		
+Cre15.g638400	GMM:20.2.1	stress.abiotic.heat	Chloroplast			USPA	"Cre15.g638400.t1.1;g15444.t1"		
+Cre15.g641200	"GMM:9.8;GMM:34.9"	"mitochondrial electron transport / ATP synthesis.uncoupling protein;transport.metabolite transporters at the mitochondrial membrane"				MCP28	"Cre15.g641200.t1.1;g15458.t1;MCP28"	UCP2C	"Belong to mitochondrial substrate carrier family; Paralog of UCP2A (Cre06.g257550)"
+Cre15.g642800							"TET8;Cre15.g642800.t1.1;g15537.t1"		"converts 5-methylcytosine (5mC) to 5-glyceryl-methylcytosines (5gmC) using vitamin C (not 2-oxoglutarate) as a co-substrate; Fe-dependent dioxygenase; homologous to TET1/CMD1; part of a Helitron transposon"
+Cre15.g643750			Mitochondrion				"Cre15.g643750.t1.1;g15505.t1"		
+Cre15.g641527	GMM:31.1	cell.organisation							
+Cre15.g641282							g15461.t1		
+Cre15.g637100	"GMM:29.5.11.1;GMM:29.5.11"	"protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin"		GO:0005515	"protein binding"		"g15365.t1;Cre15.g637100.t1.1"		"Protein containing a N-terminal proteasome binding domain and a C-terminal UBA domain; homolog to yeast ubiquitin binding protein Dsk2, the middle domain of the Chlamydomonas is longer compared to the yeast protein."
+Cre15.g640550							"g15387.t1;Cre15.g640550.t1.1"		
+Cre15.g640750	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g15327.t1;MAP3K17"		
+Cre15.g634750			Mitochondrion				"g15305.t1;g15305.t1"		
+Cre15.g634878				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g15309.t1		
+Cre15.g640400			Chloroplast			NCC2	"CLR4;g15383.t1;OPR98;g15383.t1;OPR98;CLR4;g15383.t1;OPR98;CLR4"	"NCC2;NCC2;NCC2"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster A; dominant mutation in this gene destabilizes petA mRNA;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster A; dominant mutation in this gene destabilizes petA mRNA;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; part of Chr_15 NCL gene sub-cluster A; dominant mutation in this gene destabilizes petA mRNA"
+Cre15.g642865									
+Cre15.g634925									
+Cre15.g635350	GMM:26.6	"misc.O-methyl transferases"		"GO:0008168;GO:0006479"	"methyltransferase activity;protein methylation"	PRM4	"Cre15.g635350.t1.1;PRM4;CARM1;g15322.t1"	PRMT4	"Protein-/Histone-arginine N-methyltransferase. Ribosomal L11 methyltransferase-like;"
+Cre15.g640450			Chloroplast			NCL5	"OPR99;Cre15.g640450.t1.1;CLR4;g15385.t1"	NCL5	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; part of Chr_15 NCL gene sub-cluster A; similar to NCL subfamily and in tandem of NCC2, but does not contains a C-terminal RAP domain; probably a pseudogene in CC-4532"
+Cre15.g640250							"Cre15.g640250.t1.1;g15392.t2;g15392.t2;Cre15.g640250.t1.1;g15392.t2;Cre15.g640250.t1.1;g15392.t2;Cre15.g640250.t1.1"		
+Cre15.g635300							g15321.t1		
+Cre15.g636100							g15346.t1		
+Cre15.g639300			Mitochondrion			NCL16			
+Cre15.g635400	GMM:31.7.1	cell.development.zygote	"Secretory pathway"	GO:0005515	"protein binding"	ZYS3	"Cre15.g635400.t1.1;ZYS3;ZYS3-1;g15324.t1;g15324.t1;ZYS3-1;ZYS3;Cre15.g635400.t1.1"	"ZYS3;ZYS3"	"Zygote-specific protein 3; partial sequence contains ankyrin repeats.;Zygote-specific protein 3; partial sequence contains ankyrin repeats."
+Cre15.g635000			Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"				
+Cre43.g760647							g18391.t1		
+Cre43.g760497	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast	GO:0019538	"protein metabolic process"				
+Cre43.g760597			"Secretory pathway"						
+Cre43.g760547			Mitochondrion				g18389.t1		
+Cre25.g756247	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion				"g18274.t1;Cre40.g786150.t1.1;Cre40.g786150.t1.2"		
+Cre25.g756447			Mitochondrion						
+Cre25.g756397							g18284.t2		
+Cre25.g756297									
+Cre25.g756497			Mitochondrion						
+Cre25.g756197									
+Cre25.g756097									
+Cre25.g756347							g18280.t1		
+Cre25.g756147			Mitochondrion						
+Cre18.g749497	GMM:23.1.2.2	"nucleotide metabolism.synthesis.purine.GAR synthetase"	Chloroplast	"GO:0009113;GO:0004637"	"purine nucleobase biosynthetic process;phosphoribosylamine-glycine ligase activity"		"g18106.t1;Cre31.g780250.t1.2;Cre31.g780250.t1.1;Cre31.g780250.t1.2;Cre31.g780250.t1.1;g18106.t1"		
+Cre18.g748497				GO:0042578	"phosphoric ester hydrolase activity"		g18086.t1		
+Cre18.g748347							"Cre31.g779700.t1.1;g18083.t1"		
+Cre18.g749647	GMM:23.1.2.2	"nucleotide metabolism.synthesis.purine.GAR synthetase"	Mitochondrion	"GO:0009113;GO:0004637"	"purine nucleobase biosynthetic process;phosphoribosylamine-glycine ligase activity"		"g18109.t1;Cre31.g780400.t1.2;Cre31.g780400.t1.1"		
+Cre18.g748947	"GMM:34.2;GMM:34.11"	"transport.sugars;transport.NDP-sugars at the ER"	"Secretory pathway"				"g18095.t1;Cre46.g788750.t1.2;Cre46.g788750.t1.1"		
+Cre18.g749197			"Secretory pathway"				"Cre31.g779950.t1.1;g18100.t1"		
+Cre18.g749997							g18116.t1		
+Cre18.g749297			"Secretory pathway"						
+Cre18.g749797	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Mitochondrion			FAP281	"Cre31.g780550.t1.1;FAP281;g18112.t2"	FAP281	"Flagellar Associated Coiled-Coil Protein; found in the flagellar proteome [PMID: 15998802]; transcript upregulated during flagellar regeneration [PMID: 15738400]"
+Cre18.g749097			"Secretory pathway"						
+Cre18.g748197									
+Cre18.g749847	GMM:8.1.1.3	"TCA / organic transformation.TCA.pyruvate DH.E3"	Mitochondrion	"GO:0055114;GO:0045454;GO:0016491"	"oxidation-reduction process;cell redox homeostasis;oxidoreductase activity"	DLD1	"g18113.t1;DLD1;Cre31.g780600.t1.2;Cre31.g780600.t1.1"	DLD1	"Dihydrolipoyl dehydrogenase, mitochondrial precursor; glycine cleavage system L protein (dihydrolipoamide dehydrogenase, EC 1.8.1.4), GCSL. Previously annotated as DLDH1."
+Cre18.g750047	GMM:31.6.1.8	"cell.motility.eukaryotes.flagellar membrane proteins"	"Secretory pathway"			FMG1	"Cre31.g780700.t1.1;FMG1;FMG1-A;FMG1-1;g18117.t1"	FMG1A	"Flagella membrane glycoprotein, minor form; less expressed than FMG1-B. Previously annotated as FMG1-1 in v3, then changed to FMG1-A; a repetitive protein, encoded by a gene characterized by short introns; may not be found in flagella as all peptides and ESTs are shared with FMG1-B to which it is genetically linked; possibly a pseudogene in CC-4532"
+Cre18.g748797							"Cre46.g788900.t2.1;g18092.t2"		
+Cre18.g749547							"g18107.t1;Cre31.g780300.t1.1;g18107.t1;Cre31.g780300.t1.1"		
+Cre18.g749697	"GMM:3.5;GMM:29.7.10"	"minor CHO metabolism.others;protein.glycosylation.core alpha-(1,3)-fucosyltransferase (FucT)"		"GO:0016020;GO:0008417;GO:0006486"	"membrane;fucosyltransferase activity;protein glycosylation"	FUT11	"Cre31.g780450.t1.1;FUT11;g18110.t1;Cre31.g780450.t1.2"		"GT10 family, enzyme responsble for fucosylation as part of N-glycan ; related to Glycoprotein 3-alpha-L-fucosyltransferase A (Core alpha-(1,3)-fucosyltransferase) (Fuc-T C3) (FucTA) (FucT1)"
+Cre18.g748697							"Cre46.g789000.t1.1;g18090.t1"		
+Cre18.g749397	GMM:13.1.3.6.1.1	"amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate kinase"					"g18104.t1;g18104.t1"		
+Cre18.g748297							"g18082.t1;Cre31.g779650.t1.1"		
+Cre18.g749247			"Secretory pathway"				"g18101.t1;Cre31.g780000.t1.1"		
+Cre18.g748397	GMM:1.1.6	"PS.lightreaction.NADH DH"	Mitochondrion			CGL143	"Cre31.g779750.t1.2;g18084.t1;Cre31.g779750.t1.1;Cre31.g779750.t1.1;Cre31.g779750.t1.2;g18084.t1"	"CGL143;CGL143"	
+Cre18.g749947						FAP21	"g18115.t1;Cre31.g780650.t1.1;g18115.t1;Cre31.g780650.t1.1"	"FAP21;FAP21"	"Found in flagellar proteome as Coiled-Coil protein FAP21; Related to EFHB protein in humans;Found in flagellar proteome as Coiled-Coil protein FAP21; Related to EFHB protein in humans"
+Cre18.g748447	GMM:29.8	"protein.assembly and cofactor ligation"	Mitochondrion	"GO:0051536;GO:0016226;GO:0005506"	"iron-sulfur cluster binding;iron-sulfur cluster assembly;iron ion binding"	NFU1	"NFU1;g18085.t1"	NFU1	
+Cre18.g748597							"Cre46.g789050.t1.1;g18088.t1;Cre46.g789050.t1.1;g18088.t1"		
+Cre18.g749147			"Secretory pathway"				"Cre31.g779900.t1.1;g18099.t1"		
+Cre18.g748247									
+Cre18.g748997	GMM:29.7	protein.glycosylation	Mitochondrion				"Cre46.g788700.t1.1;Cre46.g788700.t1.2;g18096.t1"		
+Cre18.g749747			Chloroplast				"g18111.t1;Cre31.g780500.t1.1;Cre31.g780500.t1.1;g18111.t1"		"Was identified as part of Flagellar Associated Protein FAP281, but gene model was later split;Was identified as part of Flagellar Associated Protein FAP281, but gene model was later split"
+Cre18.g748747							"Cre46.g788950.t1.2;Cre46.g788950.t1.1;g18091.t1"		
+Cre18.g748897	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"				"g18094.t1;g18094.t1"		
+Cre18.g749897			Mitochondrion						
+Cre18.g749597									
+Cre18.g748647			Chloroplast						
+Cre18.g748847			"Secretory pathway"				"Cre46.g788850.t1.2;g18093.t1;Cre46.g788850.t1.1"		
+Cre18.g748147			"Secretory pathway"						
+Cre18.g749347							"Cre31.g780100.t1.1;g18103.t1"		
+Cre18.g748097							"Cre31.g779550.t1.1;Cre31.g779550.t1.2;g18078.t1"		
+Cre18.g748547			"Secretory pathway"				"Cre46.g789100.t1.2;g18087.t1;Cre46.g789100.t1.1"		
+Cre18.g749447	"GMM:13.1.3.6.1.10;GMM:13.1.3.6.1.1"	"amino acid metabolism.synthesis.aspartate family.misc.homoserine.bifunctional aspartate kinase/homoserine dehydrogenase;amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate kinase"	Chloroplast	"GO:0055114;GO:0050661;GO:0016597;GO:0016491;GO:0008152;GO:0006520"	"oxidation-reduction process;NADP binding;amino acid binding;oxidoreductase activity;metabolic process;cellular amino acid metabolic process"	AHD1	"Cre31.g780200.t1.1;AHD1;g18105.t1;Cre31.g780200.t1.2;g18105.t1;AHD1;Cre31.g780200.t1.2;Cre31.g780200.t1.1;Cre31.g780200.t1.1;AHD1;g18105.t1;Cre31.g780200.t1.2"	"AHD1;AHD1;AHD1"	"Bifunctional aspartate kinase/homoserine dehydrogenase (AK-HSDH) (EC:2.7.2.4 1.1.1.3), based on similarity to aspartate kinase-homoserine dehydrogenase-like protein (GenBank CAB78973) from Arabidopsis; weak organelle targeting (mitochondria) predicted;Bifunctional aspartate kinase/homoserine dehydrogenase (AK-HSDH) (EC:2.7.2.4 1.1.1.3), based on similarity to aspartate kinase-homoserine dehydrogenase-like protein (GenBank CAB78973) from Arabidopsis; weak organelle targeting (mitochondria) predicted;Bifunctional aspartate kinase/homoserine dehydrogenase (AK-HSDH) (EC:2.7.2.4 1.1.1.3), based on similarity to aspartate kinase-homoserine dehydrogenase-like protein (GenBank CAB78973) from Arabidopsis; weak organelle targeting (mitochondria) predicted"
+Cre18.g749047							"g18097.t1;Cre46.g788650.t1.1;Cre46.g788650.t1.1;g18097.t1;g18097.t1;Cre46.g788650.t1.1"		
+Cre13.g564550	GMM:27.2	RNA.transcription	Mitochondrion	"GO:0006351;GO:0003899"	"transcription, DNA-templated;DNA-directed RNA polymerase activity"	RPC17	"g13889.t1;RPC17;Cre13.g564550.t1.1"	RPC17	"similar to Calcitonin gene-related peptide-receptor component protein (CGRP-receptor component protein) (CGRP-RCP) (CGRPRCP); also high similarity to RNA polymerase III subunit C17 which physically interacts with C31, C11, and TFIIIB70 and may be involved in the recruitment of pol III by the preinitiation complex; overlaps with upstream gene in divergent (head-to-head) orientation"
+Cre13.g590905			"Secretory pathway"				"Cre13.g590905.t1.1;g14491.t1"		
+Cre13.g592100	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"		"GO:0046872;GO:0005515"	"metal ion binding;protein binding"		"g14516.t1;g14516.t1"		
+Cre13.g569275			Mitochondrion				"g14007.t1;Cre13.g569275.t1.1"		
+Cre13.g572150	GMM:26.24	"misc.GCN5-related N-acetyltransferase"		GO:0008080	"N-acetyltransferase activity"		"NAT29;g14070.t1;NAT29;g14070.t1;NAT29;g14070.t1;g14070.t1;NAT29;g14070.t1;NAT29"		"Related to GCN5; null-allele mutant was isolated (PMID 29743196);Related to GCN5; null-allele mutant was isolated (PMID 29743196);Related to GCN5; null-allele mutant was isolated (PMID 29743196);Related to GCN5; null-allele mutant was isolated (PMID 29743196);Related to GCN5; null-allele mutant was isolated (PMID 29743196)"
+Cre13.g582000							"GT90-47;g14290.t1;GT90F47;Cre13.g582000.t1.1"		
+Cre13.g605350			Chloroplast	"GO:0051607;GO:0003725"	"defense response to virus;double-stranded RNA binding"		"g14600.t1;g14600.t1;g14600.t1;g14600.t1;g14600.t1;g14600.t1;g14600.t1;g14600.t1;g14600.t1;g14600.t1;g14600.t1"		
+Cre13.g589550							g14463.t1		
+Cre13.g588350			Mitochondrion	GO:0016773	"phosphotransferase activity, alcohol group as acceptor"		"Cre13.g588350.t1.1;g14432.t1"		
+Cre13.g587550	GMM:30.99	signalling.unspecified	Chloroplast				"g14414.t2;g14414.t2;g14414.t2;g14414.t2;g14414.t2;g14414.t2;g14414.t2;g14414.t2"	"FXL3;FXL3;FXL3;FXL3;FXL3;FXL3;FXL3;FXL3"	"FixL like homolog 3 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 3 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 3 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 3 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 3 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 3 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 3 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 3 (FXL). PAS region shows high identity to Rhizobial FixL proteins."
+Cre13.g586916	GMM:27.1.1	RNA.processing.splicing		GO:0003676	"nucleic acid binding"	SRS6	"g14400.t1;SCL27;Cre13.g586900.t1.3;SRS9"	SRS6	"Serine/arginine-rich pre-mRNA splicing factor protein of the SC35-like subfamily; 27 kD (SCL27); Nearly identical to SC35-like splicing factor SCL28, 28 kD (Arabidopsis thaliana) GI:9843655; contains Pfam profile PF00076: Contains RNA-binding region RNP-1 (RNA recognition motif; RRM, RBD, or RNP domain)"
+Cre13.g565321	GMM:23.1.2.8	"nucleotide metabolism.synthesis.purine.SAICAR lyase"		"GO:0006188;GO:0004018"	"IMP biosynthetic process;N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity"		g13913.t1		
+Cre13.g572650			Chloroplast				g14082.t1	POB13	"Found in basal body proteome"
+Cre13.g602800				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g14538.t1;g14538.t1;g14538.t1;g14538.t1"		
+Cre13.g583350			"Secretory pathway"				"g14323.t1;g14323.t1;g14323.t1"		
+Cre13.g566400			Mitochondrion			OPR55	"g13937.t1;Cre13.g566400.t1.1"	OPR55	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre13.g571251							"g14048.t1;Cre13.g571250.t1.3"		
+Cre13.g579700				GO:0055114	"oxidation-reduction process"		"Cre13.g579700.t1.1;g14242.t1"		
+Cre13.g571450	GMM:21.2	"redox.ascorbate and glutathione"					g14051.t1		
+Cre13.g602550			"Secretory pathway"				"g14561.t1;g14561.t1;g14561.t1;g14561.t1;g14561.t1"		
+Cre13.g583750			"Secretory pathway"	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"g14331.t1;g14331.t1;g14331.t1"		
+Cre13.g590750	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB21	"HTB37;g14487.t1;Cre13.g590750.t1.1;HTB37;g14487.t1;Cre13.g590750.t1.1"	"HTB21;HTB21"	"replication linked H2B; histone gene cluster XXI (type BA) [PMID: 8590479, variant sequence confirmed];replication linked H2B; histone gene cluster XXI (type BA) [PMID: 8590479, variant sequence confirmed]"
+Cre13.g584135							"Cre13.g584150.t1.3;g14340.t1"		
+Cre13.g564650	GMM:34.14	"transport.unspecified cations"		"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	MRS5	"MRS5;g13891.t1;MRS5;g13891.t1;MRS5;g13891.t1;MRS5;g13891.t1"		"Mg2+ transporter protein, CorA-like; related to bacterial homologs; null-allele passenger mutation was isolated (PMID 29743196);Mg2+ transporter protein, CorA-like; related to bacterial homologs; null-allele passenger mutation was isolated (PMID 29743196);Mg2+ transporter protein, CorA-like; related to bacterial homologs; null-allele passenger mutation was isolated (PMID 29743196);Mg2+ transporter protein, CorA-like; related to bacterial homologs; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre13.g588900	GMM:28.99	DNA.unspecified		"GO:0008408;GO:0006139;GO:0003676"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding"	WEX	"g14447.t1;EXN15;WEX;WEX;g14447.t1;EXN15"		"Similar to WEX (AT4G13870) in Arabidopsis thaliana;Similar to WEX (AT4G13870) in Arabidopsis thaliana"
+Cre13.g578074	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					"g14202.t2;Cre13.g578250.t1.2"		
+Cre13.g570400			Chloroplast				"Cre13.g570400.t1.1;g14031.t1"		
+Cre13.g578800						LYR5	"LYR5;Cre13.g578800.t1.1;g14219.t1"		"Proteins in this family have been identified as a component of the higher eukaryotic NADH complex"
+Cre13.g563700			"Secretory pathway"	GO:0005515	"protein binding"	FAP369	g13870.t1	FAP369	"WD40-repeat Protein"
+Cre13.g581050							"GT90-46;g14272.t1;GT90F46;GT90-46;g14272.t1;GT90F46;g14272.t1;GT90-46;GT90F46;g14272.t1;GT90F46;GT90-46;GT90-46;GT90F46;g14272.t1"		
+Cre13.g604400									
+Cre13.g568250				"GO:0016788;GO:0009058"	"hydrolase activity, acting on ester bonds;biosynthetic process"	TEH11			
+Cre13.g580600	GMM:29.1.19	"protein.aa activation.arginine-tRNA ligase"		"GO:0016598;GO:0004057"	"protein arginylation;arginyltransferase activity"	ATE1	"Cre13.g580600.t1.1;ATT1;g14262.t1;Cre13.g580600.t1.1;ATT1;g14262.t1;ATT1;Cre13.g580600.t1.1;g14262.t1"	"ATE1;ATE1;ATE1"	"transfers an Arginyl moiety to the N-terminus or side-chain of target proteins;transfers an Arginyl moiety to the N-terminus or side-chain of target proteins;transfers an Arginyl moiety to the N-terminus or side-chain of target proteins"
+Cre13.g602700	"GMM:33.99;GMM:30.11"	"development.unspecified;signalling.light"		"GO:0005515;GO:0000160"	"protein binding;phosphorelay signal transduction system"		g14564.t1	SPA1	"Mutant de-regulated in NPQ genes, has constitutively high NPQ [PMID:31405963]"
+Cre13.g589167			Chloroplast				"g14454.t1;Cre13.g589167.t1.1;g14454.t1;Cre13.g589167.t1.1"		
+Cre13.g587400			Chloroplast				"g14411.t1;g14411.t1"		
+Cre13.g582250				"GO:0033925;GO:0005737"	"mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase activity;cytoplasm"		"g14296.t1;Cre13.g582250.t1.1"		
+Cre13.g573200			Mitochondrion				"g14094.t1;Cre13.g573200.t1.1"		
+Cre13.g568800	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion	"GO:0022904;GO:0016651;GO:0005743"	"respiratory electron transport chain;oxidoreductase activity, acting on NAD(P)H;mitochondrial inner membrane"	NUOB13	"Cre13.g568800.t1.1;g13997.t1"	NUOB13	"mitochondrial NADH-ubiquinone oxidoreductase (Complex I) homolog to bovine B13 subjnit [gi:34485512]; Ortholog of NDUFA5 in Homo sapiens"
+Cre13.g602300				GO:0008168	"methyltransferase activity"		"Cre13.g602300.t1.1;g14555.t1;TMC4;TMC4;g14555.t1;Cre13.g602300.t1.1"		
+Cre13.g589940							"g14470.t1;g14470.t1;g14470.t1;g14470.t1"		
+Cre13.g572600				GO:0005515	"protein binding"		"g14081.t1;Cre13.g572600.t1.1"		
+Cre13.g576740							g14173.t2		
+Cre13.g600238									
+Cre13.g572950	"GMM:31.2;GMM:27.3.18"	"cell.division;RNA.regulation of transcription.E2F/DP transcription factor family"		"GO:0007049;GO:0006355;GO:0005667;GO:0003700"	"cell cycle;regulation of transcription, DNA-templated;transcription factor complex;transcription factor activity, sequence-specific DNA binding"	E2F2	"E2FR1;g14089.t1"	E2F2	"Related to E2F and DP transcription factors, Chlamydomonas specific. Previously annotated as E2FR1; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre13.g607450	GMM:3.5	"minor CHO metabolism.others"		"GO:0006071;GO:0004371"	"glycerol metabolic process;glycerone kinase activity"	DAK1	"g14645.t1;DAK1"	DAK1	"contains Pfam domains, PF02733: DAK1 domain and PF02734: DAK2 domain"
+Cre13.g570450							g14032.t1		
+Cre13.g576350	GMM:29.6.1	"protein.folding.prefoldin and trigger factor"				PFP2	"g14163.t1;PFP2;Cre13.g576350.t1.1"		
+Cre13.g567600	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"	Mitochondrion	"GO:0005740;GO:0004129"	"mitochondrial envelope;cytochrome-c oxidase activity"	COX4	"g13967.t1;Cre13.g567600.t1.1;COX4;COX4;g13967.t1;Cre13.g567600.t1.1;g13967.t1;COX4;Cre13.g567600.t1.1"	"COX4;COX4;COX4"	"Cytochrome c oxidase, subunit 4 (mitochondrial precursor)(human subunit Vb/ yeast subunit COX4). Previously named COX5b;;Cytochrome c oxidase, subunit 4 (mitochondrial precursor)(human subunit Vb/ yeast subunit COX4). Previously named COX5b;;Cytochrome c oxidase, subunit 4 (mitochondrial precursor)(human subunit Vb/ yeast subunit COX4). Previously named COX5b;"
+Cre13.g568050	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"CKIN2.14;g13978.t1;g13978.t1;CKIN2.14"	"SNRK2N;SNRK2N"	"Mediates abiotic stress responses;Mediates abiotic stress responses"
+Cre13.g604850				"GO:0070552;GO:0070531;GO:0045739"	"BRISC complex;BRCA1-A complex;positive regulation of DNA repair"		g14590.t1		
+Cre13.g573750			Mitochondrion				"Cre13.g573750.t1.1;g14105.t1"		
+Cre13.g581750							"Cre13.g581750.t1.1;g14286.t1"		
+Cre13.g588050				GO:0003676	"nucleic acid binding"		"g14425.t1;Cre13.g588050.t1.1"		
+Cre13.g585175									
+Cre13.g574800	GMM:21.2	"redox.ascorbate and glutathione"				CYB3	"g14128.t1;CYB5-3;Cre13.g574800.t1.1;CYB3;CYB3;Cre13.g574800.t1.1;g14128.t1;CYB5-3"	"CYB3;CYB3"	
+Cre13.g578350	GMM:26.13	"misc.acid and other phosphatases"	"Secretory pathway"	GO:0016787	"hydrolase activity"	MPA11	"MPA11;Cre13.g578350.t1.1;g14209.t1;g14209.t1;Cre13.g578350.t1.1;MPA11;g14209.t1;Cre13.g578350.t1.1;MPA11;Cre13.g578350.t1.1;g14209.t1;MPA11;MPA11;Cre13.g578350.t1.1;g14209.t1;Cre13.g578350.t1.1;g14209.t1;MPA11;g14209.t1;MPA11;Cre13.g578350.t1.1"		"Metallophosphoesterase/metallo-dependent phosphatase with purpe acid phosphatase domain;Metallophosphoesterase/metallo-dependent phosphatase with purpe acid phosphatase domain;Metallophosphoesterase/metallo-dependent phosphatase with purpe acid phosphatase domain;Metallophosphoesterase/metallo-dependent phosphatase with purpe acid phosphatase domain;Metallophosphoesterase/metallo-dependent phosphatase with purpe acid phosphatase domain;Metallophosphoesterase/metallo-dependent phosphatase with purpe acid phosphatase domain;Metallophosphoesterase/metallo-dependent phosphatase with purpe acid phosphatase domain"
+Cre13.g583000			Chloroplast						
+Cre13.g563550	"GMM:3.4.5;GMM:3.4.1;GMM:28.1"	"minor CHO metabolism.myo-inositol.inositol phosphatase;minor CHO metabolism.myo-inositol.poly-phosphatases;DNA.synthesis/chromatin structure"		GO:0005515	"protein binding"		"IPP8;g13867.t1;IPP8;g13867.t1;IPP8;g13867.t1"		"Inositol polyphosphate related phosphatase with C2 calcium-dependent membrane targeting domain and SH2-domain. May be a phosphoinositide 5-phosphatase or inositol-polyphosphate 5-phosphatase;Inositol polyphosphate related phosphatase with C2 calcium-dependent membrane targeting domain and SH2-domain. May be a phosphoinositide 5-phosphatase or inositol-polyphosphate 5-phosphatase;Inositol polyphosphate related phosphatase with C2 calcium-dependent membrane targeting domain and SH2-domain. May be a phosphoinositide 5-phosphatase or inositol-polyphosphate 5-phosphatase"
+Cre13.g606050	GMM:29.1.1	"protein.aa activation.tyrosine-tRNA ligase"	Chloroplast	"GO:0006418;GO:0005524;GO:0004831;GO:0004812;GO:0003723;GO:0000166"	"tRNA aminoacylation for protein translation;ATP binding;tyrosine-tRNA ligase activity;aminoacyl-tRNA ligase activity;RNA binding;nucleotide binding"	TSY1	"Cre13.g606050.t1.1;g14615.t1;TSY1"	TSY1	
+Cre13.g578850	GMM:31.6.1.11	cell.motility.eukaryotes.other					g14220.t1		
+Cre13.g603176				"GO:0055114;GO:0050661;GO:0050660;GO:0004499"	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"		"g14545.t1;g14545.t1"		
+Cre13.g607550							"Cre13.g607550.t1.1;g14647.t1"		
+Cre13.g575800				GO:0004425	"indole-3-glycerol-phosphate synthase activity"	IGS1	"g14152.t1;Cre13.g575800.t1.1;IGS1"	IGS1	"Possible indole-3-glycerol phosphate synthase (EC 4.1.1.48) (IGPS; trpC); involved in tryptophan biosynthesis"
+Cre13.g579500	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"	Mitochondrion						
+Cre13.g565000							"g13900.t1;g13900.t1"		
+Cre13.g607500	GMM:28.2	DNA.repair		"GO:0043564;GO:0042162;GO:0006303;GO:0005634;GO:0004003;GO:0003684;GO:0003677;GO:0000723"	"Ku70:Ku80 complex;telomeric DNA binding;double-strand break repair via nonhomologous end joining;nucleus;ATP-dependent DNA helicase activity;damaged DNA binding;DNA binding;telomere maintenance"		"g14646.t1;Cre13.g607500.t1.1"	KU70	"increased sensitivity to double-stranded breaks; interacts with Ku80 for non-homologous end joining"
+Cre13.g566000	"GMM:25.8;GMM:25.2;GMM:25"	"C1-metabolism.tetrahydrofolate synthase;C1-metabolism.formate-tetrahydrofolate ligase;C1-metabolism"		"GO:0009396;GO:0005524;GO:0004329"	"folic acid-containing compound biosynthetic process;ATP binding;formate-tetrahydrofolate ligase activity"		"g13929.t1;Cre13.g566000.t1.1;FTL1"		"FTHFS, metabolism of tetrahydrofolate-bound one-carbon units, cytosolic protein."
+Cre13.g569350	"GMM:26.11.1;GMM:26.11;GMM:16.8.3.1"	"misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols.dihydroflavonol 4-reductase"	Mitochondrion	"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"	SNE16	"g14010.t1;SNE16;Cre13.g569350.t1.1"		"NAD dependent epimerase/dehydratase with posible flavanone 4-reductase activity"
+Cre13.g591650							"g14507.t1;Cre13.g591650.t1.1"		
+Cre13.g607750						DRC2	"FAP250;g14651.t1;CCDC65;Cre13.g607750.t1.1"	DRC2	"Flagellar Associated Protein 250; identified in the flagellar basal body proteome; Upregulated by deflagellation; Similar to NYD-SP28; Central hub for assembly of the N-DRC"
+Cre13.g583972			Mitochondrion				"g14337.t1;g14337.t1"		
+Cre13.g603900	GMM:29.1.20	"protein.aa activation.phenylalanine-tRNA ligase"		"GO:0006432;GO:0005524;GO:0004826;GO:0003723;GO:0000287"	"phenylalanyl-tRNA aminoacylation;ATP binding;phenylalanine-tRNA ligase activity;RNA binding;magnesium ion binding"	TSF1	"g14572.t1;Cre13.g603900.t1.1;TSF1"	TSF1	
+Cre13.g590300	GMM:23.3.2.2	"nucleotide metabolism.salvage.nucleoside kinases.uridine kinase"		"GO:0016301;GO:0008152;GO:0005524"	"kinase activity;metabolic process;ATP binding"	URK2	"URK2;g14476.t1;URK2;g14476.t1;URK2;g14476.t1"	"CMPK1;CMPK1;CMPK1"	"ATP binding / adenylate cyclase/ kinase/ uridine kinase - cd228, UMPK_like, Uridine monophosphate kinase_like (UMPK_like) is a family of proteins highly similar to the uridine monophosphate kinase (UMPK, EC 2.7.1.48);ATP binding / adenylate cyclase/ kinase/ uridine kinase - cd228, UMPK_like, Uridine monophosphate kinase_like (UMPK_like) is a family of proteins highly similar to the uridine monophosphate kinase (UMPK, EC 2.7.1.48);ATP binding / adenylate cyclase/ kinase/ uridine kinase - cd228, UMPK_like, Uridine monophosphate kinase_like (UMPK_like) is a family of proteins highly similar to the uridine monophosphate kinase (UMPK, EC 2.7.1.48)"
+Cre13.g580300	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"	CGLD4	"ABC3;Cre13.g580300.t1.1;g14256.t1"	CGLD4	
+Cre13.g579767									
+Cre13.g583600	GMM:11.10.2	"lipid metabolism.glycolipid synthesis.DGDG synthase"				DGD1	"Cre13.g583600.t1.1;g14328.t1"	DGD1	"Galactolipid galactosyltransferase; TS-lethal mutant was isolated (PMID 29743196)"
+Cre13.g572500	"GMM:18.4.5;GMM:18.4.1"	"Co-factor and vitamine metabolism.pantothenate.pantothenate kinase (PANK);Co-factor and vitamine metabolism.pantothenate.branched-chain amino acid aminotransferase"				CGL14	"COA2;g14079.t1;Cre13.g572500.t1.1"	CGL14	
+Cre13.g602950			Chloroplast	GO:0016787	"hydrolase activity"		"g14541.t2;g14541.t2"		
+Cre13.g606150							g14617.t1		
+Cre13.g581200			Mitochondrion				"g14275.t1;g14275.t1;g14275.t1"		
+Cre13.g591800							"g14510.t1;Cre13.g591800.t1.1;g14510.t1;Cre13.g591800.t1.1"		
+Cre13.g575000	GMM:9.6	"mitochondrial electron transport / ATP synthesis.cytochrome c"				CCS1	"g14132.t1;g14132.t1"	"CCS1;CCS1"	"Protein required for cytochrome c synthesis/biogenesis with homology to ResB, Ycf44 [PMID: 12427747; PMID: 9395519]; mutated in ac26 mutant;Protein required for cytochrome c synthesis/biogenesis with homology to ResB, Ycf44 [PMID: 12427747; PMID: 9395519]; mutated in ac26 mutant"
+Cre13.g567750	GMM:27.1.1	RNA.processing.splicing		"GO:0008380;GO:0005681"	"RNA splicing;spliceosomal complex"	PRP18	"Cre13.g567750.t1.1;PRP18;g13971.t1;g13971.t1;Cre13.g567750.t1.1;PRP18;g13971.t1;PRP18;Cre13.g567750.t1.1"	"PRP18;PRP18;PRP18"	"putative HPRP18 Pre-mRNA splicing factor 18 (PRP18 homolog), U5 associated; (SMP10);putative HPRP18 Pre-mRNA splicing factor 18 (PRP18 homolog), U5 associated; (SMP10);putative HPRP18 Pre-mRNA splicing factor 18 (PRP18 homolog), U5 associated; (SMP10)"
+Cre13.g606652			Mitochondrion						
+Cre13.g565116							"Cre13.g565100.t1.2;g13903.t1"		
+Cre13.g588550	GMM:31.4	"cell.vesicle transport"		"GO:0016020;GO:0005515"	"membrane;protein binding"	SYP1	"g14438.t1;Cre13.g588550.t1.1;SYP1;g14438.t1;SYP1;Cre13.g588550.t1.1"	"SYP1;SYP1"	"Expressed Protein. Similar to SYP1/syntaxin 1-type Qa-SNAREs, involved in Plasma Membrane trafficking.;Expressed Protein. Similar to SYP1/syntaxin 1-type Qa-SNAREs, involved in Plasma Membrane trafficking."
+Cre13.g571650	GMM:27.2	RNA.transcription		"GO:0006351;GO:0003899;GO:0003677"	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPB10	"RPB10;g14058.t1;Cre13.g571650.t1.1"	RPB10	"DNA-directed RNA polymerases I, II, and III 8.3 kDa polypeptide; ABC10-beta; ABC8"
+Cre13.g566850						SOUL2	"SOUL2;Cre13.g566850.t1.1;g13948.t1;SOUL2;Cre13.g566850.t1.1;g13948.t1"		"similar to plant SOUL protein, putative heme-binding domain; found in Chlamydomonas phosphoproteome; peptide data at N-term of model suggests that phosphorylation interferes with N-terminal Met cleavage: normally the MSSI... sequence should be matured to Ac-SSI;similar to plant SOUL protein, putative heme-binding domain; found in Chlamydomonas phosphoproteome; peptide data at N-term of model suggests that phosphorylation interferes with N-terminal Met cleavage: normally the MSSI... sequence should be matured to Ac-SSI"
+Cre13.g586883									
+Cre13.g575600							"g14147.t1;Cre13.g575600.t1.1"		
+Cre13.g581500			Chloroplast			OPR41	g14281.t1	OPR41	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre13.g562100							"g13834.t1;Cre13.g562100.t1.1"		
+Cre13.g606800			Chloroplast				"Cre13.g606800.t1.1;g14630.t1"		
+Cre13.g590251			Chloroplast	"GO:0008061;GO:0006030;GO:0005576"	"chitin binding;chitin metabolic process;extracellular region"				
+Cre13.g565700							"g13923.t1;g13923.t1;g13923.t1;g13923.t1"		
+Cre13.g581900			Chloroplast				g14289.t1		
+Cre13.g581400	"GMM:34.99;GMM:34.9;GMM:34.8"	"transport.misc;transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane"	Chloroplast	"GO:0016021;GO:0006810;GO:0005524;GO:0005471"	"integral component of membrane;transport;ATP binding;ATP:ADP antiporter activity"	AAA2	"g14279.t1;AAA2;AAA2;g14279.t1;g14279.t1;AAA2"	"NNT1;NNT1;NNT1"	"ADP,ATP carrier protein; Belongs to a plant-specific transporter family; Similar to NNT1 (AT1G80300.1) and NNT2 (AT1G15500.1) in Arabidopsis thaliana;ADP,ATP carrier protein; Belongs to a plant-specific transporter family; Similar to NNT1 (AT1G80300.1) and NNT2 (AT1G15500.1) in Arabidopsis thaliana;ADP,ATP carrier protein; Belongs to a plant-specific transporter family; Similar to NNT1 (AT1G80300.1) and NNT2 (AT1G15500.1) in Arabidopsis thaliana"
+Cre13.g577600			Mitochondrion				"g14192.t1;Cre13.g577600.t1.1;Cre13.g577600.t1.1;g14192.t1"		
+Cre13.g580150	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"		"MOT2.1;SAMT1;g14253.t1;g14253.t1;MOT2.1;SAMT1"	"MOT2A;MOT2A"	"Knockdown of expression impairs molybdate transport; heterologous expression confers molybdate transport capability in yeast; Probably plasma membrane localized; One of two MOT2 paralogs (Cre13.g580150 and Cre16.g695500); Note: not to be confused with Cre06.g309800 which was previously annotated as MOT2 as a motility-related gene;Knockdown of expression impairs molybdate transport; heterologous expression confers molybdate transport capability in yeast; Probably plasma membrane localized; One of two MOT2 paralogs (Cre13.g580150 and Cre16.g695500); Note: not to be confused with Cre06.g309800 which was previously annotated as MOT2 as a motility-related gene"
+Cre13.g563876									
+Cre13.g588100	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN19-3	"ROC2;g14426.t1;CYN19-3;Cre13.g588100.t1.1;CYN5;CYN19-3;g14426.t1;ROC2;CYN5;Cre13.g588100.t1.1"	"CYN19C;CYN19C"	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to ROC2 (AtCYP19-3);Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to ROC2 (AtCYP19-3)"
+Cre13.g605250							g14598.t1		
+Cre13.g564583			Chloroplast				g13890.t1		
+Cre13.g567550	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g13966.t1;g13966.t1"		
+Cre13.g569550	GMM:30.2.11	"signalling.receptor kinases.leucine rich repeat XI"					"g14014.t1;g14014.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre13.g584170			Mitochondrion						
+Cre13.g572200	GMM:34.3	"transport.amino acids"	Mitochondrion	GO:0003333	"amino acid transmembrane transport"		"g14071.t1;Cre13.g572200.t1.1;Cre13.g572200.t1.1;g14071.t1"		
+Cre13.g569250			Chloroplast			CGLD9	"g14006.t1;Cre13.g569250.t1.1"	CGLD9	
+Cre13.g571902			Mitochondrion				g14064.t1		
+Cre13.g567800	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0008601;GO:0007165;GO:0000159"	"protein phosphatase type 2A regulator activity;signal transduction;protein phosphatase type 2A complex"		"g13972.t1;Cre13.g567800.t1.1;PPP41;PP2A2;PP2A2;g13972.t1;PPP41;Cre13.g567800.t1.1;Cre13.g567800.t1.1;PPP41;g13972.t1;PP2A2;g13972.t1;Cre13.g567800.t1.1;PPP41;PP2A2;Cre13.g567800.t1.1;PPP41;g13972.t1;PP2A2;Cre13.g567800.t1.1;PPP41;g13972.t1;PP2A2"		"contains B56 domain; homology to the Ser-/Thr-protein phosphatase2A (widerborst) regulatory subunit of Drosophila where it is involved in the circadian clock;contains B56 domain; homology to the Ser-/Thr-protein phosphatase2A (widerborst) regulatory subunit of Drosophila where it is involved in the circadian clock;contains B56 domain; homology to the Ser-/Thr-protein phosphatase2A (widerborst) regulatory subunit of Drosophila where it is involved in the circadian clock;contains B56 domain; homology to the Ser-/Thr-protein phosphatase2A (widerborst) regulatory subunit of Drosophila where it is involved in the circadian clock;contains B56 domain; homology to the Ser-/Thr-protein phosphatase2A (widerborst) regulatory subunit of Drosophila where it is involved in the circadian clock;contains B56 domain; homology to the Ser-/Thr-protein phosphatase2A (widerborst) regulatory subunit of Drosophila where it is involved in the circadian clock"
+Cre13.g586650	GMM:30.99	signalling.unspecified	Mitochondrion	GO:0006355	"regulation of transcription, DNA-templated"	FXL1	"g14394.t1;FXL1;FXL1;g14394.t1;g14394.t1;FXL1;g14394.t1;FXL1;FXL1;g14394.t1;FXL1;g14394.t1;FXL1;g14394.t1;g14394.t1;FXL1;FXL1;g14394.t1;FXL1;g14394.t1"	"FXL1;FXL1;FXL1;FXL1;FXL1;FXL1;FXL1;FXL1;FXL1;FXL1"	"FixL like homolog 1 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 1 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 1 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 1 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 1 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 1 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 1 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 1 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 1 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 1 (FXL). PAS region shows high identity to Rhizobial FixL proteins."
+Cre13.g564700							"g13892.t1;Cre13.g564700.t1.1;Cre13.g564700.t1.1;g13892.t1;Cre13.g564700.t1.1;g13892.t1;Cre13.g564700.t1.1;g13892.t1;Cre13.g564700.t1.1;g13892.t1;g13892.t1;Cre13.g564700.t1.1"		
+Cre13.g563733	"GMM:30.6;GMM:29.4.1"	"signalling.MAP kinases;protein.postranslational modification.kinase"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g13871.t1;g13871.t1"		
+Cre13.g591550	GMM:27.4	"RNA.RNA binding"	"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR20	"SRR20;g14505.t1;SRR20;g14505.t1"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912)"
+Cre13.g564400						FAP161	"Cre13.g564400.t1.1;g13885.t1"	FAP161	"Flagellar Associated Protein, found in the flagellar proteome"
+Cre13.g584600							"g14349.t1;g14349.t1"		
+Cre13.g568950			Chloroplast	GO:0016787	"hydrolase activity"		g14000.t1		
+Cre13.g604800							"Cre13.g604800.t1.1;g14589.t1"		
+Cre13.g607950						SELK	"g14655.t1;Cre13.g607950.t1.1;SELK;SELENOK"	SELK1	"Selenocysteine in position 91; SECIS element in 3'-UTR"
+Cre13.g588750			"Secretory pathway"	GO:0016757	"transferase activity, transferring glycosyl groups"		"g14444.t1;g14444.t1"		
+Cre13.g576720			"Secretory pathway"						
+Cre13.g571300			Chloroplast				"g14049.t1;Cre13.g571300.t1.1;Cre13.g571300.t1.1;g14049.t1"		
+Cre13.g583325									
+Cre13.g579582	GMM:2.1.2.2	"major CHO metabolism.synthesis.starch.starch synthase"							
+Cre13.g567700	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		GO:0003677	"DNA binding"	HAV2	"HAV;Cre13.g567700.t1.1;g13970.t1"	HAV2	"ChromoDB HTA344; not replication-linked, contains introns and polyA-tail"
+Cre13.g590800	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA21	"g14488.t1;Cre13.g590800.t1.1;HTA37"	HTA21	"replication linked H2A; histone gene cluster XXI (type BA)"
+Cre13.g587600			Mitochondrion				"Cre13.g587600.t1.1;g14415.t1;g14415.t1;Cre13.g587600.t1.1;Cre13.g587600.t1.1;g14415.t1;g14415.t1;Cre13.g587600.t1.1"		
+Cre13.g566951							g13951.t1		
+Cre13.g589300	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0007076;GO:0000796"	"mitotic chromosome condensation;condensin complex"		"g14457.t1;CND2;Cre13.g589300.t1.1"		"Condensin complex subunit H protein, ChromDB CPH341"
+Cre13.g592550							"g14525.t1;g14525.t1;g14525.t1"		
+Cre13.g581450	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	"protein binding"	RPN7	"RPN7;g14280.t2;Cre13.g581450.t1.1;RPN7;Cre13.g581450.t1.1;g14280.t2"	"RPN7;RPN7"	"26S proteasome regulatory complex, lid subcomplex, non-ATPase subunit RPN7 (subunit 6) (PSD6);26S proteasome regulatory complex, lid subcomplex, non-ATPase subunit RPN7 (subunit 6) (PSD6)"
+Cre13.g582713	"GMM:3.6;GMM:29.4"	"minor CHO metabolism.callose;protein.postranslational modification"							
+Cre13.g574650							g14125.t1		
+Cre13.g570350	"GMM:35.1.1;GMM:34.16;GMM:20.2"	"not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems;stress.abiotic"	Chloroplast			AKC4	"g14030.t2;g14030.t2;g14030.t2;g14030.t2;g14030.t2"	"AKC4;AKC4;AKC4;AKC4;AKC4"	
+Cre13.g571500						CST2	"g14052.t1;Cre13.g571500.t1.1;CST2"		"transmembrane protein; shows similarity to various transporters and permeases; highly expressed; small gene family on chromosome 13, appears specific to Chlamydomonadales"
+Cre13.g577250	GMM:24	"biodegradation of xenobiotics"	Chloroplast			GOX14	"g14185.t1;GOX14;Cre13.g577250.t1.1"	GOX14	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); d"
+Cre13.g572450				GO:0000160	"phosphorelay signal transduction system"		"g14078.t1;Cre13.g572450.t1.1"		
+Cre13.g580650	GMM:29.4	"protein.postranslational modification"		GO:0019211	"phosphatase activator activity"		"g14263.t1;Cre13.g580650.t1.1;PYP1;Cre13.g580650.t1.1;g14263.t1;PYP1"		"PTPA; helps activate phospholipase 2A;PTPA; helps activate phospholipase 2A"
+Cre13.g577750							g14195.t1		
+Cre13.g582050							"g14291.t1;Cre13.g582050.t1.1"		
+Cre13.g607150	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG57	"CYG67;CYG6;g14639.t1;CYG57"		"Internal domains similar to Guanylyl cyclase, isoform C [Drosophila melanogaster]; similar to adenylate cyclase, type II (EC 4.6.1.1) (ATP pyrophosphate-lyase 2)"
+Cre13.g568850	"GMM:29.8;GMM:18.7"	"protein.assembly and cofactor ligation;Co-factor and vitamine metabolism.iron-sulphur clusters"	"Secretory pathway"	"GO:0051536;GO:0016226;GO:0005506"	"iron-sulfur cluster binding;iron-sulfur cluster assembly;iron ion binding"	ISU1	"Cre13.g568850.t1.1;NFU1;g13998.t1"	ISU1	"Iron-sulfur cluster assembly scaffold protein; homology to E. coli IscU and yeast ISU1; possibly localized to mitochondria. [PMID: 12553879]"
+Cre13.g605750							"g14609.t1;Cre13.g605750.t1.1"		
+Cre13.g581100			Chloroplast	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"				
+Cre13.g574250	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g14116.t1;MLTK1;MLTK;g14116.t1;MLTK1;MLTK;g14116.t1;MLTK;MLTK1"		
+Cre13.g582270	GMM:2.2.1.3.2	"major CHO metabolism.degradation.sucrose.invertases.cell wall"	Mitochondrion			FFT3	"FFT3;g14297.t1"		"Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase"
+Cre13.g576400	GMM:26.26.1	"misc.aminotransferases.aminotransferase class IV family protein"	Chloroplast	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"BCA4;Cre13.g576400.t1.1;ADCL1;g14164.t1"		
+Cre13.g592150	"GMM:29.2.3;GMM:27.1.2"	"protein.synthesis.initiation;RNA.processing.RNA helicase"	Chloroplast	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"		"PRP28;Cre13.g592150.t1.1;SPL28;g14517.t1;Cre13.g592150.t1.1;PRP28;SPL28;g14517.t1;SPL28;Cre13.g592150.t1.1;g14517.t1;PRP28;Cre13.g592150.t1.1;PRP28;SPL28;g14517.t1"		"similar to YEAST Pre-mRNA-splicing ATP-dependent RNA helicase PRP28 (Helicase CA8)gi 1172596 sp P23394;similar to YEAST Pre-mRNA-splicing ATP-dependent RNA helicase PRP28 (Helicase CA8)gi 1172596 sp P23394;similar to YEAST Pre-mRNA-splicing ATP-dependent RNA helicase PRP28 (Helicase CA8)gi 1172596 sp P23394;similar to YEAST Pre-mRNA-splicing ATP-dependent RNA helicase PRP28 (Helicase CA8)gi 1172596 sp P23394"
+Cre13.g583700			"Secretory pathway"				"g14330.t1;g14330.t1"		
+Cre13.g604350	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"				
+Cre13.g582290									
+Cre13.g589870			Chloroplast	GO:0016787	"hydrolase activity"		"g14469.t1;g14469.t1;g14469.t1;g14469.t1"		
+Cre13.g577900							"Cre13.g577900.t1.1;g14199.t1"		
+Cre13.g561900	GMM:27.1.19	RNA.processing.ribonucleases		"GO:0004523;GO:0003723"	"RNA-DNA hybrid ribonuclease activity;RNA binding"				
+Cre13.g573150	GMM:29.5.3	"protein.degradation.cysteine protease"	Chloroplast				"g14093.t1;FPN5;FPN5;g14093.t1;g14093.t1;FPN5;g14093.t1;FPN5"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre13.g569700			Chloroplast			MBC1	"g14017.t1;OPR56"	MBC1	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; mutant lacks PSII acitivty and psbC mRNA"
+Cre13.g583550	"GMM:27.3.99;GMM:1.1.99"	"RNA.regulation of transcription.unclassified;PS.lightreaction.unspecified"	Chloroplast			VIPP1	"VIP1;g14327.t1;Cre13.g583550.t1.1"	VIPP1	"Plays an important role in thylakoid biogenesis; forms rings that assemble into baskets and rods that tubulate chloroplast membranes; oligomers are assembled and disassembled via the chloroplast HSP70B-CDJ2-CGE1 chaperone system; bridges chloroplast envelopes with thylakoids; forms heterooligomers with VIPP2 under stress, required also to maintain thylakoid membrane integrity under stress"
+Cre13.g593833									
+Cre13.g606500							"Cre13.g606500.t1.1;g14623.t1"		
+Cre13.g582950									
+Cre13.g585026			Mitochondrion						
+Cre13.g585200			Chloroplast						
+Cre13.g590225									
+Cre13.g589800	GMM:34.14	"transport.unspecified cations"	"Secretory pathway"	"GO:0055085;GO:0016021;GO:0015299;GO:0006812"	"transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport"		"Cre13.g589800.t1.1;g14468.t1"		
+Cre13.g586700	GMM:30.99	signalling.unspecified					"g14395.t2;g14395.t2;g14395.t2;g14395.t2;g14395.t2;g14395.t2;g14395.t2"	"FXL2;FXL2;FXL2;FXL2;FXL2;FXL2;FXL2"	"FixL like homolog 2 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 2 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 2 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 2 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 2 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 2 (FXL). PAS region shows high identity to Rhizobial FixL proteins.;FixL like homolog 2 (FXL). PAS region shows high identity to Rhizobial FixL proteins."
+Cre13.g574400	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG55	"CYG55;g14120.t1;g14120.t1;CYG55;CYG55;g14120.t1;CYG55;g14120.t1;g14120.t1;CYG55;CYG55;g14120.t1;CYG55;g14120.t1;CYG55;g14120.t1"		"Protein with domain similar to Guanylate cyclase soluble, beta-2 chain (GCS-beta-2) [Bos taurus];Protein with domain similar to Guanylate cyclase soluble, beta-2 chain (GCS-beta-2) [Bos taurus];Protein with domain similar to Guanylate cyclase soluble, beta-2 chain (GCS-beta-2) [Bos taurus];Protein with domain similar to Guanylate cyclase soluble, beta-2 chain (GCS-beta-2) [Bos taurus];Protein with domain similar to Guanylate cyclase soluble, beta-2 chain (GCS-beta-2) [Bos taurus];Protein with domain similar to Guanylate cyclase soluble, beta-2 chain (GCS-beta-2) [Bos taurus];Protein with domain similar to Guanylate cyclase soluble, beta-2 chain (GCS-beta-2) [Bos taurus];Protein with domain similar to Guanylate cyclase soluble, beta-2 chain (GCS-beta-2) [Bos taurus]"
+Cre13.g584950			Mitochondrion				g14358.t1		
+Cre13.g570500	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion				"g14033.t1;g14033.t1"		
+Cre13.g566700	GMM:27.1.1	RNA.processing.splicing		"GO:0017069;GO:0003676;GO:0000398"	"snRNA binding;nucleic acid binding;mRNA splicing, via spliceosome"		"g13945.t1;g13945.t1"		
+Cre13.g589000							"g14450.t1;Cre13.g589000.t1.1"		
+Cre13.g565950	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"	GO:0046872	"metal ion binding"		"g13928.t1;Cre13.g565950.t1.1"		
+Cre13.g579800	"GMM:23.4.99;GMM:13.1.2.3.2"	"nucleotide metabolism.phosphotransfer and pyrophosphatases.misc;amino acid metabolism.synthesis.glutamate family.arginine.acetylglutamate kinase"	Chloroplast				"g14245.t1;Cre13.g579800.t1.1"		
+Cre13.g575050									
+Cre13.g586150							g14384.t1		
+Cre13.g574100							"g14113.t1;g14113.t1"		
+Cre13.g602425			Mitochondrion						
+Cre13.g575650	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g14148.t1;g14148.t1"		
+Cre13.g605368							"g14601.t1;g14601.t1"		
+Cre13.g562950	"GMM:31.2;GMM:29.5.11.4.4"	"cell.division;protein.degradation.ubiquitin.E3.APC"				APC6	"DIV38;g13853.t1;CDC16;g13853.t1;DIV38;CDC16"	"APC6;APC6"	"Subunit 6 of Anaphase promoting complex. Cell cycle regulated E3 ubiquitin ligase. Homolog of CDC16.ts lethal mutations block before anaphase (PMID 25336509);Subunit 6 of Anaphase promoting complex. Cell cycle regulated E3 ubiquitin ligase. Homolog of CDC16.ts lethal mutations block before anaphase (PMID 25336509)"
+Cre13.g567300				"GO:0030976;GO:0003824"	"thiamine pyrophosphate binding;catalytic activity"		g13959.t1		"A Thiamine pyrophosphate dependent enzyme"
+Cre13.g581801				GO:0005515	"protein binding"		"g14287.t1;Cre13.g581800.t1.3"		
+Cre13.g591750			"Secretory pathway"				"g14509.t1;g14509.t1"		
+Cre13.g561950			Mitochondrion						
+Cre13.g562350			Mitochondrion						
+Cre13.g578900			Chloroplast				"Cre13.g578900.t1.1;g14221.t1"		
+Cre13.g592350							"g14521.t1;Cre13.g592350.t1.1;g14521.t1;Cre13.g592350.t1.1;g14521.t1;Cre13.g592350.t1.1;Cre13.g592350.t1.1;g14521.t1"		
+Cre13.g565750	GMM:29.2.4	protein.synthesis.elongation				EFG4	"Cre13.g565750.t1.1;g13924.t2;Cre13.g565750.t1.1;g13924.t2;g13924.t2;Cre13.g565750.t1.1;Cre13.g565750.t1.1;g13924.t2"	"EFG4;EFG4;EFG4;EFG4"	"GTP binding elongation factor-like protein. Similarity to yeast Hbs1p which plays a role in nonsense-mediated decay;GTP binding elongation factor-like protein. Similarity to yeast Hbs1p which plays a role in nonsense-mediated decay;GTP binding elongation factor-like protein. Similarity to yeast Hbs1p which plays a role in nonsense-mediated decay;GTP binding elongation factor-like protein. Similarity to yeast Hbs1p which plays a role in nonsense-mediated decay"
+Cre13.g562700	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB51	"g13848.t1;CSB51;TNP34"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre13.g588271							"Cre13.g588271.t1.1;g14430.t1;Cre13.g588271.t1.1;g14430.t1;g14430.t1;Cre13.g588271.t1.1"		
+Cre13.g584775			Chloroplast						
+Cre13.g588501									
+Cre13.g569950	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR20	"HTR2;g14022.t1;Cre13.g569950.t1.1"	HTR20	"Replication linked H3; histone gene cluster XX (type 34BA)"
+Cre13.g570951			Chloroplast				g14042.t1		
+Cre13.g576050	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	ZIP2	"g14157.t1;CrZIP10;CrZIP10;g14157.t1"	"ZIP2;ZIP2"	"Similarity to ZIP Subfamily II;Similarity to ZIP Subfamily II"
+Cre13.g563900			"Secretory pathway"			UBL1	"g13875.t1;UBL1"		"N-terminal has similarity to ubiquitin, but none of the Lys residues are conserved; this is the less-well conserved member of the UBL gene family"
+Cre13.g603450			Chloroplast				"Cre13.g603450.t1.1;g14550.t1;Cre13.g603450.t1.1;g14550.t1"		
+Cre13.g566050	GMM:27.1	RNA.processing				SMP2	"g13930.t1;Cre13.g566050.t1.1;SMP2"	SMP2	"putative sm protein G, (snRNP-G) SNRPG; small nuclear ribonucleoprotein polypeptide G"
+Cre13.g588368									
+Cre13.g581150				GO:0008080	"N-acetyltransferase activity"		"NAT30;Cre13.g581150.t1.1;g14274.t1"		"Related to GCN5"
+Cre13.g564350	"GMM:29.4.1;GMM:28.2"	"protein.postranslational modification.kinase;DNA.repair"		"GO:0016773;GO:0005515"	"phosphotransferase activity, alcohol group as acceptor;protein binding"		"g13884.t1;Cre13.g564350.t1.1"	ATM1	"Found in basal body proteome as ATM; Orthologous to ataxia-telangiectasia mutated (ATM) gene in Arabidopsis"
+Cre13.g563500			"Secretory pathway"				g13866.t1		
+Cre13.g587200	"GMM:29.5.11.4.2;GMM:20.1"	"protein.degradation.ubiquitin.E3.RING;stress.biotic"	"Secretory pathway"	"GO:0016746;GO:0016021;GO:0006506;GO:0005789"	"transferase activity, transferring acyl groups;integral component of membrane;GPI anchor biosynthetic process;endoplasmic reticulum membrane"	PIGW	"PIGW;g14406.t1"	PIGW1	"transferring acyl grous"
+Cre13.g591600	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG40	"CYG40;g14506.t1;g14506.t1;CYG40"		"Protein with potential tubulin tyrosine ligase domain and domain similar to membrane guanylyl cyclase OlGC7 [Oryzias latipes];Protein with potential tubulin tyrosine ligase domain and domain similar to membrane guanylyl cyclase OlGC7 [Oryzias latipes]"
+Cre13.g562062			Mitochondrion				"g13833.t1;Cre13.g562062.t1.1"		
+Cre13.g570801							"g14039.t1;Cre13.g570800.t1.2"		
+Cre13.g584250			Chloroplast				"Cre13.g584250.t1.1;g14343.t1"		
+Cre13.g607600	GMM:18.3	"Co-factor and vitamine metabolism.riboflavin"		"GO:0009231;GO:0003919"	"riboflavin biosynthetic process;FMN adenylyltransferase activity"	RIBFL1	"FSN1;RIBFL1;g14648.t1;g14648.t1;RIBFL1;FSN1"		
+Cre13.g603950	GMM:29.6.3.2	"protein.folding.immunophilins (IMM).cyclophilins"				CYN50	"CYN14;Cre13.g603950.t1.1;g14573.t1;CYN14;Cre13.g603950.t1.1;g14573.t1;CYN14;Cre13.g603950.t1.1;g14573.t1"	"CYN50;CYN50;CYN50"	"Putative peptidyl-prolyl cis-trans isomerase, cyclophilin-type; similar to CYN48-CYN53;Putative peptidyl-prolyl cis-trans isomerase, cyclophilin-type; similar to CYN48-CYN53;Putative peptidyl-prolyl cis-trans isomerase, cyclophilin-type; similar to CYN48-CYN53"
+Cre13.g603776									
+Cre13.g603100			"Secretory pathway"				"GT90-48;GT90F48;g14544.t2;GT90F48;GT90-48;g14544.t2;GT90-48;GT90F48;g14544.t2;GT90-48;g14544.t2;GT90F48"		
+Cre13.g589600							"Cre13.g589600.t1.1;g14464.t1"		
+Cre13.g582350	GMM:29.5.11.2	protein.degradation.ubiquitin.E1	Mitochondrion	GO:0008641	"small protein activating enzyme activity"		g14299.t1	UBA5	
+Cre13.g569801			Mitochondrion				g14019.t1		
+Cre13.g586250	GMM:18.4.9	"Co-factor and vitamine metabolism.pantothenate.dephospho-CoA kinase (DPCK)"		"GO:0015937;GO:0005524;GO:0004140"	"coenzyme A biosynthetic process;ATP binding;dephospho-CoA kinase activity"	COA7	"COA7;g14386.t1;Cre13.g586250.t1.1;COA7;g14386.t1;Cre13.g586250.t1.1"	"COAE2;COAE2"	"Catalyzes the final step (of five) of pantothenate biosynthesis from CoA; Named for dephospho-CoA kinase in E. coli (coaE);Catalyzes the final step (of five) of pantothenate biosynthesis from CoA; Named for dephospho-CoA kinase in E. coli (coaE)"
+Cre13.g586000	GMM:11.1.8	"lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase"	Chloroplast	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"Cre13.g586000.t1.1;g14381.t1"		
+Cre13.g590900	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"	APC11	"g14490.t1;Cre13.g590900.t1.1"	APC11	"Subunit of anaphase promoting complex; contains a RING domain."
+Cre13.g576466							g14166.t1		
+Cre13.g580700	GMM:29.5	protein.degradation	"Secretory pathway"	"GO:0016787;GO:0008152"	"hydrolase activity;metabolic process"	DAL2	"g14264.t1;DAL2;g14264.t1;DAL2;DAL2;g14264.t1"	"DAL2;DAL2;DAL2"	"Putative allantoate deiminase/metallopeptidase. Probable allantoicase-like missing candidate in Sourcebook Vol. 2, p73, Table 3.1;Putative allantoate deiminase/metallopeptidase. Probable allantoicase-like missing candidate in Sourcebook Vol. 2, p73, Table 3.1;Putative allantoate deiminase/metallopeptidase. Probable allantoicase-like missing candidate in Sourcebook Vol. 2, p73, Table 3.1"
+Cre13.g563300	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g13860.t1		
+Cre13.g576800				"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	HIF	"PHX21;HIF;g14175.t1"	HIF1	"Putative prolyl 4-hydroxylase similar to EGg Laying defective family member (egl-9) in C. elegans involved in hypoxia response"
+Cre13.g589250							"Cre13.g589250.t1.1;g14456.t1"		
+Cre13.g586800			Mitochondrion				g14397.t1		
+Cre13.g562550	GMM:1.1.5.3	"PS.lightreaction.other electron carrier (ox/red).ferredoxin reductase"	Mitochondrion	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	ARH1	"g13846.t1;ARH1"	ARH1	"ts-lethal mutant was isolated (PMID 29743196)"
+Cre13.g571800			Chloroplast				"g14061.t1;g14061.t1"		
+Cre13.g588150	GMM:21.2.1.2	"redox.ascorbate and glutathione.ascorbate.GDP-L-galactose phosphorylase"	Mitochondrion	GO:0080048	"GDP-D-glucose phosphorylase activity"		"Cre13.g588150.t1.1;g14427.t1;Cre13.g588150.t1.1;g14427.t1;g14427.t1;Cre13.g588150.t1.1"	"VTC2;VTC2;VTC2"	"first committed step in vitamin C biosynthesis; mutant shows reduced vitamin C content, and increased 5mC/decreased 5gmC in its DNA, due to impairement of TET-mediated 5mC modifications;first committed step in vitamin C biosynthesis; mutant shows reduced vitamin C content, and increased 5mC/decreased 5gmC in its DNA, due to impairement of TET-mediated 5mC modifications;first committed step in vitamin C biosynthesis; mutant shows reduced vitamin C content, and increased 5mC/decreased 5gmC in its DNA, due to impairement of TET-mediated 5mC modifications"
+Cre13.g573300	GMM:23.2	"nucleotide metabolism.degradation"	Chloroplast	GO:0008270	"zinc ion binding"	CDD4	"CDD4;g14096.t1;g14096.t1;CDD4"	"CDD4;CDD4"	
+Cre13.g575250				GO:0015031	"protein transport"		"g14138.t1;g14138.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre13.g579300			Mitochondrion				"g14231.t1;g14231.t1"		
+Cre13.g583100			Mitochondrion				"g14315.t1;g14315.t1;g14315.t1;g14315.t1"		
+Cre13.g577950	GMM:27.3.71	"RNA.regulation of transcription.SNF7"		GO:0007034	"vacuolar transport"	VPS60	"Cre13.g577950.t1.1;g14200.t1;VPS60"	VPS60	"Expressed Protein. Similar to VPS60, a SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes)"
+Cre13.g576100	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g14158.t1;g14158.t1"		
+Cre13.g565301							"g13911.t2;g13911.t2"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre13.g603800							g14570.t1		
+Cre13.g580350			Mitochondrion				"Cre13.g580350.t1.1;g14257.t1"		
+Cre13.g584551							"g14348.t1;g14348.t1"		
+Cre13.g567075							"g13954.t1;g13954.t1"		
+Cre13.g584850			Chloroplast	GO:0005515	"protein binding"		g14356.t1		
+Cre13.g588959			Mitochondrion				"Cre13.g588959.t1.1;g14449.t1"		
+Cre13.g580976			Mitochondrion						
+Cre13.g587250							"g14407.t1;g14407.t1;g14407.t1;g14407.t1"		
+Cre13.g570700	"GMM:20.1;GMM:2.1"	"stress.biotic;major CHO metabolism.synthesis"	"Secretory pathway"	"GO:0008061;GO:0005975;GO:0004553"	"chitin binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI4	"CHI7;CHI4;g14037.t1;g14037.t1;CHI4;CHI7;CHI7;CHI4;g14037.t1"		"Chitinase; null-allele mutant was isolated (PMID 29743196);Chitinase; null-allele mutant was isolated (PMID 29743196);Chitinase; null-allele mutant was isolated (PMID 29743196)"
+Cre13.g577850	"GMM:29.6.3.1;GMM:1.1.1.3"	"protein.folding.immunophilins (IMM).FKBPs;PS.lightreaction.photosystem II.biogenesis"	Chloroplast.Stroma.Thylakoid.Lumen			FKB20	"FKB20B;FKB20;FKB20-2;g14198.t1"	FKB20	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); probably targeted to thylakoid lumen (TP length 31 + RR motif); [PMID: 15701785]"
+Cre13.g576760			Chloroplast				ELI6	ELIP6	"belongs to chlorophyll A-B binding protein superfamily, ELIP family"
+Cre13.g580100									
+Cre13.g568700	GMM:27.1	RNA.processing					"g13995.t1;g13995.t1"		
+Cre13.g578201			Chloroplast						
+Cre13.g590850							"Cre13.g590850.t1.1;g14489.t1;g14489.t1;Cre13.g590850.t1.1;Cre13.g590850.t1.1;g14489.t1"		
+Cre13.g564950	"GMM:29.2.4;GMM:29.2.2"	"protein.synthesis.elongation;protein.synthesis.ribosome biogenesis"		GO:0005525	"GTP binding"	EFG13	"g13899.t1;EFG13;Cre13.g564950.t1.1;Cre13.g564950.t1.1;g13899.t1;EFG13"	"EFG13;EFG13"	"Also annotated as ribosome assembly protein 1 (RIA1);Also annotated as ribosome assembly protein 1 (RIA1)"
+Cre13.g574750							g14127.t1		
+Cre13.g569651							g14016.t1		
+Cre13.g606750	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0046872;GO:0016787;GO:0005524"	"metal ion binding;hydrolase activity;ATP binding"		"g14628.t1;g14628.t1"		
+Cre13.g576150			Chloroplast	GO:0006520	"cellular amino acid metabolic process"		"g14159.t1;APN1"		"L-asparaginase, type I (EC:3.5.1.1)"
+Cre13.g590450							g14480.t1		
+Cre13.g578950			Mitochondrion				g14222.t1		
+Cre13.g563800	"GMM:31.1.1.3.11;GMM:31.1"	"cell.organisation.cytoskeleton.Myosin.Class XI;cell.organisation"		"GO:0016459;GO:0005524;GO:0005515;GO:0003774"	"myosin complex;ATP binding;protein binding;motor activity"	MYO3	"MYO3;g13872.t1"	MYO3	
+Cre13.g571200	"GMM:30.11;GMM:29.4;GMM:27.3.34;GMM:17.5.2;GMM:17.4.2"	"signalling.light;protein.postranslational modification;RNA.regulation of transcription.orphan family;hormone metabolism.ethylene.signal transduction;hormone metabolism.cytokinin.signal transduction"		"GO:0007165;GO:0000160;GO:0000155"	"signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity"	HKR5	"HIK;g14047.t1; HKR5; HKR5;HIK;g14047.t1;HIK;g14047.t1; HKR5"	"HIK5;HIK5;HIK5"	"Contains PAS, Histidine kinase and signal receiver domains; Originally named HKR5, but was changed to avoid confusion with the histidine-kinase rhodopsins;;Contains PAS, Histidine kinase and signal receiver domains; Originally named HKR5, but was changed to avoid confusion with the histidine-kinase rhodopsins;;Contains PAS, Histidine kinase and signal receiver domains; Originally named HKR5, but was changed to avoid confusion with the histidine-kinase rhodopsins;"
+Cre13.g581600	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"	Mitochondrion			ASA4	"Cre13.g581600.t1.1;ASA4;g14283.t1"	ASA4	"Mitochondrial F1F0 ATP synthase associated 31.2 kDa protein; part of peripheral stalk involed in dimerization"
+Cre13.g575750							"g14150.t1;Cre13.g575750.t1.1;Cre13.g575750.t1.1;g14150.t1"		
+Cre13.g569000	GMM:26.17	misc.dynamin					"g14001.t1;g14001.t1;g14001.t1;g14001.t1;g14001.t1;g14001.t1"		
+Cre13.g574500	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast	"GO:0008199;GO:0006879;GO:0006826"	"ferric iron binding;cellular iron ion homeostasis;iron ion transport"	FER2	"FER2;g14122.t1"	FER2	"Ferritin, chloroplast precursor; pre-apoferritin gi|253724|gb|AF53338; Null-allele mutant was isolated; For iron storage or buffering in the chloroplast during iron limitation; Expression induced during Fe deficiency; localized to the chloroplast; a strain with reduced FER1 FER2 abundance has delayed PSII degradation in Fe-deficiency photoheterotrophic growth"
+Cre13.g586850			Chloroplast				"g14398.t1;g14398.t1;g14398.t1"		
+Cre13.g604300							"g14579.t1;Cre13.g604300.t1.1"		
+Cre13.g568467							g13989.t1		
+Cre13.g588386									
+Cre13.g579850	GMM:21.1	redox.thioredoxin					"Cre13.g579850.t1.1;g14246.t2;Cre13.g579850.t1.1;g14246.t2"		
+Cre13.g577700	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					"g14194.t1;Cre13.g577700.t1.1"		
+Cre13.g570100	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA20	"Cre13.g570100.t1.1;HTA2;g14025.t1"	HTA20	"replication linked H2A; histone gene cluster XX (type 34BA)"
+Cre13.g565484			Chloroplast						
+Cre13.g577150			"Secretory pathway"				"Cre13.g577150.t1.1;g14183.t1"		
+Cre13.g579326									
+Cre13.g589650							"Cre13.g589650.t1.1;g14465.t1;g14465.t1;Cre13.g589650.t1.1"		
+Cre13.g570851			"Secretory pathway"				"Cre13.g570850.t1.2;g14040.t1;Cre13.g570850.t1.2;g14040.t1"	"PSB34;PSB34"	"Homolog of Thermosynechococcus tsl0063 protein, belongs to extended LHC superfamily; associated with RC47 and monomeric PSII assembly intermediates;Homolog of Thermosynechococcus tsl0063 protein, belongs to extended LHC superfamily; associated with RC47 and monomeric PSII assembly intermediates"
+Cre13.g604250							"g14578.t1;g14578.t1;g14578.t1;g14578.t1;g14578.t1;g14578.t1;g14578.t1"		
+Cre13.g588453							g14436.t1		
+Cre13.g582476			Chloroplast	GO:0016787	"hydrolase activity"		g14300.t1		
+Cre13.g604450			Mitochondrion				g14582.t1		
+Cre13.g571950	GMM:16.2.1.6	"secondary metabolism.phenylpropanoids.lignin biosynthesis.CCoAOMT"	Chloroplast	GO:0008171	"O-methyltransferase activity"		"g14066.t1;Cre13.g571950.t1.1;Cre13.g571950.t1.1;g14066.t1"		
+Cre13.g603000	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"		"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE19	"Cre13.g603000.t1.1;g14542.t2;PDE19;Cre13.g603000.t1.1;g14542.t2;PDE19;PDE19;Cre13.g603000.t1.1;g14542.t2;g14542.t2;Cre13.g603000.t1.1;PDE19;Cre13.g603000.t1.1;g14542.t2;PDE19"		"3',5'-cyclic-nucleotide phosphodiesterase similar to that of Homo sapiens, PDE4D_HUMAN;3',5'-cyclic-nucleotide phosphodiesterase similar to that of Homo sapiens, PDE4D_HUMAN;3',5'-cyclic-nucleotide phosphodiesterase similar to that of Homo sapiens, PDE4D_HUMAN;3',5'-cyclic-nucleotide phosphodiesterase similar to that of Homo sapiens, PDE4D_HUMAN;3',5'-cyclic-nucleotide phosphodiesterase similar to that of Homo sapiens, PDE4D_HUMAN"
+Cre13.g605386			Mitochondrion	"GO:0051607;GO:0003725"	"defense response to virus;double-stranded RNA binding"		"Cre13.g605451.t4.1;g14602.t1"		
+Cre13.g573600			Mitochondrion				"g14102.t1;Cre13.g573600.t1.1"		
+Cre13.g607300	"GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	FAP352	"Cre13.g607300.t1.1;MAPK5;g14642.t1;Cre13.g607300.t1.1;MAPK5;g14642.t1;MAPK5;Cre13.g607300.t1.1;g14642.t1"	"FAP352;FAP352;FAP352"	"Mitogen-activated protein kinase homolog 5; Downstream kinase in the canonical MAP kinase pathway; Similar to MAPK3;Mitogen-activated protein kinase homolog 5; Downstream kinase in the canonical MAP kinase pathway; Similar to MAPK3;Mitogen-activated protein kinase homolog 5; Downstream kinase in the canonical MAP kinase pathway; Similar to MAPK3"
+Cre13.g606250	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG41	"CYG41;g14619.t1;CYG41;g14619.t1;CYG41;g14619.t1"		"Protein with C-terminal domain similar to guanylate cyclase isoform A [Drosophila melanogaster];Protein with C-terminal domain similar to guanylate cyclase isoform A [Drosophila melanogaster];Protein with C-terminal domain similar to guanylate cyclase isoform A [Drosophila melanogaster]"
+Cre13.g563326			"Secretory pathway"						
+Cre13.g568300			Chloroplast				"Cre13.g568300.t1.1;g13984.t1"		
+Cre13.g585400	"GMM:30.1;GMM:3.1"	"signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family"		"GO:0016020;GO:0004970"	"membrane;ionotropic glutamate receptor activity"				
+Cre13.g569326			Chloroplast						
+Cre13.g590200			Mitochondrion				"g14473.t1;g14473.t1;g14473.t1"		
+Cre13.g604950			Mitochondrion						
+Cre13.g566750							"Cre13.g566750.t1.1;g13946.t1"		
+Cre13.g575450							g14143.t1		
+Cre13.g581300			Mitochondrion				"g14277.t1;g14277.t1;g14277.t1;g14277.t1;g14277.t1;g14277.t1;g14277.t1;g14277.t1;g14277.t1;g14277.t1"		
+Cre13.g566350	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g13936.t1;g13936.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre13.g583500							"GEX2;g14326.t1;TAF2"	TAF2	"Homologous to TAF2 TBP-associated factor. ts lethal mutations isolated (PMID 25336509)"
+Cre13.g607650	GMM:3.3	"minor CHO metabolism.sugar alcohols"		GO:0005509	"calcium ion binding"		"g14649.t1;g14649.t1"	"POC15;POC15"	"Found in basal body proteome; Novel EF-hand protein in FABP;Found in basal body proteome; Novel EF-hand protein in FABP"
+Cre13.g570200							g14027.t1		
+Cre13.g578501	GMM:33.99	development.unspecified		GO:0006355	"regulation of transcription, DNA-templated"		g14212.t1		
+Cre13.g565675							g13922.t1		
+Cre13.g577100	GMM:11.1.12	"lipid metabolism.FA synthesis and FA elongation.ACP protein"	Chloroplast			ACP2	"g14182.t1;Cre13.g577100.t1.1;g14182.t1;Cre13.g577100.t1.1"	"ACP2;ACP2"	
+Cre13.g584619							"Cre13.g584619.t1.1;g14350.t1;g14350.t1;Cre13.g584619.t1.1"		
+Cre13.g572100							"g14069.t1;g14069.t1"		
+Cre13.g603050							"Cre13.g603050.t1.1;g14543.t1;g14543.t1;Cre13.g603050.t1.1"		
+Cre13.g563100							"Cre13.g563100.t1.1;g13856.t1;Cre13.g563100.t1.1;g13856.t1"		
+Cre13.g587450	GMM:25.4	"C1-metabolism.5-formyltetrahydrofolate cyclo-ligase"	Chloroplast			FCL2	"FCL2;Cre13.g587450.t1.1;g14412.t1"		"This protein contains a putative 5-Formyltetrahydrofolate cycloligase domain, but has little homology to the biochemically characterized 5-formyltetrahydrofolate cycloligases. Probably organellar protein."
+Cre13.g588800			"Secretory pathway"				"Cre13.g588800.t1.1;g14445.t1"		
+Cre13.g591050	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"				
+Cre13.g605550				"GO:0051607;GO:0003725"	"defense response to virus;double-stranded RNA binding"		g14605.t1		
+Cre13.g574900	GMM:3.6	"minor CHO metabolism.callose"		"GO:0016020;GO:0006075;GO:0003843;GO:0000148"	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	FAP228	"g14130.t1;GSL5;Cre13.g574900.t1.1;GTR2;GTR2;Cre13.g574900.t1.1;GSL5;g14130.t1;g14130.t1;GSL5;Cre13.g574900.t1.1;GTR2;Cre13.g574900.t1.1;GTR2;GSL5;g14130.t1;GSL5;GTR2;Cre13.g574900.t1.1;g14130.t1;g14130.t1;Cre13.g574900.t1.1;GTR2;GSL5;g14130.t1;GSL5;GTR2;Cre13.g574900.t1.1;GTR2;Cre13.g574900.t1.1;GSL5;g14130.t1;GSL5;Cre13.g574900.t1.1;GTR2;g14130.t1;GSL5;Cre13.g574900.t1.1;GTR2;g14130.t1;GSL5;Cre13.g574900.t1.1;GTR2;g14130.t1;GTR2;Cre13.g574900.t1.1;GSL5;g14130.t1;GSL5;Cre13.g574900.t1.1;GTR2;g14130.t1;Cre13.g574900.t1.1;GTR2;GSL5;g14130.t1;GTR2;Cre13.g574900.t1.1;GSL5;g14130.t1;Cre13.g574900.t1.1;GTR2;GSL5;g14130.t1;g14130.t1;GSL5;Cre13.g574900.t1.1;GTR2;g14130.t1;Cre13.g574900.t1.1;GTR2;GSL5;g14130.t1;Cre13.g574900.t1.1;GSL5;GTR2;Cre13.g574900.t1.1;GTR2;GSL5;g14130.t1;GTR2;Cre13.g574900.t1.1;GSL5;g14130.t1"	"FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228;FAP228"	"Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196);Glycosyl transferase, GT48 family, possible 1,3-beta-D-glucan synthase, similar to callose synthase; found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196)"
+Cre13.g563050							"g13855.t1;g13855.t1"		
+Cre13.g602600			"Secretory pathway"				"g14562.t1;Cre13.g602600.t1.1;Cre13.g602600.t1.1;g14562.t1"		
+Cre13.g566500							"g13940.t1;Cre13.g566500.t1.1;Cre13.g566500.t1.1;g13940.t1;Cre13.g566500.t1.1;g13940.t1;g13940.t1;Cre13.g566500.t1.1;Cre13.g566500.t1.1;g13940.t1"		
+Cre13.g592050	GMM:23.2	"nucleotide metabolism.degradation"	"Secretory pathway"	GO:0016787	"hydrolase activity"	DAL1	"g14515.t1;Cre13.g592050.t1.1;DAL1;DAL1;g14515.t1;Cre13.g592050.t1.1;DAL1;g14515.t1;Cre13.g592050.t1.1;DAL1;Cre13.g592050.t1.1;g14515.t1;g14515.t1;DAL1;Cre13.g592050.t1.1;DAL1;Cre13.g592050.t1.1;g14515.t1"	"DAL1;DAL1;DAL1;DAL1;DAL1;DAL1"	"aminohydrolase family protein;aminohydrolase family protein;aminohydrolase family protein;aminohydrolase family protein;aminohydrolase family protein;aminohydrolase family protein"
+Cre13.g565290						CSB52			
+Cre13.g586300	"GMM:31.3.1;GMM:29.6.3.1;GMM:29.6"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs;protein.folding"		GO:0006457	"protein folding"	FKBP12	"Cre13.g586300.t1.1;FKBP12;FKB1;FAP229;g14387.t1"	FKB12	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPiase) (Rotamase) (Immunophilin); probably cytosolic (by homology to FKB1_HUMAN and AtFBKP12); mutant is rapamycin resistant; involved in signaling nutrient status, in conjunction with the TOR (target of Rapamycin) protein kinase [PMID: 15270681] and FIP37 [PMID: 15047892]; found in the flagellar proteome, as FAP229 [PMID: 15998802]"
+Cre13.g588310						MRPL47	"MRPL47;uL29m"	MRPL29	
+Cre13.g584200	"GMM:34.99;GMM:21.4"	"transport.misc;redox.glutaredoxins"		"GO:0055085;GO:0045454;GO:0016021;GO:0015035;GO:0009055"	"transmembrane transport;cell redox homeostasis;integral component of membrane;protein disulfide oxidoreductase activity;electron carrier activity"		"GRL1;Cre13.g584200.t1.1;g14342.t1;Cre13.g584200.t1.1;g14342.t1;GRL1;GRL1;g14342.t1;Cre13.g584200.t1.1"		
+Cre13.g575950	"GMM:33.99;GMM:28.1.1"	"development.unspecified;DNA.synthesis/chromatin structure.retrotransposon/transposase"		"GO:0016568;GO:0006355;GO:0006351;GO:0005634;GO:0005515"	"chromatin modification;regulation of transcription, DNA-templated;transcription, DNA-templated;nucleus;protein binding"	HIR1	"Cre13.g575950.t1.1;g14155.t1;HIR1;Cre13.g575950.t1.1;g14155.t1;HIR1;HIR1;g14155.t1;Cre13.g575950.t1.1;g14155.t1;HIR1;Cre13.g575950.t1.1;HIR1;g14155.t1;Cre13.g575950.t1.1"	"HIRA1;HIRA1;HIRA1;HIRA1;HIRA1"	"Similar to HIRA, ChromDB HIRA341; WD repeat superfamily;Similar to HIRA, ChromDB HIRA341; WD repeat superfamily;Similar to HIRA, ChromDB HIRA341; WD repeat superfamily;Similar to HIRA, ChromDB HIRA341; WD repeat superfamily;Similar to HIRA, ChromDB HIRA341; WD repeat superfamily"
+Cre13.g595114									
+Cre13.g570751							"CHI8;g14038.t1"		
+Cre13.g569100	GMM:26.17	misc.dynamin					"g14003.t1;Cre13.g569100.t1.1"		
+Cre13.g603850							"g14571.t1;Cre13.g603850.t1.1"		
+Cre13.g580050	"GMM:29.5.9;GMM:29.5.11.20;GMM:27.3.99"	"protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom;RNA.regulation of transcription.unclassified"	Mitochondrion	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"g14251.t1;Cre13.g580050.t1.1;Cre13.g580050.t1.1;g14251.t1"		
+Cre13.g576600	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre13.g576600.t1.1;g14169.t1;g14169.t1;Cre13.g576600.t1.1;Cre13.g576600.t1.1;g14169.t1"		
+Cre13.g568750				GO:0005515	"protein binding"		g13996.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre13.g581550				"GO:0008193;GO:0006400;GO:0000287"	"tRNA guanylyltransferase activity;tRNA modification;magnesium ion binding"	THG1	"g14282.t1;THG1"	THG1	"Adds a terminal guanosine residue at the 5'-end of Histidine tRNAs. Homologue of S. cerevisiae THG1"
+Cre13.g564766			"Secretory pathway"	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"		"Cre13.g564766.t1.1;g13894.t1;Cre13.g564766.t1.1;g13894.t1"		
+Cre13.g568100	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"		"g13979.t1;g13979.t1;g13979.t1"		
+Cre13.g562850	"GMM:29.3;GMM:1.1.1"	"protein.targeting;PS.lightreaction.photosystem II"	Chloroplast.Stroma.Thylakoid.Membrane	"GO:0015979;GO:0010207"	"photosynthesis;photosystem II assembly"	THF1	"Cre13.g562850.t1.1;PSB29;g13851.t1"	THF1	"Chloroplast-localized protein similar to Arabidopsis THF1 which has been involved in the dynamics of PSII-LHCII supramolecular organization in higher plants; the Cyanobacterial homolog stabilizes and interacts with the FtsH protease"
+Cre13.g562650							"g13847.t1;g13847.t1;g13847.t1;g13847.t1;g13847.t1;g13847.t1;g13847.t1;g13847.t1;g13847.t1"		
+Cre13.g584400	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP189	"Cre13.g584400.t1.1;g14345.t1"	FAP189	"Conserved uncharacterized coiled-coil Flagellar Associated Protein; found in the flagellar proteome"
+Cre13.g607100	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG6	"Cre13.g607100.t1.1;g14638.t1;CYG6;CYG6;g14638.t1;Cre13.g607100.t1.1;Cre13.g607100.t1.1;g14638.t1;CYG6;Cre13.g607100.t1.1;g14638.t1;CYG6;CYG6;g14638.t1;Cre13.g607100.t1.1;Cre13.g607100.t1.1;g14638.t1;CYG6"		"Internal domains similar to Guanylyl cyclase, isoform C [Drosophila melanogaster];Internal domains similar to Guanylyl cyclase, isoform C [Drosophila melanogaster];Internal domains similar to Guanylyl cyclase, isoform C [Drosophila melanogaster];Internal domains similar to Guanylyl cyclase, isoform C [Drosophila melanogaster];Internal domains similar to Guanylyl cyclase, isoform C [Drosophila melanogaster];Internal domains similar to Guanylyl cyclase, isoform C [Drosophila melanogaster]"
+Cre13.g590010							"g14471.t2;g14471.t2;g14471.t2;g14471.t2;g14471.t2"		
+Cre13.g588950			Chloroplast				"g14448.t1;Cre13.g588950.t1.1"		
+Cre13.g603600	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g14553.t1;g14553.t1"		
+Cre13.g606600	"GMM:29.4;GMM:29.2.2"	"protein.postranslational modification;protein.synthesis.ribosome biogenesis"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	CGK1	"CGK1;g14625.t1;CGK1;g14625.t1;CGK1;g14625.t1;g14625.t1;CGK1;CGK1;g14625.t1;CGK1;g14625.t1"	"CGK1;CGK1;CGK1;CGK1;CGK1;CGK1"	"putative cGMP-dependent protein kinase 1, alpha isozyme, serine/threonine kinase domain, protein kinase domain;putative cGMP-dependent protein kinase 1, alpha isozyme, serine/threonine kinase domain, protein kinase domain;putative cGMP-dependent protein kinase 1, alpha isozyme, serine/threonine kinase domain, protein kinase domain;putative cGMP-dependent protein kinase 1, alpha isozyme, serine/threonine kinase domain, protein kinase domain;putative cGMP-dependent protein kinase 1, alpha isozyme, serine/threonine kinase domain, protein kinase domain;putative cGMP-dependent protein kinase 1, alpha isozyme, serine/threonine kinase domain, protein kinase domain"
+Cre13.g577800	"GMM:30.5;GMM:3.5;GMM:29.2.2.1"	"signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.export from nucleus"	Mitochondrion	GO:0005525	"GTP binding"		g14197.t1		
+Cre13.g578550			Mitochondrion				"g14213.t1;Cre13.g578550.t1.1"		
+Cre13.g584901			"Secretory pathway"	"GO:0042384;GO:0036038;GO:0010826"	"cilium assembly;TCTN-B9D complex;negative regulation of centrosome duplication"		"MKS3;g14357.t1;Cre13.g584900.t1.3;Cre13.g584900.t1.3;g14357.t1;MKS3;Cre13.g584900.t1.3;g14357.t1;MKS3;g14357.t1;MKS3;Cre13.g584900.t1.3"	"TMEM67;TMEM67;TMEM67;TMEM67"	"Transition zone protein; Homologous to Meckel syndrome type 3 (MKS3) protein in mammals;;Transition zone protein; Homologous to Meckel syndrome type 3 (MKS3) protein in mammals;;Transition zone protein; Homologous to Meckel syndrome type 3 (MKS3) protein in mammals;;Transition zone protein; Homologous to Meckel syndrome type 3 (MKS3) protein in mammals;"
+Cre13.g580750	"GMM:29.5.11.4.2;GMM:17.1.2"	"protein.degradation.ubiquitin.E3.RING;hormone metabolism.abscisic acid.signal transduction"	Mitochondrion	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		g14265.t1		
+Cre13.g583824									
+Cre13.g568025			Mitochondrion				"Cre13.g568009.t1.2;g13977.t1"		
+Cre13.g592400	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	"Secretory pathway"			LCI21	"g14522.t1;g14522.t1;g14522.t1;g14522.t1"	"LCI21;LCI21;LCI21;LCI21"	"Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]"
+Cre13.g582112			Mitochondrion				"g14293.t1;Cre13.g582112.t1.1"		
+Cre13.g563600	"GMM:29.5.11.1;GMM:29.5.11;GMM:29.2.1.2.2.40;GMM:29.2.1.2.1.27;GMM:29.1"	"protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27;protein.aa activation"		GO:0005515	"protein binding"	UBQ7	"UBQ7;g13868.t1"	UBQ7	"contains a ubiquitin domain near n-terminus, and a C-terminal domain with no database homology"
+Cre13.g564000	GMM:26.13	"misc.acid and other phosphatases"	Mitochondrion			PGM3	"g13878.t1;Cre13.g564000.t1.1;PGM3"	GPM3	"phosphoglycerate/bisphosphoglycerate mutase family protein"
+Cre13.g590550	"GMM:33.99;GMM:20.2.3;GMM:18.4.8"	"development.unspecified;stress.abiotic.drought/salt;Co-factor and vitamine metabolism.pantothenate.pantetheine-phosphate adenylyltransferase  (PPAT)"				COA5	"g14482.t1;COA5"	COAD1	"Catalyzes the fourth step (out of five) of CoA bosynthesis from pantothenate, Named for phosphopantetheine adenylyltransferase in E.coli (coaD);"
+Cre13.g585050			"Secretory pathway"				"g14361.t2;g14361.t2"		
+Cre13.g579000							"g14223.t1;g14223.t1"		
+Cre13.g563850	GMM:34.99	transport.misc				PRORP	"g13873.t1;PRORP;PRORP;g13873.t1;PRORP;g13873.t1"	"PRORP1;PRORP1;PRORP1"	"Involved in 5'-end tRNA maturation; contains a Zc3h12a-like Ribonuclease NYN domain; the PPR domain found in other PRORP is not recognizeable here; localised to mitochondria, chloroplast and nucleus;Involved in 5'-end tRNA maturation; contains a Zc3h12a-like Ribonuclease NYN domain; the PPR domain found in other PRORP is not recognizeable here; localised to mitochondria, chloroplast and nucleus;Involved in 5'-end tRNA maturation; contains a Zc3h12a-like Ribonuclease NYN domain; the PPR domain found in other PRORP is not recognizeable here; localised to mitochondria, chloroplast and nucleus"
+Cre13.g572850				"GO:0008270;GO:0006508;GO:0004181"	"zinc ion binding;proteolysis;metallocarboxypeptidase activity"	FBB17	"FBB17;g14087.t1;g14087.t1;FBB17"	"FBB17;FBB17"	"Conserved protein found in ciliated organisms, unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation;Conserved protein found in ciliated organisms, unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation"
+Cre13.g579350			Mitochondrion				"g14233.t1;g14233.t1;g14233.t1;g14233.t1"		
+Cre13.g574041	GMM:34.18	"transport.unspecified anions"	"Secretory pathway"				g14111.t1		
+Cre13.g590500	GMM:11.2.4	"lipid metabolism.FA desaturation.omega 6 desaturase"	Chloroplast	GO:0006629	"lipid metabolic process"	FAD6	"g14481.t1;DES6;g14481.t1;DES6;DES6;g14481.t1;DES6;g14481.t1;g14481.t1;DES6"	"FAD6;FAD6;FAD6;FAD6;FAD6"	"Omega-6-FAD, chloroplast isoform [PMID: 9498569];Omega-6-FAD, chloroplast isoform [PMID: 9498569];Omega-6-FAD, chloroplast isoform [PMID: 9498569];Omega-6-FAD, chloroplast isoform [PMID: 9498569];Omega-6-FAD, chloroplast isoform [PMID: 9498569]"
+Cre13.g575300	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g14139.t1		
+Cre13.g601519	GMM:20.2.3	stress.abiotic.drought/salt							
+Cre13.g567150	GMM:33.99	development.unspecified					"Cre13.g567150.t1.1;g13956.t1"		
+Cre13.g572550							g14080.t1		
+Cre13.g578050							"g14207.t1;g14207.t1"		
+Cre13.g567050			Mitochondrion	"GO:0032775;GO:0009007;GO:0003677"	"DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding"		"g13953.t1;Cre13.g567050.t1.1"		
+Cre13.g587376									
+Cre13.g602350	GMM:13.1.6.5.4	"amino acid metabolism.synthesis.aromatic aa.tryptophan.indole-3-glycerol phosphate synthase"	Chloroplast	GO:0004425	"indole-3-glycerol-phosphate synthase activity"		"g14556.t1;Cre13.g602350.t1.1;g14556.t1;Cre13.g602350.t1.1;Cre13.g602350.t1.1;g14556.t1;g14556.t1;Cre13.g602350.t1.1;Cre13.g602350.t1.1;g14556.t1;Cre13.g602350.t1.1;g14556.t1;Cre13.g602350.t1.1;g14556.t1"		
+Cre13.g586750							"Cre13.g586750.t1.1;g14396.t2;g14396.t2;Cre13.g586750.t1.1;Cre13.g586750.t1.1;g14396.t2;g14396.t2;Cre13.g586750.t1.1;Cre13.g586750.t1.1;g14396.t2;g14396.t2;Cre13.g586750.t1.1;Cre13.g586750.t1.1;g14396.t2;Cre13.g586750.t1.1;g14396.t2;g14396.t2;Cre13.g586750.t1.1;g14396.t2;Cre13.g586750.t1.1;Cre13.g586750.t1.1;g14396.t2"		
+Cre13.g606900							"g14632.t1;Cre13.g606900.t1.1"		
+Cre13.g567626			Chloroplast						
+Cre13.g581350			Chloroplast				"Cre13.g581350.t1.1;g14278.t1"		
+Cre13.g573800	GMM:23.3.1.3	"nucleotide metabolism.salvage.phosphoribosyltransferases.uracil phosphoribosyltransferase (UPP)"	"Secretory pathway"				"Cre13.g573800.t1.1;g14106.t1;Cre13.g573800.t1.1;g14106.t1;Cre13.g573800.t1.1;g14106.t1;g14106.t1;Cre13.g573800.t1.1"		
+Cre13.g607250			Mitochondrion				g14641.t1		
+Cre13.g587150	GMM:27.3.54	"RNA.regulation of transcription.histone acetyltransferases"		"GO:0016747;GO:0006355"	"transferase activity, transferring acyl groups other than amino-acyl groups;regulation of transcription, DNA-templated"	HAT5	"g14405.t1;HAT5;g14405.t1;HAT5;HAT5;g14405.t1;HAT5;g14405.t1;g14405.t1;HAT5"	"HAT5;HAT5;HAT5;HAT5;HAT5"	"MYST family histone acetyltransferase; ChromDB HAM342;MYST family histone acetyltransferase; ChromDB HAM342;MYST family histone acetyltransferase; ChromDB HAM342;MYST family histone acetyltransferase; ChromDB HAM342;MYST family histone acetyltransferase; ChromDB HAM342"
+Cre13.g575500			Mitochondrion				"g14144.t1;g14144.t1"		
+Cre13.g585350	GMM:21.1	redox.thioredoxin		"GO:0055114;GO:0016491;GO:0016209"	"oxidation-reduction process;oxidoreductase activity;antioxidant activity"		"g14368.t1;Cre13.g585350.t1.1"		
+Cre13.g577201			Chloroplast						
+Cre13.g587500	GMM:16.1.4.2	"secondary metabolism.isoprenoids.carotenoids.phytoene dehydrogenase"	Chloroplast			AOF8	"AOF8;g14413.t2;AOF8;g14413.t2"		"Flavin-containing amine oxidase, possibly an L-amino oxidase and/or carotene 7,8-desaturase (see ZDS1);Flavin-containing amine oxidase, possibly an L-amino oxidase and/or carotene 7,8-desaturase (see ZDS1)"
+Cre13.g572000	"GMM:19.3;GMM:19"	"tetrapyrrole synthesis.GSA;tetrapyrrole synthesis"	Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	SUMT2	"TPM1;COBA;UPM2;Cre13.g572000.t1.1;SUMT2;g14067.t1"		"S-adenosylmethionine-dependenturoporphyrinogen III methylase; renamed as per UPM1 with SUMT2 as alias"
+Cre13.g607700							"Cre13.g607700.t1.1;g14650.t1"		
+Cre13.g579901	GMM:29.5.5	"protein.degradation.serine protease"				DEG6	g14247.t1	DEG6	"serine protease, trypsin family, DegP type (HtrA) (protease Do) most similar to Arabidopsis DegP9 and to DegP2"
+Cre13.g581000							"GT90F26;GT90-26;g14271.t1;GT90F26;GT90-26;g14271.t1"		
+Cre13.g575550			"Secretory pathway"				"Cre13.g575550.t1.1;g14146.t1"		
+Cre13.g574150			Mitochondrion				"FAO10;g14114.t1;g14114.t1;FAO10;g14114.t1;FAO10"		"Possible dihydrolipoyl dehydrogenase;Possible dihydrolipoyl dehydrogenase;Possible dihydrolipoyl dehydrogenase"
+Cre13.g580450				GO:0005515	"protein binding"		"g14259.t1;g14259.t1;g14259.t1;g14259.t1;g14259.t1;g14259.t1;g14259.t1"		
+Cre13.g582100									
+Cre13.g569300			Chloroplast	GO:0055114	"oxidation-reduction process"		g14008.t1		
+Cre13.g562000									
+Cre13.g572900	GMM:29.5	protein.degradation	Chloroplast	"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"	THO3	"g14088.t2;THO3;THO3;g14088.t2;g14088.t2;THO3;THO3;g14088.t2;g14088.t2;THO3;g14088.t2;THO3;g14088.t2;THO3"		"belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to higher plant homologues; possibly organelle-targetted, like At5g65620;belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to higher plant homologues; possibly organelle-targetted, like At5g65620;belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to higher plant homologues; possibly organelle-targetted, like At5g65620;belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to higher plant homologues; possibly organelle-targetted, like At5g65620;belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to higher plant homologues; possibly organelle-targetted, like At5g65620;belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to higher plant homologues; possibly organelle-targetted, like At5g65620;belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to higher plant homologues; possibly organelle-targetted, like At5g65620"
+Cre13.g578051							"Cre13.g578051.t1.1;g14206.t1"		
+Cre13.g588405							"Cre13.g588405.t1.1;g14435.t2;Cre13.g588405.t1.1;g14435.t2"		
+Cre13.g606000	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0005525	"GTP binding"	EFG7	"g14614.t1;Cre13.g606000.t1.1"	EFG7	"Elongation factor, GTP-binding-like hypothetical protein; possibly organellar"
+Cre13.g585000			"Secretory pathway"				"Cre13.g585000.t1.1;g14359.t1;Cre13.g585000.t1.1;g14359.t1;g14359.t1;Cre13.g585000.t1.1"		
+Cre13.g570150	"GMM:28.99;GMM:27.3.25"	"DNA.unspecified;RNA.regulation of transcription.MYB domain transcription factor family"		"GO:0017053;GO:0007049;GO:0006351"	"transcriptional repressor complex;cell cycle;transcription, DNA-templated"		g14026.t1		
+Cre13.g562800						FAP337	g13850.t1	FAP337	
+Cre13.g566250			Mitochondrion				"Cre13.g566250.t1.1;g13934.t1"		
+Cre13.g591300			"Secretory pathway"				"g14500.t1;g14500.t1;g14500.t1;g14500.t1"		
+Cre13.g583050	"GMM:31.5.1;GMM:26.3"	"cell.cell death.plants;misc.gluco-, galacto- and mannosidases"	Chloroplast	"GO:0055114;GO:0051537;GO:0016491;GO:0010277"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"		"TIC55-5;PAO8;g14314.t1;Tic55-like5"		"Contains Rieske iron-sulfur cluster domain; similar to Tic55-II; belongs to the classical family of short chain dehydrogenases [PMID: 15180984]"
+Cre13.g570050	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB20	"g14024.t1;HTB2;Cre13.g570050.t1.1"	HTB20	"replication linked H2B; histone gene cluster XX (type 34BA) [PMID: 8590479, variant sequence confirmed]"
+Cre13.g574950			Mitochondrion						
+Cre13.g591000			"Secretory pathway"				"g14493.t1;Cre13.g591000.t1.1"		
+Cre13.g588250							g14429.t1		
+Cre13.g565083							g13902.t1		
+Cre13.g564750			"Secretory pathway"			PDE15	"PDE15;g13893.t1"		"Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain"
+Cre13.g606200				"GO:0008168;GO:0003723"	"methyltransferase activity;RNA binding"		"g14618.t2;TMC5;TMC5;g14618.t2;g14618.t2;TMC5;g14618.t2;TMC5"		
+Cre13.g566300	GMM:29.2.2.3.3	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases"	Chloroplast	"GO:0031167;GO:0008168"	"rRNA methylation;methyltransferase activity"		"RSMD;RRM12;Cre13.g566300.t1.1;g13935.t1;RSMD;RRM12;Cre13.g566300.t1.1;g13935.t1"	"RRM12;RRM12"	
+Cre13.g570900	GMM:29.4	"protein.postranslational modification"		"GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979"	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress"	MSRA1	"MSRA1;g14041.t1"	MSRA1	"A selenoprotein; selenocysteine at position 20"
+Cre13.g605404									
+Cre13.g608000			Mitochondrion			CPLD52	"Cre13.g608000.t1.1;g14656.t1"	CPLD52	
+Cre13.g581850	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Mitochondrion				"g14288.t1;Cre13.g581850.t1.1"		
+Cre13.g589400			"Secretory pathway"			PRL6	"g14459.t1;PRL6;g14459.t1;PRL6;PRL6;g14459.t1"		"CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein; similar to LSG1, a Volvox carteri PR-1 like protein [PMID: 11891059] expressed during senescence of somatic cells; probably an extracellular protein, containing SCP / Tpx-1 / Ag5 / PR-1 / Sc7 family of extracellular domains; cd00168;CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein; similar to LSG1, a Volvox carteri PR-1 like protein [PMID: 11891059] expressed during senescence of somatic cells; probably an extracellular protein, containing SCP / Tpx-1 / Ag5 / PR-1 / Sc7 family of extracellular domains; cd00168;CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein; similar to LSG1, a Volvox carteri PR-1 like protein [PMID: 11891059] expressed during senescence of somatic cells; probably an extracellular protein, containing SCP / Tpx-1 / Ag5 / PR-1 / Sc7 family of extracellular domains; cd00168"
+Cre13.g577650	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Chloroplast				g14193.t1		
+Cre13.g605200	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP29	"g14597.t2;MMP29;MMP29;g14597.t2"	"MMP29;MMP29"	"Matrix metalloproteinase belonging to the neutral zinc metallopeptidase, M peptidase family;Matrix metalloproteinase belonging to the neutral zinc metallopeptidase, M peptidase family"
+Cre13.g563006			Chloroplast				"Cre13.g563006.t1.1;g13854.t1"		
+Cre13.g592000	"GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4"	"signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre13.g592000.t1.1;g14514.t1;g14514.t1;Cre13.g592000.t1.1"		
+Cre13.g564426			"Secretory pathway"						
+Cre13.g568650	GMM:29.2.1.2.1.53	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S3A"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS3A	"RPS3a;Cre13.g568650.t1.1;g13993.t1;g13993.t1;RPS3a;Cre13.g568650.t1.1;Cre13.g568650.t1.1;RPS3a;g13993.t1;RPS3a;g13993.t1;Cre13.g568650.t1.1;Cre13.g568650.t1.1;RPS3a;g13993.t1"	"RPS3A;RPS3A;RPS3A;RPS3A;RPS3A"	"Cytosolic 40S small ribosomal subunit protein S3a;Cytosolic 40S small ribosomal subunit protein S3a;Cytosolic 40S small ribosomal subunit protein S3a;Cytosolic 40S small ribosomal subunit protein S3a;Cytosolic 40S small ribosomal subunit protein S3a"
+Cre13.g589700	"GMM:31.4;GMM:27.3.71"	"cell.vesicle transport;RNA.regulation of transcription.SNF7"		GO:0007034	"vacuolar transport"	VPS20	"Cre13.g589700.t1.1;VPS20;g14466.t1;Cre13.g589700.t1.1;VPS20;g14466.t1"	"VPS20;VPS20"	"Expressed Protein. Similar to VPS20, a SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes);Expressed Protein. Similar to VPS20, a SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes)"
+Cre13.g573250	GMM:26.23	misc.rhodanese	Chloroplast				"g14095.t1;Cre13.g573250.t1.1"		
+Cre13.g568900	GMM:29.2.1.2.2.17	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L17"		"GO:0015934;GO:0006412;GO:0005840;GO:0003735"	"large ribosomal subunit;translation;ribosome;structural constituent of ribosome"	RPL17	"g13999.t1;Cre13.g568900.t1.1;Cre13.g568900.t1.1;g13999.t1;g13999.t1;Cre13.g568900.t1.1"	"RPL17;RPL17;RPL17"	"Cytosolic 60S large ribosomal subunit protein L17;Cytosolic 60S large ribosomal subunit protein L17;Cytosolic 60S large ribosomal subunit protein L17"
+Cre13.g579017			Mitochondrion	GO:0051260	"protein homooligomerization"		g14224.t2		
+Cre13.g584050	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB54	"TNP35;g14338.t1;Cre13.g584050.t1.1;CSB54"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre13.g567100	GMM:21.2.1.5	"redox.ascorbate and glutathione.ascorbate.L-galactono-1,4-lactone dehydrogenase"	Mitochondrion	"GO:0055114;GO:0050660;GO:0016491;GO:0016020;GO:0003885"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;membrane;D-arabinono-1,4-lactone oxidase activity"	ALO1	"GLDH;g13955.t1;ALO1"	GLDH1	"Involved in vitamin C biosynthesis; putative mitochondrial enzyme; similar to At3g47930 gene product of Arabidopsis found associated with mitochondrial complex I [PMID: 12837548]"
+Cre13.g573900	GMM:34.14	"transport.unspecified cations"	"Secretory pathway"	"GO:0055085;GO:0016020;GO:0006810;GO:0005215"	"transmembrane transport;membrane;transport;transporter activity"	NSS3	"Cre13.g573900.t1.1;g14108.t1;NSS3;NSS3;Cre13.g573900.t1.1;g14108.t1;NSS3;Cre13.g573900.t1.1;g14108.t1;NSS3;Cre13.g573900.t1.1;g14108.t1;NSS3;Cre13.g573900.t1.1;g14108.t1;NSS3;Cre13.g573900.t1.1;g14108.t1;g14108.t1;Cre13.g573900.t1.1;NSS3"		"Sodium:solute symporter. Resembles a Na+/pantothenate symporter, but solute may actually be thiamine;Sodium:solute symporter. Resembles a Na+/pantothenate symporter, but solute may actually be thiamine;Sodium:solute symporter. Resembles a Na+/pantothenate symporter, but solute may actually be thiamine;Sodium:solute symporter. Resembles a Na+/pantothenate symporter, but solute may actually be thiamine;Sodium:solute symporter. Resembles a Na+/pantothenate symporter, but solute may actually be thiamine;Sodium:solute symporter. Resembles a Na+/pantothenate symporter, but solute may actually be thiamine;Sodium:solute symporter. Resembles a Na+/pantothenate symporter, but solute may actually be thiamine"
+Cre13.g606850	"GMM:33.99;GMM:30.5;GMM:3.5"	"development.unspecified;signalling.G-proteins;minor CHO metabolism.others"					"Cre13.g606850.t1.1;g14631.t1"		
+Cre13.g605000	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g14593.t1;g14593.t1;g14593.t1"		
+Cre13.g602450			Chloroplast				"g14559.t1;Cre13.g602450.t1.1"		
+Cre13.g579150				"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"		"bL28m;Cre13.g579150.t1.1;g14228.t1"	MRPL28	
+Cre13.g567327							"g13960.t1;Cre13.g567327.t1.1"		
+Cre13.g604550							"Cre13.g604550.t1.1;g14584.t1"		
+Cre13.g576900			"Secretory pathway"				g14177.t1		
+Cre13.g582671									
+Cre13.g603750			Chloroplast	"GO:0016020;GO:0015269;GO:0006813"	"membrane;calcium-activated potassium channel activity;potassium ion transport"	KCA1	"g14568.t1;KCA1;g14568.t1;KCA1;KCA1;g14568.t1;KCA1;g14568.t1"	"KCA1;KCA1;KCA1;KCA1"	"Calcium-activated BK potassium channel alpha subunit; contains one K+ selective pore domain; sequence shows the K+ filter selection and voltage sensor regions; related to human KCNMA1;Calcium-activated BK potassium channel alpha subunit; contains one K+ selective pore domain; sequence shows the K+ filter selection and voltage sensor regions; related to human KCNMA1;Calcium-activated BK potassium channel alpha subunit; contains one K+ selective pore domain; sequence shows the K+ filter selection and voltage sensor regions; related to human KCNMA1;Calcium-activated BK potassium channel alpha subunit; contains one K+ selective pore domain; sequence shows the K+ filter selection and voltage sensor regions; related to human KCNMA1"
+Cre13.g569750			Mitochondrion				"Cre13.g569750.t1.1;g14018.t1"		
+Cre13.g572050	"GMM:33.30.1;GMM:33.3.1;GMM:31.3;GMM:3.4;GMM:29.4.1"	"development.multitarget.target of rapamycin;development.multitarget.target of rapamycin;cell.cycle;minor CHO metabolism.myo-inositol;protein.postranslational modification.kinase"	"Secretory pathway"	"GO:0016773;GO:0005515"	"phosphotransferase activity, alcohol group as acceptor;protein binding"	SMG1	"g14068.t1;SMG1;g14068.t1;SMG1;SMG1;g14068.t1"	"SMG1;SMG1;SMG1"	"involved in nonsense mediated RNA decay; contains a Phosphatidylinositol 3-kinase and a FAT domain, like DNA-PKcs, ATM, ATR and TOR;involved in nonsense mediated RNA decay; contains a Phosphatidylinositol 3-kinase and a FAT domain, like DNA-PKcs, ATM, ATR and TOR;involved in nonsense mediated RNA decay; contains a Phosphatidylinositol 3-kinase and a FAT domain, like DNA-PKcs, ATM, ATR and TOR"
+Cre13.g568200			"Secretory pathway"			AXL1	"AXL1;g13982.t1;AXL1;g13982.t1;g13982.t1;AXL1;AXL1;g13982.t1"		"GT77 family;GT77 family;GT77 family;GT77 family"
+Cre13.g564151			Mitochondrion						
+Cre13.g566200	GMM:27.3.12	"RNA.regulation of transcription.C3H zinc finger family"		GO:0046872	"metal ion binding"	CGL112	"g13933.t1;Cre13.g566200.t1.1"	CGL112	"Conserved in the Green Lineage"
+Cre13.g569050							g14002.t1		
+Cre13.g572800			Chloroplast			TILS	"TILS;g14086.t1"	TILS1	"adds lysine moiety to anticodon base on trnI-CAU, to allow reading Ile AUA codon"
+Cre13.g604200			Mitochondrion				g14577.t1		
+Cre13.g564050			Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"		"g13879.t1;g13879.t1"		
+Cre13.g575850	GMM:30.11	signalling.light					"Cre13.g575850.t1.1;g14153.t1"		
+Cre13.g575366							"g14141.t1;g14141.t1"		
+Cre13.g590600	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	Mitochondrion	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE32	"PDE32;g14483.t1;g14483.t1;PDE32;PDE32;g14483.t1"		
+Cre13.g586350	GMM:28.2	DNA.repair	Mitochondrion				"g14388.t1;g14388.t1"		
+Cre13.g580800			Mitochondrion				g14266.t1		
+Cre13.g590150							"g14472.t1;g14472.t1"		
+Cre13.g606350	GMM:33.99	development.unspecified	Mitochondrion				"g14621.t1;g14621.t1;g14621.t1"		
+Cre13.g585750			Mitochondrion	"GO:0055114;GO:0051537;GO:0016491"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"		"g14376.t1;Cre13.g585750.t1.1;FAO11"		"FAD-dependent oxidoreductase, containing Rieske [2Fe-2S] iron-sulfur domain; possible sarcosine oxidase"
+Cre13.g579250	GMM:3.3	"minor CHO metabolism.sugar alcohols"	"Secretory pathway"				"g14230.t1;Cre13.g579250.t1.1;Cre13.g579250.t1.1;g14230.t1;g14230.t1;Cre13.g579250.t1.1;g14230.t1;Cre13.g579250.t1.1"		
+Cre13.g582600			Mitochondrion				"Cre13.g582600.t1.1;g14301.t1"		
+Cre13.g580000			"Secretory pathway"				"g14250.t2;g14250.t2"		
+Cre13.g591851							"g14511.t1;Cre13.g591850.t1.3;Cre13.g591850.t1.3;g14511.t1"		
+Cre13.g570250	"GMM:30.1;GMM:29.4.1;GMM:29.4"	"signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification"					"CKIN2;g14028.t1;CKIN1L;CKIN2;g14028.t1;CKIN1L"	"SNRK1B;SNRK1B"	"Mediates abiotic stress response, including heat and cold-stress;Mediates abiotic stress response, including heat and cold-stress"
+Cre13.g573950	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	ZRT3	"g14109.t1;CrZIP3;g14109.t1;CrZIP3;g14109.t1;CrZIP3;g14109.t1;CrZIP3;CrZIP3;g14109.t1"	"ZRT3;ZRT3;ZRT3;ZRT3;ZRT3"	"Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation; formerly ZIP3 in PMID: 15710683; PMID: 16766055;Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation; formerly ZIP3 in PMID: 15710683; PMID: 16766055;Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation; formerly ZIP3 in PMID: 15710683; PMID: 16766055;Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation; formerly ZIP3 in PMID: 15710683; PMID: 16766055;Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation; formerly ZIP3 in PMID: 15710683; PMID: 16766055"
+Cre13.g572272							"Cre13.g572272.t1.1;g14073.t1"		
+Cre13.g564450			Chloroplast			ELG43			
+Cre13.g577026									
+Cre13.g580900	"GMM:29.4;GMM:29.2.2.3.99"	"protein.postranslational modification;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc"		GO:0004674	"protein serine/threonine kinase activity"		"g14268.t1;g14268.t1"		
+Cre13.g602850	GMM:27.4	"RNA.RNA binding"	Chloroplast	GO:0003676	"nucleic acid binding"	SRS8	"SRP23;SRP33;g14539.t1;SRS11"	SRS8	"Serine/arginine-rich pre-mRNA splicing factor protein"
+Cre13.g566626									
+Cre13.g565517			Mitochondrion				g13918.t1		
+Cre13.g572750	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	"GO:0055114;GO:0048038;GO:0009308;GO:0008131;GO:0005507"	"oxidation-reduction process;quinone binding;amine metabolic process;primary amine oxidase activity;copper ion binding"	AMX3	"AMX3;g14085.t3"	AMX3	"Amiloride-binding protein (ABP); (Histaminase); Diamine oxidase (DAO); could be involved in putrescine degradation; functions as a homodimer, each subunit containing a Cu ion and a 2,4,5-trihydroxyphenylalanine quinone (TPQ) cofactor"
+Cre13.g571540									
+Cre13.g607050	"GMM:29.8;GMM:26.23;GMM:13.2.5.3"	"protein.assembly and cofactor ligation;misc.rhodanese;amino acid metabolism.degradation.serine-glycine-cysteine group.cysteine"	Chloroplast			TSU1	"g14637.t1;TST1;THT1;TSU1;Cre13.g607050.t1.1;TST"	TSU1	"Thiosulfate sulfurtransferase (Rhodanese, THTR). Participates in the formation of iron-sulfur complexes, cyanide detoxification or modification of sulfur-containing enzymes. Located in the mitochondrial matrix."
+Cre13.g566925							g13950.t1		
+Cre13.g567426									
+Cre13.g591350				"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT27	"MFT27;g14501.t1"		Permease
+Cre13.g579050	GMM:31.2	cell.division	Chloroplast			APC1:3frag	"APC1;Cre13.g579050.t1.1;g14225.t1;Cre13.g579050.t1.1;APC1;g14225.t1;g14225.t1;APC1;Cre13.g579050.t1.1"		"has many homologs but only in C. reinhardtii;has many homologs but only in C. reinhardtii;has many homologs but only in C. reinhardtii"
+Cre13.g588736			"Secretory pathway"				"g14443.t1;g14443.t1;g14443.t1;g14443.t1"		
+Cre13.g562501			Mitochondrion				"g13844.t1;SELD"	SELD1	"Selenide, water dikinase, involved in biogenesis of Selenocysteine"
+Cre13.g565270							g13908.t1		
+Cre13.g586550	GMM:21.2	"redox.ascorbate and glutathione"	"Secretory pathway"			CYB4	"Cre13.g586550.t1.1;CYB5-4;CYB4;g14392.t1"	CYB4	
+Cre13.g578100				GO:0005643	"nuclear pore"		"g14205.t1;g14205.t1;g14205.t1"	"NUP205;NUP205;NUP205"	"205 kDa Nuclear Pore Complex Protein; ts-lethal mutant was isolated (PMID 29743196);205 kDa Nuclear Pore Complex Protein; ts-lethal mutant was isolated (PMID 29743196);205 kDa Nuclear Pore Complex Protein; ts-lethal mutant was isolated (PMID 29743196)"
+Cre13.g575200	GMM:29.4	"protein.postranslational modification"		GO:0016787	"hydrolase activity"		"PPP42;g14137.t1;g14137.t1;PPP42;PPP42;g14137.t1;PPP42;g14137.t1;g14137.t1;PPP42;g14137.t1;PPP42"		
+Cre13.g577352			"Secretory pathway"				g14187.t1		
+Cre13.g602500			Chloroplast				"g14560.t1;g14560.t1"		
+Cre13.g589350	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"				FBB6	"FBB6;g14458.t1;Cre13.g589350.t1.1;FBB6;Cre13.g589350.t1.1;g14458.t1"	"FBB6;FBB6"	"Conserved protein found in ciliated organisms, with an unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation;Conserved protein found in ciliated organisms, with an unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation"
+Cre13.g569900							"g14021.t1;g14021.t1;g14021.t1;g14021.t1;g14021.t1;g14021.t1;g14021.t1"		
+Cre13.g583787			"Secretory pathway"						
+Cre13.g603700	"GMM:31.6.1.4.2.1;GMM:31.1.1.1.1;GMM:31.1"	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.organisation.cytoskeleton.actin.Actin;cell.organisation"				DII4	"g14567.t1;Cre13.g603700.t1.1;ACT1;NSG4;DII4"	IDA5	"Actin encoded by the IDA5 locus [gi:34581636, PMID: 9151671]; flagellar inner arm dynein subunit; present in Inner Arm Dynein species a b c d e g and some minor species"
+Cre13.g606974							g14635.t1		
+Cre13.g576000			"Secretory pathway"				g14156.t1		
+Cre13.g563400				"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"				
+Cre13.g585500			"Secretory pathway"				"HAP1;g14371.t1;Cre13.g585500.t1.1"		"contains a PAP2/haloperoxidase domain found in vanadium chloroperoxidases and related to phosphoesterases; closely related to upstream divergent HAP2 gene, and to more distantly linked HAP3 and HAP4; highly induced by sulfur starvation in WT, but not in sac1 mutants (PMID: 15470261)"
+Cre13.g562031							"g13832.t1;Cre13.g562050.t1.3"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre13.g562300	GMM:28.1.3	"DNA.synthesis/chromatin structure.histone"		"GO:0006334;GO:0005634;GO:0003677;GO:0000786"	"nucleosome assembly;nucleus;DNA binding;nucleosome"	HON2	g13838.t1	HON2	"Histone H1/H5 protein. ChromoDB HON343"
+Cre13.g605650	GMM:16.4.2.1	"secondary metabolism.N misc.betaine.betaine-aldehyde dehydrogenase"		"GO:0055114;GO:0016491;GO:0008152"	"oxidation-reduction process;oxidoreductase activity;metabolic process"	ALD7	"g14607.t1;Cre13.g605650.t1.1;ALD7;ALDH10A1;Cre13.g605650.t1.1;g14607.t1;ALD7;ALDH10A1"	"ALDH10;ALDH10"	"Family 10 aldehyde dehydrogenase; Betaine-aldehyde dehydrogenase;Family 10 aldehyde dehydrogenase; Betaine-aldehyde dehydrogenase"
+Cre13.g607800			Mitochondrion				g14652.t1		
+Cre13.g571850	"GMM:31.2;GMM:29.5.11.4.4"	"cell.division;protein.degradation.ubiquitin.E3.APC"				APC10	"g14062.t1;g14062.t1"	"APC10;APC10"	"Subunit of Anaphase Promoting Complex;Subunit of Anaphase Promoting Complex"
+Cre13.g587950			"Secretory pathway"				g14421.t1		
+Cre13.g571560			Chloroplast				"Cre13.g571551.t1.2;g14055.t1"		
+Cre13.g604050			"Secretory pathway"				"g14575.t1;Cre13.g604050.t1.1;Cre13.g604050.t1.1;g14575.t1;g14575.t1;Cre13.g604050.t1.1"		
+Cre13.g576550	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g14168.t2;g14168.t2"		
+Cre13.g591951			Mitochondrion				"g14513.t1;Cre13.g591950.t1.2;g14513.t1;Cre13.g591950.t1.2"		
+Cre13.g562475	GMM:29.3.4.1	"protein.targeting.secretory pathway.ER"		"GO:0046923;GO:0016021;GO:0006621"	"ER retention sequence binding;integral component of membrane;protein retention in ER lumen"		g13843.t1		
+Cre13.g564812									
+Cre13.g591100	"GMM:30.99;GMM:27.3.67"	"signalling.unspecified;RNA.regulation of transcription.putative transcription regulator"		"GO:0055085;GO:0016020"	"transmembrane transport;membrane"	MSC5	"MSCL3;g14496.t1;MSC5"		"protein of unknown function with mechanosensitive ion channel (MSC) like domain"
+Cre13.g578400	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Mitochondrion				"g14210.t1;Cre13.g578400.t1.1"		
+Cre13.g573400			Chloroplast				"g14098.t1;Cre13.g573400.t1.1"		
+Cre13.g588201						OPR58	"RAP6;g14428.t1"	OPR58	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain and a long N-terminal domain with no similarity"
+Cre13.g585800	GMM:29.5.1	protein.degradation.subtilases	Chloroplast	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SUB2	"Cre13.g585800.t1.1;SUB2;g14377.t1"		"contains a protease S8 (subtilisine, kexin) domain; most similar to secreted bacterial proteases"
+Cre13.g603400	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		GO:0005524	"ATP binding"		"SRH22;g14549.t1"		"SNF2-related protein. ChromoDB CHR3424"
+Cre13.g578600							g14214.t1		
+Cre13.g584100	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g14339.t1;g14339.t1;g14339.t1;g14339.t1;g14339.t1"		
+Cre13.g568672									
+Cre13.g565400							"g13915.t2;Cre13.g565400.t1.1;Cre13.g565400.t1.1;g13915.t2;Cre13.g565400.t1.1;g13915.t2;g13915.t2;Cre13.g565400.t1.1"		
+Cre13.g569450			"Secretory pathway"				g14012.t1		
+Cre13.g567950	GMM:2.1.2.1	"major CHO metabolism.synthesis.starch.AGPase"	Chloroplast	"GO:0016779;GO:0009058"	"nucleotidyltransferase activity;biosynthetic process"	STA1	"AGP1;Cre13.g567950.t1.1;STA1;g13975.t1"	AGP1	"ADP-glucose pyrophosphorylase large subunit 1; Glucose-1-phosphate adenylyltransferase / ADP-glucose synthase; regulatory subunit catalyzes the formation of the glucosyl nucleotide from ATP and glucose-1-phosphate; contains nucleotidyl transferase domain; involved in starch metabolism"
+Cre13.g585301	GMM:11.10.1	"lipid metabolism.glycolipid synthesis.MGDG synthase"	"Secretory pathway"	GO:0016758	"transferase activity, transferring hexosyl groups"	CPLD55	"CPLD55;g14367.t1;CPLD55;g14367.t1;CPLD55;g14367.t1"	"MGD1;MGD1;MGD1"	"Conserved in the Plant Lineage and Diatoms;Conserved in the Plant Lineage and Diatoms;Conserved in the Plant Lineage and Diatoms"
+Cre13.g570650							"g14036.t1;g14036.t1;g14036.t1"		
+Cre13.g604501				"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g14583.t1;g14583.t1;g14583.t1"		
+Cre13.g576433									
+Cre13.g585950			Chloroplast				"g14380.t1;Cre13.g585950.t1.1"		
+Cre13.g568400	GMM:29.5.7	protein.degradation.metalloprotease		"GO:0016887;GO:0006508;GO:0005524;GO:0004222"	"ATPase activity;proteolysis;ATP binding;metalloendopeptidase activity"	FTSH4	"YME1;FHL4;g13987.t1;Cre13.g568400.t1.1"	FTSH4	"mitochondrial FtsH protease; inner-membrane metalloprotease (M41) exposing catalytic sites to theintermembrane space (?i-AAA_ protease); probably in complex with FTSH11"
+Cre13.g578650	GMM:30.11	signalling.light	Chloroplast			CPLD10	"NUOAF5;CPLD10;g14215.t1;NUOAF5;CPLD10;g14215.t1"	"HCF173;HCF173"	"Arabidopsis homolog HCF173 is involved in psbA translation initiation; carries Rossman-fold domain; other domains show similarity to Mitochondrial complex I intermediate-associated protein 30 and NmrA negative transcriptional regulator protein family; conserved in the plant lineage and Diatoms;Arabidopsis homolog HCF173 is involved in psbA translation initiation; carries Rossman-fold domain; other domains show similarity to Mitochondrial complex I intermediate-associated protein 30 and NmrA negative transcriptional regulator protein family; conserved in the plant lineage and Diatoms"
+Cre13.g584650			Chloroplast				"g14351.t1;Cre13.g584650.t1.1"		
+Cre13.g567250			Mitochondrion				g13958.t1		
+Cre13.g589750							g14467.t1		
+Cre13.g565200	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g13905.t1;g13905.t1"		
+Cre13.g563650							g13869.t1		
+Cre13.g564900	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP3	"MRP3;g13898.t1;Cre13.g564900.t1.1;Cre13.g564900.t1.1;g13898.t1;MRP3;Cre13.g564900.t1.1;g13898.t1;MRP3;MRP3;g13898.t1;Cre13.g564900.t1.1;MRP3;g13898.t1;Cre13.g564900.t1.1;g13898.t1;Cre13.g564900.t1.1;MRP3;g13898.t1;MRP3;Cre13.g564900.t1.1"		"putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683;putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683;putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683;putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683;putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683;putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683;putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683"
+Cre13.g574375			"Secretory pathway"						
+Cre13.g591900			Mitochondrion			PLD1	"PLD6;Cre13.g591900.t1.1;g14512.t1;PLD1"		"Has phospholipase D domain; Conserved in green algae but not plants"
+Cre13.g592300	GMM:12.4	N-metabolism.misc		"GO:0055114;GO:0050660;GO:0017150;GO:0008033"	"oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing"		"g14520.t1;Cre13.g592300.t1.1"		
+Cre13.g582650	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	MAPK1	"g14302.t1;MAPK1;LF4"		"Mitogen-activated protein kinase 1 (gi:3213552); Long Flagella 4 (MOK homolog). Characterized by Berman et al. 23 [PMID: 1284215]. Previously annotated as LF4 or Long Flagella 4"
+Cre13.g605600				"GO:0051607;GO:0003725"	"defense response to virus;double-stranded RNA binding"	OAS1	"g14606.t2;OAS1"	OAS1	"Oligoadenylate synthetases are antiviral enzymes that counteract vial attack by degrading viral RNA. Part of the ?2-5A system?"
+Cre13.g577450	GMM:11.5.3	"lipid metabolism.glycerol metabolism.FAD-dependent glycerol-3-phosphate dehydrogenase"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"GPA3;g14189.t1"		"FAD-dependent;"
+Cre13.g591400	"GMM:18.4.5;GMM:18.4.1"	"Co-factor and vitamine metabolism.pantothenate.pantothenate kinase (PANK);Co-factor and vitamine metabolism.pantothenate.branched-chain amino acid aminotransferase"		"GO:0015937;GO:0005524;GO:0004594"	"coenzyme A biosynthetic process;ATP binding;pantothenate kinase activity"	COA1	"COA1;g14502.t1"	COAA1	"Catalyzes the first step (out of five) of CoA biosynthesis from pantothenate; Named for pantothenate kinase in E. coli (coaA)"
+Cre13.g573850									
+Cre13.g578150	GMM:25	C1-metabolism				RRA1	"Cre13.g578150.t1.1;g14204.t1;RRA1"	RRAA1	"Regulator of ribonuclease activity A (rraA)"
+Cre13.g586450			Chloroplast	GO:0008080	"N-acetyltransferase activity"		"NAT31;g14390.t1;NAT31;g14390.t1"		"Related to GCN5;Related to GCN5"
+Cre13.g590626									
+Cre13.g606300			"Secretory pathway"	"GO:0051607;GO:0003725"	"defense response to virus;double-stranded RNA binding"		"g14620.t1;g14620.t1;g14620.t1;g14620.t1;g14620.t1;g14620.t1;g14620.t1"		
+Cre13.g566900	GMM:31.3	cell.cycle		"GO:0006281;GO:0000724"	"DNA repair;double-strand break repair via homologous recombination"		g13949.t1		
+Cre13.g577400	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG16	"g14188.t1;ELG16"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre13.g563350							"g13862.t1;Cre13.g563350.t1.1;Cre13.g563350.t1.1;g13862.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre13.g586400							"g14389.t1;Cre13.g586400.t1.1"		
+Cre13.g571600				"GO:0006888;GO:0005801;GO:0005622"	"ER to Golgi vesicle-mediated transport;cis-Golgi network;intracellular"	TRS20	"Cre13.g571600.t1.1;TRS20;g14057.t1"	TRS20	"Expressed Protein. Conserved protein, similar to TRS20/Sedlin, a component of the TRAPP complex, involved in Er to Golgi trafficking."
+Cre13.g582150							"g14294.t1;Cre13.g582150.t1.1;Cre13.g582150.t1.1;g14294.t1;g14294.t1;Cre13.g582150.t1.1"		
+Cre13.g564100	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	PTK2	"g13880.t1;PTK2;g13880.t1;PTK2"		"Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre13.g591200	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB22	"HTB38;Cre13.g591200.t1.1;g14498.t1;Cre13.g591200.t1.1;g14498.t1;HTB38"	"HTB22;HTB22"	"replication linked H2B; histone gene cluster XXII (type BA) [PMID: 8590479, variant sequence confirmed];replication linked H2B; histone gene cluster XXII (type BA) [PMID: 8590479, variant sequence confirmed]"
+Cre13.g566150	GMM:27.1	RNA.processing		"GO:0008173;GO:0008168;GO:0006396;GO:0003723"	"RNA methyltransferase activity;methyltransferase activity;RNA processing;RNA binding"	RMR1	"Cre13.g566150.t1.1;g13932.t1;RMR1;RMR1;Cre13.g566150.t1.1;g13932.t1"	"RMR1;RMR1"	
+Cre13.g583898									
+Cre13.g571100							"Cre13.g571100.t1.1;g14045.t1"		
+Cre13.g605050							g14594.t1		
+Cre13.g568176							"g13981.t1;g13981.t1;g13981.t1"		
+Cre13.g606700			Mitochondrion				g14627.t1		
+Cre13.g562526			Mitochondrion				g13845.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre13.g571150	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"				NUOP1	"Cre13.g571150.t1.1;g14046.t1"	NUOP1	"NADH:ubiquinone oxidoreductase (Complex I) 10 kDa subunit; precursor for mitochondrial product. [Genbank: AY549572; Ortholog of NDUFC2 in Homo sapiens"
+Cre13.g591073			Mitochondrion	GO:0005515	"protein binding"		"Cre13.g591073.t1.1;g14495.t1"		
+Cre13.g588700							"g14442.t1;g14442.t1;g14442.t1;g14442.t1;g14442.t1;g14442.t1;g14442.t1"		
+Cre13.g579650	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre13.g607350	GMM:8.3	"TCA / organic transformation.carbonic anhydrases"	Chloroplast	"GO:0008270;GO:0004089"	"zinc ion binding;carbonate dehydratase activity"	CAH7	"CAH7;Cre13.g607350.t1.1;g14643.t1"	CAH7	
+Cre13.g587100			Chloroplast	"GO:0055114;GO:0050897;GO:0016636;GO:0010024"	"oxidation-reduction process;cobalt ion binding;oxidoreductase activity, acting on the CH-CH group of donors, iron-sulfur protein as acceptor;phytochromobilin biosynthetic process"		"g14404.t1;PCYA;Cre13.g587100.t1.1;g14404.t1;Cre13.g587100.t1.1;PCYA;g14404.t1;Cre13.g587100.t1.1;PCYA"	"PCYA1;PCYA1;PCYA1"	
+Cre13.g566650	GMM:11.1.9	"lipid metabolism.FA synthesis and FA elongation.long chain fatty acid CoA ligase"		"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"g13944.t2;Cre13.g566650.t1.1"	LCS2	
+Cre13.g603500			Chloroplast				"Cre13.g603500.t1.1;g14551.t1;g14551.t1;Cre13.g603500.t1.1;g14551.t1;Cre13.g603500.t1.1;Cre13.g603500.t1.1;g14551.t1"		
+Cre13.g579450			"Secretory pathway"			CST1	"CST1;g14235.t1;g14235.t1;CST1"		"transmembrane protein; shows similarity to various transporters and permeases; highly expressed; small gene family on chromosome 13, appears specific to Chlamydomonadales;transmembrane protein; shows similarity to various transporters and permeases; highly expressed; small gene family on chromosome 13, appears specific to Chlamydomonadales"
+Cre13.g597676									
+Cre13.g583217			Chloroplast	GO:0008080	"N-acetyltransferase activity"		g14318.t1		
+Cre13.g602750	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"					"Cre13.g602750.t1.1;g14565.t1;g14565.t1;Cre13.g602750.t1.1"		
+Cre13.g587650							"g14416.t1;Cre13.g587650.t1.1"		
+Cre13.g571876									
+Cre13.g573550	GMM:31.1	cell.organisation				ANK26	"g14101.t1;ANK26;ANK26;g14101.t1;ANK26;g14101.t1"		"protein of unknown function with ankyrin repeats;protein of unknown function with ankyrin repeats;protein of unknown function with ankyrin repeats"
+Cre13.g563150			Chloroplast			CGLD8	"CGLD8;g13857.t1;Cre13.g563150.t1.1;g13857.t1;CGLD8;Cre13.g563150.t1.1;Cre13.g563150.t1.1;CGLD8;g13857.t1"	"PAB1;PAB1;PAB1"	"Conserved in all Archaeplastida and many secondary algae, but not Cyanobacteria; there are two paralogs in Ostreococcus and Streptophytes, one of which (At4g34090 in Arabidopsis) interacts with CF1 gamma and promotes assembly of CF1, while the other one (AT2G23370) is mitochondrial; the Chlamydomonas protein could be dually targeted;Conserved in all Archaeplastida and many secondary algae, but not Cyanobacteria; there are two paralogs in Ostreococcus and Streptophytes, one of which (At4g34090 in Arabidopsis) interacts with CF1 gamma and promotes assembly of CF1, while the other one (AT2G23370) is mitochondrial; the Chlamydomonas protein could be dually targeted;Conserved in all Archaeplastida and many secondary algae, but not Cyanobacteria; there are two paralogs in Ostreococcus and Streptophytes, one of which (At4g34090 in Arabidopsis) interacts with CF1 gamma and promotes assembly of CF1, while the other one (AT2G23370) is mitochondrial; the Chlamydomonas protein could be dually targeted"
+Cre13.g565650	"GMM:16.1.5;GMM:16.1.2.8;GMM:16.1.1.10"	"secondary metabolism.isoprenoids.terpenoids;secondary metabolism.isoprenoids.mevalonate pathway.geranyl diphosphate synthase;secondary metabolism.isoprenoids.non-mevalonate pathway.geranylgeranyl pyrophosphate synthase"	Chloroplast	"GO:0016765;GO:0015979;GO:0008299"	"transferase activity, transferring alkyl or aryl (other than methyl) groups;photosynthesis;isoprenoid biosynthetic process"		"g13921.t1;Cre13.g565650.t1.1;Cre13.g565650.t1.1;g13921.t1"		
+Cre13.g565450	GMM:23.1.2.8	"nucleotide metabolism.synthesis.purine.SAICAR lyase"	Chloroplast	"GO:0006188;GO:0004018"	"IMP biosynthetic process;N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity"	PURB	"PURB;Cre13.g565450.t1.1;g13916.t1;PURB;Cre13.g565450.t1.1;g13916.t1"	"PURB1;PURB1"	"involved in purine biosynthesis;involved in purine biosynthesis"
+Cre13.g565550	GMM:27.2	RNA.transcription				RPB11	"g13919.t1;RPB11;Cre13.g565550.t1.1"	RPB11	"13.6 kDa polypeptide subunit for putative DNA-directed RNA polymerase II,, homologous to DNA-directed RNA polymerase II from other species such as rice, Arabidopsis, Drosophila and human"
+Cre13.g586500	GMM:31.1	cell.organisation	Chloroplast	"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN17-2	"KIN17-2;g14391.t1;Cre13.g586500.t1.1"	KIN17B	"kinesin-17 family, novel kinesin family (PMID: 16481395)"
+Cre13.g573500						FAP95	"Cre13.g573500.t1.1;g14100.t1;BUG12"	FAP95	"Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG12 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400]"
+Cre13.g605300			Chloroplast						
+Cre13.g569500	GMM:13.2.5.3	"amino acid metabolism.degradation.serine-glycine-cysteine group.cysteine"		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"g14013.t1;Cre13.g569500.t1.1"		"One of three genes (Cre09.g401750, Cre13.g569400, Cre13.g569500) that is similar to Bordetella ACCESSION CAE41228"
+Cre13.g568550	"GMM:29.4;GMM:29.2.2"	"protein.postranslational modification;protein.synthesis.ribosome biogenesis"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g13991.t1;g13991.t1"		
+Cre13.g579976			Mitochondrion						
+Cre13.g589426									
+Cre13.g574050			"Secretory pathway"				"g14112.t1;g14112.t1"		
+Cre13.g583200			Mitochondrion				"NAT5;g14317.t1;Cre13.g583200.t1.1"		"Putative ribosomal-protein-alanine acetyltransferase"
+Cre13.g604150	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Mitochondrion	"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"		"Cre13.g604150.t1.1;g14576.t1"		
+Cre13.g562250	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP92	"g13837.t1;g13837.t1;g13837.t1;g13837.t1"	"FAP92;FAP92;FAP92;FAP92"	"Found in the flagellar proteome;Found in the flagellar proteome;Found in the flagellar proteome;Found in the flagellar proteome"
+Cre13.g577550	GMM:27.3.99	"RNA.regulation of transcription.unclassified"				DDB2	"Cre13.g577550.t1.1;g14191.t1;DDB2;g14191.t1;DDB2;Cre13.g577550.t1.1"	"DDB2;DDB2"	"Homologous to eukaryotic UV-DDB2(UV-damaged DNA binding complex subunit 2 protein); Nucleus;Homologous to eukaryotic UV-DDB2(UV-damaged DNA binding complex subunit 2 protein); Nucleus"
+Cre13.g579076									
+Cre13.g605500				"GO:0051607;GO:0003725"	"defense response to virus;double-stranded RNA binding"		"g14604.t1;g14604.t1;g14604.t1"		
+Cre13.g569400	GMM:13.2.5.3	"amino acid metabolism.degradation.serine-glycine-cysteine group.cysteine"		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	TAUD1	"g14011.t1;TAUD1;Cre13.g569400.t1.1"		"One of three genes (Cre09.g401750, Cre13.g569400, Cre13.g569500) that is similar to Bordetella ACCESSION CAE41228"
+Cre13.g568000			"Secretory pathway"				"g13976.t1;Cre13.g568000.t1.1;g13976.t1;Cre13.g568000.t1.1"		
+Cre13.g567650	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"	"Secretory pathway"	"GO:0008236;GO:0006508"	"serine-type peptidase activity;proteolysis"		"g13969.t1;g13969.t1"		
+Cre13.g583861									
+Cre13.g575400			"Secretory pathway"				"g14142.t1;g14142.t1"		
+Cre13.g582800				"GO:0046872;GO:0008716;GO:0005737;GO:0005524"	"metal ion binding;D-alanine-D-alanine ligase activity;cytoplasm;ATP binding"		"Cre13.g582800.t1.1;g14309.t1"		
+Cre13.g565150							g13904.t1		
+Cre13.g574300	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g14117.t1;g14117.t1"		
+Cre13.g585450			Chloroplast				g14370.t1		
+Cre13.g575900						CGL117	"g14154.t1;Cre13.g575900.t1.1;g14154.t1;Cre13.g575900.t1.1"	"CGL117;CGL117"	
+Cre13.g567363	GMM:30.4.1	"signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase"	Mitochondrion			FAP220	g13961.t1	FAP220	
+Cre13.g564800	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383"	"intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity"	CYG67	"g13895.t1;CYG57;CYG67;CYG67;CYG57;g13895.t1;CYG67;g13895.t1;CYG57"		"contains N-terminal NO-sensing and dimerization domains;contains N-terminal NO-sensing and dimerization domains;contains N-terminal NO-sensing and dimerization domains"
+Cre13.g588026									
+Cre13.g603650									
+Cre13.g587800							g14419.t1	NUP188	"188 kDa Nuclear Pore Complex Protein"
+Cre13.g607850	GMM:27.1.1	RNA.processing.splicing	Mitochondrion	GO:0003676	"nucleic acid binding"		"Cre13.g607850.t1.1;g14653.t2;g14653.t2;Cre13.g607850.t1.1;g14653.t2;Cre13.g607850.t1.1;Cre13.g607850.t1.1;g14653.t2;g14653.t2;Cre13.g607850.t1.1;Cre13.g607850.t1.1;g14653.t2;g14653.t2;Cre13.g607850.t1.1"		
+Cre13.g572250							g14072.t1		
+Cre13.g607000	GMM:29.5.7	protein.degradation.metalloprotease		"GO:0016787;GO:0008152"	"hydrolase activity;metabolic process"	xhp1	"XHP1;g14636.t1;Cre13.g607000.t1.1"		
+Cre13.g584350			"Secretory pathway"				"g14344.t1;g14344.t1;g14344.t1;g14344.t1;g14344.t1"		
+Cre13.g592500	GMM:18.3	"Co-factor and vitamine metabolism.riboflavin"		"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		g14524.t1		
+Cre13.g577050	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	Mitochondrion			ELG7	"g14181.t1;ELG7;g14181.t1;ELG7"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre13.g573450	"GMM:27.1.3.2;GMM:27.1"	"RNA.processing.3' end processing.CPSF160;RNA.processing"	"Secretory pathway"	"GO:0005634;GO:0003676"	"nucleus;nucleic acid binding"		"g14099.t1;Cre13.g573450.t1.1;CPS;CPS;g14099.t1;Cre13.g573450.t1.1;Cre13.g573450.t1.1;g14099.t1;CPS"		"Contains MMS1_N and CPSF_A domains typical of U2 snRNP-associated protein Sap130;Contains MMS1_N and CPSF_A domains typical of U2 snRNP-associated protein Sap130;Contains MMS1_N and CPSF_A domains typical of U2 snRNP-associated protein Sap130"
+Cre13.g604905			Mitochondrion				"g14591.t1;Cre13.g604905.t1.1;Cre13.g604905.t1.1;g14591.t1;Cre13.g604905.t1.1;g14591.t1"		
+Cre13.g573351	GMM:29.2.1.2.1.16	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S16"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"		"g14097.t1;Cre13.g573351.t1.1"		
+Cre13.g583450			Mitochondrion			EZY17	"Cre13.g583450.t1.1;EZY17;g14325.t1"	EZY17	"EZY17k/ClassVIII/PLAC8, cysteine-rich [PMID: 18487630], possible zinc exporter"
+Cre13.g574000	GMM:34.18	"transport.unspecified anions"		"GO:0055085;GO:0016020;GO:0006821;GO:0005247"	"transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity"	CLV1	"CLV1;g14110.t1;GEF1;CLV1;GEF1;g14110.t1;GEF1;g14110.t1;CLV1;g14110.t1;CLV1;GEF1"		
+Cre13.g576850			"Secretory pathway"				"Cre13.g576850.t1.1;g14176.t1"		
+Cre13.g587850			"Mitochondrion;Chloroplast"						
+Cre13.g578451	"GMM:29.1.4;GMM:29.1"	"protein.aa activation.leucine-tRNA ligase;protein.aa activation"	Chloroplast	"GO:0006429;GO:0006418;GO:0005524;GO:0004823;GO:0004812;GO:0002161;GO:0000166"	"leucyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;ATP binding;leucine-tRNA ligase activity;aminoacyl-tRNA ligase activity;aminoacyl-tRNA editing activity;nucleotide binding"	TSL1	"TSL1;g14211.t1;g14211.t1;TSL1;g14211.t1;TSL1;g14211.t1;TSL1"	"TSL1;TSL1;TSL1;TSL1"	"Possibly the chloroplast leucyl-tRNA synthetase;Possibly the chloroplast leucyl-tRNA synthetase;Possibly the chloroplast leucyl-tRNA synthetase;Possibly the chloroplast leucyl-tRNA synthetase"
+Cre13.g571750			"Secretory pathway"	GO:0016020	membrane		"g14060.t1;Cre13.g571750.t1.1;Cre13.g571750.t1.1;g14060.t1"		
+Cre13.g585250	GMM:34.15	transport.potassium		GO:0051260	"protein homooligomerization"		"g14366.t1;g14366.t1"		
+Cre13.g575776			Mitochondrion				g14151.t1		
+Cre13.g603350	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG56	"CYG70;g14548.t1"		"Protein with domain similar to Guanylate cyclase soluble, beta-2 chain (GCS-beta-2) [Bos taurus]"
+Cre13.g567200	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g13957.t1;g13957.t1;g13957.t1"		
+Cre13.g563250			"Secretory pathway"				"Cre13.g563250.t1.1;g13859.t1"		
+Cre13.g582734			Chloroplast						
+Cre13.g574700						PEX13	"g14126.t1;Cre13.g574700.t1.1;CGL140;CGL140;Cre13.g574700.t1.1;g14126.t1;g14126.t1;CGL140;Cre13.g574700.t1.1"	"PEX13;PEX13;PEX13"	"Contains a Src homology 3 (SH3) domain; an essential component of the import machinery for peroxisomal matrix proteins; binds to the peroxisomal targeting type I (PTS1) receptor Pex5;Contains a Src homology 3 (SH3) domain; an essential component of the import machinery for peroxisomal matrix proteins; binds to the peroxisomal targeting type I (PTS1) receptor Pex5;Contains a Src homology 3 (SH3) domain; an essential component of the import machinery for peroxisomal matrix proteins; binds to the peroxisomal targeting type I (PTS1) receptor Pex5"
+Cre13.g576700							"g14171.t1;g14171.t1;g14171.t1;g14171.t1"		
+Cre13.g578676							g14216.t1		
+Cre13.g607900			Mitochondrion			CPLD68	g14654.t1	CPLD68	
+Cre13.g572350	GMM:29.6.2.1	"protein.folding.chaperones and co-chaperones.small HSPs"	Chloroplast			HSP22G	"Cre13.g572350.t1.1;g14075.t1"	HSP22G	"small heat shock protein containing an alpha-crystallin domain; N-terminus by ChloroP predicted to be chloroplast transit peptide; PMID: 16143837"
+Cre13.g586600			"Secretory pathway"	GO:0016021	"integral component of membrane"		"g14393.t1;Cre13.g586600.t1.1;Cre13.g586600.t1.1;g14393.t1"		
+Cre13.g575150			Mitochondrion				"g14135.t1;g14135.t1;g14135.t1;g14135.t1;g14135.t1;g14135.t1"		
+Cre13.g580500				"GO:0016020;GO:0006897"	"membrane;endocytosis"		"g14260.t2;g14260.t2"		
+Cre13.g573700							"Cre13.g573700.t1.1;g14104.t1"		
+Cre13.g586050	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	"protein binding"		g14382.t1		
+Cre13.g573100			"Secretory pathway"			MAM3C	"MAM3C;g14092.t1;g14092.t1;MAM3C"		"contains a DUF21 transmembrane domain of unknown function and 2 CBS domains (found in Hemolysins and Mg2+/CO2 transporters CorB CorC); similarity to many Arabidopsis proteins and to yeast Mam3p, involved in mitochondrial biogenesis;contains a DUF21 transmembrane domain of unknown function and 2 CBS domains (found in Hemolysins and Mg2+/CO2 transporters CorB CorC); similarity to many Arabidopsis proteins and to yeast Mam3p, involved in mitochondrial biogenesis"
+Cre13.g585100				GO:0006886	"intracellular protein transport"		"g14362.t1;Cre13.g585100.t1.1"		
+Cre13.g589450	"GMM:31.6.1.1;GMM:20.1.7.6.1"	"cell.motility.eukaryotes.basal bodies;stress.biotic.PR-proteins.PR6 (proteinase inhibitors).trypsin inhibitor"					"g14461.t1;Cre13.g589450.t1.1;g14461.t1;Cre13.g589450.t1.1;Cre13.g589450.t1.1;g14461.t1;g14461.t1;Cre13.g589450.t1.1"	"FBB6L1;FBB6L1;FBB6L1;FBB6L1"	"Similar to FBB6 with identical domains;Similar to FBB6 with identical domains;Similar to FBB6 with identical domains;Similar to FBB6 with identical domains"
+Cre13.g606101	GMM:33.99	development.unspecified	"Secretory pathway"				"g14616.t1;Cre13.g606100.t1.3;g14616.t1;Cre13.g606100.t1.3"		
+Cre13.g570550	GMM:23.2	"nucleotide metabolism.degradation"	Mitochondrion	"GO:0009972;GO:0008270;GO:0004126"	"cytidine deamination;zinc ion binding;cytidine deaminase activity"	CDD1	"Cre13.g570550.t1.1;g14034.t1;Cre13.g570550.t1.1;g14034.t1"	"CDD1;CDD1"	"CMP/dCMP deaminase, zinc-binding; Cytidine aminohydrolase (CDA);CMP/dCMP deaminase, zinc-binding; Cytidine aminohydrolase (CDA)"
+Cre13.g604750	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"	CGL94	"Cre13.g604750.t1.1;g14588.t1;Cre13.g604750.t1.1;g14588.t1"	"CGL94;CGL94"	"Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre13.g576650	GMM:13.1.7.2	"amino acid metabolism.synthesis.histidine.phosphoribosyl-ATP pyrophosphatase"		"GO:0004635;GO:0000105"	"phosphoribosyl-AMP cyclohydrolase activity;histidine biosynthetic process"	HIS4	"g14170.t1;Cre13.g576650.t1.1;HIS4;HIS4;g14170.t1;Cre13.g576650.t1.1;HIS4;Cre13.g576650.t1.1;g14170.t1"	"HIS4;HIS4;HIS4"	"Histidine biosynthesis bifunctional protein hisIE, plastid precursor; performs Phosphoribosyl-AMP cyclohydrolase (PRA-CH) (EC 3.5.4.19) and Phosphoribosyl-ATP pyrophosphatase (PRA-PH) (EC 3.6.1.31) activities.;Histidine biosynthesis bifunctional protein hisIE, plastid precursor; performs Phosphoribosyl-AMP cyclohydrolase (PRA-CH) (EC 3.5.4.19) and Phosphoribosyl-ATP pyrophosphatase (PRA-PH) (EC 3.6.1.31) activities.;Histidine biosynthesis bifunctional protein hisIE, plastid precursor; performs Phosphoribosyl-AMP cyclohydrolase (PRA-CH) (EC 3.5.4.19) and Phosphoribosyl-ATP pyrophosphatase (PRA-PH) (EC 3.6.1.31) activities."
+Cre13.g603550			Chloroplast				"Cre13.g603550.t1.1;g14552.t1;Cre13.g603550.t1.1;g14552.t1"		
+Cre13.g567400	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	"Secretory pathway"	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE16	"PDE16;g13962.t1"		"Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain 3',5'-cyclic-nucleotide phosphodiesterase"
+Cre13.g566100							"g13931.t1;Cre13.g566100.t1.1"		
+Cre13.g584700			Mitochondrion				g14352.t1		
+Cre13.g569600			Chloroplast				"g14015.t1;Cre13.g569600.t1.1"		
+Cre13.g585850	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"		GO:0016758	"transferase activity, transferring hexosyl groups"		"Cre13.g585850.t1.1;g14378.t1"		"N-acetylglucosaminyldiphosphodolichol N-acetylglucosaminyltransferase"
+Cre13.g590650							"Cre13.g590650.t1.1;g14485.t1"		
+Cre13.g577300	GMM:24	"biodegradation of xenobiotics"	Mitochondrion			GOX13	"Cre13.g577300.t1.1;g14186.t1;GOX13"	GOX13	"The substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); c"
+Cre13.g592200	"GMM:12.2.1.2;GMM:12.2.1"	"N-metabolism.ammonia metabolism.glutamate synthase.NADH dependent;N-metabolism.ammonia metabolism.glutamate synthase"	Chloroplast	"GO:0055114;GO:0016638;GO:0016491;GO:0015930;GO:0008152;GO:0006807;GO:0006537"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-NH2 group of donors;oxidoreductase activity;glutamate synthase activity;metabolic process;nitrogen compound metabolic process;glutamate biosynthetic process"	GSN1	"Cre13.g592200.t1.1;g14518.t1;GSN1"	GLT1	"NADH-dependent glutamate synthase (EC 1.4.1.14); NADH-dependent glutamine-2-oxoglutarate aminotransferase (NADH-GOGAT); plastid targeting predicted by Target-P; Ortholog to GLT1 in Arabidopsis thaliana"
+Cre13.g576250							g14161.t1		
+Cre13.g579598	GMM:2.1.2.2	"major CHO metabolism.synthesis.starch.starch synthase"				SSS3	"SSS3;Cre13.g579600.t2.1;g14240.t2;g14240.t2;SSS3;Cre13.g579600.t2.1;Cre13.g579600.t2.1;g14240.t2;SSS3;SSS3;g14240.t2;Cre13.g579600.t2.1;SSS3;g14240.t2;Cre13.g579600.t2.1;g14240.t2;Cre13.g579600.t2.1;SSS3"	"SSS3B;SSS3B;SSS3B;SSS3B;SSS3B;SSS3B"	"Soluble starch synthase with similarity to plant starch synthase III (e.g., SS III from Vigna GenBank CAB4374.1); ADP-glucose alpha-1,4 glucan alpha-4-glucanotransferase; catalyses the transfer of aglucosyl moety of ADP-glucose to the non-reducing end of a pre-existing alpha 1,4 linked chain;Soluble starch synthase with similarity to plant starch synthase III (e.g., SS III from Vigna GenBank CAB4374.1); ADP-glucose alpha-1,4 glucan alpha-4-glucanotransferase; catalyses the transfer of aglucosyl moety of ADP-glucose to the non-reducing end of a pre-existing alpha 1,4 linked chain;Soluble starch synthase with similarity to plant starch synthase III (e.g., SS III from Vigna GenBank CAB4374.1); ADP-glucose alpha-1,4 glucan alpha-4-glucanotransferase; catalyses the transfer of aglucosyl moety of ADP-glucose to the non-reducing end of a pre-existing alpha 1,4 linked chain;Soluble starch synthase with similarity to plant starch synthase III (e.g., SS III from Vigna GenBank CAB4374.1); ADP-glucose alpha-1,4 glucan alpha-4-glucanotransferase; catalyses the transfer of aglucosyl moety of ADP-glucose to the non-reducing end of a pre-existing alpha 1,4 linked chain;Soluble starch synthase with similarity to plant starch synthase III (e.g., SS III from Vigna GenBank CAB4374.1); ADP-glucose alpha-1,4 glucan alpha-4-glucanotransferase; catalyses the transfer of aglucosyl moety of ADP-glucose to the non-reducing end of a pre-existing alpha 1,4 linked chain;Soluble starch synthase with similarity to plant starch synthase III (e.g., SS III from Vigna GenBank CAB4374.1); ADP-glucose alpha-1,4 glucan alpha-4-glucanotransferase; catalyses the transfer of aglucosyl moety of ADP-glucose to the non-reducing end of a pre-existing alpha 1,4 linked chain"
+Cre13.g561800			Mitochondrion	GO:0005515	"protein binding"		"GEX1;g13827.t1;GEX1;g13827.t1;GEX1;g13827.t1;GEX1;g13827.t1;GEX1;g13827.t1;GEX1;g13827.t1;g13827.t1;GEX1"		"C2 domain-containing. ts lethal mutations isolated (PMID 25336509);C2 domain-containing. ts lethal mutations isolated (PMID 25336509);C2 domain-containing. ts lethal mutations isolated (PMID 25336509);C2 domain-containing. ts lethal mutations isolated (PMID 25336509);C2 domain-containing. ts lethal mutations isolated (PMID 25336509);C2 domain-containing. ts lethal mutations isolated (PMID 25336509);C2 domain-containing. ts lethal mutations isolated (PMID 25336509)"
+Cre13.g588650			"Secretory pathway"				"g14441.t1;Cre13.g588650.t1.1;Cre13.g588650.t1.1;g14441.t1;Cre13.g588650.t1.1;g14441.t1;g14441.t1;Cre13.g588650.t1.1"		
+Cre13.g581650	GMM:29.2.1.1.1.2.12	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L12"	Chloroplast	"GO:0006412;GO:0003735"	"translation;structural constituent of ribosome"	PRPL7	"g14284.t1;L12;Cre13.g581650.t1.1;Cre13.g581650.t1.1;g14284.t1;L12"	"PRPL7;PRPL7"	"imported to chloroplast; Chloroplast large ribosomal subunit protein;imported to chloroplast; Chloroplast large ribosomal subunit protein"
+Cre13.g563450									
+Cre13.g585651			Mitochondrion	"GO:0006508;GO:0004176"	"proteolysis;ATP-dependent peptidase activity"				
+Cre13.g571927			"Secretory pathway"						
+Cre13.g591250			"Secretory pathway"			EZY20	"EZY20;g14499.t2;g14499.t2;EZY20"	"EZY20;EZY20"	"unknown function;unknown function"
+Cre13.g587050	GMM:29.2.5	protein.synthesis.release		"GO:0016149;GO:0006415;GO:0005737"	"translation release factor activity, codon specific;translational termination;cytoplasm"	ERF1	"g14403.t1;ERF1;Cre13.g587050.t1.1;Cre13.g587050.t1.1;ERF1;g14403.t1;g14403.t1;ERF1;Cre13.g587050.t1.1"	"ERF1;ERF1;ERF1"	"eukaryotic peptide release factor 1; eRF/aRF subunit (eRF1);gi 18250310 gb AAL17660.1;eukaryotic peptide release factor 1; eRF/aRF subunit (eRF1);gi 18250310 gb AAL17660.1;eukaryotic peptide release factor 1; eRF/aRF subunit (eRF1);gi 18250310 gb AAL17660.1"
+Cre13.g580200							"g14254.t1;Cre13.g580200.t1.1"		
+Cre13.g562200							"g13836.t1;g13836.t1"		
+Cre13.g571580						CSB53	"g14056.t1;CSB53"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre13.g563926									
+Cre13.g587750				"GO:0017119;GO:0006891"	"Golgi transport complex;intra-Golgi vesicle-mediated transport"	COG6	"g14418.t1;COG6;Cre13.g587750.t1.1"	COG6	"Expressed protein. Similar to COG6/COD2, component of oligomeric golgi complex 6, involved in vesicle tethering and other Golgi functions"
+Cre13.g569200	"GMM:29.3.4.99;GMM:29.3"	"protein.targeting.secretory pathway.unspecified;protein.targeting"		"GO:0048500;GO:0008312;GO:0006614;GO:0005525"	"signal recognition particle;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane;GTP binding"	SRP54	"SRP54;Cre13.g569200.t1.1;g14005.t1;SRP54;Cre13.g569200.t1.1;g14005.t1"	"SRP54;SRP54"	"Expressed Protein. Conserved protein similar to signal recognition particle beta. Involved in ER protein translocation.;Expressed Protein. Conserved protein similar to signal recognition particle beta. Involved in ER protein translocation."
+Cre13.g567500							g13965.t1		
+Cre13.g591450				"GO:0016021;GO:0006813;GO:0005242"	"integral component of membrane;potassium ion transport;inward rectifier potassium channel activity"		"g14503.t1;Cre13.g591450.t1.1"		
+Cre13.g588000			Chloroplast				"Cre13.g588000.t1.1;g14422.t1;g14422.t1;Cre13.g588000.t1.1"		
+Cre13.g602400	GMM:31.1	cell.organisation	Chloroplast	"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN8-1	"KIN8-1;g14557.t1;Cre13.g602400.t1.1;KIN8-1;g14557.t1;Cre13.g602400.t1.1"	"KIN8A;KIN8A"	"kinesin-8 family;kinesin-8 family"
+Cre13.g607400			Chloroplast						
+Cre13.g579100	GMM:29.5.11.4.4	protein.degradation.ubiquitin.E3.APC		GO:0005680	"anaphase-promoting complex"	APC1	"APC1;g14227.t1;APC1;g14227.t1"	"APC1;APC1"	"Subunit 1 of Anaphase Promoting Complex. Cell cycle regulated E3 ubiquitin ligase. Ts-lethal mutant arrests with 2C DNA content and fails to initiate cleavage plane and complete mitosis (PMID 29743196);Subunit 1 of Anaphase Promoting Complex. Cell cycle regulated E3 ubiquitin ligase. Ts-lethal mutant arrests with 2C DNA content and fails to initiate cleavage plane and complete mitosis (PMID 29743196)"
+Cre13.g568150			Chloroplast	GO:0008168	"methyltransferase activity"		"CMAL;g13980.t1;SMM45"	CMAL1	"possibly involved in chloroplast ribosome biogenesis"
+Cre13.g605100	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"		"GO:0007165;GO:0005515;GO:0004114"	"signal transduction;protein binding;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE20	"Cre13.g605100.t1.1;g14595.t1;PDE20"		"Similarity to Dictyostelium PDE encoded by regA gene"
+Cre13.g564200									
+Cre13.g575701							"Cre13.g575700.t1.3;g14149.t1"		
+Cre13.g573000	"GMM:31.2;GMM:27.3.69;GMM:27.3.18"	"cell.division;RNA.regulation of transcription.SET-domain transcriptional regulator family;RNA.regulation of transcription.E2F/DP transcription factor family"	Chloroplast	GO:0005515	"protein binding"	E2FR1	"g14090.t1;Cre13.g573000.t1.1;E2FR1"		"Previous annotations had this gene erroneously fused to E2F2 (Cre13.g572950)"
+Cre13.g565250				GO:0006950	"response to stress"		"Cre13.g565250.t1.1;g13906.t1"		
+Cre13.g606550			Mitochondrion				g14624.t1		
+Cre13.g574350	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g14118.t1;Cre13.g574350.t1.1;g14118.t1;Cre13.g574350.t1.1;g14118.t1;Cre13.g574350.t1.1;g14118.t1;Cre13.g574350.t1.1;Cre13.g574350.t1.1;g14118.t1;g14118.t1;Cre13.g574350.t1.1;Cre13.g574350.t1.1;g14118.t1;g14118.t1;Cre13.g574350.t1.1"		
+Cre13.g562750			Chloroplast			CGLD38	"Cre13.g562750.t1.1;g13849.t1"	CGLD38	
+Cre13.g606950			Chloroplast						
+Cre13.g582900							"g14311.t1;g14311.t1"		
+Cre13.g580850	GMM:29.2.1.1.1.2.22	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L22"	Chloroplast	"GO:0015934;GO:0006412;GO:0005840;GO:0003735"	"large ribosomal subunit;translation;ribosome;structural constituent of ribosome"	PRPL22	"Cre13.g580850.t1.1;g14267.t2;PRPL22;Cre13.g580850.t1.1;g14267.t2;PRPL22"	"PRPL22;PRPL22"	"Putative plastid ribosomal protein L22/L18. ERY2 locus was mapped to chloroplast ribosomal protein by Bowers et al. (23) [PMID: 1293744];Putative plastid ribosomal protein L22/L18. ERY2 locus was mapped to chloroplast ribosomal protein by Bowers et al. (23) [PMID: 1293744]"
+Cre13.g604650	"GMM:29.5.7;GMM:29.5"	"protein.degradation.metalloprotease;protein.degradation"					"g14586.t1;Cre13.g604650.t1.1;Cre13.g604650.t1.1;g14586.t1"		
+Cre13.g562900			Chloroplast				"g13852.t1;Cre13.g562900.t1.1"		
+Cre13.g565800	"GMM:3.5;GMM:10.5.5"	"minor CHO metabolism.others;cell wall.cell wall proteins.RGP"		"GO:0030244;GO:0016866"	"cellulose biosynthetic process;intramolecular transferase activity"	UPT1	"UTPG1;g13925.t1;UPTG1;EZY11;Cre13.g565800.t1.1;UPT1;RGP1;EZY11;UPTG1;Cre13.g565800.t1.1;UPT1;RGP1;UTPG1;g13925.t1;UPTG1;EZY11;RGP1;g13925.t1;UTPG1;UPT1;Cre13.g565800.t1.1"	"UPT1;UPT1;UPT1"	"Early zygote expressed protein [PMID: 18487630] activated upon fus mating that could be involved in initiation of starch granule formation (PMID:8521968); also known as amylogenin and reversibly glycosylated polypeptide, UDP-Glucose:protein transglucosylase; found in mitochondrial proteome (could be contaminated by cytosolic components); N-terminal peptide (AAPLADQLDIVIPTIR) indicates excision of initiator Met, but absence of cleavable targeting sequence. Previously annotated as UPTG1. Acclimation to chang;Early zygote expressed protein [PMID: 18487630] activated upon fus mating that could be involved in initiation of starch granule formation (PMID:8521968); also known as amylogenin and reversibly glycosylated polypeptide, UDP-Glucose:protein transglucosylase; found in mitochondrial proteome (could be contaminated by cytosolic components); N-terminal peptide (AAPLADQLDIVIPTIR) indicates excision of initiator Met, but absence of cleavable targeting sequence. Previously annotated as UPTG1. Acclimation to chang;Early zygote expressed protein [PMID: 18487630] activated upon fus mating that could be involved in initiation of starch granule formation (PMID:8521968); also known as amylogenin and reversibly glycosylated polypeptide, UDP-Glucose:protein transglucosylase; found in mitochondrial proteome (could be contaminated by cytosolic components); N-terminal peptide (AAPLADQLDIVIPTIR) indicates excision of initiator Met, but absence of cleavable targeting sequence. Previously annotated as UPTG1. Acclimation to chang"
+Cre13.g570000	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO20	"g14023.t2;HFO2"	HFO20	"Replication linked H4; histone gene cluster XX (type 34BA)"
+Cre13.g563476									
+Cre13.g568450	GMM:31.1	cell.organisation	Chloroplast	"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN7-3	"g13988.t1;KIN7-3;KIN7-3;g13988.t1;KIN7-3;g13988.t1;g13988.t1;KIN7-3;g13988.t1;KIN7-3"	"KIN7C;KIN7C;KIN7C;KIN7C;KIN7C"	"kinesin-7 family. Contains tropomyosin domain;kinesin-7 family. Contains tropomyosin domain;kinesin-7 family. Contains tropomyosin domain;kinesin-7 family. Contains tropomyosin domain;kinesin-7 family. Contains tropomyosin domain"
+Cre13.g574551			Mitochondrion						
+Cre13.g571000							"Cre13.g571000.t1.1;g14043.t1"		
+Cre13.g605800							"g14610.t1;g14610.t1;g14610.t1"		
+Cre13.g590400				GO:0005515	"protein binding"		g14478.t1		
+Cre13.g603225			Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		g14566.t1		
+Cre13.g574850	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"	GO:0016020	membrane	ERM6	"g14129.t1;ERM6;g14129.t1;ERM6;ERM6;g14129.t1;ERM6;g14129.t1;ERM6;g14129.t1"		"flavohemoprotein b5/b5R-like protein.;flavohemoprotein b5/b5R-like protein.;flavohemoprotein b5/b5R-like protein.;flavohemoprotein b5/b5R-like protein.;flavohemoprotein b5/b5R-like protein."
+Cre13.g589200	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					"g14455.t1;g14455.t1;g14455.t1"		
+Cre13.g583250				GO:0005515	"protein binding"		"g14319.t1;g14319.t1;g14319.t1;g14319.t1"		
+Cre13.g578200	GMM:29.4	"protein.postranslational modification"					g14203.t2		
+Cre13.g583287						IQA3			
+Cre13.g579400	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"	GO:0016020	membrane	ERM8	"g14234.t1;ERM8"		"transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration)"
+Cre13.g568600	GMM:26.13	"misc.acid and other phosphatases"		GO:0003993	"acid phosphatase activity"		"g13992.t3;IPP9;g13992.t3;IPP9"		"Possesses a histidine acid phosphatase domain;Possesses a histidine acid phosphatase domain"
+Cre13.g567850	"GMM:29.2.2.3.1;GMM:27.4"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;RNA.RNA binding"		"GO:0042254;GO:0031429;GO:0001522"	"ribosome biogenesis;box H/ACA snoRNP complex;pseudouridine synthesis"		"Cre13.g567850.t1.1;g13973.t1"		
+Cre13.g562400	"GMM:27.3.1;GMM:17.1.2"	"RNA.regulation of transcription.ABI3/VP1-related B3-domain-containing transcription factor family;hormone metabolism.abscisic acid.signal transduction"	Mitochondrion	GO:0003677	"DNA binding"	ABI3	"ABI3;Cre13.g562400.t1.1;g13841.t1"		"contains a B3 DNA binding domain; PMID:16270233 ; see http://chlamytfdb.bio.uni-potsdam.de/v2.0/fam_mem.php?family_id=ABI3VP1; higher plant homologues involved in auxin and abscicic acid responses"
+Cre13.g586200							"Cre13.g586200.t1.1;g14385.t1"		
+Cre13.g605900			Mitochondrion				"g14612.t1;g14612.t1"	"OPR128;OPR128"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre13.g604000							"g14574.t1;g14574.t1;g14574.t1;g14574.t1"		
+Cre13.g607200	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG42	"g14640.t1;CYG42;CYG42;g14640.t1"		"similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre13.g584500			Mitochondrion				"Cre13.g584500.t1.1;g14347.t1"		
+Cre13.g587300							"g14408.t1;g14408.t1;g14408.t1;g14408.t1;g14408.t1"		
+Cre13.g572401									
+Cre13.g589100							"Cre13.g589100.t1.1;g14452.t1"		
+Cre13.g584800							"Cre13.g584800.t1.1;g14355.t1;g14355.t1;Cre13.g584800.t1.1"		
+Cre13.g572700	GMM:31.6.1.3.2.1	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A"		"GO:0030117;GO:0016192;GO:0006886;GO:0005198"	"membrane coat;vesicle-mediated transport;intracellular protein transport;structural molecule activity"	IFT144	"Cre13.g572700.t1.1;FLA15;FAP66;g14083.t1;Cre13.g572700.t1.1;FLA15;FAP66;g14083.t1"	"IFT144;IFT144"	"Found in the flagellar proteome as FAP66, a component of core of IFT-A particle;;Found in the flagellar proteome as FAP66, a component of core of IFT-A particle;"
+Cre13.g571400							"g14050.t1;g14050.t1;g14050.t1;g14050.t1;g14050.t1;g14050.t1"		
+Cre13.g579200	GMM:29.2.2	"protein.synthesis.ribosome biogenesis"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	S6K1	"g14229.t1;S6K1;Cre13.g579200.t1.1"	S6K1	"Protein kinase that phosphorylates rpS6, mediating ribosomal processivity; activation is TOR-dependent"
+Cre13.g566600			"Secretory pathway"				g13942.t1		
+Cre13.g590700			Chloroplast				"g14486.t1;g14486.t1;g14486.t1"		
+Cre13.g603300			Chloroplast				"Cre13.g603300.t1.1;g14547.t1;g14547.t1;Cre13.g603300.t1.1"		
+Cre13.g567901			"Secretory pathway"	GO:0016021	"integral component of membrane"		"Cre13.g567900.t1.2;g13974.t1"		
+Cre13.g581700			Mitochondrion	"GO:0051607;GO:0003725"	"defense response to virus;double-stranded RNA binding"		g14285.t1		
+Cre13.g568350							"BLZ18;g13986.t1"		"Basic-leucine zipper (bZIP) transcription factor"
+Cre13.g562450	GMM:29.3.1	protein.targeting.nucleus	"Secretory pathway"	"GO:0008536;GO:0006886"	"Ran GTPase binding;intracellular protein transport"	IPB3	"g13842.t1;ITN7;IPB3;Cre13.g562450.t1.1;ITN7;g13842.t1;Cre13.g562450.t1.1;IPB3;ITN7;g13842.t1;IPB3;Cre13.g562450.t1.1"		"Possible importin 7; Has orthology to two ARM repeat superfamily proteins in Arabidopsis thaliana (AT2G31660.1, AT3G59020.2);;Possible importin 7; Has orthology to two ARM repeat superfamily proteins in Arabidopsis thaliana (AT2G31660.1, AT3G59020.2);;Possible importin 7; Has orthology to two ARM repeat superfamily proteins in Arabidopsis thaliana (AT2G31660.1, AT3G59020.2);"
+Cre13.g565311									
+Cre13.g583400			Chloroplast			OPR57	"g14324.t1;g14324.t1"	"OPR57;OPR57"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre13.g602650	GMM:26.23	misc.rhodanese	Chloroplast				"g14563.t1;Cre13.g602650.t1.1;g14563.t1;Cre13.g602650.t1.1;g14563.t1;Cre13.g602650.t1.1"		
+Cre13.g575101							"Cre13.g575101.t1.1;g14134.t1;Cre13.g575101.t1.1;g14134.t1;Cre13.g575101.t1.1;g14134.t1"		
+Cre13.g604600							"Cre13.g604600.t1.1;g14585.t1;Cre13.g604600.t1.1;g14585.t1"		
+Cre13.g573650	GMM:27.1.1	RNA.processing.splicing		GO:0003676	"nucleic acid binding"	SRS5	"g14103.t1;SRS8;g14103.t1;SRS8"	"SRS5;SRS5"	"Serine/arginine-rich pre-mRNA splicing factor protein of the SC35-like subfamily; 27 kD (SCL27);Serine/arginine-rich pre-mRNA splicing factor protein of the SC35-like subfamily; 27 kD (SCL27)"
+Cre13.g588850	GMM:29.5.11	protein.degradation.ubiquitin	"Secretory pathway"				"Cre13.g588850.t1.1;g14446.t1"		
+Cre13.g564500	"GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	FAP377	"CDPK11;g13888.t1;CDPK11;g13888.t1;CDPK11;g13888.t1;CDPK11;g13888.t1"	"FAP377;FAP377;FAP377;FAP377"	"Found in the flagellar proteome as FAP377 [PMID: 15998802]; Induced by copper deficiency; null-allele mutant was isolated [PMID: 29743196]; Identified as CrCDPK11 in [PMID: 23936117];Found in the flagellar proteome as FAP377 [PMID: 15998802]; Induced by copper deficiency; null-allele mutant was isolated [PMID: 29743196]; Identified as CrCDPK11 in [PMID: 23936117];Found in the flagellar proteome as FAP377 [PMID: 15998802]; Induced by copper deficiency; null-allele mutant was isolated [PMID: 29743196]; Identified as CrCDPK11 in [PMID: 23936117];Found in the flagellar proteome as FAP377 [PMID: 15998802]; Induced by copper deficiency; null-allele mutant was isolated [PMID: 29743196]; Identified as CrCDPK11 in [PMID: 23936117]"
+Cre13.g563200						HAD7	"HAD7;g13858.t1;g13858.t1;HAD7"		
+Cre13.g578700			Chloroplast				g14217.t1		
+Cre13.g576950			"Secretory pathway"				g14178.t1		
+Cre13.g564250	GMM:29.2.3	protein.synthesis.initiation		GO:0005515	"protein binding"	EIF3A	"Cre13.g564250.t1.1;g13883.t1;EIF3A;Cre13.g564250.t1.1;g13883.t1;EIF3A;Cre13.g564250.t1.1;g13883.t1;EIF3A;EIF3A;g13883.t1;Cre13.g564250.t1.1"	"EIF3A;EIF3A;EIF3A;EIF3A"	"putative Eukaryotic translation initiation factor 3 subunit 10 (eIF-3 theta);putative Eukaryotic translation initiation factor 3 subunit 10 (eIF-3 theta);putative Eukaryotic translation initiation factor 3 subunit 10 (eIF-3 theta);putative Eukaryotic translation initiation factor 3 subunit 10 (eIF-3 theta)"
+Cre13.g572312									
+Cre13.g586100							"g14383.t1;g14383.t1"		
+Cre13.g579734	"GMM:26.4;GMM:26.3"	"misc.beta 1,3 glucan hydrolases;misc.gluco-, galacto- and mannosidases"	"Secretory pathway"			GLC1	"GLC1;g14243.t1;GLC1;g14243.t1"		"Lectin involved in N-glycosylation;Lectin involved in N-glycosylation"
+Cre13.g605700			Chloroplast				"g14608.t1;Cre13.g605700.t1.1"		
+Cre13.g604700	GMM:11.3	"lipid metabolism.phospholipid synthesis"	Chloroplast	"GO:0016780;GO:0016020;GO:0008654"	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"		g14587.t1	PGP2	"Phosphatidylglycerolphosphate synthase (PtdGro synthesis)"
+Cre13.g585150	"GMM:29.2.3;GMM:29.2.2.3.99"	"protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc"		"GO:0043022;GO:0042256"	"ribosome binding;mature ribosome assembly"	EIF6	"g14363.t1;EIF6A;Cre13.g585150.t1.1;EIF6"	EIF6	"putative eukaryotic translation initiation factor 6 (eIF-6); found in the flagellar proteome [PMID: 15998802]"
+Cre13.g575175							"g14136.t1;g14136.t1;g14136.t1"		
+Cre13.g582850			Chloroplast				g14310.t1		
+Cre13.g588600	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN1-1	"KIN1-1;g14439.t1;KIN1-1;g14439.t1"	"KIN1A;KIN1A"	"kinesin-1 family;kinesin-1 family"
+Cre13.g582755			Mitochondrion						
+Cre13.g606450	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB55	"TNP36;Cre13.g606450.t1.1;CSB55;g14622.t1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre13.g603250			Chloroplast			OPR61	"g14546.t1;CLR6;Cre13.g603250.t1.1"	OPR61	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre13.g585600			Chloroplast				g14373.t1		
+Cre13.g572375			Mitochondrion				g14076.t2		
+Cre13.g605150	GMM:21.6	"redox.dismutases and catalases"	Mitochondrion	"GO:0055114;GO:0046872;GO:0006801;GO:0004784"	"oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity"	MSD2	"Cre13.g605150.t1.1;g14596.t1;g14596.t1;Cre13.g605150.t1.1"	"MSD2;MSD2"	"Superoxide dismutase [Mn], mitochondrial precursor;;Superoxide dismutase [Mn], mitochondrial precursor;"
+Cre13.g589500	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK9	"PTK9;g14462.t1;PTK9;g14462.t1;g14462.t1;PTK9;g14462.t1;PTK9;PTK9;g14462.t1;g14462.t1;PTK9"		"Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre13.g587000	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"		GO:0005634	nucleus		"Cre13.g587000.t1.1;g14402.t1;g14402.t1;Cre13.g587000.t1.1"		
+Cre13.g590950							"g14492.t1;Cre13.g590950.t1.1;Cre13.g590950.t1.1;g14492.t1"		
+Cre13.g566450	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	ROC104	"Cre13.g566450.t1.1;ROC104;g13938.t1;g13938.t1;ROC104;Cre13.g566450.t1.1;g13938.t1;ROC104;Cre13.g566450.t1.1"	"ROC104;ROC104;ROC104"	"Serine/threonine protein kinase involved in circadian rhythms; in Matsuo et al. (2008), roc104 (rhythm of chloroplast) circadian rhythm mutant locus maps at or close to the 5' end of this gene model;Serine/threonine protein kinase involved in circadian rhythms; in Matsuo et al. (2008), roc104 (rhythm of chloroplast) circadian rhythm mutant locus maps at or close to the 5' end of this gene model;Serine/threonine protein kinase involved in circadian rhythms; in Matsuo et al. (2008), roc104 (rhythm of chloroplast) circadian rhythm mutant locus maps at or close to the 5' end of this gene model"
+Cre13.g573050	GMM:27.1	RNA.processing		"GO:0032040;GO:0006364"	"small-subunit processome;rRNA processing"		"Cre13.g573050.t1.1;g14091.t1"		
+Cre13.g580550	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		GO:0005515	"protein binding"	hlm20	"Cre13.g580550.t1.1;HLM20;g14261.t1;Cre13.g580550.t1.1;HLM20;g14261.t1"		"Protein contains an interrupted SET domain with very weak similarity to Arabidopsis thaliana ASHR2, SET39, SDG39 (At2g1964), Zea mays SDG13, and Oryza sativa SDG716. ChromoDB SDG347;Protein contains an interrupted SET domain with very weak similarity to Arabidopsis thaliana ASHR2, SET39, SDG39 (At2g1964), Zea mays SDG13, and Oryza sativa SDG716. ChromoDB SDG347"
+Cre13.g580950			"Secretory pathway"				"GT90F25;g14269.t1;GT90-25"		
+Cre13.g588626			Mitochondrion				g14440.t1		
+Cre13.g578750	"GMM:23.2.1.3;GMM:1.1.1.3"	"nucleotide metabolism.degradation.pyrimidine.dihydrouracil dehydrogenase;PS.lightreaction.photosystem II.biogenesis"	Chloroplast	"GO:0055114;GO:0016627;GO:0005737"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;cytoplasm"	TBA1	"g14218.t1;Cre13.g578750.t1.1;TBA1;TBA1;g14218.t1;Cre13.g578750.t1.1"	"TBA1;TBA1"	"Translation factor for chloroplast-encoded psbA gene; mutant has defect in translation of D1, PSII reaction center protein; chloroplast targeted; related to dehydrogenases;Translation factor for chloroplast-encoded psbA gene; mutant has defect in translation of D1, PSII reaction center protein; chloroplast targeted; related to dehydrogenases"
+Cre13.g583650			Mitochondrion				"g14329.t1;g14329.t1;g14329.t1;g14329.t1;g14329.t1;g14329.t1;g14329.t1;g14329.t1"		
+Cre13.g570600	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0035434;GO:0016021;GO:0005375"	"copper ion transmembrane transport;integral component of membrane;copper ion transmembrane transporter activity"	CTR1	"Cre13.g570600.t1.1;g14035.t1"	CTR1	"Similarity to fungal CTR family; expression increases during Cu deficiency, regulated by CRR1; localized to plasma membrane; gene rescues yeast _ctr1 mutant"
+Cre13.g579950							"g14248.t1;Cre13.g579950.t1.1;Cre13.g579950.t1.1;g14248.t1"		
+Cre13.g565900				"GO:0035267;GO:0032777;GO:0006357"	"NuA4 histone acetyltransferase complex;Piccolo NuA4 histone acetyltransferase complex;regulation of transcription from RNA polymerase II promoter"		"g13927.t1;g13927.t1;g13927.t1"		
+Cre13.g586950				GO:0008080	"N-acetyltransferase activity"		"NAT32;Cre13.g586950.t1.1;g14401.t1"		"Related to GCN5"
+Cre13.g589050			Chloroplast				"Cre13.g589050.t1.1;g14451.t1"		
+Cre13.g591700	GMM:31.6.1.11	cell.motility.eukaryotes.other	Chloroplast	GO:0006464	"cellular protein modification process"	TTL15	"g14508.t1;TTL15"	TTL15	
+Cre13.g570300	"GMM:29.5.11.3;GMM:29.5.11"	"protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin"				UBC24	"Cre13.g570300.t1.1;UBC24;g14029.t1"	UBC24	"E2 Ubiquitin conjugating enzyme, subclass XVI"
+Cre13.g565600			Chloroplast	"GO:0008270;GO:0006508;GO:0004181"	"zinc ion binding;proteolysis;metallocarboxypeptidase activity"		"CPZ;g13920.t1"		
+Cre13.g575333	GMM:31.2	cell.division	"Secretory pathway"				"g14140.t1;Cre13.g575350.t1.3"		
+Cre13.g592250							"Cre13.g592250.t1.1;g14519.t1;Cre13.g592250.t1.1;g14519.t1;Cre13.g592250.t1.1;g14519.t1"		
+Cre13.g576300			"Secretory pathway"	"GO:0043085;GO:0016485;GO:0016021"	"positive regulation of catalytic activity;protein processing;integral component of membrane"	APH1	"g14162.t1;APH1;GSC1;Cre13.g576300.t1.1"	APH1	"homologous to anterior-pharynx-defective; forms the gamma-secretase complex with presenilin, nicastrin and pen-2; involved in regulated intramembrane proteolysis of type I integral membrane proteins such as the amyloid precursor protein (APP) and Notch"
+Cre13.g585900	"GMM:29.5.7;GMM:29.5"	"protein.degradation.metalloprotease;protein.degradation"		"GO:0019370;GO:0008270;GO:0008237;GO:0006508"	"leukotriene biosynthetic process;zinc ion binding;metallopeptidase activity;proteolysis"	LKHA4	"LKHA4;Cre13.g585900.t1.1;g14379.t1;g14379.t1;LKHA4;Cre13.g585900.t1.1"	"LTA4;LTA4"	"Peptidase M1 family protein; Related to Leukotriene A-4 hydrolase (LTA-4 hydrolase / LTA4H);Peptidase M1 family protein; Related to Leukotriene A-4 hydrolase (LTA-4 hydrolase / LTA4H)"
+Cre13.g565850	GMM:31.4	"cell.vesicle transport"		"GO:0030126;GO:0030117;GO:0016192;GO:0006886;GO:0005515;GO:0005198"	"COPI vesicle coat;membrane coat;vesicle-mediated transport;intracellular protein transport;protein binding;structural molecule activity"	COPA1	"COPA1;g13926.t1;COPA1;g13926.t1;COPA1;g13926.t1"	"COPA1;COPA1;COPA1"	"Expressed Protein. Alpha-COP. Subunit of COP-I complex involved in vesicle trafficking.;Expressed Protein. Alpha-COP. Subunit of COP-I complex involved in vesicle trafficking.;Expressed Protein. Alpha-COP. Subunit of COP-I complex involved in vesicle trafficking."
+Cre13.g571700	"GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g14059.t1;g14059.t1"	"CDPK9;CDPK9"	"Identified as CrCDPK9 in [PMID: 23936117];Identified as CrCDPK9 in [PMID: 23936117]"
+Cre13.g591150	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA22	"Cre13.g591150.t1.1;HTA38;g14497.t1"	HTA22	"replication linked H2A; histone gene cluster XXII (type BA)"
+Cre13.g580250							"g14255.t1;g14255.t1;g14255.t1"		
+Cre13.g598957									
+Cre13.g587700	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	"Secretory pathway"	"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"g14417.t1;Cre13.g587700.t1.1;SDR33"		"Putative retinol dehydrogenase-related"
+Cre13.g566550			Chloroplast				g13941.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre13.g569150							"Cre13.g569150.t1.1;g14004.t2;g14004.t2;Cre13.g569150.t1.1"		
+Cre13.g574600							"Cre13.g574600.t1.1;g14124.t1;g14124.t1;Cre13.g574600.t1.1;Cre13.g574600.t1.1;g14124.t1"		
+Cre13.g563950									
+Cre13.g565280			Chloroplast				g13909.t1		
+Cre13.g567450	GMM:28.1.3	"DNA.synthesis/chromatin structure.histone"		"GO:0006334;GO:0005634;GO:0003677;GO:0000786"	"nucleosome assembly;nucleus;DNA binding;nucleosome"	HON1	"g13964.t1;Cre13.g567450.t1.1;HON1"	HON1	"Histone H1 [PMID: 10568039; PMID: 7480339]"
+Cre13.g568500							"g13990.t1;g13990.t1;g13990.t1;g13990.t1"		
+Cre13.g585700							g14375.t1		
+Cre13.g579566			Mitochondrion						
+Cre13.g589150			Mitochondrion				g14453.t1		
+Cre13.g576200			Chloroplast	"GO:0009116;GO:0003824"	"nucleoside metabolic process;catalytic activity"		"Cre13.g576200.t1.1;g14160.t1"		
+Cre13.g582201	GMM:23.3.3	"nucleotide metabolism.salvage.NUDIX hydrolases"		GO:0016787	"hydrolase activity"		"g14295.t1;Cre13.g582200.t1.2"		
+Cre13.g584750	GMM:18.6	"Co-factor and vitamine metabolism.biotin"	Mitochondrion	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	smm46	"g14353.t2;SMM46"	NDUFAF5	"Assembly facator for NADH:ubiquinone oxidoreductase (Complex I), mitochondrial; Ortholog to NDUFAF5 in Homo sapiens; Also identified as S-adenosyl-L-methionine-dependent methyltransferase;"
+Cre13.g579550			Chloroplast			CGL27	"g14237.t1;g14237.t1"	"CGL27;CGL27"	
+Cre13.g583150				GO:0005515	"protein binding"		g14316.t1		
+Cre13.g583300			Mitochondrion				"g14321.t1;Cre13.g583300.t1.1;g14321.t1;Cre13.g583300.t1.1;g14321.t1;Cre13.g583300.t1.1"		
+Cre13.g592450	GMM:31.4	"cell.vesicle transport"		"GO:0006890;GO:0005198"	"retrograde vesicle-mediated transport, Golgi to ER;structural molecule activity"	COPE1	"Cre13.g592450.t1.1;COPE1;g14523.t1;COPE1;g14523.t1;Cre13.g592450.t1.1"	"COPE1;COPE1"	"Expressed Protein. Epsilon-COP. Subunit of COP-I complex involved in vesicle trafficking.;Expressed Protein. Epsilon-COP. Subunit of COP-I complex involved in vesicle trafficking."
+Cre13.g602901	"GMM:18.6;GMM:18.1"	"Co-factor and vitamine metabolism.biotin;Co-factor and vitamine metabolism.molybdenum cofactor"	Mitochondrion	"GO:0051539;GO:0051536;GO:0019008;GO:0006777;GO:0003824"	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;molybdopterin synthase complex;Mo-molybdopterin cofactor biosynthetic process;catalytic activity"	CNX2	"CNX2;Cre13.g602900.t1.2;g14540.t1;CNX2;Cre13.g602900.t1.2;g14540.t1;CNX2;Cre13.g602900.t1.2;g14540.t1;Cre13.g602900.t1.2;g14540.t1;CNX2;CNX2;Cre13.g602900.t1.2;g14540.t1"	"CNX2;CNX2;CNX2;CNX2;CNX2"	"Putative molybdopterin cofactor biosynthesis enzyme (CNX2); Orthologous to CNX2 (At2g31955) in Arabidopsis thaliana;Putative molybdopterin cofactor biosynthesis enzyme (CNX2); Orthologous to CNX2 (At2g31955) in Arabidopsis thaliana;Putative molybdopterin cofactor biosynthesis enzyme (CNX2); Orthologous to CNX2 (At2g31955) in Arabidopsis thaliana;Putative molybdopterin cofactor biosynthesis enzyme (CNX2); Orthologous to CNX2 (At2g31955) in Arabidopsis thaliana;Putative molybdopterin cofactor biosynthesis enzyme (CNX2); Orthologous to CNX2 (At2g31955) in Arabidopsis thaliana"
+Cre13.g561850	GMM:2.2.1.1	"major CHO metabolism.degradation.sucrose.fructokinase"	Chloroplast			FRK2	"FRK2;g13828.t1;FRK2;g13828.t1"	"FRK2;FRK2"	
+Cre13.g565260	"GMM:35.1.1;GMM:34.16"	"not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems"	Chloroplast				"g13907.t1;ABC1K1;ABC1K1;g13907.t1;ABC1K1;g13907.t1"		
+Cre13.g569850	GMM:34.5	transport.ammonium	"Secretory pathway"	"GO:0072488;GO:0016020;GO:0015696;GO:0008519"	"ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity"	AMT4	"Cre13.g569850.t1.1;AMT4;g14020.t1;AMT4;Cre13.g569850.t1.1;g14020.t1"	"AMT1D;AMT1D"	"belongs to AMT1 family (Amt1;4 or Amt1.4); corresponds to AY542491;belongs to AMT1 family (Amt1;4 or Amt1.4); corresponds to AY542491"
+Cre13.g564850			Mitochondrion	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"		"g13897.t1;g13897.t1;g13897.t1"		
+Cre13.g571050	GMM:27.3.62	"RNA.regulation of transcription.nucleosome/chromatin assembly factor group"		GO:0003677	"DNA binding"		"g14044.t1;g14044.t1;g14044.t1;g14044.t1;g14044.t1"		"High mobility group protein, non-histone component of chromatin. ChromoDB HMGB347;High mobility group protein, non-histone component of chromatin. ChromoDB HMGB347;High mobility group protein, non-histone component of chromatin. ChromoDB HMGB347;High mobility group protein, non-histone component of chromatin. ChromoDB HMGB347;High mobility group protein, non-histone component of chromatin. ChromoDB HMGB347"
+Cre13.g562326			Chloroplast						
+Cre13.g565050			"Secretory pathway"				"g13901.t1;g13901.t1"		
+Cre13.g576500	"GMM:33.99;GMM:27.3.34"	"development.unspecified;RNA.regulation of transcription.orphan family"					g14167.t1		
+Cre13.g567000			Chloroplast						
+Cre13.g582692									
+Cre13.g590350				"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g14477.t1;Cre13.g590350.t1.1;BLZ11"		"Basic-leucine zipper (bZIP) transcription factor"
+Cre13.g572732			"Secretory pathway"				"g14084.t1;Cre13.g572732.t1.1;Cre13.g572732.t1.1;g14084.t1;g14084.t1;Cre13.g572732.t1.1"		
+Cre13.g574200	GMM:27.1	RNA.processing	Chloroplast	GO:0016779	"nucleotidyltransferase activity"	PAP2	"PAP2;g14115.t1"	PAP2	"non-canonical Poly(A) polymerase (ncPAP) with PAP/25A core domain; has orthologs in Chlorophyceae only; predicted chloroplast targeted, like most orthologs"
+Cre13.g592551			Chloroplast				"Cre13.g592551.t1.1;g14526.t1;Cre13.g592551.t1.1;g14526.t1"		
+Cre13.g578012			Chloroplast				"g14201.t1;g14201.t1"		
+Cre13.g566800			Mitochondrion				"g13947.t1;Cre13.g566800.t1.1"		
+Cre13.g568316									
+Cre13.g562150	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Chloroplast	GO:0005525	"GTP binding"		"g13835.t1;Cre13.g562150.t1.1;g13835.t1;Cre13.g562150.t1.1"		
+Cre13.g606962									
+Cre13.g584450	"GMM:30.2.12;GMM:30.2.11;GMM:2.1"	"signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;major CHO metabolism.synthesis"	"Secretory pathway"	GO:0005515	"protein binding"		g14346.t2		
+Cre13.g587350			"Secretory pathway"				g14409.t1		
+Cre13.g591501	GMM:29.1.30	"protein.aa activation.pseudouridylate synthase"	Mitochondrion	"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS2	"PUS2;Cre13.g591500.t1.3;g14504.t1;PUS2;Cre13.g591500.t1.3;g14504.t1"		
+Cre13.g583935							"g14336.t2;Cre13.g583950.t2.1"		
+Cre13.g585550			"Secretory pathway"				"g14372.t1;HAP2"		"contains a PAP2/haloperoxidase domain found in vanadium chloroperoxidases and related to phosphoesterases; closely related to upstream divergent HAP1 gene, and to more distantly linked HAP3 and HAP4"
+Cre13.g596395			"Secretory pathway"						
+Cre13.g577500	GMM:31.4	"cell.vesicle transport"		"GO:0016020;GO:0006886"	"membrane;intracellular protein transport"	VTI1	"VTI1;g14190.t2;Cre13.g577500.t1.1"	VTI1	"Expressed Protein. Similar to VTI1, Qb-SNAREs involved in Golgi/Endosomal traffic."
+Cre13.g577000			"Secretory pathway"						
+Cre13.g571520			Chloroplast			ANK12	"ANK12;Cre13.g571550.t1.3;g14053.t1;ANK12;g14053.t1;Cre13.g571550.t1.3;g14053.t1;ANK12;Cre13.g571550.t1.3"		"protein of unknown function with ankyrin repeats;protein of unknown function with ankyrin repeats;protein of unknown function with ankyrin repeats"
+Cre13.g565350						TTL11			
+Cre13.g605850			Chloroplast				"g14611.t1;g14611.t1;g14611.t1;g14611.t1;g14611.t1;g14611.t1;g14611.t1"	"OPR127;OPR127;OPR127;OPR127;OPR127;OPR127;OPR127"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre02.g117813	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre02.g117813.t1.1;g2444.t1;g2444.t1;Cre02.g117813.t1.1;g2444.t1;Cre02.g117813.t1.1;g2444.t1;Cre02.g117813.t1.1"		
+Cre02.g105900			"Secretory pathway"				"Cre02.g105900.t1.1;g2171.t1;g2171.t1;Cre02.g105900.t1.1"		
+Cre02.g104126									
+Cre02.g145450			Chloroplast				"Cre02.g145450.t1.1;g2558.t1"		
+Cre02.g082651							"Cre02.g082650.t1.2;g1516.t1"		
+Cre02.g080300			Mitochondrion				"g1467.t1;Cre02.g080300.t1.1;g1467.t1;Cre02.g080300.t1.1"		
+Cre02.g098350	GMM:21.2.1	"redox.ascorbate and glutathione.ascorbate"	"Secretory pathway"	"GO:0055114;GO:0016491;GO:0005507"	"oxidation-reduction process;oxidoreductase activity;copper ion binding"		"g2000.t1;g2000.t1"		
+Cre02.g073750	"GMM:31.6.1.6.5;GMM:31.1"	"cell.motility.eukaryotes.central pair.C2c;cell.organisation"		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KLP1	"KLP1;KIN9-2;g1306.t1;Cre02.g073750.t1.1"	KLP1	"Kinesin-like protein 1, kinesin-9 (Kif9) family; Kinesin associated with one of the central pair microtubules of the flagellar axoneme;"
+Cre02.g107600	GMM:10.1.30.3	"cell wall.precursor synthesis.sugar kinases.glucuronic acid kinase"		GO:0005524	"ATP binding"	GAK	"Cre02.g107600.t1.1;g2206.t1;GAK1"	CGL118	"GHMP kinase family protein"
+Cre02.g142606			"Secretory pathway"						
+Cre02.g088650			"Secretory pathway"				"g1651.t1;Cre02.g088650.t1.1"		
+Cre02.g102600				GO:0008270	"zinc ion binding"		"g2095.t1;g2095.t1"		
+Cre02.g107213									
+Cre02.g093202									
+Cre02.g075250			Chloroplast				g1346.t1		
+Cre02.g095500			Chloroplast				g1939.t1		
+Cre02.g097227							"g1978.t1;Cre02.g097227.t1.1"		
+Cre02.g074650	GMM:11.1.13	"lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein"		"GO:0005515;GO:0000062"	"protein binding;fatty-acyl-CoA binding"		"Cre02.g074650.t1.1;g1331.t1;Cre02.g074650.t1.1;g1331.t1"		
+Cre02.g080550	GMM:20.2.1	stress.abiotic.heat	Chloroplast	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE26	"g1472.t1;PDE26"		"Metal-dependent phosphohydrolase with actin-like ATPase domain and HSP7 peptide-binding domain"
+Cre02.g115450	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Chloroplast	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG47	"g2386.t1;CYG47;g2386.t1;CYG47"		"similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre02.g106600	GMM:29.2.1.2.1.19	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S19"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	RPS19	"g2185.t1;Cre02.g106600.t1.1;Cre02.g106600.t1.1;g2185.t1;Cre02.g106600.t1.1;g2185.t1;g2185.t1;Cre02.g106600.t1.1"	"RPS19;RPS19;RPS19;RPS19"	"Cytosolic 40S small ribosomal subunit protein S19;Cytosolic 40S small ribosomal subunit protein S19;Cytosolic 40S small ribosomal subunit protein S19;Cytosolic 40S small ribosomal subunit protein S19"
+Cre02.g091450			Mitochondrion				"g1712.t1;uS4m;uS4m;g1712.t1"	"MRPS4;MRPS4"	
+Cre02.g095060									
+Cre02.g144350	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	RJL1	"g2586.t1;Cre02.g144350.t1.1;RJL1"	RJL1	"Expressed Protein. Rab-type GTPase distantly related to RabJ-like proteins in mammals and protists.; Member of the RJL family in the Ras superfamily of GTPases [PMID: 14980719]. Cellular function unknown at present."
+Cre02.g141346									
+Cre02.g073176						CSB10			
+Cre02.g090400			Chloroplast				"Cre02.g090400.t1.1;g1688.t1"		
+Cre02.g086500			Chloroplast			PGM10	"PGM10;g1605.t1;Cre02.g086500.t1.1;g1605.t1;PGM10;Cre02.g086500.t1.1;PGM10;g1605.t1;Cre02.g086500.t1.1"		
+Cre02.g095850							g1946.t1		
+Cre02.g096350			Chloroplast	"GO:0071949;GO:0055114;GO:0046416;GO:0016491;GO:0003884"	"FAD binding;oxidation-reduction process;D-amino acid metabolic process;oxidoreductase activity;D-amino-acid oxidase activity"	DAO1	"DAO1;g1956.t1"	DAO1	
+Cre02.g141004									
+Cre02.g142350							"g2642.t1;Cre02.g142350.t1.1;Cre02.g142350.t1.1;g2642.t1"	"UFC1;UFC1"	"Ubiquitin-fold modifier-conjugating enzyme 1;Ubiquitin-fold modifier-conjugating enzyme 1"
+Cre02.g094450	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC38	"Cre02.g094450.t1.1;PHC21;g1786.t1;g1786.t1;Cre02.g094450.t1.1;PHC21;Cre02.g094450.t1.1;PHC21;g1786.t1"	"PHC38;PHC38;PHC38"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre02.g143267			Mitochondrion	"GO:0015074;GO:0006310;GO:0003677"	"DNA integration;DNA recombination;DNA binding"		"Cre36.g784200.t1.2;g2823.t1;Cre36.g784200.t1.1"		
+Cre02.g119484									
+Cre02.g142486									
+Cre02.g077200							"Cre02.g077200.t1.1;g1391.t1;g1391.t1;Cre02.g077200.t1.1"		
+Cre02.g084150			"Secretory pathway"				"g1551.t1;g1551.t1"		
+Cre02.g145630									
+Cre02.g100700			"Secretory pathway"				"g2052.t1;g2052.t1"		
+Cre02.g113809				GO:0005515	"protein binding"		"g2349.t1;Cre02.g113809.t1.1"		
+Cre02.g077250							"g1392.t1;EEP"		
+Cre02.g085100	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG59	"CYG59;g1572.t1;Cre02.g085100.t1.1;CYG59;g1572.t1;Cre02.g085100.t1.1"		
+Cre02.g144850			Chloroplast			CGLD26	"g2572.t1;Cre02.g144850.t1.1;CGLD26b"	CGLD26	
+Cre02.g142767			Chloroplast						
+Cre02.g100666			Mitochondrion						
+Cre02.g095135			"Secretory pathway"				"g1908.t1;Cre11.g473900.t1.1;g1908.t1;Cre11.g473900.t1.1"		
+Cre02.g114600	"GMM:21.5.1;GMM:21.5"	"redox.peroxiredoxin.BAS1;redox.peroxiredoxin"		"GO:0055114;GO:0051920;GO:0016491"	"oxidation-reduction process;peroxiredoxin activity;oxidoreductase activity"	PRX2	"g2368.t1;Cre02.g114600.t1.1"	PRX2	"thioredoxin dependent peroxidase, probably cytosolic, more closely related to mammalian peroxiredoxins than to plant peroxiredoxins. Found in the flagellar proteome [PMID: 15998802]."
+Cre02.g084350			"Secretory pathway"	GO:0016020	membrane	CGLD1	"CGLD1;Cre02.g084350.t1.1;g1556.t1;g1556.t1;CGLD1;Cre02.g084350.t1.1"	"PAM71;PAM71"	"Ortholog of Arabidopsis thaliana PAM71/CCHA1; Mutant has photosynthetic defects indicating reduced PSII function, which can be partially rescued by excess Mn; Conserved in the Green Lineage and Diatoms;Ortholog of Arabidopsis thaliana PAM71/CCHA1; Mutant has photosynthetic defects indicating reduced PSII function, which can be partially rescued by excess Mn; Conserved in the Green Lineage and Diatoms"
+Cre02.g095110						FAP255	g1883.t1	FAP255	
+Cre02.g100150			Chloroplast				"Cre02.g100150.t1.1;g2039.t1"		
+Cre02.g146500	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	DYRK1	"DYRK1;DSK1;g2531.t1;g2531.t1;DYRK1;DSK1;g2531.t1;DSK1;DYRK1"	"DYRK1;DYRK1;DYRK1"	"Dual-Specificity Tyrosine-Phosphorylation Regulated Protein Kinase 1;Dual-Specificity Tyrosine-Phosphorylation Regulated Protein Kinase 1;Dual-Specificity Tyrosine-Phosphorylation Regulated Protein Kinase 1"
+Cre02.g104951			"Secretory pathway"				"g2150.t1;Cre02.g104951.t1.1;g2150.t1;Cre02.g104951.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g108050			"Secretory pathway"	"GO:0016021;GO:0006886;GO:0005783"	"integral component of membrane;intracellular protein transport;endoplasmic reticulum"		"g2215.t1;Cre02.g108050.t1.1"		
+Cre02.g144700	GMM:34.7	transport.phosphate		"GO:0016020;GO:0006817;GO:0005315"	"membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity"	PTB5	"Cre02.g144700.t1.1;g2577.t1;PTB5"	PTB5	"Putative phosphate transporter, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters; present in a cluster of four highly related PTB family members on scaffold 24, including PTB9, PTB12 and PTB4."
+Cre02.g097650	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	"protein binding"	RPN6	"RPN6;g1987.t1;Cre02.g097650.t1.1"	RPN6	"26S proteasome regulatory complex, lid subcomplex, non-ATPase subunit RPN6 (subunit 9) (PSD11) (PSMD11)"
+Cre02.g109950			Chloroplast			OHP1	"Cre02.g109950.t1.1;g2256.t1;HLIP;LIL2"	OHP1	"Land plant homolog forms a complex with OHP2 and HCF244 and involved with PSII assembly. Resembles a cyanobacterial HLIP/SCP in that it contains a LHC motif with a single membrane spanning region, though the OHPs have a more extended N-terminus."
+Cre02.g112701							"Cre02.g112700.t1.3;g2321.t1"		
+Cre02.g146851	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g2524.t1		
+Cre02.g077900							"g1406.t1;g1406.t1"		
+Cre02.g077500	GMM:29.3.99	protein.targeting.unknown	"Secretory pathway"	"GO:0006888;GO:0005801;GO:0005622"	"ER to Golgi vesicle-mediated transport;cis-Golgi network;intracellular"	TRS23	"Cre02.g077500.t1.1;TRS23;g1397.t1"	TRS23	"Expressed Protein. Conserved protein similar to TRS23, a component of the TRAPP complex, involved in ER to Golgi trafficking."
+Cre02.g143147							g2817.t1		
+Cre02.g114950							g2375.t1		
+Cre02.g141400	GMM:6.4	"gluconeogenesis / glyoxylate cycle.phosphoenolpyruvate carboxykinase (PEPCK)"	Chloroplast	"GO:0006094;GO:0005524;GO:0004612"	"gluconeogenesis;ATP binding;phosphoenolpyruvate carboxykinase (ATP) activity"	PCK1	"Cre02.g141400.t1.1;PCK1;g2662.t1"	PCK1	"phosphoenolpyruvate carboxykinase; PEP carboxykinase (EC 4.1.1.49); based on high similarity to PEPCK from Panicum maximum (GenBank AAQ10076) and many other plants; Target-P predicts no organelle targeting, so probably cytosolic form; may represent a minor splice variant of PCK1a"
+Cre02.g108250							"g2219.t1;g2219.t1"		
+Cre02.g106950			Mitochondrion				"g2192.t1;g2192.t1;g2192.t1;g2192.t1;g2192.t1"		"Target of CRR1;Target of CRR1;Target of CRR1;Target of CRR1;Target of CRR1"
+Cre02.g102750			"Secretory pathway"	"GO:0016757;GO:0006486"	"transferase activity, transferring glycosyl groups;protein glycosylation"		"g2098.t1;g2098.t1;g2098.t1;g2098.t1;g2098.t1"		
+Cre02.g111050	GMM:34.5	transport.ammonium	"Secretory pathway"	"GO:0072488;GO:0016020;GO:0015696;GO:0008519"	"ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity"	AMT7	"AMT1G.a;AMT7;g2282.t1;g2282.t1;AMT1G.a;AMT7"	"AMT1G;AMT1G"	"Belongs to AMT1 family (Amt1;7 or Amt1:7); two different splicing variants have been found for this gene, this one is AMT7.a (Amt1;7a), the longest one (AY588244);Belongs to AMT1 family (Amt1;7 or Amt1:7); two different splicing variants have been found for this gene, this one is AMT7.a (Amt1;7a), the longest one (AY588244)"
+Cre02.g075750			Chloroplast	GO:0005515	"protein binding"		"g1357.t1;g1357.t1;g1357.t1"		
+Cre02.g118300	GMM:27.1.2	"RNA.processing.RNA helicase"		"GO:0005634;GO:0005524;GO:0004386;GO:0003723;GO:0003676"	"nucleus;ATP binding;helicase activity;RNA binding;nucleic acid binding"	HEL12	"Cre02.g118300.t1.1;RHE;g2455.t1;HEL12"		"RNA helicase"
+Cre02.g092926							g1743.t1		
+Cre02.g102300			"Secretory pathway"				"g2089.t1;Cre02.g102300.t1.1"		
+Cre02.g086887	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion	"GO:0006810;GO:0005643"	"transport;nuclear pore"		"g1613.t2;NUP98-96;Cre02.g086950.t2.1"	NUP189	"189 kDa polypeptide is autocatylitcally cleaved into NUP98 and NUP96"
+Cre02.g088500	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion			CPLD29	"g1648.t1;g1648.t1"		
+Cre02.g117410	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	"Secretory pathway"				"Cre02.g117410.t1.1;g2434.t1"		
+Cre02.g099400	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG31	"g2022.t1;ELG31"		"putative terminal arabinosyl transferase on HRGP, GT47 family, exostosin-like"
+Cre02.g099700							"g2029.t1;Cre02.g099700.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre02.g109126			"Secretory pathway"						
+Cre02.g084750	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g1564.t1;g1564.t1;g1564.t1;g1564.t1;g1564.t1"		
+Cre02.g117100			"Secretory pathway"				"g2424.t1;Cre02.g117100.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre02.g087633	"GMM:28.1;GMM:27.3.44"	"DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors"	"Secretory pathway"				"Cre02.g087629.t1.2;g1628.t1;Cre02.g087629.t1.2;g1628.t1;Cre02.g087629.t1.2;g1628.t1;Cre02.g087629.t1.2;g1628.t1;Cre02.g087629.t1.2;g1628.t1"		
+Cre02.g141850			Chloroplast				g2654.t1		
+Cre02.g079100							"XPA1;g1444.t2"	XPA1	"belongs to Rad14/XPA family"
+Cre02.g093900							"g1774.t1;Cre02.g093900.t1.1"		
+Cre02.g098300	GMM:31.3	cell.cycle	Chloroplast				"Cre02.g098300.t1.1;g1999.t1"		
+Cre02.g090550	GMM:14.1	S-assimilation.APS	"Secretory pathway"	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS9	"ARS9;g1692.t1;ARS9;g1692.t1;ARS9;g1692.t1;g1692.t1;ARS9"	"ARS9;ARS9;ARS9;ARS9"	
+Cre02.g078500							"g1423.t1;Cre02.g078500.t1.1"		
+Cre02.g091750			Mitochondrion	GO:2001070	"starch binding"		"Cre02.g091750.t1.1;g1719.t2;g1719.t2;Cre02.g091750.t1.1;Cre02.g091750.t1.1;g1719.t2;Cre02.g091750.t1.1;g1719.t2;Cre02.g091750.t1.1;g1719.t2"		
+Cre02.g113500			Chloroplast				"Cre02.g113500.t1.1;g2338.t1"		
+Cre02.g094850			Chloroplast				"g1794.t1;g1794.t1;g1794.t1"		
+Cre02.g146250	GMM:13.1.5.3	"amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine"	Mitochondrion			NFS1	"CSD1;NFS1;g2535.t1;Cre02.g146250.t1.1;Cre02.g146250.t1.1;g2535.t1;NFS1;CSD1;Cre02.g146250.t1.1;CSD1;NFS1;g2535.t1;Cre02.g146250.t1.1;CSD1;NFS1;g2535.t1;Cre02.g146250.t1.1;g2535.t1;NFS1;CSD1;CSD1;NFS1;g2535.t1;Cre02.g146250.t1.1"	"NIFS1;NIFS1;NIFS1;NIFS1;NIFS1;NIFS1"	"Cysteine sulfinate desulfinase/cysteine desulfurase, NifS, homolog to IscS; related to Cysteine desulfurase, mitochondrial precursor;Cysteine sulfinate desulfinase/cysteine desulfurase, NifS, homolog to IscS; related to Cysteine desulfurase, mitochondrial precursor;Cysteine sulfinate desulfinase/cysteine desulfurase, NifS, homolog to IscS; related to Cysteine desulfurase, mitochondrial precursor;Cysteine sulfinate desulfinase/cysteine desulfurase, NifS, homolog to IscS; related to Cysteine desulfurase, mitochondrial precursor;Cysteine sulfinate desulfinase/cysteine desulfurase, NifS, homolog to IscS; related to Cysteine desulfurase, mitochondrial precursor;Cysteine sulfinate desulfinase/cysteine desulfurase, NifS, homolog to IscS; related to Cysteine desulfurase, mitochondrial precursor"
+Cre02.g144100	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	Mitochondrion			ELG12	"Cre02.g144100.t1.1;g2591.t1;ELG12"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre02.g142000	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC4	"UBC4;Cre02.g142000.t1.1;CrUbc9;CreSCE1a;g2651.t1;CrSCE1;CrUbcE2_1;Cre02.g142000.t1.1;UBC4;CreSCE1a;CrUbc9;g2651.t1;CrSCE1;CrUbcE2_1"	"SCE1;SCE1"	"E2 SUMO conjugating enzyme; Biochemical activity verified;E2 SUMO conjugating enzyme; Biochemical activity verified"
+Cre02.g144008			Chloroplast						
+Cre02.g141766			Chloroplast				"g2730.t1;g2730.t1"		
+Cre02.g116750	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"	Mitochondrion	"GO:0046961;GO:0046933;GO:0046034;GO:0045261;GO:0033178;GO:0016820;GO:0015992;GO:0015991;GO:0015986;GO:0005524"	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;ATP metabolic process;proton-transporting ATP synthase complex, catalytic core F(1);proton-transporting two-sector ATPase complex, catalytic domain;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;proton transport;ATP hydrolysis coupled proton transport;ATP synthesis coupled proton transport;ATP binding"	ATP1A	"ATP1A;g2416.t1;g2416.t1;ATP1A;g2416.t1;ATP1A;ATP1A;g2416.t1;g2416.t1;ATP1A;g2416.t1;ATP1A"	"ATP1A;ATP1A;ATP1A;ATP1A;ATP1A;ATP1A"	"alpha subunit of the mitochondrial ATP synthase [= human ATP5A1, yeast ATP1]; part of the F1 sector; isoform of ATP1B;alpha subunit of the mitochondrial ATP synthase [= human ATP5A1, yeast ATP1]; part of the F1 sector; isoform of ATP1B;alpha subunit of the mitochondrial ATP synthase [= human ATP5A1, yeast ATP1]; part of the F1 sector; isoform of ATP1B;alpha subunit of the mitochondrial ATP synthase [= human ATP5A1, yeast ATP1]; part of the F1 sector; isoform of ATP1B;alpha subunit of the mitochondrial ATP synthase [= human ATP5A1, yeast ATP1]; part of the F1 sector; isoform of ATP1B;alpha subunit of the mitochondrial ATP synthase [= human ATP5A1, yeast ATP1]; part of the F1 sector; isoform of ATP1B"
+Cre02.g095057	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB13	"CSB13;Cre11.g470650.t1.1;g1831.t1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre02.g077024			Mitochondrion				g1387.t1		
+Cre02.g119050				"GO:0016787;GO:0008236;GO:0008152;GO:0006508"	"hydrolase activity;serine-type peptidase activity;metabolic process;proteolysis"	CER1	"CER1;g2470.t1"		"Contains esterase/lipase/thioesterase domain and predicted N-terminal signal peptide. Similar to an Arabidopsis At1g26120 hypothetical protein with a carboxylesterase domain; closely related to nearby CER2"
+Cre02.g075350	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CNK1	"CNK1;Cre02.g075350.t1.1;g1348.t3;g1348.t3;Cre02.g075350.t1.1;CNK1;CNK1;Cre02.g075350.t1.1;g1348.t3;Cre02.g075350.t1.1;g1348.t3;CNK1"	"CNK1;CNK1;CNK1;CNK1"	"NimA related kinase homolog 1 [gi:34334391, PMID: 15068267];NimA related kinase homolog 1 [gi:34334391, PMID: 15068267];NimA related kinase homolog 1 [gi:34334391, PMID: 15068267];NimA related kinase homolog 1 [gi:34334391, PMID: 15068267]"
+Cre02.g093401			Chloroplast				g1763.t1		
+Cre02.g145650							"g2549.t1;g2549.t1;g2549.t1;g2549.t1;g2549.t1"		
+Cre02.g101000	GMM:23.3.2.2	"nucleotide metabolism.salvage.nucleoside kinases.uridine kinase"	Chloroplast			URK1	"URK1;g2061.t1;URK1;g2061.t1"	"URK1;URK1"	
+Cre02.g113950			Chloroplast				g2352.t1		
+Cre02.g100250							"Cre02.g100250.t1.1;g2041.t1"		
+Cre02.g146131									
+Cre02.g115950			"Secretory pathway"	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"		"g2400.t1;Cre02.g115950.t1.1"		
+Cre02.g111650	GMM:18.8	"Co-factor and vitamine metabolism.ubiquinone"				CGL8	"g2298.t1;Cre02.g111650.t1.1;g2298.t1;Cre02.g111650.t1.1"	"CGL8;CGL8"	"Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre02.g116100			"Secretory pathway"				"g2403.t1;g2403.t1"		
+Cre02.g142100			"Secretory pathway"				g2649.t1		
+Cre02.g105700			Mitochondrion				g2167.t1		
+Cre02.g077951	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215"	"ATPase activity;integral component of membrane;transport;ATP binding;transporter activity"		"g1408.t1;g1408.t1"		"Auto-defined as a sulfate-transporting ATPase;Auto-defined as a sulfate-transporting ATPase"
+Cre02.g092600	GMM:19.8	"tetrapyrrole synthesis.coproporphyrinogen III oxidase"	Chloroplast	"GO:0055114;GO:0006779;GO:0004109"	"oxidation-reduction process;porphyrin-containing compound biosynthetic process;coproporphyrinogen oxidase activity"	CPX2	"CPX2;Cre02.g092600.t1.1;g1736.t1"	CPX2	"Coproporphyrinogen III oxidase, mitochondrial or chloroplast precursor; CPO2 [PMID: 15849308]; Predicted chloroplast transit peptide 1-32"
+Cre02.g103450	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"					"g2114.t1;g2114.t1"		
+Cre02.g085850	GMM:14.1	S-assimilation.APS	"Secretory pathway"	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS6	"g1589.t1;ARS6;ARS6;g1589.t1;g1589.t1;ARS6"	"ARS6;ARS6;ARS6"	"Distantly related to nearby ARS8;Distantly related to nearby ARS8;Distantly related to nearby ARS8"
+Cre02.g083180			"Secretory pathway"				g1529.t1		
+Cre02.g101050			"Secretory pathway"				g2062.t1		
+Cre02.g095142			Mitochondrion						
+Cre02.g089050							"g1660.t1;g1660.t1"		
+Cre02.g092100							"g1726.t1;Cre02.g092100.t1.1"		
+Cre02.g073200	"GMM:13.2.3.2;GMM:13.1.4.5.1"	"amino acid metabolism.degradation.aspartate family.threonine;amino acid metabolism.synthesis.branched chain group.isoleucine specific.threonine ammonia-lyase"	Chloroplast			THD1	"Cre02.g073200.t1.1;g1295.t1;THD1;THD1;Cre02.g073200.t1.1;g1295.t1"	"THD1;THD1"	"homologous to threonine deaminase; threonine ammonia-lyase; threonine dehydratase (EC:4.3.1.19); has been found in the psaA trans-splicing complex II in the chloroplast;homologous to threonine deaminase; threonine ammonia-lyase; threonine dehydratase (EC:4.3.1.19); has been found in the psaA trans-splicing complex II in the chloroplast"
+Cre02.g105400				"GO:0008138;GO:0007096;GO:0006470;GO:0004721"	"protein tyrosine/serine/threonine phosphatase activity;regulation of exit from mitosis;protein dephosphorylation;phosphoprotein phosphatase activity"	CDC14	"g2161.t1;g2161.t1;g2161.t1;g2161.t1"	"CDC14;CDC14;CDC14;CDC14"	"Protein Tyrosine Phosphatase;Protein Tyrosine Phosphatase;Protein Tyrosine Phosphatase;Protein Tyrosine Phosphatase"
+Cre02.g088350							"g1645.t1;SNR3;g1645.t1;SNR3"		
+Cre02.g081000						EXN4	"EXN4;g1481.t1;Cre02.g081000.t1.1;EXN4;g1481.t1;Cre02.g081000.t1.1"		"ribonuclease H fold;ribonuclease H fold"
+Cre02.g147900	"GMM:4.3.14;GMM:4.1.14;GMM:11.1.30"	"glycolysis.unclear/dually targeted.pyruvate kinase (PK);glycolysis.cytosolic branch.pyruvate kinase (PK);lipid metabolism.FA synthesis and FA elongation.pyruvate kinase"		"GO:0030955;GO:0006096;GO:0004743;GO:0000287"	"potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding"	PYK5	"g2503.t3;g2503.t3;g2503.t3;g2503.t3;g2503.t3;g2503.t3;g2503.t3;g2503.t3;g2503.t3;g2503.t3"	"PYK5;PYK5;PYK5;PYK5;PYK5;PYK5;PYK5;PYK5;PYK5;PYK5"	"Pyruvate kinase (PK) [EC 2.7.1.40];Pyruvate kinase (PK) [EC 2.7.1.40];Pyruvate kinase (PK) [EC 2.7.1.40];Pyruvate kinase (PK) [EC 2.7.1.40];Pyruvate kinase (PK) [EC 2.7.1.40];Pyruvate kinase (PK) [EC 2.7.1.40];Pyruvate kinase (PK) [EC 2.7.1.40];Pyruvate kinase (PK) [EC 2.7.1.40];Pyruvate kinase (PK) [EC 2.7.1.40];Pyruvate kinase (PK) [EC 2.7.1.40]"
+Cre02.g104350	"GMM:21.1.1;GMM:21.1"	"redox.thioredoxin.PDIL;redox.thioredoxin"	"Secretory pathway"	GO:0045454	"cell redox homeostasis"	PDI5	"g2135.t2;Cre02.g104350.t1.1;PDI5;Cre02.g104350.t1.1;PDI5;g2135.t2;Cre02.g104350.t1.1;PDI5;g2135.t2;PDI5;g2135.t2;Cre02.g104350.t1.1"	"PDI5;PDI5;PDI5;PDI5"	"Protein Disulfide Isomerase 5. Unusual active site sequence, WCHWC instead of WCGHC; PMID:;Protein Disulfide Isomerase 5. Unusual active site sequence, WCHWC instead of WCGHC; PMID:;Protein Disulfide Isomerase 5. Unusual active site sequence, WCHWC instead of WCGHC; PMID:;Protein Disulfide Isomerase 5. Unusual active site sequence, WCHWC instead of WCGHC; PMID:"
+Cre02.g147300							"g2514.t1;g2514.t1;g2514.t1;g2514.t1"		
+Cre02.g101550	GMM:34.12	transport.metal		GO:0005515	"protein binding"		"g2071.t1;MRS1"		
+Cre02.g078966	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	"GO:0016887;GO:0006508;GO:0005524;GO:0004222"	"ATPase activity;proteolysis;ATP binding;metalloendopeptidase activity"	FTSH9	"g1437.t1;FHL5"	FTSH9	"Chloroplast-targeted FtsH protease"
+Cre02.g086100			Chloroplast			CGL40	"g1595.t1;Cre02.g086100.t1.1"	CGL40	
+Cre02.g084050				"GO:0016021;GO:0015031;GO:0008565"	"integral component of membrane;protein transport;protein transporter activity"	SEC62	"g1549.t1;Cre02.g084050.t1.1"	SEC62	"Expressed Protein. Similar to SEC62 component of the ER translocation apparatus."
+Cre02.g145502							g2556.t1		
+Cre02.g114200	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CSK3	"CSK3;g2358.t1"		
+Cre02.g079750	"GMM:30.11;GMM:29.5.11.4.3.2;GMM:29.4"	"signalling.light;protein.degradation.ubiquitin.E3.SCF.FBOX;protein.postranslational modification"		"GO:0007165;GO:0000160;GO:0000155"	"signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity"	HKR1	"g1457.t1;HKR1;HIK"	HIK1	"Contains PAS, Histidine kinase and signal receiver domains; Originally named HKR1, but was changed to avoid confusion with the histidine-kinase rhodopsins;"
+Cre02.g080650	"GMM:29.6.2.4;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP90s;stress.abiotic.heat"	EndoplasmicReticulum	"GO:0051082;GO:0006950;GO:0006457;GO:0005524"	"unfolded protein binding;response to stress;protein folding;ATP binding"	HSP90B	"g1474.t1;Cre02.g080650.t1.1;g1474.t1;Cre02.g080650.t1.1;Cre02.g080650.t1.1;g1474.t1"	"HSP90B;HSP90B;HSP90B"	"HSP90B is one of 3 HSP90 genes in Chlamydomonas; HSP90B is localized to the ER; PMID: 16143837 and 15995001; forms a cluster with ER-targeted chaperones BIP1 and BIP2 [PMID: 16143837];HSP90B is one of 3 HSP90 genes in Chlamydomonas; HSP90B is localized to the ER; PMID: 16143837 and 15995001; forms a cluster with ER-targeted chaperones BIP1 and BIP2 [PMID: 16143837];HSP90B is one of 3 HSP90 genes in Chlamydomonas; HSP90B is localized to the ER; PMID: 16143837 and 15995001; forms a cluster with ER-targeted chaperones BIP1 and BIP2 [PMID: 16143837]"
+Cre02.g118200			Mitochondrion	GO:0016021	"integral component of membrane"		"Cre02.g118200.t1.1;g2453.t1"		
+Cre02.g095047									
+Cre02.g095138							"g1911.t1;Cre11.g474000.t1.1"		
+Cre02.g108800	"GMM:29.9;GMM:29.6.2.6;GMM:29.6"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding"	Chloroplast			DNJ26	"TPR10;g2230.t1;DNJ26"	TPR10	"Putative chloroplast-targeted TPR protein contains heat shock protein DnaJ domain (pfam226) in C terminus and N-terminal TPR, Tetratricopeptide repeat domain (cd189); Co-orthologous to AT2G41520 and AT5G12430 in Arabidopsis thaliana;"
+Cre02.g091900						FAP301	"g1721.t1;g1721.t1"	"FAP301;FAP301"	"Similar to tropomyosin;Similar to tropomyosin"
+Cre02.g118801			Chloroplast				"GTR;Cre02.g118800.t1.2;g2465.t1"		
+Cre02.g108850	GMM:29.2.1.1.1.2.17	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L17"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPL17	"Cre02.g108850.t1.1;g2231.t1"	PRPL17	"imported to chloroplast; Chloroplast large ribosomal subunit protein L17"
+Cre02.g095076	GMM:34.99	transport.misc	Mitochondrion	"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"	MFT10	"ROC39;Cre11.g471500.t1.1;MFT10;g1850.t1;Cre11.g471500.t1.2"		"Matsuo et al.'s (2008) roc39 (rhythm of chloroplast 39) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618]"
+Cre02.g143507							"Cre38.g785500.t1.1;g2835.t1"		
+Cre02.g082000	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	GO:0006284	"base-excision repair"	AGE1	"AGE1;g1502.t1;Cre02.g082000.t1.1"	AGE1	"ChromDB DNG342; HhH-GPD superfamily base excision DNA repair protein. Oxidizatively damaged G (8-oxoG) can mispair with A and C. This MutY homolog probably works on excising A when mispaired with 8-oxoG; if uncorrected, this ca"
+Cre02.g096650			Mitochondrion				"Cre02.g096650.t1.1;g1963.t1"		
+Cre02.g113200	GMM:12.2.2	"N-metabolism.ammonia metabolism.glutamine synthetase"		"GO:0006807;GO:0006542;GO:0004356"	"nitrogen compound metabolic process;glutamine biosynthetic process;glutamate-ammonia ligase activity"	GLN1	"NSG18;g2331.t1"	GLN1	"glutamine synthetase (EC 6.3.1.2), CO2-responsive gene; glutamine synthetase, cytosolic isozyme (Glutamate--ammonia ligase) (GS1), CO2-responsive gene; identical to GLNA1_CHLRE cDNA [Swissprot Q42688), PMID: 8938407]"
+Cre02.g120050			Chloroplast				"Cre02.g120050.t1.1;g2493.t1"		
+Cre02.g091250			Chloroplast				"g1708.t1;Cre02.g091250.t1.1;Cre02.g091250.t1.1;g1708.t1"		
+Cre02.g106200	GMM:34.8	"transport.metabolite transporters at the envelope membrane"	"Secretory pathway"	GO:0055085	"transmembrane transport"		"Cre02.g106200.t1.1;TPT4;g2177.t1;TPT5;TPT5;g2177.t1;TPT4;Cre02.g106200.t1.1"		"putative triose phosphate transporter;putative triose phosphate transporter"
+Cre02.g095054			"Mitochondrion;Chloroplast"				g1828.t1		
+Cre02.g143200	GMM:29.1.7	"protein.aa activation.alanine-tRNA ligase"	"Secretory pathway"	"GO:0043039;GO:0016876;GO:0006419;GO:0005524;GO:0004813;GO:0003676;GO:0000166"	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;alanyl-tRNA aminoacylation;ATP binding;alanine-tRNA ligase activity;nucleic acid binding;nucleotide binding"	TSA1	"TSA1;g2621.t1;TSA1;g2621.t1;g2621.t1;TSA1;g2621.t1;TSA1;g2621.t1;TSA1;TSA1;g2621.t1;TSA1;g2621.t1;g2621.t1;TSA1;g2621.t1;TSA1;g2621.t1;TSA1"	"TSA1;TSA1;TSA1;TSA1;TSA1;TSA1;TSA1;TSA1;TSA1;TSA1"	"Likely cytosolic alanyl-tRNA-synthetase, since more related to yeast Ala1 than TSA2;Likely cytosolic alanyl-tRNA-synthetase, since more related to yeast Ala1 than TSA2;Likely cytosolic alanyl-tRNA-synthetase, since more related to yeast Ala1 than TSA2;Likely cytosolic alanyl-tRNA-synthetase, since more related to yeast Ala1 than TSA2;Likely cytosolic alanyl-tRNA-synthetase, since more related to yeast Ala1 than TSA2;Likely cytosolic alanyl-tRNA-synthetase, since more related to yeast Ala1 than TSA2;Likely cytosolic alanyl-tRNA-synthetase, since more related to yeast Ala1 than TSA2;Likely cytosolic alanyl-tRNA-synthetase, since more related to yeast Ala1 than TSA2;Likely cytosolic alanyl-tRNA-synthetase, since more related to yeast Ala1 than TSA2;Likely cytosolic alanyl-tRNA-synthetase, since more related to yeast Ala1 than TSA2"
+Cre02.g110200				"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"	THO1	"THO1;g2261.t1;THO1;g2261.t1"		"belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to eubacterial homologues; possibly organelle-targetted;belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to eubacterial homologues; possibly organelle-targetted"
+Cre02.g095153									
+Cre02.g141926	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre02.g141746	GMM:17.4.2	"hormone metabolism.cytokinin.signal transduction"	Mitochondrion	GO:0005515	"protein binding"		"g2729.t1;Cre15.g647100.t1.1"		
+Cre02.g078200	GMM:27.1	RNA.processing					"g1414.t1;g1414.t1;g1414.t1;g1414.t1;g1414.t1;g1414.t1"		
+Cre02.g141166									
+Cre02.g143635			Chloroplast				"g2610.t1;Cre02.g143635.t1.1"		
+Cre02.g099100	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT	Chloroplast	GO:0004842	"ubiquitin-protein transferase activity"		"g2016.t1;g2016.t1;g2016.t1;g2016.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g110300						DNJ25	"DNJ25;g2264.t1;Cre02.g110300.t1.1"		"DnaJ-like protein, probably cytosolic since it contains very short N-terminal extension and homologs in Arabidopsis (Q8RYC5, Q8L7R1, and Q9FMD2) are predicted by TargetP to be cytosolic; contains N-terminal J-domain (pfam226); no homology to other prote"
+Cre02.g095085				GO:0016020	membrane				
+Cre02.g113250			"Secretory pathway"	GO:0005515	"protein binding"		"g2332.t1;g2332.t1"		
+Cre02.g081650	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"	"Secretory pathway"				"g1495.t1;Cre02.g081650.t1.1;g1495.t1;Cre02.g081650.t1.1"		
+Cre02.g086800			Chloroplast				"g1611.t1;Cre02.g086800.t1.1"		
+Cre02.g104000			"Secretory pathway"				"Cre02.g104000.t1.1;g2127.t1;Cre02.g104000.t1.1;g2127.t1"		
+Cre02.g095067			"Secretory pathway"				"g1841.t1;Cre11.g471050.t1.1;g1841.t1;Cre11.g471050.t1.1"		
+Cre02.g092350	GMM:17.3.1.2.3	"hormone metabolism.brassinosteroid.synthesis-degradation.sterols.CYP51"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP51G1	"g1731.t1;CYP6;Cre02.g092350.t1.1"	CYP51G1	"Cytochrome P450 like protein similar to CYP51A (ABC59074), possible sterol 14-demethylase involved in sterol/ergosterol biosynthesis. CYP51G1 is the P450 nomenclature for sterol 14 alpha demethylases of green plants. ERG11 is a name from the fungal ergosterol pathway. These are orthologs; Target of CRR1"
+Cre02.g095055			Mitochondrion				"Cre11.g470600.t1.1;g1829.t1"		
+Cre02.g090276	GMM:27.1.19	RNA.processing.ribonucleases	Mitochondrion	GO:0005634	nucleus				
+Cre02.g100876			Chloroplast			CSB14			
+Cre02.g082877	GMM:29.1.11	"protein.aa activation.serine-tRNA ligase"		"GO:0006434;GO:0006418;GO:0005737;GO:0005524;GO:0004828;GO:0004812;GO:0003677;GO:0000166"	"seryl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;serine-tRNA ligase activity;aminoacyl-tRNA ligase activity;DNA binding;nucleotide binding"				
+Cre02.g142286	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"							
+Cre02.g088600	GMM:8.2.11	"TCA / organic transformation.other organic acid transformations.atp-citrate lyase"		"GO:0048037;GO:0046912;GO:0008152;GO:0003824"	"cofactor binding;transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer;metabolic process;catalytic activity"	ACLB1	"Cre02.g088600.t1.1;g1650.t1;ACL2;ACLB1"	ACLB1	"ATP Citrate Lyase (ACL), subunit B (EC 2.3.3.8); ATP-citrate synthase, subunit B; location uncertain, but likely to be cytosol; Similar to Arabidopsis ATP citrate lyase subunit B (GenBank NP_187317), which is similar to the carboxy half of the human ACL; ACL is responsible for generating acetyl-CoA in the cytosol of Arabidopsis"
+Cre02.g085500			Chloroplast				"TNP10;g1582.t1"		"Has a putative transposase DNA-binding domain containing four conserved cysteines suggestive of a zinc binding domain."
+Cre02.g116700	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	PTK11	"Cre02.g116700.t1.1;PTK11;g2415.t1;PTK11;g2415.t1;Cre02.g116700.t1.1;Cre02.g116700.t1.1;PTK11;g2415.t1"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre02.g087850	"GMM:30.2.8.2;GMM:30.2.20;GMM:30.2.17;GMM:29.4.1.58;GMM:29.4.1.57;GMM:29.4"	"signalling.receptor kinases.leucine rich repeat VIII.type 2;signalling.receptor kinases.wheat LRK10 like;signalling.receptor kinases.DUF 26;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VIII;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK19	"PTK19;g1634.t1;PTK19;g1634.t1;PTK19;g1634.t1;PTK19;g1634.t1"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329); closely linked to PTK10;Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329); closely linked to PTK10;Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329); closely linked to PTK10;Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329); closely linked to PTK10"
+Cre02.g089550			"Secretory pathway"				"g1671.t2;g1671.t2;g1671.t2"		
+Cre02.g101600							g2072.t1		
+Cre02.g103750			Mitochondrion				"Cre02.g103750.t1.1;g2120.t1"		
+Cre02.g095071	GMM:27.1.19	RNA.processing.ribonucleases	Chloroplast	GO:0005634	nucleus		"Cre11.g471250.t1.1;g1845.t1"		
+Cre02.g091350			Chloroplast				g1710.t2		
+Cre02.g141200	GMM:18	"Co-factor and vitamine metabolism"		"GO:0016763;GO:0009435;GO:0004514"	"transferase activity, transferring pentosyl groups;NAD biosynthetic process;nicotinate-nucleotide diphosphorylase (carboxylating) activity"	NIC2	"g2666.t1;Cre02.g141200.t1.1;NIC2;Cre02.g141200.t1.1;NIC2;g2666.t1;NIC2;g2666.t1;Cre02.g141200.t1.1"	"NIC2;NIC2;NIC2"	"Putative locus for NIC2 genetic marker;Putative locus for NIC2 genetic marker;Putative locus for NIC2 genetic marker"
+Cre02.g111750			Mitochondrion				"Cre02.g111750.t1.1;g2300.t1;Cre02.g111750.t1.1;g2300.t1"		
+Cre02.g076300	GMM:19.7	"tetrapyrrole synthesis.uroporphyrinogen decarboxylase"	Chloroplast	"GO:0006779;GO:0004853"	"porphyrin-containing compound biosynthetic process;uroporphyrinogen decarboxylase activity"	UROD2	"g1369.t1;UPD2;UPD2;g1369.t1"	"UROD2;UROD2"	
+Cre02.g095650			Chloroplast	GO:0071949	"FAD binding"		g1942.t1		
+Cre02.g075550							"Cre02.g075550.t1.1;g1352.t1;Cre02.g075550.t1.1;g1352.t1"		
+Cre02.g082576			Chloroplast						
+Cre02.g097213				"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"		"Cre02.g097213.t1.1;g1976.t1"		
+Cre02.g104150			"Secretory pathway"				"g2131.t1;g2131.t1;g2131.t1;g2131.t1;g2131.t1;g2131.t1;g2131.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre02.g145350			"Secretory pathway"				"g2560.t1;g2560.t1"		
+Cre02.g102250	GMM:29.2.1.2.1.3	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S3"		GO:0003723	"RNA binding"	RPS3	"g2087.t1;Cre02.g102250.t1.1;g2087.t1;Cre02.g102250.t1.1;g2087.t1;Cre02.g102250.t1.1"	"RPS3;RPS3;RPS3"	"Cytosolic 40S small ribosomal subunit protein S3;Cytosolic 40S small ribosomal subunit protein S3;Cytosolic 40S small ribosomal subunit protein S3"
+Cre02.g106700			Mitochondrion			OPR4	"g2187.t1;RAP1;g2187.t1;RAP1"	"OPR4;OPR4"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain"
+Cre02.g078750	"GMM:29.1.30;GMM:23.5.2"	"protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase"	Chloroplast	"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS3	"PUS3;g1429.t1;PUS3;g1429.t1;g1429.t1;PUS3"		"RNA pseudouridine synthase, mitochondrial precursor;RNA pseudouridine synthase, mitochondrial precursor;RNA pseudouridine synthase, mitochondrial precursor"
+Cre02.g076663						CSB12			
+Cre02.g079005									
+Cre02.g110050							"g2258.t1;g2258.t1;g2258.t1;g2258.t1;g2258.t1;g2258.t1"		
+Cre02.g115700							"g2395.t1;Cre02.g115700.t1.1"		
+Cre02.g087200							"g1618.t1;g1618.t1;g1618.t1;g1618.t1;g1618.t1;g1618.t1;g1618.t1"		
+Cre02.g113751			"Secretory pathway"				"Cre02.g113751.t1.1;g2346.t1"		
+Cre02.g141306			"Secretory pathway"						
+Cre02.g107800	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CNK9	"CNK9;g2210.t1;CNK9;g2210.t1;CNK9;g2210.t1"	"CNK9;CNK9;CNK9"	
+Cre02.g078300				"GO:0055114;GO:0006979;GO:0004602"	"oxidation-reduction process;response to oxidative stress;glutathione peroxidase activity"	GPX1	"g1417.t1;PHGPx1"	GPX1	"Selenocysteine in position 53; most similar to plant homologues, that have a Cys at the corresponding position; contains a SECIS element in 3'-UTR"
+Cre02.g112400				"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI1	"CHI1;g2315.t1;CHI1;g2315.t1;g2315.t1;CHI1"		
+Cre02.g117750									
+Cre02.g095052				GO:0006355	"regulation of transcription, DNA-templated"		"Cre11.g470486.t1.1;Cre11.g470486.t1.2;g1826.t1"		
+Cre02.g095400	GMM:29.2.2.50	"protein.synthesis.ribosome biogenesis.BRIX"	Chloroplast				"g1937.t2;Cre02.g095400.t1.1"	BRIX1	"Found in basal body proteome as BRIX; Related to BRIX1 in humans"
+Cre02.g084250	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"PPP7;Cre02.g084250.t1.1;g1554.t1;PPP7;Cre02.g084250.t1.1;g1554.t1"		
+Cre02.g142750			Mitochondrion				g2632.t2		
+Cre02.g086428									
+Cre02.g108950						LF1	"LF1;g2233.t1;g2233.t1;LF1"	"LF1;LF1"	"Long-flagella mutant LF1 protein involved in the regulation of flagellar length. Found predominantly, if not exclusively, in the cell body in punctate structures called the Length Regulatory Complex (LRC), see Tam et al. (27);Long-flagella mutant LF1 protein involved in the regulation of flagellar length. Found predominantly, if not exclusively, in the cell body in punctate structures called the Length Regulatory Complex (LRC), see Tam et al. (27)"
+Cre02.g079004									
+Cre02.g099200	GMM:27.1.3.16	"RNA.processing.3' end processing.Symplekin"					g2018.t1		
+Cre02.g073600			Chloroplast				g1303.t1		
+Cre02.g088900	GMM:29.2.1.1.1.2.1	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L1"	Chloroplast			PRPL1	"Cre02.g088900.t1.1;g1657.t1"	PRPL1	"imported to chloroplast; Chloroplast large ribosomal subunit protein L1"
+Cre02.g084873			Mitochondrion				"Cre02.g084873.t1.1;g1567.t1"		
+Cre02.g095050			Chloroplast				"g1929.t1;g1929.t1"		
+Cre02.g075850	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g1359.t2;STPK12;SNRK2;SNRK2.1;CKIN2.1;ARS11;STK12"	SNRK2A	"Mediates abiotic stress responses"
+Cre02.g094400			Chloroplast				"g1784.t1;Cre02.g094400.t1.1"		
+Cre02.g085000			Chloroplast				g1570.t1		
+Cre02.g096200							"Cre02.g096200.t1.1;g1953.t1"		
+Cre02.g095103			"Secretory pathway"				"Cre11.g472550.t1.2;g1876.t1;Cre11.g472550.t1.1;GT90-34;GT90F34;Cre11.g472550.t1.1;GT90-34;g1876.t1;GT90F34;Cre11.g472550.t1.2;Cre11.g472550.t1.2;g1876.t1;Cre11.g472550.t1.1;GT90F34;GT90-34"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g142727									
+Cre02.g078251			Mitochondrion						
+Cre02.g114550			"Secretory pathway"						
+Cre02.g111150	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG26	"ELG26;g2284.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre02.g095128			Mitochondrion				"g1901.t1;g1901.t1"		
+Cre02.g146700			Chloroplast				"Cre02.g146700.t1.1;g2526.t1"		
+Cre02.g095041			"Secretory pathway"						
+Cre02.g105350			"Secretory pathway"				"g2160.t1;Cre02.g105350.t1.1"		
+Cre02.g115050			Mitochondrion	"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"	RSEP3	"g2377.t1;Cre02.g115050.t1.1;RSE3"	RSEP3	"Intramembrane metalloprotease related to site-2 protease; contains M5 domain, with HExxH motif embedded in transmembrane helix; homologous to bacterial RseP/YaeL/PsoIVFB involved in transmembrane signaling; does not appear to be organelle-targetted"
+Cre02.g076150			"Secretory pathway"				"g1366.t1;Cre02.g076150.t1.1;Cre02.g076150.t1.1;g1366.t1;g1366.t1;Cre02.g076150.t1.1;Cre02.g076150.t1.1;g1366.t1;Cre02.g076150.t1.1;g1366.t1;Cre02.g076150.t1.1;g1366.t1;g1366.t1;Cre02.g076150.t1.1"		
+Cre02.g097400	GMM:29.2.3	protein.synthesis.initiation		"GO:0045905;GO:0045901;GO:0043022;GO:0006452;GO:0003746;GO:0003723"	"positive regulation of translational termination;positive regulation of translational elongation;ribosome binding;translational frameshifting;translation elongation factor activity;RNA binding"	EIF5A	"Cre02.g097400.t1.1;g1982.t1;EIF5A"	EIF5A	"putative eukaryotic initiation factor 5A-3 (eIF-5A); Found in the flagellar proteome [PMID: 15998802]"
+Cre02.g095045	"GMM:33.99;GMM:27.3.63"	"development.unspecified;RNA.regulation of transcription.PHD finger transcription factor"	Mitochondrion	"GO:0006355;GO:0005515"	"regulation of transcription, DNA-templated;protein binding"	hlm15	"g1819.t1;Cre11.g470350.t1.1;Cre11.g470350.t1.1;g1819.t1"		
+Cre02.g096450							g1958.t1		
+Cre02.g098450	GMM:29.2.3	protein.synthesis.initiation		GO:0005525	"GTP binding"	EIF2G	"g2002.t1;EIF2G;Cre02.g098450.t1.1"	EIF2G	"Putative eukaryotic translation initiation factor 2 subunit 3"
+Cre02.g093051							g1749.t1		
+Cre02.g095140			Mitochondrion				"Cre11.g474100.t1.1;g1913.t1"		
+Cre02.g097550			Chloroplast				"g1985.t1;Cre02.g097550.t1.1"		
+Cre02.g100050	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast			PFH11	"Cre02.g100050.t1.1;g2037.t1;P4H-11;PFH11;PHX6"		"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate"
+Cre02.g075150	GMM:27.2	RNA.transcription		"GO:0032549;GO:0006351;GO:0003899;GO:0003677"	"ribonucleoside binding;transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPB2	"Cre02.g075150.t1.1;g1344.t1;RPB2"	RPB2	"Contains in its penultimate exon an intein spliced out post-translationally; highly similar to Volvox homologue except for the intein and the last 6 residues"
+Cre02.g095108			Mitochondrion						
+Cre02.g087500			Mitochondrion				g1625.t1		
+Cre02.g142566									
+Cre02.g095063							"g1837.t1;Cre11.g470900.t1.1;g1837.t1;Cre11.g470900.t1.1;g1837.t1;Cre11.g470900.t1.1;g1837.t1;Cre11.g470900.t1.1"		
+Cre02.g111426									
+Cre02.g095062			"Secretory pathway"				"Cre11.g470850.t1.1;g1836.t1"		
+Cre02.g073650	"GMM:33.99;GMM:27.1.1"	"development.unspecified;RNA.processing.splicing"		GO:0005515	"protein binding"	PRP19	"g1304.t1;PRP19;Cre02.g073650.t1.1;PRP19;g1304.t1;Cre02.g073650.t1.1"	"PRP19;PRP19"	"Homologue of S. cerevisiae Prp19, which is required prior to Catalytic Step 1 of nuclear pre-mRNA splicing. Contains WD-40 repeats. Transducin family protein / WD-40 repeat family protein;Homologue of S. cerevisiae Prp19, which is required prior to Catalytic Step 1 of nuclear pre-mRNA splicing. Contains WD-40 repeats. Transducin family protein / WD-40 repeat family protein"
+Cre02.g079250			Chloroplast	"GO:0051382;GO:0019237;GO:0000776"	"kinetochore assembly;centromeric DNA binding;kinetochore"		"g1447.t1;g1447.t1;g1447.t1;g1447.t1"		
+Cre02.g094551			Mitochondrion				"g1788.t1;g1788.t1;g1788.t1;g1788.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g097950							"Cre02.g097950.t1.1;g1992.t1"		
+Cre02.g141706	GMM:3.5	"minor CHO metabolism.others"	Chloroplast	"GO:0005525;GO:0003723"	"GTP binding;RNA binding"		"Cre15.g647200.t1.1;ERA1;g2727.t2"		"Putative GTP-binding protein Era"
+Cre02.g144007							g2599.t1		
+Cre02.g113600	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2340.t1;Cre02.g113600.t1.1;g2340.t1;Cre02.g113600.t1.1"		
+Cre02.g118950	GMM:29.2.1.1.1.1.17	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S17"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPS17	"Cre02.g118950.t1.1;g2468.t1;Cre02.g118950.t1.1;g2468.t1"	"PRPS17;PRPS17"	"imported to chloroplast; Chloroplast small ribosomal subunit protein S17;imported to chloroplast; Chloroplast small ribosomal subunit protein S17"
+Cre02.g095119							"Cre11.g473150.t1.1;g1892.t1;g1892.t1;Cre11.g473150.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g112100	GMM:31.6.1.6.1	"cell.motility.eukaryotes.central pair.C1a"				FAP101	"g2307.t1;C1a-86"	FAP101	"Flagellar Associated Protein with weak similarity to a kinase regulatory subunit; also known as C1a-86; form the C1a projection, with PF6, C1a-34, C1a-32, C1a-18, and calmodulin; may play a role in modulating both inner and outer dynein arm activity;"
+Cre02.g117450			"Secretory pathway"				g2435.t1		
+Cre02.g082825	GMM:29.1.11	"protein.aa activation.serine-tRNA ligase"		"GO:0006434;GO:0006418;GO:0005737;GO:0005524;GO:0004828;GO:0004812;GO:0000166"	"seryl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;serine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding"	TSS1	"TSS1;SERRS1;g1522.t1;SERRS1;TSS1;g1522.t1;TSS1;SERRS1;g1522.t1"	"TSS1;TSS1;TSS1"	"transfers seryl moiety to tRNA-Ser and to tRNA-Sec (for selenocysteine synthesis);transfers seryl moiety to tRNA-Ser and to tRNA-Sec (for selenocysteine synthesis);transfers seryl moiety to tRNA-Ser and to tRNA-Sec (for selenocysteine synthesis)"
+Cre02.g089274	GMM:31.2	cell.division							
+Cre02.g144010			"Secretory pathway"						
+Cre02.g103100	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	"Secretory pathway"				"SDR5;g2106.t1"		
+Cre02.g077600			Mitochondrion			FAP51	"Cre02.g077600.t1.1;g1399.t1;g1399.t1;Cre02.g077600.t1.1"	"FAP51;FAP51"	"Flagellar Associated Coiled-Coil Protein, found in the flagellar proteome [PMID: 15998802]; null-allele mutant was isolated (PMID 29743196);Flagellar Associated Coiled-Coil Protein, found in the flagellar proteome [PMID: 15998802]; null-allele mutant was isolated (PMID 29743196)"
+Cre02.g113900			Chloroplast				"g2351.t1;g2351.t1"		
+Cre02.g101150	"GMM:34.12;GMM:31.1"	"transport.metal;cell.organisation"		GO:0005515	"protein binding"		"Cre02.g101150.t1.1;g2064.t1;g2064.t1;Cre02.g101150.t1.1;Cre02.g101150.t1.1;g2064.t1"		
+Cre02.g105150			Mitochondrion	"GO:0016740;GO:0003824"	"transferase activity;catalytic activity"		"g2155.t1;g2155.t1"		
+Cre02.g097800	"GMM:34.16;GMM:1.5.3"	"transport.ABC transporters and multidrug resistance systems;PS.carbon concentrating mechanism.algal"		"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP1	"g1989.t1;MRP1;HLA3;g1989.t1;HLA3;MRP1;g1989.t1;HLA3;MRP1"	"HLA3;HLA3;HLA3"	"associated with bicarbonate uptake for CO2-cocentrating mechanism [PMID:19321421, 25660294, 26015566]; high light-induced, requiring both high light and low CO2 (ambient) levels for activation [PMID: 12000678]; MRP subfamily of ABC transporters [PMID: 15710683]; HLA3 is regulated by CCM1 [PMID: 15235119]; localized at plasma membrane [PMID: 15710683];associated with bicarbonate uptake for CO2-cocentrating mechanism [PMID:19321421, 25660294, 26015566]; high light-induced, requiring both high light and low CO2 (ambient) levels for activation [PMID: 12000678]; MRP subfamily of ABC transporters [PMID: 15710683]; HLA3 is regulated by CCM1 [PMID: 15235119]; localized at plasma membrane [PMID: 15710683];associated with bicarbonate uptake for CO2-cocentrating mechanism [PMID:19321421, 25660294, 26015566]; high light-induced, requiring both high light and low CO2 (ambient) levels for activation [PMID: 12000678]; MRP subfamily of ABC transporters [PMID: 15710683]; HLA3 is regulated by CCM1 [PMID: 15235119]; localized at plasma membrane [PMID: 15710683]"
+Cre02.g142351	GMM:17.1.1	"hormone metabolism.abscisic acid.synthesis-degradation"	Chloroplast	GO:0045454	"cell redox homeostasis"		"g2644.t1;g2644.t1;g2644.t1;g2644.t1"		
+Cre02.g142386									
+Cre02.g143550	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELI4	"Cre02.g143550.t1.1;LCI16;g2612.t1;ELI4;ELI3;Cre02.g143550.t1.1;g2612.t1;LCI16;ELI3;ELI4;Cre02.g143550.t1.1;LCI16;ELI3;ELI4;g2612.t1;ELI3;ELI4;g2612.t1;Cre02.g143550.t1.1;LCI16;LCI16;g2612.t1;Cre02.g143550.t1.1;ELI4;ELI3"	"ELIP3;ELIP3;ELIP3;ELIP3;ELIP3"	"belongs to chlorophyll A-B binding protein superfamily, ELIP family;belongs to chlorophyll A-B binding protein superfamily, ELIP family;belongs to chlorophyll A-B binding protein superfamily, ELIP family;belongs to chlorophyll A-B binding protein superfamily, ELIP family;belongs to chlorophyll A-B binding protein superfamily, ELIP family"
+Cre02.g076350	"GMM:34.1.1.1;GMM:34.1.1"	"transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit B;transport.p- and v-ATPases.H+-transporting two-sector ATPase"		"GO:0046034;GO:0033178;GO:0016820;GO:0015992;GO:0015991;GO:0005524"	"ATP metabolic process;proton-transporting two-sector ATPase complex, catalytic domain;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;proton transport;ATP hydrolysis coupled proton transport;ATP binding"	ATPVB	"ATPVB;Cre02.g076350.t1.1;g1370.t1"	ATPVB1	"Vacuolar ATP synthase subunit B, V-ATPase B, ATP synthase V-type alpha subunit"
+Cre02.g118700	GMM:31.6.1.11	cell.motility.eukaryotes.other	Mitochondrion				g2463.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre02.g108700	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2228.t1;g2228.t1"		
+Cre02.g103784							"Cre02.g103784.t1.1;g2122.t1"		
+Cre02.g095149						FAP143	"Cre11.g474550.t1.1;g1922.t1"	FAP143	
+Cre02.g141066			Chloroplast				g2687.t2		
+Cre02.g087700	GMM:21.2.1	"redox.ascorbate and glutathione.ascorbate"	Chloroplast	"GO:0055114;GO:0020037;GO:0006979;GO:0004601"	"oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity"	APX1	"Cre02.g087700.t1.1;g1630.t1"	APX1	"L-ascorbate peroxidase, possibly localized to plastid"
+Cre02.g083300							g1532.t1		
+Cre02.g143227									
+Cre02.g089350							"g1667.t1;g1667.t1;g1667.t1;g1667.t1"		
+Cre02.g095066									
+Cre02.g146650	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0006464	"cellular protein modification process"	SSA11	"SSA11;TTL3;g2527.t1;SSA11;TTL3;g2527.t1"	"SSA11;SSA11"	"identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA)"
+Cre02.g143467	GMM:29.5.3	"protein.degradation.cysteine protease"	Mitochondrion	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"				
+Cre02.g141226			Chloroplast						
+Cre02.g095134							"Cre11.g473850.t1.1;g1907.t1;Cre11.g473850.t1.2;Cre11.g473850.t1.1;Cre11.g473850.t1.2;g1907.t1"		
+Cre02.g105000			"Secretory pathway"				"g2151.t1;g2151.t1"		
+Cre02.g089608	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0016818;GO:0008026;GO:0006139;GO:0005524;GO:0004003;GO:0003677;GO:0003676"	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;ATP-dependent helicase activity;nucleobase-containing compound metabolic process;ATP binding;ATP-dependent DNA helicase activity;DNA binding;nucleic acid binding"		"g1673.t1;Cre02.g089608.t1.1"		
+Cre02.g096737							"g1965.t1;Cre02.g096737.t1.1"		
+Cre02.g103700			Mitochondrion				"g2119.t1;g2119.t1"		
+Cre02.g109400			"Secretory pathway"	GO:0005515	"protein binding"		"Cre02.g109400.t1.1;g2244.t1"		
+Cre02.g142927									
+Cre02.g083065	"GMM:31.1;GMM:29.5"	"cell.organisation;protein.degradation"	Mitochondrion	"GO:0030145;GO:0004177"	"manganese ion binding;aminopeptidase activity"		"g1527.t1;Cre02.g083065.t1.1;g1527.t1;Cre02.g083065.t1.1"		
+Cre02.g142807									
+Cre02.g113000							"Cre02.g113000.t1.1;g2327.t1"		
+Cre02.g145750	GMM:34.3	"transport.amino acids"	Mitochondrion			AOT2	"g2547.t1;AOT2;AOT2;g2547.t1"		"belongs to AAAP family of amino acid/auxin permeases; most similar to plant relatives; linked to closely related AOT1;belongs to AAAP family of amino acid/auxin permeases; most similar to plant relatives; linked to closely related AOT1"
+Cre02.g095124			Chloroplast				"Cre11.g473400.t1.1;Cre11.g473400.t1.2;g1897.t1;g1897.t1;Cre11.g473400.t1.2;Cre11.g473400.t1.1;Cre11.g473400.t1.1;g1897.t1;Cre11.g473400.t1.2"		
+Cre02.g134124			Chloroplast				g2501.t1		
+Cre02.g142246			Mitochondrion				"Cre15.g646000.t1.2;g2760.t1;Cre15.g646000.t1.1"		
+Cre02.g144001			Mitochondrion				g2594.t1		
+Cre02.g095145			"Secretory pathway"				"Cre11.g474350.t1.2;Cre11.g474350.t1.1;g1918.t1"		
+Cre02.g095034									
+Cre02.g145800	GMM:8.2.9	"TCA / organic transformation.other organic acid transformations.cyt MDH"		"GO:0055114;GO:0016616;GO:0016615;GO:0016491;GO:0006108"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;malate dehydrogenase activity;oxidoreductase activity;malate metabolic process"	MDN3	"MDH3;g2546.t1;MDN3;Cre02.g145800.t1.1"	MDH3	"NAD-dependent Malate Dehydrogenase (EC 1.1.1.37), cytosolic; contains full aa sequence of Chlamydomonas cytosolic NAD-MDH (GenBank CAC8841), but approximately 5 aa longer at the amino terminus; still predicted by Target-P to lack an organelle targeting sequence"
+Cre02.g084550			Chloroplast	GO:0008080	"N-acetyltransferase activity"		"NAT10;Cre02.g084550.t1.1;g1560.t1;g1560.t1;Cre02.g084550.t1.1;NAT10;NAT10;Cre02.g084550.t1.1;g1560.t1"		
+Cre02.g141900				"GO:0016021;GO:0006810"	"integral component of membrane;transport"		"Cre02.g141900.t1.1;g2653.t1"		
+Cre02.g143107			Chloroplast						
+Cre02.g141886	"GMM:29.4.1.57;GMM:29.4"	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre15.g646850.t1.1;g2736.t1;Cre15.g646850.t1.1;g2736.t1;Cre15.g646850.t1.1;g2736.t1;Cre15.g646850.t1.1;g2736.t1;g2736.t1;Cre15.g646850.t1.1;g2736.t1;Cre15.g646850.t1.1;Cre15.g646850.t1.1;g2736.t1;Cre15.g646850.t1.1;g2736.t1;g2736.t1;Cre15.g646850.t1.1"		
+Cre02.g142950							"g2627.t1;Cre02.g142950.t1.1"		
+Cre02.g142146			Chloroplast			CGL102	"CGL102;Cre15.g646250.t1.1;Cre15.g646250.t1.2;g2755.t1"	HCF244	"This gene is mutated in strain F35 (PMID: 1377098); Ortholog of Arabidopsis HCF244, catalytically inactive short-chain dehydrogenase/reductase superfamily protein, contains NAD(P)-binding and DUF2867 domains; interacts with OHP1 and OHP2 to allow D1 synthesis; Arabidopsis mutant fails to translate psbA"
+Cre02.g106400	GMM:11.8.10	"lipid metabolism.exotics (steroids, squalene etc).phosphatidylcholine-sterol O-acyltransferase"	Chloroplast	"GO:0008374;GO:0006629"	"O-acyltransferase activity;lipid metabolic process"	LCA1	"g2181.t1;LCA1;g2181.t1;LCA1;LCA1;g2181.t1"	"PDAT1;PDAT1;PDAT1"	"Lecithin:cholesterol acyltransferase;Lecithin:cholesterol acyltransferase;Lecithin:cholesterol acyltransferase"
+Cre02.g080850	GMM:29.6.3.2	"protein.folding.immunophilins (IMM).cyclophilins"				CYN47	"CYN11;g1478.t1;Cre02.g080850.t1.1;g1478.t1;CYN11;Cre02.g080850.t1.1"	"CYN47;CYN47"	"Putative peptidyl-prolyl cis-trans isomerase, cyclophilin-type; some similarity to CYN48-CYN53;Putative peptidyl-prolyl cis-trans isomerase, cyclophilin-type; some similarity to CYN48-CYN53"
+Cre02.g084500			"Secretory pathway"			CGL134	"g1559.t1;g1559.t1"	"CGL134;CGL134"	"Conserved in the Green Lineage; null-allele mutant was isolated (PMID 29743196);Conserved in the Green Lineage; null-allele mutant was isolated (PMID 29743196)"
+Cre02.g119150							"Cre02.g119150.t1.1;g2472.t1"		
+Cre02.g093850			Mitochondrion	GO:0005515	"protein binding"		"g1773.t1;g1773.t1;g1773.t1;g1773.t1;g1773.t1"		
+Cre02.g090850	"GMM:29.6.2.5;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP100s;stress.abiotic.heat"	Chloroplast	"GO:0019538;GO:0016887;GO:0005524"	"protein metabolic process;ATPase activity;ATP binding"	CLPB3	"g1698.t1;g1698.t1;g1698.t1"	"CLPB3;CLPB3;CLPB3"	"probably chloroplastic or mitochondrial, by homology to At5g15450 and At2g25140 (PMID: 17144892);probably chloroplastic or mitochondrial, by homology to At5g15450 and At2g25140 (PMID: 17144892);probably chloroplastic or mitochondrial, by homology to At5g15450 and At2g25140 (PMID: 17144892)"
+Cre02.g147500			Mitochondrion				"Cre02.g147500.t1.1;g2511.t1"		
+Cre02.g141086			Chloroplast						
+Cre02.g113050				"GO:0008889;GO:0008081;GO:0006629"	"glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process"		"g2328.t1;Cre02.g113050.t1.1"		
+Cre02.g120350							"g2499.t1;Cre02.g120350.t1.1"		
+Cre02.g145150			"Secretory pathway"			MAM3A	"g2565.t2;MAM3A;g2565.t2;MAM3A;MAM3A;g2565.t2;MAM3A;g2565.t2"		"contains a DUF21 transmembrane domain of unknown function and 2 CBS domains (found in Hemolysins and Mg2+/CO2 transporters CorB CorC); similarity to many Arabidopsis proteins and to yeast Mam3p, involved in mitochondrial biogenesis;contains a DUF21 transmembrane domain of unknown function and 2 CBS domains (found in Hemolysins and Mg2+/CO2 transporters CorB CorC); similarity to many Arabidopsis proteins and to yeast Mam3p, involved in mitochondrial biogenesis;contains a DUF21 transmembrane domain of unknown function and 2 CBS domains (found in Hemolysins and Mg2+/CO2 transporters CorB CorC); similarity to many Arabidopsis proteins and to yeast Mam3p, involved in mitochondrial biogenesis;contains a DUF21 transmembrane domain of unknown function and 2 CBS domains (found in Hemolysins and Mg2+/CO2 transporters CorB CorC); similarity to many Arabidopsis proteins and to yeast Mam3p, involved in mitochondrial biogenesis"
+Cre02.g104100			Chloroplast				"Cre02.g104100.t1.1;g2129.t1;g2129.t1;Cre02.g104100.t1.1"		
+Cre02.g095079							"Cre11.g471650.t1.1;g1853.t1;Cre11.g471650.t1.1;g1853.t1;Cre11.g471650.t1.1;g1853.t1"		
+Cre02.g081950	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g1501.t1;g1501.t1;g1501.t1;g1501.t1;g1501.t1;g1501.t1;g1501.t1"		
+Cre02.g116800							g2418.t1		
+Cre02.g147100	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP265	"g2518.t1;g2518.t1"	"FAP265;FAP265"	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome;Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome"
+Cre02.g090689							"g1695.t1;Cre02.g090689.t1.1"		
+Cre02.g105250							"g2157.t1;g2157.t1;g2157.t1;g2157.t1"		
+Cre02.g091200	GMM:13.2.6.2	"amino acid metabolism.degradation.aromatic aa.tyrosine"		"GO:0055114;GO:0006570;GO:0006559;GO:0004411"	"oxidation-reduction process;tyrosine metabolic process;L-phenylalanine catabolic process;homogentisate 1,2-dioxygenase activity"		g1706.t1		
+Cre02.g117250	"GMM:31.2;GMM:29.5.11.20"	"cell.division;protein.degradation.ubiquitin.proteasom"		"GO:0009341;GO:0005975;GO:0004565"	"beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity"		"g2428.t2;g2428.t2;g2428.t2"		
+Cre02.g085326			"Secretory pathway"						
+Cre02.g092850	GMM:31.6.1.4.1	"cell.motility.eukaryotes.axonemal dyneins.outer arm"				DLU1	"Cre02.g092850.t1.1;DLC1;g1741.t1;LC1;ODA-LC1"	DLU1	"LC1 component of outer arm dynein; leucine-rich repeat protein; mutants in this gene were characterized by Patel-King and King, PMID: 1962633. Associates with motor domain of the ODA gamma heavy chain"
+Cre02.g088100							"Cre02.g088100.t1.1;g1639.t1;g1639.t1;Cre02.g088100.t1.1"		
+Cre02.g114100	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	"Secretory pathway"	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE22			
+Cre02.g079400	GMM:27.4	"RNA.RNA binding"	Mitochondrion	GO:0003676	"nucleic acid binding"		"g1450.t1;Cre02.g079400.t1.1"		
+Cre02.g078912	GMM:34	transport	Mitochondrion				"g1435.t1;Cre64.g793050.t1.1"		
+Cre02.g142326			Chloroplast				g2764.t1		
+Cre02.g081750							g1497.t1		
+Cre02.g079926			Chloroplast			PHC64	"PHC64;g1460.t1;PHC64;g1460.t1"		"contains LTP domain and pherophrin domain;contains LTP domain and pherophrin domain"
+Cre02.g102950	"GMM:33.99;GMM:29.4;GMM:27.3;GMM:26.13"	"development.unspecified;protein.postranslational modification;RNA.regulation of transcription;misc.acid and other phosphatases"					g2103.t1		
+Cre02.g115350	"GMM:13.99;GMM:13"	"amino acid metabolism.misc;amino acid metabolism"					"Cre02.g115350.t1.1;g2384.t1"		
+Cre02.g099050				"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR30	"g2014.t1;SRR30;g2014.t1;SRR30"		
+Cre02.g082350	GMM:15.2	"metal handling.binding, chelation and storage"	"Secretory pathway;Chloroplast"	GO:0010038	"response to metal ion"	CUTA1	"CUT1;g1509.t2;g1509.t2;CUT1"	"CUTA1;CUTA1"	"related to copper binding protein CutA found in chloroplasts of Arabidopsis and ubiquitously distributed in other organisms;related to copper binding protein CutA found in chloroplasts of Arabidopsis and ubiquitously distributed in other organisms"
+Cre02.g095087	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"		"Cre11.g471950.t1.2;Cre11.g471950.t1.1;g1861.t1;Cre11.g471950.t1.1;g1861.t1;Cre11.g471950.t1.2"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g101800	GMM:29.2.5	protein.synthesis.release	Chloroplast	"GO:0006415;GO:0003747"	"translational termination;translation release factor activity"		"ARFB;g2078.t1"	ARFB1	"Possibly chloroplast localized"
+Cre02.g142086	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0050999	"regulation of nitric-oxide synthase activity"		"g2752.t1;Cre15.g646350.t1.1;Cre15.g646350.t1.2"		
+Cre02.g091650			Chloroplast				g1717.t1		
+Cre02.g119900	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP6	"g2490.t1;PCP1;CEP6;Cre02.g119900.t1.1;g2490.t1;PCP1;CEP6;Cre02.g119900.t1.1;Cre02.g119900.t1.1;g2490.t1;PCP1;CEP6"		"Putative papain-type cysteine protease of C1A subfamily;Putative papain-type cysteine protease of C1A subfamily;Putative papain-type cysteine protease of C1A subfamily"
+Cre02.g092076			"Secretory pathway"				"g1725.t1;g1725.t1;g1725.t1"		
+Cre02.g143650			Chloroplast				"g2609.t1;Cre02.g143650.t1.1;Cre02.g143650.t1.1;g2609.t1;Cre02.g143650.t1.1;g2609.t1"		
+Cre02.g142466	"GMM:30.2.17;GMM:29.4.1"	"signalling.receptor kinases.DUF 26;protein.postranslational modification.kinase"							
+Cre02.g143307	"GMM:29.6.2.5;GMM:29.5.5"	"protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease"				CLPC1	"CLPC1;g2825.t1;CLPC1;g2825.t1"	"CLPC1;CLPC1"	"Probably chloroplastic (by homology); possibly the ATP-dependent subunit of Clp protease, as its Volvox orthologue contains the IGF motif that binds ClpP (PMID: 11224567);Probably chloroplastic (by homology); possibly the ATP-dependent subunit of Clp protease, as its Volvox orthologue contains the IGF motif that binds ClpP (PMID: 11224567)"
+Cre02.g074050	"GMM:20.2;GMM:2.2"	"stress.abiotic;major CHO metabolism.degradation"	"Secretory pathway"				g1313.t1		
+Cre02.g106100							"g2175.t1;Cre02.g106100.t1.1;Cre02.g106100.t1.1;g2175.t1"		
+Cre02.g095073			Mitochondrion				"Cre11.g471350.t1.1;g1847.t1;Cre11.g471350.t1.1;g1847.t1"		
+Cre02.g093117			Chloroplast						
+Cre02.g141806	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	PTK16	"g2732.t1;PTK16;Cre15.g647000.t1.1;g2732.t1;PTK16;Cre15.g647000.t1.1"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre02.g092500	"GMM:28.1;GMM:27.1.2"	"DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"		"GO:0008270;GO:0005737;GO:0005524;GO:0004386;GO:0003677;GO:0000184"	"zinc ion binding;cytoplasm;ATP binding;helicase activity;DNA binding;nuclear-transcribed mRNA catabolic process, nonsense-mediated decay"	UPF1	"g1734.t1;UPF1;UPF1;g1734.t1;g1734.t1;UPF1;UPF1;g1734.t1"	"UPF1;UPF1;UPF1;UPF1"	"putative regulator of nonsense transcripts 1 (UPF1). Part of a post-splicing multiprotein complex involved in both mRNA nuclear export and mRNA surveillance. Cytoplasmic localization. High homology to Arabidopsis thaliana accession AAL92018;putative regulator of nonsense transcripts 1 (UPF1). Part of a post-splicing multiprotein complex involved in both mRNA nuclear export and mRNA surveillance. Cytoplasmic localization. High homology to Arabidopsis thaliana accession AAL92018;putative regulator of nonsense transcripts 1 (UPF1). Part of a post-splicing multiprotein complex involved in both mRNA nuclear export and mRNA surveillance. Cytoplasmic localization. High homology to Arabidopsis thaliana accession AAL92018;putative regulator of nonsense transcripts 1 (UPF1). Part of a post-splicing multiprotein complex involved in both mRNA nuclear export and mRNA surveillance. Cytoplasmic localization. High homology to Arabidopsis thaliana accession AAL92018"
+Cre02.g083800	"GMM:3.5;GMM:10.1.10"	"minor CHO metabolism.others;cell wall.precursor synthesis.RHM"		"GO:0055114;GO:0016616;GO:0006694;GO:0003854"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	RHM2	"SNE5;g1543.t2"	RHM2	"NAD-dependent epimerase/dehydratase; belongs to a family of proteins which utilise NAD as a cofactor and use nucleotide-sugar substrates for a variety of chemical reactions"
+Cre02.g090000	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		g1681.t1		
+Cre02.g074437			"Secretory pathway"				g1323.t1		
+Cre02.g073850	GMM:1.1.1.3	"PS.lightreaction.photosystem II.biogenesis"	Chloroplast.Stroma.Thylakoid.Lumen	GO:0010207	"photosystem II assembly"	CGL54	"Cre02.g073850.t1.1;CGL54;g1309.t1"	LPA19	"Conserved in the Green Lineage 54"
+Cre02.g078550						FAP210	"g1425.t1;Cre02.g078550.t1.1;g1425.t1;Cre02.g078550.t1.1;Cre02.g078550.t1.1;g1425.t1;g1425.t1;Cre02.g078550.t1.1"	"FAP210;FAP210;FAP210;FAP210"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre02.g083650			"Secretory pathway"				g1540.t1		
+Cre02.g089900	GMM:34.99	transport.misc		"GO:0016021;GO:0015031"	"integral component of membrane;protein transport"	SCAMP5	"SCAMP5;SCM1;Cre02.g089900.t1.1;g1679.t1"		"SCAMP family protein, contains Pfam domain. Homologous to Arabidopsis At1g32050.1; null-allele mutant was isolated (PMID 29743196)"
+Cre02.g141050	"GMM:33.99;GMM:32;GMM:29.2.3;GMM:27.3.36"	"development.unspecified;micro RNA, natural antisense etc;protein.synthesis.initiation;RNA.regulation of transcription.argonaute transcription factor family"	Chloroplast	"GO:0005515;GO:0003676"	"protein binding;nucleic acid binding"	AGO1	"g2669.t1;AGO1;g2669.t1;AGO1"	"AGO1;AGO1"	"Presumably involved in posttranscriptional gene silencing/RNA interference. ChromDB AGO3401; more similar to other Chlamydomonas AGO than to any plant genes.;Presumably involved in posttranscriptional gene silencing/RNA interference. ChromDB AGO3401; more similar to other Chlamydomonas AGO than to any plant genes."
+Cre02.g103400			Chloroplast			OPR118	"Cre02.g103400.t1.1;g2112.t1"	OPR118	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre02.g146400						CSB2			
+Cre02.g088700							"Cre02.g088700.t1.1;g1653.t1;Cre02.g088700.t1.1;g1653.t1;Cre02.g088700.t1.1;g1653.t1"		
+Cre02.g082550	GMM:17.1.1.1.1	"hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase"	Chloroplast	"GO:0071949;GO:0005515"	"FAD binding;protein binding"	ZEP1	"g1513.t1;Cre02.g082550.t1.1;ZEP;Cre02.g082550.t1.1;g1513.t1;ZEP;ZEP;g1513.t1;Cre02.g082550.t1.1;Cre02.g082550.t1.1;ZEP;g1513.t1"	"ZEP1;ZEP1;ZEP1;ZEP1"	"Zeaxanthin epoxidase, chloroplast precursor (ABA1) (NPQ2) [PMID:12671093];;Zeaxanthin epoxidase, chloroplast precursor (ABA1) (NPQ2) [PMID:12671093];;Zeaxanthin epoxidase, chloroplast precursor (ABA1) (NPQ2) [PMID:12671093];;Zeaxanthin epoxidase, chloroplast precursor (ABA1) (NPQ2) [PMID:12671093];"
+Cre02.g141826	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2733.t1;Cre15.g646950.t1.1"		
+Cre02.g109716									
+Cre02.g146629									
+Cre02.g097450	GMM:25.9	"C1-metabolism.dihydroneopterin aldolase"		"GO:0006760;GO:0004150"	"folic acid-containing compound metabolic process;dihydroneopterin aldolase activity"		"g1983.t1;Cre02.g097450.t1.1"		
+Cre02.g101700			Mitochondrion				g2075.t1		
+Cre02.g142867			"Secretory pathway"				"TET7;g2802.t1"		"converts 5-methylcytosine (5mC) to 5-glyceryl-methylcytosines (5gmC) using vitamin C (not 2-oxoglutarate) as a co-substrate; Fe-dependent dioxygenase; homologous to TET1/CMD1; part of a Helitron transposon"
+Cre02.g142206			Chloroplast				"Cre15.g646100.t1.1;g2758.t1;g2758.t1;Cre15.g646100.t1.1;Cre15.g646100.t1.1;g2758.t1;g2758.t1;Cre15.g646100.t1.1;g2758.t1;Cre15.g646100.t1.1"		
+Cre02.g089700									
+Cre02.g101750			Chloroplast				"g2076.t1;g2076.t1"		
+Cre02.g095550	GMM:29.2.2	"protein.synthesis.ribosome biogenesis"	Mitochondrion	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"g1940.t1;g1940.t1;g1940.t1"		
+Cre02.g141701							"g2657.t1;Cre02.g141650.t1.3"		
+Cre02.g143207			Chloroplast						
+Cre02.g095084			Chloroplast				"g1858.t1;Cre11.g471864.t1.1"		
+Cre02.g142650							"g2634.t1;g2634.t1;g2634.t1"		
+Cre02.g142352	GMM:29.1.21	"protein.aa activation.histidine-tRNA ligase"		GO:0005737	cytoplasm		g2645.t1	TSH1	
+Cre02.g092200			"Secretory pathway"				"Cre02.g092200.t1.1;QAD1;g1728.t1;Cre02.g092200.t1.1;QAD1;g1728.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g087450							"Cre02.g087450.t1.1;g1624.t1"		
+Cre02.g118650			"Secretory pathway"			PHC47	"g2462.t1;g2462.t1"	"PHC47;PHC47"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre02.g112950				GO:0033588	"Elongator holoenzyme complex"		"Cre02.g112950.t1.1;g2326.t1"		
+Cre02.g095064									
+Cre02.g086650	"GMM:31.2;GMM:28.1"	"cell.division;DNA.synthesis/chromatin structure"		"GO:0051276;GO:0007076;GO:0005694;GO:0005524;GO:0005515;GO:0000796"	"chromosome organization;mitotic chromosome condensation;chromosome;ATP binding;protein binding;condensin complex"	SMC2	"SMC2;Cre02.g086650.t1.1;DIV35;g1608.t1"	SMC2	"Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. Forms heterodimers with SMC4. ts-lethal mutations block in S/M (PMID 25336509)"
+Cre02.g095081							"Cre11.g471750.t1.2;g1855.t2;Cre11.g471750.t1.1"		
+Cre02.g141246							g2697.t1		
+Cre02.g109501			"Secretory pathway"						
+Cre02.g116950	GMM:27.3.55	"RNA.regulation of transcription.HDA"				HDA1	"Cre02.g116950.t1.1;HDA1;g2421.t1"	HDA1	"ChromDB HDA3403; linked to Histone-lysine N-methyltransferase HLM6"
+Cre02.g074370	"GMM:30.3;GMM:3.3;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g1321.t1;Cre02.g074370.t1.1;Cre02.g074370.t1.1;g1321.t1;g1321.t1;Cre02.g074370.t1.1"	"CDPK8;CDPK8;CDPK8"	"Identified as CrCDPK8 in [PMID: 23936117];Identified as CrCDPK8 in [PMID: 23936117];Identified as CrCDPK8 in [PMID: 23936117]"
+Cre02.g103850	"GMM:13.1.7.6;GMM:13.1.7"	"amino acid metabolism.synthesis.histidine.glutamine amidotransferase/cyclase;amino acid metabolism.synthesis.histidine"	Chloroplast	"GO:0004424;GO:0000105"	"imidazoleglycerol-phosphate dehydratase activity;histidine biosynthetic process"	HIS3	"Cre02.g103850.t1.1;HIS3;g2124.t1"	HIS3	"imidazoleglycerol-phosphate (IGP) dehydratase (EC 4.2.1.19); histidine biosynthesis pathway"
+Cre02.g095150			"Secretory pathway"				"g1931.t1;Cre02.g095150.t1.1;g1931.t1;Cre02.g095150.t1.1"		
+Cre02.g104250			Mitochondrion	"GO:0016021;GO:0016020;GO:0006811;GO:0006810;GO:0005230"	"integral component of membrane;membrane;ion transport;transport;extracellular ligand-gated ion channel activity"		"g2133.t1;g2133.t1;g2133.t1"		
+Cre02.g143151	GMM:31.1	cell.organisation		"GO:0005815;GO:0000922;GO:0000226"	"microtubule organizing center;spindle pole;microtubule cytoskeleton organization"		"SPB;g2623.t1;Cre02.g143100.t1.3"		"Belongs to the Spc97/98 family; these components interact with gamma-tubulin"
+Cre02.g073500			Chloroplast			FAP241	"g1301.t1;g1301.t1"	"FAP241;FAP241"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre02.g103650							"g2118.t1;g2118.t1"		
+Cre02.g099750	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g2030.t1		
+Cre02.g099500	GMM:33.99	development.unspecified	Mitochondrion				"g2025.t2;g2025.t2"	"CVL1;CVL1"	"Similarity to Pcl1 from S. pombe and VIT1 from A. thaliana;Similarity to Pcl1 from S. pombe and VIT1 from A. thaliana"
+Cre02.g110350	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"		GO:0005515	"protein binding"		"Cre02.g110350.t1.1;g2265.t1"		
+Cre02.g106150	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN18-1	"CYN12;Cre02.g106150.t1.1;g2176.t1;CYN18-1"	CYN18A	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; cytosolic; very similar to AtCYP18-1"
+Cre02.g095117				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre11.g473100.t1.1;g1890.t2;g1890.t2;Cre11.g473100.t1.1;g1890.t2;Cre11.g473100.t1.1;g1890.t2;Cre11.g473100.t1.1"		
+Cre02.g095114			"Secretory pathway"				"Cre11.g472950.t1.1;g1887.t1;Cre11.g472950.t1.1;g1887.t1"		
+Cre02.g093600						TEH3	"TEH3;Cre02.g093600.t1.1;g1768.t1"		
+Cre02.g141986				"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre15.g646600.t1.1;g2741.t1;g2741.t1;Cre15.g646600.t1.1"		
+Cre02.g074700			Chloroplast				"g1332.t1;Cre02.g074700.t1.1"		
+Cre02.g142687	"GMM:29.4;GMM:29.3.4.99"	"protein.postranslational modification;protein.targeting.secretory pathway.unspecified"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	FAP332	g2791.t2	FAP332	"Similar to ADP-ribosylation factor 1"
+Cre02.g089500			"Secretory pathway"				"g1670.t1;Cre02.g089500.t1.1;g1670.t1;Cre02.g089500.t1.1"		
+Cre02.g147700				GO:0016787	"hydrolase activity"		"g2507.t1;Cre02.g147700.t1.1;g2507.t1;Cre02.g147700.t1.1"		
+Cre02.g143450			Chloroplast				"Cre02.g143450.t1.1;g2614.t1"		
+Cre02.g078650	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"	"GO:0016787;GO:0008152"	"hydrolase activity;metabolic process"		"DPP1;g1427.t1;DPP1;g1427.t1"		
+Cre02.g105500	"GMM:29.5;GMM:13.1.2.3"	"protein.degradation;amino acid metabolism.synthesis.glutamate family.arginine"		"GO:0016787;GO:0008152"	"hydrolase activity;metabolic process"	AOD1	"g2163.t1;AOD1;Cre02.g105500.t1.1;Cre02.g105500.t1.1;g2163.t1;AOD1"	"AOD1;AOD1"	"EC 3.5.1.16; involved in arginine biosynthesis; produces ornithine from acetylornithine, without transfering the acetyl group to glutamate;EC 3.5.1.16; involved in arginine biosynthesis; produces ornithine from acetylornithine, without transfering the acetyl group to glutamate"
+Cre02.g142987			"Secretory pathway"	"GO:0006281;GO:0005524;GO:0005515;GO:0004386;GO:0003678;GO:0000723"	"DNA repair;ATP binding;protein binding;helicase activity;DNA helicase activity;telomere maintenance"		g2808.t1		
+Cre02.g107850	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Chloroplast			MOB1	"g2211.t1;MOB1;Cre02.g107850.t1.1;Cre02.g107850.t1.1;MOB1;g2211.t1"	"MOB1;MOB1"	"MOB1 proteins are involved in mitotic exit and regulation of cytokinesis. Ts-lethal mutant block at S/M (PMID 29743196);MOB1 proteins are involved in mitotic exit and regulation of cytokinesis. Ts-lethal mutant block at S/M (PMID 29743196)"
+Cre02.g086350									
+Cre02.g120250	"GMM:29.4.1;GMM:29.4;GMM:1.1.30"	"protein.postranslational modification.kinase;protein.postranslational modification;PS.lightreaction.state transition"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	STT7	"g2497.t1;STT7;CDPK7;STT7;g2497.t1;CDPK7"	"STT7;STT7"	"Chloroplast protein kinase required for LHCII phosphorylation and state transition [PMID: 12624266];Chloroplast protein kinase required for LHCII phosphorylation and state transition [PMID: 12624266]"
+Cre02.g078831	GMM:20.2.2	stress.abiotic.cold		"GO:0006355;GO:0003677"	"regulation of transcription, DNA-templated;DNA binding"		"g1432.t1;Cre64.g793150.t1.1"		
+Cre02.g085350			Chloroplast				g1579.t2		
+Cre02.g089200	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	"Secretory pathway"	"GO:0042393;GO:0005515"	"histone binding;protein binding"	HLM4	"Cre02.g089200.t1.1;SET3;g1663.t1;HLM4"		"Protein contains a SET domain with similarity to Arabidopsis thaliana SUVH4/KYP/SET33 (At5g13960); published Chlamydomonas cDNA (AY702654); [PMID: 16100335]; null-allele mutant was isolated (PMID 29743196)"
+Cre02.g091193							"Cre02.g091193.t1.1;g1705.t1"		
+Cre02.g085300							"Cre02.g085300.t1.1;g1577.t1;Cre02.g085300.t1.1;g1577.t1"		
+Cre02.g096500				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g1960.t1;g1960.t1;g1960.t1;g1960.t1;g1960.t1"		
+Cre02.g088000	"GMM:9.1.1;GMM:31.6.1.1;GMM:31.3"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I;cell.motility.eukaryotes.basal bodies;cell.cycle"	Mitochondrion	GO:0016020	membrane	PHB1	"Cre02.g088000.t1.1;PHB1;g1637.t1"	POC17	"Found in basal body proteome; Orthologous to human centrosome-proteome protein; Possibly mitochondrial; Previously annotated as Prohibtin (PHB1)"
+Cre02.g141466			Chloroplast						
+Cre02.g141011			Chloroplast				g2502.t1		
+Cre02.g079600	GMM:29.1.20	"protein.aa activation.phenylalanine-tRNA ligase"	Chloroplast	"GO:0043039;GO:0008033;GO:0006432;GO:0005737;GO:0005524;GO:0004826;GO:0004812;GO:0000287;GO:0000049"	"tRNA aminoacylation;tRNA processing;phenylalanyl-tRNA aminoacylation;cytoplasm;ATP binding;phenylalanine-tRNA ligase activity;aminoacyl-tRNA ligase activity;magnesium ion binding;tRNA binding"	TSF2	"TSF2;g1454.t1;Cre02.g079600.t1.1"	TSF2	"Phenylalanyl-tRNA synthetase with homology to biotin synthetase, possible the organellar phenylalanyl-tRNA synthetase form"
+Cre02.g146300	GMM:34.15	transport.potassium		"GO:0016020;GO:0015269;GO:0006813"	"membrane;calcium-activated potassium channel activity;potassium ion transport"		"g2534.t2;g2534.t2"		
+Cre02.g110500							"g2268.t1;g2268.t1"		
+Cre02.g083750	"GMM:27.3.5;GMM:27.3.20;GMM:27.3"	"RNA.regulation of transcription.ARR;RNA.regulation of transcription.G2-like transcription factor family (GARP);RNA.regulation of transcription"				ROC75	"ROC75;g1542.t2;ROC75;g1542.t2;ROC75;g1542.t2"	"ROC75;ROC75;ROC75"	"LUX(PCL1)/BOA(NOX)-like GARP protein, transcription factor involved in the circadian clock; day/subjective day-phase-expressed nuclear-localized protein; associates with some night-phased clock genes and represses their expression;LUX(PCL1)/BOA(NOX)-like GARP protein, transcription factor involved in the circadian clock; day/subjective day-phase-expressed nuclear-localized protein; associates with some night-phased clock genes and represses their expression;LUX(PCL1)/BOA(NOX)-like GARP protein, transcription factor involved in the circadian clock; day/subjective day-phase-expressed nuclear-localized protein; associates with some night-phased clock genes and represses their expression"
+Cre02.g079450			"Secretory pathway"				"g1451.t1;g1451.t1;g1451.t1;g1451.t1;g1451.t1;g1451.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g117650			"Secretory pathway"				"GT90F2;GT90-2;g2439.t1;GT90F2;GT90-2;g2439.t1;GT90F2;GT90-2;g2439.t1;g2439.t1;GT90-2;GT90F2;GT90F2;GT90-2;g2439.t1;GT90-2;GT90F2;g2439.t1;GT90F2;GT90-2;g2439.t1"		
+Cre02.g093700	GMM:34.14	"transport.unspecified cations"		"GO:0046872;GO:0016887;GO:0016021;GO:0006812;GO:0000166"	"metal ion binding;ATPase activity;integral component of membrane;cation transport;nucleotide binding"		"g1770.t2;g1770.t2;g1770.t2;g1770.t2;g1770.t2;g1770.t2;g1770.t2"		
+Cre02.g087800	"GMM:30.2.20;GMM:29.4"	"signalling.receptor kinases.wheat LRK10 like;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK10	"PTK10;g1633.t1;g1633.t1;PTK10;PTK10;g1633.t1;g1633.t1;PTK10"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329); closely linked to PTK19;Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329); closely linked to PTK19;Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329); closely linked to PTK19;Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329); closely linked to PTK19"
+Cre02.g144800	GMM:26.24	"misc.GCN5-related N-acetyltransferase"	Chloroplast	GO:0008080	"N-acetyltransferase activity"	LCI8	"g2573.t1;g2573.t1;g2573.t1;g2573.t1;g2573.t1;g2573.t1"	"LCI8;LCI8;LCI8;LCI8;LCI8;LCI8"	"Catalyzes the first two steps of arginine biosynthesis (EC 2.3.1.1, EC 2.7.2.8), producing N-acetylglutamyl-phosphate; contains Aspartate/glutamate/uridylate kinase and Acyl-CoA N-acyltransferase (amino-acid N-acetyltransferase) domains; Low-CO2 inducible gene revealed by cDNA array analyses, regulated by CCM1; Uniprot-KB A8J0U5_CHLRE;Catalyzes the first two steps of arginine biosynthesis (EC 2.3.1.1, EC 2.7.2.8), producing N-acetylglutamyl-phosphate; contains Aspartate/glutamate/uridylate kinase and Acyl-CoA N-acyltransferase (amino-acid N-acetyltransferase) domains; Low-CO2 inducible gene revealed by cDNA array analyses, regulated by CCM1; Uniprot-KB A8J0U5_CHLRE;Catalyzes the first two steps of arginine biosynthesis (EC 2.3.1.1, EC 2.7.2.8), producing N-acetylglutamyl-phosphate; contains Aspartate/glutamate/uridylate kinase and Acyl-CoA N-acyltransferase (amino-acid N-acetyltransferase) domains; Low-CO2 inducible gene revealed by cDNA array analyses, regulated by CCM1; Uniprot-KB A8J0U5_CHLRE;Catalyzes the first two steps of arginine biosynthesis (EC 2.3.1.1, EC 2.7.2.8), producing N-acetylglutamyl-phosphate; contains Aspartate/glutamate/uridylate kinase and Acyl-CoA N-acyltransferase (amino-acid N-acetyltransferase) domains; Low-CO2 inducible gene revealed by cDNA array analyses, regulated by CCM1; Uniprot-KB A8J0U5_CHLRE;Catalyzes the first two steps of arginine biosynthesis (EC 2.3.1.1, EC 2.7.2.8), producing N-acetylglutamyl-phosphate; contains Aspartate/glutamate/uridylate kinase and Acyl-CoA N-acyltransferase (amino-acid N-acetyltransferase) domains; Low-CO2 inducible gene revealed by cDNA array analyses, regulated by CCM1; Uniprot-KB A8J0U5_CHLRE;Catalyzes the first two steps of arginine biosynthesis (EC 2.3.1.1, EC 2.7.2.8), producing N-acetylglutamyl-phosphate; contains Aspartate/glutamate/uridylate kinase and Acyl-CoA N-acyltransferase (amino-acid N-acetyltransferase) domains; Low-CO2 inducible gene revealed by cDNA array analyses, regulated by CCM1; Uniprot-KB A8J0U5_CHLRE"
+Cre02.g143607			Chloroplast				g2840.t1		
+Cre02.g099251			Chloroplast	GO:0016020	membrane		"g2019.t1;g2019.t1"		
+Cre02.g085800							"g1588.t1;g1588.t1"		
+Cre02.g083450	GMM:17.1.1.1.1	"hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase"	Mitochondrion	GO:0071949	"FAD binding"		"g1536.t1;g1536.t1;g1536.t1;g1536.t1"		
+Cre02.g095090	GMM:14	S-assimilation		"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	umm9	"g1864.t1;Cre11.g472050.t1.1;Cre11.g472050.t1.1;g1864.t1;Cre11.g472050.t1.1;g1864.t1;g1864.t1;Cre11.g472050.t1.1"		
+Cre02.g111014	"GMM:31.3;GMM:30.6"	"cell.cycle;signalling.MAP kinases"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2280.t1;Cre02.g111016.t1.2"		
+Cre02.g119250			"Secretory pathway"				"Cre02.g119250.t1.1;g2474.t1"		
+Cre02.g082200	GMM:13.1.3.6.1.4	"amino acid metabolism.synthesis.aspartate family.misc.homoserine.homoserine kinase"	Mitochondrion	GO:0005524	"ATP binding"	HSK1	"HSK1;g1506.t1"		"putative homoserine kinase (EC:2.7.1.39), based on similarity to Arabidopsis homoserine kinase (GenBank AAD33097); Target-P predicts mitochondrial targeting sequence; predicted as plastidic based on homology; closely related to nearby HSK2 and two other paralogs"
+Cre02.g077700	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"					g1401.t1		
+Cre02.g103200			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g2108.t1;g2108.t1;g2108.t1;g2108.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g076466			Chloroplast				"g1373.t1;Cre02.g076450.t1.2"		
+Cre02.g118151							g2452.t1		
+Cre02.g098850	GMM:21.1	redox.thioredoxin	Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	NTR2	"g2010.t1;g2010.t1;g2010.t1;g2010.t1"	"NTR2;NTR2;NTR2;NTR2"	"NTR2 NADPH-dependent thioredoxin reductase 2, similar to AtNTRA and AtNTRB targeted to cytosol and mitochondria in Arabidopsis due to alternative initiation of transcription. Apparently no alternative initiation of trancription for this NTR in chlamy but presence of an N-terminal extension which could correspond to a transit peptide for targeting to mitochondria.;NTR2 NADPH-dependent thioredoxin reductase 2, similar to AtNTRA and AtNTRB targeted to cytosol and mitochondria in Arabidopsis due to alternative initiation of transcription. Apparently no alternative initiation of trancription for this NTR in chlamy but presence of an N-terminal extension which could correspond to a transit peptide for targeting to mitochondria.;NTR2 NADPH-dependent thioredoxin reductase 2, similar to AtNTRA and AtNTRB targeted to cytosol and mitochondria in Arabidopsis due to alternative initiation of transcription. Apparently no alternative initiation of trancription for this NTR in chlamy but presence of an N-terminal extension which could correspond to a transit peptide for targeting to mitochondria.;NTR2 NADPH-dependent thioredoxin reductase 2, similar to AtNTRA and AtNTRB targeted to cytosol and mitochondria in Arabidopsis due to alternative initiation of transcription. Apparently no alternative initiation of trancription for this NTR in chlamy but presence of an N-terminal extension which could correspond to a transit peptide for targeting to mitochondria."
+Cre02.g140981			Chloroplast				"Cre15.g642700.t1.1;g2683.t1;Cre15.g642700.t1.2"		
+Cre02.g112000			"Secretory pathway"			AOT7	"g2305.t1;AOT7;AOT7;g2305.t1"		"belongs to AAAP family of amino acid/auxin permeases; most similar to animal and protist relatives;belongs to AAAP family of amino acid/auxin permeases; most similar to animal and protist relatives"
+Cre02.g143667			Chloroplast			PLPA9	"g2843.t1;Cre38.g785750.t1.1;PLP9"	PLAP9	"Conserved expressed protein related to plastid lipid associated protein PAP/fibrillin; Arabidopsis homologue is in plastoglobuli (PMID: 16461379)"
+Cre02.g143327			"Secretory pathway"				"g2826.t1;Cre38.g785100.t1.2;Cre38.g785100.t1.1;Cre38.g785100.t1.2;Cre38.g785100.t1.1;g2826.t1;Cre38.g785100.t1.1;g2826.t1;Cre38.g785100.t1.2;Cre38.g785100.t1.2;g2826.t1;Cre38.g785100.t1.1"		
+Cre02.g075650	"GMM:27.3.99;GMM:27.1.1"	"RNA.regulation of transcription.unclassified;RNA.processing.splicing"		GO:0003676	"nucleic acid binding"		"g1354.t1;Cre02.g075650.t1.1"		
+Cre02.g116850	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		GO:0005515	"protein binding"	HLM6	"g2419.t1;SETb;Cre02.g116850.t1.1;HLM6"		"Protein contains an interrupted SET domain with very weak similarity to Arabidopsis thaliana ASHR2, SET39, SDG39 (At2g19640) and Zea mays SET123; linked to histone deacetylase HDA1"
+Cre02.g087150			Chloroplast				"g1617.t1;Cre02.g087150.t1.1;Cre02.g087150.t1.1;g1617.t1"		
+Cre02.g095112									
+Cre02.g093300			Mitochondrion				"g1761.t1;g1761.t1"		
+Cre02.g144500	GMM:27.4	"RNA.RNA binding"		GO:0003723	"RNA binding"		"g2583.t1;g2583.t1;g2583.t1"		
+Cre02.g078226									
+Cre02.g096800			Mitochondrion				"g1967.t1;Cre02.g096800.t1.1"		
+Cre02.g115900							"Cre02.g115900.t1.1;g2399.t1"		
+Cre02.g094150	GMM:27.3.66	"RNA.regulation of transcription.pseudo ARR transcription factor family"		"GO:0005515;GO:0000160"	"protein binding;phosphorelay signal transduction system"	HKR2	"Cre02.g094150.t1.1;HIK;HKR2;g1779.t1;g1779.t1;HKR2;HIK;Cre02.g094150.t1.1;HIK;Cre02.g094150.t1.1;g1779.t1;HKR2"	"HIK2;HIK2;HIK2"	"Similar to APRR9 (PSEUDO-RESPONSE REGULATOR 9); transcription regulator - cd156, REC; contains only the Signal receiver domain and a CCT domain, not the kinase domain; Originally named HKR2, but was changed to avoid confusion with the histidine-kinase rhodopsins;;Similar to APRR9 (PSEUDO-RESPONSE REGULATOR 9); transcription regulator - cd156, REC; contains only the Signal receiver domain and a CCT domain, not the kinase domain; Originally named HKR2, but was changed to avoid confusion with the histidine-kinase rhodopsins;;Similar to APRR9 (PSEUDO-RESPONSE REGULATOR 9); transcription regulator - cd156, REC; contains only the Signal receiver domain and a CCT domain, not the kinase domain; Originally named HKR2, but was changed to avoid confusion with the histidine-kinase rhodopsins;"
+Cre02.g092750				"GO:0032259;GO:0008168;GO:0003676"	"methylation;methyltransferase activity;nucleic acid binding"	SSA18	"SSA18;g1739.t1;RRM3;g1739.t1;SSA18;RRM3;RRM3;SSA18;g1739.t1;RRM3;SSA18;g1739.t1;SSA18;g1739.t1;RRM3"	"SSA18;SSA18;SSA18;SSA18;SSA18"	"identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA)"
+Cre02.g095040									
+Cre02.g095126	GMM:2.2.2.4	"major CHO metabolism.degradation.starch.D enzyme"	Mitochondrion	"GO:2001070;GO:0005975;GO:0004134"	"starch binding;carbohydrate metabolic process;4-alpha-glucanotransferase activity"	DPE2	"DPE1;Cre11.g473500.t1.1;g1899.t1;DPE2;Cre11.g473500.t1.1;DPE1;g1899.t1;DPE2;g1899.t1;DPE1;Cre11.g473500.t1.1;DPE2;DPE2;g1899.t1;Cre11.g473500.t1.1;DPE1;Cre11.g473500.t1.1;DPE1;g1899.t1;DPE2;DPE2;g1899.t1;Cre11.g473500.t1.1;DPE1"	"DPE2;DPE2;DPE2;DPE2;DPE2;DPE2"	"Alpha-1,4-glucanotransferase; Transfers mostly maltosyl residues from a donor oligosaccharide to the nonreducing end of an acceptor; probable cytosolic isoform; Known formally as disproportionating enzyme (D-enzyme);Alpha-1,4-glucanotransferase; Transfers mostly maltosyl residues from a donor oligosaccharide to the nonreducing end of an acceptor; probable cytosolic isoform; Known formally as disproportionating enzyme (D-enzyme);Alpha-1,4-glucanotransferase; Transfers mostly maltosyl residues from a donor oligosaccharide to the nonreducing end of an acceptor; probable cytosolic isoform; Known formally as disproportionating enzyme (D-enzyme);Alpha-1,4-glucanotransferase; Transfers mostly maltosyl residues from a donor oligosaccharide to the nonreducing end of an acceptor; probable cytosolic isoform; Known formally as disproportionating enzyme (D-enzyme);Alpha-1,4-glucanotransferase; Transfers mostly maltosyl residues from a donor oligosaccharide to the nonreducing end of an acceptor; probable cytosolic isoform; Known formally as disproportionating enzyme (D-enzyme);Alpha-1,4-glucanotransferase; Transfers mostly maltosyl residues from a donor oligosaccharide to the nonreducing end of an acceptor; probable cytosolic isoform; Known formally as disproportionating enzyme (D-enzyme)"
+Cre02.g141426									
+Cre02.g118100							"g2450.t1;Cre02.g118100.t1.1"		
+Cre02.g145300				"GO:0006397;GO:0005634;GO:0004721"	"mRNA processing;nucleus;phosphoprotein phosphatase activity"		"Cre02.g145300.t1.1;g2561.t1;Cre02.g145300.t1.1;g2561.t1"		
+Cre02.g095350	GMM:23.3	"nucleotide metabolism.salvage"	Chloroplast			CGL116	"g1936.t1;DNK1"	CGL116	
+Cre02.g091100	GMM:29.2.1.2.2.15	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L15"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	RPL15	"g1703.t1;Cre02.g091100.t1.1;g1703.t1;Cre02.g091100.t1.1;Cre02.g091100.t1.1;g1703.t1;Cre02.g091100.t1.1;g1703.t1;Cre02.g091100.t1.1;g1703.t1"	"RPL15;RPL15;RPL15;RPL15;RPL15"	"Cytosolic 60S large subunit ribosomal protein L15;Cytosolic 60S large subunit ribosomal protein L15;Cytosolic 60S large subunit ribosomal protein L15;Cytosolic 60S large subunit ribosomal protein L15;Cytosolic 60S large subunit ribosomal protein L15"
+Cre02.g108601	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2226.t1;g2226.t1"		
+Cre02.g143527							"g2836.t1;g2836.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g095143							"Cre11.g474250.t1.1;g1916.t1"		
+Cre02.g112550	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Mitochondrion	"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"Cre02.g112550.t1.1;g2318.t1;g2318.t1;Cre02.g112550.t1.1;Cre02.g112550.t1.1;g2318.t1;g2318.t1;Cre02.g112550.t1.1;g2318.t1;Cre02.g112550.t1.1"		
+Cre02.g108150			Chloroplast				g2217.t1		
+Cre02.g141506	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"					"g2717.t1;Cre67.g793650.t1.1;Cre67.g793650.t1.1;g2717.t1;Cre67.g793650.t1.1;g2717.t1"		
+Cre02.g104850			Mitochondrion				"Cre02.g104850.t1.1;g2146.t1"		
+Cre02.g110843			Mitochondrion						
+Cre02.g074550							"Cre02.g074550.t1.1;g1328.t1"		
+Cre02.g074300			"Secretory pathway"				"g1319.t1;g1319.t1"		
+Cre02.g143567							"g2838.t1;Cre38.g785600.t1.1;Cre38.g785600.t1.2"		
+Cre02.g094250	"GMM:34.9;GMM:34.17"	"transport.metabolite transporters at the mitochondrial membrane;transport.peroxisomes"					"g1781.t1;g1781.t1;g1781.t1"		
+Cre02.g094700							"g1791.t1;Cre02.g094700.t1.1"		
+Cre02.g090050			"Secretory pathway"			FAP170	"g1682.t1;FAP285;g1682.t1;FAP285;g1682.t1;FAP285"	"FAP170;FAP170;FAP170"	"Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384];Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384];Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre02.g142607	GMM:29.5.3	"protein.degradation.cysteine protease"	Chloroplast	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"		"g2782.t1;Cre15.g645400.t1.1;Cre15.g645400.t1.2"	SENP2	
+Cre02.g095077			Chloroplast				"Cre11.g471550.t1.2;g1851.t1;Cre11.g471550.t1.1"		
+Cre02.g107700			"Secretory pathway"	GO:0005515	"protein binding"		g2208.t1		
+Cre02.g143167							"Cre36.g784400.t1.1;g2818.t1;Cre36.g784400.t1.2"		
+Cre02.g080000			"Secretory pathway"						
+Cre02.g114500	"GMM:29.3.99;GMM:26.13"	"protein.targeting.unknown;misc.acid and other phosphatases"		"GO:0016791;GO:0008152"	"phosphatase activity;metabolic process"		"g2364.t1;Cre02.g114500.t1.1;g2364.t1;Cre02.g114500.t1.1;Cre02.g114500.t1.1;g2364.t1;g2364.t1;Cre02.g114500.t1.1;g2364.t1;Cre02.g114500.t1.1;g2364.t1;Cre02.g114500.t1.1"		
+Cre02.g085950							"Cre02.g085950.t1.1;g1591.t1"		
+Cre02.g076200	"GMM:29.5.7;GMM:29.5"	"protein.degradation.metalloprotease;protein.degradation"		"GO:0008270;GO:0008237;GO:0006508"	"zinc ion binding;metallopeptidase activity;proteolysis"		"g1367.t1;g1367.t1;g1367.t1"		
+Cre02.g100450	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG20	"CYG20;g2045.t1"		"similar to guanylate cyclase 1 (GCYB2) from Homo sapiens; closely related to nearby CYG22"
+Cre02.g097200						SRR14	"g1975.t1;SRR14"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912)"
+Cre02.g143067									
+Cre02.g095098							"Cre11.g472350.t1.2;g1872.t1;Cre11.g472350.t1.1"		
+Cre02.g095000	GMM:11.9.3.4	"lipid metabolism.lipid degradation.lysophospholipases.phospholipase A2"	"Secretory pathway"	"GO:0016042;GO:0005509;GO:0004623"	"lipid catabolic process;calcium ion binding;phospholipase A2 activity"	PLA2	"PLA2;g1928.t1;Cre02.g095000.t1.1;g1928.t1;PLA2;Cre02.g095000.t1.1"	"PLA2;PLA2"	"phospholipase A2 protein, similar to Arabidopsis thaliana At4g29460;phospholipase A2 protein, similar to Arabidopsis thaliana At4g29460"
+Cre02.g115250	"GMM:33.99;GMM:31.6.1.1;GMM:31.1;GMM:30.5;GMM:27.3.55;GMM:27.3.51;GMM:27.1;GMM:20.2.2"	"development.unspecified;cell.motility.eukaryotes.basal bodies;cell.organisation;signalling.G-proteins;RNA.regulation of transcription.HDA;RNA.regulation of transcription.general transcription, TBP-binding protein;RNA.processing;stress.abiotic.cold"		GO:0005515	"protein binding"	POC1	"g2382.t1;POC1;POC1;g2382.t1"	"POC1;POC1"	"Found in basal body proteome; FABP prototypical cilia""-class protein, in human centrosomes; Related to WDR51 protein in humans;"";Found in basal body proteome; FABP prototypical cilia""-class protein, in human centrosomes; Related to WDR51 protein in humans;"""
+Cre02.g096900	GMM:28.1	"DNA.synthesis/chromatin structure"	"Secretory pathway"	"GO:0006388;GO:0000213"	"tRNA splicing, via endonucleolytic cleavage and ligation;tRNA-intron endonuclease activity"	TIE1	"TIE1;Cre02.g096900.t1.1;g1969.t1;g1969.t1;Cre02.g096900.t1.1;TIE1"	"TIE1;TIE1"	
+Cre02.g141150			Chloroplast				"g2667.t1;g2667.t1;g2667.t1;g2667.t1"		
+Cre02.g119751			Chloroplast				g2487.t1		
+Cre02.g141546									
+Cre02.g115550			Chloroplast				"Cre02.g115550.t1.1;g2390.t1;g2390.t1;Cre02.g115550.t1.1"		
+Cre02.g113350				"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g2334.t1;Cre02.g113350.t1.1"		
+Cre02.g095101	GMM:27.4	"RNA.RNA binding"	Mitochondrion	GO:0003676	"nucleic acid binding"		"g1874.t1;Cre11.g472450.t1.1;Cre11.g472450.t1.2;Cre11.g472450.t1.1;Cre11.g472450.t1.2;g1874.t1"		
+Cre02.g107350	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"	Mitochondrion	"GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777"	"dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity"	DHC4	"g2201.t1;g2201.t1;g2201.t1"	"DHC4;DHC4;DHC4"	"Dynein heavy chain 4, novel minor type dynein (monomeric); inner arm dynein heavy chain; has not been identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]; novel minor type found exclusively at the flagellar basal portion; linked to DHC5;Dynein heavy chain 4, novel minor type dynein (monomeric); inner arm dynein heavy chain; has not been identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]; novel minor type found exclusively at the flagellar basal portion; linked to DHC5;Dynein heavy chain 4, novel minor type dynein (monomeric); inner arm dynein heavy chain; has not been identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]; novel minor type found exclusively at the flagellar basal portion; linked to DHC5"
+Cre02.g143427							g2831.t1		
+Cre02.g114750	"GMM:30.3;GMM:3.3;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"CDKP6;Cre02.g114750.t1.1;g2371.t1;CDPK6;Cre02.g114750.t1.1;CDKP6;CDPK6;g2371.t1;CDKP6;Cre02.g114750.t1.1;g2371.t1;CDPK6"	"CDPK4;CDPK4;CDPK4"	"Identified as CrCDPK4 in [PMID: 23936117];Identified as CrCDPK4 in [PMID: 23936117];Identified as CrCDPK4 in [PMID: 23936117]"
+Cre02.g096000	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g1949.t1;g1949.t1"		
+Cre02.g144606									
+Cre02.g117900	"GMM:27.1.2;GMM:27.1.1;GMM:27.1"	"RNA.processing.RNA helicase;RNA.processing.splicing;RNA.processing"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL11	"MTR4;g2446.t1;HEL11"		"putative Mtr4p homolog, also called DOB1: Dead-box family ATP dependent helicase required for mRNA export from the nucleus; co-factor of the exosome complex, required for 3' end formation of 5.8S rRNA in Saccharomyces cerevisiae."
+Cre02.g113700	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0005515;GO:0003677"	"protein binding;DNA binding"		"g2344.t1;Cre02.g113700.t1.1"		
+Cre02.g141646							g2724.t1		
+Cre02.g095109			"Secretory pathway"	"GO:0016021;GO:0008643;GO:0005351;GO:0000139"	"integral component of membrane;carbohydrate transport;sugar:proton symporter activity;Golgi membrane"				
+Cre02.g115600			"Secretory pathway"	"GO:0055085;GO:0016020"	"transmembrane transport;membrane"	MSC7	"g2393.t1;g2393.t1"	"MSC7;MSC7"	"protein of unknown function with mechanosensitive ion channel (MSC) like domain;protein of unknown function with mechanosensitive ion channel (MSC) like domain"
+Cre02.g095300	"GMM:31.3;GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"cell.cycle;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g1935.t1;g1935.t1"		
+Cre02.g074950							"g1339.t1;g1339.t1;g1339.t1"		
+Cre02.g110600	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"	Chloroplast			DEG5	"g2270.t1;Cre02.g110600.t1.1"	DEG5	"DegP-type protease, thylakoid lumen; no PDZ domain"
+Cre02.g140921									
+Cre02.g143900			"Secretory pathway"				"g2603.t1;g2603.t1"		
+Cre02.g093150									
+Cre02.g081250			Chloroplast				"Cre02.g081250.t1.1;g1487.t1;Cre02.g081250.t1.1;g1487.t1;Cre02.g081250.t1.1;g1487.t1;g1487.t1;Cre02.g081250.t1.1"		
+Cre02.g078000			"Secretory pathway"				g1410.t1		
+Cre02.g117175							"Cre02.g117179.t1.2;g2426.t1"		
+Cre02.g102000	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	ARL5	"g2082.t1;ARL5;Cre02.g102000.t1.1"		"Expressed Protein. Similar to ArfC-type GTPase, involved in vesicle trafficking in the late secretory system.; ARF-like 5, a member of the ARF/Sar1 GTPase family. Conserved broadly in eukaryotes (human ortholog - ARL5) but exact function to be clarified."
+Cre02.g100750			"Secretory pathway"				"g2055.t1;Cre02.g100750.t1.1"		
+Cre02.g084950	GMM:23.4.2	"nucleotide metabolism.phosphotransfer and pyrophosphatases.guanylate kinase"	Chloroplast			GUK1	"Cre02.g084950.t1.1;g1569.t1"	GUK1	"Single domain guanylate kinase, erroneously called CYG71"
+Cre02.g141866									
+Cre02.g142586			Mitochondrion				g2781.t1		
+Cre02.g095092	GMM:16.1.4.1	"secondary metabolism.isoprenoids.carotenoids.phytoene synthase"	Chloroplast	"GO:0016740;GO:0009058"	"transferase activity;biosynthetic process"	PSY1	"PSY1;g1866.t1;Cre11.g472150.t1.2;Cre11.g472150.t1.1;Cre11.g472150.t1.2;Cre11.g472150.t1.1;g1866.t1;PSY1"	"PSY1;PSY1"	"Phytoene synthase (prephytoene-diphosphate synthase) (geranylgeranyl-diphosphate geranylgeranyltransferase) [PMID:15579683], putative chloroplast precursor. Tran et al. 2009 [PMID: 19066941] included this in a comparison of PSY genes in various organisms, MacCarthy [PMID:15579683];Phytoene synthase (prephytoene-diphosphate synthase) (geranylgeranyl-diphosphate geranylgeranyltransferase) [PMID:15579683], putative chloroplast precursor. Tran et al. 2009 [PMID: 19066941] included this in a comparison of PSY genes in various organisms, MacCarthy [PMID:15579683]"
+Cre02.g099850	GMM:8.1.1.1	"TCA / organic transformation.TCA.pyruvate DH.E1"		"GO:0030976;GO:0003824"	"thiamine pyrophosphate binding;catalytic activity"	PDC2	"PDC2;g2032.t1;g2032.t1;PDC2;g2032.t1;PDC2"	"PDC2;PDC2;PDC2"	"pyruvate dehydrogenase (EC 1.2.4.1), E1 component alpha subunit (ODPA, PDC2_E1a). The pyruvate dehydrogenase complex catalyzes the overall conversion of pyruvate to acetyl-CoA and CO(2). It contains multiple copies of three enzymatic components: pyruvate dehydrogenase (E1), dihydrolipoamide acetyltransferase (E2) and lipoamide dehydrogenase (E3) (By similarity). [CATALYTIC ACTIVITY] Pyruvate + [dihydrolipoyllysine-residue acetyltransferase] lipoyllysine = [dihydrolipoyllysine-residue acetyltransferase] S-a;pyruvate dehydrogenase (EC 1.2.4.1), E1 component alpha subunit (ODPA, PDC2_E1a). The pyruvate dehydrogenase complex catalyzes the overall conversion of pyruvate to acetyl-CoA and CO(2). It contains multiple copies of three enzymatic components: pyruvate dehydrogenase (E1), dihydrolipoamide acetyltransferase (E2) and lipoamide dehydrogenase (E3) (By similarity). [CATALYTIC ACTIVITY] Pyruvate + [dihydrolipoyllysine-residue acetyltransferase] lipoyllysine = [dihydrolipoyllysine-residue acetyltransferase] S-a;pyruvate dehydrogenase (EC 1.2.4.1), E1 component alpha subunit (ODPA, PDC2_E1a). The pyruvate dehydrogenase complex catalyzes the overall conversion of pyruvate to acetyl-CoA and CO(2). It contains multiple copies of three enzymatic components: pyruvate dehydrogenase (E1), dihydrolipoamide acetyltransferase (E2) and lipoamide dehydrogenase (E3) (By similarity). [CATALYTIC ACTIVITY] Pyruvate + [dihydrolipoyllysine-residue acetyltransferase] lipoyllysine = [dihydrolipoyllysine-residue acetyltransferase] S-a"
+Cre02.g143027			Mitochondrion						
+Cre02.g104650	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g2141.t1;g2141.t1;g2141.t1;g2141.t1;g2141.t1"		
+Cre02.g111450	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF4	"g2293.t1;TEF4;Cre02.g111450.t1.1"	TEF4	"Rhodanese-like protein, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]"
+Cre02.g142426									
+Cre02.g083550	GMM:17.1.1.1.1	"hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase"	Chloroplast	"GO:0071949;GO:0016705;GO:0016117"	"FAD binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;carotenoid biosynthetic process"		"g1538.t1;g1538.t1;g1538.t1;g1538.t1"		
+Cre02.g146950	GMM:29.4	"protein.postranslational modification"		"GO:0016788;GO:0016787;GO:0006397"	"hydrolase activity, acting on ester bonds;hydrolase activity;mRNA processing"	DBR1	"g2521.t1;DBR1"	DBR1	"RNA lariat debranching enzyme, the first step in the degradation of lariat introns produced during splicing; also involved in discarding unproductive lariat intron-exon2 intermediates if the second splicing step is blocked, and in the processing of intron-encoded snoRNAs; S. cerevisiae homolog is required for efficient Ty1 transposition"
+Cre02.g145902									
+Cre02.g112200	GMM:33.99	development.unspecified		"GO:0055085;GO:0016020;GO:0006811;GO:0005515;GO:0005216"	"transmembrane transport;membrane;ion transport;protein binding;ion channel activity"		"g2309.t1;Cre02.g112200.t1.1;Cre02.g112200.t1.1;g2309.t1;Cre02.g112200.t1.1;g2309.t1;Cre02.g112200.t1.1;g2309.t1;g2309.t1;Cre02.g112200.t1.1;Cre02.g112200.t1.1;g2309.t1"	"TRP22;TRP22;TRP22;TRP22;TRP22;TRP22"	
+Cre02.g073350	GMM:11.9.3.2	"lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase"							
+Cre02.g093550	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG44	"CYG44;g1766.t1;g1766.t1;CYG44;g1766.t1;CYG44;g1766.t1;CYG44;CYG44;g1766.t1;g1766.t1;CYG44"		"C terminal domain similar to Guanylyl Cyclase family member (gcy-4) [Caenorhabditis elegans]; null-allele passenger mutation was isolated (PMID 29743196);C terminal domain similar to Guanylyl Cyclase family member (gcy-4) [Caenorhabditis elegans]; null-allele passenger mutation was isolated (PMID 29743196);C terminal domain similar to Guanylyl Cyclase family member (gcy-4) [Caenorhabditis elegans]; null-allele passenger mutation was isolated (PMID 29743196);C terminal domain similar to Guanylyl Cyclase family member (gcy-4) [Caenorhabditis elegans]; null-allele passenger mutation was isolated (PMID 29743196);C terminal domain similar to Guanylyl Cyclase family member (gcy-4) [Caenorhabditis elegans]; null-allele passenger mutation was isolated (PMID 29743196);C terminal domain similar to Guanylyl Cyclase family member (gcy-4) [Caenorhabditis elegans]; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre02.g084176				GO:0003677	"DNA binding"		g1552.t1		
+Cre02.g073400	GMM:29.5	protein.degradation	Mitochondrion	"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"		"g1299.t1;g1299.t1;g1299.t1;g1299.t1"		
+Cre02.g114400	GMM:18.11	"Co-factor and vitamine metabolism.lipoic acid"	Chloroplast	"GO:0051539;GO:0051536;GO:0016992;GO:0009107;GO:0003824"	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;lipoate synthase activity;lipoate biosynthetic process;catalytic activity"	LAS2	"LAS2;LIPA2;Cre02.g114400.t1.1;g2362.t1"	LAS2	"catalytic/ iron ion binding; lipoate synthase; lipoic acid synthase"
+Cre02.g083050	GMM:31.1	cell.organisation					g1526.t1		
+Cre02.g082750			Chloroplast	"GO:0016020;GO:0015979;GO:0009523"	"membrane;photosynthesis;photosystem II"	PSBX	"g1518.t1;Cre02.g082750.t1.1"	PSBX1	"Encoding a 4.1 kDa subunit for PS2 with a single trans-membrane helix [PMID: 16143838]. Gene PSBX2 (Cre02.g082852) is almost identical"
+Cre02.g119550	GMM:1.1.99	PS.lightreaction.unspecified				NIP1	"NIP1;Cre02.g119550.t1.1;g2482.t1"	NIP1	"Present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018] but TargetP predicts mitochondrial localization; Volvox homolog NipA is NaCl-inducible [PMID: 17184518]"
+Cre02.g097900	GMM:13.1.1.2.1	"amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase"	Chloroplast	"GO:0030170;GO:0009058;GO:0008483;GO:0006520"	"pyridoxal phosphate binding;biosynthetic process;transaminase activity;cellular amino acid metabolic process"	AST3	"g1991.t1;Cre02.g097900.t1.1;AST3"	AST3	"Putative aspartate aminotransferase (EC 2.6.1.1); predicted by Target-P as mitochondrial; predicted as plastidic by homology"
+Cre02.g076750	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Chloroplast			NUOAF1	"g1381.t1;CIA30;NUOAF1"	NUOFAF1	"Similar to Complex I intermediate-associated CIA30 protein; mitochondrial; Ortholog to NDUFAF1 in Homo sapiens"
+Cre02.g117500	GMM:2.2.1.4	"major CHO metabolism.degradation.sucrose.hexokinase"	"Secretory pathway"	"GO:0046835;GO:0016773;GO:0005975;GO:0005536;GO:0005524;GO:0004396;GO:0001678"	"carbohydrate phosphorylation;phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process;glucose binding;ATP binding;hexokinase activity;cellular glucose homeostasis"	HXK1	"HXK1;Cre02.g117500.t1.1;g2436.t1"	HXK1	"hexokinase; catalyses the ATP-dependent conversion of aldo- and keto-hexose sugars to the hexose-6-phosphate (H6P)"
+Cre02.g078350			Chloroplast				"g1419.t1;Cre02.g078350.t1.1;g1419.t1;Cre02.g078350.t1.1;Cre02.g078350.t1.1;g1419.t1"		
+Cre02.g098550	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g2004.t1;g2004.t1;g2004.t1;g2004.t1"		
+Cre02.g141366							"Cre15.g642350.t1.2;Cre15.g642350.t1.1;g2706.t1"		
+Cre02.g142900							"g2628.t1;Cre02.g142900.t1.1"		
+Cre02.g110263						CSB15			
+Cre02.g144750	GMM:34.7	transport.phosphate		"GO:0016020;GO:0006817;GO:0005315"	"membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity"	PTB4	"g2575.t1;PTB4;PTB4;g2575.t1;g2575.t1;PTB4"	"PTB4;PTB4;PTB4"	"Putative phosphate transporter, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters; present in a cluster of four highly related PTB family members on scaffold 24, including PTB9, PTB12 and PTB5.;Putative phosphate transporter, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters; present in a cluster of four highly related PTB family members on scaffold 24, including PTB9, PTB12 and PTB5.;Putative phosphate transporter, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters; present in a cluster of four highly related PTB family members on scaffold 24, including PTB9, PTB12 and PTB5."
+Cre02.g076600	GMM:29.2.2	"protein.synthesis.ribosome biogenesis"	Chloroplast	GO:0004045	"aminoacyl-tRNA hydrolase activity"		"Cre02.g076600.t1.1;g1376.t1"		"Peptidyl-tRNA hydrolases acts as rescue factors if translation is stalled and hydrolyze the ester bond within peptidyl-tRNA complexes"
+Cre02.g079700	GMM:23.1.1.2	"nucleotide metabolism.synthesis.pyrimidine.aspartate transcarbamoylase"	Chloroplast	"GO:0016743;GO:0016597;GO:0006520"	"carboxyl- or carbamoyltransferase activity;amino acid binding;cellular amino acid metabolic process"	PYR2	"PYR2;g1456.t1;Cre02.g079700.t1.1"	PYR2	"Aspartate carbamoyltransferase (PYRB)[EC:2.1.3.2]"
+Cre02.g117050	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2423.t1;g2423.t1;g2423.t1;g2423.t1;g2423.t1"		"A protein kinase that has FhlA domain (GAF domain) which is a possible chromatin binding domain); null-allele mutant was isolated (PMID 29743196);A protein kinase that has FhlA domain (GAF domain) which is a possible chromatin binding domain); null-allele mutant was isolated (PMID 29743196);A protein kinase that has FhlA domain (GAF domain) which is a possible chromatin binding domain); null-allele mutant was isolated (PMID 29743196);A protein kinase that has FhlA domain (GAF domain) which is a possible chromatin binding domain); null-allele mutant was isolated (PMID 29743196);A protein kinase that has FhlA domain (GAF domain) which is a possible chromatin binding domain); null-allele mutant was isolated (PMID 29743196)"
+Cre02.g142366			"Secretory pathway"				g2766.t1		
+Cre02.g099300						ANK21	"g2020.t1;Cre02.g099300.t1.1;ANK21"		"protein of unknown function with ankyrin repeats"
+Cre02.g077401							"g1395.t1;Cre02.g077400.t1.3;Cre02.g077400.t1.3;g1395.t1"		
+Cre02.g111300	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Mitochondrion				"g2287.t2;g2287.t2;g2287.t2"		
+Cre02.g073950	GMM:17.1.1	"hormone metabolism.abscisic acid.synthesis-degradation"	Mitochondrion						
+Cre02.g074737			Chloroplast				"g1334.t1;Cre02.g074737.t1.1"		
+Cre02.g102650	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g2096.t1;g2096.t1;g2096.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g104550	GMM:27.2	RNA.transcription		"GO:0016593;GO:0016570;GO:0006368"	"Cdc73/Paf1 complex;histone modification;transcription elongation from RNA polymerase II promoter"		"g2139.t1;Cre02.g104550.t1.1"		"Paf1 complex component, ChromDB PAFE341; the Paf1p complex is a large complex that binds to and modulates the activity of RNA polymerase II"
+Cre02.g109600	GMM:3.4.5	"minor CHO metabolism.myo-inositol.inositol phosphatase"	Chloroplast	GO:0046854	"phosphatidylinositol phosphorylation"		"IPP3;INM1;g2248.t1;Cre02.g109600.t1.1"		"putative homoserine dehydrogenase (EC 1.1.1.3); similar to HSDH portion of Arabidopsis bifunctional aspartate kinase/homoserine dehydrogenase (GenBank BAC43372), but lacking the aspartate kinase portion; 5' end overlaps predicted 3' UTR of Chlamydomonas inositol monophosphatase (GenBank AAW82030); organelle targeting (mitochondria) predicted by Target-P"
+Cre02.g142026									
+Cre02.g103250	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP5	"MRP5;g2109.t1;MRP5;g2109.t1;g2109.t1;MRP5;MRP5;g2109.t1;MRP5;g2109.t1"		"putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683;putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683;putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683;putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683;putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683"
+Cre02.g142947						CSU1			
+Cre02.g105650	GMM:1.1.1.3	"PS.lightreaction.photosystem II.biogenesis"	Chloroplast.Stroma.Thylakoid.Membrane			LPA2	"g2166.t1;Cre02.g105650.t1.1"	LPA2	"PSII biogenesis protein with transmembrane domain; homologous to Arabidopsis LPA2, but the Arabidopsis paper [PMID: 17601825] was retracted; lpa2 mutant in C.reinhardtii grows more slowly in low light, is hypersensitive to high light, and exhibits aberrant structures in thylakoid membrane stacks"
+Cre02.g078400							"g1420.t1;g1420.t1;g1420.t1"		
+Cre02.g098750	GMM:34.15	transport.potassium	Mitochondrion	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"		"g2008.t1;g2008.t1;g2008.t1"		
+Cre02.g075900	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g1360.t1;STK9;SNRK2.3;STPK9;CKIN2.3;CKIN2.3;STPK9;SNRK2.3;STK9;g1360.t1;STPK9;CKIN2.3;SNRK2.3;g1360.t1;STK9;SNRK2.3;CKIN2.3;STPK9;STK9;g1360.t1;g1360.t1;STK9;STPK9;CKIN2.3;SNRK2.3"	"SNRK2C;SNRK2C;SNRK2C;SNRK2C;SNRK2C"	"Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses"
+Cre02.g095106	"GMM:11.3.3;GMM:11.3"	"lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase;lipid metabolism.phospholipid synthesis"		"GO:0016780;GO:0016020;GO:0008654"	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"		"Cre11.g472700.t1.1;Cre11.g472700.t1.2;g1879.t1"	PGP1	"Phosphatidylglycerolphosphate synthase (PtdGro synthesis)"
+Cre02.g084700							"g1563.t1;Cre02.g084700.t1.1"		
+Cre02.g097334							g1981.t2		
+Cre02.g101635			Mitochondrion				"g2073.t1;Cre02.g101635.t1.1"		
+Cre02.g078476			Mitochondrion						
+Cre02.g075000							"g1341.t3;g1341.t3;g1341.t3;g1341.t3"		
+Cre02.g095116							"g1889.t1;Cre11.g473050.t1.1;g1889.t1;Cre11.g473050.t1.1;g1889.t1;Cre11.g473050.t1.1"		
+Cre02.g109800			Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	CPLD32	"g2253.t1;FAO3;g2253.t1;FAO3"	"CPLD32;CPLD32"	"Conserved FAD dependent oxidoreductase; predicted targeting to mitochondrion for Arabidopsis homologue. Previously annotated as CPLD32;Conserved FAD dependent oxidoreductase; predicted targeting to mitochondrion for Arabidopsis homologue. Previously annotated as CPLD32"
+Cre02.g115100			Chloroplast	GO:0055114	"oxidation-reduction process"		"g2378.t1;g2378.t1"		
+Cre02.g081600	GMM:26.7	"misc.oxidases - copper, flavone etc"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH8	"P4H8;g1494.t1;PHX3"	PFH8	"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. [PMID: 17220203] as v2 C_50128; contains C-terminal ShK domain"
+Cre02.g100800				GO:0005515	"protein binding"		"g2056.t1;g2056.t1;g2056.t1"		
+Cre02.g087324							g1621.t1		
+Cre02.g074150	"GMM:31.9;GMM:17.4.2"	"cell.eyespot;hormone metabolism.cytokinin.signal transduction"		"GO:0035556;GO:0016849;GO:0016020;GO:0009190;GO:0007165;GO:0000160;GO:0000155"	"intracellular signal transduction;phosphorus-oxygen lyase activity;membrane;cyclic nucleotide biosynthetic process;signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity"	COP5	"COP5;g1315.t2;COP5;g1315.t2;COP5;g1315.t2;g1315.t2;COP5"	"HKR1;HKR1;HKR1;HKR1"	"Also known as Chlamyopsin 5; is bimodally switched by ultraviolet and blue light; contains bacteriorhodopsin, Histine kinase, response regulator receiver and Guanylate/adenylate cyclase catalytic domains;Also known as Chlamyopsin 5; is bimodally switched by ultraviolet and blue light; contains bacteriorhodopsin, Histine kinase, response regulator receiver and Guanylate/adenylate cyclase catalytic domains;Also known as Chlamyopsin 5; is bimodally switched by ultraviolet and blue light; contains bacteriorhodopsin, Histine kinase, response regulator receiver and Guanylate/adenylate cyclase catalytic domains;Also known as Chlamyopsin 5; is bimodally switched by ultraviolet and blue light; contains bacteriorhodopsin, Histine kinase, response regulator receiver and Guanylate/adenylate cyclase catalytic domains"
+Cre02.g147301							"g2515.t1;Cre02.g147250.t1.3;g2515.t1;Cre02.g147250.t1.3"		
+Cre02.g109250	GMM:29.2.2.3.3	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases"	Chloroplast	"GO:0051536;GO:0008173;GO:0006364;GO:0005737;GO:0003824"	"iron-sulfur cluster binding;RNA methyltransferase activity;rRNA processing;cytoplasm;catalytic activity"		"g2240.t1;g2240.t1"		
+Cre02.g141126									
+Cre02.g073250				GO:0006351	"transcription, DNA-templated"		g1296.t1		
+Cre02.g083850			"Secretory pathway"				"g1544.t1;g1544.t1;g1544.t1;g1544.t1"		
+Cre02.g127237			Mitochondrion						
+Cre02.g145231	"GMM:27.3.99;GMM:11.1.20"	"RNA.regulation of transcription.unclassified;lipid metabolism.FA synthesis and FA elongation.MCD"					"g2563.t1;Cre02.g145231.t1.1"		
+Cre02.g095132									
+Cre02.g112800	GMM:31.1	cell.organisation					g2323.t1		
+Cre02.g102500	"GMM:31.2;GMM:28.2"	"cell.division;DNA.repair"	"Secretory pathway"			RAD51C	"g2093.t1;RAD51C;RAD51C;g2093.t1;RAD51C;g2093.t1"	"RAD51C;RAD51C;RAD51C"	"similar to RAD51 which forms nucleoprotein filament for strand invasion; homologous to RecA ATPase;similar to RAD51 which forms nucleoprotein filament for strand invasion; homologous to RecA ATPase;similar to RAD51 which forms nucleoprotein filament for strand invasion; homologous to RecA ATPase"
+Cre02.g099601			Mitochondrion	GO:0003677	"DNA binding"		g2027.t1		
+Cre02.g081450			Mitochondrion			CGL123	"g1491.t1;Cre02.g081450.t1.1;bL25m;CGL123"	MRPL25	"Conserved in the Green Lineage"
+Cre02.g118250	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		GO:0005515	"protein binding"	SWB1	"SWB1;g2454.t1"		"Contains two SWIB domains, conserved in yeast and mammals, present in ATP-dependent chromatin-remodelling proteins that facilitate transcription activation. Similar to Arabidopsis SWIB complex BAF60b domain-containing protein encoded by F13F21.4."
+Cre02.g143850				GO:0005515	"protein binding"		g2606.t1		
+Cre02.g095069	GMM:21.5	redox.peroxiredoxin		"GO:0055114;GO:0016491;GO:0016209"	"oxidation-reduction process;oxidoreductase activity;antioxidant activity"	prx	"Cre11.g471150.t1.1;g1843.t1;Cre11.g471150.t1.2"		
+Cre02.g118500	GMM:31.4	"cell.vesicle transport"		"GO:0030117;GO:0016192;GO:0006886;GO:0005515;GO:0005198"	"membrane coat;vesicle-mediated transport;intracellular protein transport;protein binding;structural molecule activity"	COPB2	"COPB2;g2459.t1"	COPB2	"Expressed Protein. Beta'-COP (Beta-prime). Subunit of COP-I complex involved in vesicle trafficking."
+Cre02.g142647									
+Cre02.g143487									
+Cre02.g142601			"Secretory pathway"				g2636.t1		
+Cre02.g085701				"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"Cre02.g085700.t1.3;g1586.t1"		
+Cre02.g078777	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC16	"PHC16;Cre02.g078800.t1.2;g1430.t1"		"pherophorin-C16 (PHC16) [PMID: 16367971]; similar to extracellular matrix protein (cell wall protein) pherophorin-C1 [Genbank entry DQ196107], which belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain"
+Cre02.g089100	GMM:31.4	"cell.vesicle transport"				COPD1	"COPD1;Cre02.g089100.t1.1;g1661.t1;COPD1;g1661.t1;Cre02.g089100.t1.1;g1661.t1;COPD1;Cre02.g089100.t1.1;g1661.t1;Cre02.g089100.t1.1;COPD1;g1661.t1;Cre02.g089100.t1.1;COPD1"	"COPD1;COPD1;COPD1;COPD1;COPD1"	"Expressed Protein. Delta-COP. Subunit of COP-I protein complex.;Expressed Protein. Delta-COP. Subunit of COP-I protein complex.;Expressed Protein. Delta-COP. Subunit of COP-I protein complex.;Expressed Protein. Delta-COP. Subunit of COP-I protein complex.;Expressed Protein. Delta-COP. Subunit of COP-I protein complex."
+Cre02.g089000							g1659.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre02.g088400	GMM:29.5.5	"protein.degradation.serine protease"	Mitochondrion	"GO:0006508;GO:0005515;GO:0004252"	"proteolysis;protein binding;serine-type endopeptidase activity"	DEG1A	"Cre02.g088400.t1.1;g1646.t1;DEG1A;DEG1"	DEG1A	"serine protease, trypsin family, DegP type (HtrA) (protease Do) most similar to At3g27925 (DegP1) and to degP5, localized in thylakoid membrane, lumen side [PMID: 15137941]; expressed in Chlamy; probably results from a recent duplication of DEG1 gene which yielded also divergent DEG1B; one C-terminal PDZ domain, probably involved in substrate recognition and protease activation [PMID: 15137941], no DegP C-term domain"
+Cre02.g142186	GMM:31.2	cell.division	Chloroplast	GO:0003924	"GTPase activity"	FTSZ2	"Cre15.g646150.t1.2;g2757.t1;Cre15.g646150.t1.1;FTSZ2;g2757.t1;Cre15.g646150.t1.1;Cre15.g646150.t1.2;FTSZ2"	"FTSZ2;FTSZ2"	"Transcription levels were characterized by Adams et al. 2008 [PMID: 18270733];Transcription levels were characterized by Adams et al. 2008 [PMID: 18270733]"
+Cre02.g090650						SEC20	"g1694.t1;g1694.t1;g1694.t1;g1694.t1;g1694.t1"	"SEC20;SEC20;SEC20;SEC20;SEC20"	"Hypothetical Conserved Protein. Similar to Sec20 Qb-SNARE, involved in Golgi-to-ER trafficking;Hypothetical Conserved Protein. Similar to Sec20 Qb-SNARE, involved in Golgi-to-ER trafficking;Hypothetical Conserved Protein. Similar to Sec20 Qb-SNARE, involved in Golgi-to-ER trafficking;Hypothetical Conserved Protein. Similar to Sec20 Qb-SNARE, involved in Golgi-to-ER trafficking;Hypothetical Conserved Protein. Similar to Sec20 Qb-SNARE, involved in Golgi-to-ER trafficking"
+Cre02.g083950	GMM:29.2.1.1.1.1.83	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.PSRP3"	Chloroplast	"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	PSRP3	"cS23;g1547.t1"	PSRP3	"Chloroplast small ribosomal subunit protein Plastid-Specific Ribosomal Protein 3. This is not the same as plastid ribosomal protein S3, which is encoded by the chloroplast rps3 gene in C. reinhardtii. It was postulated to name the protein cS23"
+Cre02.g144250			"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP769A1	"CYP13;g2588.t1;CYP13;g2588.t1"	"CYP769A1;CYP769A1"	"cytochrome P450, most like CYP4 family sequences in animals;cytochrome P450, most like CYP4 family sequences in animals"
+Cre02.g091567							g1715.t1		
+Cre02.g085550			Mitochondrion				"g1583.t1;Cre02.g085550.t1.1"		
+Cre02.g111000			"Secretory pathway"			RRA1	"CGL9;g2279.t1;Cre02.g111000.t1.1"	RRA1	"Arabinosyl transferase on mono-arabinosylated hydroxyproline; GT77 family protein, Conserved in the Green Lineage"
+Cre02.g142605			Chloroplast				g2639.t1		
+Cre02.g102900	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g2102.t1		
+Cre02.g086550	GMM:29.2.2.3.3	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases"	Chloroplast	"GO:0051536;GO:0008173;GO:0006364;GO:0005737;GO:0003824"	"iron-sulfur cluster binding;RNA methyltransferase activity;rRNA processing;cytoplasm;catalytic activity"	CGL122	"g1606.t1;g1606.t1"	"CGL122;CGL122"	"Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre02.g143600			Mitochondrion			FEE1	"g2611.t1;FEE1"	FEE1	"Hydrolyzes feruloyl-polyssaccharide bond in the presence of water. Ferulate/ferulic acid,a derivative of trans-cinnamic acid, is an organic compound that is an abundant phenolic phytochemical found in plant cell walls"
+Cre02.g119450			Chloroplast				"Cre02.g119450.t1.1;g2478.t1;Cre02.g119450.t1.1;g2478.t1;Cre02.g119450.t1.1;g2478.t1"		
+Cre02.g100500	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG22	"g2046.t1;CYG22"		"similar to guanylate cyclase 1 (GCYB2) from Homo sapiens; closely related to nearby CYG20"
+Cre02.g097000	"GMM:23.2.1.4;GMM:23.2"	"nucleotide metabolism.degradation.pyrimidine.dihydropyrimidinase;nucleotide metabolism.degradation"	"Secretory pathway"	GO:0016787	"hydrolase activity"	DHP1	"Cre02.g097000.t1.1;g1971.t1;DHP1;DHP1;Cre02.g097000.t1.1;g1971.t1"	"DHP1;DHP1"	"Dihydropyrimidinase/dihydropyrimidine amidohydrolase/hydantoinase;Dihydropyrimidinase/dihydropyrimidine amidohydrolase/hydantoinase"
+Cre02.g101300	GMM:34.12	transport.metal		GO:0005515	"protein binding"		"g2067.t1;Cre02.g101300.t1.1;g2067.t1;Cre02.g101300.t1.1"		
+Cre02.g107150			Chloroplast				"g2196.t1;g2196.t1;g2196.t1"		
+Cre02.g096150	GMM:21.6	"redox.dismutases and catalases"		"GO:0055114;GO:0046872;GO:0006801;GO:0004784"	"oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity"	MSD1	"Cre02.g096150.t1.1;g1952.t1;SODA;Cre02.g096150.t1.1;SODA;g1952.t1"	"MSD1;MSD1"	"Superoxide dismutase [Mn], mitochondrial precursor; the name MSD1 replaces the previous designation SodA.;Superoxide dismutase [Mn], mitochondrial precursor; the name MSD1 replaces the previous designation SodA."
+Cre02.g120100	GMM:1.3.2	"PS.calvin cycle.rubisco small subunit"	Chloroplast			RBCS1	"Cre02.g120100.t1.1;g2494.t1"	RBCS1	"Calvin-Benson-Bassham cycle enzyme"
+Cre02.g119100				"GO:0016787;GO:0008152"	"hydrolase activity;metabolic process"	CER2	"CER2;g2471.t1;Cre02.g119100.t1.1;Cre02.g119100.t1.1;g2471.t1;CER2"		"Contains esterase/lipase/thioesterase domain and predicted N-terminal signal peptide. Similar to an Arabidopsis At1g26120 hypothetical protein with a carboxylesterase domain; closely related to nearby CER1;Contains esterase/lipase/thioesterase domain and predicted N-terminal signal peptide. Similar to an Arabidopsis At1g26120 hypothetical protein with a carboxylesterase domain; closely related to nearby CER1"
+Cre02.g076550			Mitochondrion				"g1375.t1;Cre02.g076550.t1.1"		
+Cre02.g112266			Chloroplast				"g2311.t1;Cre02.g112266.t1.1;g2311.t1;Cre02.g112266.t1.1"		
+Cre02.g087050			Chloroplast				"g1615.t1;g1615.t1"		
+Cre02.g098950	GMM:31.4	"cell.vesicle transport"		GO:0005515	"protein binding"	SYP72	"Cre02.g098950.t1.1;g2012.t1"	SYP72	"Expressed Protein. Similar to SYP7 Qc-SNAREs, involved in endosomal/cell plate trafficking; part of 2-member gene family of tandemly repeated genes (SYP71 SYP2)"
+Cre02.g074850	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g1337.t1;g1337.t1"		
+Cre02.g103950						MIA1	"g2126.t1;FAP100;Cre02.g103950.t1.1"	MIA1	"Conserved Flagellar Associated Protein 100"
+Cre02.g145500	"GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK24	"PTK24;Cre02.g145500.t1.1;g2555.t1"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre02.g142046			Mitochondrion						
+Cre02.g096100			Chloroplast				"g1951.t1;Cre02.g096100.t1.1"		
+Cre02.g119350			Mitochondrion				"TMG2;g2476.t1;Cre02.g119350.t1.1;g2476.t1;TMG2;Cre02.g119350.t1.1;g2476.t1;TMG2;Cre02.g119350.t1.1"		
+Cre02.g077100	GMM:21.2.2	"redox.ascorbate and glutathione.glutathione"	Chloroplast	"GO:0042398;GO:0004357"	"cellular modified amino acid biosynthetic process;glutamate-cysteine ligase activity"	GSH1	"GSH1;g1389.t1;Cre02.g077100.t1.1;Cre02.g077100.t1.1;g1389.t1;GSH1"	"GSH1;GSH1"	"First step in glutathione biosynthesis; chloroplastlocalized; Glutamate-cysteine ligase (Gamma-ECS) (GCS) [EC:6.3.2.2];First step in glutathione biosynthesis; chloroplastlocalized; Glutamate-cysteine ligase (Gamma-ECS) (GCS) [EC:6.3.2.2]"
+Cre02.g096250				GO:0071949	"FAD binding"	FMO9	"g1954.t1;FMO9;Cre02.g096250.t1.1;g1954.t1;Cre02.g096250.t1.1;FMO9"		"Flavin-containing monooxygenase. This family includes diverse enzymes that utilise FAD - 2-polyprenyl-6-methoxyphenol hydroxylase and related FAD-dependent oxidoreductases [Coenzyme metabolism/Energy production and conversion - this gene is about 2 kb aw;Flavin-containing monooxygenase. This family includes diverse enzymes that utilise FAD - 2-polyprenyl-6-methoxyphenol hydroxylase and related FAD-dependent oxidoreductases [Coenzyme metabolism/Energy production and conversion - this gene is about 2 kb aw"
+Cre02.g083354	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"		"Cre02.g083354.t1.1;g1534.t2;g1534.t2;Cre02.g083354.t1.1;Cre02.g083354.t1.1;g1534.t2;g1534.t2;Cre02.g083354.t1.1"		
+Cre02.g103550	GMM:29.2.3	protein.synthesis.initiation		"GO:0006413;GO:0003743;GO:0003723"	"translational initiation;translation initiation factor activity;RNA binding"	EIF1A	"g2116.t1;Cre02.g103550.t1.1"	EIF1A	"Putative Eukaryotic translation initiation factor 1A (eIF-1A)"
+Cre02.g091500							"g1713.t1;g1713.t1;g1713.t1;g1713.t1"		
+Cre02.g085257				GO:0016020	membrane	COP4	"Cre02.g085257.t1.1;g1575.t1;CSOB;COP4;g1575.t1;Cre02.g085257.t1.1;COP4;CSOB;g1575.t1;Cre02.g085257.t1.1;COP4;CSOB;CSOB;g1575.t1;Cre02.g085257.t1.1;COP4;COP4;CSOB;g1575.t1;Cre02.g085257.t1.1"	"CHR2;CHR2;CHR2;CHR2;CHR2"	"Also described as Chlamydomonas Sensory Opsin B and Chlamyopsin 4; light-switched cation channel; contains N-terminal rhodopsin domain and C-terminal membrane-associated domain; involved in phototaxis; trafficking into the eyespot and flagella is IFT-mediated;Also described as Chlamydomonas Sensory Opsin B and Chlamyopsin 4; light-switched cation channel; contains N-terminal rhodopsin domain and C-terminal membrane-associated domain; involved in phototaxis; trafficking into the eyespot and flagella is IFT-mediated;Also described as Chlamydomonas Sensory Opsin B and Chlamyopsin 4; light-switched cation channel; contains N-terminal rhodopsin domain and C-terminal membrane-associated domain; involved in phototaxis; trafficking into the eyespot and flagella is IFT-mediated;Also described as Chlamydomonas Sensory Opsin B and Chlamyopsin 4; light-switched cation channel; contains N-terminal rhodopsin domain and C-terminal membrane-associated domain; involved in phototaxis; trafficking into the eyespot and flagella is IFT-mediated;Also described as Chlamydomonas Sensory Opsin B and Chlamyopsin 4; light-switched cation channel; contains N-terminal rhodopsin domain and C-terminal membrane-associated domain; involved in phototaxis; trafficking into the eyespot and flagella is IFT-mediated"
+Cre02.g117676									
+Cre02.g114850			Mitochondrion	"GO:0016884;GO:0005515"	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor;protein binding"		"g2373.t1;Cre02.g114850.t1.1;g2373.t1;Cre02.g114850.t1.1;g2373.t1;Cre02.g114850.t1.1"		
+Cre02.g088300						CPK6	"CPK6;g1644.t1"		
+Cre02.g073800									
+Cre02.g095096			Mitochondrion				"Cre11.g472279.t1.1;g1870.t1;Cre11.g472279.t1.2;Cre11.g472279.t1.1;Cre11.g472279.t1.2;g1870.t1"		
+Cre02.g078100	"GMM:29.2.99;GMM:29.2.3"	"protein.synthesis.misc;protein.synthesis.initiation"		"GO:0005525;GO:0000049"	"GTP binding;tRNA binding"	EIF5B1	"EIF5Ba;g1412.t1;EIF5B1;EIF5Ba;EIF5B1;g1412.t1;EIF5Ba;g1412.t1;EIF5B1;g1412.t1;EIF5B1;EIF5Ba;g1412.t1;EIF5B1;EIF5Ba;EIF5Ba;g1412.t1;EIF5B1"	"EIF5B1;EIF5B1;EIF5B1;EIF5B1;EIF5B1;EIF5B1"	"Putative eukaryotic initiation factor, similar to human EIF5B;Putative eukaryotic initiation factor, similar to human EIF5B;Putative eukaryotic initiation factor, similar to human EIF5B;Putative eukaryotic initiation factor, similar to human EIF5B;Putative eukaryotic initiation factor, similar to human EIF5B;Putative eukaryotic initiation factor, similar to human EIF5B"
+Cre02.g142066				GO:0005515	"protein binding"		"Cre15.g646400.t1.1;g2751.t1;Cre15.g646400.t1.1;g2751.t1;g2751.t1;Cre15.g646400.t1.1;g2751.t1;Cre15.g646400.t1.1;Cre15.g646400.t1.1;g2751.t1"		
+Cre02.g091000			Chloroplast				"Cre02.g091000.t1.1;g1701.t1;Cre02.g091000.t1.1;g1701.t1"		
+Cre02.g080700	"GMM:29.6.2.3;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat"	"Secretory pathway"			BIP1	"g1475.t1;BIP1;Cre02.g080700.t1.1"	BIP1	"BIP1 is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; BIP1 contains an ER retention motif, an ER-targeting sequence and is most similar to ER-HSP70s from other organisms; it forms a cluster with ER-targeted chaperones HSP90B and BIP2 [PMID: 16143837]"
+Cre02.g111900			"Secretory pathway"				g2303.t2		
+Cre02.g141586	"GMM:27.3.54;GMM:27.3.42"	"RNA.regulation of transcription.histone acetyltransferases;RNA.regulation of transcription.bromodomain proteins"		GO:0005515	"protein binding"		g2721.t1		
+Cre02.g147800	"GMM:34.99;GMM:29.3.4.99;GMM:28.99"	"transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified"				SEC14	"g2505.t1;Cre02.g147800.t1.1"	SEC14	"similar to SEC14 cytosolic factor, necessary for vesicle budding from the Golgi complex (PMID: 9461221); there are two other highly similar proteins in Chlamydomonas (ID:105305 and 169226)"
+Cre02.g092451							"Cre02.g092450.t1.3;g1733.t1;Cre02.g092450.t1.3;g1733.t1"		
+Cre02.g118400	"GMM:31.1;GMM:27.2"	"cell.organisation;RNA.transcription"					"g2457.t1;g2457.t1"	"ZCP2;ZCP2"	"Contains PF02492, CobW nucleotide-binding domain;;Contains PF02492, CobW nucleotide-binding domain;"
+Cre02.g115200	"GMM:29.2.1.2.2.527;GMM:29.2.1.2.2.0527"	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L27A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L27A"				RPL27A	"RPL27a;g2380.t1;Cre02.g115200.t1.1;Cre02.g115200.t1.1;g2380.t1;RPL27a;RPL27a;g2380.t1;Cre02.g115200.t1.1"	"RPL27A;RPL27A;RPL27A"	"CytosoFound in basal body proteome; FABP prototypical cilia""-class protein, in human centrosomes;lic 60S large ribosomal subunit protein L27a"";CytosoFound in basal body proteome; FABP prototypical cilia""-class protein, in human centrosomes;lic 60S large ribosomal subunit protein L27a"";CytosoFound in basal body proteome; FABP prototypical cilia""-class protein, in human centrosomes;lic 60S large ribosomal subunit protein L27a"""
+Cre02.g098400			Chloroplast				g2001.t2		
+Cre02.g095048			Chloroplast				"Cre11.g470450.t1.1;g1823.t1"		
+Cre02.g141006									
+Cre02.g105050							g2153.t1		
+Cre02.g143367							"Cre38.g785200.t1.2;Cre38.g785200.t1.1;g2828.t1"		
+Cre02.g075994			Chloroplast						
+Cre02.g102400	"GMM:27.3.50;GMM:27.2"	"RNA.regulation of transcription.general transcription;RNA.transcription"		"GO:0008270;GO:0006351;GO:0003676"	"zinc ion binding;transcription, DNA-templated;nucleic acid binding"	RPC1	"RPC1;Cre02.g102400.t1.1;g2091.t1"	RPC1	"related to transcription factor S-II"
+Cre02.g116600	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG23	"Cre02.g116600.t1.1;g2413.t2;ELG23"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre02.g104900	GMM:3.5	"minor CHO metabolism.others"		GO:0005525	"GTP binding"	FAP204	"Cre02.g104900.t1.1;g2148.t1"	FAP204	"Flagellar Associated Protein similar to GTP-binding protein; found in the flagellar proteome"
+Cre02.g076100			Chloroplast				g1365.t1		
+Cre02.g073150			"Secretory pathway"				"Cre02.g073150.t1.1;g1293.t1"		
+Cre02.g079150							"g1445.t1;g1445.t1;g1445.t1"		
+Cre02.g090900						MCP9	"MCP9;g1699.t2;g1699.t2;MCP9"		"Related to MRS3/4;Related to MRS3/4"
+Cre02.g084100			Chloroplast				"g1550.t1;Cre02.g084100.t1.1"		
+Cre02.g110900							g2277.t1		
+Cre02.g110700							"g2272.t1;g2272.t1;g2272.t1;g2272.t1;g2272.t1;g2272.t1;g2272.t1;g2272.t1;g2272.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre02.g097100			Mitochondrion				"Cre02.g097100.t1.1;g1973.t1;g1973.t1;Cre02.g097100.t1.1;Cre02.g097100.t1.1;g1973.t1"		
+Cre02.g113652	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"					"g2343.t1;g2343.t1"		
+Cre02.g086250							"g1598.t1;g1598.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g102100			Mitochondrion				"SMM5;g2084.t1;g2084.t1;SMM5;g2084.t1;SMM5"		"conserved in Volvox, Ostreococcus and bacteria;conserved in Volvox, Ostreococcus and bacteria;conserved in Volvox, Ostreococcus and bacteria"
+Cre02.g087900	"GMM:30.6;GMM:30.2.8.2;GMM:30.2.20;GMM:30.2.17;GMM:30.2.1;GMM:29.4.1.57;GMM:29.4"	"signalling.MAP kinases;signalling.receptor kinases.leucine rich repeat VIII.type 2;signalling.receptor kinases.wheat LRK10 like;signalling.receptor kinases.DUF 26;signalling.receptor kinases.leucine rich repeat I;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre02.g095107	GMM:34.2	transport.sugars		"GO:0016021;GO:0008643;GO:0005351;GO:0000139"	"integral component of membrane;carbohydrate transport;sugar:proton symporter activity;Golgi membrane"		"g1880.t1;g1880.t1;g1880.t1"		
+Cre02.g142506									
+Cre02.g082100							"g1504.t1;g1504.t1"		
+Cre02.g142526									
+Cre02.g118550			Chloroplast				"g2460.t1;Cre02.g118550.t1.1"		
+Cre02.g108750	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre02.g108750.t1.1;g2229.t1"		
+Cre02.g107050	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"	Chloroplast	"GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777"	"dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity"	DHC5	"g2194.t1;g2194.t1;g2194.t1;g2194.t1;g2194.t1"	"DHC5;DHC5;DHC5;DHC5;DHC5"	"Flagellar inner arm dynein heavy chain, dynein b; identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]; linked to DHC4; null-allele mutant was isolated (PMID 29743196);Flagellar inner arm dynein heavy chain, dynein b; identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]; linked to DHC4; null-allele mutant was isolated (PMID 29743196);Flagellar inner arm dynein heavy chain, dynein b; identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]; linked to DHC4; null-allele mutant was isolated (PMID 29743196);Flagellar inner arm dynein heavy chain, dynein b; identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]; linked to DHC4; null-allele mutant was isolated (PMID 29743196);Flagellar inner arm dynein heavy chain, dynein b; identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]; linked to DHC4; null-allele mutant was isolated (PMID 29743196)"
+Cre02.g089800			Mitochondrion				"g1677.t1;g1677.t1"		
+Cre02.g095141				"GO:0071949;GO:0055114;GO:0016491"	"FAD binding;oxidation-reduction process;oxidoreductase activity"		"g1914.t1;Cre11.g474150.t1.1"		
+Cre02.g081176				"GO:0008173;GO:0006396;GO:0003723"	"RNA methyltransferase activity;RNA processing;RNA binding"		"g1485.t2;Cre02.g081176.t1.1;g1485.t2;Cre02.g081176.t1.1"		
+Cre02.g112850	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0071949	"FAD binding"	COQ6	"COQ6;g2324.t1"	COQ6	"putative mitochondrial flavin-dependent monoxygenase required for coenzyme Q biosynthesis [PMID: 12721307] (UbiH)"
+Cre02.g076950	GMM:29.5.1	protein.degradation.subtilases	"Secretory pathway"	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SUB4	"SUB4;g1385.t1;SUB4;g1385.t1"		
+Cre02.g141500			"Secretory pathway"				"g2660.t1;Cre02.g141500.t1.1"		
+Cre02.g113800							g2348.t1		
+Cre02.g092950			"Secretory pathway"				"Cre02.g092950.t1.1;g1744.t1;Cre02.g092950.t1.1;g1744.t1"		
+Cre02.g117150	GMM:29.5.9	"protein.degradation.AAA type"	Mitochondrion				"Cre02.g117150.t1.1;g2425.t1"		
+Cre02.g142200							"Cre02.g142200.t1.1;g2647.t1;GST5;Cre02.g142200.t1.1;GST5;g2647.t1;GST5;g2647.t1;Cre02.g142200.t1.1;GST5;g2647.t1;Cre02.g142200.t1.1"		
+Cre02.g095800				"GO:0006352;GO:0005669"	"DNA-templated transcription, initiation;transcription factor TFIID complex"		"g1945.t1;Cre02.g095800.t1.1"		
+Cre02.g111550	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2296.t1;g2296.t1;g2296.t1;g2296.t1"		
+Cre02.g090150	"GMM:18.4.4;GMM:18.4.2"	"Co-factor and vitamine metabolism.pantothenate.pantoate beta-alanine ligase (PANC, pantothenate synthetase);Co-factor and vitamine metabolism.pantothenate.3-methyl-2-oxobutanoate hydroxymethyltransferase (KPHMT,PANB)"		"GO:0015940;GO:0004592"	"pantothenate biosynthetic process;pantoate-beta-alanine ligase activity"	PAN3	"Cre02.g090150.t1.1;PANC1;PANC;g1684.t1;PAN3;CAF2"	PAN3	"Pantoate--beta-alanine ligase (AMP-forming), the last enzyme in the pantothenate biosynthesis pathway"
+Cre02.g079003			Mitochondrion	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"				
+Cre02.g098150	GMM:3.7	"minor CHO metabolism.sugar kinases"		"GO:0016773;GO:0005975"	"phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process"	XYK1	"Cre02.g098150.t1.1;XYK1;g1996.t1"	XYK1	
+Cre02.g095154									
+Cre02.g141250	"GMM:29.4;GMM:17.1.2"	"protein.postranslational modification;hormone metabolism.abscisic acid.signal transduction"		"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"PPP10;Cre02.g141250.t1.1;g2665.t1;g2665.t1;PPP10;Cre02.g141250.t1.1;g2665.t1;Cre02.g141250.t1.1;PPP10;Cre02.g141250.t1.1;PPP10;g2665.t1"		
+Cre02.g119650			Chloroplast			GNT3	"GNT3;g2484.t1"		"Acetylglucosaminyltransferase, probably a hydroxyproline N-acetylglucosaminyltransferase"
+Cre02.g114300			"Secretory pathway"				g2360.t1		
+Cre02.g101900			Mitochondrion	"GO:0008408;GO:0006139;GO:0003676"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding"	EXN6	"EXN6;g2080.t1"		
+Cre02.g082450			Mitochondrion				"Cre02.g082450.t1.1;g1511.t1;g1511.t1;Cre02.g082450.t1.1"		
+Cre02.g116250			Chloroplast				g2406.t1		
+Cre02.g118000	GMM:28.2	DNA.repair		"GO:0006281;GO:0003904"	"DNA repair;deoxyribodipyrimidine photo-lyase activity"	PHR2	"g2448.t1;Cre02.g118000.t1.1;PHR6"	PHR2	"CPD photolyase type II (Deoxyribodipyrimidine photolyase class 2)"
+Cre02.g141606	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"		"GO:0030286;GO:0007018;GO:0003777"	"dynein complex;microtubule-based movement;microtubule motor activity"	DHC9	"Cre15.g647450.t1.2;g2722.t1;Cre15.g647450.t1.1;DHC9;DHC9;Cre15.g647450.t1.1;Cre15.g647450.t1.2;g2722.t1;DHC9;g2722.t1;Cre15.g647450.t1.2;Cre15.g647450.t1.1;Cre15.g647450.t1.1;DHC9;g2722.t1;Cre15.g647450.t1.2;g2722.t1;Cre15.g647450.t1.2;DHC9;Cre15.g647450.t1.1;DHC9;Cre15.g647450.t1.1;g2722.t1;Cre15.g647450.t1.2;DHC9;Cre15.g647450.t1.1;g2722.t1;Cre15.g647450.t1.2;Cre15.g647450.t1.2;g2722.t1;DHC9;Cre15.g647450.t1.1;Cre15.g647450.t1.1;DHC9;g2722.t1;Cre15.g647450.t1.2;DHC9;Cre15.g647450.t1.1;g2722.t1;Cre15.g647450.t1.2;Cre15.g647450.t1.2;g2722.t1;Cre15.g647450.t1.1;DHC9;g2722.t1;Cre15.g647450.t1.2;Cre15.g647450.t1.1;DHC9;DHC9;Cre15.g647450.t1.1;Cre15.g647450.t1.2;g2722.t1;g2722.t1;Cre15.g647450.t1.2;DHC9;Cre15.g647450.t1.1;DHC9;g2722.t1;Cre15.g647450.t1.2;Cre15.g647450.t1.1;Cre15.g647450.t1.1;DHC9;g2722.t1;Cre15.g647450.t1.2"	"DHC9;DHC9;DHC9;DHC9;DHC9;DHC9;DHC9;DHC9;DHC9;DHC9;DHC9;DHC9;DHC9;DHC9;DHC9;DHC9"	"Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714];Flagellar inner arm dynein heavy chain, dynein c (monomeric). Identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]"
+Cre02.g115800							g2397.t1		
+Cre02.g112433			Chloroplast						
+Cre02.g142847									
+Cre02.g081150							"TET3;g1484.t1;TET3;g1484.t1"		"converts 5-methylcytosine (5mC) to 5-glyceryl-methylcytosines (5gmC) using vitamin C (not 2-oxoglutarate) as a co-substrate; Fe-dependent dioxygenase; homologous to TET1/CMD1; part of the DNA-1_cRei transposon;converts 5-methylcytosine (5mC) to 5-glyceryl-methylcytosines (5gmC) using vitamin C (not 2-oxoglutarate) as a co-substrate; Fe-dependent dioxygenase; homologous to TET1/CMD1; part of the DNA-1_cRei transposon"
+Cre02.g095250	GMM:29.2.2	"protein.synthesis.ribosome biogenesis"	Mitochondrion	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		g1933.t1		
+Cre02.g143861			"Secretory pathway"				"Cre02.g143861.t1.1;g2604.t1;g2604.t1;Cre02.g143861.t1.1;Cre02.g143861.t1.1;g2604.t1"		
+Cre02.g080400			Chloroplast				"g1469.t1;g1469.t1;g1469.t1"		
+Cre02.g076850	GMM:33.99	development.unspecified		GO:0005515	"protein binding"		"g1383.t1;Cre02.g076850.t1.1;Cre02.g076850.t1.1;g1383.t1;g1383.t1;Cre02.g076850.t1.1;Cre02.g076850.t1.1;g1383.t1"		
+Cre02.g117600	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"				"g2438.t1;g2438.t1"		
+Cre02.g106000			"Secretory pathway"				g2173.t1		
+Cre02.g098650			Chloroplast				g2006.t1		
+Cre02.g074217			Mitochondrion						
+Cre02.g077925			Mitochondrion				"g1407.t1;Cre02.g077950.t1.3"		
+Cre02.g082950							"g1524.t1;g1524.t1;g1524.t1"		
+Cre02.g119850	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	Mitochondrion	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE9	"g2489.t1;PDE9;g2489.t1;PDE9;g2489.t1;PDE9;PDE9;g2489.t1;g2489.t1;PDE9;g2489.t1;PDE9"		"Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain"
+Cre02.g143127									
+Cre02.g095094							g1868.t1		
+Cre02.g107450	"GMM:14.1;GMM:1.1.1.2"	"S-assimilation.APS;PS.lightreaction.photosystem II.PSII polypeptide subunits"	Mitochondrion	GO:0004781	"sulfate adenylyltransferase (ATP) activity"	ATS2	"ATS2;g2203.t1;Cre02.g107450.t1.1;ATS2;Cre02.g107450.t1.1;g2203.t1"	"ATS2;ATS2"	"ATP-sulfurylase; catalyses the synthesis of adenosine-phosphosulphate (APS) from ATP and inorganic sulphate. Present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];ATP-sulfurylase; catalyses the synthesis of adenosine-phosphosulphate (APS) from ATP and inorganic sulphate. Present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]"
+Cre02.g095123			Mitochondrion				"Cre11.g473350.t1.2;Cre11.g473350.t1.1;g1896.t1"		
+Cre02.g146000							"g2541.t1;Cre02.g146000.t1.1;g2541.t1;Cre02.g146000.t1.1"		
+Cre02.g116200			Chloroplast				"Cre02.g116200.t1.1;g2405.t1"		
+Cre02.g143392			Mitochondrion						
+Cre02.g098250			Chloroplast				"Cre02.g098250.t1.1;PPO3;g1998.t1;g1998.t1;PPO3;Cre02.g098250.t1.1"		"Pyridoxamine 5'-phosphate oxidase-like protein. Enzymatic activity is unproven;Pyridoxamine 5'-phosphate oxidase-like protein. Enzymatic activity is unproven"
+Cre02.g141600	GMM:10.6.2	"cell wall.degradation.mannan-xylose-arabinose-fucose"	"Secretory pathway"			EBM3	"EBM3;Cre02.g141600.t1.1;g2658.t1"		
+Cre02.g114001			Mitochondrion				"g2354.t1;Cre02.g114001.t1.1"		
+Cre02.g095129	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre11.g473650.t1.2;Cre11.g473650.t1.1;g1902.t1;Cre11.g473650.t1.1;Cre11.g473650.t1.2;g1902.t1"		
+Cre02.g080100	"GMM:27.1.3.5;GMM:27.1"	"RNA.processing.3' end processing.CPSF73b;RNA.processing"					"g1463.t1;CPS;g1463.t1;CPS"		"Similar to cleavage and polyadenylation specificity factor subunit 3; contains an RNA-metabolising metallo-beta-lactamase, a beta-Casp and a RRM domain; additional C-terminal comain not conserved in other organisms, except Volvox;Similar to cleavage and polyadenylation specificity factor subunit 3; contains an RNA-metabolising metallo-beta-lactamase, a beta-Casp and a RRM domain; additional C-terminal comain not conserved in other organisms, except Volvox"
+Cre02.g108500			Mitochondrion				g2224.t1		
+Cre02.g142126						FAP115	"g2754.t1;Cre15.g646300.t1.1"	FAP115	"null-allele mutant was isolated (PMID 29743196)"
+Cre02.g114000							g2353.t1		
+Cre02.g076650			Chloroplast				"Cre02.g076650.t1.1;g1378.t1"		
+Cre02.g086200			"Secretory pathway"				"Cre02.g086200.t1.1;g1597.t1"		
+Cre02.g099000	GMM:31.4	"cell.vesicle transport"		GO:0005515	"protein binding"	SYP71	"Cre02.g099000.t1.1;g2013.t1;Cre02.g099000.t1.1;g2013.t1"	"SYP71;SYP71"	"Expressed Protein. Similar to SYP7 Qc-SNAREs, involved in endosomal/cell plate trafficking; part of 2-member gene family of tandemly repeated genes (SYP71 SYP2);Expressed Protein. Similar to SYP7 Qc-SNAREs, involved in endosomal/cell plate trafficking; part of 2-member gene family of tandemly repeated genes (SYP71 SYP2)"
+Cre02.g078507			Chloroplast	GO:0010207	"photosystem II assembly"		"g1424.t1;Cre02.g078507.t1.1"		
+Cre02.g113550			Mitochondrion				"Cre02.g113550.t1.1;g2339.t1"		
+Cre02.g077650				"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"		"g1400.t1;Cre02.g077650.t1.1;g1400.t1;Cre02.g077650.t1.1"		
+Cre02.g143500	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	Mitochondrion	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE28	"PDE28;g2613.t1;PDE28;g2613.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g141946	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2739.t1;g2739.t1;g2739.t1"		
+Cre02.g147750			Chloroplast			FAP209	"g2506.t1;Cre02.g147750.t1.1"	FAP209	"Found in the flagellar proteome"
+Cre02.g113850	GMM:19.5	"tetrapyrrole synthesis.porphobilinogen deaminase"	Chloroplast	"GO:0033014;GO:0004418"	"tetrapyrrole biosynthetic process;hydroxymethylbilane synthase activity"	PBGD2	"HMBS;g2350.t1;HEM3;g2350.t1;HMBS;HEM3"	"PBGD2;PBGD2"	"Porphobilinogen deaminase, chloroplast precursor; Hydroxymethylbilane synthase; Pre-uroporphyrinogen synthase; PBGD; HMBS; HEM3; HEMC; Predicted chloroplast transit peptide 1-53 [PMID: 1986793; PMID: 8192681];Porphobilinogen deaminase, chloroplast precursor; Hydroxymethylbilane synthase; Pre-uroporphyrinogen synthase; PBGD; HMBS; HEM3; HEMC; Predicted chloroplast transit peptide 1-53 [PMID: 1986793; PMID: 8192681]"
+Cre02.g141950	"GMM:34.99;GMM:29.3.4.99;GMM:28.99"	"transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified"				MOT19	"g2652.t1;MOT19"	MOT19	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre02.g147450			"Secretory pathway"	GO:0016020	membrane		g2512.t1		
+Cre02.g101400	GMM:31.4	"cell.vesicle transport"		"GO:0030132;GO:0030130;GO:0016192;GO:0006886;GO:0005198"	"clathrin coat of coated pit;clathrin coat of trans-Golgi network vesicle;vesicle-mediated transport;intracellular protein transport;structural molecule activity"	CHC1	"CHC1;NSG15;g2069.t1;Cre02.g101400.t1.1"	CHC1	"Clathrin Heavy Chain, vesicle coat protein; Expressed Protein. ts-lethal mutant was isolated (PMID 29743196)"
+Cre02.g141566			"Secretory pathway"						
+Cre02.g144009			"Secretory pathway"				g2601.t1		
+Cre02.g108650	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"				
+Cre02.g107750			Chloroplast			PCD1	"g2209.t1;Cre02.g107750.t1.1;PCD1;PCD1;g2209.t1;Cre02.g107750.t1.1"	"PCD1;PCD1"	
+Cre02.g109366	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion	GO:0005515	"protein binding"		"Cre02.g109350.t1.3;g2243.t1"		
+Cre02.g109900							"g2255.t1;Cre02.g109900.t1.1;g2255.t1;Cre02.g109900.t1.1;g2255.t1;Cre02.g109900.t1.1"		
+Cre02.g104050							"Cre02.g104050.t1.1;g2128.t1"		
+Cre02.g095086				GO:0016020	membrane		g1860.t1		
+Cre02.g143801			Mitochondrion				"Cre02.g143750.t4.1;g2608.t4"		
+Cre02.g100566									
+Cre02.g143000	"GMM:11.3.1;GMM:11.3"	"lipid metabolism.phospholipid synthesis.1-acylglycerol-3-phosphate O-acyltransferase;lipid metabolism.phospholipid synthesis"	Chloroplast	"GO:0016746;GO:0008152;GO:0004366"	"transferase activity, transferring acyl groups;metabolic process;glycerol-3-phosphate O-acyltransferase activity"	PLSB1	"GPA1;PLSB1;Cre02.g143000.t1.1;g2626.t1"	GPAT1	"Plastid glycerol-3-phosphate O-acyltransferase"
+Cre02.g086150			Mitochondrion				"g1596.t1;Cre02.g086150.t1.1;Cre02.g086150.t1.1;g1596.t1"		
+Cre02.g144000				GO:0016798	"hydrolase activity, acting on glycosyl bonds"		"IND1;Cre02.g144000.t1.1;g2593.t1"		"Indigoidine is a blue pigment synthesized by the pathogenic bacterium Erwinia and necessary for virulence [PMID: 11790734]; higher plants also possess an homologue of indA. Previously annotated as INDA"
+Cre02.g143447			"Secretory pathway"				"g2832.t1;Cre38.g785350.t1.1"		
+Cre02.g115500			Chloroplast				"Cre02.g115500.t1.1;g2387.t1"		
+Cre02.g106300			"Secretory pathway"				"g2179.t1;Cre02.g106300.t1.1;g2179.t1;Cre02.g106300.t1.1;Cre02.g106300.t1.1;g2179.t1;Cre02.g106300.t1.1;g2179.t1;Cre02.g106300.t1.1;g2179.t1;Cre02.g106300.t1.1;g2179.t1;g2179.t1;Cre02.g106300.t1.1"		
+Cre02.g104500	"GMM:30.99;GMM:29.9;GMM:20.2.1"	"signalling.unspecified;protein.co-chaperones;stress.abiotic.heat"	Chloroplast			CDJ4	g2138.t1	CDJ4	"Contains N-terminal J-domain (pfam226) and bacterial-type Ferredoxin domain (COG1141, [4Fe4S]); not involved in protein folding, but stimulates ATPase activity of HSP70B; in same clade as CDJ3"
+Cre02.g100000	"GMM:29.1;GMM:28.1"	"protein.aa activation;DNA.synthesis/chromatin structure"		GO:0003676	"nucleic acid binding"	RFA2	"RFA2;Cre02.g100000.t1.1;g2036.t1;RPA30"	RFA2	"Replication protein A 30 kDa DNA-binding subunit; homologous to eukaryotic RPA 30 kDa subunit; RP-A; RF-A; Replication factor-A protein 2. ts-lethal mutant was isolated (PMID 29743196)"
+Cre02.g081350			Mitochondrion	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		g1489.t1		"Isochorimatase family, involved in nicotinate nucleotide salvage pathway"
+Cre02.g144050	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"				ELG36	"g2592.t2;Cre02.g144050.t1.1;ELG34;ELG36"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre02.g082150			Mitochondrion				g1505.t1		
+Cre02.g119201									
+Cre02.g095035									
+Cre02.g084400	"GMM:26.7;GMM:13.2.2.2"	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH9	"P4H9;Cre02.g084400.t1.1;PHX4;g1557.t1"	PFH9	"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate ; contains C-terminal ShK domain; next to PFH10; Target of CRR1"
+Cre02.g108100	GMM:29.5	protein.degradation					"g2216.t1;g2216.t1;g2216.t1;g2216.t1"		
+Cre02.g090200									
+Cre02.g095046			Chloroplast						
+Cre02.g105287				GO:0003676	"nucleic acid binding"		"Cre02.g105287.t1.1;g2158.t1;g2158.t1;Cre02.g105287.t1.1"		
+Cre02.g092150	"GMM:30.2.12;GMM:30.2.11"	"signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI"		GO:0005515	"protein binding"	CSL	"CSL;Cre02.g092150.t1.1;g1727.t1"		"Similar to RAS-signaling-related leucine-rich repeat protein; necessary for ROC15 protein (but not mRNA) degradation in response to red and violet light, and resetting of the circadian clock."
+Cre02.g089600						XPD2			
+Cre02.g085450	GMM:19.8	"tetrapyrrole synthesis.coproporphyrinogen III oxidase"	Chloroplast	"GO:0055114;GO:0006779;GO:0004109"	"oxidation-reduction process;porphyrin-containing compound biosynthetic process;coproporphyrinogen oxidase activity"	CPX1	"CPX1;Cre02.g085450.t1.1;g1581.t1;g1581.t1;CPX1;Cre02.g085450.t1.1;Cre02.g085450.t1.1;CPX1;g1581.t1"	"CPX1;CPX1;CPX1"	"Coproporphyrinogen III oxidase, chloroplast precursor; GI:837299; CPO1; HEM13; HEM6 [PMID: 15849308]; Predicted chloroplast transit peptide 1-31; Target of CRR1;Coproporphyrinogen III oxidase, chloroplast precursor; GI:837299; CPO1; HEM13; HEM6 [PMID: 15849308]; Predicted chloroplast transit peptide 1-31; Target of CRR1;Coproporphyrinogen III oxidase, chloroplast precursor; GI:837299; CPO1; HEM13; HEM6 [PMID: 15849308]; Predicted chloroplast transit peptide 1-31; Target of CRR1"
+Cre02.g080600	"GMM:29.6.2.3;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat"	"Secretory pathway"			BIP2	"Cre02.g080600.t1.1;g1473.t1;BIP2;g1473.t1;Cre02.g080600.t1.1;BIP2"	"BIP2;BIP2"	"BIP2 is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; contains an ER retention motif, an ER-targeting sequence and is most similar to ER-HSP70s from other organisms [PMID: 16143837]; forms a cluster with ER-targeted chaperones HSP90B and BIP1 [PMID: 16143837];BIP2 is one of 9 genes encoding HSP70-like proteins in Chlamydomonas; contains an ER retention motif, an ER-targeting sequence and is most similar to ER-HSP70s from other organisms [PMID: 16143837]; forms a cluster with ER-targeted chaperones HSP90B and BIP1 [PMID: 16143837]"
+Cre02.g147050			Mitochondrion				"Cre02.g147050.t1.1;g2519.t1;g2519.t1;Cre02.g147050.t1.1"		"Similar to FAP265; Similar to tubulin polymerization-promoting proteins in mouse;Similar to FAP265; Similar to tubulin polymerization-promoting proteins in mouse"
+Cre02.g103000			"Secretory pathway"				"Cre02.g103000.t1.1;g2104.t1;FKM3;Cre02.g103000.t1.1;g2104.t1;FKM3;FKM3;g2104.t1;Cre02.g103000.t1.1;FKM3;Cre02.g103000.t1.1;g2104.t1;Cre02.g103000.t1.1;g2104.t1;FKM3;g2104.t1;FKM3;Cre02.g103000.t1.1;FKM3;Cre02.g103000.t1.1;g2104.t1"		"FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces"
+Cre02.g114250	GMM:18.5.2.5	"Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.naphthoate synthase"	Mitochondrion			MEN2	"Cre02.g114250.t1.1;MEN2;g2359.t1"	MEN2	"Putative naphthoate synthase [=menB]. Evolutionarily related to enoyl-CoA hydratase/isomerase"
+Cre02.g077300	"GMM:29.2.2.3.3;GMM:27.1"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases;RNA.processing"		"GO:0008168;GO:0008033;GO:0006364;GO:0003723"	"methyltransferase activity;tRNA processing;rRNA processing;RNA binding"	NOP1	"NOP1;g1393.t1;Cre02.g077300.t1.1"	NOP1	"Homologue of Fibrillarin; required for pre-ribosomal RNA processing. Likely carries the methyltransferase activity that modifies the C/D snoRNA-guided 2'OH methylation of pre-rRNA; Gene has no introns"
+Cre02.g113150			Chloroplast				"g2330.t1;Cre02.g113150.t1.1;Cre02.g113150.t1.1;g2330.t1;Cre02.g113150.t1.1;g2330.t1"		
+Cre02.g101500	GMM:34.14	"transport.unspecified cations"				MRS1	"g2070.t1;MRS1;Cre02.g101500.t1.1;g2070.t1;Cre02.g101500.t1.1;MRS1"	"MRS1;MRS1"	"metal ion transporter; related to plant homologs;metal ion transporter; related to plant homologs"
+Cre02.g142150			"Secretory pathway"				"g2648.t1;Cre02.g142150.t1.1;Cre02.g142150.t1.1;g2648.t1"		
+Cre02.g092550	"GMM:35.1.27;GMM:29.6"	"not assigned.no ontology.tetratricopeptide repeat (TPR);protein.folding"				TPR1	"g1735.t1;g1735.t1;g1735.t1;g1735.t1;g1735.t1;g1735.t1;g1735.t1"	"TPR1;TPR1;TPR1;TPR1;TPR1;TPR1;TPR1"	"Contains TPR repeats, possible chloroplast-targeted protein; Co-orthologous to AT1G58450.1, AT5G21990.1 in Arabidopsis thaliana;;Contains TPR repeats, possible chloroplast-targeted protein; Co-orthologous to AT1G58450.1, AT5G21990.1 in Arabidopsis thaliana;;Contains TPR repeats, possible chloroplast-targeted protein; Co-orthologous to AT1G58450.1, AT5G21990.1 in Arabidopsis thaliana;;Contains TPR repeats, possible chloroplast-targeted protein; Co-orthologous to AT1G58450.1, AT5G21990.1 in Arabidopsis thaliana;;Contains TPR repeats, possible chloroplast-targeted protein; Co-orthologous to AT1G58450.1, AT5G21990.1 in Arabidopsis thaliana;;Contains TPR repeats, possible chloroplast-targeted protein; Co-orthologous to AT1G58450.1, AT5G21990.1 in Arabidopsis thaliana;;Contains TPR repeats, possible chloroplast-targeted protein; Co-orthologous to AT1G58450.1, AT5G21990.1 in Arabidopsis thaliana;"
+Cre02.g104876									
+Cre02.g081900			"Secretory pathway"				"Cre02.g081900.t1.1;g1500.t1;Cre02.g081900.t1.1;g1500.t1;g1500.t1;Cre02.g081900.t1.1;Cre02.g081900.t1.1;g1500.t1;g1500.t1;Cre02.g081900.t1.1"		
+Cre02.g094801			Chloroplast						
+Cre02.g084000			Chloroplast				"Cre02.g084000.t1.1;g1548.t1;g1548.t1;Cre02.g084000.t1.1"		
+Cre02.g101950	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					"g2081.t1;Cre02.g101950.t1.1;TRM2B;TMU2"	TMU2	"tRNA methyltransferase, catalyzes the transfer of a methyl group from S-adenosylmethionine to position 5 of the uridine residue at position 54 of tRNAs"
+Cre02.g141186	GMM:20.2.1	stress.abiotic.heat					g2693.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre02.g116000							g2401.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre02.g111800			Chloroplast				"Cre02.g111800.t1.1;g2301.t1;Cre02.g111800.t1.1;g2301.t1"		
+Cre02.g106550				"GO:0006397;GO:0005737;GO:0005634;GO:0003723"	"mRNA processing;cytoplasm;nucleus;RNA binding"		"Cre02.g106550.t1.1;g2184.t1"		
+Cre02.g092050	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP6	"g1724.t1;MCP6;MITC6;MCP6;MITC6;g1724.t1"		
+Cre02.g087950	GMM:29.1.10	"protein.aa activation.methionine-tRNA ligase"		"GO:0006418;GO:0005524;GO:0004812;GO:0000166;GO:0000049"	"tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding;tRNA binding"	TSM1	"Cre02.g087950.t1.1;TSM1;g1636.t1;g1636.t1;TSM1;Cre02.g087950.t1.1;g1636.t1;Cre02.g087950.t1.1;TSM1"	"TSM1;TSM1;TSM1"	
+Cre02.g095068			Chloroplast				g1842.t1		
+Cre02.g142306				GO:0005515	"protein binding"		"Cre15.g645850.t1.1;g2763.t1"		
+Cre02.g120301						SELH	"g2498.t1;SELH;Cre02.g120300.t1.2;SELENOH"	SELH1	"Contains selenocysteine at position 52 and SECIS in 3'-UTR"
+Cre02.g116650							"g2414.t1;Cre02.g116650.t1.1"		
+Cre02.g098700	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Mitochondrion	"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"Cre02.g098700.t1.1;g2007.t1"		
+Cre02.g095151	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"Cre11.g474600.t1.2;Cre11.g474600.t1.1;g1923.t1"		
+Cre02.g075700	"GMM:29.2.1.99.2.19;GMM:29.2.1.2.2.19"	"protein.synthesis.ribosomal protein.unknown.large subunit.L19;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L19"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL19	"Cre02.g075700.t1.1;g1356.t1;g1356.t1;Cre02.g075700.t1.1"	"RPL19;RPL19"	"Cytosolic 60S large ribosomal subunit protein L19;Cytosolic 60S large ribosomal subunit protein L19"
+Cre02.g142800	GMM:21.1	redox.thioredoxin	Chloroplast	"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRXz	"Cre02.g142800.t1.1;CITRX;TRX13;TRXZ;g2631.t1"	TRXZ1	"Putative Thioredoxin, similar to CITRX, a protein that appears to be involved in the regulation of plant disease resistance [PMID: 15131698]. Contains a putative transit sequence but sorting programs perform unclear prediction for the possible subcellular localization."
+Cre02.g085900	GMM:3.4.5	"minor CHO metabolism.myo-inositol.inositol phosphatase"	Chloroplast.Stroma	GO:0046854	"phosphatidylinositol phosphorylation"	IPP1	"IMP1;IPP1;g1590.t1;Cre02.g085900.t1.1"	IPP1	"myo-Inositol monophosphatase"
+Cre02.g088651							"g1652.t1;Cre02.g088651.t1.1;g1652.t1;Cre02.g088651.t1.1"		
+Cre02.g095137	GMM:5.8	"fermentation.pyruvate:ferredoxin 2-oxidoreductase (CoA-acetylating)"	Chloroplast	"GO:0055114;GO:0030976;GO:0016903;GO:0016491;GO:0003824"	"oxidation-reduction process;thiamine pyrophosphate binding;oxidoreductase activity, acting on the aldehyde or oxo group of donors;oxidoreductase activity;catalytic activity"	PFR1	"Cre11.g473950.t1.1;Cre11.g473950.t1.2;g1910.t2;Cre11.g473950.t1.1;Cre11.g473950.t1.2;g1910.t2;Cre11.g473950.t1.1;Cre11.g473950.t1.2;g1910.t2"	"PFR1;PFR1;PFR1"	"Reversible pyruvate decarboxylation to acetyl-CoA and CO2, two ferredoxins are reduced;Reversible pyruvate decarboxylation to acetyl-CoA and CO2, two ferredoxins are reduced;Reversible pyruvate decarboxylation to acetyl-CoA and CO2, two ferredoxins are reduced"
+Cre02.g096601				GO:0005515	"protein binding"		g1962.t1		
+Cre02.g104600							"g2140.t1;Cre02.g104600.t1.1"		
+Cre02.g095093							"Cre11.g472200.t1.1;Cre11.g472200.t1.2;g1867.t1"		
+Cre02.g120001			"Secretory pathway"				"Cre02.g120000.t1.3;g2492.t1;g2492.t1;Cre02.g120000.t1.3;Cre02.g120000.t1.3;g2492.t1;Cre02.g120000.t1.3;g2492.t1;Cre02.g120000.t1.3;g2492.t1;Cre02.g120000.t1.3;g2492.t1;g2492.t1;Cre02.g120000.t1.3;g2492.t1;Cre02.g120000.t1.3;g2492.t1;Cre02.g120000.t1.3;Cre02.g120000.t1.3;g2492.t1;Cre02.g120000.t1.3;g2492.t1"		
+Cre02.g145133							"g2566.t1;Cre02.g145133.t1.1;g2566.t1;Cre02.g145133.t1.1;Cre02.g145133.t1.1;g2566.t1"		
+Cre02.g142967									
+Cre02.g141726			Chloroplast				"Cre15.g647150.t1.1;g2728.t1"		
+Cre02.g095072						FAP144	"g1846.t1;Cre11.g471300.t1.1"	FAP144	
+Cre02.g100850	GMM:34.14	"transport.unspecified cations"		"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"		g2057.t1		
+Cre02.g119950			"Secretory pathway"				"Cre02.g119950.t1.1;g2491.t1;g2491.t1;Cre02.g119950.t1.1"		
+Cre02.g078150	GMM:33.99	development.unspecified		GO:0005515	"protein binding"		"g1413.t1;g1413.t1"		
+Cre02.g079800			Mitochondrion			ASA6	"Cre02.g079800.t1.1;ASA6;g1458.t1"	ASA6	"Mitochondrial ATP synthase associated protein 6; part of peripheral stalk involed in dimerization; unknown evolutionary origin [PMID: 11744727, PMID: 15710684]"
+Cre02.g081700						PHC66	"g1496.t1;g1496.t1;g1496.t1;g1496.t1;g1496.t1;g1496.t1;g1496.t1;g1496.t1;g1496.t1"	"PHC66;PHC66;PHC66;PHC66;PHC66;PHC66;PHC66;PHC66;PHC66"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre02.g142827			Chloroplast						
+Cre02.g095152									
+Cre02.g105300						FAP231	"g2159.t1;ANK19"	FAP231	"Protein of unknown function with ankyrin repeats, flagella associated; partial sequence"
+Cre02.g074400			Mitochondrion						
+Cre02.g118050	GMM:31.3	cell.cycle	Chloroplast			CYCU1	"g2449.t1;Cre02.g118050.t1.1;CYCU1"	CYCU1	"U type cyclin"
+Cre02.g094500	GMM:29.2.1.99.1.21	"protein.synthesis.ribosomal protein.unknown.small subunit.S21"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"		"g1787.t1;Cre02.g094500.t1.1"		
+Cre02.g102200									
+Cre02.g099150	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"		GO:0006886	"intracellular protein transport"	SNAPA1	"Cre02.g099150.t1.1;g2017.t1;FAP375;SNAPA1"	SNAPA1	"Adaptor protein that connects NSF to cis-SNARE complexes. Expressed Protein. Found in the flagellar proteome [PMID: 15998802]"
+Cre02.g117700			Mitochondrion				g2441.t1		
+Cre02.g095037			Mitochondrion						
+Cre02.g115650	"GMM:4.3.10;GMM:4.1.10;GMM:1.3.6"	"glycolysis.unclear/dually targeted.aldolase;glycolysis.cytosolic branch.aldolase;PS.calvin cycle.aldolase"	Chloroplast	"GO:0006096;GO:0004332"	"glycolytic process;fructose-bisphosphate aldolase activity"	FBA4	"g2394.t1;Cre02.g115650.t1.1"	FBA4	"Fructose-1,6-bisphosphate aldolase-like protein; aldehyde-lyase (EC 4.1.2.13); possibly cytosolic based on similarity to Solanum tuberosum aldolase-like protein (GenBank ABC01905); glycolytic enzyme that catalyses the reversible aldol cleavage or condensation of fructose-1,6-bisphosphate into dihydroxyacetone-phosphate and glyceraldehyde 3-phosphate"
+Cre02.g074474									
+Cre02.g104201	"GMM:30.2.25;GMM:29.4"	"signalling.receptor kinases.wall associated kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre02.g104200.t1.3;g2132.t1;CBC2"		
+Cre02.g141000	"GMM:32;GMM:27.1.20"	"micro RNA, natural antisense etc;RNA.processing.degradation dicer"		"GO:0016891;GO:0006396;GO:0005524;GO:0004525;GO:0003723;GO:0003676"	"endoribonuclease activity, producing 5'-phosphomonoesters;RNA processing;ATP binding;ribonuclease III activity;RNA binding;nucleic acid binding"	DCL1	"g2670.t1;DCL1;g2670.t1;DCL1;g2670.t1;DCL1;DCL1;g2670.t1"	"DCL1;DCL1;DCL1;DCL1"	"Presumably involved in posttranscriptional gene silencing/RNA interference;Presumably involved in posttranscriptional gene silencing/RNA interference;Presumably involved in posttranscriptional gene silencing/RNA interference;Presumably involved in posttranscriptional gene silencing/RNA interference"
+Cre02.g095095			"Secretory pathway"			PHC12	"PHC12;g1869.t1"	PHC12	"Pherophorin-C12 (PHC12) [PMID: 16367971]; very similar to extracellular matrix protein (cell wall protein) pherophorin-C6 [Genbank entry DQ196112], which belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich"
+Cre02.g091400	"GMM:29.6.2.5;GMM:29.5.5;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease;stress.abiotic.heat"	Mitochondrion	GO:0005524	"ATP binding"	CLPB2	g1711.t1	CLPB2	"predicted mitochondrial"
+Cre02.g099350			"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR8			
+Cre02.g074100			Chloroplast				"g1314.t1;Cre02.g074100.t1.1;Cre02.g074100.t1.1;g1314.t1"		
+Cre02.g079650			"Secretory pathway"	"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		"g1455.t1;g1455.t1;g1455.t1"		
+Cre02.g090350			"Secretory pathway"				"g1687.t1;g1687.t1"		
+Cre02.g097250	GMM:29.3.1	protein.targeting.nucleus		"GO:0008536;GO:0006886"	"Ran GTPase binding;intracellular protein transport"		"g1979.t1;g1979.t1"		
+Cre02.g097600			"Secretory pathway"				"FKM2;g1986.t1;FKM2;g1986.t1"		"FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces"
+Cre02.g095118			Chloroplast						
+Cre02.g074626						CSB11	"g1330.t1;CSB11"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre02.g095200	"GMM:34.16;GMM:29.2.2.1"	"transport.ABC transporters and multidrug resistance systems;protein.synthesis.ribosome biogenesis.export from nucleus"		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"Cre02.g095200.t1.1;g1932.t1"		
+Cre02.g145050	GMM:16.1.1.4	"secondary metabolism.isoprenoids.non-mevalonate pathway.CMK"	Chloroplast	"GO:0050515;GO:0016114;GO:0005524"	"4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity;terpenoid biosynthetic process;ATP binding"	CMK1	"Cre02.g145050.t1.1;CMK1;g2568.t1;CMK"	CMK1	"4-diphosphocytidyl-2-C-methyl-D-erythritol kinase (4-(cytidine-5'-diphospho)-2-C-methyl-D-erythritol kinase) (CDPMEK) (ispE) (ychB), chloroplast precursor"
+Cre02.g108400	"GMM:20.1;GMM:2.1"	"stress.biotic;major CHO metabolism.synthesis"	"Secretory pathway"	"GO:0016021;GO:0008250;GO:0004579"	"integral component of membrane;oligosaccharyltransferase complex;dolichyl-diphosphooligosaccharide-protein glycotransferase activity"	DAD1	"g2222.t1;DAD1;Cre02.g108400.t1.1;DAD1;Cre02.g108400.t1.1;g2222.t1"	"DAD1;DAD1"	"Putative defender against death (DAD) protein; contains a DAD domain (IPR003038);Putative defender against death (DAD) protein; contains a DAD domain (IPR003038)"
+Cre02.g099650				GO:0016021	"integral component of membrane"		"g2028.t1;Cre02.g099650.t1.1;Cre02.g099650.t1.1;g2028.t1"		
+Cre02.g084850							g1566.t1		
+Cre02.g141626				"GO:0008168;GO:0006479"	"methyltransferase activity;protein methylation"		"Cre15.g647400.t1.2;g2723.t1;Cre15.g647400.t1.1;Cre15.g647400.t1.1;Cre15.g647400.t1.2;g2723.t1"	"PRMT7;PRMT7"	"Protein arginine N-methyltransferase; Orthologous to PRMT7 in rice and Arabidopsis;Protein arginine N-methyltransferase; Orthologous to PRMT7 in rice and Arabidopsis"
+Cre02.g096400							"Cre02.g096400.t1.1;g1957.t1"	NDUFAF7	"Assembly facator for NADH:ubiquinone oxidoreductase (Complex I), mitochondrial; Ortholog to NDUFAF7 in Homo sapiens;"
+Cre02.g095121	"GMM:29.1.30;GMM:27.4;GMM:23.5.2"	"protein.aa activation.pseudouridylate synthase;RNA.RNA binding;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase"	Chloroplast	"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS9	"g1894.t1;PUS9;PUS9;g1894.t1"		
+Cre02.g080250			Chloroplast	GO:0016020	membrane	YGG1	"YGG1;g1466.t1;YLMG1;Cre02.g080250.t1.1"	CGL97	"Protein of unknown function with YGGT domain; Conserved in the green lineage"
+Cre02.g095139			"Secretory pathway"				"Cre11.g474050.t1.1;g1912.t1"		
+Cre02.g114650			Mitochondrion				"g2369.t1;g2369.t1;g2369.t1"		
+Cre02.g087750	"GMM:30.2.20;GMM:29.4.1;GMM:29.4"	"signalling.receptor kinases.wheat LRK10 like;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g1631.t1;Cre02.g087750.t1.1;Cre02.g087750.t1.1;g1631.t1;Cre02.g087750.t1.1;g1631.t1;Cre02.g087750.t1.1;g1631.t1"		
+Cre02.g095061									
+Cre02.g079050			Mitochondrion	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	DGTT5	"g1443.t1;g1443.t1"	"DGTT5;DGTT5"	
+Cre02.g109550	"GMM:13.1.3.6.1.10;GMM:13.1.3.6.1.1"	"amino acid metabolism.synthesis.aspartate family.misc.homoserine.bifunctional aspartate kinase/homoserine dehydrogenase;amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate kinase"		"GO:0055114;GO:0050661;GO:0016491;GO:0006520"	"oxidation-reduction process;NADP binding;oxidoreductase activity;cellular amino acid metabolic process"	HSD1	"g2247.t1;HSD1;AHD3;Cre02.g109550.t1.1;AHD3;Cre02.g109550.t1.1;g2247.t1;HSD1"	"HSD1;HSD1"	"converts aspartate-4-semialdehyde to homoserine (EC 1.1.1.3); involved in Thr and Met biosynthesis; similar to HSDH portion of Arabidopsis bifunctional aspartate kinase/homoserine dehydrogenase (GenBank BAC43372), but lacking the aspartate kinase portion;converts aspartate-4-semialdehyde to homoserine (EC 1.1.1.3); involved in Thr and Met biosynthesis; similar to HSDH portion of Arabidopsis bifunctional aspartate kinase/homoserine dehydrogenase (GenBank BAC43372), but lacking the aspartate kinase portion"
+Cre02.g107256			Mitochondrion				"Cre02.g107250.t1.3;g2199.t1"		
+Cre02.g075200			Chloroplast				"g1345.t1;g1345.t1"		
+Cre02.g111700	GMM:18.8	"Co-factor and vitamine metabolism.ubiquinone"	Chloroplast	GO:0005509	"calcium ion binding"	EFH1	"EFH1;Cre02.g111700.t1.1;g2299.t1"		
+Cre02.g112500	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2317.t1;g2317.t1"		
+Cre02.g095900			Chloroplast	GO:0005515	"protein binding"	ROC114	"ROC114;Cre02.g095900.t1.1;ROC108;g1947.t1"	ROC114	"F-box protein involved in the circadian clock and the light-induced degradation of ROC15 protein; contains a thiolase motif"
+Cre02.g095104			Chloroplast				"Cre11.g472600.t1.1;g1877.t1;Cre11.g472600.t1.1;g1877.t1"		
+Cre02.g083350			"Secretory pathway"	GO:0003677	"DNA binding"		g1533.t1		
+Cre02.g078939	"GMM:30.11;GMM:28.2"	"signalling.light;DNA.repair"	Chloroplast				"Cre64.g793000.t1.1;Cre64.g793000.t1.2;CRY-DASH1;g1436.t1"	DCRY1	"Drosophila, Arabidopsis, Synechocystis, Human-type Cryptochrome 1"
+Cre02.g081800	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g1498.t1;Cre02.g081800.t1.1;Cre02.g081800.t1.1;g1498.t1;g1498.t1;Cre02.g081800.t1.1;g1498.t1;Cre02.g081800.t1.1;g1498.t1;Cre02.g081800.t1.1"		
+Cre02.g142050			Mitochondrion				"g2650.t1;Cre02.g142050.t1.1;Cre02.g142050.t1.1;g2650.t1"		
+Cre02.g144300	GMM:34.2	transport.sugars					"TPT6;TPT7;g2587.t1;Cre02.g144300.t1.1"		
+Cre02.g077976									
+Cre02.g145452							"g2559.t1;Cre02.g145400.t1.1;Cre02.g145400.t1.1;g2559.t1"		
+Cre02.g143800	"GMM:28.1;GMM:27.3.44"	"DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors"	Mitochondrion	GO:0005524	"ATP binding"		"SRH3;g2607.t1"		"SNF2-related helicase. ChromoDB CHR3426"
+Cre02.g087000			"Secretory pathway"				"g1614.t1;g1614.t1;g1614.t1"		
+Cre02.g087666			Chloroplast	GO:0004867	"serine-type endopeptidase inhibitor activity"				
+Cre02.g112750	"GMM:33.3;GMM:27.3.28"	"development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"	Chloroplast	"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"Cre02.g112750.t1.1;g2322.t1;g2322.t1;Cre02.g112750.t1.1"		
+Cre02.g075800			Mitochondrion				"g1358.t1;Cre02.g075800.t1.1;g1358.t1;Cre02.g075800.t1.1;g1358.t1;Cre02.g075800.t1.1"		
+Cre02.g077150			Chloroplast			CPLD14	"g1390.t1;CPLD14;CPLD14;g1390.t1;CPLD14;g1390.t1"	"CPLD14;CPLD14;CPLD14"	
+Cre02.g147350							"Cre02.g147350.t1.1;g2513.t1;Cre02.g147350.t1.1;g2513.t1;Cre02.g147350.t1.1;g2513.t1;g2513.t1;Cre02.g147350.t1.1"		
+Cre02.g115000			Chloroplast				"g2376.t1;g2376.t1;g2376.t1"		
+Cre02.g088950			Mitochondrion				"Cre02.g088950.t1.1;g1658.t1;g1658.t1;Cre02.g088950.t1.1"		
+Cre02.g145600							"g2552.t1;g2552.t1;g2552.t1;g2552.t1;g2552.t1;g2552.t1;g2552.t1"		
+Cre02.g073700	GMM:19.7	"tetrapyrrole synthesis.uroporphyrinogen decarboxylase"	Chloroplast	"GO:0006779;GO:0004853"	"porphyrin-containing compound biosynthetic process;uroporphyrinogen decarboxylase activity"	UROD3	"g1305.t2;Cre02.g073700.t1.1;UPD3;UPD3;g1305.t2;Cre02.g073700.t1.1"	"UROD3;UROD3"	
+Cre02.g085050	"GMM:33.99;GMM:30.11"	"development.unspecified;signalling.light"		GO:0005515	"protein binding"		"Cre02.g085050.t1.1;g1571.t1;COP1"	PCOP1	"Orthologous to Constitutive photomorphogenesis protein 1 in Arabidopsis thaliana (AtCOP1); Has Transducin/WD40 repeat; Not related to Chlamyopsins (COP2/1)"
+Cre02.g143352			Chloroplast				g2618.t1		
+Cre02.g109683	GMM:27.3.6	"RNA.regulation of transcription.basic helix-loop-helix family (bHLH)"		GO:0046983	"protein dimerization activity"		"g2250.t1;Cre02.g109700.t1.3;g2250.t1;Cre02.g109700.t1.3"		
+Cre02.g089400			"Secretory pathway"			HRP2	"HRP2;g1668.t1;g1668.t1;HRP2"		"cell wall protein; contains (hydroxy)proline-rich (HR) domain with (SP)n repeats; closely linked to HRP5;cell wall protein; contains (hydroxy)proline-rich (HR) domain with (SP)n repeats; closely linked to HRP5"
+Cre02.g098000	"GMM:26.3;GMM:10.6.2"	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	"Secretory pathway"	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	EBM2	"g1993.t1;EBM2;Cre02.g098000.t1.1"		
+Cre02.g077850	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			FAP212	"g1405.t1;CSE14;Cre02.g077850.t1.1;g1405.t1;Cre02.g077850.t1.1;CSE14;CSE14;Cre02.g077850.t1.1;g1405.t1"	"FAP212;FAP212;FAP212"	"Flagellar Associated Protein, found in the flagellar proteome; belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; null-allele passenger mutation was isolated (PMID 29743196). Potential amidation site at C-terminus for peptidylglycine alpha-amidating monooxygenase. Related to Cre03 g204500 chemotactic modulator;Flagellar Associated Protein, found in the flagellar proteome; belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; null-allele passenger mutation was isolated (PMID 29743196). Potential amidation site at C-terminus for peptidylglycine alpha-amidating monooxygenase. Related to Cre03 g204500 chemotactic modulator;Flagellar Associated Protein, found in the flagellar proteome; belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; null-allele passenger mutation was isolated (PMID 29743196). Potential amidation site at C-terminus for peptidylglycine alpha-amidating monooxygenase. Related to Cre03 g204500 chemotactic modulator"
+Cre02.g141350	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				DRC10	"g2663.t1;Cre02.g141350.t1.1;FAP84"	DRC10	"Flagellar Associated Protein 84, found in the flagellar proteome;"
+Cre02.g146750			Mitochondrion				"g2525.t1;g2525.t1"		
+Cre02.g109333			Mitochondrion				"g2242.t1;Cre02.g109329.t1.2;Cre02.g109329.t1.2;g2242.t1"		
+Cre02.g095125			"Secretory pathway"				"Cre11.g473450.t1.1;g1898.t1;Cre11.g473450.t1.2"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre02.g144605			Chloroplast				g2580.t1		
+Cre02.g110800	GMM:34.4	transport.nitrate	Chloroplast	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	NRT2.6	"NRT2.6;g2274.t1;NRT2.6;g2274.t1"	"NRT2F;NRT2F"	"Belongs to major facilitator superfamily;Belongs to major facilitator superfamily"
+Cre02.g141206									
+Cre02.g088450			"Secretory pathway"	GO:0035091	"phosphatidylinositol binding"	CPLD29	"g1647.t1;CPLD29"	CPLD29	"PX DOMAIN-CONTAINING PROTEIN KINASE-LIKE PROTEIN"
+Cre02.g145700	GMM:34.3	"transport.amino acids"	Mitochondrion			AOT1	"g2548.t1;Cre02.g145700.t1.1;AOT1;g2548.t1;Cre02.g145700.t1.1;AOT1"		"belongs to AAAP family of amino acid/auxin permeases; most similar to plant relatives; linked to closely related AOT2; null-allele mutant was isolated (PMID 29743196);belongs to AAAP family of amino acid/auxin permeases; most similar to plant relatives; linked to closely related AOT2; null-allele mutant was isolated (PMID 29743196)"
+Cre02.g141800	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g2655.t1;Cre02.g141800.t1.1"		
+Cre02.g080500	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"	"GO:0016758;GO:0008152"	"transferase activity, transferring hexosyl groups;metabolic process"		"g1471.t1;Cre02.g080500.t1.1"		
+Cre02.g095044							"Cre11.g470300.t1.1;g1816.t1"		
+Cre02.g112650							"g2320.t1;Cre02.g112650.t1.1"		
+Cre02.g111108									
+Cre02.g142850	GMM:27.1	RNA.processing				SMP11	"SMP11;Cre02.g142850.t1.1;g2629.t1"	SMP11	"similar to Sm-protein (SMP6c)"
+Cre02.g107950			"Secretory pathway"				"Cre02.g107950.t1.1;g2213.t1"		
+Cre02.g112366									
+Cre02.g107550	GMM:33.99	development.unspecified					g2205.t2	CVL2	"Predicted Fe2+/Mn2+ transporter, VIT1/CCC1 family; Similarity to Pcl1 from S. pombe and VIT1 from A. thaliana;"
+Cre02.g095127	GMM:3.5	"minor CHO metabolism.others"	Chloroplast				"g1900.t1;Cre11.g473550.t1.1;Cre11.g473550.t1.1;g1900.t1"		
+Cre02.g089311			"Secretory pathway"	GO:0003993	"acid phosphatase activity"		g1666.t1		
+Cre02.g098500			Mitochondrion				"g2003.t1;Cre02.g098500.t1.1"		
+Cre02.g084800	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006259;GO:0005694;GO:0005524;GO:0003824;GO:0003677;GO:0000737"	"DNA metabolic process;chromosome;ATP binding;catalytic activity;DNA binding;DNA catabolic process, endonucleolytic"	SPO11A	"g1565.t1;Cre02.g084800.t1.1;SPO11A;Cre02.g084800.t1.1;g1565.t1;SPO11A;g1565.t1;Cre02.g084800.t1.1;SPO11A"	"SPO11A;SPO11A;SPO11A"	"Topoisomerase VI subunit A (type IIB), involved in meiosis, homolog of eukaryotic SPO11; ; Chlamydomonas has at two homologues.;Topoisomerase VI subunit A (type IIB), involved in meiosis, homolog of eukaryotic SPO11; ; Chlamydomonas has at two homologues.;Topoisomerase VI subunit A (type IIB), involved in meiosis, homolog of eukaryotic SPO11; ; Chlamydomonas has at two homologues."
+Cre02.g143087									
+Cre02.g094050				GO:0003824	"catalytic activity"	PIGO	"PIGO;PIG-O;g1777.t1;PIGO;PIG-O;g1777.t1"	"PIGO1;PIGO1"	"functions in the transfer of ethanolaminephosphate (EtNP) to the third mannose in the GPI anchor; usually associated with PIG-F, but PIG-F is missing in Chlorophyceae and Trebouxiophyceae;functions in the transfer of ethanolaminephosphate (EtNP) to the third mannose in the GPI anchor; usually associated with PIG-F, but PIG-F is missing in Chlorophyceae and Trebouxiophyceae"
+Cre02.g142747									
+Cre02.g118900						MYG1	"g2467.t1;Cre02.g118900.t1.1;MYG1"	MYG1	"Highly conserved expressed protein; homolog of mouse MYG1 (GAMM1), a highly conserved gene from autonomously proliferating mouse melanocytes. Contains a putative metal-dependent hydrolase domain. Similar to GAMM1 protein of Arabidopsis thaliana"
+Cre02.g082700	"GMM:9.7;GMM:29.1"	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase;protein.aa activation"	Mitochondrion	"GO:0055114;GO:0016627;GO:0016021;GO:0006784"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;integral component of membrane;heme a biosynthetic process"	COX15	"g1517.t1;COX15;Cre02.g082700.t1.1"	COX15	"involved in assembly of mitochondrial complex IV"
+Cre02.g109100	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	"Secretory pathway"	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE23	"g2236.t1;PDE23;PDE23;g2236.t1;PDE23;g2236.t1;PDE23;g2236.t1;PDE23;g2236.t1;PDE23;g2236.t1"		"Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain"
+Cre02.g074000	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"				POC18	"POC18;g1312.t1;POC18;g1312.t1;POC18;g1312.t1;g1312.t1;POC18;g1312.t1;POC18;POC18;g1312.t1;POC18;g1312.t1"	"POC18;POC18;POC18;POC18;POC18;POC18;POC18"	"Found in basal body proteome; FABP ""prototypical cilia""-class protein in human centrosome; Related to TBC1D31 in humans;;Found in basal body proteome; FABP ""prototypical cilia""-class protein in human centrosome; Related to TBC1D31 in humans;;Found in basal body proteome; FABP ""prototypical cilia""-class protein in human centrosome; Related to TBC1D31 in humans;;Found in basal body proteome; FABP ""prototypical cilia""-class protein in human centrosome; Related to TBC1D31 in humans;;Found in basal body proteome; FABP ""prototypical cilia""-class protein in human centrosome; Related to TBC1D31 in humans;;Found in basal body proteome; FABP ""prototypical cilia""-class protein in human centrosome; Related to TBC1D31 in humans;;Found in basal body proteome; FABP ""prototypical cilia""-class protein in human centrosome; Related to TBC1D31 in humans;"
+Cre02.g095058			"Secretory pathway"				"g1832.t1;Cre11.g470700.t1.1"		
+Cre02.g116350			"Secretory pathway"				"g2408.t1;Cre02.g116350.t1.1"		
+Cre02.g100200	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion			NUOP3	"Cre02.g100200.t1.1;g2040.t1;g2040.t1;Cre02.g100200.t1.1"	"NUOP3;NUOP3"	"Mitochondrial NADH:ubiquinone oxidoreductase (Complex I) 22 kDa subunit precursor, mitochondrial [AAS58502]; similar to At3g07480 gene product; Plant-specific subunit;;Mitochondrial NADH:ubiquinone oxidoreductase (Complex I) 22 kDa subunit precursor, mitochondrial [AAS58502]; similar to At3g07480 gene product; Plant-specific subunit;"
+Cre02.g092900	GMM:23.1.2.31	"nucleotide metabolism.synthesis.purine.GMP synthetase"		"GO:0016787;GO:0006541;GO:0006177;GO:0006164;GO:0005524;GO:0003922"	"hydrolase activity;glutamine metabolic process;GMP biosynthetic process;purine nucleotide biosynthetic process;ATP binding;GMP synthase (glutamine-hydrolyzing) activity"	GUA1	"g1742.t1;Cre02.g092900.t1.1;GUA1"	GUA1	
+Cre02.g096700	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		g1964.t1		
+Cre02.g095148			Chloroplast				"Cre11.g474500.t1.1;Cre11.g474500.t1.2;g1921.t1"		
+Cre02.g100950			Mitochondrion						
+Cre02.g085750	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	"Secretory pathway"				g1587.t1		
+Cre02.g106900							"g2191.t1;Cre02.g106900.t1.1;g2191.t1;Cre02.g106900.t1.1"		
+Cre02.g143050	GMM:29.2.1.2.2.99	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.unknown"				RPP2	"Cre02.g143050.t1.1;RPP2;g2624.t1"	RPLP2	"Cytosolic 80S ribosomal protein P2; Cytosolic 60S large ribosomal subunit protein P2"
+Cre02.g105026			Mitochondrion				g2152.t1		
+Cre02.g089650			"Secretory pathway"						
+Cre02.g091850	"GMM:13.2.6.3;GMM:11.9.4.3"	"amino acid metabolism.degradation.aromatic aa.tryptophan;lipid metabolism.lipid degradation.beta-oxidation.enoyl CoA hydratase"	Mitochondrion	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"g1720.t1;Cre02.g091850.t1.1;g1720.t1;Cre02.g091850.t1.1"		
+Cre02.g141046									
+Cre02.g077800	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			FAP310	"g1404.t1;Cre02.g077800.t1.1;CSE13;CSE13;Cre02.g077800.t1.1;g1404.t1"	"FAP310;FAP310"	"Predicted protein of CSE family: belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196). Potential amidation site at C-terminus for peptidylglycine alpha-amidating monooxygenase. Related to Cre03 g204500 chemotactic modulator;Predicted protein of CSE family: belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196). Potential amidation site at C-terminus for peptidylglycine alpha-amidating monooxygenase. Related to Cre03 g204500 chemotactic modulator"
+Cre02.g095113	"GMM:31.1.1.2;GMM:31.1"	"cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"				TFC-E	"Cre11.g472900.t1.1;g1886.t1;DIV24;TFC-E;g1886.t1;DIV24;TFC-E;Cre11.g472900.t1.1"	"TFCE1;TFCE1"	"ts-lethal mutations mitotic spindle formation (PMID 25336509);ts-lethal mutations mitotic spindle formation (PMID 25336509)"
+Cre02.g095059							"g1833.t1;Cre11.g470750.t1.1;g1833.t1;Cre11.g470750.t1.1"		
+Cre02.g099900			Chloroplast						
+Cre02.g090700	"GMM:30.6;GMM:3.6;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	MAPKKK8	"g1696.t1;MAPKKK8"		"Mitogen Activated Protein Kinase Kinase Kinase Homolog 8, putative"
+Cre02.g147150			Chloroplast				"g2517.t1;g2517.t1;g2517.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g077451			Mitochondrion				"Cre02.g077450.t1.3;g1396.t1"		
+Cre02.g141550	GMM:29.5	protein.degradation		"GO:0006508;GO:0004176"	"proteolysis;ATP-dependent peptidase activity"	LON	"Cre02.g141550.t1.1;g2659.t1;g2659.t1;Cre02.g141550.t1.1;Cre02.g141550.t1.1;g2659.t1"		
+Cre02.g119526									
+Cre02.g147850	GMM:29.6.2.5	"protein.folding.chaperones and co-chaperones.HSP100s"	Mitochondrion	"GO:0070011;GO:0016887;GO:0009376;GO:0005737;GO:0005524"	"peptidase activity, acting on L-amino acid peptides;ATPase activity;HslUV protease complex;cytoplasm;ATP binding"	HSLU2	"Cre02.g147850.t1.1;HUV2;g2504.t1;CLPY2"	HSLU2	"Similar to eubacterial ClpY (HslU), ATP-dependent subunit of the HslUV protease; probably directed to the mitochondrion; null-allele mutant was isolated (PMID 29743196)"
+Cre02.g143400	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	"Secretory pathway"	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE27	"g2615.t1;PDE27;PDE27;g2615.t1;g2615.t1;PDE27;PDE27;g2615.t1"		"Metal-dependent phosphohydrolase;Metal-dependent phosphohydrolase;Metal-dependent phosphohydrolase;Metal-dependent phosphohydrolase"
+Cre02.g144006			Mitochondrion				g2598.t1		
+Cre02.g120200			Chloroplast				"Cre02.g120200.t1.1;g2496.t1"		
+Cre02.g108550	GMM:34.3	"transport.amino acids"		"GO:0016020;GO:0015171;GO:0003333"	"membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport"	AOC3	"AOC3;g2225.t1"	AOC3	"amino acid carrier 3; belongs to APC (Amino acid Polyamine organoCation) family"
+Cre02.g147550							"g2510.t1;g2510.t1"		
+Cre02.g142266	"GMM:26.1;GMM:16.1.4.7"	"misc.misc2;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase"	Chloroplast	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"		"g2761.t1;Cre15.g645950.t1.2;Cre15.g645950.t1.1;g2761.t1;Cre15.g645950.t1.2;Cre15.g645950.t1.1;Cre15.g645950.t1.2;Cre15.g645950.t1.1;g2761.t1"	"CYP97A5;CYP97A5;CYP97A5"	
+Cre02.g086076	GMM:29.1.30	"protein.aa activation.pseudouridylate synthase"	Chloroplast			PUS4	"g1594.t2;Cre02.g086076.t1.1;g1594.t2;Cre02.g086076.t1.1;g1594.t2;Cre02.g086076.t1.1;Cre02.g086076.t1.1;g1594.t2;g1594.t2;Cre02.g086076.t1.1"		
+Cre02.g101100			Chloroplast				g2063.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre02.g146200	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g2536.t1;g2536.t1"		
+Cre02.g100900							"g2059.t1;Cre02.g100900.t1.1;Cre02.g100900.t1.1;g2059.t1"		
+Cre02.g080800			Mitochondrion				"g1477.t1;Cre02.g080800.t1.1;Cre02.g080800.t1.1;g1477.t1"		
+Cre02.g109150			"Secretory pathway"				g2238.t1		
+Cre02.g141906									
+Cre02.g108200			Chloroplast			CGL80	"g2218.t1;g2218.t1"	"CGL80;CGL80"	
+Cre02.g106350						CGL68	"g2180.t1;Cre02.g106350.t1.1;HAP5"	CGL68	"Conserved in the Green Lineage"
+Cre02.g109200							"g2239.t1;g2239.t1"	"OPR123;OPR123"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre02.g075400							"g1349.t2;g1349.t2;g1349.t2;g1349.t2;g1349.t2;g1349.t2;g1349.t2;g1349.t2;g1349.t2;g1349.t2"		
+Cre02.g117300	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion			MRPL45	"Cre02.g117300.t1.1;g2429.t1;MRPL45"		
+Cre02.g144002			Chloroplast	"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS20	"PUS20;g2595.t2"		
+Cre02.g142106									
+Cre02.g143407							"g2830.t1;Cre38.g785250.t1.1;g2830.t1;Cre38.g785250.t1.1"		
+Cre02.g093800	GMM:21.1	redox.thioredoxin				NRX3	"g1772.t1;Cre02.g093800.t1.1;NRX3"	NRX3	"related to animal thioredoxin, nucleoredoxin; sequence appears N-truncated, possibly a pseudogene; upstream Cr_02_08280 not related to NRX proteins; closely related to nearby NRX1 and divergent NRX2"
+Cre02.g090750							"Cre02.g090750.t1.1;g1697.t1"		
+Cre02.g093350							"g1762.t2;g1762.t2"		
+Cre02.g106250	GMM:27.4	"RNA.RNA binding"				LAL2	"g2178.t1;LAL2;Cre02.g106250.t1.1;g2178.t1;Cre02.g106250.t1.1;LAL2"		"contains an N-terminal La domain and a RRM motif; its closest homologues in Arabidopsis are LA-like proteins with a single RRM and an N-terminal extension (AT5G46250, AT3G19090), believed not to fulfill the stabilization function for tRNA precursors (PMID: 17459889); coulnd be involved in ribosome biogenesis;contains an N-terminal La domain and a RRM motif; its closest homologues in Arabidopsis are LA-like proteins with a single RRM and an N-terminal extension (AT5G46250, AT3G19090), believed not to fulfill the stabilization function for tRNA precursors (PMID: 17459889); coulnd be involved in ribosome biogenesis"
+Cre02.g078885	GMM:34	transport	Mitochondrion	"GO:0008536;GO:0006886"	"Ran GTPase binding;intracellular protein transport"		"g1434.t1;Cre64.g793058.t1.1;Cre64.g793058.t1.2"		
+Cre02.g084450	"GMM:26.7;GMM:13.2.2.2"	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH10	"g1558.t1;PHX5;P4H-10;Cre02.g084450.t1.1;Cre02.g084450.t1.1;P4H-10;g1558.t1;PHX5"	"PFH10;PFH10"	"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. (27) [PMID: 17220203] as v2 C_390100; contains C-terminal ShK domain; next to PFH9; Target of CRR1;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. (27) [PMID: 17220203] as v2 C_390100; contains C-terminal ShK domain; next to PFH9; Target of CRR1"
+Cre02.g095075							"Cre11.g471450.t1.1;g1849.t1;Cre11.g471450.t1.2"		
+Cre02.g095082	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006334;GO:0005634"	"nucleosome assembly;nucleus"		"Cre11.g471800.t1.1;g1856.t1"		
+Cre02.g098050			"Secretory pathway"				"Cre02.g098050.t1.1;g1994.t1;Cre02.g098050.t1.1;g1994.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g142346									
+Cre02.g088151			"Secretory pathway"						
+Cre02.g142907			Chloroplast				g2804.t1		
+Cre02.g113300			Chloroplast			OPR6	"g2333.t1;g2333.t1;g2333.t1;g2333.t1;g2333.t1;g2333.t1"	"OPR6;OPR6;OPR6;OPR6;OPR6;OPR6"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre02.g143587							g2839.t1		
+Cre02.g111400			"Secretory pathway"				"g2291.t1;Cre02.g111400.t1.1"		
+Cre02.g141100	"GMM:33.99;GMM:1.1.99"	"development.unspecified;PS.lightreaction.unspecified"	Chloroplast			CPL23	"g2668.t1;Cre02.g141100.t1.1;g2668.t1;Cre02.g141100.t1.1;g2668.t1;Cre02.g141100.t1.1"	"CPL23;CPL23;CPL23"	"chloroplast lumenal protein;chloroplast lumenal protein;chloroplast lumenal protein"
+Cre02.g081050	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			FAP24	"Cre02.g081050.t1.1;g1482.t1"	FAP24	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome"
+Cre02.g104400			"Secretory pathway"	GO:0006355	"regulation of transcription, DNA-templated"		"g2136.t1;g2136.t1;g2136.t1"		
+Cre02.g114150							"g2357.t1;g2357.t1;g2357.t1;g2357.t1;g2357.t1"		
+Cre02.g103350	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"		GO:0016884	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor"		g2111.t1		
+Cre02.g082050	GMM:31.3	cell.cycle					"g1503.t1;g1503.t1"		
+Cre02.g099055			"Secretory pathway"				"Cre02.g099055.t1.1;g2015.t1;g2015.t1;Cre02.g099055.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g146550							g2530.t1		
+Cre02.g141786	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"		"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE25	"PDE25;Cre15.g647050.t1.1;g2731.t1;g2731.t1;PDE25;Cre15.g647050.t1.1"		"Calmodulin dependent PDE1B1 protein from Homo Sapiens is closest relative;Calmodulin dependent PDE1B1 protein from Homo Sapiens is closest relative"
+Cre02.g110100	GMM:3.3	"minor CHO metabolism.sugar alcohols"	"Secretory pathway"	"GO:0016021;GO:0006952"	"integral component of membrane;defense response"	MLO1	"g2259.t1;MLO1;MLO1;g2259.t1"		"Integral membrane protein, plant GCPR-like Mlo family; contains a C-terminal EF-hand domain pair;Integral membrane protein, plant GCPR-like Mlo family; contains a C-terminal EF-hand domain pair"
+Cre02.g109000			"Secretory pathway"	"GO:0042546;GO:0016020;GO:0008107"	"cell wall biogenesis;membrane;galactoside 2-alpha-L-fucosyltransferase activity"		"Cre02.g109000.t1.1;g2234.t1;g2234.t1;Cre02.g109000.t1.1;g2234.t1;Cre02.g109000.t1.1;Cre02.g109000.t1.1;g2234.t1;Cre02.g109000.t1.1;g2234.t1;Cre02.g109000.t1.1;g2234.t1;Cre02.g109000.t1.1;g2234.t1;Cre02.g109000.t1.1;g2234.t1;Cre02.g109000.t1.1;g2234.t1"		
+Cre02.g118750							g2464.t1	POB17	"Found in basal body proteome; Related to ALG11 in humans"
+Cre02.g095088			Chloroplast				g1862.t1		
+Cre02.g143287									
+Cre02.g089950	GMM:31.6.1.3.2.2	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B"				IFT20	"Cre02.g089950.t1.1;g1680.t1"	IFT20	"Component of IFT-B2 particle"
+Cre02.g076700			Chloroplast				"g1380.t1;g1380.t1;g1380.t1"		
+Cre02.g091700	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				RIB72	"Cre02.g091700.t1.1;g1718.t1;Cre02.g091700.t1.1;g1718.t1"	"RIB72;RIB72"	"72 kDa filamentous microtubule inner protein (fMIP);72 kDa filamentous microtubule inner protein (fMIP)"
+Cre02.g083700			Chloroplast			LSP1	"LSP1;g1541.t1"	LSP1	"Putative signal transducer for phototaxis; essential for normal phototaxis behavior [PMID: 15657081, independent sequence: AB194902]"
+Cre02.g082300						SUR6	"SUR6;Cre02.g082300.t1.1;g1508.t1"	SUR6	"putative component of the nucleolar matrix with strong binding capacity for nucleic acids. Surfeit genes are believed to play a role as housekeeping genes. While tightly clustered in vertebrates, surfeit loci seem unlinked in invertebrates"
+Cre02.g115400	GMM:26.16	misc.myrosinases-lectin-jacalin	"Secretory pathway"				"g2385.t1;g2385.t1"		
+Cre02.g083273			"Secretory pathway"						
+Cre02.g091226			"Secretory pathway"						
+Cre02.g073826							g1308.t1		
+Cre02.g113100				"GO:0006850;GO:0005743"	"mitochondrial pyruvate transport;mitochondrial inner membrane"		"Cre02.g113100.t1.1;g2329.t1;Cre02.g113100.t1.1;g2329.t1"		
+Cre02.g103770			Chloroplast				"g2121.t1;Cre02.g103770.t1.1;Cre02.g103770.t1.1;g2121.t1;g2121.t1;Cre02.g103770.t1.1;Cre02.g103770.t1.1;g2121.t1"		
+Cre02.g094900	GMM:29.7	protein.glycosylation					"g1795.t1;g1795.t1;g1795.t1;g1795.t1"		
+Cre02.g093084			Chloroplast						
+Cre02.g102551			Mitochondrion			CSV1	"CSV1;g2094.t1;g2094.t1;CSV1"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre02.g110550							"g2269.t1;g2269.t1;g2269.t1;g2269.t1"		
+Cre02.g114575							g2367.t1		
+Cre02.g097221			"Secretory pathway"						
+Cre02.g113752							"g2347.t1;Cre02.g113752.t1.1;g2347.t1;Cre02.g113752.t1.1"		
+Cre02.g075050	GMM:34.7	transport.phosphate		"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"	PTA1	"g1342.t1;PTA1;Cre02.g075050.t1.1"	PTA1	"gi 21218039 gb AB074874.1: Putative phosphate transporter homolog type A-1, similar to yeast Pho84 proton/phosphate symporter."
+Cre02.g112300	GMM:29.5.3	"protein.degradation.cysteine protease"		"GO:0006508;GO:0005622;GO:0004198"	"proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity"	MOT15	"g2312.t1;CAL3;CAL3;g2312.t1;CAL3;g2312.t1;CAL3;g2312.t1;CAL3;g2312.t1"	"MOT15;MOT15;MOT15;MOT15;MOT15"	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia;identified by comparative genomics as being present only in organisms having motile (MOT) cilia;identified by comparative genomics as being present only in organisms having motile (MOT) cilia;identified by comparative genomics as being present only in organisms having motile (MOT) cilia;identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre02.g144400	"GMM:29.2.1.1.4.1;GMM:29.2.1.1.3.1.12;GMM:29.2.1.1.2.2.2;GMM:29.2.1.1.1.1.12"	"protein.synthesis.ribosomal protein.prokaryotic.non-organellar.30S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.30S subunit.S12;protein.synthesis.ribosomal protein.prokaryotic.mitochondrion.50S subunit.L2;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S12"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPS12	"MRPS12;g2585.t1;uS12m"	MRPS12	
+Cre02.g095074	GMM:29.3.4.3	"protein.targeting.secretory pathway.vacuole"				VPS11	"g1848.t1;Cre11.g471400.t1.2;ROC12;VPS11;Cre11.g471400.t1.1"	VPS11	"Hypothetical conserved protein. Similar to VPS11 (vacuolar protein sorting-associated protein 11)-type proteins; Matsuo et al.'s (2008) roc12 (rhythm of chloroplast 12) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618]"
+Cre02.g101850	GMM:26.24	"misc.GCN5-related N-acetyltransferase"		GO:0008080	"N-acetyltransferase activity"		"NAT11;Cre02.g101850.t1.1;g2079.t1"		
+Cre02.g094350			Mitochondrion				"g1783.t1;g1783.t1;g1783.t1"		
+Cre02.g087600	GMM:28.99	DNA.unspecified		GO:0005524	"ATP binding"		"g1627.t1;SRH2"		"SNF2-related helicase. ChromoDB CHR342"
+Cre02.g115508				GO:0005515	"protein binding"		"g2388.t1;g2388.t1;g2388.t1;g2388.t1;g2388.t1;g2388.t1;g2388.t1;g2388.t1"		
+Cre02.g088850	"GMM:18.3.2;GMM:18"	"Co-factor and vitamine metabolism.riboflavin.riboflavin synthase;Co-factor and vitamine metabolism"	Chloroplast	"GO:0009349;GO:0009231"	"riboflavin synthase complex;riboflavin biosynthetic process"	RFS2	"g1656.t1;Cre02.g088850.t1.1;RFS2"	RFS2	"Encodes for 6,7-dimethyl-8-ribityllumazine (riboflavin) synthase"
+Cre02.g110250			Chloroplast			PCD2	"g2262.t1;PCD2;g2262.t1;PCD2"	"PCD2;PCD2"	
+Cre02.g106650	"GMM:30.3;GMM:3.3;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g2186.t1;g2186.t1;g2186.t1;g2186.t1"	"CDPK7;CDPK7;CDPK7;CDPK7"	"Identified as CrCDPK7 in [PMID: 23936117];Identified as CrCDPK7 in [PMID: 23936117];Identified as CrCDPK7 in [PMID: 23936117];Identified as CrCDPK7 in [PMID: 23936117]"
+Cre02.g104725							"g2143.t1;Cre02.g104729.t1.2;Cre02.g104729.t1.2;g2143.t1"		
+Cre02.g087300	GMM:25	C1-metabolism		"GO:0055114;GO:0004616"	"oxidation-reduction process;phosphogluconate dehydrogenase (decarboxylating) activity"		g1620.t1	HPR3	"Only active in the presence of NADPH"
+Cre02.g086700	GMM:31.4	"cell.vesicle transport"		"GO:0017119;GO:0006886"	"Golgi transport complex;intracellular protein transport"	COG7	"Cre02.g086700.t1.1;g1609.t1;COG7"	COG7	"Expressed protein. Similar to COG7, component of oligomeric golgi complex 7, involved in vesicle tethering and other Golgi functions"
+Cre02.g141486									
+Cre02.g078950	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP17	"MMP17;g1441.t1;g1441.t1;MMP17"	"MMP17;MMP17"	"Matrix metalloproteinase belonging to the M11 peptidase family;Matrix metalloproteinase belonging to the M11 peptidase family"
+Cre02.g084300	"GMM:18.8;GMM:18.5.2.8"	"Co-factor and vitamine metabolism.ubiquinone;Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.2-phytyl-1,4-naphthoquinone methyltransferase"	Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	COQ5	"MENG;g1555.t1;UMM2;COQ5C;Cre02.g084300.t1.1"	COQ5	"UbiE/COQ5 methyltransferase family; ortholog of AT1G23360, a 2-phytyl-1,4-naphthoquinone methyltransferase that catalyzes the final step in phylloquinone (vitamin K1) biosynthesis"
+Cre02.g076433							g1372.t1		
+Cre02.g145628							"Cre02.g145628.t1.1;g2550.t1;Cre02.g145628.t1.1;g2550.t1;Cre02.g145628.t1.1;g2550.t1"		
+Cre02.g116450	GMM:7.2.3	"OPP.non-reductive PP.ribulose-phosphate 3-epimerase"		"GO:0016857;GO:0005975"	"racemase and epimerase activity, acting on carbohydrates and derivatives;carbohydrate metabolic process"	RPE2	"Cre02.g116450.t1.1;g2410.t1;RPE2"	RPE2	"D-Ribulose-5-Phosphate 3-Epimerase (EC 2.7.1.19); Ribulose Phosphate epimerase; probable cytosolic form"
+Cre02.g080900	GMM:21.5	redox.peroxiredoxin	Mitochondrion	GO:0016491	"oxidoreductase activity"	PRX4	"Cre02.g080900.t1.1;g1479.t1;PRX4"	PRX4	"thioredoxin dependent peroxidase, N-terminal sequence predicted as a chloroplast targeting signal BUT the protein is more closely related to mitochondrial type II PRX from Arabidopsis (AtPRXIIF)"
+Cre02.g107300	"GMM:13.1.3.5.1;GMM:13.1.3.5"	"amino acid metabolism.synthesis.aspartate family.lysine.dihydrodipicolinate synthase;amino acid metabolism.synthesis.aspartate family.lysine"	Chloroplast	"GO:0016829;GO:0008152"	"lyase activity;metabolic process"	DPS1	"DPS1;g2200.t1;Cre02.g107300.t1.1;DHDPS"	DPS1	"converts aspartate-4-semialdehyde to L-2,3-dihydropicolinate (EC:4.2.1.520); first committed step of lysine biosynthesis; expected to be plastidic based on homology"
+Cre02.g086850			Chloroplast				"g1612.t1;g1612.t1"		
+Cre02.g095450	"GMM:31.3.1;GMM:29.6.3.1"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs"		GO:0006457	"protein folding"	FKB16-6	"FKB9;FKB16-6;Cre02.g095450.t1.1;g1938.t1"	FKB16F	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); probably directed to thylakoid lumen (homology to AtFKBP16-1 and bipartite cTP: 51 + RR motif); [PMID: 15701785]; linked to FKB16-8 and FKB17-2"
+Cre02.g106450	GMM:11.8.10	"lipid metabolism.exotics (steroids, squalene etc).phosphatidylcholine-sterol O-acyltransferase"	"Secretory pathway"	GO:0005524	"ATP binding"		"g2182.t2;LCA1;LCA1;g2182.t2;g2182.t2;LCA1"		"P-loop containing nucleoside triphosphate hydrolases superfamily protein; very similar to Cre02.g106450;P-loop containing nucleoside triphosphate hydrolases superfamily protein; very similar to Cre02.g106450;P-loop containing nucleoside triphosphate hydrolases superfamily protein; very similar to Cre02.g106450"
+Cre02.g110000			"Secretory pathway"				"g2257.t1;g2257.t1;g2257.t1;g2257.t1;g2257.t1;g2257.t1;g2257.t1"		
+Cre02.g105800			"Secretory pathway"				g2169.t1		
+Cre02.g075500			Mitochondrion				g1351.t1		
+Cre02.g076250	GMM:29.2.4	protein.synthesis.elongation	Chloroplast	GO:0005525	"GTP binding"	EFG1	g1368.t1	EFG1	"Similar to chloroplast elongation factor G, (fusA), GTP binding; likely locus for previously described C. reinhardtii fsr1 (fus-1) mutant resistant to fusidic acid"
+Cre02.g103050			Chloroplast				"Cre02.g103050.t1.1;g2105.t1;g2105.t1;Cre02.g103050.t1.1;Cre02.g103050.t1.1;g2105.t1"		
+Cre02.g084900							"g1568.t1;Cre02.g084900.t1.1"	RPAP3	"Homolog of RPAP3 In mammals; Part of a R2TP-like complex formed by RVB1 (Cre09.g414050), RVB2 (Cre10.g442700), MOT48 (Cre10.g467050), and RPAP3 (Cre02.g084900);"
+Cre02.g095111	GMM:29.3.4.3	"protein.targeting.secretory pathway.vacuole"	"Secretory pathway"			VSR1	"VSR1;g1884.t1;Cre11.g472850.t1.1;Cre11.g472850.t1.2"	VSR1	
+Cre02.g095053				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre02.g112050							"g2306.t1;g2306.t1;g2306.t1"		
+Cre02.g108900						CAM6	"g2232.t1;CAM6;Cre02.g108900.t1.1"		
+Cre02.g145451							"g2557.t1;Cre02.g145451.t1.1;Cre02.g145451.t1.1;g2557.t1"		
+Cre02.g091950	"GMM:30.1.1;GMM:23.1.2"	"signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG45	"CYG45;g1722.t1;g1722.t1;CYG45;g1722.t1;CYG45;g1722.t1;CYG45;CYG45;g1722.t1"		"Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre02.g141406	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723"	"DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance"		"Cre15.g642250.t1.2;Cre15.g642250.t1.1;g2708.t1"		
+Cre02.g111200							g2285.t1		
+Cre02.g105950				"GO:0006355;GO:0003713"	"regulation of transcription, DNA-templated;transcription coactivator activity"	FAP174	"Cre02.g105950.t1.1;g2172.t1"	FAP174	"Found in the flagellar proteome; MYCBP-1 homolog; AKAP interactor in the central pair; Interacts with AKAP240 to regulate ciliary beating"
+Cre02.g105750							"g2168.t1;g2168.t1"		
+Cre02.g119000	GMM:31.1	cell.organisation		GO:0005777	peroxisome	PEX19	"g2469.t1;g2469.t1;g2469.t1"	"PEX19;PEX19;PEX19"	"Expressed protein similar to Pex19, a farnesylated protein involved in import of proteins into peroxisomes.;Expressed protein similar to Pex19, a farnesylated protein involved in import of proteins into peroxisomes.;Expressed protein similar to Pex19, a farnesylated protein involved in import of proteins into peroxisomes."
+Cre02.g073550	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0006334;GO:0005634"	"nucleosome assembly;nucleus"		"Cre02.g073550.t1.1;g1302.t1;Cre02.g073550.t1.1;g1302.t1"		"Nucleosome/chromatin assembly complex protein (NAP). ChromoDB NFA344;Nucleosome/chromatin assembly complex protein (NAP). ChromoDB NFA344"
+Cre02.g104300			Mitochondrion				g2134.t1		
+Cre02.g082500	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast	"GO:0042651;GO:0015979;GO:0009522;GO:0005516"	"thylakoid membrane;photosynthesis;photosystem I;calmodulin binding"	PSAN	"g1512.t1;g1512.t1;g1512.t1"	"PSAN1;PSAN1;PSAN1"	"Chloroplast precursor;Chloroplast precursor;Chloroplast precursor"
+Cre02.g144650	GMM:34.7	transport.phosphate	"Secretory pathway"	"GO:0016020;GO:0006817;GO:0005315"	"membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity"	PTB12	"g2578.t1;Cre02.g144650.t1.1;PTB12;Cre02.g144650.t1.1;PTB12;g2578.t1"	"PTB12;PTB12"	"Putative phosphate transporter, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters; present in a cluster of four highly related PTB family members on scaffold 24, including PTB9, PTB5 and PTB4.;Putative phosphate transporter, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters; present in a cluster of four highly related PTB family members on scaffold 24, including PTB9, PTB5 and PTB4."
+Cre02.g141106			Mitochondrion				"Cre15.g642650.t1.1;g2689.t1;g2689.t1;Cre15.g642650.t1.1"		
+Cre02.g147600			Chloroplast				g2509.t1		
+Cre02.g086456							"g1604.t3;Cre02.g086450.t2.1;Cre02.g086456.t1.1"		
+Cre02.g142700							"g2633.t1;Cre02.g142700.t1.1"		
+Cre02.g095102	"GMM:31.4;GMM:17.2.2"	"cell.vesicle transport;hormone metabolism.auxin.signal transduction"		GO:0035091	"phosphatidylinositol binding"	VPS5C	"Cre11.g472500.t1.2;Cre11.g472500.t1.1;g1875.t1;VPS5C;Cre11.g472500.t1.1;g1875.t1;Cre11.g472500.t1.2;VPS5C;g1875.t1;VPS5C;Cre11.g472500.t1.1;Cre11.g472500.t1.2;Cre11.g472500.t1.1;g1875.t1;Cre11.g472500.t1.2;VPS5C"	"VPS5C;VPS5C;VPS5C;VPS5C"	"Expressed Protein. Similar to VPS5/SNX1, component of Retromer Coat complex involved in endosomal to Golgi trafficking.;Expressed Protein. Similar to VPS5/SNX1, component of Retromer Coat complex involved in endosomal to Golgi trafficking.;Expressed Protein. Similar to VPS5/SNX1, component of Retromer Coat complex involved in endosomal to Golgi trafficking.;Expressed Protein. Similar to VPS5/SNX1, component of Retromer Coat complex involved in endosomal to Golgi trafficking."
+Cre02.g095042									
+Cre02.g097500	"GMM:30.6;GMM:30.2.8.2;GMM:29.4"	"signalling.MAP kinases;signalling.receptor kinases.leucine rich repeat VIII.type 2;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g1984.t1;g1984.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre02.g090500	"GMM:29.2.3;GMM:29.2.2.3.5;GMM:28.1"	"protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL10	"HEL10;g1690.t1"		
+Cre02.g084600							"Cre02.g084600.t1.1;g1561.t1;g1561.t1;Cre02.g084600.t1.1;Cre02.g084600.t1.1;g1561.t1"		
+Cre02.g095080			"Secretory pathway"				"Cre11.g471700.t1.1;g1854.t1;Cre11.g471700.t1.2"		
+Cre02.g087551	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"	Mitochondrion	GO:0042147	"retrograde transport, endosome to Golgi"		"Cre02.g087550.t1.3;g1626.t1;g1626.t1;Cre02.g087550.t1.3;Cre02.g087550.t1.3;g1626.t1"		
+Cre02.g113450							g2337.t1		
+Cre02.g096455							"Cre02.g096455.t1.1;g1959.t1"		
+Cre02.g115583									
+Cre02.g141686			Mitochondrion						
+Cre02.g095133			Chloroplast				"Cre11.g473800.t1.1;Cre11.g473800.t1.2;g1906.t1"		
+Cre02.g103426									
+Cre02.g141005									
+Cre02.g082600			Chloroplast				"g1515.t1;g1515.t1;g1515.t1;g1515.t1;g1515.t1;g1515.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre02.g144900	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	GO:0016787	"hydrolase activity"	MPA4	"g2571.t1;MPA4"		
+Cre02.g109750			"Secretory pathway"				"g2252.t1;g2252.t1;g2252.t1"		
+Cre02.g087250			"Secretory pathway"				g1619.t1		
+Cre02.g095032									
+Cre02.g143047							g2812.t1		
+Cre02.g077550			"Secretory pathway"			PHC62	"g1398.t1;PHC62;Cre02.g077550.t1.1;g1398.t1;Cre02.g077550.t1.1;PHC62;g1398.t1;Cre02.g077550.t1.1;PHC62;Cre02.g077550.t1.1;PHC62;g1398.t1;PHC62;Cre02.g077550.t1.1;g1398.t1;g1398.t1;Cre02.g077550.t1.1;PHC62;g1398.t1;PHC62;Cre02.g077550.t1.1"		
+Cre02.g080350	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		"GO:0036459;GO:0016579;GO:0008270"	"thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination;zinc ion binding"		"g1468.t1;g1468.t1"		
+Cre02.g083100			"Secretory pathway"			PRL1	"PRL1;Cre02.g083100.t1.1;g1528.t1"		"CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein"
+Cre02.g142707									
+Cre02.g118350						MFT14	"g2456.t1;MFT14;MFT14;g2456.t1"		"Permease;Permease"
+Cre02.g105200			"Secretory pathway"	GO:0006629	"lipid metabolic process"		"g2156.t1;Cre02.g105200.t1.1;g2156.t1;Cre02.g105200.t1.1"		
+Cre02.g075100	GMM:35.1.27	"not assigned.no ontology.tetratricopeptide repeat (TPR)"	Mitochondrion			TPR3	"g1343.t2;TPR3"	TPR3	"TPR protein with good similarity to human TTC1 (TPR1; Q99614); Co-orthologous to AT2G23920, AT4G30480 in Arabidopsis thaliana; May be involved in protein folding [PMID: 8836031];"
+Cre02.g142667			Mitochondrion						
+Cre02.g117400				GO:0055114	"oxidation-reduction process"		g2433.t1		
+Cre02.g093950	GMM:23.4.3	"nucleotide metabolism.phosphotransfer and pyrophosphatases.uridylate kinase"	Chloroplast	"GO:0009041;GO:0006221"	"uridylate kinase activity;pyrimidine nucleotide biosynthetic process"		"g1775.t1;Cre02.g093950.t1.1;PUMPKIN"		"Homolog of Arabidopsis plastid UMP kinase (PUMPKIN) which seems to play a role during RNA processing"
+Cre02.g095039			Chloroplast						
+Cre02.g090451			Chloroplast				"Cre02.g090450.t1.3;g1689.t1"		
+Cre02.g117000	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Chloroplast	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG21	"CYG21;g2422.t1;g2422.t1;CYG21"		"similar to guanylate cyclase 1 (GCYB2) from Homo sapiens;similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre02.g108300			Chloroplast				"g2220.t1;g2220.t1;g2220.t1"		
+Cre02.g086750	GMM:27.2	RNA.transcription		"GO:0006351;GO:0003899"	"transcription, DNA-templated;DNA-directed RNA polymerase activity"		"g1610.t2;g1610.t2"		
+Cre02.g100350							"g2043.t1;Cre02.g100350.t1.1"		
+Cre02.g095136			Chloroplast				"g1909.t1;Cre11.g473930.t1.2;Cre11.g473930.t1.1"		
+Cre02.g094600			Chloroplast				"g1789.t1;g1789.t1;g1789.t1;g1789.t1;g1789.t1;g1789.t1;g1789.t1;g1789.t1;g1789.t1"		
+Cre02.g076400	GMM:29.3.4.3	"protein.targeting.secretory pathway.vacuole"				VPS25	"g1371.t1;VPS25;Cre02.g076400.t1.1"	VPS25	"Expressed Protein. Similar to VPS25-like proteins, components of the ESCRT-II complex involved in protein sorting at the MVB."
+Cre02.g079351			"Secretory pathway"				"g1449.t1;g1449.t1;g1449.t1"		
+Cre02.g079850	GMM:28.2	DNA.repair		"GO:0006281;GO:0003684"	"DNA repair;damaged DNA binding"	POLK1	"POLK1;g1459.t1;g1459.t1;POLK1;g1459.t1;POLK1"	"POLK1;POLK1;POLK1"	"Homologous to eukaryotic DNA polymerase kappa; nuclear; functions in translesion synthesis (TLS) of damaged DNA; null-allele mutant was isolated (PMID 29743196);Homologous to eukaryotic DNA polymerase kappa; nuclear; functions in translesion synthesis (TLS) of damaged DNA; null-allele mutant was isolated (PMID 29743196);Homologous to eukaryotic DNA polymerase kappa; nuclear; functions in translesion synthesis (TLS) of damaged DNA; null-allele mutant was isolated (PMID 29743196)"
+Cre02.g096750			"Secretory pathway"						
+Cre02.g104750			"Secretory pathway"				"g2144.t1;g2144.t1"		
+Cre02.g144450						FAP1	"Cre02.g144450.t1.1;g2584.t1;Cre02.g144450.t1.1;g2584.t1"	"FAP1;FAP1"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre02.g101200	"GMM:34.99;GMM:29.3.4.99"	"transport.misc;protein.targeting.secretory pathway.unspecified"					"g2065.t1;Cre02.g101200.t1.1"		
+Cre02.g142446									
+Cre02.g119700	"GMM:31.2;GMM:29.5.11.20"	"cell.division;protein.degradation.ubiquitin.proteasom"	"Secretory pathway"	"GO:0009341;GO:0005975;GO:0004565"	"beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity"		"g2486.t1;g2486.t1"		
+Cre02.g080050				"GO:0008270;GO:0003677"	"zinc ion binding;DNA binding"		"Cre02.g080050.t1.1;g1462.t1"		
+Cre02.g088200	"GMM:21.1.1;GMM:21.1;GMM:1.1.1.3"	"redox.thioredoxin.PDIL;redox.thioredoxin;PS.lightreaction.photosystem II.biogenesis"	"Secretory pathway"	GO:0045454	"cell redox homeostasis"	RB60	"Cre02.g088200.t1.1;cPDI;PDI1;g1642.t1;Cre02.g088200.t1.1;cPDI;PDI1;g1642.t1;cPDI;Cre02.g088200.t1.1;g1642.t1;PDI1"	"RB60;RB60;RB60"	"Protein disulfide isomerase 1 (CrPDI1 [PMID: 16143836]. Located in the chloroplast and the endoplasmic reticulum. The Rb60 protein is part of a complex involved in the control of psbA mRNA translation by light; Potential thioredoxin target [PMID: 15123830];Protein disulfide isomerase 1 (CrPDI1 [PMID: 16143836]. Located in the chloroplast and the endoplasmic reticulum. The Rb60 protein is part of a complex involved in the control of psbA mRNA translation by light; Potential thioredoxin target [PMID: 15123830];Protein disulfide isomerase 1 (CrPDI1 [PMID: 16143836]. Located in the chloroplast and the endoplasmic reticulum. The Rb60 protein is part of a complex involved in the control of psbA mRNA translation by light; Potential thioredoxin target [PMID: 15123830]"
+Cre02.g143350	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	Chloroplast	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE6	"PDE6;g2617.t1;g2617.t1;PDE6;g2617.t1;PDE6;g2617.t1;PDE6;PDE6;g2617.t1;PDE6;g2617.t1"		"3',5'-cyclic-nucleotide phosphodiesterase. Similarity restricted to carboxy terminus. Most similar to PDE1 C of mouse;3',5'-cyclic-nucleotide phosphodiesterase. Similarity restricted to carboxy terminus. Most similar to PDE1 C of mouse;3',5'-cyclic-nucleotide phosphodiesterase. Similarity restricted to carboxy terminus. Most similar to PDE1 C of mouse;3',5'-cyclic-nucleotide phosphodiesterase. Similarity restricted to carboxy terminus. Most similar to PDE1 C of mouse;3',5'-cyclic-nucleotide phosphodiesterase. Similarity restricted to carboxy terminus. Most similar to PDE1 C of mouse;3',5'-cyclic-nucleotide phosphodiesterase. Similarity restricted to carboxy terminus. Most similar to PDE1 C of mouse"
+Cre02.g091150	GMM:29.3.4.2	"protein.targeting.secretory pathway.golgi"		"GO:0030127;GO:0008270;GO:0006888;GO:0006886"	"COPII vesicle coat;zinc ion binding;ER to Golgi vesicle-mediated transport;intracellular protein transport"	SEC24A	"g1704.t1;g1704.t1;g1704.t1;g1704.t1;g1704.t1;g1704.t1;g1704.t1;g1704.t1;g1704.t1;g1704.t1"	"SEC24A;SEC24A;SEC24A;SEC24A;SEC24A;SEC24A;SEC24A;SEC24A;SEC24A;SEC24A"	"Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex."
+Cre02.g110650			"Secretory pathway"				"Cre02.g110650.t1.1;g2271.t1;g2271.t1;Cre02.g110650.t1.1"		
+Cre02.g095043									
+Cre02.g115850							"g2398.t1;Cre02.g115850.t1.1"		
+Cre02.g074758	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG8	"CYG8;g1335.t2;Cre02.g074750.t1.3;Cre02.g074750.t1.3;CYG8;g1335.t2;Cre02.g074750.t1.3;CYG8;g1335.t2"		"C terminal domain similar to guanylate cyclase 1 from Homo sapiens; closely related to nearby CYG9;C terminal domain similar to guanylate cyclase 1 from Homo sapiens; closely related to nearby CYG9;C terminal domain similar to guanylate cyclase 1 from Homo sapiens; closely related to nearby CYG9"
+Cre02.g141386	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0005524;GO:0004386"	"ATP binding;helicase activity"				
+Cre02.g112150			"Secretory pathway"				"g2308.t1;Cre02.g112150.t1.1"		
+Cre02.g081300			Mitochondrion	GO:0016787	"hydrolase activity"		"g1488.t1;g1488.t1;g1488.t1"		
+Cre02.g114450			Chloroplast				"g2363.t1;Cre02.g114450.t1.1"		
+Cre02.g143547							"g2837.t1;Cre38.g785550.t1.1"		
+Cre02.g094650	GMM:3.5	"minor CHO metabolism.others"	Mitochondrion	GO:0005525	"GTP binding"		"g1790.t1;Cre02.g094650.t1.1;Cre02.g094650.t1.1;g1790.t1"		
+Cre02.g085650	GMM:28.99	DNA.unspecified		GO:0016888	"endodeoxyribonuclease activity, producing 5'-phosphomonoesters"		"g1585.t1;g1585.t1;g1585.t1;g1585.t1"		
+Cre02.g114800							"g2372.t1;Cre02.g114800.t1.1"		
+Cre02.g085400						CSC1	"g1580.t1;CSC1"		"function unknown; homologs in Gonium, not Volvox"
+Cre02.g107000	"GMM:31.3;GMM:31.2;GMM:29.4"	"cell.cycle;cell.division;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g2193.t1		
+Cre02.g111250									
+Cre02.g080750							"g1476.t1;Cre02.g080750.t1.1;g1476.t1;Cre02.g080750.t1.1;g1476.t1;Cre02.g080750.t1.1"		
+Cre02.g088250	GMM:11.1.2	"lipid metabolism.FA synthesis and FA elongation.acetyl CoA transacylase"				MCT2	"MCT2;g1643.t1;Cre02.g088250.t1.1;MCT2;g1643.t1;Cre02.g088250.t1.1;g1643.t1;MCT2;Cre02.g088250.t1.1;g1643.t1;MCT2;Cre02.g088250.t1.1"	"MCT2;MCT2;MCT2;MCT2"	
+Cre02.g107400							"g2202.t3;g2202.t3;g2202.t3;g2202.t3"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g102350	GMM:29.5.2	protein.degradation.autophagy				ATG3	"Cre02.g102350.t1.1;APG3;g2090.t1"	ATG3	"E2-like enzyme; involved in autophagy; plays a role in formation of Atg8p-phosphatidylethanolamine conjugates, which are involved in membrane dynamics during autophagy"
+Cre02.g112333	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g2313.t1		
+Cre02.g092400	GMM:29.3.1	protein.targeting.nucleus		"GO:0006810;GO:0005622"	"transport;intracellular"		g1732.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre02.g114700	"GMM:31.6.1.5.2;GMM:31.3.1;GMM:29.6.3.2"	"cell.motility.eukaryotes.radial spoke.stalk;cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	RSP12	"CYN17;g2370.t1;Cre02.g114700.t1.1"	RSP12	"peptidyl-prolyl cis-trans isomerase, cyclophilin-type; found in the flagellum radial spoke stalk (RSP12) [PMID: 16507594]"
+Cre02.g100533			Chloroplast						
+Cre02.g105100			Chloroplast				"Cre02.g105100.t1.1;g2154.t1"		
+Cre02.g141351									
+Cre02.g145550							"g2554.t1;Cre02.g145550.t1.1;Cre02.g145550.t1.1;g2554.t1"		
+Cre02.g080950			Chloroplast				"g1480.t1;Cre02.g080950.t1.1"		
+Cre02.g103800			"Secretory pathway"				g2123.t1		
+Cre02.g106800			Chloroplast				"g2189.t1;Cre02.g106800.t1.1;Cre02.g106800.t1.1;g2189.t1"		
+Cre02.g145850	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP112	"Cre02.g145850.t1.1;g2545.t1;Cre02.g145850.t1.1;g2545.t1;Cre02.g145850.t1.1;g2545.t1;Cre02.g145850.t1.1;g2545.t1;Cre02.g145850.t1.1;g2545.t1;g2545.t1;Cre02.g145850.t1.1"	"FAP112;FAP112;FAP112;FAP112;FAP112;FAP112"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre02.g095146							"Cre11.g474400.t1.1;g1919.t1;Cre11.g474400.t1.2"		
+Cre02.g098100	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion				"g1995.t1;Cre02.g098100.t1.1"		
+Cre02.g113376									
+Cre02.g144550	GMM:34.14	"transport.unspecified cations"	"Secretory pathway"	"GO:0055085;GO:0016021;GO:0015299;GO:0006812"	"transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport"		"g2582.t1;Cre02.g144550.t1.1;Cre02.g144550.t1.1;g2582.t1"		
+Cre02.g144005			"Secretory pathway"				g2597.t1		
+Cre02.g086000	GMM:14.1	S-assimilation.APS		GO:0003824	"catalytic activity"	ARS8	"ARS8;g1592.t1;ARS8;g1592.t1"	"ARS8;ARS8"	"Distantly related to nearby ARS6;Distantly related to nearby ARS6"
+Cre02.g107650			Chloroplast				"Cre02.g107650.t1.1;g2207.t1;Cre02.g107650.t1.1;g2207.t1;Cre02.g107650.t1.1;g2207.t1"		
+Cre02.g093450	"GMM:4.3.10;GMM:4.1.10;GMM:1.3.6"	"glycolysis.unclear/dually targeted.aldolase;glycolysis.cytosolic branch.aldolase;PS.calvin cycle.aldolase"		"GO:0006096;GO:0004332"	"glycolytic process;fructose-bisphosphate aldolase activity"	FBA2	"g1764.t1;Cre02.g093450.t1.1;g1764.t1;Cre02.g093450.t1.1;Cre02.g093450.t1.1;g1764.t1;g1764.t1;Cre02.g093450.t1.1"	"FBA2;FBA2;FBA2;FBA2"	"fructose-1,6-bisphosphate aldolase [EC 4.1.2.13]; glycolytic enzyme that catalyses the reversible aldol cleavage or condensation of fructose-1,6-bisphosphate into dihydroxyacetone-phosphate and glyceraldehyde 3-phosphate;fructose-1,6-bisphosphate aldolase [EC 4.1.2.13]; glycolytic enzyme that catalyses the reversible aldol cleavage or condensation of fructose-1,6-bisphosphate into dihydroxyacetone-phosphate and glyceraldehyde 3-phosphate;fructose-1,6-bisphosphate aldolase [EC 4.1.2.13]; glycolytic enzyme that catalyses the reversible aldol cleavage or condensation of fructose-1,6-bisphosphate into dihydroxyacetone-phosphate and glyceraldehyde 3-phosphate;fructose-1,6-bisphosphate aldolase [EC 4.1.2.13]; glycolytic enzyme that catalyses the reversible aldol cleavage or condensation of fructose-1,6-bisphosphate into dihydroxyacetone-phosphate and glyceraldehyde 3-phosphate"
+Cre02.g093500			"Secretory pathway"	"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	SSD1	"Cre02.g093500.t1.1;SSD1;g1765.t1;Cre02.g093500.t1.1;g1765.t1;SSD1;Cre02.g093500.t1.1;SSD1;g1765.t1"		"Contains a sterol sensing 5-transmembrane domain similar to those in SCAP, Patched, NPC1 and HMGR;Contains a sterol sensing 5-transmembrane domain similar to those in SCAP, Patched, NPC1 and HMGR;Contains a sterol sensing 5-transmembrane domain similar to those in SCAP, Patched, NPC1 and HMGR"
+Cre02.g096850			"Secretory pathway"				"g1968.t1;Cre02.g096850.t1.1"		
+Cre02.g088551			"Secretory pathway"				g1649.t1		
+Cre02.g082800			"Secretory pathway"	GO:0003677	"DNA binding"				
+Cre02.g119500							"g2480.t1;g2480.t1"		
+Cre02.g083000							"Cre02.g083000.t1.1;g1525.t1"		
+Cre02.g116400						DII7	"FAP120;g2409.t1;DII7"	FAP120	"Inner Arm Dynein interacting protein DII7; Part of IC138 subcomplex; Null-allele mutant was isolated"
+Cre02.g091600									
+Cre02.g147302	GMM:13.1.1.2.1	"amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase"					"Cre02.g147200.t1.2;g2516.t1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre02.g081500	GMM:34.11	"transport.NDP-sugars at the ER"		"GO:0016021;GO:0006810"	"integral component of membrane;transport"		"g1492.t1;UAA2;Cre02.g081500.t1.1"		"UAA transporter"
+Cre02.g073300			Mitochondrion						
+Cre02.g098600	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g2005.t2;g2005.t2"		
+Cre02.g076050				GO:0005515	"protein binding"		"g1364.t1;Cre02.g076050.t1.1"		
+Cre02.g100300	"GMM:30.4;GMM:3.4;GMM:29.5.11"	"signalling.phosphinositides;minor CHO metabolism.myo-inositol;protein.degradation.ubiquitin"		GO:0016773	"phosphotransferase activity, alcohol group as acceptor"		g2042.t1		
+Cre02.g111526							g2295.t1		
+Cre02.g140941			Chloroplast						
+Cre02.g111500	"GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2294.t1;g2294.t1"		
+Cre02.g086050	GMM:29.1.30	"protein.aa activation.pseudouridylate synthase"		"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS4	"PUS4;g1593.t1;g1593.t1;PUS4;PUS4;g1593.t1;PUS4;g1593.t1"		"tRNA pseudouridine synthase-like protein, with a putative mitochondrial targeting sequence;tRNA pseudouridine synthase-like protein, with a putative mitochondrial targeting sequence;tRNA pseudouridine synthase-like protein, with a putative mitochondrial targeting sequence;tRNA pseudouridine synthase-like protein, with a putative mitochondrial targeting sequence"
+Cre02.g117200	"GMM:31.2;GMM:29.6;GMM:29.5.11.20"	"cell.division;protein.folding;protein.degradation.ubiquitin.proteasom"	Chloroplast	"GO:0009341;GO:0005975;GO:0004565"	"beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity"		"g2427.t1;Cre02.g117200.t1.1;g2427.t1;Cre02.g117200.t1.1;g2427.t1;Cre02.g117200.t1.1;Cre02.g117200.t1.1;g2427.t1"		"GH42 family;GH42 family;GH42 family;GH42 family"
+Cre02.g095294							"Cre02.g095294.t1.1;g1934.t1"		
+Cre02.g099550	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g2026.t1;g2026.t1;g2026.t1;g2026.t1;g2026.t1;g2026.t1;g2026.t1"		
+Cre02.g145000	GMM:27.1	RNA.processing	Mitochondrion	GO:0006364	"rRNA processing"		"g2569.t1;RBF1"	RBF1	"Putative chloroplast ribosome-binding factor A. The bacterial RbfA is involved in 16S rRNA processing"
+Cre02.g074900	GMM:35.1.19	"not assigned.no ontology.C2 domain-containing protein"	Mitochondrion	GO:0005515	"protein binding"		"g1338.t1;g1338.t1"		
+Cre02.g141666			"Secretory pathway"				"Cre15.g647300.t1.1;g2725.t1;g2725.t1;Cre15.g647300.t1.1;Cre15.g647300.t1.1;g2725.t1"		
+Cre02.g097150						AGG5	"Cre02.g097150.t1.1;g1974.t1;AGG5"	AGG5	"Cys-rich AGG2-like membrane protein, required for phototactic orientation; similar to early zygote protein expressed within the first hour of zygote formation."
+Cre02.g117850	"GMM:30;GMM:29.5.11.5;GMM:29.5.11;GMM:11"	"signalling;protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin;lipid metabolism"		GO:0004843	"thiol-dependent ubiquitin-specific protease activity"		"Cre02.g117850.t1.1;g2445.t1;g2445.t1;Cre02.g117850.t1.1;g2445.t1;Cre02.g117850.t1.1"		
+Cre02.g074250			Chloroplast				"g1318.t1;g1318.t1"		
+Cre02.g094100	"GMM:35.1.26;GMM:21.1"	"not assigned.no ontology.DC1 domain containing protein;redox.thioredoxin"				NRX1	"g1778.t1;NRX1;Cre02.g094100.t1.1;Cre02.g094100.t1.1;NRX1;g1778.t1"	"NRX1;NRX1"	"Nucleoredoxin, nuclear thioredoxin-like protein, contains two thioredoxin motifs with a WCPPC active site in each motif; may be a redox regulator of nuclear protein, such as transcriptional factors, under stress conditions [PMID: 9119370]. Low-CO2 inducible gene (LCI35) revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]; closely related to nearby NRX2 and truncated NRX3;Nucleoredoxin, nuclear thioredoxin-like protein, contains two thioredoxin motifs with a WCPPC active site in each motif; may be a redox regulator of nuclear protein, such as transcriptional factors, under stress conditions [PMID: 9119370]. Low-CO2 inducible gene (LCI35) revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]; closely related to nearby NRX2 and truncated NRX3"
+Cre02.g076800	GMM:17.3.1.2.4	"hormone metabolism.brassinosteroid.synthesis-degradation.sterols.FACKEL"	"Secretory pathway"	GO:0016020	membrane	ERG4	"Cre02.g076800.t1.1;g1382.t1;g1382.t1;Cre02.g076800.t1.1"	"ERG4;ERG4"	"Delta14-sterol reductase, membrane protein involved in ergosterol biosynthesis and related to the ERG4/ERG24 protein family. Has homology to the lamin B receptor;Delta14-sterol reductase, membrane protein involved in ergosterol biosynthesis and related to the ERG4/ERG24 protein family. Has homology to the lamin B receptor"
+Cre02.g088800	GMM:27.4	"RNA.RNA binding"	Chloroplast	GO:0003676	"nucleic acid binding"		"Cre02.g088800.t1.1;g1655.t1;Cre02.g088800.t1.1;g1655.t1"		
+Cre02.g095115	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"	Chloroplast				"Cre11.g473000.t1.2;g1888.t1;Cre11.g473000.t1.1"		
+Cre02.g115300						AOT6	"g2383.t1;AOT6;AOT6;g2383.t1;AOT6;g2383.t1;g2383.t1;AOT6;g2383.t1;AOT6"		"belongs to AAAP family of amino acid/auxin permeases; most similar to animal relatives; contains a large C-terminal domain of unknown function;belongs to AAAP family of amino acid/auxin permeases; most similar to animal relatives; contains a large C-terminal domain of unknown function;belongs to AAAP family of amino acid/auxin permeases; most similar to animal relatives; contains a large C-terminal domain of unknown function;belongs to AAAP family of amino acid/auxin permeases; most similar to animal relatives; contains a large C-terminal domain of unknown function;belongs to AAAP family of amino acid/auxin permeases; most similar to animal relatives; contains a large C-terminal domain of unknown function"
+Cre02.g107900							"Cre02.g107900.t1.1;g2212.t1;Cre02.g107900.t1.1;g2212.t1;g2212.t1;Cre02.g107900.t1.1;g2212.t1;Cre02.g107900.t1.1"		
+Cre02.g147000			Chloroplast				g2520.t1		
+Cre02.g112900	"GMM:34.2;GMM:34.11"	"transport.sugars;transport.NDP-sugars at the ER"		"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		"TPT6;g2325.t1;Cre02.g112900.t1.1;TPT5"		
+Cre02.g119600	GMM:11.3.8	"lipid metabolism.phospholipid synthesis.phosphatidylserine decarboxylase"		"GO:0008654;GO:0004609"	"phospholipid biosynthetic process;phosphatidylserine decarboxylase activity"	PSD1	"Cre02.g119600.t1.1;PSD1;g2483.t1"	PSD1	
+Cre02.g108450	GMM:17.5.3	"hormone metabolism.ethylene.induced-regulated-responsive-activated"		GO:0043565	"sequence-specific DNA binding"	FAP280	"g2223.t1;Cre02.g108450.t1.1"	FAP280	"Flagellar Associated Protein similar to Transcriptional Coactivator-Like Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre02.g095049			Chloroplast						
+Cre02.g116500	GMM:29.5.5	"protein.degradation.serine protease"	"Secretory pathway"	"GO:0006508;GO:0004185"	"proteolysis;serine-type carboxypeptidase activity"	CPY3	"CPY3;g2411.t1"		
+Cre02.g089850							"Cre02.g089850.t1.1;g1678.t1;g1678.t1;Cre02.g089850.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g089750			Chloroplast				"Cre02.g089750.t1.1;g1676.t1"		
+Cre02.g141526			Mitochondrion						
+Cre02.g106850	GMM:35.1.27	"not assigned.no ontology.tetratricopeptide repeat (TPR)"				TPR6	"TPR6;g2190.t1;Cre02.g106850.t1.1"	TPR6	"Protein containing TPR domain at its N-terminus; Circadian expressed protein [PMID: 14960320], supported by proteome data;"
+Cre02.g094300	GMM:9.3	"mitochondrial electron transport / ATP synthesis.electron transfer flavoprotein"	Mitochondrion	"GO:0055114;GO:0004174"	"oxidation-reduction process;electron-transferring-flavoprotein dehydrogenase activity"	FUO1	"FUO1;g1782.t1;Cre02.g094300.t1.1;FUO1;g1782.t1;Cre02.g094300.t1.1"	"FUO1;FUO1"	"Putative electron-transferring-flavoprotein dehydrogenase (ETFDH); electron transfer flavoprotein ubiquinone oxidoreductase.;Putative electron-transferring-flavoprotein dehydrogenase (ETFDH); electron transfer flavoprotein ubiquinone oxidoreductase."
+Cre02.g074600						CGL60	"g1329.t1;CGL60;DeSI-2;CGL60;DeSI-2;g1329.t1;CGL60;g1329.t1;DeSI-2;g1329.t1;CGL60;DeSI-2"	"DESI2;DESI2;DESI2;DESI2"	"deSUMOlyating isopeptidase; Conserved in the Green Lineage;deSUMOlyating isopeptidase; Conserved in the Green Lineage;deSUMOlyating isopeptidase; Conserved in the Green Lineage;deSUMOlyating isopeptidase; Conserved in the Green Lineage"
+Cre02.g099950			"Secretory pathway"				"Cre02.g099950.t1.1;g2035.t1"		
+Cre02.g074350			"Secretory pathway"				"g1320.t1;g1320.t1"		
+Cre02.g113400	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"					"BUG21;Cre02.g113400.t1.1;PACRG;g2336.t1"	PACRG1	"PACRG along with FAP20 form the doublet microtubule inner junction (a non-tubulin protofilament). Null mutants have severe motility defects (PMID: 31116684)."
+Cre02.g086400			Chloroplast				"g1602.t1;Cre02.g086400.t1.1"		
+Cre02.g095051							"Cre11.g470480.t1.1;g1825.t1;Cre11.g470480.t1.2"		
+Cre02.g103150			"Secretory pathway"				g2107.t1		
+Cre02.g078316							"g1418.t1;Cre02.g078316.t1.1"		
+Cre02.g143347			Mitochondrion				"g2827.t2;Cre38.g785150.t1.1"		
+Cre02.g082400				"GO:0036459;GO:0016579"	"thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination"		g1510.t1		
+Cre02.g077350	"GMM:13.1.7.9;GMM:13.1.7"	"amino acid metabolism.synthesis.histidine.histidinol-phosphate aminotransferase;amino acid metabolism.synthesis.histidine"		"GO:0055114;GO:0051287;GO:0008270;GO:0004399;GO:0000105"	"oxidation-reduction process;NAD binding;zinc ion binding;histidinol dehydrogenase activity;histidine biosynthetic process"	HDH1	"Cre02.g077350.t1.1;g1394.t1;HDH1"	HDH1	"histidinol dehydrogenase (EC 1.1.1.23); Target-P predicted organelle targeting; histidine biosynthesis pathway"
+Cre02.g103600							"g2117.t1;g2117.t1"		
+Cre02.g088750	"GMM:30.4;GMM:3.4;GMM:29.4.1"	"signalling.phosphinositides;minor CHO metabolism.myo-inositol;protein.postranslational modification.kinase"		"GO:0016773;GO:0005515"	"phosphotransferase activity, alcohol group as acceptor;protein binding"	ATR2	"Cre02.g088750.t1.1;g1654.t1;ATR2;Cre02.g088750.t1.1;g1654.t1;ATR2;Cre02.g088750.t1.1;ATR2;g1654.t1"		"TRRAP. C-terminus contains the FAT (IPR3151), PI3Kc (IPR43) and FATC (IPRIPR3152) domains. The human ataxia-telangiectasia mutated, ATM, protein contains the ARM, FAT, KI3Kc and FATC domains). May be phosphatidylinositol 3-kinase or 3-oxoadipate;TRRAP. C-terminus contains the FAT (IPR3151), PI3Kc (IPR43) and FATC (IPRIPR3152) domains. The human ataxia-telangiectasia mutated, ATM, protein contains the ARM, FAT, KI3Kc and FATC domains). May be phosphatidylinositol 3-kinase or 3-oxoadipate;TRRAP. C-terminus contains the FAT (IPR3151), PI3Kc (IPR43) and FATC (IPRIPR3152) domains. The human ataxia-telangiectasia mutated, ATM, protein contains the ARM, FAT, KI3Kc and FATC domains). May be phosphatidylinositol 3-kinase or 3-oxoadipate"
+Cre02.g143007									
+Cre02.g143052			Mitochondrion				g2625.t1		
+Cre02.g104950			Mitochondrion						
+Cre02.g103300	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"				CSE16	"g2110.t1;CSE16"		"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre02.g116900	GMM:33.2	"development.late embryogenesis abundant"	Mitochondrion			SETB	"SETB;g2420.t2;HDP1;Cre02.g116900.t1.1"		"Protein contains an interrupted SET domain with very weak similarity to Arabidopsis thaliana ASHR2, SET39, SDG39 (At2g19640) and Zea mays SET123."
+Cre02.g075600	GMM:27.2	RNA.transcription	"Secretory pathway"	"GO:0006351;GO:0003899;GO:0003677"	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"		"g1353.t1;g1353.t1;g1353.t1"		
+Cre02.g083600	GMM:3.5	"minor CHO metabolism.others"		GO:0005525	"GTP binding"		"g1539.t2;Cre02.g083600.t1.1"		
+Cre02.g093252			Mitochondrion						
+Cre02.g095065			"Secretory pathway"				"g1839.t1;Cre11.g470950.t1.1;g1839.t1;Cre11.g470950.t1.1"		
+Cre02.g146600	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"				AP4M4	"g2529.t1;Cre02.g146600.t1.1;AP4M4"	AP4M4	"Sequence gap, cDNA supports 33 nucleotides encoding: MVVLDDCNFHE within gap."
+Cre02.g084650	GMM:29.3.1	protein.targeting.nucleus		"GO:0008536;GO:0006886"	"Ran GTPase binding;intracellular protein transport"		"Cre02.g084650.t1.1;g1562.t1"		
+Cre02.g083500	GMM:17.1.1.1.1	"hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase"	Mitochondrion				"FAO2;Cre02.g083500.t1.1;g1537.t1"		"FAD dependent oxidoreductase, possible salicylate 1-monooxygenase"
+Cre02.g093750	"GMM:35.1.26;GMM:21.1"	"not assigned.no ontology.DC1 domain containing protein;redox.thioredoxin"				NRX2	"Cre02.g093750.t1.1;g1771.t1;NRX2;NRX2;g1771.t1;Cre02.g093750.t1.1;NRX2;g1771.t1;Cre02.g093750.t1.1;g1771.t1;NRX2;Cre02.g093750.t1.1"	"NRX2;NRX2;NRX2;NRX2"	"Nucleoredoxin, nuclear thioredoxin-like protein, contains two thioredoxin motifs with a WCPPC active site in each motif; closely related to nearby NRX1 and divergent NRX3 (truncated);Nucleoredoxin, nuclear thioredoxin-like protein, contains two thioredoxin motifs with a WCPPC active site in each motif; closely related to nearby NRX1 and divergent NRX3 (truncated);Nucleoredoxin, nuclear thioredoxin-like protein, contains two thioredoxin motifs with a WCPPC active site in each motif; closely related to nearby NRX1 and divergent NRX3 (truncated);Nucleoredoxin, nuclear thioredoxin-like protein, contains two thioredoxin motifs with a WCPPC active site in each motif; closely related to nearby NRX1 and divergent NRX3 (truncated)"
+Cre02.g095036			Chloroplast						
+Cre02.g142887			Chloroplast						
+Cre02.g095700							"Cre02.g095700.t1.1;g1943.t1"		
+Cre02.g095100				"GO:0055114;GO:0010181;GO:0008615;GO:0004733"	"oxidation-reduction process;FMN binding;pyridoxine biosynthetic process;pyridoxamine-phosphate oxidase activity"	CPLD26	"g1930.t1;PPO2"	CPLD26	"Pyridoxamine 5'-phosphate oxidase-like protein. Plant-lineage-and-diatoms conserved expressed protein. Previously annotated as CPLD26. Enzymatic activity is unproven"
+Cre02.g144802							g2574.t1		
+Cre02.g095122	"GMM:29.6.3.1;GMM:29.6"	"protein.folding.immunophilins (IMM).FKBPs;protein.folding"		GO:0006457	"protein folding"	FKB16-8	"FKB16-8;FKB11;g1895.t1;Cre11.g473300.t1.1;FKB16-8;FKB11;g1895.t1;Cre11.g473300.t1.1"	"FKB16H;FKB16H"	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); localization unsure; linked to FKB17-2 and FKB16-6;FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); localization unsure; linked to FKB17-2 and FKB16-6"
+Cre02.g146050	"GMM:16.1.2.1;GMM:13.2.6.3;GMM:13.2.4.5"	"secondary metabolism.isoprenoids.mevalonate pathway.acetyl-CoA C-acyltransferase;amino acid metabolism.degradation.aromatic aa.tryptophan;amino acid metabolism.degradation.branched chain group.isoleucine"	Mitochondrion	"GO:0016747;GO:0008152"	"transferase activity, transferring acyl groups other than amino-acyl groups;metabolic process"	ATO2	"g2540.t1;ATO2;Cre02.g146050.t1.1"	ATO2	"EC 2.3.1.9"
+Cre02.g078600	GMM:31.6.1.5.2	"cell.motility.eukaryotes.radial spoke.stalk"				RSP8	"g1426.t1;Cre02.g078600.t1.1;g1426.t1;Cre02.g078600.t1.1"	"RSP8;RSP8"	"An armadillo repeat protein in the radial spoke stalk [PMID: 16507594; GI:83284711];An armadillo repeat protein in the radial spoke stalk [PMID: 16507594; GI:83284711]"
+Cre02.g101786			Chloroplast						
+Cre02.g074511	GMM:27.4	"RNA.RNA binding"	Chloroplast	GO:0003723	"RNA binding"		"g1326.t1;Cre02.g074450.t1.3"		
+Cre02.g102700			"Secretory pathway"				"g2097.t1;g2097.t1;g2097.t1;g2097.t1"		
+Cre02.g099452									
+Cre02.g141266							g2698.t1		
+Cre02.g144734									
+Cre02.g110150	GMM:27.3.28	"RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0005515;GO:0003677"	"nucleus;protein binding;DNA binding"		"g2260.t1;Cre02.g110150.t1.1;g2260.t1;Cre02.g110150.t1.1;Cre02.g110150.t1.1;g2260.t1"		
+Cre02.g092000	GMM:29.5.5	"protein.degradation.serine protease"	Mitochondrion			DEG2	g1723.t1	DEG2	"DegP-type protease, probably on thylakoid stromal surface; one PDZ domain; most similar to Arabidopsis DegP2 and DegP9"
+Cre02.g116150			Mitochondrion				g2404.t1		
+Cre02.g106750			Mitochondrion	"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	MRPS9	"uS9m;g2188.t1;MRPS9;Cre02.g106750.t1.1"	MRPS9	
+Cre02.g141966	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2740.t2;Cre15.g646650.t1.1;g2740.t2;Cre15.g646650.t1.1;g2740.t2;Cre15.g646650.t1.1;Cre15.g646650.t1.1;g2740.t2;g2740.t2;Cre15.g646650.t1.1;g2740.t2;Cre15.g646650.t1.1;Cre15.g646650.t1.1;g2740.t2;g2740.t2;Cre15.g646650.t1.1;Cre15.g646650.t1.1;g2740.t2;Cre15.g646650.t1.1;g2740.t2"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g141146			Chloroplast						
+Cre02.g143150							"g2622.t1;g2622.t1"		
+Cre02.g147650	"GMM:3.5;GMM:10.1.20"	"minor CHO metabolism.others;cell wall.precursor synthesis.phosphomannose isomerase"		"GO:0009298;GO:0008270;GO:0005975;GO:0004476"	"GDP-mannose biosynthetic process;zinc ion binding;carbohydrate metabolic process;mannose-6-phosphate isomerase activity"	MPI1	"PMI;Cre02.g147650.t1.1;MPI1;g2508.t1"	MPI1	"involved in vitamin C biosynthesis"
+Cre02.g079300	"GMM:29.5.9;GMM:29.5.11.20;GMM:29.3.4.3"	"protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom;protein.targeting.secretory pathway.vacuole"		"GO:0009378;GO:0006310;GO:0006281"	"four-way junction helicase activity;DNA recombination;DNA repair"	VPS4	"g1448.t1;VPS4;Cre02.g079300.t1.1"	VPS4	"Expressed Protein. Similar to VPS4/SKD1 AAA-ATPase, involved in vacuolar protein transport"
+Cre02.g081850				GO:0016757	"transferase activity, transferring glycosyl groups"		g1499.t1		
+Cre02.g141846	"GMM:31.2;GMM:28.2"	"cell.division;DNA.repair"		"GO:0009432;GO:0006281;GO:0005524;GO:0003697"	"SOS response;DNA repair;ATP binding;single-stranded DNA binding"	DMC1	"g2734.t1;Cre15.g646900.t1.1;Cre15.g646900.t1.2"	DMC1	"Participates in meiotic recombination, specifically in homologous strand assimilation, which is required for the resolution of meiotic double-strand breaks. Belongs to RAD51_DMC1-radA family of recombinases; Ortholog of DMC1 (AT3G22880) in Arabidopsis thaliana"
+Cre02.g143627			"Secretory pathway"				g2841.t1		
+Cre02.g115150				GO:0016021	"integral component of membrane"		"g2379.t2;g2379.t2;g2379.t2"		
+Cre02.g089237	GMM:29.5.11	protein.degradation.ubiquitin	Mitochondrion	GO:0008270	"zinc ion binding"				
+Cre02.g095950	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Mitochondrion				g1948.t1		
+Cre02.g085279			Mitochondrion						
+Cre02.g144004			Chloroplast				g2596.t1		
+Cre02.g101250							"g2066.t1;Cre02.g101250.t1.1"		
+Cre02.g102800	GMM:27.2	RNA.transcription		GO:0006351	"transcription, DNA-templated"	RPB8	"Cre02.g102800.t1.1;g2100.t1;RPB8"	RPB8	"RNA polymerase I, II and III 16.5 kDa subunit (RNA polymerase II subunit, putative)"
+Cre02.g111950	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2304.t1;g2304.t1"		
+Cre02.g118600	GMM:31.2	cell.division	Chloroplast	GO:0003924	"GTPase activity"	FTSZ1	"g2461.t1;FTSZ3;Cre02.g118600.t1.1"	FTSZ1	"identical to GI:20372934; alternative splicing uses splice sites internal to exons 5 and 9"
+Cre02.g109450							"g2245.t1;g2245.t1"		
+Cre02.g141446			Mitochondrion				g2714.t1		
+Cre02.g109850			Chloroplast	"GO:0017176;GO:0016021;GO:0006506"	"phosphatidylinositol N-acetylglucosaminyltransferase activity;integral component of membrane;GPI anchor biosynthetic process"	PIGC	"PIGC;GPI2;GTR18;g2254.t1;SETH1"	PIGC1	"Phosphatidylinositol N-acetylglucosaminyltransferase subunit C; Orthologous to PIGC/SETH1 (AT2G34980) in Arabidopsis thaliana"
+Cre02.g119300			"Secretory pathway"				"g2475.t1;Cre02.g119300.t1.1"		
+Cre02.g083900				"GO:0008408;GO:0006139;GO:0003676;GO:0002161"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding;aminoacyl-tRNA editing activity"	EXN5	"EXN5;g1545.t2"		
+Cre02.g073450							"g1300.t1;g1300.t1;g1300.t1;g1300.t1;g1300.t1;g1300.t1"		
+Cre02.g093650			Chloroplast	"GO:0055114;GO:0051537;GO:0016491"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"		"Cre02.g093650.t1.1;g1769.t1;Cre02.g093650.t1.1;g1769.t1;Cre02.g093650.t1.1;g1769.t1"		
+Cre02.g117376			Mitochondrion						
+Cre02.g095089				GO:0016787	"hydrolase activity"		"g1863.t1;Cre11.g472000.t1.2;Cre11.g472000.t1.1"		
+Cre02.g095131									
+Cre02.g082852			Chloroplast	"GO:0016020;GO:0015979;GO:0009523"	"membrane;photosynthesis;photosystem II"				
+Cre02.g142600									
+Cre02.g095105			Chloroplast				"g1878.t1;Cre11.g472650.t1.2;Cre11.g472650.t1.1"		
+Cre02.g088050	GMM:27.1.19	RNA.processing.ribonucleases	"Secretory pathway"	"GO:0008033;GO:0004540"	"tRNA processing;ribonuclease activity"	RPP30	"g1638.t1;XRP30;Cre02.g088050.t1.1"	RPP30	"Involved in precursor rRNA processing"
+Cre02.g095147	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"				ALG2	"Cre11.g474450.t1.2;Cre11.g474450.t1.1;GTR5;g1920.t1"	ALG2	"Likely Mannosylates Man2GlcNAc2-dolichol diphosphate and Man1GlcNAc2-dolichol diphosphate to form Man3GlcNAc2-dolichol diphosphate; Orthologous to AT1G78800 in Arabidopsis thaliana"
+Cre02.g110450							"Cre02.g110450.t1.1;g2267.t1"		
+Cre02.g082250	GMM:13.1.3.6.1.4	"amino acid metabolism.synthesis.aspartate family.misc.homoserine.homoserine kinase"	Chloroplast	GO:0005524	"ATP binding"	HSK2	"g1507.t1;HSK2;HSK2;g1507.t1;HSK2;g1507.t1"		"putative homoserine kinase (EC:2.7.1.39), based on similarity to Arabidopsis homoserine kinase (GenBank AAD33097); Target-P predicts mitochondrial targeting sequence; predicted as plastidic based on homology; closely related to nearby HSK1 and two other paralogs;putative homoserine kinase (EC:2.7.1.39), based on similarity to Arabidopsis homoserine kinase (GenBank AAD33097); Target-P predicts mitochondrial targeting sequence; predicted as plastidic based on homology; closely related to nearby HSK1 and two other paralogs;putative homoserine kinase (EC:2.7.1.39), based on similarity to Arabidopsis homoserine kinase (GenBank AAD33097); Target-P predicts mitochondrial targeting sequence; predicted as plastidic based on homology; closely related to nearby HSK1 and two other paralogs"
+Cre02.g110850	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g2276.t1;Cre02.g110850.t1.1"		
+Cre02.g105851									
+Cre02.g078858	"GMM:30.8;GMM:3.8;GMM:29.5.4"	"signalling.misc;minor CHO metabolism.galactose;protein.degradation.aspartate protease"	"Secretory pathway"	"GO:0016021;GO:0004190"	"integral component of membrane;aspartic-type endopeptidase activity"	PSN1	"g1433.t1;Cre64.g793100.t1.2;PSN1;Cre64.g793100.t1.1"	PSN1	"Transmembrane peptidase, belongs to the A22 family of aspartyl proteases; cleaves type I substrates only (C-terminus towards the cytosol); an insertional mutant in PSN1 shows slight Rose Bengal and metronidazole sensitivity (Dent et al., 2005)."
+Cre02.g106500	GMM:23.3.3	"nucleotide metabolism.salvage.NUDIX hydrolases"		GO:0016787	"hydrolase activity"	DIPP	"g2183.t1;DIPP;Cre02.g106500.t1.1;IPP2;g2183.t1;Cre02.g106500.t1.1;DIPP;IPP2"	"DIPP1;DIPP1"	"dephosphorylates InsP8 and InsP6 to yield InsP6; homologous to yeast diadenosine and Diphosphoinositol polyphosphate phosphohydrolase; possibly organelle-targeted (by homology);dephosphorylates InsP8 and InsP6 to yield InsP6; homologous to yeast diadenosine and Diphosphoinositol polyphosphate phosphohydrolase; possibly organelle-targeted (by homology)"
+Cre02.g146100			Mitochondrion				"g2539.t1;g2539.t1;g2539.t1;g2539.t1"		
+Cre02.g083259			Chloroplast				"Cre02.g083259.t1.1;g1530.t1;g1530.t1;Cre02.g083259.t1.1;Cre02.g083259.t1.1;g1530.t1;Cre02.g083259.t1.1;g1530.t1"		
+Cre02.g141286			Chloroplast				"Cre15.g642450.t1.2;g2700.t3;Cre15.g642450.t1.1"		
+Cre02.g107100			Chloroplast				"g2195.t1;g2195.t1;g2195.t1;g2195.t1"		
+Cre02.g079500			"Secretory pathway"				"g1452.t1;g1452.t1;g1452.t1"		
+Cre02.g090600							"Cre02.g090600.t1.1;g1693.t1"	NUP43	"43 kDa Nuclear Pore Complex Protein"
+Cre02.g146450	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG60	"g2532.t1;CYG60"		
+Cre02.g076500							"Cre02.g076500.t1.1;g1374.t1"		
+Cre02.g092700						FAP45	"g1738.t1;Cre02.g092700.t1.1;Cre02.g092700.t1.1;g1738.t1;g1738.t1;Cre02.g092700.t1.1"	"FAP45;FAP45;FAP45"	"Flagella Associated Protein, found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG28 [PMID: 15964273]. Transcript highly upregulated during flagellar regeneration [PMID: 15738400]. Weakly similar to nasopharyngeal epithelium-specific protein 1, found in human cilia proteome [PMID: 12169685].;Flagella Associated Protein, found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG28 [PMID: 15964273]. Transcript highly upregulated during flagellar regeneration [PMID: 15738400]. Weakly similar to nasopharyngeal epithelium-specific protein 1, found in human cilia proteome [PMID: 12169685].;Flagella Associated Protein, found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG28 [PMID: 15964273]. Transcript highly upregulated during flagellar regeneration [PMID: 15738400]. Weakly similar to nasopharyngeal epithelium-specific protein 1, found in human cilia proteome [PMID: 12169685]."
+Cre02.g145100	"GMM:34.21;GMM:30.3;GMM:3.3"	"transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols"		"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"	FAP39	"g2567.t1;g2567.t1;g2567.t1;g2567.t1;g2567.t1;g2567.t1"	"FAP39;FAP39;FAP39;FAP39;FAP39;FAP39"	"P-type ATPase/cation transporter, found in the flagellar proteome; similar to Ca2+ transporting ATPase; related to cation transporting ATPase; plasma membrane calcium-transporting ATPase 3 (PMCA3) (Plasma membrane calcium pump isoform 3);;P-type ATPase/cation transporter, found in the flagellar proteome; similar to Ca2+ transporting ATPase; related to cation transporting ATPase; plasma membrane calcium-transporting ATPase 3 (PMCA3) (Plasma membrane calcium pump isoform 3);;P-type ATPase/cation transporter, found in the flagellar proteome; similar to Ca2+ transporting ATPase; related to cation transporting ATPase; plasma membrane calcium-transporting ATPase 3 (PMCA3) (Plasma membrane calcium pump isoform 3);;P-type ATPase/cation transporter, found in the flagellar proteome; similar to Ca2+ transporting ATPase; related to cation transporting ATPase; plasma membrane calcium-transporting ATPase 3 (PMCA3) (Plasma membrane calcium pump isoform 3);;P-type ATPase/cation transporter, found in the flagellar proteome; similar to Ca2+ transporting ATPase; related to cation transporting ATPase; plasma membrane calcium-transporting ATPase 3 (PMCA3) (Plasma membrane calcium pump isoform 3);;P-type ATPase/cation transporter, found in the flagellar proteome; similar to Ca2+ transporting ATPase; related to cation transporting ATPase; plasma membrane calcium-transporting ATPase 3 (PMCA3) (Plasma membrane calcium pump isoform 3);"
+Cre02.g108000			Chloroplast				"g2214.t2;g2214.t2;g2214.t2"		
+Cre02.g102150							"Cre02.g102162.t1.2;g2085.t1"		
+Cre02.g095038			Mitochondrion				"Cre11.g470150.t1.1;g1808.t1;Cre11.g470150.t1.2"		
+Cre02.g086300							"g1599.t2;g1599.t2;g1599.t2;g1599.t2;g1599.t2"		
+Cre02.g110750	GMM:1.1.1.1	"PS.lightreaction.photosystem II.LHC-II"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCB7	"g2273.t1;Cre02.g110750.t1.1;LHCQ"	LHCB7	"Divergent LCHII-type branching at base of LHCII clade. Described as Lhcq in several publications."
+Cre02.g095144			Mitochondrion				"Cre11.g474300.t1.1;g1917.t1;g1917.t1;Cre11.g474300.t1.1;g1917.t1;Cre11.g474300.t1.1;Cre11.g474300.t1.1;g1917.t1"		
+Cre02.g111029			Mitochondrion						
+Cre02.g095033									
+Cre02.g141026									
+Cre02.g100100	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		"GO:0007275;GO:0006355;GO:0003700"	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		g2038.t1		
+Cre02.g091050	GMM:19.4	"tetrapyrrole synthesis.ALA dehydratase"	Chloroplast	"GO:0046872;GO:0033014;GO:0004655"	"metal ion binding;tetrapyrrole biosynthetic process;porphobilinogen synthase activity"	ALAD	"HEM2;PBGS;ALAD;Cre02.g091050.t1.1;g1702.t1;ALAD1"	ALAD1	"Delta-aminolevulinic acid dehydratase, chloroplast precursor (porphobilinogen synthase) (ALADH) (HEM2) [PMID: 7894023; PMID: 12228605]; predicted chloroplast targeting sequence amino acids 1-70 by ChloroP"
+Cre02.g079200	"GMM:28.1.3;GMM:27.3.15"	"DNA.synthesis/chromatin structure.histone;RNA.regulation of transcription.CCAAT box binding factor family, HAP3"					"Cre02.g079200.t1.1;g1446.t1"		
+Cre02.g092284	GMM:13.1.5.3	"amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine"	Mitochondrion	"GO:0055114;GO:0016702"	"oxidation-reduction process;oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, incorporation of two atoms of oxygen"		g1730.t2		
+Cre02.g115226									
+Cre02.g116050							g2402.t1		
+Cre02.g140900			Chloroplast				"g2676.t1;g2676.t1;g2676.t1;g2676.t1;g2676.t1"		
+Cre02.g118450	GMM:29.9	protein.co-chaperones	EndoplasmicReticulum			DNJ28	"g2458.t1;DNJ28"		"DnaJ-like protein; contains N-terminal J-domain (pfam226); weak homology to rice Q7XI55, which contains thioredoxin fold and is predicted to be ER-targeted"
+Cre02.g074800	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Chloroplast	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG9	"g1336.t2;CYG9;CYG9;g1336.t2;g1336.t2;CYG9"		"C terminal domain similar to guanylate cyclase 1 from Homo sapiens; closely related to nearby CYG8;C terminal domain similar to guanylate cyclase 1 from Homo sapiens; closely related to nearby CYG8;C terminal domain similar to guanylate cyclase 1 from Homo sapiens; closely related to nearby CYG8"
+Cre02.g098200	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	"zinc ion binding"	CGL103	"g1997.t1;PRT1;g1997.t1;PRT1"	"CGL103;CGL103"	
+Cre02.g092800						FAP136	"Cre02.g092800.t1.1;g1740.t1;Cre02.g092800.t1.1;g1740.t1"	"FAP136;FAP136"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre02.g095097	"GMM:31.3.1;GMM:29.6.3.1"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs"	Chloroplast	GO:0006457	"protein folding"	FKB21	"FKB17-2;FKB21;Cre11.g472300.t1.1;g1871.t1;FKB17-2;FKB21;g1871.t1;Cre11.g472300.t1.1"	"FKB17B;FKB17B"	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); possibly targeted to thylakoid lumen but membrane-anchored; [PMID: 15701785]; linked to FKB16-8 and FKB16-6;FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); possibly targeted to thylakoid lumen but membrane-anchored; [PMID: 15701785]; linked to FKB16-8 and FKB16-6"
+Cre02.g076987							"g1386.t1;Cre02.g077000.t1.3"		
+Cre02.g117950							g2447.t1		
+Cre02.g116550	GMM:29.9	protein.co-chaperones	Chloroplast	"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	DNJ24	"Cre02.g116550.t1.1;DNJ24;g2412.t1"		"DnaJ-like protein, perhaps targeted to the chloroplast (contains N-terminal extension that is predicted by ChloroP to be chloroplast transit peptide); contains N-terminal J-domain (pfam226) and NADPH:quinone reductase and related Zn-dependent oxidoreduc"
+Cre02.g100633			Chloroplast				g2050.t1		
+Cre02.g108350	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"	Chloroplast				"Cre02.g108350.t1.1;g2221.t1;Cre02.g108350.t1.1;g2221.t1;g2221.t1;Cre02.g108350.t1.1;g2221.t1;Cre02.g108350.t1.1"		
+Cre02.g143300			Chloroplast						
+Cre02.g144252	GMM:34.15	transport.potassium					g2590.t1		
+Cre02.g100400			Chloroplast				"Cre02.g100400.t1.1;g2044.t1"		
+Cre02.g092650							g1737.t1		
+Cre02.g097050			"Secretory pathway"				"g1972.t1;Cre02.g097050.t1.1;g1972.t1;Cre02.g097050.t1.1;Cre02.g097050.t1.1;g1972.t1;g1972.t1;Cre02.g097050.t1.1;Cre02.g097050.t1.1;g1972.t1"		
+Cre02.g076000	"GMM:30.1;GMM:29.4.1;GMM:29.4"	"signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	LAT3	"LAT3;STK1;CKIN2.11;g1363.t1;STPK1;Cre02.g076000.t1.1"	SNRK2K	"Mediates abiotic stress responses; null mutants sentitive to the actin-depolymerizing drug Latrunculin B; null-allele mutant was isolated"
+Cre02.g089150	GMM:27.3.54	"RNA.regulation of transcription.histone acetyltransferases"		"GO:0016573;GO:0008270;GO:0006357"	"histone acetylation;zinc ion binding;regulation of transcription from RNA polymerase II promoter"		g1662.t1		
+Cre02.g114350							"Cre02.g114350.t1.1;g2361.t1"		
+Cre02.g105450						CGL141	"g2162.t1;g2162.t1"	"CGL141;CGL141"	
+Cre02.g090100	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0008270	"zinc ion binding"		"g1683.t1;Cre02.g090100.t1.1;Cre02.g090100.t1.1;g1683.t1"		
+Cre02.g079550	GMM:26.17	misc.dynamin		"GO:0005525;GO:0003924"	"GTP binding;GTPase activity"	DRP2	"Cre02.g079550.t1.1;GEX18;DRP2;ROC110;g1453.t1"		"Similar to the DRP2 (ADL3/ADL6) class of Dynamin GTPases involved in many vesicle trafficking events at the Golgi, Plasma membrane, etc.; ts lethal mutations isolated [PMID: 25336509]; Matsuo et al.'s (2008) roc110 (rhythm of chloroplast 110) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618]"
+Cre02.g094200				"GO:0055085;GO:0022857;GO:0016021"	"transmembrane transport;transmembrane transporter activity;integral component of membrane"		"g1780.t1;g1780.t1;g1780.t1"		
+Cre02.g095099	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g1873.t1;Cre11.g472400.t1.1"		
+Cre02.g142602									
+Cre02.g109300									
+Cre02.g113750			"Secretory pathway"				g2345.t1		
+Cre02.g102050	"GMM:34.16;GMM:31.6.1.10"	"transport.ABC transporters and multidrug resistance systems;cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			FAP328	"g2083.t1;CSE15;CSE15;g2083.t1"	"FAP328;FAP328"	"Predicted protein of CSE family: belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome;Predicted protein of CSE family: belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre02.g074720									
+Cre02.g145602			Chloroplast			CSB17			
+Cre02.g082900				"GO:0016021;GO:0006810;GO:0005337"	"integral component of membrane;transport;nucleoside transmembrane transporter activity"		g1523.t1		
+Cre02.g102850				"GO:0008270;GO:0006508;GO:0004181"	"zinc ion binding;proteolysis;metallocarboxypeptidase activity"		"g2101.t1;CPZ;CPZ;g2101.t1;CPZ;g2101.t1"		
+Cre02.g141326									
+Cre02.g112600							"Cre02.g112600.t1.1;g2319.t1"		
+Cre02.g143387			"Secretory pathway"						
+Cre02.g094426									
+Cre02.g116300	GMM:27.2	RNA.transcription					"g2407.t1;Cre02.g116300.t1.1;Cre02.g116300.t1.1;g2407.t1"		
+Cre02.g119800			"Secretory pathway"	"GO:0046872;GO:0005515"	"metal ion binding;protein binding"		g2488.t1		
+Cre02.g080150			"Secretory pathway"				"g1464.t1;g1464.t1;g1464.t1;g1464.t1"		
+Cre02.g114050			"Secretory pathway"				"g2355.t1;g2355.t1"		
+Cre02.g084200			Chloroplast				"g1553.t1;Cre02.g084200.t1.1"		
+Cre02.g142406									
+Cre02.g145900							"g2543.t1;Cre02.g145900.t1.1"		
+Cre02.g080200	"GMM:7.2.1;GMM:1.3.8"	"OPP.non-reductive PP.transketolase;PS.calvin cycle.transketolase"	Chloroplast	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	TRK1	"Cre02.g080200.t1.1;g1465.t1"	TRK1	"Calvin-Benson-Bassham cycle enzyme"
+Cre02.g111600							"g2297.t1;Cre02.g111600.t1.1"		
+Cre02.g111350			Chloroplast				"Cre02.g111350.t1.1;g2290.t1;g2290.t1;Cre02.g111350.t1.1"		
+Cre02.g089450			"Secretory pathway"			HRP5	"g1669.t1;HRP5;Cre02.g089450.t1.1"		"cell wall protein; contains (hydroxy)proline-rich (HR) domain with (SP)n repeats; closely linked to HRP2"
+Cre02.g079000							"g1438.t1;Cre02.g079000.t1.1;Cre02.g079000.t1.1;g1438.t1;g1438.t1;Cre02.g079000.t1.1"	"POB21;POB21;POB21"	"Found in basal body proteome;Found in basal body proteome;Found in basal body proteome"
+Cre02.g081400	"GMM:18.4.1;GMM:16.5.1.1.1.1;GMM:13.1.4.1.4"	"Co-factor and vitamine metabolism.pantothenate.branched-chain amino acid aminotransferase;secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.branched-chain amino acid aminotransferase  (BCAT/MAAT);amino acid metabolism.synthesis.branched chain group.common.branched-chain-amino-acid aminotransferase"	Chloroplast	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	BCA1	"Cre02.g081400.t1.1;BCA1;g1490.t1;g1490.t1;BCA1;Cre02.g081400.t1.1"		"performs the last step of biosynthesis of Leu, Ile and/or Val, transaminating the precursor using Glu as an amine donnor; there are 3 paralogs; a putative plastidic enzyme; BCAT; EC:2.6.1.42; class IV aminotransferase;performs the last step of biosynthesis of Leu, Ile and/or Val, transaminating the precursor using Glu as an amine donnor; there are 3 paralogs; a putative plastidic enzyme; BCAT; EC:2.6.1.42; class IV aminotransferase"
+Cre02.g080450			Mitochondrion				"Cre02.g080450.t1.1;g1470.t1"		
+Cre02.g107500			"Secretory pathway"				"g2204.t1;Cre02.g107500.t1.1;g2204.t1;Cre02.g107500.t1.1;g2204.t1;Cre02.g107500.t1.1"		
+Cre02.g104700	"GMM:33.99;GMM:33.3;GMM:27.3.28"	"development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"g2142.t1;Cre02.g104700.t1.1;g2142.t1;Cre02.g104700.t1.1;Cre02.g104700.t1.1;g2142.t1"		
+Cre02.g097850				GO:0046872	"metal ion binding"		g1990.t1		
+Cre02.g142353	GMM:29.1.21	"protein.aa activation.histidine-tRNA ligase"	Mitochondrion				"TSH1;g2646.t1"		
+Cre02.g144600	GMM:34.7	transport.phosphate	"Secretory pathway"	"GO:0016020;GO:0006817;GO:0005315"	"membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity"	PTB9	"g2579.t1;PTB9"	PTB9	"Putative phosphate transporter, similar to yeast Pho89 and Neurospora PHO4 probable Na+/Pi symporters; present in a cluster of four highly related PTB family members on scaffold 24, including PTB12, PTB5 and PTB4."
+Cre02.g095091			Mitochondrion				"g1865.t1;Cre11.g472100.t1.1;g1865.t1;Cre11.g472100.t1.1;g1865.t1;Cre11.g472100.t1.1"		
+Cre02.g106050			Mitochondrion				"Cre02.g106050.t1.1;g2174.t1;Cre02.g106050.t1.1;g2174.t1"		
+Cre02.g145950			"Secretory pathway"				"Cre02.g145950.t1.1;g2542.t1;g2542.t1;Cre02.g145950.t1.1;g2542.t1;Cre02.g145950.t1.1"		
+Cre02.g074200			Mitochondrion				"g1316.t1;Cre02.g074200.t1.1;g1316.t1;Cre02.g074200.t1.1"		
+Cre02.g109050			Chloroplast			OPR5	"g2235.t1;Cre02.g109050.t1.1"	OPR5	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain"
+Cre02.g095750				GO:0071949	"FAD binding"		"g1944.t1;Cre02.g095750.t1.1;ZXE1;ZEP1"		"Possibly a FAD-dependent monooxygenase"
+Cre02.g146900			Mitochondrion			OPR14	g2522.t1	OPR14	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre02.g078050			Chloroplast	GO:0005509	"calcium ion binding"	CAM5	"CAM5;Cre02.g078050.t1.1;g1411.t1;g1411.t1;Cre02.g078050.t1.1;CAM5;Cre02.g078050.t1.1;CAM5;g1411.t1;g1411.t1;Cre02.g078050.t1.1;CAM5;g1411.t1;Cre02.g078050.t1.1;CAM5;g1411.t1;Cre02.g078050.t1.1;CAM5"		
+Cre02.g143187									
+Cre02.g093017									
+Cre02.g081200	GMM:33.99	development.unspecified					"g1486.t1;Cre02.g081200.t1.1"		
+Cre02.g143858									
+Cre02.g115750	GMM:11.9.3.3	"lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase"		"GO:0008889;GO:0008081;GO:0006629"	"glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process"	GPD9	"GPD9;g2396.t1;GPD9;g2396.t1;GPD9;g2396.t1"		
+Cre02.g142400	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB16			
+Cre02.g093975	GMM:27.1.1	RNA.processing.splicing		GO:0003676	"nucleic acid binding"		"Cre02.g094004.t2.1;g1776.t3;g1776.t3;Cre02.g094004.t2.1;g1776.t3;Cre02.g094004.t2.1;Cre02.g094004.t2.1;g1776.t3;Cre02.g094004.t2.1;g1776.t3"		
+Cre02.g086600			Mitochondrion				"g1607.t1;Cre02.g086600.t1.1;g1607.t1;Cre02.g086600.t1.1"		
+Cre02.g099879			Mitochondrion				"g2033.t1;Cre02.g099879.t1.1"		
+Cre02.g119651				"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"Cre02.g119651.t1.1;g2485.t1"		
+Cre02.g141700						FAP315	g2656.t1	FAP315	
+Cre02.g104450	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2137.t1;g2137.t1;g2137.t1"		
+Cre02.g098900			Chloroplast				"g2011.t1;g2011.t1;g2011.t1;g2011.t1;g2011.t1;g2011.t1;g2011.t1;g2011.t1;g2011.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre02.g076625			Mitochondrion						
+Cre02.g098800	GMM:21.1	redox.thioredoxin	"Secretory pathway"	"GO:0009306;GO:0005788;GO:0005783"	"protein secretion;endoplasmic reticulum lumen;endoplasmic reticulum"		"g2009.t1;Cre02.g098800.t1.1"		
+Cre02.g081550	"GMM:29.2.2.3.99;GMM:20.2"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;stress.abiotic"					"Cre02.g081550.t1.1;HAD;g1493.t1"		
+Cre02.g073900	GMM:17.1.1	"hormone metabolism.abscisic acid.synthesis-degradation"	Chloroplast				"g1310.t1;g1310.t1;g1310.t1;g1310.t1;g1310.t1;g1310.t1"		
+Cre02.g143247									
+Cre02.g099800			Mitochondrion				g2031.t1		
+Cre02.g145200	GMM:11.1.20	"lipid metabolism.FA synthesis and FA elongation.MCD"	Chloroplast	"GO:0050080;GO:0006633"	"malonyl-CoA decarboxylase activity;fatty acid biosynthetic process"		g2564.t1		
+Cre02.g091300			Chloroplast				g1709.t1		
+Cre02.g104800	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTV1	"HTV1;g2145.t1"	HTV1	
+Cre02.g075301			Chloroplast						
+Cre02.g117550	GMM:31.1	cell.organisation				ANK13	"ANK13;Cre02.g117550.t1.1;g2437.t1"		"protein of unknown function with ankyrin repeats; similar to putative ankyrin AT2G03430 [Arabidopsis thaliana]"
+Cre02.g097300			Mitochondrion	"GO:0022857;GO:0019898;GO:0016021;GO:0008092;GO:0005737"	"transmembrane transporter activity;extrinsic component of membrane;integral component of membrane;cytoskeletal protein binding;cytoplasm"		g1980.t1		
+Cre02.g113626			"Secretory pathway"				g2342.t1		
+Cre02.g095130			"Secretory pathway"				"FLA2;Cre11.g473700.t1.1;g1903.t1;FAS7;Cre11.g473700.t1.1;FLA2;g1903.t1;FAS7;FLA2;Cre11.g473700.t1.1;FAS7;g1903.t1;FLA2;Cre11.g473700.t1.1;g1903.t1;FAS7;FLA2;Cre11.g473700.t1.1;g1903.t1;FAS7;FLA2;Cre11.g473700.t1.1;FAS7;g1903.t1;g1903.t1;FAS7;Cre11.g473700.t1.1;FLA2"		"Identified as Fasciclin-Like Arabinogalactan 2 (FLA2) in [PMID: 31010036];Identified as Fasciclin-Like Arabinogalactan 2 (FLA2) in [PMID: 31010036];Identified as Fasciclin-Like Arabinogalactan 2 (FLA2) in [PMID: 31010036];Identified as Fasciclin-Like Arabinogalactan 2 (FLA2) in [PMID: 31010036];Identified as Fasciclin-Like Arabinogalactan 2 (FLA2) in [PMID: 31010036];Identified as Fasciclin-Like Arabinogalactan 2 (FLA2) in [PMID: 31010036];Identified as Fasciclin-Like Arabinogalactan 2 (FLA2) in [PMID: 31010036]"
+Cre02.g142006									
+Cre02.g081100							"g1483.t1;Cre02.g081100.t1.1"		
+Cre02.g110400	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0005515	"protein binding"		"g2266.t1;Cre02.g110400.t1.1;Cre02.g110400.t1.1;g2266.t1;g2266.t1;Cre02.g110400.t1.1;Cre02.g110400.t1.1;g2266.t1"		
+Cre02.g092250	"GMM:29.6.3.1;GMM:29.6"	"protein.folding.immunophilins (IMM).FKBPs;protein.folding"		GO:0006457	"protein folding"	FKB42	"FKB22;g1729.t1;Cre02.g092250.t1.1;FKB22;g1729.t1;Cre02.g092250.t1.1"	"FKB42;FKB42"	"Multi-domain protein, with a FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8, PPIase, Rotamase, immunophilin), a TPR repeat, a calmodulin-binding site and, a transmembrane region [PMID: 15701785]; conserved in plants and red algae;Multi-domain protein, with a FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8, PPIase, Rotamase, immunophilin), a TPR repeat, a calmodulin-binding site and, a transmembrane region [PMID: 15701785]; conserved in plants and red algae"
+Cre02.g105600	"GMM:35.1.1;GMM:34.16"	"not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems"	Chloroplast			EYE3	"EYE3;g2165.t2;EYE3;g2165.t2"	"EYE3;EYE3"	"Conserved eyespot protein related to ABC1/COQ8 mitochondrial putative ser/thr kinase; localizes to eyespot and is required for assembly of the eyespot pigment granule arrays; similar to Arabidopsis thaliana proteins associated with plastoglobules (At1g71810, At1g79600); PMID: 10511552;Conserved eyespot protein related to ABC1/COQ8 mitochondrial putative ser/thr kinase; localizes to eyespot and is required for assembly of the eyespot pigment granule arrays; similar to Arabidopsis thaliana proteins associated with plastoglobules (At1g71810, At1g79600); PMID: 10511552"
+Cre02.g146850							"g2523.t1;Cre02.g146850.t1.1;g2523.t1;Cre02.g146850.t1.1"		
+Cre02.g095078							"g1852.t1;Cre11.g471600.t1.1;Cre11.g471600.t1.2;g1852.t1;Cre11.g471600.t1.1;Cre11.g471600.t1.2"		
+Cre02.g092983									
+Cre02.g077750	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			FAP211	"CSE12;g1402.t1;Cre02.g077750.t1.1;Cre02.g077750.t1.1;CSE12;g1402.t1;g1402.t1;CSE12;Cre02.g077750.t1.1"	"FAP211;FAP211;FAP211"	"Flagellar Associated Protein, found in the flagellar proteome; belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains;Flagellar Associated Protein, found in the flagellar proteome; belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains;Flagellar Associated Protein, found in the flagellar proteome; belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains"
+Cre02.g112250	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0006508;GO:0005622;GO:0004198"	"proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity"	CAL2	"g2310.t1;Cre02.g112250.t1.1;CAL2;Cre02.g112250.t1.1;g2310.t1;CAL2"	"CAL2;CAL2"	
+Cre02.g095600			Chloroplast				"g1941.t1;Cre02.g095600.t1.1;g1941.t1;Cre02.g095600.t1.1"		
+Cre02.g118850				GO:0000062	"fatty-acyl-CoA binding"		"Cre02.g118850.t1.1;g2466.t1"		
+Cre02.g074976									
+Cre02.g087400			Chloroplast				"g1623.t1;ZIP14;ZIL1;Cre02.g087400.t1.1"		
+Cre02.g141450	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC14	"UBC14;g2661.t1;Cre02.g141450.t1.1"	UBC14	"E2 Ubiquitin conjugating enzyme, subclass VII"
+Cre02.g102302									
+Cre02.g102276									
+Cre02.g144950	GMM:34.15	transport.potassium	Mitochondrion			KCN4	"KCN4;g2570.t1;g2570.t1;KCN4;g2570.t1;KCN4;KCN4;g2570.t1"		"Voltage-dependent 1-domain potassium channel (Shaker-like), alpha subunit; P-loop contains conserved motif for K+ selectivity, cyclic nucleotide binding domain at C-terminus;Voltage-dependent 1-domain potassium channel (Shaker-like), alpha subunit; P-loop contains conserved motif for K+ selectivity, cyclic nucleotide binding domain at C-terminus;Voltage-dependent 1-domain potassium channel (Shaker-like), alpha subunit; P-loop contains conserved motif for K+ selectivity, cyclic nucleotide binding domain at C-terminus;Voltage-dependent 1-domain potassium channel (Shaker-like), alpha subunit; P-loop contains conserved motif for K+ selectivity, cyclic nucleotide binding domain at C-terminus"
+Cre02.g076900	"GMM:29.4;GMM:29.2.2"	"protein.postranslational modification;protein.synthesis.ribosome biogenesis"				FAP19	"g1384.t1;CrPKG;CGK2;g1384.t1;CrPKG;CGK2;CrPKG;g1384.t1;CGK2;CrPKG;g1384.t1;CGK2"	"FAP19;FAP19;FAP19;FAP19"	"Similar to cGMP-dependent protein kinase; involved in signal transduction initiated by flagellar agglutination during mating [PMID: 16678098]; found in the flagellar proteome [PMID: 15998802]; ts-lethal mutant has fragile cell membrane when poked with a needle at restrictive temperature (PMID 29743196);Similar to cGMP-dependent protein kinase; involved in signal transduction initiated by flagellar agglutination during mating [PMID: 16678098]; found in the flagellar proteome [PMID: 15998802]; ts-lethal mutant has fragile cell membrane when poked with a needle at restrictive temperature (PMID 29743196);Similar to cGMP-dependent protein kinase; involved in signal transduction initiated by flagellar agglutination during mating [PMID: 16678098]; found in the flagellar proteome [PMID: 15998802]; ts-lethal mutant has fragile cell membrane when poked with a needle at restrictive temperature (PMID 29743196);Similar to cGMP-dependent protein kinase; involved in signal transduction initiated by flagellar agglutination during mating [PMID: 16678098]; found in the flagellar proteome [PMID: 15998802]; ts-lethal mutant has fragile cell membrane when poked with a needle at restrictive temperature (PMID 29743196)"
+Cre02.g101350	"GMM:29.2.1.2.2.510;GMM:29.2.1.1.3.2.510;GMM:29.2.1.1.3.2.0510"	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L10A;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L10A;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L10A"				RPL10A	"Cre02.g101350.t1.1;RPL10a;g2068.t1"	RPL10A	"Cytosolic 60S large ribosomal subunit protein L10a"
+Cre02.g095083			Mitochondrion				"Cre11.g471850.t1.1;Cre11.g471850.t1.2;g1857.t1"		
+Cre02.g101650			Mitochondrion				"g2074.t1;g2074.t1"		
+Cre02.g078700	GMM:27.3.57	"RNA.regulation of transcription.JUMONJI family"					"g1428.t1;g1428.t1"		
+Cre02.g078450							"g1421.t1;g1421.t1"		
+Cre02.g094750							"g1792.t2;g1792.t2;g1792.t2"		
+Cre02.g083935							"g1546.t1;Cre02.g083935.t1.1"		
+Cre02.g090950			Chloroplast				"g1700.t1;g1700.t1;g1700.t1"		
+Cre02.g143250	GMM:8.2.4	"TCA / organic transformation.other organic acid transformations.IDH"		"GO:0055114;GO:0051287;GO:0016616;GO:0000287"	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;magnesium ion binding"	IDH2	"g2620.t1;Cre02.g143250.t1.1;g2620.t1;Cre02.g143250.t1.1"	"IDH2;IDH2"	"isocitrate dehydrogenase, NAD-dependent, possibly mitochondrial based on homology to AT3G09810;isocitrate dehydrogenase, NAD-dependent, possibly mitochondrial based on homology to AT3G09810"
+Cre02.g105550			Chloroplast				g2164.t1		
+Cre02.g117781							g2443.t1		
+Cre02.g087350							"g1622.t1;g1622.t1;g1622.t1;g1622.t1"		
+Cre02.g095120	GMM:31.1	cell.organisation	Mitochondrion			ANK18	"ANK18;g1893.t1"		"Protein of unknown function with ankyrin repeats"
+Cre02.g142852									
+Cre02.g090526			Mitochondrion						
+Cre02.g085200				GO:0003676	"nucleic acid binding"		"g1574.t1;g1574.t1"		
+Cre02.g085150	GMM:27.3.28	"RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"	Chloroplast	"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"g1573.t2;g1573.t2;g1573.t2;g1573.t2"		
+Cre02.g075676			Chloroplast						
+Cre02.g103900	"GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	MAPKKK11	"MAPKKK11;g2125.t1;g2125.t1;MAPKKK11"		
+Cre02.g096551			Chloroplast				g1961.t1		
+Cre02.g086326			"Secretory pathway"						
+Cre02.g102776							"g2099.t1;g2099.t1;g2099.t1"		
+Cre02.g120150	GMM:1.3.2	"PS.calvin cycle.rubisco small subunit"	Chloroplast			RBCS2	"g2495.t1;Cre02.g120150.t1.1;Cre02.g120150.t1.1;g2495.t1;Cre02.g120150.t1.1;g2495.t1"	"RBCS2;RBCS2;RBCS2"	"Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme"
+Cre02.g096950			Mitochondrion				"Cre02.g096950.t1.1;g1970.t1"		
+Cre02.g087100			Chloroplast				"g1616.t1;Cre02.g087100.t1.1;g1616.t1;Cre02.g087100.t1.1"		
+Cre02.g083400							g1535.t1		
+Cre02.g109650	GMM:31.6.1.9	"cell.motility.eukaryotes.flagellar adhesion and gamete fusion"		"GO:0006355;GO:0003677"	"regulation of transcription, DNA-templated;DNA binding"	GSP1	"g2249.t1;g2249.t1"	"GSP1;GSP1"	"Homeobox transcription factor, expressed only in mating type (+) gametes, late in gametogenesis; repressed by the MID gene; activity may be modulated by phosphorylation; interacts in zygotes with the minus-specific protein GSM1 to initiated zygote development; gsm1/gsm1 and gsp1/GSP1 zygotes lack the GSM1/GSP1 dimer and show absence of pellicle formation and selective chloroplast nucleoid degradation; they inactivate SAD1 and SAG1 agglutinins upon cell fusion, but fail to repress their do novo production,;Homeobox transcription factor, expressed only in mating type (+) gametes, late in gametogenesis; repressed by the MID gene; activity may be modulated by phosphorylation; interacts in zygotes with the minus-specific protein GSM1 to initiated zygote development; gsm1/gsm1 and gsp1/GSP1 zygotes lack the GSM1/GSP1 dimer and show absence of pellicle formation and selective chloroplast nucleoid degradation; they inactivate SAD1 and SAG1 agglutinins upon cell fusion, but fail to repress their do novo production,"
+Cre02.g095070	"GMM:29.3.4.99;GMM:29.3.4.1"	"protein.targeting.secretory pathway.unspecified;protein.targeting.secretory pathway.ER"		"GO:0048500;GO:0008312;GO:0006614"	"signal recognition particle;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane"	SRP19	"Cre11.g471200.t1.1;g1844.t1;SRP19;g1844.t1;Cre11.g471200.t1.1;SRP19"	"SRP19;SRP19"	"Conserved Hypothetical Protein. Similar to the SRP19 subunit of the Signal Recognition Particle. Involved in ER protein translocation.;Conserved Hypothetical Protein. Similar to the SRP19 subunit of the Signal Recognition Particle. Involved in ER protein translocation."
+Cre02.g091550			Mitochondrion			WHI	"WHI;PBF2;g1714.t1;Cre02.g091550.t1.1;EZY18"		"Homolog of PBF-2 single-strand DNA-binding transcription regulator (see PMID: 1948264) and early zygote expressed protein EZY18 [PMID: 18487630]"
+Cre02.g144251							"g2589.t1;g2589.t1"		
+Cre02.g103500	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"	"Secretory pathway"	"GO:0055114;GO:0016491;GO:0006633;GO:0005506"	"oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding"		"g2115.t1;Cre02.g103500.t1.1;g2115.t1;Cre02.g103500.t1.1;Cre02.g103500.t1.1;g2115.t1"		
+Cre02.g102450	GMM:33.99	development.unspecified	"Secretory pathway"	GO:0005515	"protein binding"		"g2092.t1;Cre02.g102450.t1.1;g2092.t1;Cre02.g102450.t1.1"		
+Cre02.g115567			Chloroplast						
+Cre02.g096050							g1950.t1		
+Cre02.g111850				GO:0005515	"protein binding"		g2302.t1		
+Cre02.g075950			Chloroplast				"g1361.t1;g1361.t1;g1361.t1"		
+Cre02.g142627			"Secretory pathway"				"Cre15.g645300.t1.1;g2783.t3"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre02.g077061			"Secretory pathway"	"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		"Cre02.g077050.t1.3;g1388.t1"		
+Cre02.g110950	GMM:31.6.1.3.1.2	"cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.cytoplasmic dynein 1b subunits"				DIC5	"g2278.t1;FAP133;D1bIC2WD34"	DIC5	"found in the flagellar proteome"
+Cre02.g117350	GMM:31.6.1.11	cell.motility.eukaryotes.other		"GO:0018095;GO:0006464"	"protein polyglutamylation;cellular protein modification process"	MOT11	"TTL2;g2430.t1;g2430.t1;TTL2"	"MOT11;MOT11"	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia;identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre02.g142604							g2638.t1		
+Cre02.g142226	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre15.g646050.t1.1;g2759.t1;g2759.t1;Cre15.g646050.t1.1;Cre15.g646050.t1.1;g2759.t1;Cre15.g646050.t1.1;g2759.t1"		
+Cre02.g107200							g2197.t1		
+Cre02.g145250	GMM:29.2.1.2.1.27	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS27E2	"RPS27e2;RPS27-B;Cre02.g145250.t1.1;g2562.t1"	RPS27E2	"Cytosolic 40S small ribosomal subunit protein S27, isoform B"
+Cre02.g095056			Chloroplast						
+Cre02.g142166	"GMM:31.6.1.10;GMM:30.99"	"cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified"					"g2756.t2;Cre15.g646200.t1.1;g2756.t2;Cre15.g646200.t1.1;Cre15.g646200.t1.1;g2756.t2;Cre15.g646200.t1.1;g2756.t2;g2756.t2;Cre15.g646200.t1.1;g2756.t2;Cre15.g646200.t1.1"		
+Cre02.g078804	GMM:1.5	"PS.carbon concentrating mechanism"	Chloroplast			PHC40			
+Cre02.g143647			Chloroplast						
+Cre02.g119400			"Secretory pathway"				g2477.t1		
+Cre02.g100600			"Secretory pathway"				g2049.t1		
+Cre02.g118125			Mitochondrion				"Cre02.g118150.t1.3;g2451.t1"		
+Cre02.g114900						ANK23	"ANK23;g2374.t1;g2374.t1;ANK23;ANK23;g2374.t1;ANK23;g2374.t1;ANK23;g2374.t1;g2374.t1;ANK23"		"protein of unknown function with ankyrin repeats;protein of unknown function with ankyrin repeats;protein of unknown function with ankyrin repeats;protein of unknown function with ankyrin repeats;protein of unknown function with ankyrin repeats;protein of unknown function with ankyrin repeats"
+Cre02.g146150				"GO:0006355;GO:0006351"	"regulation of transcription, DNA-templated;transcription, DNA-templated"		g2537.t1		
+Cre02.g085600			Mitochondrion				"Cre02.g085600.t1.1;g1584.t1"		
+Cre02.g140961			Mitochondrion						
+Cre02.g096300						CCM1	"CIA5;CCM1;g1955.t1"	CCM1	"Master regulator of CO2-responsive genes including low-CO2 inducible genes necessary for CO2-concentrating mechanism; CCM1-A and CCM1-B are generated by an alternative splicing between 3rd and 4th exons, CCM1B=CIA5=698aa, CCM1A=699aa; two Zn-binding regions are located in N-terminus and its Zn-binding is indispensable for the regulation of CCM; ortholog is reported in Volvox carteri (PMID: 21253860)"
+Cre02.g142787									
+Cre02.g142546							g2779.t1		
+Cre27.g757197	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion				g18301.t1		
+Cre27.g757347	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion				g18306.t1		
+Cre27.g757147	GMM:20.2.3	stress.abiotic.drought/salt							
+Cre27.g757447			Mitochondrion						
+Cre27.g757297									
+Cre27.g757397							g18308.t1		
+Cre27.g757247			Mitochondrion						
+Cre51.g761597									
+Cre51.g761547				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre03.g169550	GMM:9.4	"mitochondrial electron transport / ATP synthesis.alternative oxidase"	Mitochondrion	"GO:0055114;GO:0009916"	"oxidation-reduction process;alternative oxidase activity"	AOX2	"g3491.t1;AOX2"	AOX2	"Alternative oxidase, mitochondrial precursor (see gi 9930474 gb AAG02081.1 AF285187_1[9930474])"
+Cre03.g183050			"Secretory pathway"			MGT1	"Cre03.g183050.t1.1;g3794.t1"	MGT1	"Probably localised to the Golgi complex and post-Golgi vesicles"
+Cre03.g174800							"g3610.t1;Cre03.g174800.t1.1"		
+Cre03.g146347							"Cre01.g061350.t1.2;g2982.t1;Cre01.g061350.t1.1"		
+Cre03.g187500				"GO:0004725;GO:0004721"	"protein tyrosine phosphatase activity;phosphoprotein phosphatase activity"		"Cre03.g187500.t1.1;g3884.t1;Cre03.g187500.t1.1;g3884.t1"		
+Cre03.g198750	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0003677;GO:0000166"	"DNA binding;nucleotide binding"		g4355.t1		
+Cre03.g190900							"g3951.t1;g3951.t1;g3951.t1"		
+Cre03.g168950			Chloroplast				"Cre03.g168950.t1.1;g3478.t1"		
+Cre03.g181300	GMM:13.1.6.1.6	"amino acid metabolism.synthesis.aromatic aa.chorismate.5-enolpyruvylshikimate-3-phosphate synthase"	Chloroplast	GO:0016765	"transferase activity, transferring alkyl or aryl (other than methyl) groups"	SHKG1	"Cre03.g181300.t1.1;SHKG1;g3757.t1;SHK6"	SHKG1	"predicted as mitochondrial by Target-P, but expected to be plastidic by homology"
+Cre03.g207825				"GO:0016779;GO:0009058"	"nucleotidyltransferase activity;biosynthetic process"		"g4437.t2;Cre19.g755100.t1.1;Cre19.g755100.t1.2;g4437.t2;Cre19.g755100.t1.2;Cre19.g755100.t1.1;Cre19.g755100.t1.1;Cre19.g755100.t1.2;g4437.t2"		
+Cre03.g160050						FAP184	"g3277.t1;Cre03.g160050.t1.1;g3277.t1;Cre03.g160050.t1.1"	"FAP184;FAP184"	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome; identified in the flagellar basal body proteome [PMID: 15137946]; upregulated by deflagellation;Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome; identified in the flagellar basal body proteome [PMID: 15137946]; upregulated by deflagellation"
+Cre03.g185600						OGD3	"OGD3;g3846.t1"	OGD3	"EC 2.3.1.61; 2-oxoglutarate dehydrogenase, E2 component"
+Cre03.g187950	"GMM:28.1;GMM:27.1.19"	"DNA.synthesis/chromatin structure;RNA.processing.ribonucleases"					"g3892.t1;SEE1"		"Putative splicing endonuclease positive effector, related to SEN1"
+Cre03.g194300			Mitochondrion	"GO:0016740;GO:0009058"	"transferase activity;biosynthetic process"		"g4021.t1;Cre03.g194300.t1.1;Cre03.g194300.t1.1;g4021.t1"	"NDUFAF6;NDUFAF6"	"Assembly facator for NADH:ubiquinone oxidoreductase (Complex I), mitochondrial; Ortholog to NDUFAF6 in Homo sapiens;;Assembly facator for NADH:ubiquinone oxidoreductase (Complex I), mitochondrial; Ortholog to NDUFAF6 in Homo sapiens;"
+Cre03.g203350			Mitochondrion				"g4252.t1;g4252.t1"		
+Cre03.g173750							"g3583.t1;g3583.t1"	"POB19;POB19"	"Found in basal body proteome;Found in basal body proteome"
+Cre03.g203345			Mitochondrion				"Cre19.g753250.t1.1;g4396.t1;Cre19.g753250.t1.2;g4396.t1;Cre19.g753250.t1.2;Cre19.g753250.t1.1;g4396.t1;Cre19.g753250.t1.2;Cre19.g753250.t1.1"		
+Cre03.g200150	"GMM:31.1.1.2;GMM:31.1"	"cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"		GO:0007023	"post-chaperonin tubulin folding pathway"		"Cre03.g200150.t1.1;g4324.t1;Cre03.g200150.t1.1;g4324.t1"		
+Cre03.g162850			"Secretory pathway"			FAP292	g3338.t1	FAP292	"Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre03.g162100	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006464;GO:0004719"	"cellular protein modification process;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity"	PIMT2	"PIMT2;g3322.t1;Cre03.g162100.t1.1"	PIMT2	"Hypothetical conserved protein similar to Protein-L-isoaspartate(D-aspartate) O-methyltransferase proteins. One of two proteins with predicted Asp-Methyltransferase activity (see PIMT1)"
+Cre03.g155950			"Secretory pathway"				"Cre03.g155950.t1.1;g3182.t1"		
+Cre03.g212753							"Cre19.g757050.t1.2;g4483.t1;Cre19.g757050.t1.1"		
+Cre03.g182550				"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PNO3	"g3783.t1;PNO3"		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g198250							"g4111.t1;Cre03.g198250.t1.1"		"belongs to a small gene family specific of Chlamydomonas"
+Cre03.g174525			Chloroplast				"g3603.t1;Cre03.g174543.t1.2"		
+Cre03.g171250							"g3529.t1;Cre03.g171250.t1.1;Cre03.g171250.t1.1;g3529.t1"		
+Cre03.g146267	GMM:27.3.12	"RNA.regulation of transcription.C3H zinc finger family"					"Cre01.g061150.t1.1;Cre01.g061150.t1.2;g2978.t1;Cre01.g061150.t1.2;g2978.t1;Cre01.g061150.t1.1;Cre01.g061150.t1.2;g2978.t1;Cre01.g061150.t1.1"		
+Cre03.g170050							g3501.t1		
+Cre03.g144464	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre03.g166250			Chloroplast				"Cre03.g166250.t1.1;FLA6;FAS11;g3412.t1"		"Identified as Fasciclin-Like Arabinogalactan 6 (FLA6) in [PMID: 31010036]"
+Cre03.g172750			"Secretory pathway"				"g3562.t1;g3562.t1;g3562.t1"		
+Cre03.g151600			Chloroplast				"Cre03.g151600.t1.1;g3085.t1"		
+Cre03.g155926									
+Cre03.g179650	GMM:31.1	cell.organisation	Mitochondrion	GO:0005515	"protein binding"		g3718.t1		
+Cre03.g176550	GMM:25	C1-metabolism		"GO:0035246;GO:0008168;GO:0006479"	"peptidyl-arginine N-methylation;methyltransferase activity;protein methylation"	PRMT5	"g3648.t1;PRM5"	PRMT5	"Protein-/Histone-arginine N-methyltransferase PRMT5 class, ChromDB PRMT344. S-adenosyl-L-methionine-dependent methyltransferase"
+Cre03.g170400							g3508.t1		
+Cre03.g199647	"GMM:29.2.3;GMM:29.2.2.3.5"	"protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"		"Cre19.g751750.t1.1;EIF4A;g4363.t1;EIF4A3;Cre19.g751750.t1.2;EIF4A;g4363.t1;Cre19.g751750.t1.2;EIF4A3;Cre19.g751750.t1.1"		"Forms the core of the Exon Junction Complex which associates to mRNAs upstream of the splicing sites and accompanies it until the first round of translation;Forms the core of the Exon Junction Complex which associates to mRNAs upstream of the splicing sites and accompanies it until the first round of translation"
+Cre03.g187550				"GO:0045892;GO:0005634"	"negative regulation of transcription, DNA-templated;nucleus"		g3885.t1		
+Cre03.g167400			Chloroplast				"Cre03.g167400.t1.1;g3436.t1"		
+Cre03.g149201	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"					"Cre03.g149200.t1.3;g3034.t1;g3034.t1;Cre03.g149200.t1.3;g3034.t1;Cre03.g149200.t1.3;Cre03.g149200.t1.3;g3034.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g183550			Mitochondrion	GO:0004518	"nuclease activity"		g3804.t1		
+Cre03.g196100							"Cre03.g196100.t1.1;g4062.t1;Cre03.g196100.t1.1;g4062.t1;Cre03.g196100.t1.1;g4062.t1;g4062.t1;Cre03.g196100.t1.1"		
+Cre03.g143927							"Cre01.g056150.t1.1;g2860.t1;Cre01.g056150.t1.2"		
+Cre03.g203457							"g4397.t1;Cre19.g753300.t1.1;g4397.t1;Cre19.g753300.t1.1"		
+Cre03.g208550			Chloroplast						
+Cre03.g174300			"Secretory pathway"				"g3596.t1;Cre03.g174300.t1.1"		
+Cre03.g151550			"Secretory pathway"				"g3084.t1;g3084.t1;g3084.t1"		
+Cre03.g179150			Chloroplast				"Cre03.g179150.t1.1;g3708.t1"		
+Cre03.g205137			"Secretory pathway"				"g4412.t1;Cre19.g754000.t1.1;Cre19.g754000.t1.1;g4412.t1;Cre19.g754000.t1.1;g4412.t1;g4412.t1;Cre19.g754000.t1.1;Cre19.g754000.t1.1;g4412.t1"		
+Cre03.g198467			Chloroplast						
+Cre03.g183600			Chloroplast				"g3805.t1;g3805.t1"		
+Cre03.g167668									
+Cre03.g145127	"GMM:31.6.1.4.2.1;GMM:31.6.1.4.1"	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.outer arm"		"GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0005515;GO:0003777"	"dynein complex;ATPase activity;microtubule-based movement;ATP binding;protein binding;microtubule motor activity"	DHC13	"ODA-DHCalpha;Cre01.g058400.t1.1;Cre01.g058400.t1.2;ODA11;g2920.t1;Cre01.g058400.t1.2;ODA11;ODA-DHCalpha;g2920.t1;Cre01.g058400.t1.1;Cre01.g058400.t1.1;Cre01.g058400.t1.2;ODA11;ODA-DHCalpha;g2920.t1;g2920.t1;ODA11;Cre01.g058400.t1.2;ODA-DHCalpha;Cre01.g058400.t1.1;Cre01.g058400.t1.1;ODA-DHCalpha;Cre01.g058400.t1.2;g2920.t1;ODA11;ODA11;g2920.t1;Cre01.g058400.t1.2;ODA-DHCalpha;Cre01.g058400.t1.1;g2920.t1;ODA11;Cre01.g058400.t1.2;ODA-DHCalpha;Cre01.g058400.t1.1;Cre01.g058400.t1.1;ODA-DHCalpha;Cre01.g058400.t1.2;ODA11;g2920.t1;Cre01.g058400.t1.2;ODA-DHCalpha;ODA11;g2920.t1;Cre01.g058400.t1.1;ODA-DHCalpha;Cre01.g058400.t1.2;ODA11;g2920.t1;Cre01.g058400.t1.1;Cre01.g058400.t1.1;ODA-DHCalpha;ODA11;Cre01.g058400.t1.2;g2920.t1;Cre01.g058400.t1.1;ODA-DHCalpha;Cre01.g058400.t1.2;ODA11;g2920.t1;Cre01.g058400.t1.1;Cre01.g058400.t1.2;ODA11;ODA-DHCalpha;g2920.t1;Cre01.g058400.t1.1;g2920.t1;ODA-DHCalpha;ODA11;Cre01.g058400.t1.2;Cre01.g058400.t1.2;ODA11;ODA-DHCalpha;g2920.t1;Cre01.g058400.t1.1;g2920.t1;ODA11;Cre01.g058400.t1.2;ODA-DHCalpha;Cre01.g058400.t1.1;g2920.t1;ODA-DHCalpha;ODA11;Cre01.g058400.t1.2;Cre01.g058400.t1.1;Cre01.g058400.t1.2;ODA11;ODA-DHCalpha;g2920.t1;Cre01.g058400.t1.1;g2920.t1;Cre01.g058400.t1.1;ODA11;Cre01.g058400.t1.2;ODA-DHCalpha;Cre01.g058400.t1.2;ODA11;ODA-DHCalpha;g2920.t1;Cre01.g058400.t1.1;Cre01.g058400.t1.1;Cre01.g058400.t1.2;ODA11;ODA-DHCalpha;g2920.t1"	"DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13;DHC13"	"Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain;Unlike other ODA HC mutants, ODA11 null only lacks DHC13 and one LC; phenotype is small beat frequency reduction (PMID 1673127); contains unusual N-terminal domain with IG and kelch repeats that form a beta propeller that interacts with the ODA beta heavy chain"
+Cre03.g145187			Chloroplast				"Cre01.g058550.t1.1;g2923.t1;Cre01.g058550.t1.2"		
+Cre03.g156850			"Secretory pathway"				"g3202.t1;g3202.t1;g3202.t1;g3202.t1;g3202.t1"		
+Cre03.g200750	GMM:27.3.46	"RNA.regulation of transcription.DNA methyltransferases"					"g4311.t1;DMC1;DMC1;g4311.t1;g4311.t1;DMC1"		"DNA methylase, C-5 cytosine-specific. ChromoDB DMT347;DNA methylase, C-5 cytosine-specific. ChromoDB DMT347;DNA methylase, C-5 cytosine-specific. ChromoDB DMT347"
+Cre03.g158000	GMM:19.3	"tetrapyrrole synthesis.GSA"	Chloroplast	"GO:0030170;GO:0008483"	"pyridoxal phosphate binding;transaminase activity"	GSA1	"g3234.t1;GSA;GSAT;GSA1;Cre03.g158000.t1.1;GSA;GSAT;g3234.t1;GSA1;Cre03.g158000.t1.1"	"GSA1;GSA1"	"Glutamate-1-semialdehyde aminotransferase (GSA-AT); Glutamate-1-semialdehyde 2,1-aminomutase, chloroplast precursor; PMID: 16126849; PMID: 15890644; PMID: 12228605; PMID: 10872234; PMID: 10080695; PMID: 8989881; PMID: 8155881; PMID: 1985889; predicted chloroplast targeting sequence amino acids 1-29 by ChloroP;Glutamate-1-semialdehyde aminotransferase (GSA-AT); Glutamate-1-semialdehyde 2,1-aminomutase, chloroplast precursor; PMID: 16126849; PMID: 15890644; PMID: 12228605; PMID: 10872234; PMID: 10080695; PMID: 8989881; PMID: 8155881; PMID: 1985889; predicted chloroplast targeting sequence amino acids 1-29 by ChloroP"
+Cre03.g166950	"GMM:4.3.12;GMM:4.2.12;GMM:4.1.12"	"glycolysis.unclear/dually targeted.phosphoglycerate mutase;glycolysis.plastid branch.phosphoglycerate mutase;glycolysis.cytosolic branch.phosphoglycerate mutase"		"GO:0016868;GO:0006096;GO:0004619"	"intramolecular transferase activity, phosphotransferases;glycolytic process;phosphoglycerate mutase activity"	PGM5	"Cre03.g166950.t1.1;PGM5;g3426.t1"		"Phosphoglycerate/bisphosphoglycerate mutase family protein (PGAM) [EC 5.4.2.1]l"
+Cre03.g151850							"g3090.t1;Cre03.g151850.t1.1"		
+Cre03.g193100			Mitochondrion				"g3995.t1;g3995.t1;g3995.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g143727			Chloroplast			CSU2			
+Cre03.g161606							"g3313.t1;Cre03.g161650.t1.2"		
+Cre03.g158300	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	PTK7	"PTK7;g3240.t1"		"Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre03.g194150			Chloroplast				"g4018.t1;g4018.t1"		
+Cre03.g149800	GMM:31.1	cell.organisation				TOG1	"TOG1;g3047.t1;g3047.t1;TOG1"	"TOG1;TOG1"	"Microtubule associated protein also known as MOR1 and XMAP215/Dis1;Microtubule associated protein also known as MOR1 and XMAP215/Dis1"
+Cre03.g197350	"GMM:27.3.26;GMM:27.1.1"	"RNA.regulation of transcription.MYB-related transcription factor family;RNA.processing.splicing"					"Cre03.g197350.t1.1;g4087.t1;Cre03.g197350.t1.1;g4087.t1;g4087.t1;Cre03.g197350.t1.1;g4087.t1;Cre03.g197350.t1.1"	"CDC5;CDC5;CDC5;CDC5"	"MYB DNA binding protein involved in cell cycle; mutants show abnormal division,with prolonged S/M phase, and accumulate higher amount of starch and oil;MYB DNA binding protein involved in cell cycle; mutants show abnormal division,with prolonged S/M phase, and accumulate higher amount of starch and oil;MYB DNA binding protein involved in cell cycle; mutants show abnormal division,with prolonged S/M phase, and accumulate higher amount of starch and oil;MYB DNA binding protein involved in cell cycle; mutants show abnormal division,with prolonged S/M phase, and accumulate higher amount of starch and oil"
+Cre03.g163200	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"	Chloroplast	"GO:0008270;GO:0006355;GO:0005634;GO:0003700"	"zinc ion binding;regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding"		"g3344.t1;g3344.t1"		
+Cre03.g177750	"GMM:34.99;GMM:20.1"	"transport.misc;stress.biotic"		"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"		"g3676.t1;MAE10;g3676.t1;MAE10"		"MATE efflux family protein;MATE efflux family protein"
+Cre03.g145567			Chloroplast			CGL18	"CGL18;Cre01.g059500.t1.1;g2943.t1"	CGL18	
+Cre03.g205600			Chloroplast				"IoJAP;Cre03.g205600.t1.1;g4200.t1"	RSF1	"Bacterial RsfA inhibits ribosome subunit joining under stress, higher plant IoJAP is involved in plastid ribosome biogenesis"
+Cre03.g154400						MFT15	"Cre03.g154400.t1.1;MFT15;g3146.t1;MFT15;Cre03.g154400.t1.1;g3146.t1"		"Permease;Permease"
+Cre03.g158750	"GMM:29.2.3;GMM:28.1;GMM:27.1.2;GMM:27.1;GMM:17.5.3"	"protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated"	Mitochondrion	"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"	HEL14	"g3250.t1;HEL14;HEL14;g3250.t1;g3250.t1;HEL14;HEL14;g3250.t1;g3250.t1;HEL14"		
+Cre03.g155400			Mitochondrion				"g3168.t1;Cre03.g155400.t1.1"		
+Cre03.g146027							"g2966.t1;Cre01.g060550.t1.1;Cre01.g060550.t1.1;g2966.t1;Cre01.g060550.t1.1;g2966.t1"		
+Cre03.g146647			"Secretory pathway"				g2997.t1		
+Cre03.g154950	GMM:26.9	"misc.glutathione S transferases"	"Secretory pathway"	GO:0005515	"protein binding"		"g3159.t1;GST6;Cre03.g154950.t1.1"		
+Cre03.g165471							"Cre03.g165471.t1.1;g3395.t1"		
+Cre03.g189950	"GMM:29.9;GMM:29.6.2.6;GMM:20"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress"	Cytosol	GO:0005515	"protein binding"	HOP	"g3933.t1;HOP1;Cre03.g189950.t1.1;HOP;g3933.t1;HOP;Cre03.g189950.t1.1;HOP1"	"HOP1;HOP1"	"HOP (or Sti1 in yeast) is a cytosolic protein that mediates the interaction between HSP90 and HSP70 via TPR domains; these bind to the EEVD motifs present in cytosolic HSP90 and HSP70 [PMID: 8423808];HOP (or Sti1 in yeast) is a cytosolic protein that mediates the interaction between HSP90 and HSP70 via TPR domains; these bind to the EEVD motifs present in cytosolic HSP90 and HSP70 [PMID: 8423808]"
+Cre03.g179941							"Cre73.g795050.t1.1;Cre73.g795050.t1.2;g3728.t1"		
+Cre03.g184651			"Secretory pathway"			RAD51D	"RAD51D;g3827.t1;Cre03.g184650.t1.3;Cre03.g184650.t1.3;RAD51D;g3827.t1;Cre03.g184650.t1.3;g3827.t1;RAD51D;RAD51D;g3827.t1;Cre03.g184650.t1.3;Cre03.g184650.t1.3;g3827.t1;RAD51D"	"RAD51D;RAD51D;RAD51D;RAD51D;RAD51D"	"Homologous to recA and RAD51; most similar to Arabidopsis RAD51D and human TRAD;Homologous to recA and RAD51; most similar to Arabidopsis RAD51D and human TRAD;Homologous to recA and RAD51; most similar to Arabidopsis RAD51D and human TRAD;Homologous to recA and RAD51; most similar to Arabidopsis RAD51D and human TRAD;Homologous to recA and RAD51; most similar to Arabidopsis RAD51D and human TRAD"
+Cre03.g211745	"GMM:6;GMM:11.1.8"	"gluconeogenesis / glyoxylate cycle;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase"		"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"g4474.t1;g4474.t1;g4474.t1"		
+Cre03.g153450							"g3126.t1;Cre03.g153450.t1.1"		
+Cre03.g203900			Mitochondrion				"Cre03.g203900.t1.1;g4238.t2"		
+Cre03.g201650			Mitochondrion				"g4289.t1;g4289.t1;g4289.t1"		
+Cre03.g205585							"Cre19.g754200.t1.1;g4417.t1;g4417.t1;Cre19.g754200.t1.1"		
+Cre03.g199150	GMM:23	"nucleotide metabolism"	Mitochondrion	"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"		"Cre03.g199150.t1.1;g4345.t1"		"NADH-ubiquinone oxidoreductase. This is an NAD dependent epimerase/dehydratase (see SNE series). This looks like NUOA9"
+Cre03.g197800	"GMM:31.1.1.3.11;GMM:31.1"	"cell.organisation.cytoskeleton.Myosin.Class XI;cell.organisation"	Chloroplast				"g4097.t1;g4097.t1;g4097.t1;g4097.t1;g4097.t1"		
+Cre03.g148700						PWR7	"g3024.t1;PWR7;Cre03.g148700.t1.1"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre03.g163750							"Cre03.g163750.t1.1;g3357.t1"		
+Cre03.g199300				"GO:0051087;GO:0006950;GO:0001671"	"chaperone binding;response to stress;ATPase activator activity"		"Cre03.g199300.t1.1;g4342.t1"	AHA1	"Co-chaperone of cytosolic HSP90; known to stimulate ATPase activity of HSP90"
+Cre03.g206900			Mitochondrion				"g4173.t1;g4173.t1;g4173.t1;g4173.t1"		
+Cre03.g154600			Chloroplast				"Cre03.g154600.t1.1;g3150.t1"		
+Cre03.g186500	GMM:27.3.54	"RNA.regulation of transcription.histone acetyltransferases"	Mitochondrion	"GO:0016573;GO:0016568;GO:0006348;GO:0005634;GO:0004402"	"histone acetylation;chromatin modification;chromatin silencing at telomere;nucleus;histone acetyltransferase activity"	HAT2	"HAT2;g3864.t1;g3864.t1;HAT2;g3864.t1;HAT2;g3864.t1;HAT2;HAT2;g3864.t1"	"HAT2;HAT2;HAT2;HAT2;HAT2"	"GNAT/MYST superfamily; ChromDB HAG343;GNAT/MYST superfamily; ChromDB HAG343;GNAT/MYST superfamily; ChromDB HAG343;GNAT/MYST superfamily; ChromDB HAG343;GNAT/MYST superfamily; ChromDB HAG343"
+Cre03.g207265			"Secretory pathway"				"g4432.t1;Cre19.g754850.t1.1;Cre19.g754850.t1.2"		
+Cre03.g208551	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion				g4130.t1		
+Cre03.g153800	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0042765;GO:0016255;GO:0008233;GO:0006508;GO:0003923"	"GPI-anchor transamidase complex;attachment of GPI anchor to protein;peptidase activity;proteolysis;GPI-anchor transamidase activity"	PIGK	"PIGK;g3133.t1;GPI8;PIGK;GPI8;g3133.t1"	"PIGK1;PIGK1"	"PIG-K, cysteine protease of the C13 family; catalytic subunit of the GPI (glycosyl phosphatidyl inositol) transamidase multiprotein complex; performs the proteolytic cleavage of the C-terminal signal sequence of the precursor protein, followed by the formation of an amide bond between the protein and the ethanolamine phosphate of the GPI. Gpi16, Gpi8 and Gaa1 form a sub-complex of the GPI transamidase;PIG-K, cysteine protease of the C13 family; catalytic subunit of the GPI (glycosyl phosphatidyl inositol) transamidase multiprotein complex; performs the proteolytic cleavage of the C-terminal signal sequence of the precursor protein, followed by the formation of an amide bond between the protein and the ethanolamine phosphate of the GPI. Gpi16, Gpi8 and Gaa1 form a sub-complex of the GPI transamidase"
+Cre03.g146447	"GMM:26.16;GMM:17.7.3"	"misc.myrosinases-lectin-jacalin;hormone metabolism.jasmonate.induced-regulated-responsive-activated"					"Cre01.g061600.t1.1;g2987.t1;g2987.t1;Cre01.g061600.t1.1"		"Target of CRR1;Target of CRR1"
+Cre03.g181500	GMM:2.2.2.4	"major CHO metabolism.degradation.starch.D enzyme"	Chloroplast	"GO:0005975;GO:0004134"	"carbohydrate metabolic process;4-alpha-glucanotransferase activity"	STA11	"g3761.t1;Cre03.g181500.t1.1;STA11"	DPE1	"alpha-1,4-glucanotransferase; transfers mostly maltosyl residues from a donor oligosaccharide to the nonreducing end of an acceptor. Described by Wattebled et al. 23 [PMID:12746519]. Known formally as disproportionating enzyme (D-enzyme); Identified as STA11 in a screen for starchless mutants"
+Cre03.g207600			Chloroplast			NSG6	"g4157.t1;NSG6;Cre03.g207600.t1.1;Cre03.g207600.t1.1;NSG6;g4157.t1;NSG6;Cre03.g207600.t1.1;g4157.t1"	"NSG6;NSG6;NSG6"	
+Cre03.g208555									
+Cre03.g205701			Mitochondrion						
+Cre03.g166800	GMM:31.6.1.11	cell.motility.eukaryotes.other	"Secretory pathway"	GO:0005515	"protein binding"		"g3423.t1;g3423.t1"		
+Cre03.g202450			Mitochondrion				"g4271.t1;g4271.t1;g4271.t1;g4271.t1;g4271.t1;g4271.t1"		
+Cre03.g176800	GMM:25.8	"C1-metabolism.tetrahydrofolate synthase"	Mitochondrion	"GO:0009396;GO:0009058;GO:0005524;GO:0004326"	"folic acid-containing compound biosynthetic process;biosynthetic process;ATP binding;tetrahydrofolylpolyglutamate synthase activity"	FPG1	"FPGS1;g3653.t1;FPG1"	FPG1	"Involved in folate biosynthesis"
+Cre03.g168650			Chloroplast				"g3471.t1;g3471.t1"		
+Cre03.g202250				"GO:0006260;GO:0005634"	"DNA replication;nucleus"		"g4276.t1;Cre03.g202250.t1.1;Cre03.g202250.t1.1;g4276.t1;Cre03.g202250.t1.1;g4276.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g193300						CPLD56	"g3999.t1;Cre03.g193300.t1.1;Cre03.g193300.t1.1;g3999.t1"	"CPLD56;CPLD56"	"Conserved in the Plant Lineage and Diatoms;Conserved in the Plant Lineage and Diatoms"
+Cre03.g200550	"GMM:33.99;GMM:1.1.7.1"	"development.unspecified;PS.lightreaction.hydrogenase.FeFe-hydrogenase"				HYD3	"Cre03.g200550.t1.1;g4316.t1"	HYD3	"Hydrogenase-like protein; similar to prelamin A binding protein. N-terminal region could be organelle targeting sequence."
+Cre03.g170750	GMM:29.2.1.99.1.4	"protein.synthesis.ribosomal protein.unknown.small subunit.S4"		"GO:0019843;GO:0005622;GO:0003723"	"rRNA binding;intracellular;RNA binding"	RNP3	"g3518.t1;RNP3;Cre03.g170750.t1.1"	RNP3	
+Cre03.g151100	GMM:20	stress				SSA15	"SSA15;g3075.t1;SSA15;g3075.t1"	"SSA15;SSA15"	"identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA)"
+Cre03.g172350				GO:0008418	"protein-N-terminal asparagine amidohydrolase activity"		"g3554.t1;g3554.t1;g3554.t1;g3554.t1"		
+Cre03.g194900			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"CYA4;g4036.t1;g4036.t1;CYA4;g4036.t1;CYA4"		"Lipocalins form a diverse yet poorly understood family of proteins, composed mainly of extracellular ligand-binding proteins displaying high specificity for small hydrophobic molecules;Lipocalins form a diverse yet poorly understood family of proteins, composed mainly of extracellular ligand-binding proteins displaying high specificity for small hydrophobic molecules;Lipocalins form a diverse yet poorly understood family of proteins, composed mainly of extracellular ligand-binding proteins displaying high specificity for small hydrophobic molecules"
+Cre03.g177400			"Secretory pathway"				"CYA2;g3667.t1;g3667.t1;CYA2;CYA2;g3667.t1;g3667.t1;CYA2"		"Contains periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain. May be involved in solute transport and early steps of a signal transduction cascade;Contains periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain. May be involved in solute transport and early steps of a signal transduction cascade;Contains periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain. May be involved in solute transport and early steps of a signal transduction cascade;Contains periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain. May be involved in solute transport and early steps of a signal transduction cascade"
+Cre03.g164450			Chloroplast				g3371.t1		
+Cre03.g175200	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0019867	"outer membrane"	TOC75	"Cre03.g175200.t1.1;g3617.t1"	TOC75	"Forms the central translocation pore; most closely related to AtTOC75_III; related to the Omp85 family of bacterial transmembrane beta-barrel proteins; contains a Targeting Peptide followed by a poly_glycine stretch that could target it to the envelope outer membrane"
+Cre03.g165550			Mitochondrion				"Cre03.g165550.t1.1;g3397.t1;g3397.t1;Cre03.g165550.t1.1"		
+Cre03.g144807	GMM:6.2	"gluconeogenesis / glyoxylate cycle.malate synthase"		"GO:0006097;GO:0004474"	"glyoxylate cycle;malate synthase activity"	MAS1	"Cre01.g057800.t1.1;g2904.t1;Cre01.g057800.t1.2;MAS1;Cre01.g057800.t1.2;MAS1;Cre01.g057800.t1.1;g2904.t1;Cre01.g057800.t1.1;g2904.t1;MAS1;Cre01.g057800.t1.2"	"MAS1;MAS1;MAS1"	"Malate synthase (EC 2.3.3.9); identical to cDNA sequence (AAP75564); PMID: 19214701;Malate synthase (EC 2.3.3.9); identical to cDNA sequence (AAP75564); PMID: 19214701;Malate synthase (EC 2.3.3.9); identical to cDNA sequence (AAP75564); PMID: 19214701"
+Cre03.g193700	GMM:29.5	protein.degradation	Chloroplast				g4009.t1		
+Cre03.g166600			Mitochondrion				"g3419.t1;DIV147;DIV147;g3419.t1;DIV147;g3419.t1;DIV147;g3419.t1;g3419.t1;DIV147;DIV147;g3419.t1"		"ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196)"
+Cre03.g164200			"Secretory pathway"				g3366.t1		
+Cre03.g177900			Mitochondrion			TOB38	"TOB38;Cre03.g177900.t1.1;TOM37;g3680.t1;SAM38"	MTX1	"38 kDa subunit of the the TOB complex; Mediates the insertion of beta-barrel proteins into the outer membrane of mitochondria; Also known as TOB38, TOM37, METAXIN, and SAM38; Similar to yeast Tob38 (YHR083W) and to Arabidopsis Metaxin (At2g19080)."
+Cre03.g201050			Chloroplast			ZNJ2	"Cre03.g201050.t1.1;g4304.t1;ZNJ2"	BSD2	"Encodes a DnaJ-like Zinc-finger protein; polysome-associated chaperone that co-migrates on sucrose gradients with rbcL transcripts; Not to be confused with Cre16.g678773, which was formerly annotated as BSD2 for 3-beta hydroxysteroid dehydrogenase"
+Cre03.g176150			Mitochondrion				"g3638.t1;Cre03.g176150.t1.1;g3638.t1;Cre03.g176150.t1.1"		
+Cre03.g143907	GMM:27.3.54	"RNA.regulation of transcription.histone acetyltransferases"	Chloroplast	"GO:0016747;GO:0006355"	"transferase activity, transferring acyl groups other than amino-acyl groups;regulation of transcription, DNA-templated"		"g2859.t1;Cre01.g056100.t1.2;Cre01.g056100.t1.1;Cre01.g056100.t1.1;Cre01.g056100.t1.2;g2859.t1"		
+Cre03.g204000			"Secretory pathway"				"Cre03.g204000.t1.1;g4236.t1"		
+Cre03.g153000							"g3115.t1;g3115.t1"		
+Cre03.g185950	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	Mitochondrion				g3853.t1		
+Cre03.g171461	GMM:19.8	"tetrapyrrole synthesis.coproporphyrinogen III oxidase"	Mitochondrion	"GO:0051536;GO:0003824"	"iron-sulfur cluster binding;catalytic activity"		g3534.t1	HEMN1	"Radical SAM superfamily protein, possible implication in heme synthesis; Orthologous to CPO-encoding gene AtHEMN1 in Arabidopsis thaliana;"
+Cre03.g152200							g3097.t1		
+Cre03.g163600			Mitochondrion				"Cre03.g163600.t1.1;g3354.t1"		
+Cre03.g196300			Chloroplast	"GO:0051536;GO:0003824"	"iron-sulfur cluster binding;catalytic activity"		"Cre03.g196300.t1.1;g4066.t1"		
+Cre03.g194517							g4026.t1		
+Cre03.g179300	"GMM:28.1;GMM:27.3.44"	"DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors"		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"		"g3711.t2;SRH6;SRH6;g3711.t2"		"SNF2 helicase with chromodomain. ChromoDB CHR341;SNF2 helicase with chromodomain. ChromoDB CHR341"
+Cre03.g157050				GO:0015743	"malate transport"		"g3206.t1;g3206.t1;g3206.t1;g3206.t1;g3206.t1"		
+Cre03.g195500	GMM:33.1	"development.storage proteins"	Mitochondrion	GO:0006629	"lipid metabolic process"	TGL9	"g4051.t1;TGL9"		
+Cre03.g144987	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre01.g058200.t1.1;g2913.t1;Cre01.g058200.t1.1;g2913.t1"		
+Cre03.g192300							"g3980.t1;Cre03.g192300.t1.1"		
+Cre03.g198150			Chloroplast	"GO:0051205;GO:0016021"	"protein insertion into membrane;integral component of membrane"	ALB3.3	"ALB3C;g4104.t1;ALB3.3;ALB3.3;ALB3C;g4104.t1"	"OXA1;OXA1"	"One of four proteins related to the Arabidopsis ALBINO3 and yeast OXA1 proteins; probably mitochondrial like Arabidopsis ortholog AT3G44370;One of four proteins related to the Arabidopsis ALBINO3 and yeast OXA1 proteins; probably mitochondrial like Arabidopsis ortholog AT3G44370"
+Cre03.g153150	"GMM:30.3;GMM:3.3;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g3119.t1;Cre03.g153150.t1.1;Cre03.g153150.t1.1;g3119.t1"		
+Cre03.g173350	"GMM:31.1;GMM:27.3.39"	"cell.organisation;RNA.regulation of transcription.AtSR transcription factor family"				ANK22	"ANK22;Cre03.g173350.t1.1;g3575.t2;ANK22b;ANK22;Cre03.g173350.t1.1;ANK22b;g3575.t2;Cre03.g173350.t1.1;ANK22b;g3575.t2;ANK22;ANK22b;g3575.t2;Cre03.g173350.t1.1;ANK22;g3575.t2;ANK22b;Cre03.g173350.t1.1;ANK22;g3575.t2;ANK22b;ANK22;Cre03.g173350.t1.1;Cre03.g173350.t1.1;ANK22b;g3575.t2;ANK22"		"Protein of unknown function with ankyrin repeats; two splice variants are expected, a less abundant splicing isoform and a shorter, most abundant splicing isoform;Protein of unknown function with ankyrin repeats; two splice variants are expected, a less abundant splicing isoform and a shorter, most abundant splicing isoform;Protein of unknown function with ankyrin repeats; two splice variants are expected, a less abundant splicing isoform and a shorter, most abundant splicing isoform;Protein of unknown function with ankyrin repeats; two splice variants are expected, a less abundant splicing isoform and a shorter, most abundant splicing isoform;Protein of unknown function with ankyrin repeats; two splice variants are expected, a less abundant splicing isoform and a shorter, most abundant splicing isoform;Protein of unknown function with ankyrin repeats; two splice variants are expected, a less abundant splicing isoform and a shorter, most abundant splicing isoform;Protein of unknown function with ankyrin repeats; two splice variants are expected, a less abundant splicing isoform and a shorter, most abundant splicing isoform"
+Cre03.g156200			"Secretory pathway"				"g3188.t3;g3188.t3;g3188.t3"		
+Cre03.g144827							"Cre01.g057850.t1.1;g2905.t1;Cre01.g057850.t1.2;Cre01.g057850.t1.2;g2905.t1;Cre01.g057850.t1.1"	"MIA40;MIA40"	"Intermembrane space factor involved in mitochondrial protein import; Similar to Arabidopsis MIA40 (At5g23395) and to yeast Mia40 (YKL195W); Like Mia40 in A.thaliana, this protein is much smaller than Mia40 protein in yeast; Cre12.g513150 was previously misidentified as the C.reinhardtii MIA40;;Intermembrane space factor involved in mitochondrial protein import; Similar to Arabidopsis MIA40 (At5g23395) and to yeast Mia40 (YKL195W); Like Mia40 in A.thaliana, this protein is much smaller than Mia40 protein in yeast; Cre12.g513150 was previously misidentified as the C.reinhardtii MIA40;"
+Cre03.g203905									
+Cre03.g152600							g3107.t1		
+Cre03.g171800			Chloroplast			FAP123	"Cre03.g171800.t1.1;g3541.t1"	FAP123	"Found in the flagellar proteome"
+Cre03.g200400	GMM:26.28	"misc.GDSL-motif lipase"					"Cre03.g200400.t1.1;g4319.t1;g4319.t1;Cre03.g200400.t1.1"		
+Cre03.g148450			"Secretory pathway"			TEH1	"TEH1;g3019.t1;g3019.t1;TEH1"		
+Cre03.g205500							"g4202.t1;g4202.t1;g4202.t1"		
+Cre03.g177500	"GMM:17.1.3;GMM:17.1.1"	"hormone metabolism.abscisic acid.induced-regulated-responsive-activated;hormone metabolism.abscisic acid.synthesis-degradation"					"g3670.t1;g3670.t1"		
+Cre03.g152150							"Cre03.g152150.t1.1;g3096.t1;g3096.t1;Cre03.g152150.t1.1"		
+Cre03.g176350	GMM:31.1	cell.organisation	Chloroplast			PLAP5	"Cre03.g176350.t1.1;PLP5;g3643.t2"	PLAP5	"PAP-fibrillin family protein"
+Cre03.g146407									
+Cre03.g184350	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g3820.t1;g3820.t1;g3820.t1;g3820.t1;g3820.t1;g3820.t1"		
+Cre03.g209393	"GMM:31.8;GMM:17.7.1.5"	"cell.contractile vacuole;hormone metabolism.jasmonate.synthesis-degradation.12-oxophytodienoate reductase 3"	Mitochondrion	"GO:0055114;GO:0016491;GO:0010181"	"oxidation-reduction process;oxidoreductase activity;FMN binding"		"Cre19.g755687.t1.1;Cre19.g755687.t1.2;g4452.t1"		
+Cre03.g189400	GMM:29.1.11	"protein.aa activation.serine-tRNA ligase"		"GO:0006434;GO:0006418;GO:0005737;GO:0005524;GO:0004828;GO:0004812;GO:0000166"	"seryl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;serine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding"	TSS2	"SERRS2;g3922.t1;TSS2;Cre03.g189400.t1.1"	TSS2	"transfers seryl moiety to tRNA-Ser and to tRNA-Sec (for selenocysteine synthesis)"
+Cre03.g153306							"Cre03.g153306.t1.1;g3123.t1;Cre03.g153306.t1.1;g3123.t1"		
+Cre03.g188026			Mitochondrion				g3895.t1		
+Cre03.g161250	"GMM:26.10;GMM:26.1"	"misc.cytochrome P450;misc.misc2"		"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP748A1	"Cre03.g161250.t1.1;CYP14;g3304.t1"	CYP748A1	"cytochrome P450, most like CYP4 family sequences in animals."
+Cre03.g209617			"Secretory pathway"				"Cre19.g755750.t1.1;g4454.t1"		
+Cre03.g208050	GMM:11.1.5	"lipid metabolism.FA synthesis and FA elongation.beta hydroxyacyl ACP dehydratase"	Chloroplast				"g4147.t1;Cre03.g208050.t1.1"	HAD1	"D-3-hydroxyoctanoyl-[acyl carrier protein] dehydratase (FAS complex)"
+Cre03.g189050			"Secretory pathway"			EAM1	"EMAN;g3915.t1;EAM1;EAM1;EMAN;g3915.t1"	"EAM1;EAM1"	"Glycoprotein endo-alpha-1,2-mannosidase, GH99 family, involved in N-glycosylation;Glycoprotein endo-alpha-1,2-mannosidase, GH99 family, involved in N-glycosylation"
+Cre03.g168775									
+Cre03.g203550			"Secretory pathway"				"GT90-3;GT90F3;g4246.t3"		
+Cre03.g190700							"Cre03.g190700.t1.1;g3947.t1"		
+Cre03.g180300	"GMM:26.10;GMM:14.3"	"misc.cytochrome P450;S-assimilation.sulfite redox"		"GO:0055114;GO:0016491;GO:0010181"	"oxidation-reduction process;oxidoreductase activity;FMN binding"	SIR3	"SIR3;g3737.t1;Cre03.g180300.t1.1"	SIR3	"Sulfite reductase, bacterial type, flavoprotein subunit (CysJ); has flavodoxin, FAD-binding and NADPH-binding domains, plus potential organelle-targeting sequence; some similarity to NADP-binding domain of FNR and to cytochrome p-450 reductases"
+Cre03.g200991							"Cre19.g752350.t1.1;Cre19.g752350.t1.2;g4375.t1"		
+Cre03.g182750	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"	"Secretory pathway"				"g3788.t1;Cre03.g182750.t1.1;Cre03.g182750.t1.1;g3788.t1;g3788.t1;Cre03.g182750.t1.1;Cre03.g182750.t1.1;g3788.t1;g3788.t1;Cre03.g182750.t1.1;g3788.t1;Cre03.g182750.t1.1"		
+Cre03.g207918							"g4150.t1;Cre03.g207918.t1.1"		
+Cre03.g204300			Chloroplast				g4229.t1		
+Cre03.g148950	"GMM:35.1.14;GMM:27.4"	"not assigned.no ontology.S RNA-binding domain-containing protein;RNA.RNA binding"	Chloroplast	GO:0003676	"nucleic acid binding"	CGL43	"Cre03.g148950.t1.1;PNT1;CGL43;g3029.t1;PNT1;Cre03.g148950.t1.1;CGL43;g3029.t1;PNT1;Cre03.g148950.t1.1;g3029.t1;CGL43;CGL43;g3029.t1;Cre03.g148950.t1.1;PNT1;PNT1;Cre03.g148950.t1.1;g3029.t1;CGL43"	"SRRP1;SRRP1;SRRP1;SRRP1;SRRP1"	"chloroplast RNA binding protein with S1 domain; Conserved in the Green Lineage; Arabidopsis homolog binds psbA mRNA;chloroplast RNA binding protein with S1 domain; Conserved in the Green Lineage; Arabidopsis homolog binds psbA mRNA;chloroplast RNA binding protein with S1 domain; Conserved in the Green Lineage; Arabidopsis homolog binds psbA mRNA;chloroplast RNA binding protein with S1 domain; Conserved in the Green Lineage; Arabidopsis homolog binds psbA mRNA;chloroplast RNA binding protein with S1 domain; Conserved in the Green Lineage; Arabidopsis homolog binds psbA mRNA"
+Cre03.g146867	GMM:31.1	cell.organisation				FAP17	"Cre01.g062600.t1.1;g3008.t1;Cre01.g062600.t1.1;g3008.t1;g3008.t1;Cre01.g062600.t1.1"	"FAP17;FAP17;FAP17"	"Contains Ankyrin Repeats;Contains Ankyrin Repeats;Contains Ankyrin Repeats"
+Cre03.g199983	GMM:29.4	"protein.postranslational modification"		GO:0016787	"hydrolase activity"		"Cre19.g751950.t1.1;g4366.t1;Cre19.g751950.t1.2"		
+Cre03.g178276			"Secretory pathway"				"Cre03.g178276.t1.1;g3690.t1"		
+Cre03.g205050	GMM:26.5	"misc.acyl transferases"	"Secretory pathway"	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	DGTT4	"CGLD24;DOT1;g4212.t1;Cre03.g205050.t1.1"	DGTT4	"Diacylglycerol O-acyltransferase: Conserved in the green lineage and diatoms"
+Cre03.g159700			Mitochondrion	GO:0016021	"integral component of membrane"		g3270.t1		
+Cre03.g201332			Mitochondrion	GO:0005515	"protein binding"		"g4297.t1;Cre03.g201332.t1.1"		
+Cre03.g160400	GMM:14.1	S-assimilation.APS		"GO:0055085;GO:0016021;GO:0008324;GO:0006813"	"transmembrane transport;integral component of membrane;cation transmembrane transporter activity;potassium ion transport"	SAC1	"g3286.t1;Cre03.g160400.t1.1;Cre03.g160400.t1.1;g3286.t1;Cre03.g160400.t1.1;g3286.t1"	"SAC1;SAC1;SAC1"	"Regulator of sulfur deficiency responses and sodium/sulfate co-transporter; putative membrane protein belonging to the SLC13A transporter family; candidate sulfate sensor; NCBI accessions U47541 (mRNA), Q39593 and AAB08008 (protein); PMID: 8641280. Note that a 1 bp deletion in the mRNA sequence in accession U47541 led to prediction of an amino acid sequence lacking 187 amino acids from N-terminus;Regulator of sulfur deficiency responses and sodium/sulfate co-transporter; putative membrane protein belonging to the SLC13A transporter family; candidate sulfate sensor; NCBI accessions U47541 (mRNA), Q39593 and AAB08008 (protein); PMID: 8641280. Note that a 1 bp deletion in the mRNA sequence in accession U47541 led to prediction of an amino acid sequence lacking 187 amino acids from N-terminus;Regulator of sulfur deficiency responses and sodium/sulfate co-transporter; putative membrane protein belonging to the SLC13A transporter family; candidate sulfate sensor; NCBI accessions U47541 (mRNA), Q39593 and AAB08008 (protein); PMID: 8641280. Note that a 1 bp deletion in the mRNA sequence in accession U47541 led to prediction of an amino acid sequence lacking 187 amino acids from N-terminus"
+Cre03.g172100	GMM:26.1	misc.misc2	Chloroplast	"GO:0042586;GO:0005506"	"peptide deformylase activity;iron ion binding"	PDF1A	"g3547.t1;Cre03.g172100.t1.1"	PDF1A	"Polypeptide deformylase,removes formyl group from initiator Met; predicted mitochondrion-targetted"
+Cre03.g188750	"GMM:29.2.3;GMM:29.2.2.3.5;GMM:27.1.2;GMM:17.5.3"	"protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;RNA.processing.RNA helicase;hormone metabolism.ethylene.induced-regulated-responsive-activated"		"GO:0005524;GO:0005515;GO:0003676"	"ATP binding;protein binding;nucleic acid binding"	HEL21	"g3909.t1;HEL21;HEL21;g3909.t1;HEL21;g3909.t1"		
+Cre03.g172900			Chloroplast				g3565.t1		
+Cre03.g197513				GO:0016021	"integral component of membrane"		"g4091.t1;Cre03.g197513.t1.1"		
+Cre03.g150350	"GMM:28.1;GMM:27.1.2"	"DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"	Mitochondrion			CPLD70	"g3058.t1;g3058.t1;g3058.t1"	"CPLD70;CPLD70;CPLD70"	
+Cre03.g149900			Mitochondrion				"g3049.t1;g3049.t1"		
+Cre03.g194700	"GMM:26.3.1;GMM:26.3"	"misc.gluco-, galacto- and mannosidases.alpha-galactosidase;misc.gluco-, galacto- and mannosidases"		"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	AGL1	"AGL1;g4032.t1;g4032.t1;AGL1;AGL1;g4032.t1"	"AGL1;AGL1;AGL1"	"Putative alpha-glucosidase (EC 3.2.1.20); similarity to arabidopsis [Aglu1; GenBank AAB82656] and sugar beet[GenBank BAA20343; PMID: 9178565] secreted alpha-glucosidase gene products; predicted mitochondrial targeting by Target-P, but location is uncertain;Putative alpha-glucosidase (EC 3.2.1.20); similarity to arabidopsis [Aglu1; GenBank AAB82656] and sugar beet[GenBank BAA20343; PMID: 9178565] secreted alpha-glucosidase gene products; predicted mitochondrial targeting by Target-P, but location is uncertain;Putative alpha-glucosidase (EC 3.2.1.20); similarity to arabidopsis [Aglu1; GenBank AAB82656] and sugar beet[GenBank BAA20343; PMID: 9178565] secreted alpha-glucosidase gene products; predicted mitochondrial targeting by Target-P, but location is uncertain"
+Cre03.g156550				GO:0035556	"intracellular signal transduction"		"g3196.t1;g3196.t1;g3196.t1"		
+Cre03.g150767							g3067.t1		
+Cre03.g206369	"GMM:29.4.1.57;GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4424.t1;Cre19.g754500.t1.1;g4424.t1;Cre19.g754500.t1.1;g4424.t1;Cre19.g754500.t1.1"		
+Cre03.g161900							g3317.t1		
+Cre03.g180850	GMM:29.3.4.2	"protein.targeting.secretory pathway.golgi"		"GO:0030127;GO:0008270;GO:0006888;GO:0006886"	"COPII vesicle coat;zinc ion binding;ER to Golgi vesicle-mediated transport;intracellular protein transport"	SEC23A	"Cre03.g180850.t1.1;g3748.t1;g3748.t1;Cre03.g180850.t1.1;g3748.t1;Cre03.g180850.t1.1;Cre03.g180850.t1.1;g3748.t1;g3748.t1;Cre03.g180850.t1.1;Cre03.g180850.t1.1;g3748.t1;g3748.t1;Cre03.g180850.t1.1"	"SEC23A;SEC23A;SEC23A;SEC23A;SEC23A;SEC23A;SEC23A"	"Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex."
+Cre03.g157200	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g3209.t1;g3209.t1;g3209.t1;g3209.t1;g3209.t1"		
+Cre03.g172150	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		"GO:0032012;GO:0005086"	"regulation of ARF protein signal transduction;ARF guanyl-nucleotide exchange factor activity"		"Cre03.g172150.t1.1;g3548.t1;g3548.t1;Cre03.g172150.t1.1"		
+Cre03.g208273			Chloroplast				g4441.t1		
+Cre03.g206033				GO:0016021	"integral component of membrane"		"g4421.t1;Cre19.g754351.t1.2;Cre19.g754351.t1.1;Cre19.g754351.t1.1;g4421.t1;Cre19.g754351.t1.2"		
+Cre03.g144224							"g2874.t1;Cre01.g056800.t1.1;Cre01.g056800.t1.1;g2874.t1"		
+Cre03.g202850			Chloroplast				"g4263.t1;g4263.t1;g4263.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g199600							"BES2;g4336.t1"		"Similar to Bestrophin, RFP-TM, chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family that includes Low-CO2-inducible membrane protein LCI11"
+Cre03.g179550	"GMM:27.3.99;GMM:27.2"	"RNA.regulation of transcription.unclassified;RNA.transcription"		"GO:0008270;GO:0006351;GO:0006289;GO:0006281;GO:0000439"	"zinc ion binding;transcription, DNA-templated;nucleotide-excision repair;DNA repair;core TFIIH complex"	TF2H2	"g3716.t1;TF2H2"	TF2H2	"transcription factor TFIIH, 44 kDasubunit; RNA polymerase II transcription initiation/nucleotide excision repair factor TFIIH subunit; ts-lethal mutant was isolated (PMID 29743196)"
+Cre03.g154500							"Cre03.g154500.t1.1;g3148.t1;g3148.t1;Cre03.g154500.t1.1;g3148.t1;Cre03.g154500.t1.1"		
+Cre03.g203121			Mitochondrion				"Cre19.g753150.t1.2;g4394.t1;Cre19.g753150.t1.1"		
+Cre03.g174400				"GO:0055114;GO:0046439;GO:0017172;GO:0005506"	"oxidation-reduction process;L-cysteine metabolic process;cysteine dioxygenase activity;iron ion binding"	CDO1	"Cre03.g174400.t1.1;g3598.t1;CDO1;CDO1;g3598.t1;Cre03.g174400.t1.1"	"CDO1;CDO1"	
+Cre03.g148750				"GO:0047746;GO:0015996"	"chlorophyllase activity;chlorophyll catabolic process"		"Cre03.g148750.t1.1;g3025.t1;CLH1;g3025.t1;CLH1;Cre03.g148750.t1.1"		"Chlorophyllase I, chloroplast precursor, putative; chlorophyllase protein; pfam7224; orthologous to AtCLH1; coronatine (methyl jasmonate) -induced protein 1 (CORI1) [PMID: 10611389]; chloroplast transit peptide 1-46, borderline probability using ChloroP;Chlorophyllase I, chloroplast precursor, putative; chlorophyllase protein; pfam7224; orthologous to AtCLH1; coronatine (methyl jasmonate) -induced protein 1 (CORI1) [PMID: 10611389]; chloroplast transit peptide 1-46, borderline probability using ChloroP"
+Cre03.g143687									
+Cre03.g182600						CPL1	"g3785.t1;g3785.t1;g3785.t1;g3785.t1"	"CPL1;CPL1;CPL1;CPL1"	
+Cre03.g159950	GMM:33.99	development.unspecified		GO:0005634	nucleus		g3275.t1		
+Cre03.g165900						PGM17	"g3404.t1;PGM17;g3404.t1;PGM17"		
+Cre03.g206593							"g4426.t1;g4426.t1;g4426.t1"		
+Cre03.g174600							"g3605.t1;g3605.t1"		
+Cre03.g175584							"g3625.t1;Cre03.g175584.t1.1"		
+Cre03.g184850	GMM:34.8	"transport.metabolite transporters at the envelope membrane"					"TPT9;TPT8;g3831.t1;g3831.t1;TPT9;TPT8"		
+Cre03.g187400							"g3882.t1;Cre03.g187400.t1.1;g3882.t1;Cre03.g187400.t1.1;Cre03.g187400.t1.1;g3882.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g173000			Chloroplast				g3567.t1		
+Cre03.g201500							"Cre03.g201500.t1.1;g4292.t1"		
+Cre03.g189650	"GMM:27.3.72;GMM:27.3.54"	"RNA.regulation of transcription.Transcriptional Adaptor Zinc Bundle (TAZ) domain family;RNA.regulation of transcription.histone acetyltransferases"		"GO:0016573;GO:0008270;GO:0006355;GO:0005634;GO:0004402;GO:0003712"	"histone acetylation;zinc ion binding;regulation of transcription, DNA-templated;nucleus;histone acetyltransferase activity;transcription cofactor activity"		"g3928.t1;g3928.t1;g3928.t1;g3928.t1;g3928.t1;g3928.t1"		"ChromDB HAC341; Homologous to CREB-binding protein, a co-activator of transcription with histone acetyltransferase activity;ChromDB HAC341; Homologous to CREB-binding protein, a co-activator of transcription with histone acetyltransferase activity;ChromDB HAC341; Homologous to CREB-binding protein, a co-activator of transcription with histone acetyltransferase activity;ChromDB HAC341; Homologous to CREB-binding protein, a co-activator of transcription with histone acetyltransferase activity;ChromDB HAC341; Homologous to CREB-binding protein, a co-activator of transcription with histone acetyltransferase activity;ChromDB HAC341; Homologous to CREB-binding protein, a co-activator of transcription with histone acetyltransferase activity"
+Cre03.g170150	"GMM:33.99;GMM:30.3;GMM:29.5.11.4.2"	"development.unspecified;signalling.calcium;protein.degradation.ubiquitin.E3.RING"		GO:0005515	"protein binding"		g3503.t1		
+Cre03.g178650	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0042555;GO:0006270;GO:0006260;GO:0005634;GO:0005524;GO:0003678;GO:0003677"	"MCM complex;DNA replication initiation;DNA replication;nucleus;ATP binding;DNA helicase activity;DNA binding"	MCM6	g3699.t1	MCM6	"Homology to MCM6 DNA replication protein; ts-lethal mutant block at S/M (PMID 29743196)"
+Cre03.g181200	GMM:13.2.4.4	"amino acid metabolism.degradation.branched chain group.leucine"	Mitochondrion				"g3755.t1;Cre03.g181200.t1.1"		
+Cre03.g173250							"g3573.t1;g3573.t1"		
+Cre03.g144031			"Secretory pathway"				"g2865.t1;Cre01.g056400.t1.1"		
+Cre03.g197050	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTV2	"HTV2;Cre03.g197050.t1.1;g4081.t1;HTV2;Cre03.g197050.t1.1;g4081.t1"	"HTV2;HTV2"	
+Cre03.g187800			Chloroplast				"Cre03.g187800.t1.1;g3890.t1"		
+Cre03.g167600						FAP61	"Cre03.g167600.t1.1;g3440.t1;CaM-IP3;g3440.t1;CaM-IP3;Cre03.g167600.t1.1"	"FAP61;FAP61"	"Associated with the CaM- and spoke-Associated CSC complex at the base of the radial spoke; altered in DRC mutant axonemes; conserved Flagellar Associated Protein; identified in the flagellar basal body proteome [PMID: 15137946]; basal structure of RS3 (PubMed ID:25694453 Urbanska et al Wloga, 2015); upregulated by deflagellation; null-allele mutant was isolated (PMID 29743196);Associated with the CaM- and spoke-Associated CSC complex at the base of the radial spoke; altered in DRC mutant axonemes; conserved Flagellar Associated Protein; identified in the flagellar basal body proteome [PMID: 15137946]; basal structure of RS3 (PubMed ID:25694453 Urbanska et al Wloga, 2015); upregulated by deflagellation; null-allele mutant was isolated (PMID 29743196)"
+Cre03.g174900	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"		GO:0005515	"protein binding"		g3612.t1		
+Cre03.g188650	GMM:31.1	cell.organisation	Chloroplast			PLAP2	"g3907.t1;Cre03.g188650.t1.1;PLP2"	PLAP2	"PAP-fibrillin family protein"
+Cre03.g185700			"Secretory pathway"				g3848.t1		
+Cre03.g165150			Chloroplast				"g3385.t1;g3385.t1"		
+Cre03.g153550							"g3128.t1;Cre03.g153550.t1.1"		
+Cre03.g194400	"GMM:29.2.3;GMM:17.3.2.99"	"protein.synthesis.initiation;hormone metabolism.brassinosteroid.signal transduction.other"		GO:0005515	"protein binding"	EIF3I	"EIF3I;g4023.t1;Cre03.g194400.t1.1"	EIF3I	"putative Eukaryotic translation initiation factor 3 subunit 2 (eIF-3 beta) (eIF3 p36) (eIF3i) (TGF-beta receptor interacting protein 1)"
+Cre03.g208554									
+Cre03.g191150	GMM:29.5	protein.degradation		GO:0005515	"protein binding"		"Cre03.g191150.t1.1;g3956.t1;g3956.t1;Cre03.g191150.t1.1"		
+Cre03.g162000	GMM:34.8	"transport.metabolite transporters at the envelope membrane"	"Secretory pathway"				"g3320.t1;Cre03.g162000.t1.1;TPT7;TPT8"		"Identified as MOT21, found in organisms with motile cilia by comparative genomic analysis, but most similar to higher plant homologues and not likely to be involved in motility"
+Cre03.g203250							"Cre03.g203250.t1.1;g4254.t1;g4254.t1;Cre03.g203250.t1.1"		
+Cre03.g206203			Mitochondrion				"g4190.t2;Cre03.g206050.t2.1;g4190.t2;Cre03.g206050.t2.1;Cre03.g206050.t2.1;g4190.t2;Cre03.g206050.t2.1;g4190.t2;Cre03.g206050.t2.1;g4190.t2;Cre03.g206050.t2.1;g4190.t2"		
+Cre03.g189850				GO:0005515	"protein binding"		"Cre03.g189850.t1.1;g3931.t1"		
+Cre03.g156750	"GMM:29.6.2.2;GMM:29.4"	"protein.folding.chaperones and co-chaperones.HSP60s;protein.postranslational modification"	Cytosol	GO:0005524	"ATP binding"	CCT5	"CCT5;Cre03.g156750.t1.1;g3200.t1;Cre03.g156750.t1.1;CCT5;g3200.t1"	"CCT5;CCT5"	"T-complex protein 1, epsilon subunit (TCP-1-epsilon) (CCT-epsilon) (TCPE); subunit of cytosolic chaperonin complex; found in the flagellar proteome [PMID: 15998802];T-complex protein 1, epsilon subunit (TCP-1-epsilon) (CCT-epsilon) (TCPE); subunit of cytosolic chaperonin complex; found in the flagellar proteome [PMID: 15998802]"
+Cre03.g177700						NIT2	"g3674.t1;g3674.t1;g3674.t1;g3674.t1"	"NIT2;NIT2;NIT2;NIT2"	"Necessary for expression of the genes in the NIT1 nitrate assimilation cluster; contains an RWPxRK box (but RWPxRQ); cloned by transposon tagging; mRNA sequence: DQ311647; most 137c laboratory strains including CC-4532, CC-125 and CC-503 carry, in addition to the nit1-137 mutation, the nit2-137 C4763867->A nonsense mutation, leading to truncation of the gene model; other 137c strains carry other independently incurred mutations, in particular CC-124 which shows a transposon insertion into the first CDS exo;Necessary for expression of the genes in the NIT1 nitrate assimilation cluster; contains an RWPxRK box (but RWPxRQ); cloned by transposon tagging; mRNA sequence: DQ311647; most 137c laboratory strains including CC-4532, CC-125 and CC-503 carry, in addition to the nit1-137 mutation, the nit2-137 C4763867->A nonsense mutation, leading to truncation of the gene model; other 137c strains carry other independently incurred mutations, in particular CC-124 which shows a transposon insertion into the first CDS exo;Necessary for expression of the genes in the NIT1 nitrate assimilation cluster; contains an RWPxRK box (but RWPxRQ); cloned by transposon tagging; mRNA sequence: DQ311647; most 137c laboratory strains including CC-4532, CC-125 and CC-503 carry, in addition to the nit1-137 mutation, the nit2-137 C4763867->A nonsense mutation, leading to truncation of the gene model; other 137c strains carry other independently incurred mutations, in particular CC-124 which shows a transposon insertion into the first CDS exo;Necessary for expression of the genes in the NIT1 nitrate assimilation cluster; contains an RWPxRK box (but RWPxRQ); cloned by transposon tagging; mRNA sequence: DQ311647; most 137c laboratory strains including CC-4532, CC-125 and CC-503 carry, in addition to the nit1-137 mutation, the nit2-137 C4763867->A nonsense mutation, leading to truncation of the gene model; other 137c strains carry other independently incurred mutations, in particular CC-124 which shows a transposon insertion into the first CDS exo"
+Cre03.g210177	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"		GO:0005509	"calcium ion binding"	cam21	g4459.t1		
+Cre03.g167622			Chloroplast						
+Cre03.g159600							"g3268.t1;Cre03.g159600.t1.1"		
+Cre03.g153600							"Cre03.g153600.t1.1;g3129.t1"		
+Cre03.g186400			Mitochondrion			SCR1	"g3862.t2;SCR1"	SCR1	"Homologous to metazoan scramblase, which exhibits Ca2+-activated phospholipid scrambling activity in vitro. There are also possible SH3 and WW binding motifs. Scramblase is involved in the redistribution of phospholipids after cell activation or injury (pfam03803); Scramblase is palmitoylated and contains a potential protein kinase C phosphorylation site."
+Cre03.g173500							g3578.t1		
+Cre03.g168500							"Cre03.g168500.t1.1;g3467.t1"		
+Cre03.g164101	GMM:27.1	RNA.processing				LSM7	"g3364.t1;LSM7"	LSM7	"gi 16072073 gb BI874069.1 BI874069, small nuclear riboprotein, U6 sm-like protein, LSm7, snRNP splicing; (SMP6c)"
+Cre03.g198975			"Secretory pathway"				"Cre15.g634351.t1.2;g4357.t1;Cre15.g634351.t1.1"		
+Cre03.g163050				"GO:0046556;GO:0046373"	"alpha-L-arabinofuranosidase activity;L-arabinose metabolic process"		"g3342.t1;g3342.t1;g3342.t1"		
+Cre03.g173950			Mitochondrion				g3588.t1		
+Cre03.g158400				GO:0046872	"metal ion binding"	FAP218	"g3242.t1;Cre03.g158400.t1.1;Cre03.g158400.t1.1;g3242.t1;g3242.t1;Cre03.g158400.t1.1"	"FAP218;FAP218;FAP218"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre03.g146827			"Secretory pathway"						
+Cre03.g205249	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"		"g4413.t1;Cre19.g754050.t1.1"		
+Cre03.g196400	GMM:27.3.65	"RNA.regulation of transcription.polycomb group (PcG)"		"GO:0035267;GO:0032777;GO:0006357"	"NuA4 histone acetyltransferase complex;Piccolo NuA4 histone acetyltransferase complex;regulation of transcription from RNA polymerase II promoter"		"g4068.t1;EPC1;EPC1;g4068.t1"		"ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196)"
+Cre03.g155650			Mitochondrion	"GO:0030132;GO:0030130;GO:0016192;GO:0006886;GO:0005198"	"clathrin coat of coated pit;clathrin coat of trans-Golgi network vesicle;vesicle-mediated transport;intracellular protein transport;structural molecule activity"	CLC1	"CLC1;g3175.t1;Cre03.g155650.t1.1"	CLC1	"Expressed Protein. Clathrin light chain, vesicle coat protein."
+Cre03.g205809			Mitochondrion	"GO:0003824;GO:0003677"	"catalytic activity;DNA binding"		"g4419.t1;Cre19.g754300.t1.1"		
+Cre03.g145227	GMM:35.1.41	"not assigned.no ontology.hydroxyproline rich proteins"					"g2925.t1;Cre01.g058650.t1.1;Cre01.g058650.t1.1;g2925.t1"		
+Cre03.g195326			Chloroplast						
+Cre03.g150700			"Secretory pathway"				g3065.t1		
+Cre03.g168250			"Secretory pathway"	"GO:0046872;GO:0016567;GO:0004842"	"metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity"		g3460.t1		
+Cre03.g191450			Mitochondrion				"g3962.t1;Cre03.g191450.t1.1"		
+Cre03.g208305	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion						
+Cre03.g161550						FAP55	"g3311.t1;Cre03.g161550.t1.1;g3311.t1;Cre03.g161550.t1.1;Cre03.g161550.t1.1;g3311.t1;g3311.t1;Cre03.g161550.t1.1;Cre03.g161550.t1.1;g3311.t1"	"FAP55;FAP55;FAP55;FAP55;FAP55"	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802];Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802];Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802];Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802];Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]"
+Cre03.g185350	GMM:3.6	"minor CHO metabolism.callose"	Mitochondrion	"GO:0016020;GO:0006075;GO:0003843;GO:0000148"	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	CALS1	"g3841.t1;GTR15;BGS3;GTR9"	CALS1	"1,3-beta-D-glucan synthase and glycosyl transferase of GT48 family; null-allele mutant was isolated (PMID 29743196)"
+Cre03.g207350							g4162.t1		
+Cre03.g146487	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion	"GO:0008536;GO:0006886"	"Ran GTPase binding;intracellular protein transport"	XPO1	"Cre01.g061700.t1.1;XPO1;g2989.t1;Cre01.g061700.t1.2"	XPO1	"Homolog of XPO1 proteins and CRM1 (yeast). Involved in exporting mRNA, protein and ribosomal subunits to the cytoplasm"
+Cre03.g153750			Chloroplast				"g3132.t1;Cre03.g153750.t1.1;Cre03.g153750.t1.1;g3132.t1;g3132.t1;Cre03.g153750.t1.1"		
+Cre03.g175300	GMM:11.8	"lipid metabolism.exotics (steroids, squalene etc)"	Chloroplast				"g3619.t1;FLA9;FAS14"		"Identified as Fasciclin-Like Arabinogalactan 9 (FLA9) in [PMID: 31010036]"
+Cre03.g153650							"Cre03.g153650.t1.1;g3130.t1"		
+Cre03.g201300			"Secretory pathway"	"GO:0055114;GO:0016715;GO:0005507;GO:0004497"	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;copper ion binding;monooxygenase activity"	SSA10	g4299.t1	SSA10	"identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA)"
+Cre03.g150450							"Cre03.g150450.t1.1;g3060.t1"		
+Cre03.g177300			"Secretory pathway"				"HAP4;Cre03.g177300.t1.1;g3665.t1"		"contains a PAP2/haloperoxidase domain found in vanadium chloroperoxidases and related to phosphoesterases; closely related to nearby HAP3 and to distantly linked stress-induced HAP1 and HAP2"
+Cre03.g201327	GMM:3.5	"minor CHO metabolism.others"	Chloroplast			AKR1	"Cre19.g752450.t1.1;g4378.t1;AKR1;AKR1;Cre19.g752450.t1.1;g4378.t1"		"Aldo/keto reductase; family includes a number of related monomeric NADPH-dependent oxidoreductases;Aldo/keto reductase; family includes a number of related monomeric NADPH-dependent oxidoreductases"
+Cre03.g145527	GMM:29.5	protein.degradation		"GO:0016021;GO:0006508;GO:0004252"	"integral component of membrane;proteolysis;serine-type endopeptidase activity"	RBL1	"Cre01.g059400.t1.1;Cre01.g059400.t1.2;g2941.t1;RBL1"		"similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579); linked to RBL2; possibly organelle-targeted; probably inactive,as it lacks some of the catalytic residues"
+Cre03.g199400	"GMM:33.99;GMM:31.3;GMM:28.1"	"development.unspecified;cell.cycle;DNA.synthesis/chromatin structure"	Chloroplast	"GO:0006260;GO:0005634;GO:0000808"	"DNA replication;nucleus;origin recognition complex"	ORC2	"g4340.t1;ORC2"	ORC2	"Homologous to eukaryotic ORC2, DNA replication control protein"
+Cre03.g146067	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre01.g060650.t1.1;g2968.t1;Cre01.g060650.t1.1;g2968.t1;Cre01.g060650.t1.1;g2968.t1;g2968.t1;Cre01.g060650.t1.1;g2968.t1;Cre01.g060650.t1.1;Cre01.g060650.t1.1;g2968.t1"		
+Cre03.g192850				GO:0008080	"N-acetyltransferase activity"		"g3990.t1;Cre03.g192850.t1.1"		
+Cre03.g212529			Mitochondrion				g4481.t1		
+Cre03.g184000							"g3813.t1;Cre03.g184000.t1.1;g3813.t1;Cre03.g184000.t1.1"		
+Cre03.g165400				GO:0031966	"mitochondrial membrane"	COX16	"g3393.t1;Cre03.g165400.t1.1;COX16"	COX16	"Putative mitochondrial inner membrane protein, required for assembly of cytochrome c oxidase (mitochondrial complex IV); similar to cytochrome c oxidase assembly factor 16 of yeast."
+Cre03.g208609									
+Cre03.g155150			"Secretory pathway"				g3163.t1		
+Cre03.g151700			"Secretory pathway"			CGL26	"g3087.t2;Cre03.g151700.t1.1;Cre03.g151700.t1.1;g3087.t2"	"CGL26;CGL26"	"ts-lethal mutant has fragile cell membrane when poked with a needle at restrictive temperature (PMID 29743196);ts-lethal mutant has fragile cell membrane when poked with a needle at restrictive temperature (PMID 29743196)"
+Cre03.g164300	GMM:11.9.3.2	"lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase"	Chloroplast				"g3368.t1;Cre03.g164300.t1.1"		
+Cre03.g183950	GMM:30.2.17	"signalling.receptor kinases.DUF 26"		GO:0015074	"DNA integration"				
+Cre03.g185850	"GMM:3.5;GMM:23.3.2.1"	"minor CHO metabolism.others;nucleotide metabolism.salvage.nucleoside kinases.adenosine kinase"	Chloroplast			CPK2	"g3851.t1;CPK2;CPK2;g3851.t1;CPK2;g3851.t1;g3851.t1;CPK2;CPK2;g3851.t1"		"PfkB-type carbohydrate kinase family protein, ribokinase; strong similarity to proteins in plants and bacteria - cd1168, adenosine_kinase.;PfkB-type carbohydrate kinase family protein, ribokinase; strong similarity to proteins in plants and bacteria - cd1168, adenosine_kinase.;PfkB-type carbohydrate kinase family protein, ribokinase; strong similarity to proteins in plants and bacteria - cd1168, adenosine_kinase.;PfkB-type carbohydrate kinase family protein, ribokinase; strong similarity to proteins in plants and bacteria - cd1168, adenosine_kinase.;PfkB-type carbohydrate kinase family protein, ribokinase; strong similarity to proteins in plants and bacteria - cd1168, adenosine_kinase."
+Cre03.g162601	"GMM:11.3.3;GMM:11.3"	"lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase;lipid metabolism.phospholipid synthesis"	Mitochondrion	"GO:0016780;GO:0016020;GO:0008654"	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"		"Cre03.g162600.t1.3;g3333.t1"	PGP3	"Phosphatidylglycerolphosphate synthase (PtdGro synthesis)"
+Cre03.g198400									
+Cre03.g154750			"Secretory pathway"				"Cre03.g154750.t1.1;g3154.t1"		
+Cre03.g190100	GMM:29.2.3	protein.synthesis.initiation		"GO:0031369;GO:0006413;GO:0005852;GO:0003743;GO:0003723;GO:0003676"	"translation initiation factor binding;translational initiation;eukaryotic translation initiation factor 3 complex;translation initiation factor activity;RNA binding;nucleic acid binding"	EIF3B	"EIF3B;g3936.t1"	EIF3B	"putative Eukaryotic translation initiation factor 3 subunit 9 (eIF-3 eta) (eIF3 p110) (eIF3b) (p82)"
+Cre03.g188300	GMM:20.1.1	"stress.biotic.respiratory burst"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	RBO1	"RBOL1;g3900.t1;RBOL1;g3900.t1"	"RBO1;RBO1"	"putative NADPH oxidase homolog, related to plant respiratory burst oxidase; respiratory burst oxidase; Ferric reductase like transmembrane component; possible NADPH oxidase activity; possible Cytochrome b-245 heavy chain;putative NADPH oxidase homolog, related to plant respiratory burst oxidase; respiratory burst oxidase; Ferric reductase like transmembrane component; possible NADPH oxidase activity; possible Cytochrome b-245 heavy chain"
+Cre03.g176450			"Secretory pathway"				g3646.t1		
+Cre03.g146167	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast.Stroma.Thylakoid.Membrane			TEF10a	"Cre01.g060900.t1.1;g2973.t1;TEF10a;Cre01.g060900.t1.2;TEF10a;Cre01.g060900.t1.2;Cre01.g060900.t1.1;g2973.t1;Cre01.g060900.t1.1;g2973.t1;TEF10a;Cre01.g060900.t1.2;Cre01.g060900.t1.1;g2973.t1;Cre01.g060900.t1.2;TEF10a"	"HHL1;HHL1;HHL1;HHL1"	"Conserved expressed protein; present in thylakoid-enriched fraction; transmembrane domain and C-terminal partial von Willebrand factor type A domain; Arabidopsis homolog interacts with LQY1 in PSII repair;Conserved expressed protein; present in thylakoid-enriched fraction; transmembrane domain and C-terminal partial von Willebrand factor type A domain; Arabidopsis homolog interacts with LQY1 in PSII repair;Conserved expressed protein; present in thylakoid-enriched fraction; transmembrane domain and C-terminal partial von Willebrand factor type A domain; Arabidopsis homolog interacts with LQY1 in PSII repair;Conserved expressed protein; present in thylakoid-enriched fraction; transmembrane domain and C-terminal partial von Willebrand factor type A domain; Arabidopsis homolog interacts with LQY1 in PSII repair"
+Cre03.g148150			Mitochondrion				"g3013.t1;g3013.t1;g3013.t1;g3013.t1"		
+Cre03.g148000			Chloroplast				"g3010.t1;Cre03.g148000.t1.1;Cre03.g148000.t1.1;g3010.t1;g3010.t1;Cre03.g148000.t1.1"		
+Cre03.g178750							g3701.t1		
+Cre03.g185200	GMM:26.27	"misc.calcineurin-like phosphoesterase family protein"	Chloroplast	GO:0016787	"hydrolase activity"	CPL3	"MPA6;Cre03.g185200.t1.1;CPL3;g3838.t1"	CPL3	"Metallophosphoesterase/metallo-dependent phosphatase. Plant-lineage conserved protein. Previously annotated as CPL3"
+Cre03.g193200							"Cre03.g193200.t1.1;g3997.t1"		
+Cre03.g149050			Chloroplast	GO:0016021	"integral component of membrane"		g3031.t1		
+Cre03.g203451			"Secretory pathway"				"Cre03.g203400.t1.3;CYA5;g4250.t1;g4250.t1;Cre03.g203400.t1.3;CYA5"		"possible guanylate or adenylate cyclase;possible guanylate or adenylate cyclase"
+Cre03.g205250	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"				ELG4	"g4208.t1;ELG4"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre03.g200250	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Chloroplast	"GO:0019752;GO:0004451"	"carboxylic acid metabolic process;isocitrate lyase activity"	ICL3	"ICL3;g4322.t1;Cre03.g200250.t1.1"		
+Cre03.g167500							"g3438.t1;Cre03.g167500.t1.1"		
+Cre03.g156100				GO:0000398	"mRNA splicing, via spliceosome"		"g3186.t1;Cre03.g156100.t1.1"		
+Cre03.g171387			Mitochondrion						
+Cre03.g146387									
+Cre03.g144324	"GMM:30.2.7;GMM:30.2.3"	"signalling.receptor kinases.leucine rich repeat VII;signalling.receptor kinases.leucine rich repeat III"					"g2880.t1;Cre01.g057050.t1.1;g2880.t1;Cre01.g057050.t1.1;Cre01.g057050.t1.1;g2880.t1;Cre01.g057050.t1.1;g2880.t1;g2880.t1;Cre01.g057050.t1.1;Cre01.g057050.t1.1;g2880.t1;g2880.t1;Cre01.g057050.t1.1;g2880.t1;Cre01.g057050.t1.1;g2880.t1;Cre01.g057050.t1.1;g2880.t1;Cre01.g057050.t1.1;Cre01.g057050.t1.1;g2880.t1;g2880.t1;Cre01.g057050.t1.1"		
+Cre03.g206250							g4186.t1		
+Cre03.g202339			Mitochondrion				"g4274.t1;Cre03.g202339.t1.1"		
+Cre03.g172000	"GMM:26.22;GMM:11.1.4"	"misc.short chain dehydrogenase/reductase (SDR);lipid metabolism.FA synthesis and FA elongation.ACP oxoacyl reductase"	Chloroplast			KAR1	"g3545.t1;Cre03.g172000.t1.1;OAR1;OAR1;Cre03.g172000.t1.1;g3545.t1;g3545.t1;Cre03.g172000.t1.1;OAR1;g3545.t1;Cre03.g172000.t1.1;OAR1;Cre03.g172000.t1.1;OAR1;g3545.t1;g3545.t1;Cre03.g172000.t1.1;OAR1"	"KAR1;KAR1;KAR1;KAR1;KAR1;KAR1"	"3-oxoacy-[acyl-carrier-protein] reductase (FAS complex);3-oxoacy-[acyl-carrier-protein] reductase (FAS complex);3-oxoacy-[acyl-carrier-protein] reductase (FAS complex);3-oxoacy-[acyl-carrier-protein] reductase (FAS complex);3-oxoacy-[acyl-carrier-protein] reductase (FAS complex);3-oxoacy-[acyl-carrier-protein] reductase (FAS complex)"
+Cre03.g210401			Chloroplast				"Cre19.g756050.t1.2;g4461.t1;Cre19.g756050.t1.1;Cre19.g756050.t1.1;g4461.t1;Cre19.g756050.t1.2"		
+Cre03.g194567			Chloroplast				"g4028.t1;Cre03.g194550.t1.3"		
+Cre03.g200651	GMM:31.1	cell.organisation		"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"g4314.t1;Cre03.g200640.t1.2"		
+Cre03.g202550	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	Mitochondrion			ELG11	"ELG11;g4269.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre03.g180017			Mitochondrion				"g3731.t1;g3731.t1"		
+Cre03.g207100			"Secretory pathway"				"g4168.t1;Cre03.g207100.t1.1"		
+Cre03.g197250			Chloroplast				"g4085.t1;g4085.t1;g4085.t1;g4085.t1;g4085.t1;g4085.t1"		
+Cre03.g192450			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g3983.t1;CYA3;g3983.t1;CYA3;CYA3;g3983.t1;CYA3;g3983.t1;g3983.t1;CYA3;g3983.t1;CYA3"		"possible guanylate or adenylate cyclase; null-allele mutant was isolated (PMID 29743196);possible guanylate or adenylate cyclase; null-allele mutant was isolated (PMID 29743196);possible guanylate or adenylate cyclase; null-allele mutant was isolated (PMID 29743196);possible guanylate or adenylate cyclase; null-allele mutant was isolated (PMID 29743196);possible guanylate or adenylate cyclase; null-allele mutant was isolated (PMID 29743196);possible guanylate or adenylate cyclase; null-allele mutant was isolated (PMID 29743196)"
+Cre03.g199900	GMM:29.2.3	protein.synthesis.initiation		"GO:0006413;GO:0005737;GO:0003743;GO:0003723"	"translational initiation;cytoplasm;translation initiation factor activity;RNA binding"	EIF4E	"EIF4E;Cre03.g199900.t1.1;g4329.t1"	EIF4E	"putative translation initiation factor 4E (eIF4E), part of 4F complex"
+Cre03.g154100			"Secretory pathway"				"g3139.t2;ABCA1C"		"One of three tandem paralogs (Cre03.g154000, Cre03.g154050, Cre03.g154100);"
+Cre03.g165750	GMM:27.2	RNA.transcription		"GO:0006351;GO:0003899;GO:0003677"	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"		g3401.t1		
+Cre03.g197950			Chloroplast				"g4100.t1;Cre03.g197950.t1.1"		
+Cre03.g206700							g4177.t1		
+Cre03.g178900	GMM:28.1	"DNA.synthesis/chromatin structure"	"Secretory pathway"			PRD1	"g3703.t1;g3703.t1"	"PRD1;PRD1"	"shows similarity to Arabidopsis PRD1, interacting with SPO11-1 to produce double-strand breaks during meiotic recombination;shows similarity to Arabidopsis PRD1, interacting with SPO11-1 to produce double-strand breaks during meiotic recombination"
+Cre03.g156700	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Mitochondrion			FAP185	"g3199.t1;Nphp3;g3199.t1;Nphp3"	"FAP185;FAP185"	"Conserved Flagellar Associated Protein; center is Similar to nephrocystin 3;Conserved Flagellar Associated Protein; center is Similar to nephrocystin 3"
+Cre03.g176833	"GMM:31.1.1.1.1;GMM:31.1"	"cell.organisation.cytoskeleton.actin.Actin;cell.organisation"	Chloroplast			NAP1	"NAP;g3654.t1;DII5"	NAP1	"Monomeric inner arm axonemal protein that can functionally replace actin for species b and g assembly; expression is activated in conventional actin (ida5) mutants [PMID: 97999]; nap1 null mutants are sensitive to the actin depolymerizing drug Latrunculin B (PMID: 26715672)"
+Cre03.g186750			Mitochondrion				"g3869.t1;Cre03.g186750.t1.1"		
+Cre03.g166350							g3414.t1		
+Cre03.g152701			Mitochondrion				"Cre03.g152700.t1.3;g3109.t1;g3109.t1;Cre03.g152700.t1.3"		
+Cre03.g194050							"g4016.t1;Cre03.g194050.t1.1"		
+Cre03.g204800	GMM:34.18.1	"transport.unspecified anions.arsenite-transporting ATPase"		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"	RTA2	"Cre03.g204800.t1.1;g4217.t1;RTA2"	RTA2	
+Cre03.g181100							"g3753.t1;g3753.t1"		
+Cre03.g144164	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"	RSEP2	"g2871.t1;Cre01.g056650.t1.1;Cre01.g056650.t1.2;RSE2;Cre01.g056650.t1.1;g2871.t1;Cre01.g056650.t1.2;RSE2"	"RSEP2;RSEP2"	"Intramembrane metalloprotease related to site-2 protease; contains M5 domain, with HExxH motif embedded in transmembrane helix; homologous to bacterial RseP/YaeL/PsoIVFB involved in transmembrane signaling; could be organelle-targeted, but N-terminal extension is well conserved with Volvox;Intramembrane metalloprotease related to site-2 protease; contains M5 domain, with HExxH motif embedded in transmembrane helix; homologous to bacterial RseP/YaeL/PsoIVFB involved in transmembrane signaling; could be organelle-targeted, but N-terminal extension is well conserved with Volvox"
+Cre03.g173650							"g3581.t1;Cre03.g173650.t1.1"		
+Cre03.g143967							"Cre01.g056250.t1.2;g2862.t1;Cre01.g056250.t1.1"		
+Cre03.g165650				"GO:0006888;GO:0005801;GO:0005622"	"ER to Golgi vesicle-mediated transport;cis-Golgi network;intracellular"		"g3399.t1;g3399.t1"		
+Cre03.g206650	GMM:29.4.1	"protein.postranslational modification.kinase"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4178.t1;Cre03.g206650.t1.1;Cre03.g206650.t1.1;g4178.t1;g4178.t1;Cre03.g206650.t1.1;g4178.t1;Cre03.g206650.t1.1"		
+Cre03.g212193									
+Cre03.g181800			"Secretory pathway"				"g3768.t1;Cre03.g181800.t1.1"		
+Cre03.g202561							"g4389.t2;Cre19.g752950.t2.1"		
+Cre03.g145827	GMM:29.5.1	protein.degradation.subtilases		"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	sub3	"g2956.t1;Cre01.g060100.t1.1"		
+Cre03.g202113	GMM:23.1.2.7	"nucleotide metabolism.synthesis.purine.SAICAR synthetase"	Chloroplast				"Cre19.g752750.t1.2;g4385.t1;Cre19.g752750.t1.1"		
+Cre03.g176300			Chloroplast				g3641.t1		
+Cre03.g165976									
+Cre03.g153250							g3121.t1		
+Cre03.g190800	GMM:23.4.4	"nucleotide metabolism.phosphotransfer and pyrophosphatases.thymidylate kinase"				TMPK	"g3949.t1;TMPK1;DIV28"	TMPK1	"ts-lethal mutations block in S/M (PMID 25336509)"
+Cre03.g190281									
+Cre03.g201150							"g4302.t1;g4302.t1;g4302.t1"		
+Cre03.g193950	GMM:21.1	redox.thioredoxin	Chloroplast	"GO:0055114;GO:0016730"	"oxidation-reduction process;oxidoreductase activity, acting on iron-sulfur proteins as donors"		"FTR3;g4014.t1;Cre03.g193950.t1.1;FTRC"	FTRC3	
+Cre03.g198050			Mitochondrion				"g4102.t1;Cre03.g198050.t1.1;g4102.t1;Cre03.g198050.t1.1"		
+Cre03.g144284	GMM:29.5.11.4.5.2	"protein.degradation.ubiquitin.E3.BTB/POZ Cullin3.BTB/POZ"		GO:0005515	"protein binding"	CGL110	g2878.t1	CGL110	
+Cre03.g186650							"g3867.t1;Cre03.g186650.t1.1"		
+Cre03.g187976									
+Cre03.g165000	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"		"g3382.t1;EFG10;LPA1;Cre03.g165000.t1.1;EFG10;g3382.t1;LPA1;Cre03.g165000.t1.1"	"EFG10;EFG10"	"Related to bacterial LepA, which is involved in maturation of the 30S ribosomal subunit and during the initiation phase of bacterial translation;Related to bacterial LepA, which is involved in maturation of the 30S ribosomal subunit and during the initiation phase of bacterial translation"
+Cre03.g196900	"GMM:31.4;GMM:29.3.4.1;GMM:28.99"	"cell.vesicle transport;protein.targeting.secretory pathway.ER;DNA.unspecified"		GO:0005789	"endoplasmic reticulum membrane"		"g4078.t1;Cre03.g196900.t1.1"		
+Cre03.g145787	GMM:29.6.2.1	"protein.folding.chaperones and co-chaperones.small HSPs"	Mitochondrion			HSP22C	"HSP22C;g2954.t1;Cre01.g060000.t1.1;Cre01.g060000.t1.2"	HSP22C	"Small heat shock protein containing an alpha-crystallin domain; N-terminus by TargetP weakly predicted to be chloroplast transit peptide; PMID: 16143837"
+Cre03.g205150			"Secretory pathway"				"g4210.t1;Cre03.g205150.t1.1"		
+Cre03.g202100	GMM:27.3.46	"RNA.regulation of transcription.DNA methyltransferases"	Chloroplast			OPR18	g4280.t1	OPR18	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre03.g169250							"g3484.t1;g3484.t1;g3484.t1;g3484.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre03.g188900			"Secretory pathway"				"g3912.t1;Cre03.g188900.t1.1;Cre03.g188900.t1.1;g3912.t1"		
+Cre03.g200655	GMM:29.5.5	"protein.degradation.serine protease"	Mitochondrion	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	DEG4	"g4372.t2;Cre19.g752200.t1.1"	DEG4	"almost identical to neighbouring paralog"
+Cre03.g180550				"GO:0016787;GO:0009166"	"hydrolase activity;nucleotide catabolic process"	FPN2	"FPN2;NTD5;Cre03.g180550.t1.1;g3742.t1"	FPN2	"Ecto-5'-nucleotidase precursor; 2,3-cyclic-nucleotide 2-phosphodiesterase; similar to nearby FPN2"
+Cre03.g192676									
+Cre03.g163450			Chloroplast				"g3351.t1;Cre03.g163450.t1.1"		
+Cre03.g191950	GMM:27.1	RNA.processing	Chloroplast	GO:0006364	"rRNA processing"	CGLD31	"g3973.t1;Cre03.g191950.t1.1"	CGLD31	"Conserved in the Green Lineage and Diatoms"
+Cre03.g193550			Mitochondrion			MRPL46	"MRPL46;g4004.t1;mL46;MRPL46;g4004.t1;mL46;g4004.t1;mL46;MRPL46"	"MRPL46;MRPL46;MRPL46"	
+Cre03.g171650	"GMM:28.99;GMM:28.1"	"DNA.unspecified;DNA.synthesis/chromatin structure"		"GO:0005524;GO:0004386;GO:0003676"	"ATP binding;helicase activity;nucleic acid binding"	HEL16	"HEL16;Cre03.g171650.t1.1;g3538.t1"		"DEAD/DEAH box family ATP dependent RNA helicase; may be an mRNA splicing factor by homology to Ostreococcus tauri"
+Cre03.g157800	GMM:21.1	redox.thioredoxin	Mitochondrion	"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRX2	"g3230.t1;TRL6;TRXL1;TRX2;g3230.t1;TRL6;TRXL1;TRX2;TRX2;g3230.t1;TRL6;TRXL1"		"conserved expressed thioredoxin-like protein, unusual active site WCNAC;conserved expressed thioredoxin-like protein, unusual active site WCNAC;conserved expressed thioredoxin-like protein, unusual active site WCNAC"
+Cre03.g174700			Chloroplast	"GO:0006259;GO:0004531"	"DNA metabolic process;deoxyribonuclease II activity"		g3608.t1		
+Cre03.g145347			Chloroplast						
+Cre03.g190400							"g3942.t1;g3942.t1;g3942.t1"		
+Cre03.g196700			"Secretory pathway"	GO:0016021	"integral component of membrane"		g4074.t1		
+Cre03.g164800	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g3378.t1;Cre03.g164800.t1.1;g3378.t1;Cre03.g164800.t1.1"		
+Cre03.g144907	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"		"GO:0043968;GO:0043967;GO:0035267;GO:0006338;GO:0006281"	"histone H2A acetylation;histone H4 acetylation;NuA4 histone acetyltransferase complex;chromatin remodeling;DNA repair"		"Cre01.g058050.t1.2;g2909.t1;Cre01.g058050.t1.1"		
+Cre03.g208833	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"		"g4447.t1;Cre19.g755450.t1.1;g4447.t1;Cre19.g755450.t1.1;g4447.t1;Cre19.g755450.t1.1"		
+Cre03.g194616			Mitochondrion						
+Cre03.g191700			Mitochondrion				"g3967.t1;g3967.t1;g3967.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g195000			Chloroplast				"g4038.t1;Cre03.g195000.t1.1"		
+Cre03.g194650	"GMM:33.99;GMM:33.2"	"development.unspecified;development.late embryogenesis abundant"				FAP121	"AOA1;g4031.t1"	FAP121	"Putative alcohol O-acetyltransferase; Similar to Guanylate Kinase"
+Cre03.g202700							"g4266.t1;g4266.t1;g4266.t1;g4266.t1"		
+Cre03.g182300	"GMM:4.3.12;GMM:4.1.12"	"glycolysis.unclear/dually targeted.phosphoglycerate mutase;glycolysis.cytosolic branch.phosphoglycerate mutase"	Chloroplast			PGM7	"PGM7;g3778.t1"		
+Cre03.g162950							"g3340.t1;Cre03.g162950.t1.1"	CCDC81	"Found in basal body proteome as CrCCDC81; Null allele mutant was isolated"
+Cre03.g208049			Chloroplast				"Cre19.g755200.t1.1;g4439.t1;Cre19.g755200.t1.1;g4439.t1"		
+Cre03.g145027			Mitochondrion				g2915.t1		
+Cre03.g198651			Mitochondrion				"TNP50;g4120.t1"		"Has a putative transposase DNA-binding domain containing four conserved cysteines suggestive of a zinc binding domain."
+Cre03.g200319							"Cre19.g752050.t1.1;g4369.t1;Cre19.g752050.t1.1;g4369.t1;Cre19.g752050.t1.1;g4369.t1;Cre19.g752050.t1.1;g4369.t1"		
+Cre03.g191776			Chloroplast						
+Cre03.g196200			"Secretory pathway"				g4064.t2		
+Cre03.g176050							"g3636.t1;Cre03.g176050.t1.1"		
+Cre03.g170850	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP19	"g3520.t1;MMP19"	MMP19	"Matrix metalloproteinase belonging to the M11 peptidase family"
+Cre03.g179860				GO:0008168	"methyltransferase activity"		g3724.t1		
+Cre03.g195050	GMM:3.5	"minor CHO metabolism.others"	"Secretory pathway"				"g4039.t1;Cre03.g195050.t1.1;g4039.t1;Cre03.g195050.t1.1"		
+Cre03.g191250			Chloroplast			LCI34	"Cre03.g191250.t1.1;g3958.t1"	LCI34	"Low-CO2 inducible gene revealed by cDNA array analyses; probably organelle-targetted; regulated by CCM1 [PMID: 15235119]"
+Cre03.g183700	GMM:3.6	"minor CHO metabolism.callose"		"GO:0016020;GO:0006075;GO:0003843;GO:0000148"	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	GSL3	"g3807.t1;BGS1;GTR10;GTR10;BGS1;g3807.t1"	"GSL3;GSL3"	"glycosyl transferase of GT48 family, possibly a 1,3-beta-D-glucan synthase;glycosyl transferase of GT48 family, possibly a 1,3-beta-D-glucan synthase"
+Cre03.g157564							"g3224.t1;Cre03.g157564.t1.1"		
+Cre03.g144584			Mitochondrion				"g2893.t1;Cre60.g792050.t1.1"		
+Cre03.g169500	"GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4.1;GMM:29.4"	"cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g3489.t1;Cre03.g169500.t1.1;Cre03.g169500.t1.1;g3489.t1;g3489.t1;Cre03.g169500.t1.1;g3489.t1;Cre03.g169500.t1.1"	"FLS2;FLS2;FLS2;FLS2"	"A CDK-like kinase that directly binds IFT70 and is required for proper ciliary disassembly;A CDK-like kinase that directly binds IFT70 and is required for proper ciliary disassembly;A CDK-like kinase that directly binds IFT70 and is required for proper ciliary disassembly;A CDK-like kinase that directly binds IFT70 and is required for proper ciliary disassembly"
+Cre03.g158464							"g3244.t1;g3244.t1"		
+Cre03.g156300						FAP405	"g3190.t1;Cre03.g156300.t1.1"	FAP405	
+Cre03.g201600							"g4290.t1;g4290.t1"		
+Cre03.g195100			Mitochondrion				"g4040.t1;g4040.t1;g4040.t1"		
+Cre03.g144344	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g2881.t2;g2881.t2"		
+Cre03.g157350							"g3213.t1;g3213.t1;g3213.t1"		
+Cre03.g201552	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP8	"g4380.t1;MMP8;Cre19.g752550.t1.1"	MMP8	"Belongs to the large VMP-family of metalloproteinases (identified in Volvox); the binding site of the catalytic metal ion in VMPs is QExxHxxGxxH not HExxHxxGxxH, therefore VMPs prefer copper for activity rather than zinc; extracellular matrix glycoprotein"
+Cre03.g192201			"Secretory pathway"			PHC51	"g3978.t1;Cre03.g192200.t1.3"	PHC51	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre03.g175851	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast				"Cre03.g175851.t1.1;g3633.t1;Cre03.g175851.t1.1;g3633.t1;Cre03.g175851.t1.1;g3633.t1"		
+Cre03.g208552									
+Cre03.g144244	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723"	"DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance"		"g2876.t1;Cre01.g056850.t1.1"		
+Cre03.g180100			Chloroplast	"GO:0016799;GO:0006281"	"hydrolase activity, hydrolyzing N-glycosyl compounds;DNA repair"	UNG2	"UNG2;g3733.t1;Cre03.g180100.t1.1;Cre03.g180100.t1.1;g3733.t1;UNG2"	"UNG2;UNG2"	"Prevents mutagenesis by eliminating uracil from DNA by cleaving the N-glycosylic bond and triggering base-excision repair. Uracil bases occur from cytosine deamination or misincorporation of dUMP residues.;Prevents mutagenesis by eliminating uracil from DNA by cleaving the N-glycosylic bond and triggering base-excision repair. Uracil bases occur from cytosine deamination or misincorporation of dUMP residues."
+Cre03.g206817			"Secretory pathway"				"g4428.t1;Cre19.g754650.t1.1;g4428.t1;Cre19.g754650.t1.1;Cre19.g754650.t1.1;g4428.t1"		
+Cre03.g189200				GO:0009235	"cobalamin metabolic process"		"g3918.t1;Cre03.g189200.t1.1"		
+Cre03.g157900							"g3232.t1;g3232.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g167000	GMM:29.5.11.3	protein.degradation.ubiquitin.E2		GO:0019789	"SUMO transferase activity"	UBC3	"UBC3;CrUBC3;g3427.t1;CreSCE1b;CrUbcE2_2;Cre03.g167000.t1.1"	SCE2	"E2 SUMO conjugating enzyme; Biochemical activity verified"
+Cre03.g205300			Mitochondrion	"GO:0008408;GO:0006139;GO:0003676"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding"	EXN7	"EXN7;g4207.t1"		
+Cre03.g157475									
+Cre03.g184450	"GMM:4.1.16;GMM:30.3;GMM:29.4.1;GMM:29.4"	"glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g3822.t1;g3822.t1;g3822.t1"		
+Cre03.g150600	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"				"g3063.t1;Cre03.g150600.t1.1"		
+Cre03.g155550			Chloroplast			DNJ18	"g3173.t1;DNJ18;Cre03.g155550.t1.1;g3173.t1;DNJ18;Cre03.g155550.t1.1"		"DnaJ-like protein; perhaps targeted to chloroplast, since it contains N-terminal extension which is predicted by ChloroP to be cp transit peptide; contains N-terminal J-domain (pfam226), C-terminus shows weak homology with Desulfovibrio vulgaris Q727D7;DnaJ-like protein; perhaps targeted to chloroplast, since it contains N-terminal extension which is predicted by ChloroP to be cp transit peptide; contains N-terminal J-domain (pfam226), C-terminus shows weak homology with Desulfovibrio vulgaris Q727D7"
+Cre03.g164900	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g3380.t2;g3380.t2"		
+Cre03.g204752	GMM:27.1	RNA.processing	Mitochondrion				g4220.t1		
+Cre03.g177200	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"	CRB3	"Cre03.g177200.t1.1;g3663.t1;CRB3;CRB3;g3663.t1;Cre03.g177200.t1.1"	"CRB3;CRB3"	"RNA-binding protein of the CELF (CUGBP-ETR-3-like factors) family containing three RRM domains; spacer between RRM 2 and RRM 3 is rich in Met and Gly; subunit of the circadian RNA-binding protein CHLAMY 1 [PMID: 15190002];RNA-binding protein of the CELF (CUGBP-ETR-3-like factors) family containing three RRM domains; spacer between RRM 2 and RRM 3 is rich in Met and Gly; subunit of the circadian RNA-binding protein CHLAMY 1 [PMID: 15190002]"
+Cre03.g199450			Chloroplast			MINE2	"g4339.t1;Cre03.g199450.t1.1"	MINE2	"putative MinE homolog, chloroplast division site-determinant"
+Cre03.g161350			"Secretory pathway"				g3306.t1		
+Cre03.g213313	GMM:11.1.4	"lipid metabolism.FA synthesis and FA elongation.ACP oxoacyl reductase"	Mitochondrion				"Cre19.g757250.t1.1;Cre19.g757250.t1.2;g4488.t1;g4488.t1;Cre19.g757250.t1.2;Cre19.g757250.t1.1"		
+Cre03.g166100							"g3409.t1;Cre03.g166100.t1.1"		
+Cre03.g181650				"GO:0030915;GO:0006281"	"Smc5-Smc6 complex;DNA repair"		"g3765.t1;Cre03.g181650.t1.1;g3765.t1;Cre03.g181650.t1.1"		
+Cre03.g188200	GMM:27.1.19	RNA.processing.ribonucleases				RPH2	"RPH2;Cre03.g188200.t1.1;g3898.t1;RNPH2;Cre03.g188200.t1.1;g3898.t1;RPH2;RNPH2"	"RPH2;RPH2"	"Homologue of S. cerevisiae Rrp42, which is a core component of the exosome, a complex of multiple 3'-5' exoribonucleases involved in RNA processing and RNA degradation. Homologue of RNase PH.;Homologue of S. cerevisiae Rrp42, which is a core component of the exosome, a complex of multiple 3'-5' exoribonucleases involved in RNA processing and RNA degradation. Homologue of RNase PH."
+Cre03.g150850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g3070.t1;Cre03.g150850.t1.1"		
+Cre03.g194200	"GMM:8.1.1.1;GMM:11.1.31"	"TCA / organic transformation.TCA.pyruvate DH.E1;lipid metabolism.FA synthesis and FA elongation.pyruvate DH"	Chloroplast	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	PDH2	"g4019.t1;PDH2;Cre03.g194200.t1.1;PDH2;Cre03.g194200.t1.1;g4019.t1;g4019.t1;Cre03.g194200.t1.1;PDH2;PDH2;Cre03.g194200.t1.1;g4019.t1;g4019.t1;PDH2;Cre03.g194200.t1.1"	"PDH2;PDH2;PDH2;PDH2;PDH2"	"Putative Pyruvate dehydrogenase (lipoamide); pyruvate dehydrogenase E1 beta subunit, probably plastid precursor; similar to Arabidopsis PDH E1 beta (GenBank NP_174304) and predicted organelle targeting sequence by Target-P;Putative Pyruvate dehydrogenase (lipoamide); pyruvate dehydrogenase E1 beta subunit, probably plastid precursor; similar to Arabidopsis PDH E1 beta (GenBank NP_174304) and predicted organelle targeting sequence by Target-P;Putative Pyruvate dehydrogenase (lipoamide); pyruvate dehydrogenase E1 beta subunit, probably plastid precursor; similar to Arabidopsis PDH E1 beta (GenBank NP_174304) and predicted organelle targeting sequence by Target-P;Putative Pyruvate dehydrogenase (lipoamide); pyruvate dehydrogenase E1 beta subunit, probably plastid precursor; similar to Arabidopsis PDH E1 beta (GenBank NP_174304) and predicted organelle targeting sequence by Target-P;Putative Pyruvate dehydrogenase (lipoamide); pyruvate dehydrogenase E1 beta subunit, probably plastid precursor; similar to Arabidopsis PDH E1 beta (GenBank NP_174304) and predicted organelle targeting sequence by Target-P"
+Cre03.g187100							"g3876.t1;g3876.t1;g3876.t1"		
+Cre03.g169900			Chloroplast				"g3498.t1;Cre03.g169900.t1.1"		
+Cre03.g146767	GMM:24	"biodegradation of xenobiotics"	"Secretory pathway"			GOX11			
+Cre03.g168400							"g3465.t1;g3465.t1;g3465.t1"	"OPR134;OPR134;OPR134"	"contains a C-terminally truncated RAP domain;contains a C-terminally truncated RAP domain;contains a C-terminally truncated RAP domain"
+Cre03.g192900						OPR17	"g3991.t1;g3991.t1;g3991.t1"	"OPR17;OPR17;OPR17"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain"
+Cre03.g202001			"Secretory pathway"				"Cre19.g752700.t1.1;Cre19.g752700.t1.2;g4384.t1"		
+Cre03.g209841			Chloroplast				"Cre19.g755800.t1.1;g4456.t1"		
+Cre03.g169700	GMM:27.1	RNA.processing	Chloroplast	"GO:0008173;GO:0006396;GO:0003723"	"RNA methyltransferase activity;RNA processing;RNA binding"	tmg11	"Cre03.g169700.t1.1;TMG11;g3494.t1"		
+Cre03.g201850	"GMM:31.6.1.5.1;GMM:28.2;GMM:27.3.44"	"cell.motility.eukaryotes.radial spoke.head;DNA.repair;RNA.regulation of transcription.chromatin remodeling factors"	Chloroplast	"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"		"g4285.t1;SRH10"		"Putative SNF-related DNA/RNA helicase, identified as ChromDB CHR3412"
+Cre03.g208300	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"							
+Cre03.g155350				"GO:0055114;GO:0010181;GO:0004733"	"oxidation-reduction process;FMN binding;pyridoxamine-phosphate oxidase activity"		"Cre03.g155350.t1.1;g3167.t1;PPO4"		
+Cre03.g200350			Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"g4320.t1;Cre03.g200350.t1.1;SMM12;g4320.t1;SMM12;Cre03.g200350.t1.1;SMM12;g4320.t1;Cre03.g200350.t1.1"		"Target of CRR1;Target of CRR1;Target of CRR1"
+Cre03.g182700				"GO:0008270;GO:0005622"	"zinc ion binding;intracellular"		"g3787.t1;g3787.t1"		
+Cre03.g144524	GMM:11.9.2.1	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase"		GO:0006629	"lipid metabolic process"		"g2890.t1;Cre01.g057450.t1.1"		
+Cre03.g180200				GO:0005515	"protein binding"		"g3735.t1;Cre03.g180200.t1.1"		
+Cre03.g146127						FAP96	"Cre01.g060800.t1.1;Cre01.g060800.t1.2;g2971.t1"	FAP96	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]"
+Cre03.g150000							"g3051.t1;g3051.t1"		
+Cre03.g195450	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"				POC11	"g4050.t1;POC11;POC11;g4050.t1"	"POC11;POC11"	"Found in basal body proteome; Related to CCDC77 in humans;Found in basal body proteome; Related to CCDC77 in humans"
+Cre03.g192350			"Secretory pathway"	GO:0005515	"protein binding"		"g3981.t1;g3981.t1;g3981.t1;g3981.t1;g3981.t1"		
+Cre03.g204689	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	"Secretory pathway"	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE21	"g4408.t1;Cre19.g753800.t1.1;PDE21;g4408.t1;PDE21;Cre19.g753800.t1.1;g4408.t1;PDE21;Cre19.g753800.t1.1;g4408.t1;Cre19.g753800.t1.1;PDE21"		"Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus.;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus.;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus.;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus."
+Cre03.g197900			"Secretory pathway"				g4099.t1		
+Cre03.g183800							g3809.t1		
+Cre03.g167924	GMM:29.4	"protein.postranslational modification"					"Cre03.g167950.t1.2;g3454.t1"		
+Cre03.g156350			Mitochondrion			OPR15	"Cre03.g156350.t1.1;g3191.t1"	OPR15	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre03.g150101						NRT2.4	"g3053.t1;NRT2.4;g3053.t1;NRT2.4"	"NRT2D;NRT2D"	"next to NRT2.5;next to NRT2.5"
+Cre03.g204465			"Secretory pathway"				"g4406.t3;GT90F36;Cre19.g753700.t1.1;GT90-36;g4406.t3;GT90-36;GT90F36;Cre19.g753700.t1.1;g4406.t3;GT90-36;GT90F36;Cre19.g753700.t1.1"		
+Cre03.g211073	"GMM:29.4;GMM:17.1.3;GMM:17.1.2"	"protein.postranslational modification;hormone metabolism.abscisic acid.induced-regulated-responsive-activated;hormone metabolism.abscisic acid.signal transduction"		"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"g4468.t1;Cre19.g756350.t1.1;Cre19.g756350.t1.2;Cre19.g756350.t1.2;g4468.t1;Cre19.g756350.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g196550							"g4071.t1;Cre03.g196550.t1.1;Cre03.g196550.t1.1;g4071.t1"		
+Cre03.g173165				GO:0005515	"protein binding"		"g3571.t1;g3571.t1;g3571.t1"		
+Cre03.g152326									
+Cre03.g182850			"Secretory pathway"				g3790.t1		
+Cre03.g150750							"g3066.t1;Cre03.g150750.t1.1"		
+Cre03.g152050	GMM:24	"biodegradation of xenobiotics"	"Secretory pathway"			GOX12	"GOX20;GOX12;Cre03.g152050.t1.1;g3094.t1;GOX12;GOX20;g3094.t1;Cre03.g152050.t1.1"	"GOX12;GOX12"	"shows the conserved Cys residue whose linkage to Tyr forms the metal-binding radical [PMID: 15581579]; the substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the;shows the conserved Cys residue whose linkage to Tyr forms the metal-binding radical [PMID: 15581579]; the substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the"
+Cre03.g186050							g3855.t1		
+Cre03.g199700						PGM11	"g4333.t1;PGM11;PGM11;g4333.t1"		
+Cre03.g146887							"Cre01.g062650.t1.2;g3009.t1;Cre01.g062650.t1.1"		
+Cre03.g203100							"g4257.t1;Cre03.g203100.t1.1"		
+Cre03.g165700	GMM:5.2	fermentation.PDC		"GO:0030976;GO:0003824;GO:0000287"	"thiamine pyrophosphate binding;catalytic activity;magnesium ion binding"	PDC3	"g3400.t1;PDC3;g3400.t1;PDC3;PDC3;g3400.t1"	"PDC3;PDC3;PDC3"	"pyruvate decarboxylase [EC 4.1.1.1]; requires thiamine pyrophosphate (TPP) (vitamin B1) as a cofactor; alpha subunit of the E1 component of the mitochondrial pyruvate dehydrogenase complex (mtPDC) catalyzes the oxidative decarboxylation of pyruvate, yielding acetyl-CoA and NADH to support the Krebs cycle and oxidative phosphorylation; a plastid pyruvate decarboxylase also exists;pyruvate decarboxylase [EC 4.1.1.1]; requires thiamine pyrophosphate (TPP) (vitamin B1) as a cofactor; alpha subunit of the E1 component of the mitochondrial pyruvate dehydrogenase complex (mtPDC) catalyzes the oxidative decarboxylation of pyruvate, yielding acetyl-CoA and NADH to support the Krebs cycle and oxidative phosphorylation; a plastid pyruvate decarboxylase also exists;pyruvate decarboxylase [EC 4.1.1.1]; requires thiamine pyrophosphate (TPP) (vitamin B1) as a cofactor; alpha subunit of the E1 component of the mitochondrial pyruvate dehydrogenase complex (mtPDC) catalyzes the oxidative decarboxylation of pyruvate, yielding acetyl-CoA and NADH to support the Krebs cycle and oxidative phosphorylation; a plastid pyruvate decarboxylase also exists"
+Cre03.g160300				GO:0005783	"endoplasmic reticulum"	RAMP4	"RAM1;g3284.t1"	RAMP4	
+Cre03.g162450	GMM:34.99	transport.misc		"GO:0016021;GO:0006810"	"integral component of membrane;transport"		"g3330.t1;FBT4"		"Similar to AT2G32040, which was identified as a folate/pteridine transporter [PMID: 16162503];"
+Cre03.g208303	GMM:20.2.3	stress.abiotic.drought/salt							
+Cre03.g169200	GMM:23	"nucleotide metabolism"					"Cre03.g169200.t1.1;g3483.t1"		
+Cre03.g201100	"GMM:29.5.9;GMM:29.5.7"	"protein.degradation.AAA type;protein.degradation.metalloprotease"	Chloroplast	GO:0005524	"ATP binding"	FHL1	"FHL6;FTSHi4;g4303.t1;Cre03.g201100.t1.1;FTSHi1;FHL1;Cre03.g201100.t1.1;FHL1;g4303.t1;FTSHi1;FHL6;FTSHi4;g4303.t1;FHL1;Cre03.g201100.t1.1;FHL6;FTSHi4;FTSHi1;FTSHi1;g4303.t1;Cre03.g201100.t1.1;FHL1;FTSHi4;FHL6"	"FTSHI4;FTSHI4;FTSHI4;FTSHI4"	"Similar to FtsH protease, but lacks peptidase HEXXH motif, like At FtsHi; may function with Tic214 (Ycf2) in the TIC translocon;Similar to FtsH protease, but lacks peptidase HEXXH motif, like At FtsHi; may function with Tic214 (Ycf2) in the TIC translocon;Similar to FtsH protease, but lacks peptidase HEXXH motif, like At FtsHi; may function with Tic214 (Ycf2) in the TIC translocon;Similar to FtsH protease, but lacks peptidase HEXXH motif, like At FtsHi; may function with Tic214 (Ycf2) in the TIC translocon"
+Cre03.g157501							g3218.t1		
+Cre03.g191100			"Secretory pathway"				"Cre03.g191100.t1.1;g3955.t1"		
+Cre03.g170200	"GMM:33.99;GMM:30.3;GMM:3.3"	"development.unspecified;signalling.calcium;minor CHO metabolism.sugar alcohols"		GO:0005515	"protein binding"		g3504.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g155250			Mitochondrion				"g3165.t1;Cre03.g155250.t1.1;g3165.t1;Cre03.g155250.t1.1"		
+Cre03.g202050									
+Cre03.g164750			"Secretory pathway"						
+Cre03.g199311	GMM:29.3.4.3	"protein.targeting.secretory pathway.vacuole"		"GO:0007033;GO:0006886;GO:0005737"	"vacuole organization;intracellular protein transport;cytoplasm"	VPS16	"Cre19.g751600.t1.1;VCL1;VPS16;g4360.t1;g4360.t1;VPS16;Cre19.g751600.t1.1;VCL1;g4360.t1;VPS16;Cre19.g751600.t1.1;VCL1;VPS16;g4360.t1;VCL1;Cre19.g751600.t1.1"	"VPS16;VPS16;VPS16;VPS16"	"Expressed protein. Vacuoleless, VPS16 homolog; member of the VPS16/VCL1 class of proteins involved in vacuolar trafficking;Expressed protein. Vacuoleless, VPS16 homolog; member of the VPS16/VCL1 class of proteins involved in vacuolar trafficking;Expressed protein. Vacuoleless, VPS16 homolog; member of the VPS16/VCL1 class of proteins involved in vacuolar trafficking;Expressed protein. Vacuoleless, VPS16 homolog; member of the VPS16/VCL1 class of proteins involved in vacuolar trafficking"
+Cre03.g159550							"g3266.t2;g3266.t2;g3266.t2;g3266.t2;g3266.t2;g3266.t2"		
+Cre03.g143807							"g2854.t1;Cre01.g055850.t1.2;Cre01.g055850.t1.1;Cre01.g055850.t1.2;Cre01.g055850.t1.1;g2854.t1"		
+Cre03.g191550			Mitochondrion				"Cre03.g191550.t1.1;g3964.t1;g3964.t1;Cre03.g191550.t1.1;Cre03.g191550.t1.1;g3964.t1"		
+Cre03.g201417									
+Cre03.g200543	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP15	"g4371.t1;MCP15;Cre19.g752150.t1.1;Cre19.g752150.t1.2;g4371.t1;MCP15;Cre19.g752150.t1.1;Cre19.g752150.t1.2"		
+Cre03.g180700							g3745.t1	BOL1	"Homolog of yeast mitochondrial BOL1, possibly involved in Fe-S cluster biogenesis in plastids"
+Cre03.g146567							"g2993.t1;g2993.t1;g2993.t1;g2993.t1;g2993.t1;g2993.t1;g2993.t1;g2993.t1;g2993.t1"		
+Cre03.g204400	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		"GO:0016021;GO:0004252"	"integral component of membrane;serine-type endopeptidase activity"		g4227.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g179880			Mitochondrion				g3725.t1		
+Cre03.g200000							"g4327.t1;Cre03.g200000.t1.1;g4327.t1;Cre03.g200000.t1.1"		
+Cre03.g206087			Mitochondrion						
+Cre03.g195700	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Mitochondrion				"g4055.t1;g4055.t1;g4055.t1"		
+Cre03.g154225			Chloroplast						
+Cre03.g151200			Chloroplast			CGLD16	"Cre03.g151200.t1.1;g3077.t1"	CGLD16	"Chloroplast protein, co-migrates with PSII monomers and RC47 assembly intermediate ((doi: https://doi.org/10.1101/2021.01.04.425283 )"
+Cre03.g183750			Chloroplast			OPR16	"g3808.t1;g3808.t1;g3808.t1"	"OPR16;OPR16;OPR16"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre03.g163000	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"				POC5	"Cre03.g163000.t1.1;POC5;g3341.t1;g3341.t1;POC5;Cre03.g163000.t1.1"	"POC5;POC5"	"Found in basal body proteome; Ortholog of human centrosome protein FLJ35779;Found in basal body proteome; Ortholog of human centrosome protein FLJ35779"
+Cre03.g169450			Chloroplast				g3488.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g165600			"Secretory pathway"				"g3398.t1;Cre03.g165600.t1.1"		
+Cre03.g182000							"Cre03.g182000.t1.1;g3772.t1"		
+Cre03.g202650	GMM:11.9.3.2	"lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase"	"Secretory pathway"				"Cre03.g202650.t1.1;g4267.t1"		
+Cre03.g154300							"g3144.t1;g3144.t1"		
+Cre03.g176700			Mitochondrion			CPL4	"mS29;MRPS29;g3651.t1;CPL4;mS29;MRPS29;CPL4;g3651.t1"	"MRPS29;MRPS29"	
+Cre03.g151750	GMM:27.1	RNA.processing				SMP6A	"SMP6A;Cre03.g151750.t1.1;g3088.t1"	SMP6A	"putative U6 small ribonucleoprotein F, sm protein"
+Cre03.g170625			Chloroplast				"g3515.t1;Cre03.g170635.t1.2"		
+Cre03.g206452							g4183.t1		
+Cre03.g145387						FAP239	"Cre01.g059050.t1.2;g2934.t1;Cre01.g059050.t1.1"	FAP239	"Found in the flagellar proteome"
+Cre03.g157300	"GMM:27.2;GMM:27.1.19"	"RNA.transcription;RNA.processing.ribonucleases"		GO:0005634	nucleus	CAF1	"CAF1;Cre03.g157300.t1.1;g3211.t1"	CAF1	"putative CAF1 (POP2), likely catalytic component of the CCR4-NOT core complex, which in the nucleus seems to be a general transcription factor, and in the cytoplasm the major mRNA deadenylase involved in mRNA turnover."
+Cre03.g184250	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CAM9	"Cre03.g184250.t1.1;CAM9;g3818.t1"		
+Cre03.g145167	GMM:30.2.17	"signalling.receptor kinases.DUF 26"							
+Cre03.g148300			Mitochondrion				"g3016.t1;Cre03.g148300.t1.1;g3016.t1;Cre03.g148300.t1.1"		
+Cre03.g177650							"g3673.t1;Cre03.g177650.t1.1;Cre03.g177650.t1.1;g3673.t1"		"Target of CRR1;Target of CRR1"
+Cre03.g199652			Chloroplast						
+Cre03.g191300			Chloroplast			LCI35	"Cre03.g191300.t1.1;LCI34;g3959.t1"	LCI35	"Low-CO2 inducible gene revealed by cDNA array analyses; probably organelle-targetted; regulated by CCM1 [PMID: 15235119]"
+Cre03.g174076							g3591.t1		
+Cre03.g168800	GMM:31.1	cell.organisation	Chloroplast	"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN4-1	"g3475.t1;KIN4-1;g3475.t1;KIN4-1;g3475.t1;KIN4-1;KIN4-1;g3475.t1;KIN4-1;g3475.t1;KIN4-1;g3475.t1"	"KIN4A;KIN4A;KIN4A;KIN4A;KIN4A;KIN4A"	"kinesin-4 family;kinesin-4 family;kinesin-4 family;kinesin-4 family;kinesin-4 family;kinesin-4 family"
+Cre03.g182350				"GO:0006397;GO:0000445"	"mRNA processing;THO complex part of transcription export complex"		"g3779.t1;Cre03.g182350.t1.1"		
+Cre03.g199100							"g4346.t1;Cre03.g199100.t1.1;Cre03.g199100.t1.1;g4346.t1"		
+Cre03.g205800				"GO:0005515;GO:0005096"	"protein binding;GTPase activator activity"		"Cre03.g205800.t1.1;g4195.t1"		
+Cre03.g145287							"Cre01.g058850.t1.1;g2929.t1"		
+Cre03.g162400			Mitochondrion				"g3329.t1;HEATR2B;DNAAF5"	HTR2B	"Dynein assembly factor"
+Cre03.g162250				"GO:0006281;GO:0005634"	"DNA repair;nucleus"	CGL35	"RAD17;Cre03.g162250.t1.1;g3325.t1;RAD1"	CGL35	
+Cre03.g170600						POC4	"POC4;g3513.t1"		"This locus was confused with the neighboring POC4 gene (Cre03.g170550) in previous annotations, likely because the accession for this locus in UniProt database, A8IEQ2, is a fusion of both proteins"
+Cre03.g144767							"Cre01.g057700.t1.2;Cre01.g057700.t1.1;g2902.t1"		
+Cre03.g173100	GMM:26.3.4	"misc.gluco-, galacto- and mannosidases.endoglucanase"	Chloroplast	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"				
+Cre03.g166700	GMM:31.1	cell.organisation	Chloroplast			FOR1	"FOR1;g3421.t1"	FOR1	"Nucleates and catalyzes long chain actin filament formation from actin-profilin precursor complexes."
+Cre03.g145487				"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"g2939.t1;Cre01.g059300.t1.1;Cre01.g059300.t1.1;g2939.t1"		
+Cre03.g200095	"GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2;GMM:27.1;GMM:17.5.3"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated"	Chloroplast	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"		"g4367.t1;Cre19.g752000.t1.1"		
+Cre03.g194600			Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4029.t1;g4029.t1"		
+Cre03.g143707			"Secretory pathway"						
+Cre03.g145547	"GMM:21.99;GMM:12.1.1"	"redox.misc;N-metabolism.nitrate metabolism.NR"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	CBR1	"CBR1;Cre01.g059450.t1.1;g2942.t1;Cre01.g059450.t1.2"	CBR1	
+Cre03.g171050	"GMM:26.3;GMM:20.1;GMM:16.5.1.3.1"	"misc.gluco-, galacto- and mannosidases;stress.biotic;secondary metabolism.sulfur-containing.glucosinolates.degradation.myrosinase"		"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	GHL1	"g3524.t1;GHL1"		
+Cre03.g145867			Mitochondrion				"Cre01.g060200.t1.2;Cre01.g060200.t1.1;OPR130;mL113;g2958.t1"	MRPL113	"an OctotricoPeptide Repeat (OPR) family member, but does not interact with RNA by its inner groove (Walz et al 2021); an inter-repeat domain formed by amino acids 353-397 clamps the tip of H34 from the L3b fragment, while C-terminal part contacts the inner membrane; interacts with mL114 and together with it compensates for the absence of domain III in the rRNA, just like plant rPPRs do; amiRNA KD strain shows reduced accumulation of large subunit rRNA and OXPHOS complexes I and IV"
+Cre03.g145687	"GMM:28.2;GMM:28.1"	"DNA.repair;DNA.synthesis/chromatin structure"		"GO:0006281;GO:0004518"	"DNA repair;nuclease activity"		"Cre01.g059750.t1.2;Cre01.g059750.t1.1;g2949.t1"	RAD2	"ts-lethal mutant was isolated (PMID 29743196)"
+Cre03.g185000	GMM:3.6	"minor CHO metabolism.callose"		"GO:0016020;GO:0006075;GO:0003843;GO:0000148"	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	CALS2	"BGS2;g3834.t1;GTR8"	CALS2	"1,3-beta-D-glucan synthase and glycosyl transferase of GT48 family"
+Cre03.g154000			Mitochondrion				"ABCA1A;g3137.t1"	ABCA1	"ABCA superfamily; H8One of three tandem paralogs (Cre03.g154000, Cre03.g154050, Cre03.g154100); Related to ABCA1 in Arabidopsis thaliana;"
+Cre03.g188600	GMM:29.5	protein.degradation		"GO:0016021;GO:0006508;GO:0004252"	"integral component of membrane;proteolysis;serine-type endopeptidase activity"	RBL11	"Cre03.g188600.t1.1;g3906.t1;RBL11"		"Similar to rhomboid intramembrane proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579). Contains peroxidase active site"
+Cre03.g187750			Chloroplast				"g3889.t1;Cre03.g187750.t1.1"		
+Cre03.g170450							"Cre03.g170450.t1.1;g3510.t1;Cre03.g170450.t1.1;g3510.t1"		
+Cre03.g145647							"Cre01.g059650.t1.1;g2947.t1;g2947.t1;Cre01.g059650.t1.1"		
+Cre03.g145047									
+Cre03.g172550	"GMM:31.3;GMM:26.6"	"cell.cycle;misc.O-methyl transferases"		"GO:0008168;GO:0006479"	"methyltransferase activity;protein methylation"	PRMT1	"Cre03.g172550.t1.1;PRM1;g3558.t1;PRM1;Cre03.g172550.t1.1;g3558.t1"	"PRMT1;PRMT1"	"Protein-/Histone-arginine N-methyltransferase; protein arginine N-methyltransferase (ChromDB PRMT341). ChromoDB PRMT341. Ribosomal L11 methyltransferase-like;Protein-/Histone-arginine N-methyltransferase; protein arginine N-methyltransferase (ChromDB PRMT341). ChromoDB PRMT341. Ribosomal L11 methyltransferase-like"
+Cre03.g159851			Chloroplast				"Cre03.g159850.t1.3;g3273.t1;g3273.t1;Cre03.g159850.t1.3"		
+Cre03.g181000			"Secretory pathway"	"GO:0016021;GO:0008146"	"integral component of membrane;sulfotransferase activity"		"g3751.t1;g3751.t1"		
+Cre03.g203750	GMM:29.3.4.2	"protein.targeting.secretory pathway.golgi"	Chloroplast	"GO:0016020;GO:0006886;GO:0005801"	"membrane;intracellular protein transport;cis-Golgi network"	COG3	"g4241.t1;Cre03.g203750.t1.1;COG3"	COG3	"Hypothetical Conserved Protein. Similar to SEC34/COG3, component of oligomeric golgi complex 3, involved in vesicle tethering and other Golgi functions"
+Cre03.g160150							"g3279.t1;Cre03.g160150.t1.1;g3279.t1;Cre03.g160150.t1.1"		
+Cre03.g174000	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Mitochondrion			EFG11	"EFG11;LPA2;g3589.t1"	EFG11	"similar to GTP-binding protein LepA"
+Cre03.g146507	"GMM:11.8.1.2;GMM:11.8.1"	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids.serine C-palmitoyltransferase;lipid metabolism.exotics (steroids, squalene etc).sphingolipids"	"Secretory pathway"	"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"	SPT2	"Cre01.g061750.t1.2;Cre01.g061750.t1.1;SPT2;g2990.t1;g2990.t1;SPT2;Cre01.g061750.t1.1;Cre01.g061750.t1.2"	"SPT2;SPT2"	"first step in sphingolipid biosynthesis;first step in sphingolipid biosynthesis"
+Cre03.g145267	GMM:23.2.2.10	"nucleotide metabolism.degradation.purine.guanine deaminase"		"GO:0008892;GO:0008270;GO:0006147"	"guanine deaminase activity;zinc ion binding;guanine catabolic process"		"Cre01.g058750.t1.1;g2927.t1;Cre01.g058750.t1.2;g2927.t1;Cre01.g058750.t1.1;Cre01.g058750.t1.2;g2927.t1;Cre01.g058750.t1.1;Cre01.g058750.t1.2"		
+Cre03.g178550	"GMM:33.99;GMM:31.2;GMM:29.5.11.4.2"	"development.unspecified;cell.division;protein.degradation.ubiquitin.E3.RING"	Mitochondrion	"GO:0016567;GO:0005515;GO:0004842"	"protein ubiquitination;protein binding;ubiquitin-protein transferase activity"		"g3697.t1;g3697.t1"		
+Cre03.g160800	GMM:34.12	transport.metal	Mitochondrion	"GO:0055085;GO:0016021;GO:0008324;GO:0006812"	"transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport"	MTP2	"Cre03.g160800.t1.1;g3294.t1;g3294.t1;Cre03.g160800.t1.1"	"MTP2;MTP2"	"Cation efflux transporter, group 4 CDF family; Mn2+ transporter; next to MTP3; Confers tolerance to excess Mn; similarity to MTP2/9/10/11 from A. thaliana; Suppresses Mn sensitivity of pmr1 yeast mutant;;Cation efflux transporter, group 4 CDF family; Mn2+ transporter; next to MTP3; Confers tolerance to excess Mn; similarity to MTP2/9/10/11 from A. thaliana; Suppresses Mn sensitivity of pmr1 yeast mutant;"
+Cre03.g193450			Mitochondrion	GO:0005515	"protein binding"		"g4002.t1;g4002.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g211409			Mitochondrion				"g4471.t1;Cre19.g756500.t1.1;PPR15;mS106"	MRPS106	"a PentatricoPeptide Repeat (PPR) protein (Waltz et al 2021); with OPR protein mS107 form the extenstion of the SSU foot; occupies a position similar to mS27 in humans"
+Cre03.g199000	"GMM:30.11;GMM:29.4"	"signalling.light;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PHOT1	"PHOT;g4349.t1;Cre03.g199000.t1.1;PHT1;Cre03.g199000.t1.1;g4349.t1;PHOT;PHT1;PHOT;PHT1;Cre03.g199000.t1.1;g4349.t1;PHT1;g4349.t1;PHOT;Cre03.g199000.t1.1;Cre03.g199000.t1.1;g4349.t1;PHOT;PHT1"	"PHOT1;PHOT1;PHOT1;PHOT1;PHOT1"	"Blue-light receptor; found in flagella; regulates many biological processes including gametogenesis, chemotaxis, zygote maturation, light-stress response; contains two PAS and two protein kinase domains;Blue-light receptor; found in flagella; regulates many biological processes including gametogenesis, chemotaxis, zygote maturation, light-stress response; contains two PAS and two protein kinase domains;Blue-light receptor; found in flagella; regulates many biological processes including gametogenesis, chemotaxis, zygote maturation, light-stress response; contains two PAS and two protein kinase domains;Blue-light receptor; found in flagella; regulates many biological processes including gametogenesis, chemotaxis, zygote maturation, light-stress response; contains two PAS and two protein kinase domains;Blue-light receptor; found in flagella; regulates many biological processes including gametogenesis, chemotaxis, zygote maturation, light-stress response; contains two PAS and two protein kinase domains"
+Cre03.g173400	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		"GO:0005525;GO:0003924"	"GTP binding;GTPase activity"		"g3576.t1;g3576.t1;g3576.t1"		
+Cre03.g166450			Mitochondrion				g3416.t1		
+Cre03.g176400	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g3644.t1;g3644.t1"		
+Cre03.g193850	GMM:8.1.6	"TCA / organic transformation.TCA.succinyl-CoA ligase"	Mitochondrion	"GO:0048037;GO:0008152;GO:0003824"	"cofactor binding;metabolic process;catalytic activity"	SCLA1	"TEF25;g4012.t1;SCLA1;SUCLG1;Cre03.g193850.t1.1;SCL1"	SCLA1	
+Cre03.g174750	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"	Chloroplast	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN26-2	"CYN26-2;g3609.t1;Cre03.g174750.t1.1;CYN26"	CYN26B	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type [PMID: 15051864, PMID:15047905]; chloroplast thylakoid lumen; similar to At1g74070 (AtCYP26-2"
+Cre03.g163550							"Cre03.g163550.t1.1;g3353.t1"		
+Cre03.g204850			Chloroplast				"g4216.t1;Cre03.g204850.t1.1"		
+Cre03.g200650			"Secretory pathway"	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI2	"g4313.t1;CHI2"		
+Cre03.g170950							"g3522.t1;Cre03.g170950.t1.1;Cre03.g170950.t1.1;g3522.t1;g3522.t1;Cre03.g170950.t1.1"		
+Cre03.g173900	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast				"g3587.t1;Cre03.g173900.t1.1;g3587.t1;Cre03.g173900.t1.1;g3587.t1;Cre03.g173900.t1.1;Cre03.g173900.t1.1;g3587.t1;Cre03.g173900.t1.1;g3587.t1;g3587.t1;Cre03.g173900.t1.1"		
+Cre03.g189700			Chloroplast				"Cre03.g189700.t1.1;g3929.t1"		
+Cre03.g171300	GMM:1.2.2	"PS.photorespiration.glycolate oxydase"		GO:0016491	"oxidoreductase activity"	GYX1	"g3530.t1;Cre03.g171300.t1.1;GYX1"	GYX1	"Probable glycolate oxidase, (S)-2-hydroxy-acid oxidase (EC 1.1.3.15); based on similarity to spinach glycolate oxidase (Swissprot P05414)"
+Cre03.g213537	"GMM:27.3.67;GMM:27.3.50"	"RNA.regulation of transcription.putative transcription regulator;RNA.regulation of transcription.general transcription"	Chloroplast				"Cre19.g757350.t1.2;Cre19.g757350.t1.1;g4490.t1;g4490.t1;Cre19.g757350.t1.1;Cre19.g757350.t1.2"	"EGD1;EGD1"	"Named for cytosolic nascent polypeptide-associated complex (NAC) beta subunit gene in Saccharomyces cerevisiae (EGD1);Named for cytosolic nascent polypeptide-associated complex (NAC) beta subunit gene in Saccharomyces cerevisiae (EGD1)"
+Cre03.g207601			Chloroplast	GO:0005515	"protein binding"		"Cre19.g755000.t1.1;Cre19.g755000.t1.2;g4435.t1"		
+Cre03.g169000							"Cre03.g169000.t1.1;g3479.t1"		
+Cre03.g154550	"GMM:13.2.2.3;GMM:13.1.2.2.2"	"amino acid metabolism.degradation.glutamate family.arginine;amino acid metabolism.synthesis.glutamate family.proline.pyrroline-5-carboxylate reductase"	Chloroplast	"GO:0055114;GO:0006561;GO:0004735"	"oxidation-reduction process;proline biosynthetic process;pyrroline-5-carboxylate reductase activity"	PCR1	"PCR1;g3149.t1;PCR1;g3149.t1"	"P5CR1;P5CR1"	"EC 1.5.1.2; last step of proline biosynthesis pathway, arabidopsis protein called P5CR;EC 1.5.1.2; last step of proline biosynthesis pathway, arabidopsis protein called P5CR"
+Cre03.g149350	GMM:27.3.60	"RNA.regulation of transcription.NIN-like bZIP-related family"				RWP4	"RWP4;g3037.t1"	RWP4	"putative RWP-RK domain transcription factor [PMID: 15785851]; forms a tandem pair with RWP11 with which there is amino acid homology around the RWP-RK domain and some intron conservation"
+Cre03.g186150							g3857.t1		
+Cre03.g201950	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast				"Cre03.g201950.t1.1;g4283.t1;Cre03.g201950.t1.1;g4283.t1;Cre03.g201950.t1.1;g4283.t1"		
+Cre03.g145747	GMM:13.1.6.1.7	"amino acid metabolism.synthesis.aromatic aa.chorismate.chorismate synthase"	Chloroplast	"GO:0009073;GO:0004107"	"aromatic amino acid family biosynthetic process;chorismate synthase activity"		"Cre01.g059900.t1.2;g2952.t1;Cre01.g059900.t1.1;SHK7;Cre01.g059900.t1.1;g2952.t1;Cre01.g059900.t1.2;SHK7"	"SHKH1;SHKH1"	"Putative chorismate synthase (EC 4.2.3.5); predicted by Target-P to be mitochondrial, but by homology to be plastidic. Catalyzes the seventh and final step of the shikimate pathway (PMID: 12242393; PMID: 16963634). Previously annotated as SHKH1;Putative chorismate synthase (EC 4.2.3.5); predicted by Target-P to be mitochondrial, but by homology to be plastidic. Catalyzes the seventh and final step of the shikimate pathway (PMID: 12242393; PMID: 16963634). Previously annotated as SHKH1"
+Cre03.g185150							g3837.t1		
+Cre03.g144011	"GMM:30.6;GMM:30.2.99;GMM:30.2.20;GMM:30.2.10;GMM:30.2.1;GMM:29.4"	"signalling.MAP kinases;signalling.receptor kinases.misc;signalling.receptor kinases.wheat LRK10 like;signalling.receptor kinases.leucine rich repeat X;signalling.receptor kinases.leucine rich repeat I;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g2864.t4;Cre01.g056350.t1.1;Cre01.g056350.t1.1;g2864.t4;g2864.t4;Cre01.g056350.t1.1;g2864.t4;Cre01.g056350.t1.1"		
+Cre03.g158550	"GMM:28.99;GMM:28.1;GMM:27.3.44"	"DNA.unspecified;DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors"		"GO:0006338;GO:0006281;GO:0005524;GO:0004003"	"chromatin remodeling;DNA repair;ATP binding;ATP-dependent DNA helicase activity"		"Cre03.g158550.t1.1;g3246.t1;SRH4"		"SNF2-related helicase with Chromo DNA-binding domain. ChromDB CHR343"
+Cre03.g145507			Chloroplast				"Cre01.g059350.t1.1;g2940.t1;Cre01.g059350.t1.1;g2940.t1;g2940.t1;Cre01.g059350.t1.1;g2940.t1;Cre01.g059350.t1.1"		
+Cre03.g188550	"GMM:29.2.2.3.1;GMM:29.2.2.2.1;GMM:28.1;GMM:27.1.2"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;protein.synthesis.ribosome biogenesis.assembly factors.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL20	"HEL20;g3905.t1;HEL20;g3905.t1"		
+Cre03.g145927			Chloroplast				"g2961.t1;g2961.t1"		
+Cre03.g173600				GO:0005515	"protein binding"		"Cre03.g173600.t1.1;g3580.t1;Cre03.g173600.t1.1;g3580.t1"		
+Cre03.g167300							"g3434.t1;Cre03.g167300.t1.1"		
+Cre03.g186550			Mitochondrion				g3865.t1		
+Cre03.g144887			Chloroplast	GO:0005515	"protein binding"		"Cre01.g058000.t1.1;g2908.t1"		
+Cre03.g179250	GMM:27.3.60	"RNA.regulation of transcription.NIN-like bZIP-related family"	Chloroplast				"Cre03.g179250.t1.1;g3710.t1"		
+Cre03.g159016	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre03.g159078.t4.1;g3256.t3;g3256.t3;Cre03.g159078.t4.1;g3256.t3;Cre03.g159078.t4.1;g3256.t3;Cre03.g159078.t4.1;g3256.t3;Cre03.g159078.t4.1;Cre03.g159078.t4.1;g3256.t3;g3256.t3;Cre03.g159078.t4.1;g3256.t3;Cre03.g159078.t4.1;Cre03.g159078.t4.1;g3256.t3"		
+Cre03.g186300	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"				DII2	"FAP146;g3860.t1;p38;Cre03.g186300.t1.1"	DII2	"Inner arm dynein p38 (PubMed ID:17981992 Yamamoto et al. Kamiya 2008); HA-tagged (PubMed ID:19382199 Lechtreck et al. Witman 2009)(PubMed ID:21953912 Hom et al. King 2011)"
+Cre03.g149300	"GMM:18.7;GMM:15.2"	"Co-factor and vitamine metabolism.iron-sulphur clusters;metal handling.binding, chelation and storage"		"GO:0051539;GO:0051536;GO:0009451;GO:0003824"	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;RNA modification;catalytic activity"		g3036.t1		
+Cre03.g185750				"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		g3849.t1		
+Cre03.g185400						MAW2	"MAW2;g3842.t1"		"Contains predicted C-terminal GPI-anchor signal"
+Cre03.g181700	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g3766.t1;g3766.t1"		
+Cre03.g202337			Mitochondrion			MOT28	"MOT28;Cre19.g752850.t1.1;g4387.t1"	MOT28	"Identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre03.g198851	GMM:27.3.26	"RNA.regulation of transcription.MYB-related transcription factor family"	Chloroplast						
+Cre03.g195350	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006464;GO:0004719"	"cellular protein modification process;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity"	PIMT1	"PIMT1;g4046.t1"	PIMT1	"Hypothetical conserved protein similar to Protein-L-isoaspartate(D-aspartate) O-methyltransferase proteins. One of two proteins with predicted Asp-Methyltransferase activity (see PIMT2)."
+Cre03.g160700	GMM:27.3.9	"RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family"	Chloroplast	"GO:0043565;GO:0008270;GO:0006355;GO:0003700"	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g3292.t1;g3292.t1;g3292.t1;g3292.t1"		
+Cre03.g183900			Chloroplast				"Cre03.g183900.t1.1;g3811.t1"		
+Cre03.g152850			"Secretory pathway"	"GO:0055114;GO:0016715;GO:0005515;GO:0005507;GO:0004497"	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;protein binding;copper ion binding;monooxygenase activity"		"PAM;g3112.t1;Cre03.g152850.t1.1"	PAM1	"Converts C-terminal glycine to an amide; located in secretory pathway and ciliary membrane; required for ciliogenesis; loss results in defective transition zone, formation of ciliary stubs containing IFT material, alterations in Golgi architecture and Golgi-based secretion, and enlarged starch granules"
+Cre03.g202673			"Secretory pathway"			CSC2	"g4390.t1;CSC2;CSC2;g4390.t1"		"function unknown; homologs in Gonium, not Volvox;function unknown; homologs in Gonium, not Volvox"
+Cre03.g202400	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	Chloroplast			MCP10	"MITC10;Cre03.g202400.t1.1;g4272.t1;MCP10;Cre03.g202400.t1.1;g4272.t1;MITC10;MCP10;MCP10;Cre03.g202400.t1.1;g4272.t1;MITC10"		"Related to mitochondrial carrier proteins; possibly calcium binding;Related to mitochondrial carrier proteins; possibly calcium binding;Related to mitochondrial carrier proteins; possibly calcium binding"
+Cre03.g148900	GMM:26.7	"misc.oxidases - copper, flavone etc"				FMO5	"FMO5;g3028.t1"		"Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification"
+Cre03.g190150			Chloroplast			CGL1	"g3937.t1;g3937.t1"	"CGL1;CGL1"	
+Cre03.g144384							"g2883.t1;Cre01.g057200.t1.2;Cre01.g057200.t1.1"		
+Cre03.g207901							"Cre03.g207850.t1.3;g4152.t1;g4152.t1;Cre03.g207850.t1.3"		
+Cre03.g193600			"Secretory pathway"				"Cre03.g193600.t1.1;g4006.t2;Cre03.g193600.t1.1;g4006.t2"		
+Cre03.g155800				"GO:0006413;GO:0003743;GO:0003723"	"translational initiation;translation initiation factor activity;RNA binding"		"Cre03.g155800.t1.1;g3178.t1"		
+Cre03.g198224									
+Cre03.g144564	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP13	"g2892.t1;Cre60.g792000.t1.1;MMP13"	MMP13	"Matrix metalloproteinase belonging to the M11 peptidase family"
+Cre03.g204751			Mitochondrion	"GO:0016780;GO:0016020;GO:0008654"	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"				
+Cre03.g146307	"GMM:26.16;GMM:17.7.3"	"misc.myrosinases-lectin-jacalin;hormone metabolism.jasmonate.induced-regulated-responsive-activated"					"Cre01.g061250.t1.2;Cre01.g061250.t1.1;g2980.t1"		
+Cre03.g152425				"GO:0008408;GO:0006139;GO:0003676"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding"		"Cre03.g152425.t1.1;g3103.t1"		
+Cre03.g156450			Mitochondrion				"g3193.t1;Cre03.g156450.t1.1"		
+Cre03.g198550	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4118.t1;Cre03.g198550.t1.1"		
+Cre03.g151050	"GMM:29.5.11.5;GMM:28.99"	"protein.degradation.ubiquitin.ubiquitin protease;DNA.unspecified"		GO:0005515	"protein binding"		"g3074.t1;g3074.t1;g3074.t1;g3074.t1"		
+Cre03.g170700			"Secretory pathway"	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"		g3517.t1		
+Cre03.g194100	"GMM:30.6;GMM:3.6;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	MAPKKK3	"g4017.t1;Cre03.g194100.t1.1;MAPKKK3;MAPKKK3;Cre03.g194100.t1.1;g4017.t1;Cre03.g194100.t1.1;MAPKKK3;g4017.t1"		"MAPKKK3; MAP (Mitogen-Activated) Kinase Kinase Kinase Homolog 3; MEK Kinase 3; MAP3K3;MAPKKK3; MAP (Mitogen-Activated) Kinase Kinase Kinase Homolog 3; MEK Kinase 3; MAP3K3;MAPKKK3; MAP (Mitogen-Activated) Kinase Kinase Kinase Homolog 3; MEK Kinase 3; MAP3K3"
+Cre03.g191850	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Mitochondrion				"g3971.t1;SDR8"		
+Cre03.g203000			Mitochondrion				g4259.t1		
+Cre03.g144124							"g2869.t1;Cre01.g056570.t1.1;Cre01.g056570.t1.2"		
+Cre03.g196800				GO:0016021	"integral component of membrane"		"Cre03.g196800.t1.1;g4076.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g180500			"Secretory pathway"				g3741.t1		
+Cre03.g202750			Mitochondrion				"g4265.t1;g4265.t1;g4265.t1"		
+Cre03.g207041							"g4430.t1;Cre19.g754750.t1.2;Cre19.g754750.t1.1"		
+Cre03.g195150							"g4041.t1;g4041.t1;g4041.t1;g4041.t1"		
+Cre03.g165169									
+Cre03.g190200							"Cre03.g190200.t1.1;g3938.t1"		
+Cre03.g183451							"g3802.t1;g3802.t1;g3802.t1;g3802.t1;g3802.t1;g3802.t1;g3802.t1;g3802.t1;g3802.t1;g3802.t1;g3802.t1;g3802.t1;g3802.t1;g3802.t1;g3802.t1"		
+Cre03.g198200	GMM:3.6	"minor CHO metabolism.callose"		"GO:0016020;GO:0006075;GO:0003843;GO:0000148"	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	GSL4	"g4105.t1;BGS4;GTR11;GTR13;g4105.t1;BGS4;GTR11;GTR13;BGS4;GTR11;g4105.t1;GTR13;GTR13;g4105.t1;GTR11;BGS4;GTR11;BGS4;g4105.t1;GTR13;GTR13;g4105.t1;BGS4;GTR11;GTR11;BGS4;g4105.t1;GTR13;GTR13;g4105.t1;GTR11;BGS4;GTR11;GTR13;BGS4;g4105.t1;GTR11;BGS4;g4105.t1;GTR13;GTR13;g4105.t1;GTR11;BGS4;GTR13;BGS4;GTR11;g4105.t1"	"GSL4;GSL4;GSL4;GSL4;GSL4;GSL4;GSL4;GSL4;GSL4;GSL4;GSL4;GSL4"	"GT48 family glycosyl transferase (1,3-beta-D-glucan synthase);GT48 family glycosyl transferase (1,3-beta-D-glucan synthase);GT48 family glycosyl transferase (1,3-beta-D-glucan synthase);GT48 family glycosyl transferase (1,3-beta-D-glucan synthase);GT48 family glycosyl transferase (1,3-beta-D-glucan synthase);GT48 family glycosyl transferase (1,3-beta-D-glucan synthase);GT48 family glycosyl transferase (1,3-beta-D-glucan synthase);GT48 family glycosyl transferase (1,3-beta-D-glucan synthase);GT48 family glycosyl transferase (1,3-beta-D-glucan synthase);GT48 family glycosyl transferase (1,3-beta-D-glucan synthase);GT48 family glycosyl transferase (1,3-beta-D-glucan synthase);GT48 family glycosyl transferase (1,3-beta-D-glucan synthase)"
+Cre03.g155450			Mitochondrion				g3169.t1		
+Cre03.g157650							g3226.t1		
+Cre03.g207000			Chloroplast				"g4170.t1;Cre03.g207000.t1.1"		
+Cre03.g178700							"Cre03.g178700.t1.1;g3700.t1"		
+Cre03.g150200							"Cre03.g150200.t1.1;g3055.t1"		
+Cre03.g201750			Chloroplast				"Cre03.g201750.t1.1;g4287.t1"		
+Cre03.g164650	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		GO:0005515	"protein binding"	MOT1	"MOT1;Cre03.g164650.t1.1;g3375.t1;Cre03.g164650.t1.1;g3375.t1;MOT1"	"MOT56;MOT56"	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia; Previously annotated as MOT1, but was changed to MOT56 to avoid confusion with Cre04.g214050 (MOT1) which is a Molybdate transporter;;identified by comparative genomics as being present only in organisms having motile (MOT) cilia; Previously annotated as MOT1, but was changed to MOT56 to avoid confusion with Cre04.g214050 (MOT1) which is a Molybdate transporter;"
+Cre03.g146207	GMM:26.13	"misc.acid and other phosphatases"	"Secretory pathway"	GO:0016787	"hydrolase activity"	MPA1	"Cre01.g061000.t1.2;Cre01.g061000.t1.1;g2975.t1;MPA1;g2975.t1;MPA1;Cre01.g061000.t1.1;Cre01.g061000.t1.2"		"Putative phosphatase, induced during phosphate deficiency, regulated by the PSR1 transcription factor [PMID: 16400166].;Putative phosphatase, induced during phosphate deficiency, regulated by the PSR1 transcription factor [PMID: 16400166]."
+Cre03.g209057			Mitochondrion						
+Cre03.g145307							"g2930.t2;Cre01.g058900.t2.1"		
+Cre03.g170300	GMM:29.5.1	protein.degradation.subtilases	Mitochondrion	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SUB5	"Cre03.g170300.t1.1;g3506.t1;SUB5;SUB5;g3506.t1;Cre03.g170300.t1.1;Cre03.g170300.t1.1;g3506.t1;SUB5"		
+Cre03.g151450							"g3082.t1;Cre03.g151450.t1.1"		
+Cre03.g156476									
+Cre03.g178350	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"				FAP272	g3693.t1	FAP272	"Flagellar Associated Protein similar to calmodulin; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]. Possibly a phospholipid/glycerol acyltransferase"
+Cre03.g151300	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g3079.t2;g3079.t2;g3079.t2;g3079.t2"		
+Cre03.g187000	GMM:31.4	"cell.vesicle transport"					g3874.t1		
+Cre03.g152750	"GMM:29.6.2.6;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat"				BAG6	g3110.t1	BAG6	"Likely co-chaperone of cytosolic HSP70A; strongly upregulated at the protein level upon heat stress."
+Cre03.g173300			"Secretory pathway"				"Cre03.g173300.t1.1;g3574.t1;g3574.t1;Cre03.g173300.t1.1"		
+Cre03.g207750	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g4154.t1;g4154.t1;g4154.t1;g4154.t1"		
+Cre03.g154900	GMM:35.1.41	"not assigned.no ontology.hydroxyproline rich proteins"					"g3158.t1;g3158.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g159400			"Secretory pathway"	GO:0008641	"small protein activating enzyme activity"		"Cre03.g159400.t1.1;g3264.t2;Cre03.g159400.t1.1;g3264.t2"		
+Cre03.g167778			Mitochondrion			FAP382	g3451.t1	FAP382	
+Cre03.g148500			"Secretory pathway"			PWR6	"g3020.t1;Cre03.g148500.t1.1;PWR6;Cre03.g148500.t1.1;g3020.t1;PWR6;g3020.t1;Cre03.g148500.t1.1;PWR6"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre03.g149001			Mitochondrion				g3030.t1		
+Cre03.g201776				GO:0005515	"protein binding"		"Cre19.g752650.t1.2;g4382.t1;Cre19.g752650.t1.1"		
+Cre03.g150950	GMM:29.7	protein.glycosylation				DPM1	"GTR1;g3072.t1;DPMS1"	DPM1	"Orthologous to AT1G20575 in Arabidopsis thaliana"
+Cre03.g161450							"g3309.t1;Cre03.g161450.t1.1"		
+Cre03.g143747									
+Cre03.g164000	GMM:1.1.40	"PS.lightreaction.cyclic electron flow-chlororespiration"	Chloroplast			ANR1	"TEF7;g3362.t1;Cre03.g164000.t1.1;Cre03.g164000.t1.1;g3362.t1;TEF7;Cre03.g164000.t1.1;g3362.t1;TEF7"	"ANR1;ANR1;ANR1"	"Thylakoid membrane protein [PMID: 17078018]; involved in the response to anaerobiosis; interacts with PETO protein;Thylakoid membrane protein [PMID: 17078018]; involved in the response to anaerobiosis; interacts with PETO protein;Thylakoid membrane protein [PMID: 17078018]; involved in the response to anaerobiosis; interacts with PETO protein"
+Cre03.g176325							"Cre03.g176325.t1.1;g3642.t1"		
+Cre03.g182800	"GMM:13.2.4.1;GMM:13.1.1.3.11"	"amino acid metabolism.degradation.branched chain group.shared;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase"		"GO:0030170;GO:0008483"	"pyridoxal phosphate binding;transaminase activity"	AGT2	"g3789.t1;AGT2;AGT2;g3789.t1"	"AGT2;AGT2"	"Transaminase, Class III; similar to alanine-glyoxylate transaminase (EC 2.6.1.44); predicted by Target-P as mitochondrial; peroxisomal location supported by C-terminal PTS1 signal CKL;Transaminase, Class III; similar to alanine-glyoxylate transaminase (EC 2.6.1.44); predicted by Target-P as mitochondrial; peroxisomal location supported by C-terminal PTS1 signal CKL"
+Cre03.g168300							"Cre03.g168300.t1.1;g3461.t1;g3461.t1;Cre03.g168300.t1.1"		
+Cre03.g195250			Mitochondrion				g4043.t1		
+Cre03.g161850							"g3316.t1;g3316.t1"		
+Cre03.g203681			"Secretory pathway"	"GO:0006367;GO:0006366;GO:0005674"	"transcription initiation from RNA polymerase II promoter;transcription from RNA polymerase II promoter;transcription factor TFIIF complex"				
+Cre03.g204500						CSE17	"g4225.t1;CSE17"		"Protein precursor of an amidated peptide that is chemotactic for mating type minus gametes; secreted in mating ectosomes from cilia; C-terminus is processed to remove 3 Arg residues and then the exposed Gly is converted to an amide by peptidylglycine alpha-amidating monooxygenase; amidated product acts as a chemotactic modulator - attracts minus gametes and repels plus gametes; belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich"
+Cre03.g206201			Mitochondrion				g4188.t1		
+Cre03.g171850							"g3542.t1;g3542.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g187200	GMM:31.1	cell.organisation		"GO:0007017;GO:0005875"	"microtubule-based process;microtubule associated complex"	DLL2	"LC6;g3878.t1;ODA13;Cre03.g187200.t1.1;ODA-LC6"	DLL2	"LC6 component of outer arm dynein; LC8 homolog."
+Cre03.g177100			"Secretory pathway"				"Cre03.g177100.t1.1;g3661.t1"		
+Cre03.g144707	"GMM:4.2.2;GMM:4.1.2"	"glycolysis.plastid branch.phosphoglucomutase (PGM);glycolysis.cytosolic branch.phosphoglucomutase (PGM)"	Chloroplast	"GO:0016868;GO:0005975"	"intramolecular transferase activity, phosphotransferases;carbohydrate metabolic process"		"Cre01.g057550.t1.2;g2899.t1;Cre01.g057550.t1.1"		
+Cre03.g178100	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	"protein binding"		"g3686.t1;g3686.t1;g3686.t1;g3686.t1;g3686.t1;g3686.t1;g3686.t1;g3686.t1;g3686.t1;g3686.t1"	"MOT51;MOT51;MOT51;MOT51;MOT51;MOT51;MOT51;MOT51;MOT51;MOT51"	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia; In previous annotations, the MOT51 annotation was assigned to the neighboring gene, Cre03.g178050. This is because the v3 gene model was a fusion between both loci, but this locus likely representes the correct MOT51;;identified by comparative genomics as being present only in organisms having motile (MOT) cilia; In previous annotations, the MOT51 annotation was assigned to the neighboring gene, Cre03.g178050. This is because the v3 gene model was a fusion between both loci, but this locus likely representes the correct MOT51;;identified by comparative genomics as being present only in organisms having motile (MOT) cilia; In previous annotations, the MOT51 annotation was assigned to the neighboring gene, Cre03.g178050. This is because the v3 gene model was a fusion between both loci, but this locus likely representes the correct MOT51;;identified by comparative genomics as being present only in organisms having motile (MOT) cilia; In previous annotations, the MOT51 annotation was assigned to the neighboring gene, Cre03.g178050. This is because the v3 gene model was a fusion between both loci, but this locus likely representes the correct MOT51;;identified by comparative genomics as being present only in organisms having motile (MOT) cilia; In previous annotations, the MOT51 annotation was assigned to the neighboring gene, Cre03.g178050. This is because the v3 gene model was a fusion between both loci, but this locus likely representes the correct MOT51;;identified by comparative genomics as being present only in organisms having motile (MOT) cilia; In previous annotations, the MOT51 annotation was assigned to the neighboring gene, Cre03.g178050. This is because the v3 gene model was a fusion between both loci, but this locus likely representes the correct MOT51;;identified by comparative genomics as being present only in organisms having motile (MOT) cilia; In previous annotations, the MOT51 annotation was assigned to the neighboring gene, Cre03.g178050. This is because the v3 gene model was a fusion between both loci, but this locus likely representes the correct MOT51;;identified by comparative genomics as being present only in organisms having motile (MOT) cilia; In previous annotations, the MOT51 annotation was assigned to the neighboring gene, Cre03.g178050. This is because the v3 gene model was a fusion between both loci, but this locus likely representes the correct MOT51;;identified by comparative genomics as being present only in organisms having motile (MOT) cilia; In previous annotations, the MOT51 annotation was assigned to the neighboring gene, Cre03.g178050. This is because the v3 gene model was a fusion between both loci, but this locus likely representes the correct MOT51;;identified by comparative genomics as being present only in organisms having motile (MOT) cilia; In previous annotations, the MOT51 annotation was assigned to the neighboring gene, Cre03.g178050. This is because the v3 gene model was a fusion between both loci, but this locus likely representes the correct MOT51;"
+Cre03.g143867			"Secretory pathway"				"Cre01.g056000.t1.2;g2857.t1;Cre01.g056000.t1.1;Cre01.g056000.t1.1;Cre01.g056000.t1.2;g2857.t1"		
+Cre03.g181350	GMM:29.2.1.1.3.2.17	"protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L17"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPL17	"bL17m;g3758.t1;g3758.t1;bL17m"	"MRPL17;MRPL17"	
+Cre03.g146607			"Secretory pathway"				"g2995.t1;Cre01.g062000.t1.1;g2995.t1;Cre01.g062000.t1.1;g2995.t1;Cre01.g062000.t1.1;Cre01.g062000.t1.1;g2995.t1;g2995.t1;Cre01.g062000.t1.1;g2995.t1;Cre01.g062000.t1.1"		
+Cre03.g145607	GMM:34.99	transport.misc		GO:0016192	"vesicle-mediated transport"	BET3	"Cre01.g059600.t1.1;BET3;g2945.t1;Cre01.g059600.t1.2;Cre01.g059600.t1.2;g2945.t1;Cre01.g059600.t1.1;BET3"	"BET3;BET3"	"Expressed Protein. Conserved protein similar to BET3, a component of the TRAPP complex involved in vesicle trafficking between the ER and Golgi.;Expressed Protein. Conserved protein similar to BET3, a component of the TRAPP complex involved in vesicle trafficking between the ER and Golgi."
+Cre03.g204600			"Secretory pathway"				g4222.t1		
+Cre03.g177450			Chloroplast	GO:0004518	"nuclease activity"		"g3668.t1;g3668.t1;g3668.t1;g3668.t1"		
+Cre03.g168750							"g3473.t1;g3473.t1"		
+Cre03.g159254	GMM:34.5	transport.ammonium		"GO:0072488;GO:0016020;GO:0015696;GO:0008519"	"ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity"		"AMT1;Cre03.g159254.t1.1;g3261.t1;g3261.t1;Cre03.g159254.t1.1;AMT1"	"AMT1A;AMT1A"	
+Cre03.g197850			Mitochondrion				"g4098.t2;g4098.t2;g4098.t2"		
+Cre03.g175800			Chloroplast	"GO:0008168;GO:0006364"	"methyltransferase activity;rRNA processing"		"g3631.t1;RIMM"	RRM16	
+Cre03.g179901			Mitochondrion				"Cre73.g794950.t1.1;g3726.t1;OPR131;mL116"	MRPL116	"an OctotricoPeptide Repeat (OPR) protein (Walz et al 2021); stabilizes the 3' extremity and H28 of L2a fragment; interacts with H38 formed by the L3b/L4 duplex; interacts with mL117; moderate KD in amiRNA strain does not affect accumulation of rRNA fragments"
+Cre03.g153050						RWP1	"g3116.t1;RWP1;RWP1;g3116.t1;RWP1;g3116.t1"	"RWP1;RWP1;RWP1"	"Putative RWP-RK domain transcription factor;Putative RWP-RK domain transcription factor;Putative RWP-RK domain transcription factor"
+Cre03.g168100							"Cre03.g168100.t1.1;g3457.t1"		"Target of CRR1"
+Cre03.g204241									
+Cre03.g148350			Chloroplast				"g3017.t1;Cre03.g148350.t1.1"		
+Cre03.g184100				"GO:0016818;GO:0008270;GO:0003676"	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;zinc ion binding;nucleic acid binding"		"g3815.t1;g3815.t1"		
+Cre03.g204200							"g4232.t1;Cre03.g204200.t1.1"		
+Cre03.g180750	"GMM:13.1.3.4.3;GMM:13.1.3.4"	"amino acid metabolism.synthesis.aspartate family.methionine.methionine synthase;amino acid metabolism.synthesis.aspartate family.methionine"		"GO:0009086;GO:0008652;GO:0008270;GO:0003871"	"methionine biosynthetic process;cellular amino acid biosynthetic process;zinc ion binding;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity"	METE	"MES1;g3746.t1;METE;MEtH;Cre03.g180750.t1.1;MES1;MEtH;Cre03.g180750.t1.1;METE;g3746.t1;Cre03.g180750.t1.1;MEtH;MES1;g3746.t1;METE;Cre03.g180750.t1.1;g3746.t1;METE;MES1;MEtH;Cre03.g180750.t1.1;MEtH;MES1;g3746.t1;METE;METE;g3746.t1;Cre03.g180750.t1.1;MEtH;MES1;METE;g3746.t1;Cre03.g180750.t1.1;MEtH;MES1;g3746.t1;METE;MES1;MEtH;Cre03.g180750.t1.1;METE;g3746.t1;Cre03.g180750.t1.1;MEtH;MES1;METE;g3746.t1;Cre03.g180750.t1.1;MEtH;MES1;Cre03.g180750.t1.1;MEtH;MES1;g3746.t1;METE;MES1;MEtH;Cre03.g180750.t1.1;g3746.t1;METE;Cre03.g180750.t1.1;MEtH;MES1;g3746.t1;METE;MES1;MEtH;Cre03.g180750.t1.1;METE;g3746.t1;Cre03.g180750.t1.1;MEtH;MES1;g3746.t1;METE;Cre03.g180750.t1.1;MEtH;MES1;METE;g3746.t1;g3746.t1;METE;MES1;MEtH;Cre03.g180750.t1.1"	"METE1;METE1;METE1;METE1;METE1;METE1;METE1;METE1;METE1;METE1;METE1;METE1;METE1;METE1;METE1;METE1;METE1"	"5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase (EC 2.1.1.14); Vitamin B12-independent methionine synthase; homocysteine methylase; methyltetrahydropteroylpolyglutamate:homocysteine methyltransferase; (HMT); found in the flagellar proteome [PMID: 15998802]; repressed in the presence of cobalamine; Upregulated During Gametic Activation"
+Cre03.g184750							g3829.t1		
+Cre03.g145447	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0006464	"cellular protein modification process"		"TTLL8;Cre01.g059200.t1.1;g2937.t1"	TTLL3	"Responsible for axonemal tubulin glycylation"
+Cre03.g161400	GMM:13.1.6.5.5	"amino acid metabolism.synthesis.aromatic aa.tryptophan.tryptophan synthase"	Chloroplast			MAA7	"WSN2;g3308.t1;Cre03.g161400.t1.1"	MAA7	"Tryptophan synthase beta subunit [PMID: 9625698]; the enzyme is a tetramer of two alpha dna two beta subunits; the beta subunit performs final reaction L-serine + 1-(indol-3-yl)glycerol 3-phosphate => L-tryptophan + glyceraldehyde 3-phosphate; reduction in MAA7 function results in resistance to 5-methyl anthranilic acid and 5'-fluorindole"
+Cre03.g201350			Chloroplast				g4296.t1		
+Cre03.g179000			Mitochondrion				"g3705.t1;g3705.t1"	"RAA16;RAA16"	"Necessary for trans-splicing of psaA mRNA; Component of psaA trans-splicing sub complex II;Necessary for trans-splicing of psaA mRNA; Component of psaA trans-splicing sub complex II"
+Cre03.g150500				"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"	SNE10	"Cre03.g150500.t1.1;SNE10;g3061.t1"		"Possible dihydrokaempferol 4-reductase"
+Cre03.g204212			Chloroplast						
+Cre03.g205400			"Secretory pathway"	GO:0005515	"protein binding"		g4205.t1		
+Cre03.g163350			Mitochondrion	"GO:0055114;GO:0050661;GO:0016491;GO:0008677"	"oxidation-reduction process;NADP binding;oxidoreductase activity;2-dehydropantoate 2-reductase activity"	PAN5	"PAN5;PANE;g3348.t1;Cre03.g163350.t1.1"	PAN5	"2-dehydropantoate 2-reductase, KPR, the second enzyme in the pantothenate biosynthesis pathway"
+Cre03.g186850			Mitochondrion				g3871.t1		
+Cre03.g156050	"GMM:31.2;GMM:29.2.5"	"cell.division;protein.synthesis.release"	Chloroplast	GO:0006412	translation		"g3185.t1;Cre03.g156050.t1.1"	RRF1	"Responsible for release of ribosomes from transcripts upon termination of translation"
+Cre03.g163266			Chloroplast				"Cre03.g163266.t1.1;g3346.t1"		
+Cre03.g146727	GMM:24	"biodegradation of xenobiotics"	Mitochondrion			GOX9	"g3001.t1;g3001.t1;g3001.t1;g3001.t1"	"GOX9;GOX9;GOX9;GOX9"	"the substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); c;the substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); c;the substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); c;the substrate of this oxidase is unsure, as the similarity is to both glyoxal oxidases and galactose oxidases, found in fungi, bacteria, animals and plants (both use the same Tyr radical / metal mechanism); the plant homologues are secreted, but the fate of the Chlamydomonas isoforms is uncertain; belongs to a family of 20 genes more related to each other than to their higher plant homologues, contain the kelch repeat and a C-terminal domain of unknown function (E-set domains of sugar-utilizing enzymes); c"
+Cre03.g194350							"g4022.t1;Cre03.g194350.t1.1"		
+Cre03.g157100							g3207.t1		
+Cre03.g174150	GMM:31.1	cell.organisation	Chloroplast	GO:0005515	"protein binding"		g3593.t1		
+Cre03.g182150	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF8	"Cre03.g182150.t1.1;TEF8;g3775.t1;TLP18.3;TLP18.3;g3775.t1;TEF8;Cre03.g182150.t1.1"		"Ortholog of Arabidopsis TLP18.3, protein phosphatase involved in PSII assembly;Ortholog of Arabidopsis TLP18.3, protein phosphatase involved in PSII assembly"
+Cre03.g149700			Chloroplast				"Cre03.g149700.t1.1;g3045.t1;Cre03.g149700.t1.1;g3045.t1;g3045.t1;Cre03.g149700.t1.1"		
+Cre03.g191650			Mitochondrion				"g3966.t1;g3966.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g155750			"Secretory pathway"			PHC65	"g3177.t1;PHC65;PHC65;g3177.t1"		"contains C-type lectin domain; null-allele mutant was isolated (PMID 29743196);contains C-type lectin domain; null-allele mutant was isolated (PMID 29743196)"
+Cre03.g158100							"Cre03.g158100.t1.1;g3236.t1;SMM9"		
+Cre03.g185500	"GMM:31.6.1.10;GMM:26.13"	"cell.motility.eukaryotes.flagellar associated proteins;misc.acid and other phosphatases"		GO:0003993	"acid phosphatase activity"	VIP1	"FAP160;g3844.t1;FAP160;g3844.t1;FAP160;g3844.t1;g3844.t1;FAP160;g3844.t1;FAP160"	"VIP1;VIP1;VIP1;VIP1;VIP1"	"Inositol hexakisphosphate kinase; predicted to pyrophosphorylate InsP6 at the 1,3 positions, generating 1PP-InsP5 (In1sP7) and possibly 1,3PP-InsP4 (InsP8); involved in Inositol Polyphosphate and TOR signaling; mutant is hypersensitive to rapamycin; also found in the flagellar proteome;Inositol hexakisphosphate kinase; predicted to pyrophosphorylate InsP6 at the 1,3 positions, generating 1PP-InsP5 (In1sP7) and possibly 1,3PP-InsP4 (InsP8); involved in Inositol Polyphosphate and TOR signaling; mutant is hypersensitive to rapamycin; also found in the flagellar proteome;Inositol hexakisphosphate kinase; predicted to pyrophosphorylate InsP6 at the 1,3 positions, generating 1PP-InsP5 (In1sP7) and possibly 1,3PP-InsP4 (InsP8); involved in Inositol Polyphosphate and TOR signaling; mutant is hypersensitive to rapamycin; also found in the flagellar proteome;Inositol hexakisphosphate kinase; predicted to pyrophosphorylate InsP6 at the 1,3 positions, generating 1PP-InsP5 (In1sP7) and possibly 1,3PP-InsP4 (InsP8); involved in Inositol Polyphosphate and TOR signaling; mutant is hypersensitive to rapamycin; also found in the flagellar proteome;Inositol hexakisphosphate kinase; predicted to pyrophosphorylate InsP6 at the 1,3 positions, generating 1PP-InsP5 (In1sP7) and possibly 1,3PP-InsP4 (InsP8); involved in Inositol Polyphosphate and TOR signaling; mutant is hypersensitive to rapamycin; also found in the flagellar proteome"
+Cre03.g201200			Mitochondrion			FAP283	"g4301.t1;g4301.t1;g4301.t1"	"FAP283;FAP283;FAP283"	"Hypothetical Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384];Hypothetical Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384];Hypothetical Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre03.g145087	GMM:34.12	transport.metal		"GO:0055085;GO:0016021;GO:0008324;GO:0006812"	"transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport"	MTP1	"MTP1;Cre01.g058300.t1.1;g2918.t1;Cre01.g058300.t1.2"	MTP1	"Cation efflux transporter, group 1 CDF family; Zn2+ and Co2+ transporter; related to plant zinc transporters, related to the plant MTP1; Confers tolerance to excess Zn; Similarity to Zrc1 from yeast; suppresses Zn and Co sensitivity of zrc1 cot1 yeast mutant;"
+Cre03.g172300	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	Mitochondrion			MPC5	"CR057;PHT3-1;MCP1;g3551.t1;MPC1;MPC5;Cre03.g172300.t1.1;PHT3-1;CR057;g3551.t1;MCP1;Cre03.g172300.t1.1;MPC5;MPC1"	"PHT3A;PHT3A"	"Similar to mitochondrial phosphate carrier, mitochondrial inner membrane protein transfering inorganic phosphate into matrix;Similar to mitochondrial phosphate carrier, mitochondrial inner membrane protein transfering inorganic phosphate into matrix"
+Cre03.g145887	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0016021	"integral component of membrane"	TATC	"g2959.t1;TAT3;TATC"	TATC1	"The TAT translocon translocates proteins with a Twin Arginine Transit peptide through the thylakoid membrane;"
+Cre03.g181250	GMM:30.11	signalling.light	Chloroplast			CGLD13	"SNE18;g3756.t1"	CGLD13	"Short chain dehydrogenase belonging to the extended family [PMID: 1223552]. Similarity to the N-terminal domain of Tic62 [PMID: 17374152 and PMID: 12426385]; related to nucleoside diphosphate sugar epimerase; putatively chloroplast targeted"
+Cre03.g172322							"Cre03.g172322.t1.1;g3552.t1"		
+Cre03.g181576			Chloroplast				g3763.t1		
+Cre03.g146247	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"		"GO:0022900;GO:0016651"	"electron transport chain;oxidoreductase activity, acting on NAD(P)H"	NUOS4	"NUOS4;g2977.t1;Cre01.g061100.t1.2;Cre01.g061100.t1.1;NUOS4;g2977.t1;Cre01.g061100.t1.2;Cre01.g061100.t1.1"	"NUOS4;NUOS4"	"NADH:ubiquinone oxidoreductase 18 kD-like subunit. Complex I AQDQ subunit, mitochondrial [=NDUFS4]. gi|34334026|gb|AAQ64640.1|; Ortholog of NDUFS4 in Homo sapiens;;NADH:ubiquinone oxidoreductase 18 kD-like subunit. Complex I AQDQ subunit, mitochondrial [=NDUFS4]. gi|34334026|gb|AAQ64640.1|; Ortholog of NDUFS4 in Homo sapiens;"
+Cre03.g170100			Mitochondrion				"Cre03.g170100.t1.1;g3502.t1;g3502.t1;Cre03.g170100.t1.1"		
+Cre03.g190550				"GO:0016592;GO:0006357;GO:0001104"	"mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity"		"g3945.t1;Cre03.g190550.t1.1"		
+Cre03.g199800	"GMM:5;GMM:33.99;GMM:1.1.7.1"	"fermentation;development.unspecified;PS.lightreaction.hydrogenase.FeFe-hydrogenase"	Chloroplast			HYDA1	"HYD1;g4331.t1"	HYDA1	"Chloroplast Fe-hydrogenase (= HYDA1); corresponds to GI:18026272; reversible reduction of 2H+ to H2, oxidizing two ferredoxins;"
+Cre03.g155976									
+Cre03.g144947	GMM:27.3.12	"RNA.regulation of transcription.C3H zinc finger family"					"g2911.t1;Cre01.g058100.t1.1;Cre01.g058100.t1.1;g2911.t1"		
+Cre03.g161100	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion				g3302.t1		
+Cre03.g204950				GO:0003676	"nucleic acid binding"		"Cre03.g204950.t1.1;g4214.t1"		
+Cre03.g199535	"GMM:27.3.99;GMM:27.3.23;GMM:1.1.99"	"RNA.regulation of transcription.unclassified;RNA.regulation of transcription.heat-shock transcription factor family (HSF);PS.lightreaction.unspecified"	Chloroplast			LHL3	"SEP3;Cre19.g751700.t1.2;Cre19.g751700.t1.1;LYL3;g4362.t1;LIL3;ELI9"		"CAB/LHC superfamily protein with two transmembrane helices, one of which has an LHC motif; links chlorophyll and carotenoid synthesis pathways in plants; binds to CHLG and pytoene synthase in A. thaliana on thylakoid membranes; LIL3 homolog in plants is involved in the chlorophyll biosynthesis pathway, interacting with CHLP and POR"
+Cre03.g145967	"GMM:29.1.10;GMM:29.1"	"protein.aa activation.methionine-tRNA ligase;protein.aa activation"	Mitochondrion	GO:0000049	"tRNA binding"		"g2963.t1;Cre01.g060450.t1.1;Cre01.g060450.t1.1;g2963.t1"		
+Cre03.g207152			"Secretory pathway"				g4167.t1		
+Cre03.g204913							"g4410.t1;Cre19.g753900.t1.1"		
+Cre03.g144667			Chloroplast			CLPT4	"g2897.t1;Cre60.g792250.t1.1;CLPS4;CLPS4;g2897.t1;Cre60.g792250.t1.1"	"CLPT4;CLPT4"	"Homologue of plant ClpT (formerly called ClpS) proteins associated with ClpP complex (PMID: 14593120); has similarity to the N-terminal domain of ClpA chaperone that binds the ClpS adaptator;Homologue of plant ClpT (formerly called ClpS) proteins associated with ClpP complex (PMID: 14593120); has similarity to the N-terminal domain of ClpA chaperone that binds the ClpS adaptator"
+Cre03.g166650	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	CGLD3	"HEL15;g3420.t1"	CGLD3	"Conserved in the Green Lineage and Diatoms"
+Cre03.g187700	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL19	"HEL19;g3888.t1;HEL19;g3888.t1"		"ATP-dependent DEAD/DEAH box DNA helicase;ATP-dependent DEAD/DEAH box DNA helicase"
+Cre03.g192100			"Secretory pathway"				g3976.t1		
+Cre03.g145207			Chloroplast			CPLD33	"CPLD33;Cre01.g058600.t1.1;g2924.t1;Cre01.g058600.t1.1;g2924.t1;CPLD33"	"CPLD33;CPLD33"	
+Cre03.g159100			"Secretory pathway"				"Cre03.g159100.t1.1;g3258.t1"		
+Cre03.g196050							"Cre03.g196050.t1.1;g4061.t1"	B9D2A	"Transition zone protein involved in cIlia stability"
+Cre03.g190050	"GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4"	"signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0005515;GO:0004672"	"protein phosphorylation;ATP binding;protein binding;protein kinase activity"		g3935.t1		
+Cre03.g210737			"Secretory pathway"				"Cre19.g756200.t1.1;g4465.t1;g4465.t1;Cre19.g756200.t1.1;Cre19.g756200.t1.1;g4465.t1;Cre19.g756200.t1.1;g4465.t1"		
+Cre03.g172200							"g3549.t1;g3549.t1;g3549.t1;g3549.t1;g3549.t1;g3549.t1"		
+Cre03.g202150	GMM:27.3.46	"RNA.regulation of transcription.DNA methyltransferases"				DMC2	"DMC2;g4279.t1;DMC2;g4279.t1;g4279.t1;DMC2"		"DNA methylase, C-5 cytosine-specific, homologous to the chromomethylase 2 family but lacks chromo-domain. ChromoDB DMT346;DNA methylase, C-5 cytosine-specific, homologous to the chromomethylase 2 family but lacks chromo-domain. ChromoDB DMT346;DNA methylase, C-5 cytosine-specific, homologous to the chromomethylase 2 family but lacks chromo-domain. ChromoDB DMT346"
+Cre03.g192600	GMM:23.3.2.3	"nucleotide metabolism.salvage.nucleoside kinases.thymidine kinase"	Chloroplast	"GO:0005524;GO:0004797"	"ATP binding;thymidine kinase activity"	THK1	"g3986.t1;THK1"	THK1	
+Cre03.g179840			"Secretory pathway"						
+Cre03.g207250	GMM:12.2.2	"N-metabolism.ammonia metabolism.glutamine synthetase"				GLN4	"Cre03.g207250.t1.1;g4164.t1;g4164.t1;Cre03.g207250.t1.1"	"GLN4;GLN4"	"Putative glutamine synthetase (EC 6.3.1.2), (Glutamate-ammonia ligase); no predicted organelle targeting;Putative glutamine synthetase (EC 6.3.1.2), (Glutamate-ammonia ligase); no predicted organelle targeting"
+Cre03.g163800							g3358.t1		
+Cre03.g153076	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"	Mitochondrion			RWP1			
+Cre03.g195388			Chloroplast				"Cre03.g195400.t1.3;g4048.t1"		
+Cre03.g178450	"GMM:29.9;GMM:29.6.2.6;GMM:29.6;GMM:29.4"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding;protein.postranslational modification"	Mitochondrion	"GO:0006457;GO:0005737"	"protein folding;cytoplasm"	CPN10	"g3695.t1;CPN10;Cre03.g178450.t1.1;HSP10"	CPN10	"Co-chaperonin assisting the CPN60 chaperonin in protein folding; homologous to bacterial GroES; closely related to mitochondrial CPN10 from Arabidopsis, thus very likely mitochondrial; heptamers of Cpn10-like cochaperonins bind to one of the two Cpn60 heptameric rings and trigger ATP hydrolysis"
+Cre03.g144444							"Cre01.g057300.t1.1;g2886.t1"		
+Cre03.g197750	"GMM:21.2.2;GMM:21.2"	"redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione"	Chloroplast	"GO:0055114;GO:0016491;GO:0016209;GO:0006979;GO:0004602"	"oxidation-reduction process;oxidoreductase activity;antioxidant activity;response to oxidative stress;glutathione peroxidase activity"	GPX3	"g4096.t1;Cre03.g197750.t1.1"	GPX3	"Possibly mitochondrial"
+Cre03.g167200				"GO:0007165;GO:0005515"	"signal transduction;protein binding"		g3432.t1		
+Cre03.g169350			Chloroplast				"g3486.t1;g3486.t1"		
+Cre03.g184900							"g3832.t1;Cre03.g184900.t1.1"		
+Cre03.g210065	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre19.g755900.t1.1;g4458.t1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre03.g150800	"GMM:26.27;GMM:26.13"	"misc.calcineurin-like phosphoesterase family protein;misc.acid and other phosphatases"					g3069.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g161000	GMM:23.2	"nucleotide metabolism.degradation"		GO:0019239	"deaminase activity"		"g3299.t1;ADA1;ADA1;g3299.t1;g3299.t1;ADA1;g3299.t1;ADA1;ADA1;g3299.t1;g3299.t1;ADA1"		"Adenosine/AMP deaminase, metal-dependent hydrolase;Adenosine/AMP deaminase, metal-dependent hydrolase;Adenosine/AMP deaminase, metal-dependent hydrolase;Adenosine/AMP deaminase, metal-dependent hydrolase;Adenosine/AMP deaminase, metal-dependent hydrolase;Adenosine/AMP deaminase, metal-dependent hydrolase"
+Cre03.g155501			Mitochondrion	GO:0016021	"integral component of membrane"		"Cre03.g155501.t1.1;g3171.t1;Cre03.g155501.t1.1;g3171.t1"		
+Cre03.g208721	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"	Mitochondrion	GO:0015969	"guanosine tetraphosphate metabolic process"	CGL92	"Cre19.g755400.t1.1;g4446.t1"	CGL92	
+Cre03.g160900	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre03.g160900.t1.1;g3296.t1;Cre03.g160900.t1.1;g3296.t1"		
+Cre03.g163650			Chloroplast				"g3355.t1;Cre03.g163650.t1.1"		
+Cre03.g158250			Mitochondrion	"GO:0016020;GO:0015031"	"membrane;protein transport"	SECY2	"Cre03.g158250.t1.1;SCY2;g3239.t1"	SECY2	"Hypothetical Conserved Protein. Thylakoid membrane protein translocase. Involved in translocating plastid stromal proteins into the thylakoid lumen."
+Cre03.g183300			Chloroplast	GO:2001070	"starch binding"		g3799.t2		
+Cre03.g193676			Chloroplast						
+Cre03.g189150							"g3917.t1;g3917.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g169100	"GMM:30.3;GMM:3.3;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g3481.t1;g3481.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g178050	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"	Mitochondrion	GO:0005515	"protein binding"	MOT51	"g3684.t1;MOT51"		"This locus was previously identified as MOT51 because the v3 gene model was a fusion between this locus and the neighboring one, Cre03.g178100, however, Cre03.g178100 is likely the true MOT51"
+Cre03.g149550							"g3042.t1;g3042.t1;g3042.t1;g3042.t1"		
+Cre03.g166900	GMM:26.1	misc.misc2	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP767A1	"g3425.t1;CYP15"	CYP767A1	"cytochrome P450, most like CYP4 family sequences in animals."
+Cre03.g189605	"GMM:33.99;GMM:27.3.44"	"development.unspecified;RNA.regulation of transcription.chromatin remodeling factors"		"GO:0016593;GO:0016570;GO:0006355"	"Cdc73/Paf1 complex;histone modification;regulation of transcription, DNA-templated"		"g3927.t1;Cre03.g189605.t1.1;g3927.t1;Cre03.g189605.t1.1;g3927.t1;Cre03.g189605.t1.1"		
+Cre03.g200950						FAP273	"Cre03.g200950.t1.1;g4306.t1"	FAP273	"Flagellar Associated Protein, found in the flagellar proteome"
+Cre03.g144064			Chloroplast				"g2866.t1;Cre01.g056450.t1.1"		
+Cre03.g174672			Mitochondrion				"g3607.t1;Cre03.g174672.t1.1"		
+Cre03.g189500				GO:0016787	"hydrolase activity"		"Cre03.g189500.t1.1;g3924.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g153100			"Secretory pathway"				"g3118.t1;g3118.t1"		
+Cre03.g175500			Mitochondrion	GO:0016021	"integral component of membrane"		"g3623.t1;Cre03.g175500.t1.1"		
+Cre03.g194800	"GMM:27.1.3.14;GMM:27.1"	"RNA.processing.3' end processing.Clp1;RNA.processing"		GO:0031124	"mRNA 3'-end processing"		"g4034.t1;Cre03.g194800.t1.1;g4034.t1;Cre03.g194800.t1.1"		
+Cre03.g179450	GMM:29.4.1	"protein.postranslational modification.kinase"	"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR7	"SRR7;g3714.t1"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912)"
+Cre03.g201215							g4377.t1		
+Cre03.g165215	GMM:29.5.2	protein.degradation.autophagy		"GO:0008641;GO:0006914;GO:0005737"	"small protein activating enzyme activity;autophagy;cytoplasm"	APG7	"g3389.t1;g3389.t1;g3389.t1;g3389.t1;g3389.t1;g3389.t1;g3389.t1;g3389.t1"	"ATG7;ATG7;ATG7;ATG7;ATG7;ATG7;ATG7;ATG7"	"Autophagy-related protein and dual specificity member of the E1 family; mediates the attachment of Atg12 to Atg5 and Atg8 to phosphatidylethanolamine which are required steps in autophagosome formation; E1 enzymes are also known as ubiquitin-activating enzymes;Autophagy-related protein and dual specificity member of the E1 family; mediates the attachment of Atg12 to Atg5 and Atg8 to phosphatidylethanolamine which are required steps in autophagosome formation; E1 enzymes are also known as ubiquitin-activating enzymes;Autophagy-related protein and dual specificity member of the E1 family; mediates the attachment of Atg12 to Atg5 and Atg8 to phosphatidylethanolamine which are required steps in autophagosome formation; E1 enzymes are also known as ubiquitin-activating enzymes;Autophagy-related protein and dual specificity member of the E1 family; mediates the attachment of Atg12 to Atg5 and Atg8 to phosphatidylethanolamine which are required steps in autophagosome formation; E1 enzymes are also known as ubiquitin-activating enzymes;Autophagy-related protein and dual specificity member of the E1 family; mediates the attachment of Atg12 to Atg5 and Atg8 to phosphatidylethanolamine which are required steps in autophagosome formation; E1 enzymes are also known as ubiquitin-activating enzymes;Autophagy-related protein and dual specificity member of the E1 family; mediates the attachment of Atg12 to Atg5 and Atg8 to phosphatidylethanolamine which are required steps in autophagosome formation; E1 enzymes are also known as ubiquitin-activating enzymes;Autophagy-related protein and dual specificity member of the E1 family; mediates the attachment of Atg12 to Atg5 and Atg8 to phosphatidylethanolamine which are required steps in autophagosome formation; E1 enzymes are also known as ubiquitin-activating enzymes;Autophagy-related protein and dual specificity member of the E1 family; mediates the attachment of Atg12 to Atg5 and Atg8 to phosphatidylethanolamine which are required steps in autophagosome formation; E1 enzymes are also known as ubiquitin-activating enzymes"
+Cre03.g179800	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	Chloroplast			LCI24	"g3721.t1;Cre03.g179800.t1.1"	LCI24	"Low-CO2 inducible gene revealed by cDNA array analyses; SOSUI prediction: 3 transmembrane region; probably organelle-targetted; regulated by CCM1 [PMID: 15235119]"
+Cre03.g148050	GMM:28.2	DNA.repair	Mitochondrion	"GO:0006281;GO:0003684"	"DNA repair;damaged DNA binding"	POLI1	"g3011.t1;POLI1;g3011.t1;POLI1;g3011.t1;POLI1"	"POLI1;POLI1;POLI1"	"Homologous to eukaryotic DNA polymerase iota. Involved in DNA damage bypass synthesis; a class Y polymerase;Homologous to eukaryotic DNA polymerase iota. Involved in DNA damage bypass synthesis; a class Y polymerase;Homologous to eukaryotic DNA polymerase iota. Involved in DNA damage bypass synthesis; a class Y polymerase"
+Cre03.g206550			Chloroplast			CPLD2	"Cre03.g206550.t1.1;PGP5;g4180.t1;Cre03.g206550.t1.1;PGP5;g4180.t1;g4180.t1;PGP5;Cre03.g206550.t1.1"	"CPLD2;CPLD2;CPLD2"	"Similar to phosphoglycolate phosphatase/2-deoxyglucose-6-phosphate phosphatase;Similar to phosphoglycolate phosphatase/2-deoxyglucose-6-phosphate phosphatase;Similar to phosphoglycolate phosphatase/2-deoxyglucose-6-phosphate phosphatase"
+Cre03.g158900	"GMM:8.1.1.2;GMM:11.1.31"	"TCA / organic transformation.TCA.pyruvate DH.E2;lipid metabolism.FA synthesis and FA elongation.pyruvate DH"	Chloroplast	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"	DLA2	"Cre03.g158900.t1.1;g3253.t1;RBP63;g3253.t1;Cre03.g158900.t1.1;RBP63;RBP63;Cre03.g158900.t1.1;g3253.t1"	"DLA2;DLA2;DLA2"	"Dihydrolipoamide acetyltransferase (EC 2.3.1.12), E2 component of the plastidic,pyruvate dehydrogenase complex; similarity to Arabidopsis plastidic LTA2 (GenBank NP_189215); identified as RPB63, binding psbA mRNA, and possibly involved in regulation of psbA translation;;Dihydrolipoamide acetyltransferase (EC 2.3.1.12), E2 component of the plastidic,pyruvate dehydrogenase complex; similarity to Arabidopsis plastidic LTA2 (GenBank NP_189215); identified as RPB63, binding psbA mRNA, and possibly involved in regulation of psbA translation;;Dihydrolipoamide acetyltransferase (EC 2.3.1.12), E2 component of the plastidic,pyruvate dehydrogenase complex; similarity to Arabidopsis plastidic LTA2 (GenBank NP_189215); identified as RPB63, binding psbA mRNA, and possibly involved in regulation of psbA translation;"
+Cre03.g166201							g3411.t1		
+Cre03.g160600	GMM:27.3.9	"RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family"		"GO:0043565;GO:0008270;GO:0006355;GO:0003700"	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g3290.t1;g3290.t1;g3290.t1;g3290.t1"		
+Cre03.g179700	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Mitochondrion				"g3719.t1;Cre03.g179700.t1.1"		
+Cre03.g158650							"Cre03.g158650.t1.1;g3248.t1"		
+Cre03.g164400			Chloroplast						
+Cre03.g175050	GMM:34.99	transport.misc		"GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216"	"calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity"	TRP13	"TRP13;g3615.t1;TRP13;g3615.t1;g3615.t1;TRP13;TRP13;g3615.t1"	"TRP13;TRP13;TRP13;TRP13"	"weakly similar to transient receptor potential ion channel;weakly similar to transient receptor potential ion channel;weakly similar to transient receptor potential ion channel;weakly similar to transient receptor potential ion channel"
+Cre03.g205900	GMM:22.1.2	"polyamine metabolism.synthesis.SAM decarboxylase"		"GO:0008295;GO:0006597;GO:0004014"	"spermidine biosynthetic process;spermine biosynthetic process;adenosylmethionine decarboxylase activity"	DCA1	"DCA1;Cre03.g205900.t1.1;g4193.t1;Cre03.g205900.t1.1;DCA1;g4193.t1;DCA1;Cre03.g205900.t1.1;g4193.t1"	"DCA1;DCA1;DCA1"	"produces decarboxylated S-adoMet for the fisrt step of polyamine biosynthesis; translationally regulated by a negatively acting uORF MPAVKRTSMRSVYDPIATEPIVASEPARLVVKRTACFADTGSLPS which is regulated in turn by an overlapping tiny ORF MSRPQDASC (PMID: 16176926); (adometdc) gi:57336132;produces decarboxylated S-adoMet for the fisrt step of polyamine biosynthesis; translationally regulated by a negatively acting uORF MPAVKRTSMRSVYDPIATEPIVASEPARLVVKRTACFADTGSLPS which is regulated in turn by an overlapping tiny ORF MSRPQDASC (PMID: 16176926); (adometdc) gi:57336132;produces decarboxylated S-adoMet for the fisrt step of polyamine biosynthesis; translationally regulated by a negatively acting uORF MPAVKRTSMRSVYDPIATEPIVASEPARLVVKRTACFADTGSLPS which is regulated in turn by an overlapping tiny ORF MSRPQDASC (PMID: 16176926); (adometdc) gi:57336132"
+Cre03.g197150							g4083.t1		
+Cre03.g172650	"GMM:31.6.1.1;GMM:31.1.1.2;GMM:31.1"	"cell.motility.eukaryotes.basal bodies;cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"		"GO:0007017;GO:0005874;GO:0003924"	"microtubule-based process;microtubule;GTPase activity"	BLD2	"TUE1;Cre03.g172650.t1.1;g3560.t1;g3560.t1;Cre03.g172650.t1.1;TUE1"	"BLD2;BLD2"	"Epsilon tubulin (TUE) [gi:2514387, PMID: 1242983], corresponds to BLD2 locus on linkage group III;Epsilon tubulin (TUE) [gi:2514387, PMID: 1242983], corresponds to BLD2 locus on linkage group III"
+Cre03.g183150							"g3796.t1;g3796.t1;g3796.t1"		
+Cre03.g169800	"GMM:28.99;GMM:27.3.99"	"DNA.unspecified;RNA.regulation of transcription.unclassified"		GO:0016888	"endodeoxyribonuclease activity, producing 5'-phosphomonoesters"		"g3496.t1;Cre03.g169800.t1.1"		
+Cre03.g176961			"Secretory pathway"				"Cre03.g176961.t1.1;g3658.t1"		
+Cre03.g157725							"Cre03.g157750.t1.3;g3228.t1;PQQ1"		"Presents motifs found on quinoproteins whose redox cofactor is a pyrrolo-quinoline quinone (PQQ); closely related to linked PPQ2 gene; most similar to bacterial quinoproteins; no orthologue found in Volvox"
+Cre03.g167550	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"		"GO:0060271;GO:0005813;GO:0005634"	"cilium morphogenesis;centrosome;nucleus"	CEP290	"POC3;CEP290;g3439.t1;CEP290;g3439.t1;POC3"	"POC3;POC3"	"Found in basal body proteome; Transition Zone Protein; Human homolog cep290 localizes to centrosome, and is also called 3H11 antigen;Found in basal body proteome; Transition Zone Protein; Human homolog cep290 localizes to centrosome, and is also called 3H11 antigen"
+Cre03.g186450	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion	GO:0005515	"protein binding"	LNM1	"g3863.t1;LNM1"	LNM1	
+Cre03.g188450						PTX2	"Cre03.g188450.t1.1;g3903.t1;PTX2"	PTX2	"Identified by Pazour et al. 1995 [PMID: 7593169] as the locus for an insertional mutant, ptx2, with impaired phototaxis; the mutant shows a normal light-induced photoreceptor current but lacks the flagellar current; similar to echinacaean XP_800286 and D. rerio XP_706476"
+Cre03.g166550			"Secretory pathway"				g3418.t1		
+Cre03.g186250							g3859.t1		
+Cre03.g149450			Chloroplast				"g3039.t1;g3039.t1;g3039.t1;g3039.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g206145			Mitochondrion				"g4422.t1;Cre19.g754400.t1.2;Cre19.g754400.t1.1"		
+Cre03.g199200			Mitochondrion				g4344.t1		
+Cre03.g175351			Chloroplast			LMR2	"LMR2;g3620.t1"		"protein of unknown function, contains LysM-domains which are found in a variety of enzymes involved in bacterial cell wall degradation; the domain may have a general peptidoglycan binding function"
+Cre03.g206850			"Secretory pathway"				g4174.t1		
+Cre03.g208557			Chloroplast						
+Cre03.g171600	GMM:26.13	"misc.acid and other phosphatases"	Chloroplast	GO:0016787	"hydrolase activity"		"g3537.t1;XPP"	XPP1	
+Cre03.g203600	GMM:11.9.3.3	"lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase"		"GO:0008081;GO:0006629"	"phosphoric diester hydrolase activity;lipid metabolic process"	GDP6	"GDP6;g4245.t1;Cre03.g203600.t1.1;GDPD6;GDPD6;g4245.t1;GDP6;Cre03.g203600.t1.1"		
+Cre03.g144847	"GMM:4.3.14;GMM:4.2.14;GMM:4.1.14;GMM:11.1.30"	"glycolysis.unclear/dually targeted.pyruvate kinase (PK);glycolysis.plastid branch.pyruvate kinase (PK);glycolysis.cytosolic branch.pyruvate kinase (PK);lipid metabolism.FA synthesis and FA elongation.pyruvate kinase"		"GO:0030955;GO:0006096;GO:0004743;GO:0000287"	"potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding"	PYK4	"Cre01.g057900.t1.1;g2906.t1;PYK4;Cre01.g057900.t1.2"	PYK4	"Pyruvate kinase (PK) [EC 2.7.1.40]; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP;"
+Cre03.g153950	GMM:34.99	transport.misc		"GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216"	"calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity"	TRP12	"TRP12;g3136.t1"		"weakly similar to transient receptor potential ion channel"
+Cre03.g193750	"GMM:13.2.5.2;GMM:1.2.4.2"	"amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;PS.photorespiration.glycine cleavage.T subunit"	Mitochondrion			GCST	"g4010.t1;GCST"	GCST1	"Glycine cleavage system, T protein, (aminomethyltransferase from domain homology)"
+Cre03.g177550	GMM:31.1	cell.organisation					"g3671.t1;Cre03.g177550.t1.1;Cre03.g177550.t1.1;g3671.t1"		
+Cre03.g182500	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"		"GO:0048500;GO:0008312;GO:0006614"	"signal recognition particle;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane"	SRP72	"g3782.t1;Cre03.g182500.t1.1;SRP72"	SRP72	"Expressed Protein. Similar to the SRP72 subunit of the Signal Recognition Particle. Involved in ER protein translocation."
+Cre03.g199850			Mitochondrion				"g4330.t1;Cre03.g199850.t1.1"		
+Cre03.g194950	"GMM:27.3.99;GMM:27.3.85;GMM:27.2"	"RNA.regulation of transcription.unclassified;RNA.regulation of transcription.sigma like plant;RNA.transcription"	Chloroplast	"GO:0016987;GO:0006355;GO:0006352;GO:0003700;GO:0003677"	"sigma factor activity;regulation of transcription, DNA-templated;DNA-templated transcription, initiation;transcription factor activity, sequence-specific DNA binding;DNA binding"	RPOD	"RPOD;SIG1;g4037.t1;RPOD;SIG1;g4037.t1;RPOD;SIG1;g4037.t1;RPOD;SIG1;g4037.t1;g4037.t1;SIG1;RPOD;RPOD;SIG1;g4037.t1"	"RPOD1;RPOD1;RPOD1;RPOD1;RPOD1;RPOD1"	"Chloroplast RNA polymerase sigma factor RpoD, chloroplast precursor [PMID: 16143845];Chloroplast RNA polymerase sigma factor RpoD, chloroplast precursor [PMID: 16143845];Chloroplast RNA polymerase sigma factor RpoD, chloroplast precursor [PMID: 16143845];Chloroplast RNA polymerase sigma factor RpoD, chloroplast precursor [PMID: 16143845];Chloroplast RNA polymerase sigma factor RpoD, chloroplast precursor [PMID: 16143845];Chloroplast RNA polymerase sigma factor RpoD, chloroplast precursor [PMID: 16143845]"
+Cre03.g151150							"Cre03.g151150.t1.1;g3076.t1"		
+Cre03.g155600							"g3174.t1;g3174.t1"		
+Cre03.g144184			Chloroplast				"Cre01.g056700.t1.1;g2872.t1"		
+Cre03.g169300	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"Cre03.g169300.t1.1;g3485.t2;g3485.t2;Cre03.g169300.t1.1;g3485.t2;Cre03.g169300.t1.1"		
+Cre03.g193150							"Cre03.g193150.t1.1;g3996.t1"		
+Cre03.g194000	GMM:27.1.1	RNA.processing.splicing					"g4015.t1;SPL14;g4015.t1;SPL14"		"Pre-mRNA splicing factor, may interact PRP18 and be recruited to the splicesome;Pre-mRNA splicing factor, may interact PRP18 and be recruited to the splicesome"
+Cre03.g170800	GMM:26.23	misc.rhodanese	Chloroplast				"Cre03.g170800.t1.1;g3519.t1"		
+Cre03.g176866							"g3655.t1;NAP1;NAP"		"has homologs in Chlorophyceae"
+Cre03.g200200	"GMM:31.3;GMM:30.6;GMM:29.4.1;GMM:29.4"	"cell.cycle;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4323.t1;g4323.t1;g4323.t1;g4323.t1;g4323.t1"		
+Cre03.g171500			Chloroplast				g3535.t1		
+Cre03.g193900	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF					"Cre03.g193900.t1.1;g4013.t1"		"histone-like transcription factor"
+Cre03.g163900			Chloroplast			PWR3	"PWR3;g3360.t1"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre03.g149500	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0005737	cytoplasm		"g3040.t1;g3040.t1"		
+Cre03.g151900			"Secretory pathway"			LZY1A	"g3091.t1;LZY1A;Cre03.g151900.t1.1"	LZY1A	"pseudogene tandem duplicate of LZY1B [PMID: 1552907]; Genbank S90875"
+Cre03.g175250	"GMM:11.8.8;GMM:11.8"	"lipid metabolism.exotics (steroids, squalene etc).squalene synthase;lipid metabolism.exotics (steroids, squalene etc)"		"GO:0016740;GO:0009058"	"transferase activity;biosynthetic process"	SQS1	"SQS;g3618.t2;SQS;g3618.t2"	"SQS1;SQS1"	"[EC: 2.5.1.21]; produces squalene from farnesyl diphosphate; has two putative transmembrane domains at the C-terminus; localized in ER;[EC: 2.5.1.21]; produces squalene from farnesyl diphosphate; has two putative transmembrane domains at the C-terminus; localized in ER"
+Cre03.g159150	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g3259.t1;g3259.t1;g3259.t1"		
+Cre03.g171751			"Secretory pathway"				g3540.t1		
+Cre03.g196250	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP3	"g4065.t1;CEP3;CEP3;g4065.t1"		"Cysteine-type endopeptidase, papain type;Cysteine-type endopeptidase, papain type"
+Cre03.g164250	"GMM:31.3;GMM:29.4.1;GMM:29.4"	"cell.cycle;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005515;GO:0004672"	"protein phosphorylation;protein binding;protein kinase activity"	FAP262	"g3367.t1;g3367.t1;g3367.t1"	"FAP262;FAP262;FAP262"	"Flagellar Associated Protein, similar to protein kinases, found in the flagellar proteome;Flagellar Associated Protein, similar to protein kinases, found in the flagellar proteome;Flagellar Associated Protein, similar to protein kinases, found in the flagellar proteome"
+Cre03.g172376			"Secretory pathway"				g3553.t1		
+Cre03.g206000				GO:0005515	"protein binding"		"Cre03.g206000.t1.1;g4191.t1"		
+Cre03.g172050				"GO:0006355;GO:0006289;GO:0000439"	"regulation of transcription, DNA-templated;nucleotide-excision repair;core TFIIH complex"	TFB4	"TF2H3;TFB4;g3546.t1;TF2H3;TFB4;g3546.t1;TFB4;g3546.t1;TF2H3"	"TFB4;TFB4;TFB4"	"RNA polymerase II used in nucleotide excision in other organisms;RNA polymerase II used in nucleotide excision in other organisms;RNA polymerase II used in nucleotide excision in other organisms"
+Cre03.g203850	"GMM:23.4.1;GMM:14.1"	"nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase;S-assimilation.APS"	Chloroplast	GO:0004781	"sulfate adenylyltransferase (ATP) activity"	ATS1	"g4239.t1;ATS1;Cre03.g203850.t1.1"	ATS1	"ATP-sulfurylase; catalyses the synthesis of adenosine-phosphosulphate (APS) from ATP and inorganic sulphate; Genbank entry U57088"
+Cre03.g152550	GMM:33.99	development.unspecified	"Secretory pathway"	GO:0005515	"protein binding"		"g3106.t1;g3106.t1"		
+Cre03.g144967	"GMM:29.5.9;GMM:29.5.11.20"	"protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom"	Mitochondrion	GO:0005524	"ATP binding"		"g2912.t1;Cre01.g058150.t1.1;Cre01.g058150.t1.2"		
+Cre03.g146007			Chloroplast				"g2965.t1;Cre01.g060536.t1.2;Cre01.g060536.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g157326			Mitochondrion						
+Cre03.g144204				"GO:0051861;GO:0046836;GO:0017089;GO:0005737"	"glycolipid binding;glycolipid transport;glycolipid transporter activity;cytoplasm"		"Cre01.g056750.t1.2;g2873.t1;Cre01.g056750.t1.1;g2873.t1;Cre01.g056750.t1.2;Cre01.g056750.t1.1"		
+Cre03.g198100						BET1	"g4103.t1;Cre03.g198100.t1.1;BET1;g4103.t1;Cre03.g198100.t1.1;BET1;Cre03.g198100.t1.1;BET1;g4103.t1"	"BET1;BET1;BET1"	"Expressed Protein. Similar to BET1-type Qc-SNAREs involved in ER/Golgi traffic.;Expressed Protein. Similar to BET1-type Qc-SNAREs involved in ER/Golgi traffic.;Expressed Protein. Similar to BET1-type Qc-SNAREs involved in ER/Golgi traffic."
+Cre03.g200450			Mitochondrion				"g4318.t1;Cre03.g200450.t1.1;Cre03.g200450.t1.1;g4318.t1"		
+Cre03.g143847			"Secretory pathway"				"g2856.t2;Cre01.g055950.t1.2;Cre01.g055950.t1.1;g2856.t2;Cre01.g055950.t1.1;Cre01.g055950.t1.2;Cre01.g055950.t1.1;Cre01.g055950.t1.2;g2856.t2;Cre01.g055950.t1.1;Cre01.g055950.t1.2;g2856.t2"		
+Cre03.g193650			Chloroplast				"g4007.t1;Cre03.g193650.t1.1"		
+Cre03.g157426			Mitochondrion						
+Cre03.g146847									
+Cre03.g156250						FAP186	"Cre03.g156250.t1.1;g3189.t1;FAP186;FAP186;g3189.t1;Cre03.g156250.t1.1"	"POC13;POC13"	"Found in basal body proteome as POC13; FABP protein with SH3 domain; Flageller associated protein 186;Found in basal body proteome as POC13; FABP protein with SH3 domain; Flageller associated protein 186"
+Cre03.g176750			Chloroplast				"Cre03.g176750.t1.1;g3652.t1;g3652.t1;Cre03.g176750.t1.1;Cre03.g176750.t1.1;g3652.t1;Cre03.g176750.t1.1;g3652.t1"		
+Cre03.g160953	GMM:27.1.19	RNA.processing.ribonucleases	"Secretory pathway"	"GO:0055085;GO:0042626;GO:0033897;GO:0016021;GO:0006810;GO:0005524;GO:0003723"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ribonuclease T2 activity;integral component of membrane;transport;ATP binding;RNA binding"		"g3298.t1;Cre03.g160953.t1.1;g3298.t1;Cre03.g160953.t1.1"		
+Cre03.g195650	GMM:29.2.1.1.1.1.10	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S10"	Chloroplast	"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	PRPS10	"g4054.t1;Cre03.g195650.t1.1"	PRPS10	"imported to chloroplast; Chloroplast Small Ribosomal Subunit Protein S10"
+Cre03.g145987							"Cre01.g060500.t1.1;g2964.t1;g2964.t1;Cre01.g060500.t1.1"		
+Cre03.g168700	"GMM:3.99;GMM:1.2.1"	"minor CHO metabolism.misc;PS.photorespiration.phosphoglycolate phosphatase"				PGP1	"PGP1;g3472.t1;Cre03.g168700.t1.1"		"Phosphoglycolate phosphatase (EC 3.1.3.18), chloroplast precursor with putative stromal localization; CO2-responsive gene; matches with published cDNA [GenBank AB091101, PMID: 11581250]"
+Cre03.g182400				GO:0008270	"zinc ion binding"				
+Cre03.g157150			Chloroplast				"g3208.t1;g3208.t1"		
+Cre03.g174476	GMM:31.3	cell.cycle		"GO:0019901;GO:0016592;GO:0016538;GO:0006355;GO:0000079"	"protein kinase binding;mediator complex;cyclin-dependent protein serine/threonine kinase regulator activity;regulation of transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	CYCC1	"Cre03.g174476.t1.1;g3600.t1"	CYCC1	"C-type cyclin, CDK8 kinase-activating protein"
+Cre03.g172850	GMM:13.1.5.3.1	"amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.OASTL"	Chloroplast			OASTL3	"g3564.t1;Cre03.g172850.t1.1;ASL3;OASTL3;Cre03.g172850.t1.1;g3564.t1;ASL3;OASTL3;g3564.t1;ASL3;Cre03.g172850.t1.1;OASTL3"	"OASTL3;OASTL3;OASTL3"	"O-acetylserine sulfhydrylase (EC 2.5.1.47); cysteine synthase; O-acetylserine (Thiol)-lyase; performs condensation of OAS with sulfide (or possibly with a thiosulfide carrier) to yield cysteine and acetate; Target-P predicts mitochondrial targeting; homology predicts plastid targeting; one of four paralogs;O-acetylserine sulfhydrylase (EC 2.5.1.47); cysteine synthase; O-acetylserine (Thiol)-lyase; performs condensation of OAS with sulfide (or possibly with a thiosulfide carrier) to yield cysteine and acetate; Target-P predicts mitochondrial targeting; homology predicts plastid targeting; one of four paralogs;O-acetylserine sulfhydrylase (EC 2.5.1.47); cysteine synthase; O-acetylserine (Thiol)-lyase; performs condensation of OAS with sulfide (or possibly with a thiosulfide carrier) to yield cysteine and acetate; Target-P predicts mitochondrial targeting; homology predicts plastid targeting; one of four paralogs"
+Cre03.g177950			"Secretory pathway"				"g3681.t1;g3681.t1;g3681.t1;g3681.t1;g3681.t1"		
+Cre03.g153300							"g3122.t1;g3122.t1;g3122.t1;g3122.t1"		
+Cre03.g144304							"Cre01.g057000.t1.1;g2879.t1"		
+Cre03.g201103			Mitochondrion			RAA7	"g4376.t1;Cre19.g752400.t1.1;g4376.t1;Cre19.g752400.t1.1"	"RAA7;RAA7"	"Necessary for trans-splicing of psaA mRNA; no similarity to known proteins; component psaA trans-splicing sub complex II;Necessary for trans-splicing of psaA mRNA; no similarity to known proteins; component psaA trans-splicing sub complex II"
+Cre03.g210625	"GMM:28.2;GMM:27.3.44"	"DNA.repair;RNA.regulation of transcription.chromatin remodeling factors"	Chloroplast	"GO:0008270;GO:0005524;GO:0005515"	"zinc ion binding;ATP binding;protein binding"		"Cre19.g756150.t1.1;g4463.t1;g4463.t1;Cre19.g756150.t1.1"		
+Cre03.g188001									
+Cre03.g160200	"GMM:26.7;GMM:13.2.2.2"	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH12	"PFH12;Cr-P4H-1;Cre03.g160200.t1.1;PHX7;P4H12;g3280.t2;g3280.t2;Cr-P4H-1;PFH12;P4H12;PHX7;Cre03.g160200.t1.1;P4H12;g3280.t2;Cre03.g160200.t1.1;PHX7;Cr-P4H-1;PFH12;PHX7;Cre03.g160200.t1.1;P4H12;PFH12;Cr-P4H-1;g3280.t2;PFH12;Cr-P4H-1;Cre03.g160200.t1.1;PHX7;P4H12;g3280.t2;Cr-P4H-1;PFH12;P4H12;Cre03.g160200.t1.1;PHX7;g3280.t2"	"PFH12;PFH12;PFH12;PFH12;PFH12;PFH12"	"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al.[PMID: 17220203] as v2 C_110025; contains C-terminal ShK domain;;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al.[PMID: 17220203] as v2 C_110025; contains C-terminal ShK domain;;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al.[PMID: 17220203] as v2 C_110025; contains C-terminal ShK domain;;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al.[PMID: 17220203] as v2 C_110025; contains C-terminal ShK domain;;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al.[PMID: 17220203] as v2 C_110025; contains C-terminal ShK domain;;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al.[PMID: 17220203] as v2 C_110025; contains C-terminal ShK domain;"
+Cre03.g170428							"g3509.t1;Cre03.g170428.t1.1"		
+Cre03.g196850	"GMM:33.99;GMM:29.2.2.3.4;GMM:27.2"	"development.unspecified;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins;RNA.transcription"		"GO:0006364;GO:0005730;GO:0005515"	"rRNA processing;nucleolus;protein binding"		"g4077.t1;Cre03.g196850.t1.1"		
+Cre03.g189000	"GMM:28.2;GMM:28.1;GMM:27.3.44"	"DNA.repair;DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors"	Chloroplast	"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"	RAD54A	"SRH8;g3914.t1;g3914.t1;SRH8;SRH8;g3914.t1;g3914.t1;SRH8;SRH8;g3914.t1"	"RAD54A;RAD54A;RAD54A;RAD54A;RAD54A"	"ChromDB CHR3416, a SWI2/SNF2-like protein in the RAD54/ATRX subclass; the yeast homologue RAD54 facilitates strand invasion by the RAD51 nucleoprotein filament;ChromDB CHR3416, a SWI2/SNF2-like protein in the RAD54/ATRX subclass; the yeast homologue RAD54 facilitates strand invasion by the RAD51 nucleoprotein filament;ChromDB CHR3416, a SWI2/SNF2-like protein in the RAD54/ATRX subclass; the yeast homologue RAD54 facilitates strand invasion by the RAD51 nucleoprotein filament;ChromDB CHR3416, a SWI2/SNF2-like protein in the RAD54/ATRX subclass; the yeast homologue RAD54 facilitates strand invasion by the RAD51 nucleoprotein filament;ChromDB CHR3416, a SWI2/SNF2-like protein in the RAD54/ATRX subclass; the yeast homologue RAD54 facilitates strand invasion by the RAD51 nucleoprotein filament"
+Cre03.g178300	GMM:27.1.1	RNA.processing.splicing					"PRP38;g3691.t1;Cre03.g178300.t1.1;PRP38-1;PRP38A;PRP38A;PRP38-1;g3691.t1;Cre03.g178300.t1.1;PRP38"		"Putative pre-mRNA splicing factor, PRP38 family; linked to almost identical PRP38-2;Putative pre-mRNA splicing factor, PRP38 family; linked to almost identical PRP38-2"
+Cre03.g182200			"Secretory pathway"				"g3776.t1;g3776.t1;g3776.t1;g3776.t1"		
+Cre03.g145407				GO:0046872	"metal ion binding"		"Cre01.g059100.t1.2;g2935.t1;Cre01.g059100.t1.1;g2935.t1;Cre01.g059100.t1.1;Cre01.g059100.t1.2;Cre01.g059100.t1.2;Cre01.g059100.t1.1;g2935.t1"		
+Cre03.g156500			Chloroplast				"g3195.t2;g3195.t2"		
+Cre03.g185300	"GMM:3.8.1;GMM:10.1.30.2"	"minor CHO metabolism.galactose.galactokinases;cell wall.precursor synthesis.sugar kinases.arabinose-1-kinase"		GO:0005524	"ATP binding"		"g3840.t1;Cre03.g185300.t1.1;GAK1;GALK1;g3840.t1;Cre03.g185300.t1.1;GAK1;GALK1"		"Galactokinase in the galacto- (EC:2.7.1.6), homoserine (EC:2.7.1.39), mevalonate (EC:2.7.1.36) and phosphomevalonate (EC:2.7.4.2) kinase (GHMP family);Galactokinase in the galacto- (EC:2.7.1.6), homoserine (EC:2.7.1.39), mevalonate (EC:2.7.1.36) and phosphomevalonate (EC:2.7.4.2) kinase (GHMP family)"
+Cre03.g208000	"GMM:28.99;GMM:28.1;GMM:27.3.99"	"DNA.unspecified;DNA.synthesis/chromatin structure;RNA.regulation of transcription.unclassified"	Chloroplast				g4148.t1		
+Cre03.g199871							"Cre19.g751900.t1.1;g4365.t1;Cre19.g751900.t1.2;Cre19.g751900.t1.1;Cre19.g751900.t1.2;g4365.t1"		
+Cre03.g169050				"GO:0007005;GO:0004842"	"mitochondrion organization;ubiquitin-protein transferase activity"		"Cre03.g169050.t1.1;g3480.t1;Cre03.g169050.t1.1;g3480.t1;g3480.t1;Cre03.g169050.t1.1"		
+Cre03.g195300							"Cre03.g195300.t1.1;g4044.t1;g4044.t1;Cre03.g195300.t1.1;Cre03.g195300.t1.1;g4044.t1"		
+Cre03.g190750	GMM:23.4.4	"nucleotide metabolism.phosphotransfer and pyrophosphatases.thymidylate kinase"	Mitochondrion				g3948.t1		
+Cre03.g198000	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004722"	"protein dephosphorylation;protein serine/threonine phosphatase activity"		"Cre03.g198000.t1.1;PPP15;g4101.t1;PPP15;Cre03.g198000.t1.1;g4101.t1;Cre03.g198000.t1.1;PPP15;g4101.t1"		
+Cre03.g209281	GMM:31.4	"cell.vesicle transport"		"GO:0016192;GO:0006886"	"vesicle-mediated transport;intracellular protein transport"		"g4451.t1;Cre19.g755650.t1.1"		
+Cre03.g201301			Chloroplast	GO:0055114	"oxidation-reduction process"		"Cre03.g201301.t1.1;g4298.t1;g4298.t1;Cre03.g201301.t1.1;g4298.t1;Cre03.g201301.t1.1"		
+Cre03.g171150			"Secretory pathway"						
+Cre03.g184400	GMM:23.3.3	"nucleotide metabolism.salvage.NUDIX hydrolases"		GO:0016787	"hydrolase activity"		"Cre03.g184400.t1.1;g3821.t1"		
+Cre03.g176250	GMM:34.1.1	"transport.p- and v-ATPases.H+-transporting two-sector ATPase"		"GO:0033179;GO:0015991;GO:0015078"	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVD1	"g3640.t1;Cre03.g176250.t1.1;ATPVD1"	ATPVD1	"Vacuolar H+ ATPase V0 sector, subunit D, similar to gi 12585473 sp Q9LX65 VATH_ARATH[12585473] from Arabidopsis"
+Cre03.g204350	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast			CLPR4	"Cre03.g204350.t1.1;g4228.t1;g4228.t1;Cre03.g204350.t1.1"	"CLPR4;CLPR4"	
+Cre03.g210513	GMM:17.7.1.5	"hormone metabolism.jasmonate.synthesis-degradation.12-oxophytodienoate reductase 3"	Chloroplast	"GO:0055114;GO:0016491;GO:0010181"	"oxidation-reduction process;oxidoreductase activity;FMN binding"	nfo3	"Cre19.g756100.t1.1;g4462.t1;Cre19.g756100.t1.2"		
+Cre03.g189450				GO:0016787	"hydrolase activity"		"g3923.t1;Cre03.g189450.t1.1"		
+Cre03.g159650	GMM:29.2.4	protein.synthesis.elongation				EFG6	"g3269.t1;Cre03.g159650.t1.1"	EFG6	"GTP-binding protein, similar to GP-1, elongation factor Tu"
+Cre03.g213649			"Secretory pathway"						
+Cre03.g149517			Mitochondrion						
+Cre03.g188950							"Cre03.g188950.t1.1;g3913.t1;SMM11;SMM11;Cre03.g188950.t1.1;g3913.t1"		
+Cre03.g180350	"GMM:31.3;GMM:29.4.1"	"cell.cycle;protein.postranslational modification.kinase"		"GO:0016538;GO:0007049"	"cyclin-dependent protein serine/threonine kinase regulator activity;cell cycle"	CKS1	"Cre03.g180350.t1.1;NSG16;g3738.t1"	CKS1	"Cyclin dependent kinase regulatory subunit. Identified by Abe et al. 24 [PMID: 15459796] as NSG16, a gene expressed during nitrogen-starved gametogenesis; ts-lethal mutant block at S/M (PMID 29743196)"
+Cre03.g177826			Chloroplast				g3678.t1		
+Cre03.g205000						IDA3	g4213.t1	IDA3	"ida3 mutation prevents assembly of IDA I1/f"
+Cre03.g202875			Mitochondrion				"Cre03.g202875.t1.1;g4262.t1"		
+Cre03.g152250							"g3098.t1;g3098.t1"		
+Cre03.g160550	GMM:34.12	transport.metal		"GO:0055085;GO:0016021;GO:0008324;GO:0006812"	"transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport"	MTP4	g3289.t1	MTP4	"Cation efflux transporter, group 4 CDF family; Mn2+ and Cd2+ transporter; closely linked to MTP2 and MTP3; Confers resistance to Mn and Cd when expressed in yeast; overexpression in Chlamydomonas confers resistance to Cd; suppresses Mn sensitivity of pmr1 yeast mutant;"
+Cre03.g161950							g3318.t1		
+Cre03.g158500	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast				"g3245.t1;ABC1K2;ABC1K2;g3245.t1"		
+Cre03.g160000	GMM:27.3.55	"RNA.regulation of transcription.HDA"	Mitochondrion			HDA3	"HDA3;g3276.t2;Cre03.g160000.t1.1;g3276.t2;HDA3;Cre03.g160000.t1.1;Cre03.g160000.t1.1;g3276.t2;HDA3;Cre03.g160000.t1.1;HDA3;g3276.t2"	"HDA3;HDA3;HDA3;HDA3"	"Histone deacetylase, class II RPD3 type, ChromDB HDA3402;Histone deacetylase, class II RPD3 type, ChromDB HDA3402;Histone deacetylase, class II RPD3 type, ChromDB HDA3402;Histone deacetylase, class II RPD3 type, ChromDB HDA3402"
+Cre03.g188400	GMM:20.1.1	"stress.biotic.respiratory burst"		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	RBO2	"RBOL2;g3902.t1;g3902.t1;RBOL2;RBOL2;g3902.t1;g3902.t1;RBOL2;RBOL2;g3902.t1;RBOL2;g3902.t1"	"RBO2;RBO2;RBO2;RBO2;RBO2;RBO2"	"putative NADPH oxidase homolog, related to plant respiratory burst oxidase; ferric reductase like transmembrane component; possible NADPH oxidase activity; possible cytochrome b-245 heavy chain;putative NADPH oxidase homolog, related to plant respiratory burst oxidase; ferric reductase like transmembrane component; possible NADPH oxidase activity; possible cytochrome b-245 heavy chain;putative NADPH oxidase homolog, related to plant respiratory burst oxidase; ferric reductase like transmembrane component; possible NADPH oxidase activity; possible cytochrome b-245 heavy chain;putative NADPH oxidase homolog, related to plant respiratory burst oxidase; ferric reductase like transmembrane component; possible NADPH oxidase activity; possible cytochrome b-245 heavy chain;putative NADPH oxidase homolog, related to plant respiratory burst oxidase; ferric reductase like transmembrane component; possible NADPH oxidase activity; possible cytochrome b-245 heavy chain;putative NADPH oxidase homolog, related to plant respiratory burst oxidase; ferric reductase like transmembrane component; possible NADPH oxidase activity; possible cytochrome b-245 heavy chain"
+Cre03.g168200	GMM:31.6.1.6.2	"cell.motility.eukaryotes.central pair.C1b"				FAP69	"C1b-135;g3459.t1;Cre03.g168200.t1.1;Cre03.g168200.t1.1;g3459.t1;C1b-135"	"FAP69;FAP69"	"C1b-135 component of C1b projection on central pair;C1b-135 component of C1b projection on central pair"
+Cre03.g176100							"g3637.t1;Cre03.g176100.t1.1"		
+Cre03.g160650							"g3291.t1;Cre03.g160650.t1.1;Cre03.g160650.t1.1;g3291.t1"		
+Cre03.g188700	GMM:31.1	cell.organisation	Chloroplast			PLAP6	"Cre03.g188700.t1.1;PLP6;g3908.t1"	PLAP6	"PAP-fibrillin family protein"
+Cre03.g184800	GMM:23.2	"nucleotide metabolism.degradation"	"Secretory pathway"	GO:0016787	"hydrolase activity"		g3830.t1		
+Cre03.g191900	"GMM:29.5.11.5;GMM:29.5.11"	"protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin"	"Secretory pathway"				"g3972.t1;Cre03.g191900.t1.1"		
+Cre03.g146707				GO:0008242	"omega peptidase activity"		"Cre01.g062250.t1.2;g3000.t1;Cre01.g062250.t1.1"		
+Cre03.g197650			Chloroplast				"g4094.t1;Cre03.g197650.t1.1"		
+Cre03.g152950	GMM:29.1.30	"protein.aa activation.pseudouridylate synthase"		"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS12	"g3114.t1;PUS12"		
+Cre03.g179500	"GMM:26.7;GMM:13.2.2.2"	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH13	"Cre03.g179500.t1.1;PFH13;PHX8;P4H13;g3715.t1"		"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate; Target of CRR1"
+Cre03.g208385									
+Cre03.g150300	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"				CAM8	"CAM8;g3057.t1;Cre03.g150300.t1.1"		"Similar to Dictyostelium protein localised to the contractile vacuole"
+Cre03.g164550	GMM:27.3	"RNA.regulation of transcription"					"FRA2;g3373.t1;Cre03.g164550.t1.1"		"BolA-like domain protein, with homology to Saccharomyces Fra2p"
+Cre03.g144727			Mitochondrion	"GO:0016021;GO:0004252"	"integral component of membrane;serine-type endopeptidase activity"	RBL2	"g2900.t1;Cre01.g057600.t1.2;Cre01.g057600.t1.1;RBL2;g2900.t1;Cre01.g057600.t1.2;RBL2;Cre01.g057600.t1.1"		"similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis; linked to RBL1;similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis; linked to RBL1"
+Cre03.g161150			"Secretory pathway"			PHC63			
+Cre03.g193500	GMM:11.9.2.1	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase"		GO:0006629	"lipid metabolic process"	CGLD15	"g4003.t1;CGLD15;Cre03.g193500.t1.1;PML1;TGL8;TGL8;PML1;g4003.t1;CGLD15;Cre03.g193500.t1.1"	"PGD1;PGD1"	"Monogalactosyldiacylglycerol(MGDG)-specific lipase, plays essential roles in maintaining thylakoid membrane composition and structure during stress; Plastid Galactolipid Degradation 1; Conserved in the Green Lineage and Diatoms;Monogalactosyldiacylglycerol(MGDG)-specific lipase, plays essential roles in maintaining thylakoid membrane composition and structure during stress; Plastid Galactolipid Degradation 1; Conserved in the Green Lineage and Diatoms"
+Cre03.g197200			Mitochondrion				g4084.t1		
+Cre03.g152500	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion	GO:0005515	"protein binding"		g3105.t1		
+Cre03.g180900			Chloroplast				"g3749.t2;g3749.t2"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g153850			"Secretory pathway"				"g3134.t1;Cre03.g153850.t1.1"		
+Cre03.g201550	GMM:29.5.7	protein.degradation.metalloprotease				MMP20	"Cre03.g201550.t1.1;g4291.t1;MMP20;MMP20;g4291.t1;Cre03.g201550.t1.1"	"MMP20;MMP20"	"Matrix metalloproteinase belonging to the M11 peptidase family;Matrix metalloproteinase belonging to the M11 peptidase family"
+Cre03.g149851			Chloroplast				"Cre03.g149850.t1.2;g3048.t1;g3048.t1;Cre03.g149850.t1.2"		
+Cre03.g208556	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion						
+Cre03.g162050	GMM:27.3.55	"RNA.regulation of transcription.HDA"	Mitochondrion			HDA4	"HDA4;g3321.t1"	HDA4	"Histone deacetylase. ChromDB HDA3405"
+Cre03.g205697	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX		GO:0005515	"protein binding"	FAP350	"Cre19.g754250.t1.1;g4418.t1;Cre19.g754250.t1.1;g4418.t1"	"FAP350;FAP350"	
+Cre03.g186900							g3872.t1		
+Cre03.g180600				"GO:0016787;GO:0009166"	"hydrolase activity;nucleotide catabolic process"	FPN3	"FPN3;g3743.t1"	FPN3	"Ecto-5'-nucleotidase precursor; 2,3-cyclic-nucleotide 2-phosphodiesterase; similar to nearby FPN4"
+Cre03.g186350			Mitochondrion				"g3861.t1;Cre03.g186350.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g206257	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre03.g174850	GMM:11.6	"lipid metabolism.lipid transfer proteins etc"	"Secretory pathway"	GO:0008289	"lipid binding"	CGL111	"g3611.t1;Cre03.g174850.t1.1;g3611.t1;Cre03.g174850.t1.1;Cre03.g174850.t1.1;g3611.t1;g3611.t1;Cre03.g174850.t1.1"	"CGL111;CGL111;CGL111;CGL111"	"Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre03.g196150							"uL5m;g4063.t1;Cre03.g196150.t1.1;uL5m;Cre03.g196150.t1.1;g4063.t1"	"MRPL5;MRPL5"	
+Cre03.g190250	GMM:29.5.1	protein.degradation.subtilases		"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SUB6	"SUB6;Cre03.g190250.t1.1;g3939.t1;SUB6;Cre03.g190250.t1.1;g3939.t1"		
+Cre03.g181150	"GMM:31.6.1.5.2;GMM:31.1"	"cell.motility.eukaryotes.radial spoke.stalk;cell.organisation"		"GO:0007017;GO:0005875"	"microtubule-based process;microtubule associated complex"	FLA14	"g3754.t1;ROC106;FLA14;ODA-LC8;LC8;RSP22;DLL1;DLL1;RSP22;ODA-LC8;LC8;FLA14;ROC106;g3754.t1;RSP22;DLL1;g3754.t1;FLA14;ROC106;ODA-LC8;LC8"	"LC8;LC8;LC8"	"LC8 component of outer arm dynein, inner arm I1/f and RSP22 of radial spokes; The mutation in CC-1331 (fla14) is in this gene but is not allelic to that in CC-1028 (the real pf5, which remains unidentified), in contrast to previous reports; Matsuo et al.'s (2008) roc106 (rhythm of chloroplast 106) circadian bioluminescence rhythm mutant locus maps here; Found in proteome of basal body as FLA14;LC8 component of outer arm dynein, inner arm I1/f and RSP22 of radial spokes; The mutation in CC-1331 (fla14) is in this gene but is not allelic to that in CC-1028 (the real pf5, which remains unidentified), in contrast to previous reports; Matsuo et al.'s (2008) roc106 (rhythm of chloroplast 106) circadian bioluminescence rhythm mutant locus maps here; Found in proteome of basal body as FLA14;LC8 component of outer arm dynein, inner arm I1/f and RSP22 of radial spokes; The mutation in CC-1331 (fla14) is in this gene but is not allelic to that in CC-1028 (the real pf5, which remains unidentified), in contrast to previous reports; Matsuo et al.'s (2008) roc106 (rhythm of chloroplast 106) circadian bioluminescence rhythm mutant locus maps here; Found in proteome of basal body as FLA14"
+Cre03.g183200	GMM:31.6.1.6.2	"cell.motility.eukaryotes.central pair.C1b"				CPC1	"Cre03.g183200.t1.1;g3797.t1;CPC1;g3797.t1;CPC1;Cre03.g183200.t1.1;g3797.t1;CPC1;Cre03.g183200.t1.1"	"CPC1;CPC1;CPC1"	"Mutations at CPC1 disrupt assembly of a central pair microtubule-associated complex and alter flagellar beat frequency in Chlamydomonas [PMID: 15292403]. Identified in the flagellar and basal body proteome as FBB7 [PMID: 15137946]; upregulated by deflagellation; null-allele mutant was isolated (PMID 29743196);Mutations at CPC1 disrupt assembly of a central pair microtubule-associated complex and alter flagellar beat frequency in Chlamydomonas [PMID: 15292403]. Identified in the flagellar and basal body proteome as FBB7 [PMID: 15137946]; upregulated by deflagellation; null-allele mutant was isolated (PMID 29743196);Mutations at CPC1 disrupt assembly of a central pair microtubule-associated complex and alter flagellar beat frequency in Chlamydomonas [PMID: 15292403]. Identified in the flagellar and basal body proteome as FBB7 [PMID: 15137946]; upregulated by deflagellation; null-allele mutant was isolated (PMID 29743196)"
+Cre03.g144607			Chloroplast				"Cre60.g792100.t1.2;Cre60.g792100.t1.1;g2894.t1"		
+Cre03.g167351			Chloroplast				"g3435.t1;Cre03.g167350.t1.2"		
+Cre03.g146327			"Secretory pathway"						
+Cre03.g190850						ECH1	"Cre03.g190850.t1.1;ECH1;g3950.t1;g3950.t1;ECH1;Cre03.g190850.t1.1;g3950.t1;Cre03.g190850.t1.1;ECH1;g3950.t1;Cre03.g190850.t1.1;ECH1"	"ECH1;ECH1;ECH1;ECH1"	"EnoylCoA hydratase/isomerase; most similar to animal isoforms, probably mitochondrial. Identified by comparative genomics as being present only in organisms having motile (MOT) cilia;;EnoylCoA hydratase/isomerase; most similar to animal isoforms, probably mitochondrial. Identified by comparative genomics as being present only in organisms having motile (MOT) cilia;;EnoylCoA hydratase/isomerase; most similar to animal isoforms, probably mitochondrial. Identified by comparative genomics as being present only in organisms having motile (MOT) cilia;;EnoylCoA hydratase/isomerase; most similar to animal isoforms, probably mitochondrial. Identified by comparative genomics as being present only in organisms having motile (MOT) cilia;"
+Cre03.g167101			Mitochondrion				"g3430.t1;Cre03.g167100.t1.3"		
+Cre03.g143947			Chloroplast				"Cre01.g056200.t1.1;g2861.t1"		
+Cre03.g198800	GMM:27.3.26	"RNA.regulation of transcription.MYB-related transcription factor family"					"Cre03.g198800.t1.1;g4354.t1"		
+Cre03.g151650			Chloroplast				"SMM7;g3086.t1;g3086.t1;SMM7"		
+Cre03.g154651							"Cre03.g154650.t1.3;g3151.t1"		
+Cre03.g198500							g4117.t1		
+Cre03.g207700	GMM:16.1.2.9	"secondary metabolism.isoprenoids.mevalonate pathway.farnesyl pyrophosphate synthetase"		GO:0008299	"isoprenoid biosynthetic process"	FPS1	"FPPS;FPPS1;g4155.t1;PPS1;FPS1;FPPS;FPPS1;g4155.t1;PPS1;FPS1;g4155.t1;PPS1;FPS1;FPPS;FPPS1"	"FPS1;FPS1;FPS1"	"putative farnesyl pyrophosphate synthase (FPP synthetase) (FPS) (Farnesyl diphosphate synthetase);putative farnesyl pyrophosphate synthase (FPP synthetase) (FPS) (Farnesyl diphosphate synthetase);putative farnesyl pyrophosphate synthase (FPP synthetase) (FPS) (Farnesyl diphosphate synthetase)"
+Cre03.g191400			"Secretory pathway"				"g3961.t1;Cre03.g191400.t1.1"		
+Cre03.g187600							"g3886.t1;Cre03.g187600.t1.1"		
+Cre03.g144484	"GMM:30.3;GMM:3.3;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre01.g057350.t1.1;g2888.t1;g2888.t1;Cre01.g057350.t1.1"	"CDPK10;CDPK10"	"Identified as CrCDPK10 in [PMID: 23936117];Identified as CrCDPK10 in [PMID: 23936117]"
+Cre03.g144544			Chloroplast				g2891.t1		
+Cre03.g149150			Chloroplast				"Cre03.g149150.t1.1;g3033.t1"		
+Cre03.g207650	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0046872;GO:0030001"	"metal ion binding;metal ion transport"		"Cre03.g207650.t1.1;g4156.t1;Cre03.g207650.t1.1;g4156.t1;g4156.t1;Cre03.g207650.t1.1"		"Contains a N-terminal MerT-like domain and a C-terminal HMA domain;Contains a N-terminal MerT-like domain and a C-terminal HMA domain;Contains a N-terminal MerT-like domain and a C-terminal HMA domain"
+Cre03.g167756			"Secretory pathway"						
+Cre03.g157000	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG1	"ELG1;g3205.t1;ELG1;g3205.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre03.g179600							"Cre03.g179600.t1.1;g3717.t1"		
+Cre03.g192750			Chloroplast				g3988.t1		
+Cre03.g198863				"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"				
+Cre03.g162800	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	"Secretory pathway"			LCI1	"Cre03.g162800.t1.1;g3337.t1"	LCI1	"Low-CO2-inducible gene encoding 21 kDa transmembrane protein; SOSUI prediction: signal peptide in N-terminal end and 3 transmembrane helices. Regulated by CO2 through MYB-transcription factor LCR1 [PMID: 15155888] and CCM1 [PMID: 15235119]"
+Cre03.g203300			Mitochondrion				"g4253.t1;g4253.t1;g4253.t1;g4253.t1;g4253.t1"		
+Cre03.g167644			Chloroplast						
+Cre03.g212305						FAP181	"g4479.t1;Cre19.g756850.t1.1;FAP181"	FAP181	"Flagellar Associated coiled-coil Protein, found in the flagellar proteome [PMID: 15998802]"
+Cre03.g174250				GO:0008171	"O-methyltransferase activity"	FAP111	"Cre03.g174250.t1.1;g3595.t1"	FAP111	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome"
+Cre03.g164850							"g3379.t1;Cre03.g164850.t1.1"		
+Cre03.g155001	GMM:2.1.2.4	"major CHO metabolism.synthesis.starch.debranching"	Chloroplast	"GO:0043169;GO:0005975;GO:0004553;GO:0003824"	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	ISA1	"g3160.t1;STA7;g3160.t1;STA7;g3160.t1;STA7;STA7;g3160.t1"	"ISA1;ISA1;ISA1;ISA1"	"Misplaced, loosely branched chains are trimmed by this DBE from a maturing structure to allow polysaccharide crystallization/ Posewitz et al. 24 [PMID: 1526933] showed that the STA7 locus corresponds to this gene. Mutants at this locus are starch-deficient;;Misplaced, loosely branched chains are trimmed by this DBE from a maturing structure to allow polysaccharide crystallization/ Posewitz et al. 24 [PMID: 1526933] showed that the STA7 locus corresponds to this gene. Mutants at this locus are starch-deficient;;Misplaced, loosely branched chains are trimmed by this DBE from a maturing structure to allow polysaccharide crystallization/ Posewitz et al. 24 [PMID: 1526933] showed that the STA7 locus corresponds to this gene. Mutants at this locus are starch-deficient;;Misplaced, loosely branched chains are trimmed by this DBE from a maturing structure to allow polysaccharide crystallization/ Posewitz et al. 24 [PMID: 1526933] showed that the STA7 locus corresponds to this gene. Mutants at this locus are starch-deficient;"
+Cre03.g166300							"g3413.t1;Cre03.g166300.t1.1"		
+Cre03.g201439			Chloroplast				"Cre19.g752500.t1.1;Cre19.g752500.t1.2;g4379.t1"		
+Cre03.g179100	GMM:27.1	RNA.processing	Mitochondrion	"GO:0006511;GO:0005515"	"ubiquitin-dependent protein catabolic process;protein binding"	UFD1b	"Cre03.g179100.t1.1;g3707.t1;UFD1b"		"contains UBX domain"
+Cre03.g175451									
+Cre03.g205550			"Secretory pathway"				"g4201.t1;g4201.t1;g4201.t1"		
+Cre03.g165100			Chloroplast	"GO:0015979;GO:0009522"	"photosynthesis;photosystem I"	PSAI	"g3384.t1;Cre03.g165100.t1.1;g3384.t1;Cre03.g165100.t1.1"	"PSAI1;PSAI1"	"Chloroplast precursor;Chloroplast precursor"
+Cre03.g189901			Mitochondrion				g3932.t1		
+Cre03.g200900							"g4307.t1;g4307.t1;g4307.t1"		
+Cre03.g177350	GMM:33.99	development.unspecified	Chloroplast				"g3666.t1;g3666.t1;g3666.t1"		
+Cre03.g146627	GMM:12.2.2	"N-metabolism.ammonia metabolism.glutamine synthetase"		"GO:0006807;GO:0004356"	"nitrogen compound metabolic process;glutamate-ammonia ligase activity"		"g2996.t1;Cre01.g062050.t1.1;Cre01.g062050.t1.1;g2996.t1;Cre01.g062050.t1.1;g2996.t1;Cre01.g062050.t1.1;g2996.t1"		
+Cre03.g199250	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG51	"g4343.t1;CYG51;CYG51;g4343.t1;g4343.t1;CYG51"		"Protein domain similar to guanylate cyclase 1, soluble, beta 2 [Homo sapiens];Protein domain similar to guanylate cyclase 1, soluble, beta 2 [Homo sapiens];Protein domain similar to guanylate cyclase 1, soluble, beta 2 [Homo sapiens]"
+Cre03.g168050	"GMM:27.3.52;GMM:27.3.42"	"RNA.regulation of transcription.global transcription factor group;RNA.regulation of transcription.bromodomain proteins"		GO:0005515	"protein binding"		"GTF2;Cre03.g168050.t1.1;g3456.t1"		"Global transcription factor with bromodomain. ChromoDB GTE344"
+Cre03.g178850			Chloroplast				"Cre03.g178850.t1.1;g3702.t1"		
+Cre03.g153700						FAP347	g3131.t1	FAP347	
+Cre03.g201163			Mitochondrion						
+Cre03.g207050	GMM:29.2.1.2.2.29	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L29"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL29	"Cre03.g207050.t1.1;g4169.t1"	RPL29	"Cytosolic 60S large ribosomal subunit protein L29"
+Cre03.g165350			"Secretory pathway"				g3392.t1		
+Cre03.g145907	"GMM:29.2.2.3.3;GMM:27.3.67"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases;RNA.regulation of transcription.putative transcription regulator"		"GO:0032259;GO:0008168;GO:0001510"	"methylation;methyltransferase activity;RNA methylation"		"Cre01.g060300.t1.1;Cre01.g060300.t1.2;g2960.t1"		
+Cre03.g187150							"g3877.t1;g3877.t1;g3877.t1"		
+Cre03.g184950			"Secretory pathway"			MAW3	"MAW3;g3833.t1"		"Contains predicted C-terminal GPI-anchor signal"
+Cre03.g163700							"g3356.t1;Cre03.g163700.t1.1"	POB26	"Found in basal body proteome"
+Cre03.g145247	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF11	"g2926.t1;Cre01.g058700.t1.1;Cre01.g058700.t1.2;TEF11;TEF11;Cre01.g058700.t1.2;g2926.t1;Cre01.g058700.t1.1;TEF11;Cre01.g058700.t1.2;g2926.t1;Cre01.g058700.t1.1"	"TEF11;TEF11;TEF11"	"S-isoprenylcysteine O-methyltransferase related, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];S-isoprenylcysteine O-methyltransferase related, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];S-isoprenylcysteine O-methyltransferase related, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]"
+Cre03.g197400						SEL1	"SEL1;Cre03.g197400.t1.1;g4088.t1"	SLP1	"extracellular; contains Sel1-like repeats which are tetratricopeptide repeat sequences originally identified in a Caenorhabditis elegans receptor molecule which is a key negative regulator of the Notch pathway; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre03.g166000			"Secretory pathway"				g3407.t1		
+Cre03.g157526									
+Cre03.g195950			Mitochondrion				"g4059.t1;Cre03.g195950.t1.1;g4059.t1;Cre03.g195950.t1.1"		
+Cre03.g161750			"Secretory pathway"				g3314.t1		"contains DUF2296 domain"
+Cre03.g177800			"Secretory pathway"				g3677.t1		
+Cre03.g154350	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"	Mitochondrion	"GO:0022900;GO:0016021"	"electron transport chain;integral component of membrane"	COX2A	"g3145.t1;Cre03.g154350.t1.1;COX2A"	COX2A	"In C. reinhardtii, subunit II is nuclear encoded with the N-terminal and C-terminal parts of the protein encoded by separate genes - N-terminus by COX2A and C-terminus by COX2B; respiratory complex IV; terminal oxidase of respiratory electron transport chain; heme-protein complex"
+Cre03.g206952			Mitochondrion						
+Cre03.g206200			"Secretory pathway"				"g4187.t2;g4187.t2;g4187.t2;g4187.t2"		
+Cre03.g162650	GMM:25.5	"C1-metabolism.methylenetetrahydrofolate dehydrogenase and methenyltetrahydrofolate cyclohydrolase"	Mitochondrion	"GO:0055114;GO:0009396;GO:0004488;GO:0003824"	"oxidation-reduction process;folic acid-containing compound biosynthetic process;methylenetetrahydrofolate dehydrogenase (NADP+) activity;catalytic activity"		"g3334.t1;Cre03.g162650.t1.1"		
+Cre03.g202897	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				ubc25	"Cre19.g753050.t1.1;g4392.t1;Cre19.g753050.t1.2;Cre19.g753050.t1.2;g4392.t1;Cre19.g753050.t1.1"	"UBC34;UBC34"	"E2 ubiquitin conjugating enzyme, subclass XIV;E2 ubiquitin conjugating enzyme, subclass XIV"
+Cre03.g202202			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g4277.t2;Cre03.g202202.t1.1"		
+Cre03.g145627									
+Cre03.g201851			Chloroplast				g4286.t1		
+Cre03.g203233							"Cre19.g753200.t1.2;Cre19.g753200.t1.1;g4395.t1"		
+Cre03.g185250	GMM:2.1.2.2	"major CHO metabolism.synthesis.starch.starch synthase"	Chloroplast			SSS2	"SSII;Cre03.g185250.t1.1;g3839.t1"	SSS2	"ADP-glucose alpha-1,4 glucane alpha-4-glucanotransferase"
+Cre03.g153400			Mitochondrion				"g3125.t1;Cre03.g153400.t1.1;Cre03.g153400.t1.1;g3125.t1;Cre03.g153400.t1.1;g3125.t1;g3125.t1;Cre03.g153400.t1.1;Cre03.g153400.t1.1;g3125.t1;g3125.t1;Cre03.g153400.t1.1;Cre03.g153400.t1.1;g3125.t1;g3125.t1;Cre03.g153400.t1.1"		
+Cre03.g178075			Chloroplast						
+Cre03.g208553			Mitochondrion						
+Cre03.g144787	GMM:21.1	redox.thioredoxin		"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"		"Cre01.g057750.t1.1;TRL12;Cre01.g057750.t1.2;g2903.t1"		
+Cre03.g197450							"g4089.t1;g4089.t1;g4089.t1;g4089.t1;g4089.t1;g4089.t1"		
+Cre03.g175750							"Cre03.g175750.t1.1;g3630.t1;Cre03.g175750.t1.1;g3630.t1;Cre03.g175750.t1.1;g3630.t1;g3630.t1;Cre03.g175750.t1.1;Cre03.g175750.t1.1;g3630.t1"		
+Cre03.g185900							"Cre03.g185900.t1.1;g3852.t1"		
+Cre03.g163400							g3350.t1		
+Cre03.g184050			Chloroplast	"GO:0030677;GO:0008033;GO:0006379;GO:0006364;GO:0004540;GO:0003723;GO:0000172"	"ribonuclease P complex;tRNA processing;mRNA cleavage;rRNA processing;ribonuclease activity;RNA binding;ribonuclease MRP complex"		g3814.t1		
+Cre03.g163150							"Cre03.g163150.t1.1;g3343.t1;g3343.t1;Cre03.g163150.t1.1;Cre03.g163150.t1.1;g3343.t1"		
+Cre03.g213089			Mitochondrion				"Cre19.g757150.t1.1;g4486.t1;Cre19.g757150.t1.1;g4486.t1"		
+Cre03.g211633			Mitochondrion	GO:0046677	"response to antibiotic"				
+Cre03.g175650			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g3628.t1;g3628.t1;g3628.t1;g3628.t1;g3628.t1;g3628.t1;g3628.t1"		
+Cre03.g205200	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB21	"TNP12;g4209.t1;CSB21;Cre03.g205200.t1.1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre03.g165801			Chloroplast	GO:0005515	"protein binding"		g3402.t1		
+Cre03.g162500	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0008270	"zinc ion binding"		g3331.t1		
+Cre03.g187250			"Secretory pathway"				"Cre03.g187250.t1.1;g3879.t1"		
+Cre03.g156150	"GMM:29.2.2.3.5;GMM:28.1"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure"		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"	HEL13	"HEL13;g3187.t1"		
+Cre03.g156600			Chloroplast				"g3197.t1;GluTRBP;Cre03.g156600.t1.1"	GTRBP1	"Forms a ternary complex with FLU and GluTR [PMID: 26794057]; Interacts with petF"
+Cre03.g150783									
+Cre03.g181900			Chloroplast				"g3770.t1;Cre03.g181900.t1.1"		
+Cre03.g143887	GMM:29.1.19	"protein.aa activation.arginine-tRNA ligase"		"GO:0006420;GO:0005737;GO:0005524;GO:0004814;GO:0000166"	"arginyl-tRNA aminoacylation;cytoplasm;ATP binding;arginine-tRNA ligase activity;nucleotide binding"		"g2858.t1;Cre01.g056050.t1.1;Cre01.g056050.t1.2;Cre01.g056050.t1.1;g2858.t1;Cre01.g056050.t1.2;g2858.t1;Cre01.g056050.t1.1;Cre01.g056050.t1.2;g2858.t1;Cre01.g056050.t1.1;Cre01.g056050.t1.2;Cre01.g056050.t1.1;g2858.t1;Cre01.g056050.t1.2;g2858.t1;Cre01.g056050.t1.1;Cre01.g056050.t1.2;g2858.t1;Cre01.g056050.t1.1;Cre01.g056050.t1.2;Cre01.g056050.t1.2;Cre01.g056050.t1.1;g2858.t1"	"TSR1;TSR1;TSR1;TSR1;TSR1;TSR1;TSR1;TSR1"	
+Cre03.g196950							"Cre03.g196950.t1.1;g4079.t1;g4079.t1;Cre03.g196950.t1.1;g4079.t1;Cre03.g196950.t1.1"		
+Cre03.g193400	"GMM:27.3.85;GMM:27.2"	"RNA.regulation of transcription.sigma like plant;RNA.transcription"		"GO:0016987;GO:0006355;GO:0006352;GO:0003700;GO:0003677"	"sigma factor activity;regulation of transcription, DNA-templated;DNA-templated transcription, initiation;transcription factor activity, sequence-specific DNA binding;DNA binding"		"Cre03.g193400.t1.1;g4001.t1"		
+Cre03.g192501			Chloroplast				g3984.t1		
+Cre03.g166850	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion				g3424.t1		
+Cre03.g195850	"GMM:29.4;GMM:27.3.67"	"protein.postranslational modification;RNA.regulation of transcription.putative transcription regulator"	Chloroplast	"GO:0055114;GO:0033743;GO:0030091;GO:0016671;GO:0006979"	"oxidation-reduction process;peptide-methionine (R)-S-oxide reductase activity;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;response to oxidative stress"		"Cre03.g195850.t1.1;g4057.t1;Cre03.g195850.t1.1;g4057.t1"	"MSRB4;MSRB4"	"Similar to Selenoprotein R, but not a selenoprotein;Similar to Selenoprotein R, but not a selenoprotein"
+Cre03.g183650	GMM:11.9.3.3	"lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase"	"Secretory pathway"	"GO:0008889;GO:0008081;GO:0006629"	"glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process"	GDP4	"GDPD4;g3806.t1;GDP4;g3806.t1;GDP4;GDPD4"		
+Cre03.g174050	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Mitochondrion	"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP4	"g3590.t1;Cre03.g174050.t1.1;MRP4;MRP4;g3590.t1;Cre03.g174050.t1.1;Cre03.g174050.t1.1;g3590.t1;MRP4"		"putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683;putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683;putative ABC transporter, MRP subfamily, membrane protein PMID: 15710683"
+Cre03.g198450									
+Cre03.g201000			Chloroplast				"g4305.t1;g4305.t1"		
+Cre03.g170900							"g3521.t1;g3521.t1"		
+Cre03.g205450			"Secretory pathway"				"g4203.t1;g4203.t1"		
+Cre03.g162550	GMM:13.1.3.4	"amino acid metabolism.synthesis.aspartate family.methionine"		"GO:0009116;GO:0003824"	"nucleoside metabolic process;catalytic activity"		"MSN1;g3332.t1;MSN1;g3332.t1"		"5'-methylthioadenosine/S-adenosylhomocysteine (MTA/SAH) nucleosidase;5'-methylthioadenosine/S-adenosylhomocysteine (MTA/SAH) nucleosidase"
+Cre03.g165500							"Cre03.g165500.t1.1;g3396.t1"		
+Cre03.g164500	GMM:27.3	"RNA.regulation of transcription"	"Secretory pathway"				"Cre03.g164500.t1.1;g3372.t1"		
+Cre03.g158350			Mitochondrion				"g3241.t1;Cre03.g158350.t1.1"		
+Cre03.g180000			Chloroplast				"g3730.t1;Cre03.g180000.t1.1"		
+Cre03.g144144			Mitochondrion				"Cre01.g056600.t1.1;g2870.t1;Cre01.g056600.t1.1;g2870.t1;g2870.t1;Cre01.g056600.t1.1;g2870.t1;Cre01.g056600.t1.1;Cre01.g056600.t1.1;g2870.t1;Cre01.g056600.t1.1;g2870.t1;Cre01.g056600.t1.1;g2870.t1;Cre01.g056600.t1.1;g2870.t1;g2870.t1;Cre01.g056600.t1.1"		
+Cre03.g152100	"GMM:28.99;GMM:27.1.19"	"DNA.unspecified;RNA.processing.ribonucleases"		"GO:0004527;GO:0003676"	"exonuclease activity;nucleic acid binding"	XRN2	"XRN2;Cre03.g152100.t1.1;g3095.t1;Cre03.g152100.t1.1;XRN2;g3095.t1"	"XRN2;XRN2"	"Putative homologue of yeast 5'-3' exoribonucleases Xrn1p (cytoplasmic) and Rat1p (nuclear);Putative homologue of yeast 5'-3' exoribonucleases Xrn1p (cytoplasmic) and Rat1p (nuclear)"
+Cre03.g156650				"GO:0006468;GO:0005524;GO:0004674"	"protein phosphorylation;ATP binding;protein serine/threonine kinase activity"		g3198.t1		
+Cre03.g202500			Mitochondrion				"Cre03.g202500.t1.1;g4270.t1;Cre03.g202500.t1.1;g4270.t1;g4270.t1;Cre03.g202500.t1.1"		
+Cre03.g167450			Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"g3437.t1;g3437.t1"		
+Cre03.g210289							"Cre19.g756000.t1.1;g4460.t1;g4460.t1;Cre19.g756000.t1.1"		
+Cre03.g170550			Chloroplast				"POC4;g3512.t1;g3512.t1;POC4"	"POC4;POC4"	"Found in basal body proteome; Similar to centrin-interacting protein SFI1; Contains 5 SFI repeats, a conserved centrin-binding motif found in the yeast spindle pole body protein SFI1; The POC4 functional annotation was erroneously assigned to the adjacent gene locus, Cre03.g170600, in previous annotations, likely because the accession for this locus in UniProt database, A8IEQ2, is a fusion of both proteins;Found in basal body proteome; Similar to centrin-interacting protein SFI1; Contains 5 SFI repeats, a conserved centrin-binding motif found in the yeast spindle pole body protein SFI1; The POC4 functional annotation was erroneously assigned to the adjacent gene locus, Cre03.g170600, in previous annotations, likely because the accession for this locus in UniProt database, A8IEQ2, is a fusion of both proteins"
+Cre03.g206351			"Secretory pathway"				"g4185.t1;Cre03.g206300.t1.2"		
+Cre03.g178500	GMM:31.6.1.11	cell.motility.eukaryotes.other				RIB43	"g3696.t1;RIB43;RIB43a;Cre03.g178500.t1.1"	RIB43	"43 kDa filamentous microtubule inner protein (fMIP)"
+Cre03.g206750							"Cre03.g206750.t1.1;g4176.t1"		
+Cre03.g193000						HAD5	"HAD5;g3993.t1;HAD5;g3993.t1;HAD5;g3993.t1;HAD5;g3993.t1"		
+Cre03.g144264	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre01.g056900.t1.1;g2877.t1;g2877.t1;Cre01.g056900.t1.1;g2877.t1;Cre01.g056900.t1.1"		
+Cre03.g208161							"Cre19.g755250.t1.1;g4440.t1;Cre19.g755250.t1.1;g4440.t1"		
+Cre03.g195550	GMM:3.2.4	"minor CHO metabolism.trehalose.trehalase"					"Cre03.g195550.t1.1;g4052.t1;Cre03.g195550.t1.1;g4052.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g202600							"g4268.t1;Cre03.g202600.t1.1;Cre03.g202600.t1.1;g4268.t1;Cre03.g202600.t1.1;g4268.t1"		
+Cre03.g154150	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005096	"GTPase activator activity"		g3140.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre03.g207900	"GMM:31.3;GMM:31.2"	"cell.cycle;cell.division"	Mitochondrion	GO:0005634	nucleus	CYCA1	"g4151.t1;g4151.t1"	"CYCA1;CYCA1"	"Cyclin A homolog; A-type cyclin homolog. Probable major activator of CDKA1; null mutation shows delayed entry into cell division (PMID 29367304).;Cyclin A homolog; A-type cyclin homolog. Probable major activator of CDKA1; null mutation shows delayed entry into cell division (PMID 29367304)."
+Cre03.g207502	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Chloroplast	GO:0008270	"zinc ion binding"		g4160.t1		
+Cre03.g184550	GMM:1.1.1.3	"PS.lightreaction.photosystem II.biogenesis"	Chloroplast.Stroma.Thylakoid.Membrane			CPLD28	"g3824.t1;CPLD28;Cre03.g184550.t1.1;CPLD28;g3824.t1;Cre03.g184550.t1.1"	"LPA3;LPA3"	"Putative PSII assembly factor; Conserved in the Plant Lineage and Diatoms; article showing involvement in CP43 association to PSII has been retracted;Putative PSII assembly factor; Conserved in the Plant Lineage and Diatoms; article showing involvement in CP43 association to PSII has been retracted"
+Cre03.g194500				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4025.t1;g4025.t1"		
+Cre03.g189300	GMM:31.1	cell.organisation	Chloroplast			PLAP10	"PLP10;g3920.t1"	PLAP10	"PAP-fibrillin family protein"
+Cre03.g196651	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"				RAD10	"Cre03.g196650.t1.3;RAD10;g4073.t1;g4073.t1;RAD10;Cre03.g196650.t1.3"	"RAD10;RAD10"	"homolog of Rad1;homolog of Rad1"
+Cre03.g188850			Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre03.g188850.t1.1;g3911.t1"		
+Cre03.g176930							"Cre03.g176950.t1.3;g3657.t1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre03.g181450			"Secretory pathway"				"g3760.t1;TCTN1"	POB7	"Found in basal body proteome; Related to TCTN1 in humans"
+Cre03.g200351			Chloroplast				g4321.t1		
+Cre03.g193800	GMM:29.1.22	"protein.aa activation.asparagine-tRNA ligase"		"GO:0006418;GO:0005524;GO:0004812;GO:0000166"	"tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"	TSN1	"TSN1;g4011.t1;TSN1;g4011.t1"	"TSN1;TSN1"	
+Cre03.g158950	GMM:27.4	"RNA.RNA binding"	Chloroplast	GO:0003676	"nucleic acid binding"		g3254.t1		
+Cre03.g157250	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g3210.t1;g3210.t1;g3210.t1;g3210.t1;g3210.t1"		
+Cre03.g181050			"Secretory pathway"				"g3752.t1;g3752.t1;g3752.t1"		
+Cre03.g171700				GO:0080019	"fatty-acyl-CoA reductase (alcohol-forming) activity"		g3539.t1		
+Cre03.g145007			Mitochondrion				"g2914.t1;g2914.t1"		
+Cre03.g146427			Mitochondrion						
+Cre03.g202225									
+Cre03.g171200	GMM:23.2	"nucleotide metabolism.degradation"	"Secretory pathway"	GO:0016787	"hydrolase activity"		"g3528.t1;Cre03.g171200.t1.1"		
+Cre03.g169601	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB18	"CSB18;g3492.t1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre03.g181750			"Secretory pathway"				g3767.t2		
+Cre03.g186700							g3868.t1		
+Cre03.g208100	GMM:27.1.19	RNA.processing.ribonucleases	Mitochondrion			RNB1	"g4146.t1;RNB1;Rrp44"	RNB1	"RNase II, probably belongs to nucleo-cytosolic exosome complex; RNase B family protein, 3'-5' exoribonuclease, dis3-like, RNB, Rrp44, ribonuclease II"
+Cre03.g170500							"Cre03.g170500.t1.1;g3511.t1"		
+Cre03.g208945									
+Cre03.g212081			Mitochondrion				"Cre19.g756800.t1.1;g4477.t1;Cre19.g756800.t1.1;g4477.t1"		
+Cre03.g200767						CSR9	"g4373.t1;CSR9;Cre19.g752250.t1.1"		
+Cre03.g172950	"GMM:29.2.2.3.1;GMM:28.1"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;DNA.synthesis/chromatin structure"		"GO:0006396;GO:0003723"	"RNA processing;RNA binding"	PUS21	"g3566.t1;Cre03.g172950.t1.1;CBF5;PUS21;PUS1;g3566.t1;PUS1;Cre03.g172950.t1.1;CBF5;PUS21;Cre03.g172950.t1.1;PUS21;CBF5;g3566.t1;PUS1;PUS1;PUS21;CBF5;Cre03.g172950.t1.1;g3566.t1;PUS21;CBF5;PUS1;Cre03.g172950.t1.1;g3566.t1;Cre03.g172950.t1.1;PUS21;g3566.t1;PUS1;CBF5;PUS21;CBF5;g3566.t1;PUS1;Cre03.g172950.t1.1;CBF5;PUS21;Cre03.g172950.t1.1;PUS1;g3566.t1"		"Also known as Centromere/microtubule binding protein, Centromere binding factor 5; belongs to TruB family of tRNA pseudouridylate synthases; Homologue of AtNAP57 and yeast CBF5, pseudouridine synthases involved in rRNA biogenesis and localized in the nucleolus (TruB) [PMID: 11833778]; ts-lethal mutant was isolated (PMID 29743196);Also known as Centromere/microtubule binding protein, Centromere binding factor 5; belongs to TruB family of tRNA pseudouridylate synthases; Homologue of AtNAP57 and yeast CBF5, pseudouridine synthases involved in rRNA biogenesis and localized in the nucleolus (TruB) [PMID: 11833778]; ts-lethal mutant was isolated (PMID 29743196);Also known as Centromere/microtubule binding protein, Centromere binding factor 5; belongs to TruB family of tRNA pseudouridylate synthases; Homologue of AtNAP57 and yeast CBF5, pseudouridine synthases involved in rRNA biogenesis and localized in the nucleolus (TruB) [PMID: 11833778]; ts-lethal mutant was isolated (PMID 29743196);Also known as Centromere/microtubule binding protein, Centromere binding factor 5; belongs to TruB family of tRNA pseudouridylate synthases; Homologue of AtNAP57 and yeast CBF5, pseudouridine synthases involved in rRNA biogenesis and localized in the nucleolus (TruB) [PMID: 11833778]; ts-lethal mutant was isolated (PMID 29743196);Also known as Centromere/microtubule binding protein, Centromere binding factor 5; belongs to TruB family of tRNA pseudouridylate synthases; Homologue of AtNAP57 and yeast CBF5, pseudouridine synthases involved in rRNA biogenesis and localized in the nucleolus (TruB) [PMID: 11833778]; ts-lethal mutant was isolated (PMID 29743196);Also known as Centromere/microtubule binding protein, Centromere binding factor 5; belongs to TruB family of tRNA pseudouridylate synthases; Homologue of AtNAP57 and yeast CBF5, pseudouridine synthases involved in rRNA biogenesis and localized in the nucleolus (TruB) [PMID: 11833778]; ts-lethal mutant was isolated (PMID 29743196);Also known as Centromere/microtubule binding protein, Centromere binding factor 5; belongs to TruB family of tRNA pseudouridylate synthases; Homologue of AtNAP57 and yeast CBF5, pseudouridine synthases involved in rRNA biogenesis and localized in the nucleolus (TruB) [PMID: 11833778]; ts-lethal mutant was isolated (PMID 29743196);Also known as Centromere/microtubule binding protein, Centromere binding factor 5; belongs to TruB family of tRNA pseudouridylate synthases; Homologue of AtNAP57 and yeast CBF5, pseudouridine synthases involved in rRNA biogenesis and localized in the nucleolus (TruB) [PMID: 11833778]; ts-lethal mutant was isolated (PMID 29743196)"
+Cre03.g205921				"GO:0008408;GO:0006139;GO:0003676"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding"		"g4420.t1;Cre19.g754350.t1.1"		
+Cre03.g171424							g3533.t1		
+Cre03.g206600	GMM:13.1.4	"amino acid metabolism.synthesis.branched chain group"	Chloroplast	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	AAD1	"Cre03.g206600.t1.1;AAD1;g4179.t1"	AAD1	"acetohydroxyacid dehydratase (EC 4.2.1.9); ILVD; dihydroxy-acid dehydrase; probable plastid location, based on homology and on Target-P prediction"
+Cre03.g204577	GMM:29.9	protein.co-chaperones	Chloroplast			DNJ31	"g4407.t1;DNJ31;Cre19.g753750.t1.1;Cre19.g753750.t1.2"		"DnaJ-like protein, perhaps targeted to the chloroplast (contains N-terminal extension that is predicted by ChloroP to be chloroplast transit peptide); contains N-terminal J-domain (pfam00226); weak homology with Synechococcus Q2JXW1"
+Cre03.g155900							"g3180.t1;g3180.t1"		
+Cre03.g191200				"GO:0008173;GO:0008171;GO:0001510"	"RNA methyltransferase activity;O-methyltransferase activity;RNA methylation"	RME3	"RME3;Cre03.g191200.t1.1;g3957.t1;Cre03.g191200.t1.1;RME3;g3957.t1"		"Homolog of RNA methyltransferase HEN1 (HUA Enhancer 1) of Arabidopsis. HEN1 methylates miRNAs and siRNAs on the ribose (2?-O position) of the last nucleotide. Methylation of the 3?-end likely protects these small RNAs from 3?-end uridylation. The mouse;Homolog of RNA methyltransferase HEN1 (HUA Enhancer 1) of Arabidopsis. HEN1 methylates miRNAs and siRNAs on the ribose (2?-O position) of the last nucleotide. Methylation of the 3?-end likely protects these small RNAs from 3?-end uridylation. The mouse"
+Cre03.g190311									
+Cre03.g145807							"Cre01.g060050.t1.1;g2955.t1"		
+Cre03.g152900				GO:0016787	"hydrolase activity"	MPA5	"MPA5;g3113.t1;MPA5;g3113.t1;MPA5;g3113.t1"		
+Cre03.g143987	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0008270	"zinc ion binding"		"Cre01.g056300.t1.1;g2863.t1;Cre01.g056300.t1.2"		
+Cre03.g204750							"Cre03.g204750.t1.1;g4218.t1"		
+Cre03.g173200			Mitochondrion	"GO:0055114;GO:0016972"	"oxidation-reduction process;thiol oxidase activity"	ERV2	"TOX2;g3572.t1;ERV2;Cre03.g173200.t1.1"	ERV1B	"Sulfhydryl oxidase. Erv1/Alr family; possibly mitochondrial; also called Augmenter of liver regeneration (ALR) in mammals; Named after Essential for Respiration and Viability 1 protein in yeast"
+Cre03.g200500			Chloroplast				"g4317.t1;g4317.t1"		
+Cre03.g197300			"Secretory pathway"				"g4086.t1;g4086.t1;g4086.t1;g4086.t1"		
+Cre03.g200879			"Secretory pathway;Chloroplast"	GO:0008146	"sulfotransferase activity"	CSR10	"CSR10;Cre19.g752300.t1.1;g4374.t1"		
+Cre03.g182950	GMM:27.1.2	"RNA.processing.RNA helicase"		GO:0004386	"helicase activity"		"Cre03.g182950.t1.1;g3792.t1;g3792.t1;Cre03.g182950.t1.1"		
+Cre03.g165050	"GMM:34.1.2;GMM:34.1"	"transport.p- and v-ATPases.H+-exporting ATPase;transport.p- and v-ATPases"		"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"	PMA4	"g3383.t1;PMA4;Cre03.g165050.t1.1;Cre03.g165050.t1.1;g3383.t1;PMA4"	"PMA4;PMA4"	
+Cre03.g197550			"Secretory pathway"				"Cre03.g197550.t1.1;TMEM48;g4092.t1;Cre03.g197550.t1.1;TMEM48;g4092.t1;TMEM48;Cre03.g197550.t1.1;g4092.t1"	"NDC1;NDC1;NDC1"	"Nuclear division cycle protein 1;Nuclear division cycle protein 1;Nuclear division cycle protein 1"
+Cre03.g211969	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"	Chloroplast				"g4476.t1;Cre19.g756750.t1.1;Cre19.g756750.t1.1;g4476.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g149250	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Chloroplast	"GO:0019752;GO:0004451"	"carboxylic acid metabolic process;isocitrate lyase activity"	ICL2	"Cre03.g149250.t1.1;g3035.t1;ICL2;ICL2;Cre03.g149250.t1.1;g3035.t1"		"Isocitrate lyase/phosphorylmutase;Isocitrate lyase/phosphorylmutase"
+Cre03.g160450	"GMM:33.99;GMM:31.1"	"development.unspecified;cell.organisation"		"GO:0051013;GO:0008352;GO:0008017;GO:0005515"	"microtubule severing;katanin complex;microtubule binding;protein binding"	KAT2	"g3287.t1;PF15;KAT2;Cre03.g160450.t1.1;g3287.t1;PF15;KAT2;Cre03.g160450.t1.1"	"KATNB1;KATNB1"	"Microtubule-severing protein katanin, p80 subunit; non-motile pf15 mutant in this gene lacks central pair microtubules;Microtubule-severing protein katanin, p80 subunit; non-motile pf15 mutant in this gene lacks central pair microtubules"
+Cre03.g200207	GMM:27.1.2	"RNA.processing.RNA helicase"	Chloroplast				g4368.t1		
+Cre03.g190450	GMM:3.5	"minor CHO metabolism.others"	Mitochondrion				"g3943.t1;g3943.t1"		
+Cre03.g191750			Mitochondrion				"Cre03.g191750.t1.1;g3968.t1"		
+Cre03.g180250	GMM:3.4.3	"minor CHO metabolism.myo-inositol.InsP synthases"		"GO:0008654;GO:0006021;GO:0004512"	"phospholipid biosynthetic process;inositol biosynthetic process;inositol-3-phosphate synthase activity"	INO1	"Cre03.g180250.t1.1;g3736.t1;IPS1;IPS1;g3736.t1;Cre03.g180250.t1.1;Cre03.g180250.t1.1;g3736.t1;IPS1"	"INO1;INO1;INO1"	"inositol-3-phosphate synthase activity; null-allele mutant was isolated (PMID 29743196);inositol-3-phosphate synthase activity; null-allele mutant was isolated (PMID 29743196);inositol-3-phosphate synthase activity; null-allele mutant was isolated (PMID 29743196)"
+Cre03.g178200			Cytosol	GO:0005524	"ATP binding"	CCT10	"g3688.t1;CCT10"	CCT10	
+Cre03.g167250			Chloroplast				"Cre03.g167250.t1.1;g3433.t1;g3433.t1;Cre03.g167250.t1.1"		
+Cre03.g203500	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre03.g203500.t1.1;g4247.t1;Cre03.g203500.t1.1;g4247.t1"		
+Cre03.g145587			Chloroplast			CPLD1	"CPLD1;g2944.t1;Cre01.g059550.t1.1"	CPLD1	
+Cre03.g188350							"g3901.t1;Cre03.g188350.t1.1"		
+Cre03.g194450						CGL24	g4024.t1	CGL24	
+Cre03.g168900				"GO:0055114;GO:0050661;GO:0050660;GO:0004499"	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO12	"FMO12;g3477.t1;Cre03.g168900.t1.1"		"Putative 4-hydroxyacetophenone monooxygenase (HAPMO), flavin-dependent oxidoreductase"
+Cre03.g146527	"GMM:13.1.2.2.1;GMM:13.1.2.2"	"amino acid metabolism.synthesis.glutamate family.proline.delta 1-pyrroline-5-carboxylate synthetase;amino acid metabolism.synthesis.glutamate family.proline"	Chloroplast	"GO:0055114;GO:0016491;GO:0008152"	"oxidation-reduction process;oxidoreductase activity;metabolic process"	GSD1	"Cre01.g061800.t1.1;Cre01.g061800.t1.2;g2991.t1;GSD1;Cre01.g061800.t1.2;g2991.t1;GSD1;Cre01.g061800.t1.1;g2991.t1;GSD1;Cre01.g061800.t1.1;Cre01.g061800.t1.2;Cre01.g061800.t1.2;g2991.t1;GSD1;Cre01.g061800.t1.1"	"GSD1;GSD1;GSD1;GSD1"	"Glutamate-5-semialdehyde (GSA) dehydrogenase, phosphorylating (EC 1.2.1.41); glutamate-5-phosphate reductase; ? 1 -Pyrroline-5-carboxylate (P5C) synthetase; involved in proline biosynthesis (from glutamate); lacks glutamate kinase domain typically associated with this enzyme (delta 1-pyrroline-5-carboxylate synthetase) in plants; glutamate kinase is encoded by PROB1 and PROB2 in Chlamydomonas;Glutamate-5-semialdehyde (GSA) dehydrogenase, phosphorylating (EC 1.2.1.41); glutamate-5-phosphate reductase; ? 1 -Pyrroline-5-carboxylate (P5C) synthetase; involved in proline biosynthesis (from glutamate); lacks glutamate kinase domain typically associated with this enzyme (delta 1-pyrroline-5-carboxylate synthetase) in plants; glutamate kinase is encoded by PROB1 and PROB2 in Chlamydomonas;Glutamate-5-semialdehyde (GSA) dehydrogenase, phosphorylating (EC 1.2.1.41); glutamate-5-phosphate reductase; ? 1 -Pyrroline-5-carboxylate (P5C) synthetase; involved in proline biosynthesis (from glutamate); lacks glutamate kinase domain typically associated with this enzyme (delta 1-pyrroline-5-carboxylate synthetase) in plants; glutamate kinase is encoded by PROB1 and PROB2 in Chlamydomonas;Glutamate-5-semialdehyde (GSA) dehydrogenase, phosphorylating (EC 1.2.1.41); glutamate-5-phosphate reductase; ? 1 -Pyrroline-5-carboxylate (P5C) synthetase; involved in proline biosynthesis (from glutamate); lacks glutamate kinase domain typically associated with this enzyme (delta 1-pyrroline-5-carboxylate synthetase) in plants; glutamate kinase is encoded by PROB1 and PROB2 in Chlamydomonas"
+Cre03.g203009			Mitochondrion				"g4393.t1;Cre19.g753100.t1.1"		
+Cre03.g197100	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"					"g4082.t1;Cre03.g197100.t1.1"	LRL1	"an R2R3-MYB type transcription factor"
+Cre03.g185650				GO:0005515	"protein binding"	FAP251	"g3847.t1;CaM-IP4;Cre03.g185650.t1.1"	FAP251	"Flagellar Associated Protein; found in the flagellar proteome; identified in the flagellar basal body proteome [PMID: 15137946]; upregulated by deflagellation; associated with the CaM- and spoke-Associated CSC complex at the base of the radial spoke"
+Cre03.g207377			Chloroplast				"g4433.t1;Cre19.g754900.t2.1"		
+Cre03.g167051	GMM:18	"Co-factor and vitamine metabolism"		"GO:0009236;GO:0003824"	"cobalamin biosynthetic process;catalytic activity"		"g3429.t1;Cre03.g167051.t1.1"		
+Cre03.g191500							g3963.t1		
+Cre03.g160250			Mitochondrion				"g3282.t1;g3282.t1;g3282.t1"		
+Cre03.g162333	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g3327.t1;g3327.t1"		
+Cre03.g192000						SEC13L	"SEH1;Cre03.g192000.t1.1;g3974.t1;SEH1;Cre03.g192000.t1.1;g3974.t1"	"SEC13L;SEC13L"	"Hypothetical Conserved Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec13/31 sub-complex; also found associated with nuclear pore in other organisms.;Hypothetical Conserved Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec13/31 sub-complex; also found associated with nuclear pore in other organisms."
+Cre03.g144647							"g2896.t1;Cre60.g792200.t1.1"		
+Cre03.g187450	"GMM:7.2.4;GMM:1.3.10"	"OPP.non-reductive PP.ribose 5-phosphate isomerase;PS.calvin cycle.Rib5P Isomerase"	Chloroplast	"GO:0009052;GO:0004751"	"pentose-phosphate shunt, non-oxidative branch;ribose-5-phosphate isomerase activity"	RPI1	"g3883.t1;Cre03.g187450.t1.1;RPI1"	RPI1	"Calvin-Benson-Bassham cycle enzyme"
+Cre03.g174350			Chloroplast			PWR2	"PWR2;Cre03.g174350.t1.1;g3597.t1;PWR2;Cre03.g174350.t1.1;g3597.t1;g3597.t1;Cre03.g174350.t1.1;PWR2"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre03.g178014			Chloroplast				"g3683.t1;Cre03.g178014.t1.1"		
+Cre03.g204650	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion			NUOB4	"Cre03.g204650.t1.1;NUOP2;g4221.t1"	NUOB4	"Precursor of mitochondrial NADH:ubiquinone oxidoreductase (Complex I) 13 kDa subunit; gi 44888965 gb AAS48193; Ortholog to NDUFB4 in Homo sapiens and At2g31490 in Arabidopsis thaliana"
+Cre03.g200100	GMM:29.5	protein.degradation	Mitochondrion	GO:0005515	"protein binding"		"PUX10;g4325.t1"		
+Cre03.g186800	GMM:30.2.17	"signalling.receptor kinases.DUF 26"		GO:0015074	"DNA integration"		"g3870.t1;Cre03.g186800.t1.1"		
+Cre03.g206481	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0008270	"zinc ion binding"		"Cre19.g754550.t1.1;g4425.t1"		
+Cre03.g183100	GMM:29.3.2	protein.targeting.mitochondria				TIM22B	"Cre03.g183100.t1.1;g3795.t1"	TIM22B	"Similar to mitochondrial import inner membrane translocase TIM22, belongs to theTIM17/TIM22/TIM23 family. Four TIM22-related proteins are present in Arabidopsis, three in Chlamydomonas"
+Cre03.g158800	GMM:25	C1-metabolism		"GO:0046294;GO:0018738"	"formaldehyde catabolic process;S-formylglutathione hydrolase activity"		g3251.t3		
+Cre03.g204801				"GO:0043240;GO:0006281;GO:0004842"	"Fanconi anaemia nuclear complex;DNA repair;ubiquitin-protein transferase activity"		"Cre19.g753850.t1.1;g4409.t1;Cre19.g753850.t1.1;g4409.t1;g4409.t1;Cre19.g753850.t1.1"		
+Cre03.g159750	GMM:29.3.4.3	"protein.targeting.secretory pathway.vacuole"				VPS36	"VPS36;Cre03.g159750.t1.1;g3271.t1;VPS36;g3271.t1;Cre03.g159750.t1.1;VPS36;g3271.t1;Cre03.g159750.t1.1;Cre03.g159750.t1.1;g3271.t1;VPS36"	"VPS36;VPS36;VPS36;VPS36"	"Expressed Protein. Similar to VPS36, a UBA and VPS36-domain protein, component of ESCRT-II complex, involved in ubiquitin-mediated internalization into multi-vesicular bodies (late endosomes).;Expressed Protein. Similar to VPS36, a UBA and VPS36-domain protein, component of ESCRT-II complex, involved in ubiquitin-mediated internalization into multi-vesicular bodies (late endosomes).;Expressed Protein. Similar to VPS36, a UBA and VPS36-domain protein, component of ESCRT-II complex, involved in ubiquitin-mediated internalization into multi-vesicular bodies (late endosomes).;Expressed Protein. Similar to VPS36, a UBA and VPS36-domain protein, component of ESCRT-II complex, involved in ubiquitin-mediated internalization into multi-vesicular bodies (late endosomes)."
+Cre03.g199550	GMM:27.4	"RNA.RNA binding"					"g4337.t1;Cre03.g199550.t1.1;Cre03.g199550.t1.1;g4337.t1;g4337.t1;Cre03.g199550.t1.1;g4337.t1;Cre03.g199550.t1.1"		
+Cre03.g203450	GMM:29.2.1.2.1.21	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S21"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS21	"Cre03.g203450.t1.1;g4248.t1;g4248.t1;Cre03.g203450.t1.1;Cre03.g203450.t1.1;g4248.t1"	"RPS21;RPS21;RPS21"	"Cytosolic 40S small ribosomal subunit protein S21;Cytosolic 40S small ribosomal subunit protein S21;Cytosolic 40S small ribosomal subunit protein S21"
+Cre03.g157850						TRXL1			
+Cre03.g176600						FAP374	"Cre03.g176600.t1.1;g3649.t1"	FAP374	
+Cre03.g153500							"Cre03.g153500.t1.1;g3127.t1"		
+Cre03.g177711			Mitochondrion						
+Cre03.g174950	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"	"Secretory pathway"	GO:0006629	"lipid metabolic process"	TGL7	"g3613.t1;TGL7"		
+Cre03.g178600	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006265;GO:0005694;GO:0003918;GO:0003917;GO:0003677"	"DNA topological change;chromosome;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA topoisomerase type I activity;DNA binding"	TOP1	"g3698.t1;TOP1;g3698.t1;TOP1"	"TOP1;TOP1"	"Similar to DNA topoisomerase I in Arabidopsis, At5g55310.;Similar to DNA topoisomerase I in Arabidopsis, At5g55310."
+Cre03.g158600			Mitochondrion				g3247.t1		
+Cre03.g165950			Mitochondrion				"g3405.t1;Cre03.g165950.t1.1;g3405.t1;Cre03.g165950.t1.1;Cre03.g165950.t1.1;g3405.t1"		
+Cre03.g173700	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIL14	"g3582.t1;KIL14"		"Putative kinesin motor-like protein, closest match to kinesin-14 family. No sequence gaps to account for poor assignment by HMM search; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre03.g212865			Chloroplast				"g4484.t1;Cre19.g757100.t1.1;g4484.t1;Cre19.g757100.t1.1"		
+Cre03.g208306									
+Cre03.g187850			Chloroplast				"g3891.t1;Cre03.g187850.t1.1"		
+Cre03.g164150	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Mitochondrion	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"g3365.t1;g3365.t1"		
+Cre03.g172451			Chloroplast						
+Cre03.g185800			"Secretory pathway"	"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		"g3850.t1;Cre03.g185800.t1.1"		
+Cre03.g149950			"Secretory pathway"				"g3050.t1;g3050.t1"		
+Cre03.g159350				GO:0005515	"protein binding"		g3263.t1		
+Cre03.g146667			Chloroplast				"g2998.t1;Cre01.g062100.t1.1"		
+Cre03.g200800	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG61	"g4309.t1;CYG61;g4309.t1;CYG61;g4309.t1;CYG61"		
+Cre03.g204017			Chloroplast				"g4402.t1;Cre19.g753450.t1.1"		
+Cre03.g165250							g3390.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g199350	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"				
+Cre03.g156900	GMM:1.1.1.1	"PS.lightreaction.photosystem II.LHC-II"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCBM5	"g3203.t1;Cre03.g156900.t1.1"	LHCBM5	
+Cre03.g161578			"Mitochondrion;Secretory pathway"				"Cre03.g161700.t4.1;g3312.t2;g3312.t2;Cre03.g161700.t4.1;g3312.t2;Cre03.g161700.t4.1;g3312.t2;Cre03.g161700.t4.1"		
+Cre03.g161976									
+Cre03.g177250			"Secretory pathway"				"g3664.t1;Cre03.g177250.t1.1;HAP3"		"contains a PAP2/haloperoxidase domain found in vanadium chloroperoxidases and related to phosphoesterases; closely related to nearby HAP4 and to distantly linked stress-induced HAP1 and HAP2"
+Cre03.g203950							g4237.t1		
+Cre03.g176000			Mitochondrion				"Cre03.g176000.t1.1;g3635.t1"		
+Cre03.g159900	"GMM:29.2.2.3.99;GMM:29.2.2.1"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;protein.synthesis.ribosome biogenesis.export from nucleus"					g3274.t1		
+Cre03.g170001			"Secretory pathway"				g3500.t1		
+Cre03.g146047							"g2967.t1;Cre01.g060600.t1.1"		
+Cre03.g148800	GMM:26.6	"misc.O-methyl transferases"		GO:0008171	"O-methyltransferase activity"		g3026.t1		
+Cre03.g204100	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG5	"ELG5;g4234.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family; null-allele mutant was isolated (PMID 29743196)"
+Cre03.g175600	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g3626.t1;g3626.t1"		
+Cre03.g143767			"Secretory pathway"						
+Cre03.g202900			Mitochondrion				"g4261.t1;g4261.t1"		
+Cre03.g150400			"Secretory pathway"	"GO:0016021;GO:0006506"	"integral component of membrane;GPI anchor biosynthetic process"	PIGU	"PIGU;g3059.t1;Cre03.g150400.t1.1;LRG5;LRG5;Cre03.g150400.t1.1;g3059.t1;PIGU"	"PIGU1;PIGU1"	"also described as involved in blue light signaling in gametogenesis [PMID: 9351252];also described as involved in blue light signaling in gametogenesis [PMID: 9351252]"
+Cre03.g148201			Chloroplast				g3014.t1		
+Cre03.g205361							"Cre19.g754100.t1.1;Cre19.g754100.t1.2;g4414.t1"		
+Cre03.g167734									
+Cre03.g189800	"GMM:29.6.3.2;GMM:29.6"	"protein.folding.immunophilins (IMM).cyclophilins;protein.folding"	Chloroplast	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN38	"Cre03.g189800.t1.1;CYN38;g3930.t1;Cre03.g189800.t1.1;g3930.t1;CYN38;Cre03.g189800.t1.1;CYN38;g3930.t1"	"CYN38;CYN38;CYN38"	
+Cre03.g149100	GMM:6.1	"gluconeogenesis / glyoxylate cycle.citrate synthase"	Mitochondrion	GO:0046912	"transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer"	CIS2	"Cre03.g149100.t1.1;g3032.t1;g3032.t1;Cre03.g149100.t1.1"	"CIS2;CIS2"	"Citrate synthase (EC 2.3.3.1), glyoxysomal/microbody form; similarity to Arabidopsis citrate synthase glyoxysomal precursor (GenBank Q9LXS6); PMID: 1921471;Citrate synthase (EC 2.3.3.1), glyoxysomal/microbody form; similarity to Arabidopsis citrate synthase glyoxysomal precursor (GenBank Q9LXS6); PMID: 1921471"
+Cre03.g146367				GO:0046983	"protein dimerization activity"		"g2983.t1;Cre01.g061400.t1.2;Cre01.g061400.t1.1"		
+Cre03.g203700							"DEGO1;DEG12;g4243.t1;DEG12;g4243.t1;DEGO1"		
+Cre03.g179350				"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT16	"MFT16;g3712.t1;Cre03.g179350.t1.1;g3712.t1;MFT16;Cre03.g179350.t1.1;Cre03.g179350.t1.1;g3712.t1;MFT16"		"Permease;Permease;Permease"
+Cre03.g201700							"g4288.t1;g4288.t1;g4288.t1;g4288.t1"		
+Cre03.g154726									
+Cre03.g162900	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g3339.t1;g3339.t1;g3339.t1;g3339.t1;g3339.t1;g3339.t1"		"Null-allele mutant was isolated;Null-allele mutant was isolated;Null-allele mutant was isolated;Null-allele mutant was isolated;Null-allele mutant was isolated;Null-allele mutant was isolated"
+Cre03.g205100			Chloroplast						
+Cre03.g179200			Chloroplast				"g3709.t1;Cre03.g179200.t1.1"		
+Cre03.g204450	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"				"Cre03.g204450.t1.1;g4226.t1"		
+Cre03.g164350	GMM:11.9.3.2	"lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase"					g3369.t1		
+Cre03.g158050	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:2001070;GO:0003824"	"starch binding;catalytic activity"		"PPP11;g3235.t1;g3235.t1;PPP11;PPP11;g3235.t1;g3235.t1;PPP11"		
+Cre03.g205700			Chloroplast				"g4198.t2;g4198.t2;g4198.t2;g4198.t2;g4198.t2;g4198.t2;g4198.t2"		
+Cre03.g155100			Mitochondrion				"Cre03.g155100.t1.1;g3162.t1;g3162.t1;Cre03.g155100.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g211185							"Cre19.g756400.t1.1;g4469.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g151250	GMM:17.1.2	"hormone metabolism.abscisic acid.signal transduction"	Mitochondrion			LAN1	"LAN1;g3078.t1;LANC1;g3078.t1;LAN1;LANC1"	"LANC1;LANC1"	"similar to LanC lantibiotic synthetase component C;similar to LanC lantibiotic synthetase component C"
+Cre03.g159581			Chloroplast	"GO:0006355;GO:0005739;GO:0003690"	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"				
+Cre03.g207550	GMM:16.2.1.10	"secondary metabolism.phenylpropanoids.lignin biosynthesis.CAD"	Mitochondrion	"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	ADH8	"ADH8;g4158.t1;Cre03.g207550.t1.1;g4158.t1;ADH8;Cre03.g207550.t1.1"	"CAD2;CAD2"	"Related to Cinnamyl-alcohol dehydrogenase (CAD) proteins in Arabidopsis;Related to Cinnamyl-alcohol dehydrogenase (CAD) proteins in Arabidopsis"
+Cre03.g203150			Mitochondrion				g4256.t1		
+Cre03.g172400							g3555.t1		
+Cre03.g154425	GMM:31.2	cell.division	Mitochondrion			CLASP	"g3147.t1;CLASP;Cre03.g154450.t2.1;Cre03.g154450.t2.1;CLASP;g3147.t1"	"CLASP1;CLASP1"	"contains a HEAT-repeat domain, related to ARM repeat; similar to plant CLIP-associating-protein (cytoplasmic linker associated protein), probably involved in mitotic fidelity by regulating spindle and kinetochore function (PMID:16914514);contains a HEAT-repeat domain, related to ARM repeat; similar to plant CLIP-associating-protein (cytoplasmic linker associated protein), probably involved in mitotic fidelity by regulating spindle and kinetochore function (PMID:16914514)"
+Cre03.g158450			"Secretory pathway"				"Cre03.g158450.t1.1;g3243.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g203200			Mitochondrion				g4255.t1		
+Cre03.g207351							"Cre03.g207300.t1.3;g4163.t1"		
+Cre03.g205025			Chloroplast				"Cre19.g753950.t1.1;Cre19.g753950.t1.2;g4411.t1"		
+Cre03.g199087							g4358.t1		
+Cre03.g200787			"Secretory pathway"						
+Cre03.g152650							"g3108.t1;g3108.t1;g3108.t1;g3108.t1"		
+Cre03.g181600							"g3764.t1;g3764.t1"		
+Cre03.g168850			Mitochondrion				"Cre03.g168850.t1.1;g3476.t1"		
+Cre03.g148850	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g3027.t1;g3027.t1"		
+Cre03.g197000	GMM:29.2.2.50	"protein.synthesis.ribosome biogenesis.BRIX"					"g4080.t1;Cre03.g197000.t1.1"	POB8	"Found in basal body proteome; Null allele mutant was isolated"
+Cre03.g148400			"Secretory pathway"				"Cre03.g148400.t1.1;g3018.t1"		
+Cre03.g200600	GMM:31.1	cell.organisation	Mitochondrion	"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN14A-1	"g4315.t2;KIN14A-1;KIN14-4;KIN14-4;KIN14A-1;g4315.t2;g4315.t2;KIN14A-1;KIN14-4"	"KIN14A1;KIN14A1;KIN14A1"	"kinesin-14 family, kinesin-14A subfamily;kinesin-14 family, kinesin-14A subfamily;kinesin-14 family, kinesin-14A subfamily"
+Cre03.g144364				GO:0005515	"protein binding"		"Cre01.g057150.t1.1;g2882.t1;g2882.t1;Cre01.g057150.t1.1"		
+Cre03.g180650	GMM:29.5.5	"protein.degradation.serine protease"				DEG7	"g3744.t1;g3744.t1;g3744.t1;g3744.t1"	"DEG7;DEG7;DEG7;DEG7"	"DegP-type protease; three PDZ domains;DegP-type protease; three PDZ domains;DegP-type protease; three PDZ domains;DegP-type protease; three PDZ domains"
+Cre03.g174100	GMM:26.16	misc.myrosinases-lectin-jacalin	Mitochondrion				"g3592.t3;g3592.t3;g3592.t3"		
+Cre03.g146187	"GMM:13.1.2.3.3;GMM:13.1.2.3"	"amino acid metabolism.synthesis.glutamate family.arginine.N-acetylglutamate-5-P reductase;amino acid metabolism.synthesis.glutamate family.arginine"	Chloroplast	"GO:0055114;GO:0051287;GO:0046983;GO:0016620;GO:0008652;GO:0005737;GO:0003942"	"oxidation-reduction process;NAD binding;protein dimerization activity;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor;cellular amino acid biosynthetic process;cytoplasm;N-acetyl-gamma-glutamyl-phosphate reductase activity"		"Cre01.g060950.t1.2;AGPR;NAGPR;g2974.t1;Cre01.g060950.t1.1"	ARGC1	"Catalyzes the third step of ornithine biosynthesis pathway; N-acetyl-glutamate semialdehyde dehydrogenase, phosphorylating (NAGSA dehydrogenase); chloroplast located; previously annotated as ARG1 on the assumption that arg1 was lacking N-acetylglutamyl-phosphate reductase, but is on chromosome_3 while arg1 is on LG-I"
+Cre03.g161050							"g3300.t1;GINS1;Cre03.g161050.t1.1"		"ts-lethal mutant was isolated (PMID 29743196)"
+Cre03.g178950	"GMM:28.99;GMM:28.1"	"DNA.unspecified;DNA.synthesis/chromatin structure"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL17	"Cre03.g178950.t1.1;HEL17;g3704.t1"		"DEAD/DEAH box DNA/RNA helicase"
+Cre03.g166400			"Secretory pathway"	GO:0003824	"catalytic activity"		"g3415.t1;Cre03.g166400.t1.1"		
+Cre03.g199050	"GMM:29.4;GMM:29.2.2"	"protein.postranslational modification;protein.synthesis.ribosome biogenesis"					"g4348.t1;Cre03.g199050.t1.1"		
+Cre03.g200850			"Secretory pathway"				"Cre03.g200850.t1.1;g4308.t1;g4308.t1;Cre03.g200850.t1.1;g4308.t1;Cre03.g200850.t1.1;g4308.t1;Cre03.g200850.t1.1;g4308.t1;Cre03.g200850.t1.1"		
+Cre03.g171900						FAP56	g3543.t1	FAP56	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]"
+Cre03.g190000			Mitochondrion	"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"Cre03.g190000.t1.1;PPP14;g3934.t1;Cre03.g190000.t1.1;PPP14;g3934.t1;Cre03.g190000.t1.1;PPP14;g3934.t1;Cre03.g190000.t1.1;PPP14;g3934.t1;PPP14;g3934.t1;Cre03.g190000.t1.1"		
+Cre03.g195366	GMM:29.4	"protein.postranslational modification"					"g4047.t1;Cre03.g195366.t1.1;g4047.t1;Cre03.g195366.t1.1"		
+Cre03.g158200	GMM:27.3.55	"RNA.regulation of transcription.HDA"				HDA2	"g3238.t1;HDA2;Cre03.g158200.t1.1;Cre03.g158200.t1.1;HDA2;g3238.t1"	"HDA2;HDA2"	"Class III RPD3 type protein of the histone deacetylases (RPD3/HDA1 superfamily); ChromDB HDA3407;Class III RPD3 type protein of the histone deacetylases (RPD3/HDA1 superfamily); ChromDB HDA3407"
+Cre03.g187650			Chloroplast				g3887.t1		
+Cre03.g153200							"g3120.t1;g3120.t1;g3120.t1;g3120.t1;g3120.t1"		
+Cre03.g163300						CDT1	"Cre03.g163300.t1.1;g3347.t1"	CDT1	"Functions with CDC6 to activate replication origins"
+Cre03.g149400	GMM:27.3.60	"RNA.regulation of transcription.NIN-like bZIP-related family"				RWP11	"g3038.t1;RWP11;RWP11;g3038.t1;RWP11;g3038.t1"	"RWP11;RWP11;RWP11"	"putative RWP-RK domain transcription factor; forms a tandem pair with RWP4 with which there is similarity around the RWP-RK domain and some intron conservation; null-allele mutant was isolated (PMID 29743196);putative RWP-RK domain transcription factor; forms a tandem pair with RWP4 with which there is similarity around the RWP-RK domain and some intron conservation; null-allele mutant was isolated (PMID 29743196);putative RWP-RK domain transcription factor; forms a tandem pair with RWP4 with which there is similarity around the RWP-RK domain and some intron conservation; null-allele mutant was isolated (PMID 29743196)"
+Cre03.g207489			Mitochondrion						
+Cre03.g148250	"GMM:34.1.1;GMM:27.3.99;GMM:27.3.67;GMM:27.3.63"	"transport.p- and v-ATPases.H+-transporting two-sector ATPase;RNA.regulation of transcription.unclassified;RNA.regulation of transcription.putative transcription regulator;RNA.regulation of transcription.PHD finger transcription factor"		GO:0005515	"protein binding"	CGL58	"g3015.t1;g3015.t1;g3015.t1"	"CGL58;CGL58;CGL58"	
+Cre03.g144747	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"					"g2901.t1;Cre01.g057650.t1.2;Cre01.g057650.t1.1;Cre01.g057650.t1.1;g2901.t1;Cre01.g057650.t1.2"		
+Cre03.g159000			Mitochondrion				"g3255.t1;g3255.t1"		
+Cre03.g205473							"Cre19.g754150.t1.1;g4415.t1;Cre19.g754150.t1.2;Cre19.g754150.t1.1;Cre19.g754150.t1.2;g4415.t1"		
+Cre03.g162300				"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"SDR7;Cre03.g162300.t1.1;g3326.t1"		"possibly a 17-beta hydroxysteroid/estradiol dehydrogenase"
+Cre03.g178400			Mitochondrion				"g3694.t1;g3694.t1"		
+Cre03.g189600			Mitochondrion				g3926.t1		
+Cre03.g203351			Mitochondrion				"g4251.t1;Cre03.g203351.t1.1"		
+Cre03.g171100			Chloroplast				"g3525.t1;g3525.t1;g3525.t1"		
+Cre03.g178000							g3682.t1		
+Cre03.g164700			Chloroplast				"g3376.t1;Cre03.g164700.t1.1"		
+Cre03.g160850			Mitochondrion				"g3295.t1;g3295.t1"		
+Cre03.g205750				GO:0005096	"GTPase activator activity"		g4196.t1		
+Cre03.g184300							"g3819.t1;SMM10"		
+Cre03.g207200			Chloroplast				"g4165.t1;g4165.t1;g4165.t1"		
+Cre03.g172500	GMM:1.1.40	"PS.lightreaction.cyclic electron flow-chlororespiration"	Chloroplast	"GO:0055114;GO:0009916"	"oxidation-reduction process;alternative oxidase activity"	PTOX2	"g3557.t1;PTO2;PTO2;g3557.t1"	"PTOX2;PTOX2"	"Plastoquinol oxydase, regulates photosyntetic electron flow;Plastoquinol oxydase, regulates photosyntetic electron flow"
+Cre03.g199650			"Secretory pathway"				g4334.t1		
+Cre03.g166750	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion			PTK3	"PTK3;g3422.t1;Cre03.g166750.t1.1;PTK3;Cre03.g166750.t1.1;g3422.t1;PTK3;g3422.t1;Cre03.g166750.t1.1;g3422.t1;Cre03.g166750.t1.1;PTK3;PTK3;g3422.t1;Cre03.g166750.t1.1;Cre03.g166750.t1.1;g3422.t1;PTK3"		"Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre03.g209953	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	"GO:0007275;GO:0006355;GO:0003700"	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"Cre19.g755850.t1.1;g4457.t1;g4457.t1;Cre19.g755850.t1.1"		
+Cre03.g159800	"GMM:3.3;GMM:20.1.5"	"minor CHO metabolism.sugar alcohols;stress.biotic.regulation of transcription"	Chloroplast	GO:0015969	"guanosine tetraphosphate metabolic process"		"g3272.t1;g3272.t1;g3272.t1;g3272.t1;g3272.t1;g3272.t1"		
+Cre03.g145767	"GMM:28.99;GMM:28.1"	"DNA.unspecified;DNA.synthesis/chromatin structure"	Chloroplast	"GO:0008408;GO:0006139;GO:0005622;GO:0003676"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;intracellular;nucleic acid binding"		"g2953.t2;RRP6a;Cre01.g059950.t1.1;Cre01.g059950.t1.1;g2953.t2;RRP6a"	"RRP6;RRP6"	"contains DEDDy DnaQ-like 3'-5' exonuclease domain like yeast Rrp6p exosome subunit;contains DEDDy DnaQ-like 3'-5' exonuclease domain like yeast Rrp6p exosome subunit"
+Cre03.g175000	GMM:27.1.19	RNA.processing.ribonucleases				RPH3	"g3614.t1;Cre03.g175000.t1.1;RNPH3;RPH3;RPH3;RNPH3;Cre03.g175000.t1.1;g3614.t1;Cre03.g175000.t1.1;g3614.t1;RPH3;RNPH3;RNPH3;RPH3;g3614.t1;Cre03.g175000.t1.1"	"RPH3;RPH3;RPH3;RPH3"	"Homologue of S. cerevisiae Rrp45, which is a core component of the exosome, a complex of multiple 3'-5' exoribonucleases involved in RNA processing and RNA degradation. Homologue of RNase PH.;Homologue of S. cerevisiae Rrp45, which is a core component of the exosome, a complex of multiple 3'-5' exoribonucleases involved in RNA processing and RNA degradation. Homologue of RNase PH.;Homologue of S. cerevisiae Rrp45, which is a core component of the exosome, a complex of multiple 3'-5' exoribonucleases involved in RNA processing and RNA degradation. Homologue of RNase PH.;Homologue of S. cerevisiae Rrp45, which is a core component of the exosome, a complex of multiple 3'-5' exoribonucleases involved in RNA processing and RNA degradation. Homologue of RNase PH."
+Cre03.g167150	"GMM:26.7;GMM:16.5.1.1.1.10"	"misc.oxidases - copper, flavone etc;secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.flavin-containing monooxygenase"	Chloroplast	"GO:0055114;GO:0050661;GO:0050660;GO:0004499"	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO1	"FMO1;g3431.t1;Cre03.g167150.t1.1;Cre03.g167150.t1.1;g3431.t1;FMO1;Cre03.g167150.t1.1;FMO1;g3431.t1"		"Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification; one of the many Arabidopsis homologues is essential for Systemic Acquired Resistance to pathogens (PMID: 16778014);Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification; one of the many Arabidopsis homologues is essential for Systemic Acquired Resistance to pathogens (PMID: 16778014);Use NADPH and non-covalently-bound FAD to catalyse the oxygenation of nucleophilic nitrogen, sulphur, phosphorous and selenium atoms; important for xenobiotic detoxification; one of the many Arabidopsis homologues is essential for Systemic Acquired Resistance to pathogens (PMID: 16778014)"
+Cre03.g196500							"g4070.t1;g4070.t1"		
+Cre03.g194535			Mitochondrion				"g4027.t1;Cre03.g194535.t1.1"		
+Cre03.g144084	GMM:29.5	protein.degradation		"GO:0016021;GO:0006508;GO:0004252"	"integral component of membrane;proteolysis;serine-type endopeptidase activity"	RBL7	"RBL7;Cre01.g056500.t1.1;g2867.t1;g2867.t1;RBL7;Cre01.g056500.t1.1;RBL7;Cre01.g056500.t1.1;g2867.t1"		"similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579); the long N-terminal extension of 600 AA shows no homology and could result from fusion with an upstream gene;similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579); the long N-terminal extension of 600 AA shows no homology and could result from fusion with an upstream gene;similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579); the long N-terminal extension of 600 AA shows no homology and could result from fusion with an upstream gene"
+Cre03.g157450							"Cre03.g157450.t1.1;g3216.t1"		
+Cre03.g162750	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g3336.t1;Cre03.g162750.t1.1"		
+Cre03.g192150			Mitochondrion				"Cre03.g192150.t1.1;g3977.t1"		
+Cre03.g213201			Chloroplast			CCS2	"Cre19.g757200.t1.1;OPR108;g4487.t1"	CCS2	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; mutant lacks cytochrome b6f and cytochrome c6 and shows reduced accumulation of Ccs1 protein; gb|AGD80573.1"
+Cre03.g161301			Mitochondrion				"g3305.t1;Cre03.g161300.t1.3"		
+Cre03.g189350							"Cre03.g189350.t1.1;g3921.t1;Cre03.g189350.t1.1;g3921.t1"		
+Cre03.g173450	"GMM:31.5.1;GMM:29.3.3;GMM:26.30"	"cell.cell death.plants;protein.targeting.chloroplast;misc.other Ferredoxins and Rieske domain"	Chloroplast	"GO:0055114;GO:0051537;GO:0016491;GO:0010277"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"		"PAO4;g3577.t1"		"Contains Rieske iron-sulfur cluster and PAO domains and transmembrane domain for attachment to thylakoid membrane; belongs to the classical family of short chain dehydrogenases [PMID: 15180984]"
+Cre03.g183250							"g3798.t1;Cre03.g183250.t1.1"		
+Cre03.g173050			Chloroplast				"Cre03.g173050.t1.1;g3568.t1"		
+Cre03.g178250	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"				NUOS6	"g3689.t1;Cre03.g178250.t1.1"	NUOS6	"mitochondrial NADH:ubiquinone oxidoreductase 13 kD subunit (NDUFS6-like) gi 34334024 gb AAQ64639.1; Ortholog of NDUFS6 in Homo sapiens"
+Cre03.g207800	GMM:16.2.1.10	"secondary metabolism.phenylpropanoids.lignin biosynthesis.CAD"	Mitochondrion	"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	ADH5	"ADH5;g4153.t1;Cre03.g207800.t1.1;ADH5;Cre03.g207800.t1.1;g4153.t1;Cre03.g207800.t1.1;g4153.t1;ADH5;ADH5;g4153.t1;Cre03.g207800.t1.1"	"CAD1;CAD1;CAD1;CAD1"	"Related to Cinnamyl-alcohol dehydrogenase (CAD) proteins in Arabidopsis;Related to Cinnamyl-alcohol dehydrogenase (CAD) proteins in Arabidopsis;Related to Cinnamyl-alcohol dehydrogenase (CAD) proteins in Arabidopsis;Related to Cinnamyl-alcohol dehydrogenase (CAD) proteins in Arabidopsis"
+Cre03.g151400	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215"	"ATPase activity;integral component of membrane;transport;ATP binding;transporter activity"		g3081.t1		
+Cre03.g198700							g4121.t1		
+Cre03.g171350	"GMM:34.99;GMM:29.3.4.99"	"transport.misc;protein.targeting.secretory pathway.unspecified"	"Secretory pathway"	"GO:0016020;GO:0015031"	"membrane;protein transport"	SEC61A	"g3531.t1;Cre03.g171350.t1.1;Cre03.g171350.t1.1;g3531.t1"	"SEC61A;SEC61A"	"Expressed Protein. Similar to Sec61-alpha, subunit of the ER-protein translocase.;Expressed Protein. Similar to Sec61-alpha, subunit of the ER-protein translocase."
+Cre03.g203730	GMM:29.5.5	"protein.degradation.serine protease"	Mitochondrion			DEGO1	"g4242.t1;Cre03.g203730.t1.1;DEG12"	DEGO1	"Similar to serine proteases/chaperones of the trypsin-like DegP family (HtrA) (protease Do) but lacks all three catalytic residues: H>A, D>E, S>L (confirmed in Volvox ortholog); contains patch of basic residues that could mediate association with DEGO2; described in Chlamydomonas sourcebook, vol. II,p701"
+Cre03.g145847			Chloroplast				"Cre01.g060150.t1.2;g2957.t1;Cre01.g060150.t1.1;Cre01.g060150.t1.1;g2957.t1;Cre01.g060150.t1.2"		
+Cre03.g169850	GMM:29.1.16	"protein.aa activation.cysteine-tRNA ligase"		"GO:0006423;GO:0005737;GO:0005524;GO:0004817;GO:0000166"	"cysteinyl-tRNA aminoacylation;cytoplasm;ATP binding;cysteine-tRNA ligase activity;nucleotide binding"	TSC1	"Cre03.g169850.t1.1;g3497.t1;TSC1"	TSC1	"Cysteine--tRNA ligase"
+Cre03.g177007	GMM:27.3.57	"RNA.regulation of transcription.JUMONJI family"	Mitochondrion				g3659.t1		
+Cre03.g188500	GMM:27.3.71	"RNA.regulation of transcription.SNF7"		GO:0007034	"vacuolar transport"	VPS46	"VPS46;g3904.t1;Cre03.g188500.t1.1;g3904.t1;VPS46;Cre03.g188500.t1.1"	"VPS46;VPS46"	"Expressed Protein. Similar to yeast Did2p/Vps46p, SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes);Expressed Protein. Similar to yeast Did2p/Vps46p, SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes)"
+Cre03.g171000			Mitochondrion				g3523.t1		
+Cre03.g197500	GMM:31.6.1.11	cell.motility.eukaryotes.other	Chloroplast			MOT6	"Cre03.g197500.t1.1;g4090.t2;MOT6;MOT6;g4090.t2;Cre03.g197500.t1.1"	"MOT6;MOT6"	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia;identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre03.g165200			Mitochondrion			ATG7	"APG7;g3388.t1;APG7;g3388.t1"		
+Cre03.g202950	"GMM:30.3;GMM:3.3;GMM:21.1"	"signalling.calcium;minor CHO metabolism.sugar alcohols;redox.thioredoxin"	Chloroplast	GO:0045454	"cell redox homeostasis"	TRX14	"g4260.t1;CRX;TRX14;g4260.t1;CRX;TRX14;g4260.t1;CRX;TRX14"	"CRX1;CRX1;CRX1"	"Ca-dependent sensor, redox-related signaling, chloroplast localized;Ca-dependent sensor, redox-related signaling, chloroplast localized;Ca-dependent sensor, redox-related signaling, chloroplast localized"
+Cre03.g155527			Mitochondrion				"Cre03.g155527.t1.1;g3172.t1"		
+Cre03.g198236									
+Cre03.g151351							"Cre03.g151350.t1.3;g3080.t1"		
+Cre03.g185450			Chloroplast				"g3843.t1;g3843.t1;g3843.t1;g3843.t1"		
+Cre03.g202300			Chloroplast				"g4275.t1;g4275.t1;g4275.t1;g4275.t1;g4275.t1;g4275.t1;g4275.t1;g4275.t1;g4275.t1;g4275.t1;g4275.t1"		
+Cre03.g186600			"Secretory pathway"				"g3866.t1;g3866.t1"		
+Cre03.g199199							"g4359.t1;Cre19.g751569.t1.2;Cre19.g751569.t1.1"		
+Cre03.g185100			Mitochondrion				"g3836.t1;g3836.t1"		
+Cre03.g188250	GMM:2.1.2.1	"major CHO metabolism.synthesis.starch.AGPase"	Chloroplast	"GO:0016779;GO:0009058"	"nucleotidyltransferase activity;biosynthetic process"	STA6	"Cre03.g188250.t1.1;g3899.t1;AGP4;STA6"	AGP4	"ADP-glucose pyrophosphorylase large subunit 4; Glucose-1-phosphate adenylyltransferase / ADP-glucose synthase; regulatory subunit catalyzes the formation of the glucosyl nucleotide from ATP and glucose-1-phosphate; contains nucleotidyl transferase domain; involved in starch metabolism"
+Cre03.g204050	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG6	"ELG6;g4235.t1;g4235.t1;ELG6;g4235.t1;ELG6"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre03.g198950	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"	CGL30	"g4350.t1;Cre03.g198950.t1.1"	CGL30	
+Cre03.g200700						FAP166	"Cre03.g200700.t1.1;g4312.t1"	FAP166	"Flagellar Associated Protein, found in the flagellar proteome"
+Cre03.g202449			Chloroplast	GO:0005515	"protein binding"		"g4388.t1;Cre19.g752900.t1.2;Cre19.g752900.t1.1"		
+Cre03.g191800				GO:0005515	"protein binding"		"Cre03.g191800.t1.1;g3970.t1"		
+Cre03.g145327									
+Cre03.g196750			"Secretory pathway"	GO:0016021	"integral component of membrane"		g4075.t1		
+Cre03.g144927			Mitochondrion						
+Cre03.g158700			"Secretory pathway"				"g3249.t1;Cre03.g158700.t1.1"		
+Cre03.g144504			Chloroplast				"g2889.t1;Cre01.g057400.t1.2;Cre01.g057400.t1.1"		
+Cre03.g157600			Mitochondrion				g3225.t1		
+Cre03.g172700			Chloroplast				"g3561.t1;Cre03.g172700.t1.1;Cre03.g172700.t1.1;g3561.t1;g3561.t1;Cre03.g172700.t1.1;g3561.t1;Cre03.g172700.t1.1"		
+Cre03.g146787			Chloroplast				g3004.t1		
+Cre03.g181950							"g3771.t1;g3771.t1"		
+Cre03.g171550			Mitochondrion			SSA13	"SSA13;g3536.t1;g3536.t1;SSA13"	"SSA13;SSA13"	"identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA);identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA)"
+Cre03.g174550							"Cre03.g174550.t1.1;g3604.t1"		
+Cre03.g146227							"Cre01.g061050.t1.1;g2976.t1;Cre01.g061050.t1.2;Cre01.g061050.t1.2;g2976.t1;Cre01.g061050.t1.1;Cre01.g061050.t1.1;Cre01.g061050.t1.2;g2976.t1;Cre01.g061050.t1.1;g2976.t1;Cre01.g061050.t1.2"		
+Cre03.g195900			Chloroplast				"g4058.t1;g4058.t1"		
+Cre03.g206350			Mitochondrion			OPR19	"g4184.t1;g4184.t1"	"OPR19;OPR19"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre03.g165300			Chloroplast				"g3391.t1;g3391.t1"		
+Cre03.g187350	"GMM:31.6.1.1;GMM:31.1.1.2;GMM:31.1"	"cell.motility.eukaryotes.basal bodies;cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"		"GO:0007017;GO:0005874;GO:0005525;GO:0005200;GO:0003924"	"microtubule-based process;microtubule;GTP binding;structural constituent of cytoskeleton;GTPase activity"	UNI3	"UNI3;g3881.t1;TUD1;g3881.t1;TUD1;UNI3"	"UNI3;UNI3"	"Delta tubulin (TUD)[gi:7441381]. Required for assembly of the basal body/centriole and localizes to the basal body;Delta tubulin (TUD)[gi:7441381]. Required for assembly of the basal body/centriole and localizes to the basal body"
+Cre03.g155500	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX					g3170.t1		
+Cre03.g169150	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g3482.t2;Cre03.g169150.t1.1"		
+Cre03.g188100			"Secretory pathway"				"Cre03.g188100.t1.1;g3897.t1"		
+Cre03.g152400			Chloroplast	"GO:0008408;GO:0006139;GO:0003676"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding"	EXN1	"EXN1;g3102.t1"		"Conserved in plants and parasites"
+Cre03.g152300			"Secretory pathway"				"g3099.t1;Cre03.g152300.t1.1"		
+Cre03.g201888			Mitochondrion				g4383.t1		
+Cre03.g205350			Chloroplast	"GO:0008408;GO:0006139;GO:0003676"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding"	EXN8	"EXN8;g4206.t1"		
+Cre03.g193050							"g3994.t1;g3994.t1"		
+Cre03.g186200	GMM:11.3.3	"lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase"				PCT1	"Cre03.g186200.t1.1;g3858.t1;CDS1;PCT1;Cre03.g186200.t1.1;g3858.t1;CDS1;PCT1;Cre03.g186200.t1.1;g3858.t1;CDS1;PCT1"	"PCT1;PCT1;PCT1"	"Phosphatidate cytidylyltransferase (CDP-diglyceride synthetase);Phosphatidate cytidylyltransferase (CDP-diglyceride synthetase);Phosphatidate cytidylyltransferase (CDP-diglyceride synthetase)"
+Cre03.g169650							"g3493.t1;g3493.t1"		
+Cre03.g179921			"Secretory pathway"				"g3727.t1;Cre73.g795000.t1.1;Cre73.g795000.t1.2;g3727.t1;Cre73.g795000.t1.1;Cre73.g795000.t1.2"		
+Cre03.g182551	GMM:1.1.5.1	"PS.lightreaction.other electron carrier (ox/red).plastocyanin"	Chloroplast			PCY1	"Cre03.g182551.t1.1;PC6-2;g3784.t1"	PCY1	
+Cre03.g155300			"Secretory pathway"			PHC29	"g3166.t1;PHC29;PHC29;g3166.t1;PHC29;g3166.t1;PHC29;g3166.t1;PHC29;g3166.t1"		
+Cre03.g175926			"Secretory pathway"				g3634.t1		
+Cre03.g180151			Chloroplast				"Cre03.g180150.t1.2;g3734.t1;Cre03.g180150.t1.2;g3734.t1"		
+Cre03.g150650							"Cre03.g150650.t1.1;g3064.t1;g3064.t1;Cre03.g150650.t1.1"		
+Cre03.g201450			"Secretory pathway"				"g4293.t1;g4293.t1;g4293.t1"		
+Cre03.g154200				"GO:0032783;GO:0006355"	"ELL-EAF complex;regulation of transcription, DNA-templated"		g3141.t1		
+Cre03.g207400	GMM:29.5.3	"protein.degradation.cysteine protease"	Mitochondrion				"Cre03.g207400.t1.1;g4161.t1;g4161.t1;Cre03.g207400.t1.1;Cre03.g207400.t1.1;g4161.t1;g4161.t1;Cre03.g207400.t1.1;Cre03.g207400.t1.1;g4161.t1;Cre03.g207400.t1.1;g4161.t1;g4161.t1;Cre03.g207400.t1.1"		
+Cre03.g148100	"GMM:28.2;GMM:21.2"	"DNA.repair;redox.ascorbate and glutathione"					"Cre03.g148100.t1.1;g3012.t1;Cre03.g148100.t1.1;g3012.t1"		
+Cre03.g209505	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre19.g755700.t1.1;SNRK2.5;CKIN2.5;g4453.t1;Cre19.g755700.t1.2"	SNRK2E	"Mediates abiotic stress responses"
+Cre03.g175550			Mitochondrion				"g3624.t1;g3624.t1"		
+Cre03.g173550			Mitochondrion				"Cre03.g173550.t1.1;g3579.t1"		
+Cre03.g167712	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"							
+Cre03.g143787			Mitochondrion				"g2851.t1;g2851.t1;g2851.t1;g2851.t1"		
+Cre03.g207500							"g4159.t1;g4159.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre03.g199759	GMM:31.4	"cell.vesicle transport"					"GEX5;g4364.t1;Cre19.g751850.t1.1;ORP3A;Cre19.g751850.t1.2;Cre19.g751850.t1.1;Cre19.g751850.t1.2;ORP3A;GEX5;g4364.t1"		"Homologous to Arabidopsis oxysterol-binding protein. ts lethal mutations isolated (PMID 25336509);Homologous to Arabidopsis oxysterol-binding protein. ts lethal mutations isolated (PMID 25336509)"
+Cre03.g183400			Chloroplast				g3801.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g180800	"GMM:35.1.25;GMM:27.3.67"	"not assigned.no ontology.paired amphipathic helix repeat-containing protein;RNA.regulation of transcription.putative transcription regulator"	Chloroplast	GO:0006355	"regulation of transcription, DNA-templated"	HDA16	"g3747.t1;HDA16;g3747.t1;HDA16;HDA16;g3747.t1;g3747.t1;HDA16;g3747.t1;HDA16;HDA16;g3747.t1"		"Histone deacetylase complex, SIN3 component, ChromDB SNT3401;Histone deacetylase complex, SIN3 component, ChromDB SNT3401;Histone deacetylase complex, SIN3 component, ChromDB SNT3401;Histone deacetylase complex, SIN3 component, ChromDB SNT3401;Histone deacetylase complex, SIN3 component, ChromDB SNT3401;Histone deacetylase complex, SIN3 component, ChromDB SNT3401"
+Cre03.g167050						PDX3	"PDX3;g3428.t1"		"Pyridoxin (vitamin B6) biosynthesis protein, SNO glutamine amidotransferase"
+Cre03.g206705	GMM:29.5.11	protein.degradation.ubiquitin					"g4427.t1;g4427.t1"		
+Cre03.g156800							"Cre03.g156800.t1.1;g3201.t1;g3201.t1;Cre03.g156800.t1.1;Cre03.g156800.t1.1;g3201.t1;g3201.t1;Cre03.g156800.t1.1"		
+Cre03.g168550	GMM:34.3	"transport.amino acids"	Chloroplast			AOT3	"g3468.t1;AOT3;AOT3;g3468.t1"		"Amino acid/polyamine transporter; belongs to AAAP family of amino acid/auxin permeases; most similar to plant relatives and Ostreococcus AOT3; probably organelle-targeted;Amino acid/polyamine transporter; belongs to AAAP family of amino acid/auxin permeases; most similar to plant relatives and Ostreococcus AOT3; probably organelle-targeted"
+Cre03.g188800			Chloroplast				"g3910.t1;g3910.t1;g3910.t1"		"NAPRTase (EC:2.4.2.11) is the rate limiting enzyme that catalyses the first reaction in the NAD salvage synthesis;NAPRTase (EC:2.4.2.11) is the rate limiting enzyme that catalyses the first reaction in the NAD salvage synthesis;NAPRTase (EC:2.4.2.11) is the rate limiting enzyme that catalyses the first reaction in the NAD salvage synthesis"
+Cre03.g184600	GMM:27.3.60	"RNA.regulation of transcription.NIN-like bZIP-related family"	Mitochondrion			RWP7	"g3825.t1;RWP7;RWP7;g3825.t1;RWP7;g3825.t1;RWP7;g3825.t1"	"RWP7;RWP7;RWP7;RWP7"	"putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor"
+Cre03.g146147	"GMM:20.2.5;GMM:1.1.1.2"	"stress.abiotic.light;PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast				"Cre01.g060850.t1.1;PSBS3;Cre01.g060850.t1.2;g2972.t1"		"Similar to PsbS1 and PsbS2 which are involved in resistance to high light and UV-B"
+Cre03.g204602							g4224.t1		
+Cre03.g164050	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN15-1	"KIN12-1;g3363.t1;KIN15-1"	KIN15A	"kinesin-15 family, a new family separated from the standard polyphyletic kinesin-12 family (PMID: 16481395)"
+Cre03.g160350	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	ANK7	"g3285.t1;Cre03.g160350.t1.1;ANK7"		"protein of unknown function with ankyrin repeats"
+Cre03.g171950	GMM:4.1.15	"glycolysis.cytosolic branch.phospho-enol-pyruvate carboxylase (PEPC)"		"GO:0015977;GO:0008964;GO:0006099"	"carbon fixation;phosphoenolpyruvate carboxylase activity;tricarboxylic acid cycle"	PEPC2	"g3544.t1;PPC2;PPC2;g3544.t1;g3544.t1;PPC2;g3544.t1;PPC2;PPC2;g3544.t1;PPC2;g3544.t1"	"PEPC2;PEPC2;PEPC2;PEPC2;PEPC2;PEPC2"	"PEP carboxylase, isoform 2 [Accession number AAS01721];;PEP carboxylase, isoform 2 [Accession number AAS01721];;PEP carboxylase, isoform 2 [Accession number AAS01721];;PEP carboxylase, isoform 2 [Accession number AAS01721];;PEP carboxylase, isoform 2 [Accession number AAS01721];;PEP carboxylase, isoform 2 [Accession number AAS01721];"
+Cre03.g208304									
+Cre03.g191600			Mitochondrion				"g3965.t1;g3965.t1;g3965.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre03.g186100				"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		g3856.t1		
+Cre03.g146287							"g2979.t1;Cre01.g061200.t1.1;Cre01.g061200.t1.2;Cre01.g061200.t1.2;g2979.t1;Cre01.g061200.t1.1;g2979.t1;Cre01.g061200.t1.1;Cre01.g061200.t1.2;g2979.t1;Cre01.g061200.t1.1;Cre01.g061200.t1.2"		
+Cre03.g191050	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"	RAN1	"RAN1;Cre03.g191050.t1.1;g3954.t1"	RAN1	"Expressed Protein. Ran-type GTPase, involved in nucleo-cytoplasmic trafficking; found in the flagellar proteome [PMID: 15998802]"
+Cre03.g187300				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g3880.t1		
+Cre03.g203050			Mitochondrion				"g4258.t1;g4258.t1"		
+Cre03.g149650	"GMM:17.1.1.1.10;GMM:16.1.4.10"	"hormone metabolism.abscisic acid.synthesis-degradation.synthesis.9-cis-epoxycarotenoid dioxygenase;secondary metabolism.isoprenoids.carotenoids.carotenoid cleavage dioxygenase"	"Secretory pathway"			CCD1	"CCD1;g3044.t1"		"related to carotenoid 9,1-9',1' cleavage dioxygenase; homologue in higher plants participates in abscisic acid biosynthesis; could play a similar role (PMID: 16327238)"
+Cre03.g183000			"Secretory pathway"				"Cre03.g183000.t1.1;g3793.t1"		
+Cre03.g211297			Chloroplast				"g4470.t1;Cre19.g756450.t1.1;Cre19.g756450.t1.1;g4470.t1;Cre19.g756450.t1.1;g4470.t1"		
+Cre03.g150050			Chloroplast				g3052.t1		
+Cre03.g168000							"g3455.t1;Cre03.g168000.t1.1;Cre03.g168000.t1.1;g3455.t1"		
+Cre03.g168605	"GMM:34.14;GMM:29.1.30;GMM:23.5.2"	"transport.unspecified cations;protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase"		GO:0003723	"RNA binding"				
+Cre03.g177150			Chloroplast				"Cre03.g177150.t1.1;g3662.t1"		
+Cre03.g173132						CSB19			
+Cre03.g159300							g3262.t1		
+Cre03.g203793			Chloroplast				"Cre19.g753400.t1.1;GT90-35;GT90F35;g4400.t1;g4400.t1;GT90F35;GT90-35;Cre19.g753400.t1.1;GT90F35;GT90-35;g4400.t1;Cre19.g753400.t1.1"		
+Cre03.g183350	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		GO:0005524	"ATP binding"		"SRH7;g3800.t1;SRH7;g3800.t1;g3800.t1;SRH7"		"SNF2-related helicase. ChromoDB CHR348;SNF2-related helicase. ChromoDB CHR348;SNF2-related helicase. ChromoDB CHR348"
+Cre03.g156400	GMM:33.99	development.unspecified	Mitochondrion	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	smm8	"g3192.t1;SMM8;Cre03.g156400.t1.1;SMM8;Cre03.g156400.t1.1;g3192.t1"		
+Cre03.g145667			Mitochondrion				"Cre01.g059700.t1.1;g2948.t1;Cre01.g059700.t1.1;g2948.t1"		
+Cre03.g212641	"GMM:27.3.72;GMM:27.3.54"	"RNA.regulation of transcription.Transcriptional Adaptor Zinc Bundle (TAZ) domain family;RNA.regulation of transcription.histone acetyltransferases"		"GO:0008270;GO:0006355;GO:0005634;GO:0004402;GO:0003712"	"zinc ion binding;regulation of transcription, DNA-templated;nucleus;histone acetyltransferase activity;transcription cofactor activity"		"g4482.t1;Cre19.g757000.t1.2;Cre19.g757000.t1.1;Cre19.g757000.t1.1;g4482.t1;Cre19.g757000.t1.2;Cre19.g757000.t1.1;g4482.t1;Cre19.g757000.t1.2;Cre19.g757000.t1.1;g4482.t1;Cre19.g757000.t1.2"		
+Cre03.g179400			"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT17	"g3713.t1;MFT17;Cre03.g179400.t1.1"		Permease
+Cre03.g176900			Mitochondrion				"g3656.t1;g3656.t1;g3656.t1"		
+Cre03.g180050							g3732.t1		
+Cre03.g174450			Chloroplast			PWR1			
+Cre03.g190500	"GMM:26.3.1;GMM:26.3;GMM:2.2.2.1"	"misc.gluco-, galacto- and mannosidases.alpha-galactosidase;misc.gluco-, galacto- and mannosidases;major CHO metabolism.degradation.starch.starch cleavage"	"Secretory pathway"	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	GLC2A	"g3944.t1;GLH1;Cre03.g190500.t1.1;RSW3;RSW3;GLH1;Cre03.g190500.t1.1;g3944.t1;g3944.t1;RSW3;Cre03.g190500.t1.1;GLH1"	"GLC2A;GLC2A;GLC2A"	"belongs to GH31 family; gate-keeper for glycoprotein release to Golgi;belongs to GH31 family; gate-keeper for glycoprotein release to Golgi;belongs to GH31 family; gate-keeper for glycoprotein release to Golgi"
+Cre03.g204353	"GMM:30.5;GMM:3.5;GMM:29.3.4.99"	"signalling.G-proteins;minor CHO metabolism.others;protein.targeting.secretory pathway.unspecified"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"		"Cre19.g753650.t1.2;Cre19.g753650.t1.1;g4405.t1"		
+Cre03.g211857	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"	Chloroplast				"g4475.t1;Cre19.g756700.t1.1"		
+Cre03.g152350			Chloroplast				"g3101.t1;g3101.t1"		
+Cre03.g154800			Mitochondrion				"g3155.t1;Cre03.g154800.t1.1"		
+Cre03.g204601	GMM:23.3.2.1	"nucleotide metabolism.salvage.nucleoside kinases.adenosine kinase"		"GO:0006166;GO:0004001"	"purine ribonucleoside salvage;adenosine kinase activity"	CPK3	"CPK3;g4223.t1;Cre03.g204550.t1.3"	FAP278	"Carbohydrate/purine kinase and Flagellar Associated Protein similar to adenosine kinase; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 15738400]"
+Cre03.g161500	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		g3310.t1		
+Cre03.g146807			"Secretory pathway"				"g3005.t1;Cre01.g062450.t1.2;Cre01.g062450.t1.1"		
+Cre03.g159500	"GMM:22.1.1;GMM:13.1.3.5.5"	"polyamine metabolism.synthesis.ornithine decarboxylase;amino acid metabolism.synthesis.aspartate family.lysine.diaminopimelate decarboxylase"	Mitochondrion	GO:0003824	"catalytic activity"	ODC1	"g3265.t5;Cre03.g159500.t1.1;ODC1;g3265.t5;Cre03.g159500.t1.1;ODC1;Cre03.g159500.t1.1;g3265.t5;ODC1;Cre03.g159500.t1.1;g3265.t5;ODC1;Cre03.g159500.t1.1;g3265.t5;ODC1;g3265.t5;ODC1;Cre03.g159500.t1.1"	"ODC1;ODC1;ODC1;ODC1;ODC1;ODC1"	"Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region; this is ODC1a, not the most abundant of the 4 splicing va;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region; this is ODC1a, not the most abundant of the 4 splicing va;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region; this is ODC1a, not the most abundant of the 4 splicing va;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region; this is ODC1a, not the most abundant of the 4 splicing va;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region; this is ODC1a, not the most abundant of the 4 splicing va;Pyridoxal-dependent decarboxylase acting on ornithine to produce putrescine, first step in polyamine biosynthesis(PMID: 11950995); fully active, based on conservation of important residues (PMID: 16847581), in particular a conserved lysine residue which is known, in mouse ODC, to be the site of attachment of the pyridoxal-phosphate group, a stretch of three consecutive glycine residues that has been proposed to be part of a substrate-binding region; this is ODC1a, not the most abundant of the 4 splicing va"
+Cre03.g155200	GMM:13.1.6.2.1	"amino acid metabolism.synthesis.aromatic aa.phenylalanine and tyrosine.chorismate mutase"	Chloroplast	"GO:0009073;GO:0004106"	"aromatic amino acid family biosynthetic process;chorismate mutase activity"	CHM1	"CHM1;g3164.t1;g3164.t1;CHM1;g3164.t1;CHM1"	"CHM1;CHM1;CHM1"	"putative chorismate mutase (EC 5.4.99.5), eukaryotic type (AroQ), similar to the rice putative chorismate mutase (GenBank NP_916250); predicted mitochondrial by Target-P, but plastidic by homology; arabidopsis protein is CM1;putative chorismate mutase (EC 5.4.99.5), eukaryotic type (AroQ), similar to the rice putative chorismate mutase (GenBank NP_916250); predicted mitochondrial by Target-P, but plastidic by homology; arabidopsis protein is CM1;putative chorismate mutase (EC 5.4.99.5), eukaryotic type (AroQ), similar to the rice putative chorismate mutase (GenBank NP_916250); predicted mitochondrial by Target-P, but plastidic by homology; arabidopsis protein is CM1"
+Cre03.g152000	"GMM:18.1;GMM:17.1.1"	"Co-factor and vitamine metabolism.molybdenum cofactor;hormone metabolism.abscisic acid.synthesis-degradation"		"GO:0030170;GO:0030151;GO:0003824"	"pyridoxal phosphate binding;molybdenum ion binding;catalytic activity"	MCS1	"g3093.t1;ABA3;MCS1;Cre03.g152000.t1.1;g3093.t1;ABA3;MCS1;Cre03.g152000.t1.1"	"MCS1;MCS1"	"similar to N-terminus of Arabidopsis ABA3;similar to N-terminus of Arabidopsis ABA3"
+Cre03.g143827	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"	Mitochondrion			FBB7	"g2855.t1;Cre01.g055900.t1.1;FBB7;g2855.t1;FBB7;Cre01.g055900.t1.1"	"FBB7;FBB7"	"Conserved protein found in ciliated organisms, unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation;Conserved protein found in ciliated organisms, unknown function; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation"
+Cre03.g157950							"g3233.t1;g3233.t1"		
+Cre03.g202851			Mitochondrion				g4264.t1		
+Cre03.g193250				"GO:0016772;GO:0006388"	"transferase activity, transferring phosphorus-containing groups;tRNA splicing, via endonucleolytic cleavage and ligation"		"g3998.t1;Cre03.g193250.t1.1"		
+Cre03.g196350							"Cre03.g196350.t1.1;g4067.t1"		
+Cre03.g213425	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"				COX23	"g4489.t1;Cre19.g757300.t1.1;Cre19.g757300.t1.2;COX23"	COX23	"Similar to yeast mitochondrial intermembrane space protein that functions in mitochondrial copper homeostasis, essential for functional cytochrome oxidase expression; homologous to Cox17p; Cox23p putative cytochrome c oxidase assembly factor 23;"
+Cre03.g204250	GMM:13.2.3.4	"amino acid metabolism.degradation.aspartate family.methionine"		"GO:0055114;GO:0051287;GO:0006730;GO:0004013"	"oxidation-reduction process;NAD binding;one-carbon metabolic process;adenosylhomocysteinase activity"	SAH1	"g4230.t1;Cre03.g204250.t1.1;g4230.t1;Cre03.g204250.t1.1;g4230.t1;Cre03.g204250.t1.1;g4230.t1;Cre03.g204250.t1.1"	"SAH1;SAH1;SAH1;SAH1"	"found in the flagellar proteome [PMID: 15998802]; ts-lethal mutant was isolated (PMID 29743196);found in the flagellar proteome [PMID: 15998802]; ts-lethal mutant was isolated (PMID 29743196);found in the flagellar proteome [PMID: 15998802]; ts-lethal mutant was isolated (PMID 29743196);found in the flagellar proteome [PMID: 15998802]; ts-lethal mutant was isolated (PMID 29743196)"
+Cre03.g210961	"GMM:34.99;GMM:29.3.4.99"	"transport.misc;protein.targeting.secretory pathway.unspecified"					"Cre19.g756300.t1.1;g4467.t1;Cre19.g756300.t1.2"		
+Cre03.g169400	"GMM:3.5;GMM:10.1.5"	"minor CHO metabolism.others;cell wall.precursor synthesis.UXS"		"GO:0055114;GO:0016616;GO:0006694;GO:0003854"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	UXS1	"g3487.t1;GAD1;Cre03.g169400.t1.1"	UXS1	"UDP-D-glucuronic acid decarboxylase (UDP-D-glucuronate decarboxylase)"
+Cre03.g195200			Chloroplast			CGL76	"HLD1;g4042.t1;Cre03.g195200.t1.1"	CGL76	
+Cre03.g170250	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004722"	"protein dephosphorylation;protein serine/threonine phosphatase activity"		"PPP12;g3505.t1"		
+Cre03.g146547			"Secretory pathway"				"g2992.t1;Cre01.g061850.t1.2;Cre01.g061850.t1.1"		
+Cre03.g144627	GMM:13.1.3.4.1	"amino acid metabolism.synthesis.aspartate family.methionine.cystathionine gamma-synthase"	Chloroplast	GO:0030170	"pyridoxal phosphate binding"	CGS1	"Cre60.g792150.t1.1;CGS1;Cre60.g792150.t1.2;g2895.t1;g2895.t1;Cre60.g792150.t1.2;CGS1;Cre60.g792150.t1.1"	"CGS1;CGS1"	"O-succinylhomoserine (thiol)-lyase; Homoserine O-transsuccinylase; O-succinylhomoserine synthase; Cystathionine synthetase. METB homolog, possibly localized to chloroplast. Catalyzes second step of methionine from homoserin;O-succinylhomoserine (thiol)-lyase; Homoserine O-transsuccinylase; O-succinylhomoserine synthase; Cystathionine synthetase. METB homolog, possibly localized to chloroplast. Catalyzes second step of methionine from homoserin"
+Cre03.g203625									
+Cre03.g200050						CAL1	"Cre03.g200050.t1.1;g4326.t1;CAL1"	CAL1	
+Cre03.g176500			Mitochondrion				"g3647.t1;Cre03.g176500.t1.1"		
+Cre03.g145147			"Secretory pathway"	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"		"Cre01.g058450.t1.1;TRP8;g2921.t1;Cre01.g058450.t1.1;TRP8;g2921.t1"		"Transient receptor potential channel in TRPV subfamily;Transient receptor potential channel in TRPV subfamily"
+Cre03.g192050				"GO:0033573;GO:0016020;GO:0006827;GO:0005381"	"high-affinity iron permease complex;membrane;high-affinity iron ion transmembrane transport;iron ion transmembrane transporter activity"	FTR1	"g3975.t1;g3975.t1"	"FTR1;FTR1"	"Iron transporter Ftr1, Ftr1p, Plasma membrane iron permease; Similarity to yeast FTR1; expression induced during Fe deficiency;;Iron transporter Ftr1, Ftr1p, Plasma membrane iron permease; Similarity to yeast FTR1; expression induced during Fe deficiency;"
+Cre03.g172250	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Mitochondrion	GO:0005525	"GTP binding"		g3550.t1		
+Cre03.g144687	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast				"Cre60.g792300.t1.1;g2898.t1;Cre60.g792300.t1.1;g2898.t1"		
+Cre03.g179820							"g3722.t1;g3722.t1"		"Protein of unknown function with winged helix-turn-helix DNA-binding domain; Previously identfied as a paralog of NON1 (Cre16.g655050), but similarity is limited to a small domain;;Protein of unknown function with winged helix-turn-helix DNA-binding domain; Previously identfied as a paralog of NON1 (Cre16.g655050), but similarity is limited to a small domain;"
+Cre03.g160950							g3297.t1		
+Cre03.g175400	GMM:4.1.3	"glycolysis.cytosolic branch.glucose-6-phosphate isomerase"	Chloroplast	"GO:0006096;GO:0006094;GO:0004347"	"glycolytic process;gluconeogenesis;glucose-6-phosphate isomerase activity"	PGI1	"PGI;Cre03.g175400.t1.1;g3621.t2;PGI;Cre03.g175400.t1.1;g3621.t2;g3621.t2;Cre03.g175400.t1.1;PGI;g3621.t2;Cre03.g175400.t1.1;PGI"	"PGI1;PGI1;PGI1;PGI1"	"PGI, phosphohexose isomerase, glucose-6-phosphate isomerase [EC:5.3.1.9]; belongs to sugar isomerase (SIS) family; ts-lethal mutant was isolated;PGI, phosphohexose isomerase, glucose-6-phosphate isomerase [EC:5.3.1.9]; belongs to sugar isomerase (SIS) family; ts-lethal mutant was isolated;PGI, phosphohexose isomerase, glucose-6-phosphate isomerase [EC:5.3.1.9]; belongs to sugar isomerase (SIS) family; ts-lethal mutant was isolated;PGI, phosphohexose isomerase, glucose-6-phosphate isomerase [EC:5.3.1.9]; belongs to sugar isomerase (SIS) family; ts-lethal mutant was isolated"
+Cre03.g171179			Mitochondrion				"g3527.t1;Cre03.g171179.t1.1"		
+Cre03.g157550	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion						
+Cre03.g199423	GMM:23.1.1.4	"nucleotide metabolism.synthesis.pyrimidine.dihydroorotate dehydrogenase"		"GO:0055114;GO:0016627;GO:0005737"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;cytoplasm"	PYR4	"Cre19.g751650.t1.2;g4361.t1;Cre19.g751650.t1.1;PYR4;Cre19.g751650.t1.2;Cre19.g751650.t1.1;g4361.t1;PYR4"	"PYR4;PYR4"	"Putative dihydroorotate dehydrogenase or dihydropyrimidine dehydrogenase (PYRD), probably mitochondrial;Putative dihydroorotate dehydrogenase or dihydropyrimidine dehydrogenase (PYRD), probably mitochondrial"
+Cre03.g145947			Mitochondrion				"g2962.t1;Cre01.g060400.t1.1"		
+Cre03.g204900			Mitochondrion	GO:0006282	"regulation of DNA repair"		"g4215.t1;g4215.t1;g4215.t1"		
+Cre03.g146087							"g2969.t1;Cre01.g060700.t1.1"		
+Cre03.g177600			"Secretory pathway"	"GO:0055114;GO:0050660;GO:0016491;GO:0016020;GO:0003885"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;membrane;D-arabinono-1,4-lactone oxidase activity"		"g3672.t1;g3672.t1;g3672.t1"		
+Cre03.g144424	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	"GO:0007275;GO:0006355;GO:0003700"	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		g2885.t1		
+Cre03.g194250	GMM:29.5	protein.degradation		"GO:0006511;GO:0005622;GO:0004843"	"ubiquitin-dependent protein catabolic process;intracellular;thiol-dependent ubiquitin-specific protease activity"		"Cre03.g194250.t1.1;g4020.t1"		
+Cre03.g145067			Mitochondrion						
+Cre03.g176651				GO:0005515	"protein binding"	MYSM1	"g3650.t1;Cre03.g176650.t1.3"	MYSM1	
+Cre03.g202200							"g4278.t1;g4278.t1;g4278.t1;g4278.t1;g4278.t1;g4278.t1"		
+Cre03.g166150							g3410.t1		
+Cre03.g144404			Chloroplast	GO:0006464	"cellular protein modification process"		"g2884.t1;Cre01.g057250.t1.1;g2884.t1;Cre01.g057250.t1.1"		
+Cre03.g177850	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion				"g3679.t1;Cre03.g177850.t1.1"		
+Cre03.g207153							"g4431.t1;Cre19.g754800.t1.1;Cre19.g754800.t1.2"		
+Cre03.g154050							"ABCA1B;g3138.t1;Cre03.g154050.t1.1"		"One of three tandem paralogs (Cre03.g154000, Cre03.g154050, Cre03.g154100);"
+Cre03.g196000				GO:0033588	"Elongator holoenzyme complex"		g4060.t1		
+Cre03.g175100							"g3616.t2;g3616.t2;g3616.t2;g3616.t2;g3616.t2;g3616.t2;g3616.t2;g3616.t2;g3616.t2;g3616.t2;g3616.t2"		
+Cre03.g153900				GO:0071949	"FAD binding"	FMO11	"FMO11;Cre03.g153900.t1.1;g3135.t1;Cre03.g153900.t1.1;g3135.t1;FMO11;FMO11;Cre03.g153900.t1.1;g3135.t1"		"Flavin-containing monooxygenase, possibly a kyneurenine 3-monooxygenase;Flavin-containing monooxygenase, possibly a kyneurenine 3-monooxygenase;Flavin-containing monooxygenase, possibly a kyneurenine 3-monooxygenase"
+Cre03.g200431			"Secretory pathway"				"g4370.t1;Cre19.g752100.t1.2;Cre19.g752100.t1.1"		
+Cre03.g161081			Chloroplast						
+Cre03.g174200				GO:0005515	"protein binding"		"g3594.t1;g3594.t1"		
+Cre03.g194850	"GMM:8.2.9;GMM:8.1.9;GMM:6.3"	"TCA / organic transformation.other organic acid transformations.cyt MDH;TCA / organic transformation.TCA.malate DH;gluconeogenesis / glyoxylate cycle.malate dehydrogenase"	Chloroplast	"GO:0055114;GO:0019752;GO:0016616;GO:0016491"	"oxidation-reduction process;carboxylic acid metabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;oxidoreductase activity"	MDN1	"g4035.t1;MDH1;Cre03.g194850.t1.1;MDN1;MDH1;MDN1;Cre03.g194850.t1.1;g4035.t1;MDN1;g4035.t1;Cre03.g194850.t1.1;MDH1;MDH1;Cre03.g194850.t1.1;g4035.t1;MDN1;MDN1;MDH1;Cre03.g194850.t1.1;g4035.t1;MDH1;Cre03.g194850.t1.1;g4035.t1;MDN1;g4035.t1;Cre03.g194850.t1.1;MDH1;MDN1;g4035.t1;MDN1;MDH1;Cre03.g194850.t1.1;MDN1;Cre03.g194850.t1.1;MDH1;g4035.t1;g4035.t1;MDH1;Cre03.g194850.t1.1;MDN1;MDN1;MDH1;Cre03.g194850.t1.1;g4035.t1;Cre03.g194850.t1.1;MDH1;g4035.t1;MDN1;MDN1;g4035.t1;Cre03.g194850.t1.1;MDH1;g4035.t1;MDH1;Cre03.g194850.t1.1;MDN1;MDN1;Cre03.g194850.t1.1;MDH1;g4035.t1;MDN1;g4035.t1;MDH1;Cre03.g194850.t1.1;MDH1;Cre03.g194850.t1.1;g4035.t1;MDN1;MDH1;Cre03.g194850.t1.1;g4035.t1;MDN1"	"MDH1;MDH1;MDH1;MDH1;MDH1;MDH1;MDH1;MDH1;MDH1;MDH1;MDH1;MDH1;MDH1;MDH1;MDH1;MDH1;MDH1;MDH1"	"Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched;Malate dehydrogenase (MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; sodium acetate-induced in Chlamydomonas reinhardtii; nuclear gene; gene product is localized in the chloroplast; Genbank entry U42979, as MDH2; present in thylakoid-enriched"
+Cre03.g184200			Chloroplast				"g3817.t1;g3817.t1;g3817.t1"		
+Cre03.g176200				GO:0005515	"protein binding"		"g3639.t1;Cre03.g176200.t1.1"		
+Cre03.g201250				GO:0003676	"nucleic acid binding"		"Cre03.g201250.t1.1;g4300.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre03.g172600							"Cre03.g172600.t1.1;g3559.t1;g3559.t1;Cre03.g172600.t1.1"		
+Cre03.g146687	GMM:27.1	RNA.processing					"g2999.t1;Cre01.g062200.t1.2;Cre01.g062200.t1.1"		
+Cre03.g182900			"Secretory pathway"	GO:0016020	membrane		"Cre03.g182900.t1.1;g3791.t1"		
+Cre03.g190650			Mitochondrion				"g3946.t1;g3946.t1;g3946.t1"		
+Cre03.g145427	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast				"g2936.t1;Cre01.g059150.t1.1"		
+Cre03.g158150	GMM:27.4	"RNA.RNA binding"		"GO:0006396;GO:0003723;GO:0003676"	"RNA processing;RNA binding;nucleic acid binding"		"g3237.t1;g3237.t1;g3237.t1;g3237.t1"		
+Cre03.g156950	GMM:9.5	"mitochondrial electron transport / ATP synthesis.cytochrome c reductase"		"GO:0070469;GO:0022900;GO:0005743"	"respiratory chain;electron transport chain;mitochondrial inner membrane"	QCR8	g3204.t1	QCR8	"Subunit 8 of mitochondrial Complex III (ubiquinol:cytochrome c oxidoreductase); Homolog of human QCRQ, bovine subunit VII and yeast QCR8;"
+Cre03.g150151			Mitochondrion			NRT2.5	"NRT2.5;g3054.t1"	NRT2E	"next to NRT2.4"
+Cre03.g155850			Chloroplast				"g3179.t1;g3179.t1;g3179.t1;g3179.t1"		
+Cre03.g145367							"Cre01.g059000.t1.1;g2933.t1;Cre01.g059000.t1.2;Cre01.g059000.t1.1;Cre01.g059000.t1.2;g2933.t1;Cre01.g059000.t1.1;Cre01.g059000.t1.2;g2933.t1"		
+Cre03.g192550	GMM:28.2	DNA.repair		"GO:0030870;GO:0016887;GO:0006281;GO:0005634;GO:0000723"	"Mre11 complex;ATPase activity;DNA repair;nucleus;telomere maintenance"	RAD50	"RAD50;g3985.t1;RAD50;g3985.t1;g3985.t1;RAD50"	"RAD50;RAD50;RAD50"	"Part of MRE11-RAD50-NBS1 complex. Functions in DNA damage repair and signaling.;Part of MRE11-RAD50-NBS1 complex. Functions in DNA damage repair and signaling.;Part of MRE11-RAD50-NBS1 complex. Functions in DNA damage repair and signaling."
+Cre03.g155051	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"	Mitochondrion	"GO:0030170;GO:0019752;GO:0016831"	"pyridoxal phosphate binding;carboxylic acid metabolic process;carboxy-lyase activity"		"SPA1;g3161.t1"		"Sphinganine-1-phosphate aldolase/lyase and pyridoxal phosphate-dependent decarboxylase (possible tyrosine decarboxylase activity)."
+Cre03.g154700			Chloroplast				"g3152.t1;g3152.t1;g3152.t1"		
+Cre03.g155700	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast				g3176.t1		
+Cre03.g197700	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		"GO:0005634;GO:0005515"	"nucleus;protein binding"	HLM8	"Cre03.g197700.t1.1;g4095.t1;HLM8;HLM8;g4095.t1;Cre03.g197700.t1.1;Cre03.g197700.t1.1;HLM8;g4095.t1;HLM8;g4095.t1;Cre03.g197700.t1.1;HLM8;g4095.t1;Cre03.g197700.t1.1;HLM8;g4095.t1;Cre03.g197700.t1.1;HLM8;g4095.t1;Cre03.g197700.t1.1"		"Protein contains a SET domain with similarity to Arabidopsis thaliana ATX1, SET27, SDG27 (At2g3165). ChromoDB SDG344;Protein contains a SET domain with similarity to Arabidopsis thaliana ATX1, SET27, SDG27 (At2g3165). ChromoDB SDG344;Protein contains a SET domain with similarity to Arabidopsis thaliana ATX1, SET27, SDG27 (At2g3165). ChromoDB SDG344;Protein contains a SET domain with similarity to Arabidopsis thaliana ATX1, SET27, SDG27 (At2g3165). ChromoDB SDG344;Protein contains a SET domain with similarity to Arabidopsis thaliana ATX1, SET27, SDG27 (At2g3165). ChromoDB SDG344;Protein contains a SET domain with similarity to Arabidopsis thaliana ATX1, SET27, SDG27 (At2g3165). ChromoDB SDG344;Protein contains a SET domain with similarity to Arabidopsis thaliana ATX1, SET27, SDG27 (At2g3165). ChromoDB SDG344"
+Cre03.g206202	"GMM:31.3;GMM:29.4.1;GMM:29.4"	"cell.cycle;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4189.t1;Cre03.g206100.t1.3"		
+Cre03.g212417	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"					"Cre19.g756900.t1.2;Cre19.g756900.t1.1;g4480.t1;Cre19.g756900.t1.2;g4480.t1;Cre19.g756900.t1.1"		
+Cre03.g163250			Chloroplast				g3345.t1		
+Cre03.g204150	GMM:31.6.1.3.2.2	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B"		GO:0005515	"protein binding"	IFT80	"g4233.t1;FAP167;Cre03.g204150.t1.1;Cre03.g204150.t1.1;FAP167;g4233.t1"	"IFT80;IFT80"	"Component of IFT-B2 particle;Component of IFT-B2 particle"
+Cre03.g197600							"g4093.t1;g4093.t1;g4093.t1"		
+Cre03.g162366	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0055114;GO:0016491;GO:0005507"	"oxidation-reduction process;oxidoreductase activity;copper ion binding"		"g3328.t1;Cre03.g162350.t1.2"		
+Cre03.g174650	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB20			
+Cre03.g206500			"Secretory pathway"				g4181.t1		
+Cre03.g157400	GMM:34.15	transport.potassium	Chloroplast				"g3214.t1;Cre03.g157400.t1.1;Cre03.g157400.t1.1;g3214.t1"		
+Cre03.g185050	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP53	"g3835.t1;CFAP53;CFAP53;g3835.t1;CFAP53;g3835.t1"	"FAP53;FAP53;FAP53"	"Found in the flagellar proteome as FAP53 [PMID: 15998802]; Found in the basal body proteome as CFAP53 [PMID: 28781053]; Related to CFAP53 in humans;Found in the flagellar proteome as FAP53 [PMID: 15998802]; Found in the basal body proteome as CFAP53 [PMID: 28781053]; Related to CFAP53 in humans;Found in the flagellar proteome as FAP53 [PMID: 15998802]; Found in the basal body proteome as CFAP53 [PMID: 28781053]; Related to CFAP53 in humans"
+Cre03.g203800			Chloroplast				"Cre03.g203800.t1.1;g4240.t1"		
+Cre03.g172800	"GMM:27.3.99;GMM:27.3.12"	"RNA.regulation of transcription.unclassified;RNA.regulation of transcription.C3H zinc finger family"		GO:0046872	"metal ion binding"		"g3563.t1;Cre03.g172800.t1.1;Cre03.g172800.t1.1;g3563.t1;Cre03.g172800.t1.1;g3563.t1;g3563.t1;Cre03.g172800.t1.1"		
+Cre03.g159083									
+Cre03.g157751							g3229.t1		
+Cre03.g173800	GMM:3.5	"minor CHO metabolism.others"	Chloroplast	"GO:0009443;GO:0008478"	"pyridoxal 5'-phosphate salvage;pyridoxal kinase activity"	PDX2	"PDX2;PDXK1;g3584.t1;Cre03.g173800.t1.1;SOS4;PDXK1;Cre03.g173800.t1.1;g3584.t1;SOS4;PDX2;g3584.t1;Cre03.g173800.t1.1;SOS4;PDX2;PDXK1"	"PDX2;PDX2;PDX2"	"Involved in vitamin B6 biosynthesis; similar to putative ethylene-inducible protein; Orthologous to Arabidopsis AtSOS4;Involved in vitamin B6 biosynthesis; similar to putative ethylene-inducible protein; Orthologous to Arabidopsis AtSOS4;Involved in vitamin B6 biosynthesis; similar to putative ethylene-inducible protein; Orthologous to Arabidopsis AtSOS4"
+Cre03.g168600			Mitochondrion						
+Cre03.g205950	"GMM:4.3.16;GMM:4.1.16;GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4"	"glycolysis.unclear/dually targeted.phosphoenolpyruvate carboxykinase (PEPCK);glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g4192.t1;CRK5"		
+Cre03.g188050			Chloroplast				"Cre03.g188050.t1.1;g3896.t1"		
+Cre03.g203650			Mitochondrion				"g4244.t1;Cre03.g203650.t1.1"		
+Cre03.g144867							"Cre01.g057950.t1.2;g2907.t1;Cre01.g057950.t1.1"		
+Cre03.g198212									
+Cre03.g195410			"Secretory pathway"				"g4049.t1;Cre03.g195410.t1.1;g4049.t1;Cre03.g195410.t1.1"		
+Cre03.g206950	GMM:27.2	RNA.transcription	Chloroplast	GO:0003968	"RNA-directed RNA polymerase activity"		"g4171.t1;g4171.t1;g4171.t1;g4171.t1;g4171.t1"		
+Cre03.g149600	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG53	"CYG53;g3043.t1;CYG53;g3043.t1;g3043.t1;CYG53;CYG53;g3043.t1;g3043.t1;CYG53"		"Protein domain similar to membrane guanylyl cyclase [Oryzias latipes];Protein domain similar to membrane guanylyl cyclase [Oryzias latipes];Protein domain similar to membrane guanylyl cyclase [Oryzias latipes];Protein domain similar to membrane guanylyl cyclase [Oryzias latipes];Protein domain similar to membrane guanylyl cyclase [Oryzias latipes]"
+Cre03.g202350							g4273.t1		
+Cre03.g198850	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"	TL19	"Cre03.g198850.t1.1;g4352.t1;TL19"		"weak similarity to PsbP, the oxygen evolution enhancer of Photosystem II (OEE2)"
+Cre03.g182450	GMM:25.5	"C1-metabolism.methylenetetrahydrofolate dehydrogenase and methenyltetrahydrofolate cyclohydrolase"	Chloroplast	"GO:0055114;GO:0009396;GO:0004488;GO:0003824"	"oxidation-reduction process;folic acid-containing compound biosynthetic process;methylenetetrahydrofolate dehydrogenase (NADP+) activity;catalytic activity"				
+Cre03.g145727	GMM:29.1.1	"protein.aa activation.tyrosine-tRNA ligase"		"GO:0006418;GO:0005524;GO:0004812;GO:0000166"	"tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"		"Cre01.g059850.t1.2;Cre01.g059850.t1.1;g2951.t1;g2951.t1;Cre01.g059850.t1.1;Cre01.g059850.t1.2"		
+Cre03.g207150	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion				"g4166.t1;g4166.t1;g4166.t1;g4166.t1"		
+Cre03.g196600	GMM:28.2	DNA.repair		"GO:0007049;GO:0006281;GO:0005634"	"cell cycle;DNA repair;nucleus"	RAD17	"g4072.t1;RAD17;RAD17;g4072.t1"		
+Cre03.g160100	GMM:33.99	development.unspecified					"Cre03.g160100.t1.1;g3278.t1"		
+Cre03.g165850							"g3403.t1;Cre03.g165850.t1.1"		
+Cre03.g162200			Chloroplast				"Cre03.g162200.t1.1;g3324.t1"		
+Cre03.g194750							g4033.t1		
+Cre03.g202785			Mitochondrion						
+Cre03.g146107							"Cre01.g060750.t1.1;g2970.t1"		
+Cre03.g212977				"GO:0008270;GO:0006355;GO:0005634;GO:0004402;GO:0003712"	"zinc ion binding;regulation of transcription, DNA-templated;nucleus;histone acetyltransferase activity;transcription cofactor activity"		"Cre19.g757126.t1.1;g4485.t1;Cre19.g757126.t1.2;Cre19.g757126.t1.2;g4485.t1;Cre19.g757126.t1.1;Cre19.g757126.t1.1;g4485.t1;Cre19.g757126.t1.2;g4485.t1;Cre19.g757126.t1.1;Cre19.g757126.t1.2"		
+Cre03.g207937			Chloroplast						
+Cre03.g166500			Mitochondrion				"g3417.t1;Cre03.g166500.t1.1;g3417.t1;Cre03.g166500.t1.1;g3417.t1;Cre03.g166500.t1.1;g3417.t1;Cre03.g166500.t1.1"		
+Cre03.g199090							"g4347.t1;Cre03.g199090.t1.1;Cre03.g199090.t1.1;g4347.t1;g4347.t1;Cre03.g199090.t1.1"		
+Cre03.g166050	"GMM:15.2;GMM:15"	"metal handling.binding, chelation and storage;metal handling"		GO:0008430	"selenium binding"	SBD1	"Cre03.g166050.t1.1;SBD1;g3408.t1"	SBD1	"Selenium binding protein. GI:15485720. AJ401228.1. Over 50% identical with selenium binding protein of Medicago, Oryza and Arabidopsis [PMID: 12026169]"
+Cre03.g145107	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"		"g2919.t1;Cre01.g058350.t1.1;Cre01.g058350.t1.2;Cre01.g058350.t1.1;Cre01.g058350.t1.2;g2919.t1"		
+Cre03.g169950	GMM:27.3.57	"RNA.regulation of transcription.JUMONJI family"	"Secretory pathway"				"g3499.t1;g3499.t1;g3499.t1;g3499.t1"		
+Cre03.g202000	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN4-2	"KIN4-2;Cre03.g202000.t1.1;g4282.t1;KIN4-2;Cre03.g202000.t1.1;g4282.t1;KIN4-2;g4282.t1;Cre03.g202000.t1.1;g4282.t1;Cre03.g202000.t1.1;KIN4-2;g4282.t1;Cre03.g202000.t1.1;KIN4-2"	"KIN4B;KIN4B;KIN4B;KIN4B;KIN4B"	"kinesin-4 family;kinesin-4 family;kinesin-4 family;kinesin-4 family;kinesin-4 family"
+Cre03.g179961	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0008270;GO:0006260;GO:0005634;GO:0003887"	"zinc ion binding;DNA replication;nucleus;DNA-directed DNA polymerase activity"		"POLE1-1;g3729.t1"	POLE1	"ts-lethal mutant block at S/M"
+Cre03.g207713	"GMM:2.2.2.8;GMM:2.1.2.4"	"major CHO metabolism.degradation.starch.ISA3;major CHO metabolism.synthesis.starch.debranching"	Chloroplast	"GO:0043169;GO:0005975;GO:0004553;GO:0003824"	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	ISA3	"g4436.t1;Cre19.g755050.t1.1;ISA3"	ISA3	"Starch debranching enzyme; Misplaced, loosely branched chains are trimmed by this DBE from a maturing structure to allow polysaccharide crystallization;"
+Cre03.g174500	GMM:27.3.22	"RNA.regulation of transcription.homeobox transcription factor family (HB)"		"GO:0006355;GO:0006351;GO:0003677"	"regulation of transcription, DNA-templated;transcription, DNA-templated;DNA binding"	HDZ1	"HDZ1;g3601.t1;g3601.t1;HDZ1"	"HDZ1;HDZ1"	"HOXDDT class homeodomain protein; characterized by Lee et al. 28 [PMID: 1851927], given the name HDZ1. Volvox ortholog is 127455.;HOXDDT class homeodomain protein; characterized by Lee et al. 28 [PMID: 1851927], given the name HDZ1. Volvox ortholog is 127455."
+Cre03.g206800	"GMM:34.2;GMM:2.2.2.6"	"transport.sugars;major CHO metabolism.degradation.starch.transporter"	Mitochondrion	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	HXT1	"g4175.t1;HXT1;HXT1;g4175.t1"	"HXT1;HXT1"	"Highly similar to plant plastid hexose (glucose) transporters; corrected protein sequence is predicted chloroplast-targeted;Highly similar to plant plastid hexose (glucose) transporters; corrected protein sequence is predicted chloroplast-targeted"
+Cre03.g189550	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	ZIP3	"CrZIP8;g3925.t1;g3925.t1;CrZIP8"	"ZIP3;ZIP3"	"Similarity to ZIP GufA-like subfamily;Similarity to ZIP GufA-like subfamily"
+Cre03.g189100							"Cre03.g189100.t1.1;g3916.t1"		
+Cre03.g181550			Mitochondrion				"Cre03.g181550.t1.1;g3762.t1"		
+Cre03.g205850	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"	MFT6	"g4194.t1;Cre03.g205850.t1.1;MAE6;MFT6;MFT6;g4194.t1;MAE6;Cre03.g205850.t1.1"		"putative MATE efflux family protein, related to Arabidopsis putative integral membrane protein;putative MATE efflux family protein, related to Arabidopsis putative integral membrane protein"
+Cre03.g185550	GMM:1.3.9	"PS.calvin cycle.sedoheptulose bisphosphatase"	Chloroplast	"GO:0042578;GO:0042132;GO:0005975"	"phosphoric ester hydrolase activity;fructose 1,6-bisphosphate 1-phosphatase activity;carbohydrate metabolic process"	SEBP1	"g3845.t1;Cre03.g185550.t1.1;SBP1;SEBP1;g3845.t1;Cre03.g185550.t1.1;SEBP1;SBP1;g3845.t1;Cre03.g185550.t1.1;SEBP1;SBP1;SBP1;g3845.t1;Cre03.g185550.t1.1;SEBP1;SBP1;SEBP1;g3845.t1;Cre03.g185550.t1.1;SBP1;g3845.t1;Cre03.g185550.t1.1;SEBP1"	"SBP1;SBP1;SBP1;SBP1;SBP1;SBP1"	"Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme"
+Cre03.g152800							"AKR5;Cre03.g152800.t1.1;g3111.t1"		
+Cre03.g198600							"g4119.t1;Cre03.g198600.t1.1"		
+Cre03.g150900	GMM:27.1	RNA.processing					"g3071.t1;Cre03.g150900.t1.1;Cre03.g150900.t1.1;g3071.t1"		
+Cre03.g192950			Chloroplast				"Cre03.g192950.t1.1;g3992.t1;g3992.t1;Cre03.g192950.t1.1"		
+Cre03.g208558									
+Cre03.g164600	"GMM:34.1.2;GMM:34.1"	"transport.p- and v-ATPases.H+-exporting ATPase;transport.p- and v-ATPases"		"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"	PMA3	"Cre03.g164600.t1.1;PMA3;PMH1;ACA3;g3374.t1"	PMA3	
+Cre03.g165186			Chloroplast				"g3387.t1;Cre03.g165186.t1.1"		
+Cre03.g204129			"Secretory pathway"				"g4403.t1;Cre19.g753500.t1.1"		
+Cre03.g161363			Chloroplast				"Cre03.g161363.t1.1;g3307.t1"		
+Cre03.g144104							"Cre01.g056550.t1.1;g2868.t1;g2868.t1;Cre01.g056550.t1.1"		
+Cre03.g162701	"GMM:28.1;GMM:27.3.44"	"DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors"	Mitochondrion	GO:0005524	"ATP binding"		"g3335.t1;SRH5;Cre03.g162700.t1.3"		"SWI2/SNF2-like protein, ChromDB CHR347; Chromatin remodeling complex subunit R"
+Cre03.g151950			"Secretory pathway"			LZY1B	"Cre03.g151950.t1.1;LZY1B;g3092.t1"	LZY1B	"late zygote protein; the mRNA appears at about 90 min post fusion; possibly secreted; cysteine-rich; originally called class V [PMID: 1552907; Genbank S90874]; pseudogene duplicate LYZ1A is in tandem"
+Cre03.g167850			Chloroplast	GO:0005515	"protein binding"		"g3452.t1;Cre03.g167850.t1.1"		
+Cre03.g151000	"GMM:29.4;GMM:2.2.2.10;GMM:2.2.2"	"protein.postranslational modification;major CHO metabolism.degradation.starch.laforin like phosphoglucan phosphatase (SEX4);major CHO metabolism.degradation.starch"	Chloroplast	"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"	DSP8	"Cre03.g151000.t1.1;g3073.t1;DSP8"	SEX4	"Dual Specificity Protein Phosphatase Homolog 8"
+Cre03.g170350	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"				SEC12	"Cre03.g170350.t1.1;g3507.t1;Cre03.g170350.t1.1;g3507.t1;g3507.t1;Cre03.g170350.t1.1"	"SEC12;SEC12;SEC12"	"Expressed Protein. Similar to SEC12, regulatory component of the COP-II coat protein complex. GEF for SAR-GTPase.;Expressed Protein. Similar to SEC12, regulatory component of the COP-II coat protein complex. GEF for SAR-GTPase.;Expressed Protein. Similar to SEC12, regulatory component of the COP-II coat protein complex. GEF for SAR-GTPase."
+Cre03.g163950	GMM:13.2.5.3	"amino acid metabolism.degradation.serine-glycine-cysteine group.cysteine"		"GO:0055114;GO:0046439;GO:0017172;GO:0005506"	"oxidation-reduction process;L-cysteine metabolic process;cysteine dioxygenase activity;iron ion binding"	CDO2	"g3361.t1;CDO2"	CDO2	
+Cre03.g146747	GMM:24	"biodegradation of xenobiotics"	"Secretory pathway"			GOX10			
+Cre03.g168450	"GMM:29.6.2.2;GMM:29.6"	"protein.folding.chaperones and co-chaperones.HSP60s;protein.folding"	Cytosol	GO:0005524	"ATP binding"	CCT8	"Cre03.g168450.t1.1;g3466.t1;CCT8"	CCT8	"T-complex protein 1, theta subunit (TCP-1-theta) (CCT-theta) (TCPQ); subunit 8 of cytosolic chaperonin complex; ts-lethal mutant was isolated (PMID 29743196)"
+Cre03.g175850	GMM:28.1	"DNA.synthesis/chromatin structure"	"Secretory pathway"	"GO:0006281;GO:0004518"	"DNA repair;nuclease activity"		"g3632.t1;EEP1"		"Endonuclease/exonuclease/phosphatase family protein"
+Cre03.g157700	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"				COX5C	"COX5C;Cre03.g157700.t1.1;g3227.t1"	COX5C	"Cytochrome c oxidase, subunit 5c (mitochondrial precursor)(homolog of complex V subunit 5c of A. thaliana (At3g62400, At2g47380); No counterpart in fungi or animals;"
+Cre03.g208497							"Cre19.g755300.t1.1;g4443.t1;Cre19.g755300.t1.1;g4443.t1"		
+Cre03.g201900	GMM:31.6.1.5.1	"cell.motility.eukaryotes.radial spoke.head"				RSP1	g4284.t1	RSP1	"Flagellar protein, a subunit in the radial spoke head; C-terminus contains repeats of MORN motifs found in several membrane associated proteins [PMID: 16507594; GI:83284723]"
+Cre03.g193576			Chloroplast				g4005.t1		
+Cre03.g189250	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"	RAB11	"g3919.t1;Cre03.g189250.t1.1;RAB11;RABA1"	RAB11	"Similar to the RabA/Rab11 type GTPase, involved in vesicle trafficking in the Golgi Endosomal system. Identical to YPTC6 [gi 3025293 sp Q39572 YPT6_CHLRE]; Class IV in [PMID: 8756593];"
+Cre03.g161800	GMM:29.2.2	"protein.synthesis.ribosome biogenesis"	Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"g3315.t1;Cre03.g161800.t1.1;MDN1;MDN1;Cre03.g161800.t1.1;g3315.t1"		"ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196)"
+Cre03.g183500							"g3803.t1;Cre03.g183500.t1.1"		
+Cre03.g175700	GMM:31.1	cell.organisation					"Cre03.g175700.t1.1;g3629.t1;Cre03.g175700.t1.1;g3629.t1"		"contains PF02492, CobW nucleotide-binding domain;contains PF02492, CobW nucleotide-binding domain"
+Cre03.g162150	"GMM:28.1;GMM:27.3.44"	"DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors"	Mitochondrion				"g3323.t1;g3323.t1"		
+Cre03.g160750	GMM:34.12	transport.metal		"GO:0055085;GO:0016021;GO:0008324;GO:0006812"	"transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport"	MTP3	g3293.t1	MTP3	"Cation efflux transporter, group 4 CDF family; Mn2+, Co2+ and Zn2+ transporter; next to MTP2; Confers tolerance to excess Mn; similarity to MTP2/9/10/11 from A. thaliana; Suppresses Mn sensitivity of pmr1 yeast mutant and partially suppresses Zn and Co sensitivity of zrc1 cot1 yeast mutant;"
+Cre03.g146467	GMM:34.99	transport.misc				TRS31	"Cre01.g061650.t1.1;g2988.t1;Cre01.g061650.t1.2;TRS31"	TRS31	"Expressed Protein. Conserved protein similar to TRS31, a component of the TRAPP complex involved in ER to Golgi vesicle transport."
+Cre03.g206929	GMM:29.5	protein.degradation	Chloroplast	"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"	EGY1	"g4429.t1;Cre19.g754700.t1.2;RSE4;Cre19.g754700.t1.1"	EGY1	"M50 metalloprotease; located in thylakoid membrane; plant ortholog involved in chloroplast development and gravitropism"
+Cre03.g190950	"GMM:31.1.1.2;GMM:31.1"	"cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"		"GO:0007017;GO:0005874;GO:0003924"	"microtubule-based process;microtubule;GTPase activity"	TUA1	"Cre03.g190950.t1.1;g3952.t1;g3952.t1;Cre03.g190950.t1.1;Cre03.g190950.t1.1;g3952.t1;Cre03.g190950.t1.1;g3952.t1"	"TUA1;TUA1;TUA1;TUA1"	
+Cre03.g180450				"GO:0016787;GO:0009166"	"hydrolase activity;nucleotide catabolic process"	FAP215	"g3740.t1;Cre03.g180450.t1.1;FPN1"	FAP215	"5'-nucleotidase and conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome"
+Cre03.g158850	GMM:35.1.9	"not assigned.no ontology.BTB/POZ domain-containing protein"					"g3252.t1;g3252.t1;g3252.t1"		
+Cre03.g164950	GMM:27.4	"RNA.RNA binding"	Chloroplast	GO:0003676	"nucleic acid binding"	SRS3	g3381.t1	SRS3	"Serine/arginine-rich pre-mRNA splicing factor protein of the SR45 subfamily"
+Cre03.g167887			"Secretory pathway"	"GO:0046872;GO:0016567;GO:0004842"	"metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity"		"Cre03.g167900.t1.2;g3453.t1"		
+Cre03.g209729			"Secretory pathway"				"Cre19.g755768.t1.2;Cre19.g755768.t1.1;g4455.t1"		
+Cre03.g180400			Chloroplast				"g3739.t1;Cre03.g180400.t1.1"		
+Cre03.g184500			Chloroplast				"g3823.t1;Cre03.g184500.t1.1;g3823.t1;Cre03.g184500.t1.1"		
+Cre03.g178150	"GMM:31.6.1.6.1;GMM:30.3;GMM:3.3"	"cell.motility.eukaryotes.central pair.C1a;signalling.calcium;minor CHO metabolism.sugar alcohols"				CAM1	"CAM1;RSP20;g3687.t1"	RSP20	"Calmodulin; identical to CALM_CHLRE; contains 4 EF-hand, calcium binding motifs; Calmodulin mediates the control of a large number of enzymes by Ca(2+). Among the enzymes to be stimulated by the calmodulin-Ca(2+) complex are a number of protein kinases and phosphatases"
+Cre03.g165450							g3394.t1		
+Cre03.g186950	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"g3873.t1;Cre03.g186950.t1.1;PPP13;PPP13;g3873.t1;Cre03.g186950.t1.1"		
+Cre03.g203569			"Secretory pathway"				"g4398.t1;Cre19.g753350.t1.1"		
+Cre03.g187050	"GMM:34.7;GMM:34.2"	"transport.phosphate;transport.sugars"	Chloroplast			PHT3	"PHT3;g3875.t1;Cre03.g187050.t1.1;PHT4-3;PHT4-3;Cre03.g187050.t1.1;g3875.t1;PHT3;PHT3;PHT4-3;Cre03.g187050.t1.1;g3875.t1;g3875.t1;Cre03.g187050.t1.1;PHT4-3;PHT3"	"PHT4C;PHT4C;PHT4C;PHT4C"	
+Cre03.g183850	"GMM:26.30;GMM:21.99;GMM:1.1.5.2"	"misc.other Ferredoxins and Rieske domain;redox.misc;PS.lightreaction.other electron carrier (ox/red).ferredoxin"	Chloroplast	"GO:0051536;GO:0009055"	"iron-sulfur cluster binding;electron carrier activity"	FDX6	"g3810.t1;Cre03.g183850.t1.1;Cre03.g183850.t1.1;g3810.t1"	"FDX6;FDX6"	"Fe2S2 containing redox protein, predicted chloroplast localization; Target of CRR1;Fe2S2 containing redox protein, predicted chloroplast localization; Target of CRR1"
+Cre03.g201664	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0042765;GO:0016021"	"GPI-anchor transamidase complex;integral component of membrane"	GIT2	"g4381.t1;Cre19.g752600.t1.2;GIT2;Cre19.g752600.t1.1"	GIT2	"Forms a complex with Gpi16 and Gpi8 components. GPI transamidase adds glycosylphosphatidylinositols (GPIs) to newly synthesised proteins."
+Cre03.g163500			Chloroplast			CGLD21	"g3352.t1;Cre03.g163500.t1.1;CGLD21"	EX1	"Contains DUF3506 domain; Conserved in the Green Lineage and Diatoms; Orthologous to EX1 gene in Arabidopsis"
+Cre03.g154850	GMM:9.99	"mitochondrial electron transport / ATP synthesis.unspecified"	Mitochondrion	GO:0006744	"ubiquinone biosynthetic process"	COQ4	"g3157.t1;COQ4;g3157.t1;COQ4;COQ4;g3157.t1"	"COQ4;COQ4;COQ4"	"ubiquinone biosynthesis protein COQ4 homolog;ubiquinone biosynthesis protein COQ4 homolog;ubiquinone biosynthesis protein COQ4 homolog"
+Cre03.g173850			Chloroplast				"g3586.t1;g3586.t1"		
+Cre03.g151500			Chloroplast				"ATA1;g3083.t1;ATA1;g3083.t1"		"Alanine racemase/threonine aldolase;Alanine racemase/threonine aldolase"
+Cre03.g169750						FAP371	"Cre03.g169750.t1.1;g3495.t1"	FAP371	"Found in Cr and Volvox but not strongly conserved elsewhere"
+Cre03.g151800			"Secretory pathway"				"Cre03.g151800.t1.1;g3089.t1"		
+Cre03.g163376									
+Cre03.g205650	GMM:29.5.11	protein.degradation.ubiquitin					"g4199.t1;Cre03.g205650.t1.1;g4199.t1;Cre03.g205650.t1.1"		
+Cre03.g168350	GMM:27.1	RNA.processing					g3464.t1		
+Cre03.g198288			"Secretory pathway"						
+Cre03.g192400							"g3982.t1;g3982.t1"		
+Cre03.g211521				GO:0006950	"response to stress"	FAP165	"Cre19.g756550.t1.1;g4472.t1"	FAP165	
+Cre03.g206450							"g4182.t1;Cre03.g206450.t1.1"		
+Cre03.g146587							"g2994.t1;Cre01.g061950.t1.1"		
+Cre03.g196450			Chloroplast	"GO:0016593;GO:0016570;GO:0006368;GO:0003677"	"Cdc73/Paf1 complex;histone modification;transcription elongation from RNA polymerase II promoter;DNA binding"		"Cre03.g196450.t1.1;g4069.t1"		
+Cre03.g145467			Mitochondrion				"Cre01.g059250.t1.1;g2938.t1;Cre01.g059250.t1.2;Cre01.g059250.t1.1;g2938.t1;Cre01.g059250.t1.2"		
+Cre03.g179750			Mitochondrion	"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		"g3720.t1;Cre03.g179750.t1.1;g3720.t1;Cre03.g179750.t1.1"		
+Cre03.g195750	GMM:33.99	development.unspecified		GO:0005515	"protein binding"		"g4056.t1;g4056.t1"		
+Cre03.g184151	GMM:26.24	"misc.GCN5-related N-acetyltransferase"		GO:0008080	"N-acetyltransferase activity"		"Cre03.g184150.t1.2;g3816.t1;NAT9"		"Related to GCN5"
+Cre03.g192250			"Secretory pathway"			PHC69	"g3979.t1;g3979.t1;g3979.t1;g3979.t1"	"PHC69;PHC69;PHC69;PHC69"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain;"
+Cre03.g191350	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215"	"ATPase activity;integral component of membrane;transport;ATP binding;transporter activity"		g3960.t1		
+Cre03.g176440									
+Cre03.g193350	GMM:29.4	"protein.postranslational modification"		"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"	DSP7	"g4000.t1;DSP7;g4000.t1;DSP7"		"Dual-Specificity Protein Phosphatase Homolog 7; IBR5 (indole-3-butyric acid response 5); MAP Kinase Phosphatase 7; Mitogen-Activated Protein Kinase Phosphatase 7;Dual-Specificity Protein Phosphatase Homolog 7; IBR5 (indole-3-butyric acid response 5); MAP Kinase Phosphatase 7; Mitogen-Activated Protein Kinase Phosphatase 7"
+Cre03.g167690									
+Cre03.g182650	GMM:11.3	"lipid metabolism.phospholipid synthesis"		"GO:0016746;GO:0008152;GO:0006644"	"transferase activity, transferring acyl groups;metabolic process;phospholipid metabolic process"	PGA1	"g3786.t1;PGA1;Cre03.g182650.t1.1;g3786.t1;Cre03.g182650.t1.1;PGA1;g3786.t1;PGA1;Cre03.g182650.t1.1"	"PGA1;PGA1;PGA1"	
+Cre03.g207950	GMM:27.1	RNA.processing					"g4149.t1;Cre03.g207950.t1.1;g4149.t1;Cre03.g207950.t1.1;g4149.t1;Cre03.g207950.t1.1;g4149.t1;Cre03.g207950.t1.1"		
+Cre03.g199950			"Secretory pathway"				g4328.t1		
+Cre03.g210849	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4466.t1;Cre19.g756250.t1.1;g4466.t1;Cre19.g756250.t1.1;Cre19.g756250.t1.1;g4466.t1;Cre19.g756250.t1.1;g4466.t1;g4466.t1;Cre19.g756250.t1.1;Cre19.g756250.t1.1;g4466.t1;Cre19.g756250.t1.1;g4466.t1;g4466.t1;Cre19.g756250.t1.1"		
+Cre03.g150550							"Cre03.g150550.t1.1;g3062.t1"		
+Cre03.g156000							"g3184.t1;g3184.t1"		
+Cre03.g170601			Mitochondrion				"g3514.t1;Cre03.g170601.t1.1"		
+Cre03.g186000			Chloroplast				"g3854.t1;Cre03.g186000.t1.1"		
+Cre03.g145707									
+Cre03.g201400	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"g4295.t1;Cre03.g201400.t1.1;PPP16;PP2C6"		
+Cre03.g184700	GMM:29.5	protein.degradation		"GO:0006508;GO:0004197"	"proteolysis;cysteine-type endopeptidase activity"		"Cre03.g184700.t1.1;g3828.t2"		
+Cre03.g177476									
+Cre03.g199500						FAP129	"Cre03.g199500.t1.1;g4338.t1;g4338.t1;Cre03.g199500.t1.1;Cre03.g199500.t1.1;g4338.t1;Cre03.g199500.t1.1;g4338.t1;Cre03.g199500.t1.1;g4338.t1;g4338.t1;Cre03.g199500.t1.1"	"FAP129;FAP129;FAP129;FAP129;FAP129;FAP129"	"Flagellar Associated Protein; found in the flagellar proteome; in basal body proteome as BUG8 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 157384];Flagellar Associated Protein; found in the flagellar proteome; in basal body proteome as BUG8 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 157384];Flagellar Associated Protein; found in the flagellar proteome; in basal body proteome as BUG8 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 157384];Flagellar Associated Protein; found in the flagellar proteome; in basal body proteome as BUG8 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 157384];Flagellar Associated Protein; found in the flagellar proteome; in basal body proteome as BUG8 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 157384];Flagellar Associated Protein; found in the flagellar proteome; in basal body proteome as BUG8 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre03.g179050			Mitochondrion				"g3706.t1;Cre03.g179050.t1.1"		
+Cre03.g160500	GMM:29.1.6	"protein.aa activation.lysine-tRNA ligase"		"GO:0006418;GO:0005524;GO:0004812;GO:0003676;GO:0000166"	"tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleic acid binding;nucleotide binding"	TSK1	"g3288.t1;Cre03.g160500.t1.1;TSK1"	TSK1	"Lysine-tRNA ligase; may also be an aspartyl-tRNA synthetase"
+Cre03.g209169			Mitochondrion						
+Cre03.g181400	GMM:13.1.6.5.1	"amino acid metabolism.synthesis.aromatic aa.tryptophan.anthranilate synthase"		"GO:0016833;GO:0009058"	"oxo-acid-lyase activity;biosynthetic process"	ADC1	"ADC1;g3759.t1;ADC1;g3759.t1;ADC1;g3759.t1"	"ADC1;ADC1;ADC1"	"Putative aminodeoxychorismate (ADC) synthase (EC 6.3.5.8), based on similarity to tomato ADC synthase [GenBank AAR83121; PMID: 14745019], including a fusion of both PabA & PabB.;Putative aminodeoxychorismate (ADC) synthase (EC 6.3.5.8), based on similarity to tomato ADC synthase [GenBank AAR83121; PMID: 14745019], including a fusion of both PabA & PabB.;Putative aminodeoxychorismate (ADC) synthase (EC 6.3.5.8), based on similarity to tomato ADC synthase [GenBank AAR83121; PMID: 14745019], including a fusion of both PabA & PabB."
+Cre03.g159200	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT	Chloroplast	"GO:0005515;GO:0004842"	"protein binding;ubiquitin-protein transferase activity"	UBC8	"g3260.t1;UBC8;UBC8;g3260.t1"		"putative ubiquitin-protein ligase (E3, HECT domain);putative ubiquitin-protein ligase (E3, HECT domain)"
+Cre03.g154250	"GMM:3.6;GMM:29.4.1;GMM:29.4"	"minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	MAPKKK6	"g3143.t1;MAPKKK6;MAPKKK6;g3143.t1"		"MAP3K6;MAP3K6"
+Cre03.g205428			"Secretory pathway"				"g4204.t1;Cre03.g205428.t1.1"		
+Cre03.g170650							g3516.t1		
+Cre03.g168150	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre03.g168150.t1.1;g3458.t1;g3458.t1;Cre03.g168150.t1.1;g3458.t1;Cre03.g168150.t1.1;Cre03.g168150.t1.1;g3458.t1;Cre03.g168150.t1.1;g3458.t1;Cre03.g168150.t1.1;g3458.t1"		
+Cre03.g195600	GMM:3.2.4	"minor CHO metabolism.trehalose.trehalase"		"GO:0005991;GO:0004555"	"trehalose metabolic process;alpha,alpha-trehalase activity"		"g4053.t1;Cre03.g195600.t1.1;g4053.t1;Cre03.g195600.t1.1;g4053.t1;Cre03.g195600.t1.1"		
+Cre03.g163850	"GMM:29.5.11.4.2;GMM:27.3.11"	"protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.C2H2 zinc finger family"		GO:0042393	"histone binding"		"g3359.t1;Cre03.g163850.t1.1"		
+Cre03.g150251			Mitochondrion				"g3056.t1;g3056.t1;g3056.t1"		
+Cre03.g149750			Mitochondrion			DMA2	"g3046.t1;Cre03.g149750.t1.1;DMA2"	DMA2	"Putative DNA methylase, N-6 adenine-specific with homology to the HemK bacterial methylase family"
+Cre03.g182100	GMM:30.4.5	"signalling.phosphinositides.inositol-tetrakisphosphate 1-kinase"	Mitochondrion	"GO:0052726;GO:0052725;GO:0047325;GO:0032957;GO:0005622;GO:0005524;GO:0000287"	"inositol-1,3,4-trisphosphate 5-kinase activity;inositol-1,3,4-trisphosphate 6-kinase activity;inositol tetrakisphosphate 1-kinase activity;inositol trisphosphate metabolic process;intracellular;ATP binding;magnesium ion binding"	ITPK1	"IPK;ITPK1;g3774.t1;g3774.t1;ITPK1;IPK;ITPK1;g3774.t1;IPK"	"ITPK1;ITPK1;ITPK1"	"Forms 1,3,4,5-InsP4 and 1,3,4,6-InsP4 from 1,3,4-InsP3; also acts as an inositol-tetrakisphosphate 6-kinase;Forms 1,3,4,5-InsP4 and 1,3,4,6-InsP4 from 1,3,4-InsP3; also acts as an inositol-tetrakisphosphate 6-kinase;Forms 1,3,4,5-InsP4 and 1,3,4,6-InsP4 from 1,3,4-InsP3; also acts as an inositol-tetrakisphosphate 6-kinase"
+Cre03.g182050	GMM:11.1.9	"lipid metabolism.FA synthesis and FA elongation.long chain fatty acid CoA ligase"		"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"Cre03.g182050.t1.1;g3773.t1;Cre03.g182050.t1.1;g3773.t1;Cre03.g182050.t1.1;g3773.t1"	"LCS1;LCS1;LCS1"	
+Cre03.g152450	"GMM:31.4;GMM:27.3.48"	"cell.vesicle transport;RNA.regulation of transcription.FHA transcription factor"		GO:0005515	"protein binding"		"Cre03.g152450.t1.1;g3104.t1"		
+Cre03.g177053	"GMM:33.99;GMM:17.2.2"	"development.unspecified;hormone metabolism.auxin.signal transduction"					g3660.t1		
+Cre03.g199750	GMM:26.23	misc.rhodanese	Chloroplast				"Cre03.g199750.t1.1;g4332.t1"		
+Cre01.g013800				"GO:0008270;GO:0003676"	"zinc ion binding;nucleic acid binding"	TCY1	"TCY1;SXD1;g337.t1"		"Protein of unknown function with a CCHC-type zinc finger domain; Previously annotated as TCY1 due to an annotation error"
+Cre01.g061077	GMM:13	"amino acid metabolism"	Chloroplast			CGL93	"g1259.t1;Cre23.g767050.t1.1;g1259.t1;Cre23.g767050.t1.1"	"CGL93;CGL93"	"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre01.g003508			Chloroplast						
+Cre01.g052650	"GMM:31.6.1.10;GMM:26.13"	"cell.motility.eukaryotes.flagellar associated proteins;misc.acid and other phosphatases"	Mitochondrion	GO:0003993	"acid phosphatase activity"	VIP2	"APT2;g1166.t1"	VIP2	
+Cre01.g024300				GO:0005515	"protein binding"		"g562.t1;Cre01.g024300.t1.1"		
+Cre01.g007774							g200.t1		
+Cre01.g028050			"Secretory pathway"				"g641.t1;Cre01.g028050.t1.1"		
+Cre01.g049750							"Cre01.g049750.t1.1;g1102.t1"		
+Cre01.g054050			Chloroplast				"Cre01.g054050.t1.1;g1194.t1"		
+Cre01.g051050			Chloroplast			FAP225	"g1130.t1;Cre01.g051050.t1.1;g1130.t1;Cre01.g051050.t1.1;g1130.t1;Cre01.g051050.t1.1;g1130.t1;Cre01.g051050.t1.1;Cre01.g051050.t1.1;g1130.t1"	"FAP225;FAP225;FAP225;FAP225;FAP225"	"Found in the flagellar proteome;Found in the flagellar proteome;Found in the flagellar proteome;Found in the flagellar proteome;Found in the flagellar proteome"
+Cre01.g055100	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0008270	"zinc ion binding"		g1215.t1		
+Cre01.g014500	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0016773;GO:0016020;GO:0005524"	"phosphotransferase activity, alcohol group as acceptor;membrane;ATP binding"		"g352.t1;g352.t1"		
+Cre01.g025700			Mitochondrion	"GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity"		"g589.t1;g589.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre01.g033532									
+Cre01.g024250			"Secretory pathway"			HEL4	"HEL4;g560.t1;HEL4;g560.t1"		
+Cre01.g048850	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"		GO:0003677	"DNA binding"		"Cre01.g048850.t1.1;g1084.t1"		
+Cre01.g019950	"GMM:29.9;GMM:20.2.1"	"protein.co-chaperones;stress.abiotic.heat"	Cytosol			DNJ7	"DNJ7;Cre01.g019950.t1.1;g464.t1;DNJ7;g464.t1;Cre01.g019950.t1.1"		"DnaJ-like protein; probably cytosolic, as judged from absence of N-terminal extension and from homology with cytosolic PSI1 from S. pombe; annotation for PSI1: required for nuclear migration during mitosis and for the normal initiation of translation; Als;DnaJ-like protein; probably cytosolic, as judged from absence of N-terminal extension and from homology with cytosolic PSI1 from S. pombe; annotation for PSI1: required for nuclear migration during mitosis and for the normal initiation of translation; Als"
+Cre01.g066917	GMM:1.1.1.1	"PS.lightreaction.photosystem II.LHC-II"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCBM1	"Cre23.g766250.t1.1;LHCBM1;Cre23.g766250.t1.2;g1276.t1;LHCBM1;g1276.t1;Cre23.g766250.t1.1;Cre23.g766250.t1.2;g1276.t1;Cre23.g766250.t1.2;LHCBM1;Cre23.g766250.t1.1"	"LHCBM1;LHCBM1;LHCBM1"	
+Cre01.g055600	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIL15	"KIL15;g1244.t1"		"Putative kinesin motor-like protein, closest match to kinesin-15 family. Sequence gap in gene sequence and gaps nearby preclude a clear assignment; null-allele mutant was isolated (PMID 29743196)"
+Cre01.g024200	"GMM:27.1.3.9;GMM:27.1"	"RNA.processing.3' end processing.CstF64;RNA.processing"		"GO:0031124;GO:0003676"	"mRNA 3'-end processing;nucleic acid binding"		"g559.t1;g559.t1"		
+Cre01.g028900			Mitochondrion				g659.t1		
+Cre01.g051174			Mitochondrion	"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g1133.t1;Cre01.g051150.t1.3;BLZ1;BLZ1;Cre01.g051150.t1.3;g1133.t1"		"Basic-leucine zipper (bZIP) transcription factor, related to JUN transcription factor;Basic-leucine zipper (bZIP) transcription factor, related to JUN transcription factor"
+Cre01.g016900			Chloroplast				"g403.t1;Cre01.g016900.t1.1"		
+Cre01.g031550	GMM:3.3	"minor CHO metabolism.sugar alcohols"	"Secretory pathway"	GO:0016787	"hydrolase activity"	CSB6	"CSB6;g713.t1;g713.t1;CSB6"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element;CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre01.g041450	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"PPP4;g928.t1"		
+Cre01.g026050			Mitochondrion				"g599.t1;g599.t1"		
+Cre01.g006450	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"				g158.t2		
+Cre01.g013050	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX	"Secretory pathway"	GO:0005515	"protein binding"		g321.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre01.g055500	GMM:11.1.8	"lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase"	Mitochondrion				g1242.t1		
+Cre01.g041700									
+Cre01.g042700							"Cre01.g042700.t1.1;g956.t1;g956.t1;Cre01.g042700.t1.1"		
+Cre01.g053288	GMM:33.99	development.unspecified	"Secretory pathway"	GO:0006396	"RNA processing"		"Cre01.g053288.t1.1;g1177.t1"		
+Cre01.g008402				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre01.g024950							"g573.t1;Cre01.g024950.t1.1;g573.t1;Cre01.g024950.t1.1;g573.t1;Cre01.g024950.t1.1"		
+Cre01.g013100			Chloroplast			PRL10	"PRL10;g322.t1"		"CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein"
+Cre01.g021050	"GMM:34.9;GMM:29.3.2"	"transport.metabolite transporters at the mitochondrial membrane;protein.targeting.mitochondria"				TIM22A	"g489.t1;Cre01.g021050.t1.1"	TIM22A	"Mitochondrial import inner membrane translocase subunit of 22 kDa, belongs to TIM17/TIM22/TIM23 family. Four TIM22-related proteins are present in Arabidopsis, three in Chlamydomonas"
+Cre01.g008100	GMM:27.3.12	"RNA.regulation of transcription.C3H zinc finger family"					"g207.t1;Cre01.g008100.t1.1"		
+Cre01.g039900	GMM:27.1.19	RNA.processing.ribonucleases		GO:0008033	"tRNA processing"	TRZ4	"TRZ4;Cre01.g039900.t1.1;g891.t1;Cre01.g039900.t1.1;g891.t1;TRZ4"		"Weak similarity to RNase Z, may be a beta-lactamase family protein;Weak similarity to RNase Z, may be a beta-lactamase family protein"
+Cre01.g029300	"GMM:4.1.7;GMM:1.3.5"	"glycolysis.cytosolic branch.triosephosphate isomerase (TPI);PS.calvin cycle.TPI"	Chloroplast	"GO:0008152;GO:0004807"	"metabolic process;triose-phosphate isomerase activity"	TPIC1	"g667.t1;TPIC;Cre01.g029300.t1.1;TPI1;Cre01.g029300.t1.1;TPI1;TPIC;g667.t1"	"TPIC1;TPIC1"	"Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme"
+Cre01.g002500	GMM:30.11	signalling.light				COP1	"COP1;Cre01.g002500.t1.1;COP2;g60.t1"	COP21	"Opsin-related, retinal binding protein; Genbank entry AF295371; shows evidence for alternative splicing, giving COP2 and COP1; present in thylakoid-enriched fraction based on mass spectrometric peptide identification; This is unrelated to constitutive photomorphogenesis protein 1 (COP1) in Arabidopsis thaliana"
+Cre01.g008950							"g225.t1;Cre01.g008950.t1.1;g225.t1;Cre01.g008950.t1.1;Cre01.g008950.t1.1;g225.t1;g225.t1;Cre01.g008950.t1.1"		
+Cre01.g003376	"GMM:31.2;GMM:20.2.1"	"cell.division;stress.abiotic.heat"					"g78.t1;g78.t1"		
+Cre01.g019700	GMM:27.1	RNA.processing	Mitochondrion			PAP7	"Cre01.g019700.t1.1;PAP7;g460.t1"	PAP7	"Non-canonical poly(A) polymerase (ncPAP) with PAP/25A core domain; probably inactive as it lacks the catalytic Asp residues; conserved in green algae with most orthologs showing the catalytic residues; related to MUT68, PAP10 and PAP6"
+Cre01.g036850	GMM:13.2.2.2	"amino acid metabolism.degradation.glutamate family.proline"	Chloroplast	"GO:0006562;GO:0004657"	"proline catabolic process;proline dehydrogenase activity"	PDY1	"PDY1;g827.t1;Cre01.g036850.t1.1"	PDY1	"Contains a proline dehydrogenase domain (IPR2872) and a potential EF-hand. An EF-hand is also present in a Caenorhabditis elegans proline oxidase. In human, a proline oxidase gene is induced by p53 (PIG6) and mediates apoptosis through a calcineurin-dependent pathway [PMID: 15914462]. In Arabidopsis a proline oxidase gene is induced in response to osmotic stress [PMID:8776899]."
+Cre01.g019650			Chloroplast				"g459.t1;g459.t1"		
+Cre01.g006700									
+Cre01.g002234									
+Cre01.g000500						AXL5	"ERR3;g13.t1;AXL5"		"belongs to a tandem cluster of three related genes for GT77 family proteins"
+Cre01.g010550			Mitochondrion			HLD2	"g264.t1;HLD2"		
+Cre01.g029800			Mitochondrion				"g677.t1;Cre01.g029800.t1.1;Cre01.g029800.t1.1;g677.t1"		
+Cre01.g014150	GMM:34.99	transport.misc	Mitochondrion	"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"	MFT5	"MAE5;MFT5:MAE5;g345.t1;MFT5;Cre01.g014150.t1.1"		
+Cre01.g050200	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB9			
+Cre01.g001000							g23.t1		
+Cre01.g030450	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"					"g690.t1;g690.t1;g690.t1;g690.t1"		
+Cre01.g046500			Chloroplast				"Cre01.g046500.t1.1;g1036.t1"		
+Cre01.g010900	"GMM:4.1.8;GMM:1.3.4"	"glycolysis.cytosolic branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH);PS.calvin cycle.GAP"	Chloroplast	"GO:0055114;GO:0016620"	"oxidation-reduction process;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor"	GAP3	"Cre01.g010900.t1.1;GAP3;g274.t1;g274.t1;GAP3;Cre01.g010900.t1.1;GAP3;g274.t1;Cre01.g010900.t1.1;Cre01.g010900.t1.1;g274.t1;GAP3;Cre01.g010900.t1.1;GAP3;g274.t1"	"GAPA1;GAPA1;GAPA1;GAPA1;GAPA1"	"Ortholog in Arabidopsis forms a GAPA/GAPB heterodimer in the chloroplast; From the bacterial class of GAP dehydrogenase proteins;Ortholog in Arabidopsis forms a GAPA/GAPB heterodimer in the chloroplast; From the bacterial class of GAP dehydrogenase proteins;Ortholog in Arabidopsis forms a GAPA/GAPB heterodimer in the chloroplast; From the bacterial class of GAP dehydrogenase proteins;Ortholog in Arabidopsis forms a GAPA/GAPB heterodimer in the chloroplast; From the bacterial class of GAP dehydrogenase proteins;Ortholog in Arabidopsis forms a GAPA/GAPB heterodimer in the chloroplast; From the bacterial class of GAP dehydrogenase proteins"
+Cre01.g010296							g258.t1		
+Cre01.g032150				GO:0005515	"protein binding"	FAP187	g728.t1	FAP187	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome"
+Cre01.g002750			Mitochondrion				"g65.t1;Cre01.g002750.t1.1"		
+Cre01.g025726	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"							
+Cre01.g004400			"Secretory pathway"				"Cre01.g004400.t1.1;g108.t1"		
+Cre01.g008051	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"				"g206.t1;g206.t1"		
+Cre01.g005850	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				CBA2	"CBA2;g141.t1;Cre01.g005850.t1.1"	FAP23	"Cob(I)yrinic acid a,c-diamide adenosyltransferase; found in the flagellar proteome"
+Cre01.g030800	GMM:30.11.1	"signalling.light.COP9 signalosome"		GO:0005515	"protein binding"	CSN2	"g697.t1;CSN2;Cre01.g030800.t1.1;Cre01.g030800.t1.1;CSN2;g697.t1"	"CSN2;CSN2"	"similar to COP9 signalosome, subunit CSN2;similar to COP9 signalosome, subunit CSN2"
+Cre01.g022750	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP159	g526.t1	FAP159	"Flagellar Associated Protein with leucine-rich repeats, found in the flagellar proteome"
+Cre01.g040750	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"							
+Cre01.g028000							g640.t1	POB12	"Found in basal body proteome"
+Cre01.g032550			Chloroplast			CGL127	"g736.t1;g736.t1;g736.t1;g736.t1"	"CGL127;CGL127;CGL127;CGL127"	
+Cre01.g022900			Mitochondrion				"g529.t1;g529.t1"		
+Cre01.g012222									
+Cre01.g004800	GMM:27.3.60	"RNA.regulation of transcription.NIN-like bZIP-related family"	Mitochondrion				"g116.t1;Cre01.g004800.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre01.g033091	GMM:27.1.19	RNA.processing.ribonucleases					g748.t2		
+Cre01.g042000				GO:0005515	"protein binding"		"Cre01.g042000.t1.1;g942.t1"		
+Cre01.g014950			Mitochondrion				"g361.t2;g361.t2"		
+Cre01.g027450	GMM:21.1	redox.thioredoxin		"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRX10	"g627.t1;TRL1;Cre01.g027450.t1.1;TRX10"		"Unusual thioredoxin containing an unusual active site WCTKC (classically thioredoxins contain a WCGPC or WCPPC active site)."
+Cre01.g034500							"g779.t1;Cre01.g034500.t1.1"		
+Cre01.g048150			Chloroplast			HLA8	"Cre01.g048150.t1.1;g1070.t1;Cre01.g048150.t1.1;g1070.t1"	"HLA8;HLA8"	"Staphylococcal nuclease homolog. Thermonuclease family. Induced under high light condition [PMID: 12000678]. A part of post-transcriptional gene silencing machinery [PMID: 11782532];Staphylococcal nuclease homolog. Thermonuclease family. Induced under high light condition [PMID: 12000678]. A part of post-transcriptional gene silencing machinery [PMID: 11782532]"
+Cre01.g040450	"GMM:30.2.99;GMM:30.10;GMM:3.1"	"signalling.receptor kinases.misc;signalling.phosphorelay;minor CHO metabolism.raffinose family"		"GO:0004871;GO:0000160"	"signal transducer activity;phosphorelay signal transduction system"	HDT1	"HDT1;g903.t1;Cre01.g040450.t1.1;HDPT1"	HDT1	"Histidine-Aspartic Acid Phosphotransferase 1; Intermediate in Histidine phosphorylation cascade; Contains H residue that accepts phosphate group from histidine kinase and transfers to a receiver protein"
+Cre01.g052450			Chloroplast				"g1162.t1;g1162.t1"		
+Cre01.g051850			Chloroplast				"g1149.t1;g1149.t1"		
+Cre01.g004651				"GO:0005622;GO:0003676"	"intracellular;nucleic acid binding"		"g113.t1;Cre01.g004650.t1.2"		
+Cre01.g011660							"g291.t2;Cre01.g011700.t2.1;Cre01.g011700.t2.1;g291.t2;Cre01.g011700.t2.1;g291.t2"		
+Cre01.g001685									
+Cre01.g040476									
+Cre01.g038350			Chloroplast				g858.t1		
+Cre01.g035500	"GMM:30.9;GMM:30.4.2;GMM:3.9"	"signalling.lipids;signalling.phosphinositides.phosphatidylinositol 4-kinase;signalling.lipids"	Mitochondrion	"GO:0048015;GO:0046854;GO:0016773"	"phosphatidylinositol-mediated signaling;phosphatidylinositol phosphorylation;phosphotransferase activity, alcohol group as acceptor"	VPS34	"VPS34;Cre01.g035500.t1.1;g800.t1"	VPS34	"Phosphatidylinositol-3-kinase / Vacuolar protein sorting 34; Similar to VPS34, a phosphatidylinositol-3-kinase, involved in vacuolar transport and lipid metabolism;"
+Cre01.g055050	GMM:29.5.3	"protein.degradation.cysteine protease"					"g1214.t1;Cre01.g055050.t1.1"		
+Cre01.g032450			"Secretory pathway"	GO:0016020	membrane		"g734.t1;Cre01.g032450.t1.1;Cre01.g032450.t1.1;g734.t1;g734.t1;Cre01.g032450.t1.1"		
+Cre01.g057426									
+Cre01.g025450				GO:0005515	"protein binding"	DRC9	"Cre01.g025450.t1.1;FAP122;g584.t1;g584.t1;Cre01.g025450.t1.1;FAP122"	"DRC9;DRC9"	"Flagellar Associated Protein 122, found in the flagellar proteome; Phosphorylation characterized by Boesger et al. [PMID: 19429781];;Flagellar Associated Protein 122, found in the flagellar proteome; Phosphorylation characterized by Boesger et al. [PMID: 19429781];"
+Cre01.g034050	GMM:16.2	"secondary metabolism.phenylpropanoids"					"Cre01.g034050.t1.1;g768.t1;Cre01.g034050.t1.1;g768.t1;Cre01.g034050.t1.1;g768.t1"		
+Cre01.g009300	GMM:30.4	signalling.phosphinositides		"GO:0042578;GO:0005515"	"phosphoric ester hydrolase activity;protein binding"		"g234.t1;g234.t1"		
+Cre01.g033900	GMM:27.3.28	"RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"g765.t1;g765.t1;g765.t1"		
+Cre01.g032950							"g744.t1;Cre01.g032950.t1.1"		
+Cre01.g055436			Chloroplast				"g1231.t1;Cre23.g768150.t1.1"		
+Cre01.g009800						FAP289	"g248.t1;Cre01.g009800.t1.1;g248.t1;Cre01.g009800.t1.1"	"FAP289;FAP289"	"Flagellar Associated Coiled-Coil Protein; Found in the flagellar proteome; Transcript upregulated during flagellar regeneration;Flagellar Associated Coiled-Coil Protein; Found in the flagellar proteome; Transcript upregulated during flagellar regeneration"
+Cre01.g030950							g700.t1		
+Cre01.g006733									
+Cre01.g041900				"GO:0034477;GO:0004518"	"U6 snRNA 3'-end processing;nuclease activity"				
+Cre01.g016001			Mitochondrion				"g381.t1;Cre01.g016000.t1.2;g381.t1;Cre01.g016000.t1.2;g381.t1;Cre01.g016000.t1.2"		
+Cre01.g027000	"GMM:29.2.1.99.2.5;GMM:29.2.1.2.2.16;GMM:29.2.1.2.2.11"	"protein.synthesis.ribosomal protein.unknown.large subunit.L5;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L16;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L11"				RPL11	"g618.t1;Cre01.g027000.t1.1;Cre01.g027000.t1.1;g618.t1;g618.t1;Cre01.g027000.t1.1;g618.t1;Cre01.g027000.t1.1;Cre01.g027000.t1.1;g618.t1"	"RPL11;RPL11;RPL11;RPL11;RPL11"	"Cytosolic 60S large ribosomal subunit protein L11;Cytosolic 60S large ribosomal subunit protein L11;Cytosolic 60S large ribosomal subunit protein L11;Cytosolic 60S large ribosomal subunit protein L11;Cytosolic 60S large ribosomal subunit protein L11"
+Cre01.g053200	GMM:28.99	DNA.unspecified	Chloroplast	"GO:0008081;GO:0006281;GO:0005634"	"phosphoric diester hydrolase activity;DNA repair;nucleus"		g1175.t1		
+Cre01.g045426			Chloroplast						
+Cre01.g018650			Mitochondrion	GO:0003677	"DNA binding"		"g439.t1;g439.t1;g439.t1"		
+Cre01.g029450	"GMM:27.3.62;GMM:27.3.53"	"RNA.regulation of transcription.nucleosome/chromatin assembly factor group;RNA.regulation of transcription.high mobility group family (HMG)"					"g670.t1;g670.t1;g670.t1;g670.t1;g670.t1;g670.t1"		
+Cre01.g042250			"Secretory pathway"				"g947.t1;g947.t1"		
+Cre01.g006150	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	"GTP binding"	EFG9	" PRFC1;PRF3;g148.t1;PRFC1;EFG9"		"Similar to peptide-chain release factor RF3, prokaryotic type and related to PrfC; Arabidopsis ortholog targeted to chloroplast; binds GTP"
+Cre01.g038050	GMM:31.9	cell.eyespot	"Secretory pathway"	"GO:0016020;GO:0007165;GO:0000160;GO:0000155"	"membrane;signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity"	COP7	"COP;COP7;g852.t1;COP;g852.t1;COP7"	"HKR3;HKR3"	"Also known as Chlamoypsin 7; contains bacteriorhodopsin, Histine kinase and response regulator receiver domains;Also known as Chlamoypsin 7; contains bacteriorhodopsin, Histine kinase and response regulator receiver domains"
+Cre01.g050900			Mitochondrion				"g1127.t1;GTR"		
+Cre01.g003950			Chloroplast				"g99.t1;g99.t1;g99.t1"		
+Cre01.g013850							"g339.t1;g339.t1"		
+Cre01.g017850			"Secretory pathway"				"Cre01.g017850.t1.1;DIV166;g421.t1"		"ts-lethal mutation block is S/M (PMID 29743196)"
+Cre01.g000200			Mitochondrion				"g7.t1;g7.t1;g7.t1"		
+Cre01.g017600							"PQQ2;g416.t2;PQQ2;g416.t2"		"Presents motifs found on quinoproteins whose redox cofactor is a pyrrolo-quinoline quinone (PQQ); closely related to linked PPQ1 gene; most similar to bacterial quinoproteins; no orthologue found in Volvox;Presents motifs found on quinoproteins whose redox cofactor is a pyrrolo-quinoline quinone (PQQ); closely related to linked PPQ1 gene; most similar to bacterial quinoproteins; no orthologue found in Volvox"
+Cre01.g017250			"Secretory pathway"				"g409.t1;Cre01.g017250.t1.1"		"belongs to a small multigene family specific of Chlorophyceae"
+Cre01.g007150				GO:0005515	"protein binding"		g187.t1		
+Cre01.g047850	GMM:16.2	"secondary metabolism.phenylpropanoids"	Mitochondrion	"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"		"g1063.t1;Cre01.g047850.t1.1;Cre01.g047850.t1.1;g1063.t1"		
+Cre01.g036400	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"					"SDR3;g818.t1;Cre01.g036400.t1.1;g818.t1;SDR3;Cre01.g036400.t1.1;g818.t1;SDR3;Cre01.g036400.t1.1;g818.t1;SDR3;Cre01.g036400.t1.1"		
+Cre01.g027200	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC12	"Cre01.g027200.t1.1;g622.t1;UBC12"	UBC12	"E2 Ubiquitin conjugating enzyme, subclass IV"
+Cre01.g030150							"Cre01.g030150.t1.1;g684.t1"		
+Cre01.g024050			Chloroplast				"Cre01.g024050.t1.1;g556.t1;Cre01.g024050.t1.1;g556.t1"		
+Cre01.g045200	GMM:17.7.1.4	"hormone metabolism.jasmonate.synthesis-degradation.allene oxidase cyclase"	"Secretory pathway"	"GO:0016853;GO:0009507"	"isomerase activity;chloroplast"		g1009.t1		"Target of CRR1"
+Cre01.g043300			Mitochondrion				"Cre01.g043300.t1.1;g968.t1;Cre01.g043300.t1.1;g968.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre01.g054650							"g1206.t1;g1206.t1;g1206.t1"		
+Cre01.g015700	"GMM:29.5;GMM:13.1.3.4.12"	"protein.degradation;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase"		"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	smm1	"Cre01.g015700.t1.1;SMM1;g377.t1"		
+Cre01.g049450			"Secretory pathway"				"Cre01.g049450.t1.1;g1097.t1"		
+Cre01.g046450			Chloroplast				"g1047.t1;Cre01.g046450.t1.1;g1047.t1;Cre01.g046450.t1.1"		
+Cre01.g028450	GMM:29.2.2.3.3	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases"		"GO:0051536;GO:0008173;GO:0006364;GO:0005737;GO:0003824"	"iron-sulfur cluster binding;RNA methyltransferase activity;rRNA processing;cytoplasm;catalytic activity"		"Cre01.g028450.t1.1;g650.t1;g650.t1;Cre01.g028450.t1.1;g650.t1;Cre01.g028450.t1.1"		
+Cre01.g000250			Mitochondrion	GO:0016021	"integral component of membrane"	SNR1	"Cre01.g000250.t1.1;SNR1;g8.t1"		
+Cre01.g020400	GMM:33.99	development.unspecified		GO:0005515	"protein binding"		"g474.t1;Cre01.g020400.t1.1;Cre01.g020400.t1.1;g474.t1"		
+Cre01.g009025									
+Cre01.g007200	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0008270	"zinc ion binding"		"g188.t1;Cre01.g007200.t1.1"		
+Cre01.g021800	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Chloroplast	GO:0005515	"protein binding"		"g504.t1;Cre01.g021800.t1.1"		
+Cre01.g019400							"g454.t1;Cre01.g019400.t1.1"		
+Cre01.g049132			Chloroplast	"GO:0007165;GO:0005515"	"signal transduction;protein binding"		"g1091.t2;Cre01.g049132.t1.1;Cre01.g049132.t1.1;g1091.t2;g1091.t2;Cre01.g049132.t1.1"		
+Cre01.g018500	GMM:29.4	"protein.postranslational modification"		"GO:0008897;GO:0000287"	"holo-[acyl-carrier-protein] synthase activity;magnesium ion binding"		"g436.t1;HAS1"		
+Cre01.g037250			Mitochondrion				"g835.t1;Cre01.g037250.t1.1"		
+Cre01.g001983							"g46.t2;g46.t2;g46.t2"		"C2 domain is a Ca2+-binding motif present in phospholipases, protein kinases C, and synaptotagmins (among others);C2 domain is a Ca2+-binding motif present in phospholipases, protein kinases C, and synaptotagmins (among others);C2 domain is a Ca2+-binding motif present in phospholipases, protein kinases C, and synaptotagmins (among others)"
+Cre01.g027950	GMM:31.6.1.3.2.2	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B"	Mitochondrion	"GO:0048487;GO:0042384;GO:0042073;GO:0030992"	"beta-tubulin binding;cilium assembly;intraciliary transport;intraciliary transport particle B"	IFT74	"IFT71;g639.t1;Cre01.g027950.t1.1;CMG1;IFT72;Cre01.g027950.t1.1;IFT71;g639.t1;CMG1;IFT72"	"IFT74;IFT74"	"Component of IFT-B1 particle;Component of IFT-B1 particle"
+Cre01.g064727	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g1269.t1;ZRT4;ZRT4;g1269.t1;g1269.t1;ZRT4;g1269.t1;ZRT4"		
+Cre01.g068377	GMM:33.99	development.unspecified	Mitochondrion	GO:0042254	"ribosome biogenesis"		"g1281.t1;Cre23.g766150.t1.1;Cre23.g766150.t1.1;g1281.t1"		
+Cre01.g053450				"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g1182.t1;CYA1;g1182.t1;CYA1"		"contains a Class III nucleotidyl cyclase domain and a P-loop NTPase domain;contains a Class III nucleotidyl cyclase domain and a P-loop NTPase domain"
+Cre01.g016100			"Secretory pathway"				g383.t1		
+Cre01.g027100	"GMM:29.5;GMM:29.3.2"	"protein.degradation;protein.targeting.mitochondria"		"GO:0016020;GO:0008236;GO:0006508"	"membrane;serine-type peptidase activity;proteolysis"	IMP2	"g620.t1;Cre01.g027100.t1.1"	IMP2	"serine protease (S26A family); type I signal peptidase; processes a subset of mitochondrion-imported proteins as they are translocated through the inner membrane into the intermembrane space"
+Cre01.g007500	GMM:34.14	"transport.unspecified cations"		"GO:0055085;GO:0016020;GO:0006810;GO:0005215"	"transmembrane transport;membrane;transport;transporter activity"	NSS1	"NSS1;g194.t2;g194.t2;NSS1"		"Sodium:solute symporter, possibly a high-affinity choline or Na+/proline symporter;Sodium:solute symporter, possibly a high-affinity choline or Na+/proline symporter"
+Cre01.g044450			Mitochondrion	"GO:0016021;GO:0004252"	"integral component of membrane;serine-type endopeptidase activity"		"g994.t1;g994.t1"		
+Cre01.g027550	GMM:26.10	"misc.cytochrome P450"		"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"		"g629.t1;g629.t1;g629.t1;g629.t1;g629.t1;g629.t1;g629.t1"		
+Cre01.g018800	"GMM:9.9;GMM:34.1.1"	"mitochondrial electron transport / ATP synthesis.F1-ATPase;transport.p- and v-ATPases.H+-transporting two-sector ATPase"	Mitochondrion	"GO:0015986;GO:0015078"	"ATP synthesis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATP6	"ATP6;Cre01.g018800.t1.1;g442.t1;g442.t1;ATP6;Cre01.g018800.t1.1;g442.t1;ATP6;Cre01.g018800.t1.1;g442.t1;Cre01.g018800.t1.1;ATP6;ATP6;g442.t1;Cre01.g018800.t1.1;ATP6;Cre01.g018800.t1.1;g442.t1;Cre01.g018800.t1.1;ATP6;g442.t1;g442.t1;Cre01.g018800.t1.1;ATP6;g442.t1;Cre01.g018800.t1.1;ATP6"	"ATP6;ATP6;ATP6;ATP6;ATP6;ATP6;ATP6;ATP6;ATP6"	"subunit 6 of the mitochondrial F1F0-ATP synthase; [= yeast and bovine ATPA subunit]; part of the F0 sector;subunit 6 of the mitochondrial F1F0-ATP synthase; [= yeast and bovine ATPA subunit]; part of the F0 sector;subunit 6 of the mitochondrial F1F0-ATP synthase; [= yeast and bovine ATPA subunit]; part of the F0 sector;subunit 6 of the mitochondrial F1F0-ATP synthase; [= yeast and bovine ATPA subunit]; part of the F0 sector;subunit 6 of the mitochondrial F1F0-ATP synthase; [= yeast and bovine ATPA subunit]; part of the F0 sector;subunit 6 of the mitochondrial F1F0-ATP synthase; [= yeast and bovine ATPA subunit]; part of the F0 sector;subunit 6 of the mitochondrial F1F0-ATP synthase; [= yeast and bovine ATPA subunit]; part of the F0 sector;subunit 6 of the mitochondrial F1F0-ATP synthase; [= yeast and bovine ATPA subunit]; part of the F0 sector;subunit 6 of the mitochondrial F1F0-ATP synthase; [= yeast and bovine ATPA subunit]; part of the F0 sector"
+Cre01.g049250									
+Cre01.g054700			Mitochondrion				"g1207.t1;Cre01.g054700.t1.1"		
+Cre01.g004950							g120.t1		
+Cre01.g023650	GMM:34.3	"transport.amino acids"	Chloroplast	"GO:0055085;GO:0016020;GO:0015171;GO:0006810;GO:0003333"	"transmembrane transport;membrane;amino acid transmembrane transporter activity;transport;amino acid transmembrane transport"		g545.t1		"similar to plant Bidirection Aminoacid Transporter (BAT1); TCDB family 2.A.3.4"
+Cre01.g026350							"g605.t1;g605.t1"		
+Cre01.g040100							"g895.t1;Cre01.g040100.t1.1"		
+Cre01.g045950							g1031.t1		
+Cre01.g038000	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0005515;GO:0004672"	"protein phosphorylation;ATP binding;protein binding;protein kinase activity"		g851.t1		
+Cre01.g053600	GMM:29.2.1.99.2.27	"protein.synthesis.ribosomal protein.unknown.large subunit.L27"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPL27	"bL27m;g1185.t1;Cre01.g053600.t1.1;g1185.t1;bL27m;Cre01.g053600.t1.1"	"MRPL27;MRPL27"	
+Cre01.g025350						FAP235	"g582.t1;Cre01.g025350.t1.1;g582.t1;Cre01.g025350.t1.1"	"FAP235;FAP235"	"Flagellar Associated Protein 235, found in the flagellar proteome;;Flagellar Associated Protein 235, found in the flagellar proteome;"
+Cre01.g000350	GMM:1.1.5.4	"PS.lightreaction.other electron carrier (ox/red).ferredoxin oxireductase"		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		"OXR1;g10.t1;g10.t1;OXR1;g10.t1;OXR1;OXR1;g10.t1"		"Predicted oxidoreductase; Oxidoreductase FAD/NAD(P)-binding; Ferredoxin reductase-type FAD-binding domain; Riboflavin synthase-like beta-barrel;Predicted oxidoreductase; Oxidoreductase FAD/NAD(P)-binding; Ferredoxin reductase-type FAD-binding domain; Riboflavin synthase-like beta-barrel;Predicted oxidoreductase; Oxidoreductase FAD/NAD(P)-binding; Ferredoxin reductase-type FAD-binding domain; Riboflavin synthase-like beta-barrel;Predicted oxidoreductase; Oxidoreductase FAD/NAD(P)-binding; Ferredoxin reductase-type FAD-binding domain; Riboflavin synthase-like beta-barrel"
+Cre01.g014200			Mitochondrion				"Cre01.g014200.t1.1;g346.t1"		
+Cre01.g028150						CPLD69	"Cre01.g028150.t1.1;g643.t1"	CPLD69	"Conserved in the Plant Lineage and Diatoms"
+Cre01.g044550			Chloroplast				"Cre01.g044550.t1.1;g996.t1"		
+Cre01.g048501	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		GO:0005515	"protein binding"		"Cre01.g048500.t1.2;g1077.t1;Cre01.g048500.t1.2;g1077.t1"		
+Cre01.g013750			Chloroplast				"g335.t1;g335.t1"		
+Cre01.g053100									
+Cre01.g025808			Chloroplast				"g593.t1;Cre01.g025800.t1.3"	OPR122	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre01.g020182			Mitochondrion				"Cre01.g020150.t1.3;g469.t1"		
+Cre01.g039702							"g887.t1;g887.t1;g887.t1;g887.t1"		
+Cre01.g036250	"GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4"	"signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g815.t1;Cre01.g036250.t1.1;g815.t1;Cre01.g036250.t1.1;Cre01.g036250.t1.1;g815.t1;g815.t1;Cre01.g036250.t1.1;Cre01.g036250.t1.1;g815.t1;Cre01.g036250.t1.1;g815.t1;g815.t1;Cre01.g036250.t1.1;g815.t1;Cre01.g036250.t1.1"		
+Cre01.g010700	GMM:31.4	"cell.vesicle transport"		GO:0005515	"protein binding"	SYP2	"Cre01.g010700.t1.1;g266.t1;SYP2"	SYP2	"Conserved Hypothetical Protein, Qa-SNARE, Late endosomes, vacuoles"
+Cre01.g025600			Mitochondrion				"g587.t1;Cre01.g025600.t1.1"		
+Cre01.g039050			Mitochondrion				"g873.t1;g873.t1;g873.t1"		
+Cre01.g040000	GMM:29.2.1.2.2.26	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L26"	Chloroplast	"GO:0015934;GO:0006412;GO:0003735"	"large ribosomal subunit;translation;structural constituent of ribosome"	RPL26	"g893.t1;Cre01.g040000.t1.1;g893.t1;Cre01.g040000.t1.1"	"RPL26;RPL26"	"Cytosolic 60S large ribosomal subunit protein L26;Cytosolic 60S large ribosomal subunit protein L26"
+Cre01.g044150				GO:0008168	"methyltransferase activity"		g987.t1		
+Cre01.g055473							g1240.t1		
+Cre01.g006800	GMM:29.4	"protein.postranslational modification"				PIGA	"SETH2;g178.t1;GTR18;GPI1"	PIGA1	"UDP-Glycosyltransferase (PIG-A); involved in first step of GPI anchor biosynthesis; Orthologous to PIGA/SETH2 (AT3G45100) in Arabidopsis thaliana"
+Cre01.g052800	"GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4"	"cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g1168.t1;g1168.t1;g1168.t1"		
+Cre01.g001250			"Secretory pathway"				"Cre01.g001250.t1.1;g28.t1"		
+Cre01.g012175									
+Cre01.g016700							"g399.t1;g399.t1;g399.t1"		
+Cre01.g052200	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g1157.t1;Cre01.g052200.t1.1"		
+Cre01.g015250	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0008408;GO:0003677;GO:0000166"	"3'-5' exonuclease activity;DNA binding;nucleotide binding"	POLD1	"g368.t1;POLD1;DIV45;g368.t1;DIV45;POLD1"	"POLD1;POLD1"	"Homologous to eukaryotic DNA polymerase delta catalytic subunit; Replication polymerase. Class B polymerase.ts-lethal mutations block in S/M (PMID 25336509);Homologous to eukaryotic DNA polymerase delta catalytic subunit; Replication polymerase. Class B polymerase.ts-lethal mutations block in S/M (PMID 25336509)"
+Cre01.g047950	GMM:31.6.1.3.2.2	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	IFT27	"Rabl4;FAP156;g1065.t1;FAP156;Rabl4;g1065.t1;Rabl4;FAP156;g1065.t1"	"IFT27;IFT27;IFT27"	"Small GTPase distantly related to Rab-like proteins from mammals, found in the flagellar proteome [PMID: 15998802]; belongs to IFT-B1 particle;;Small GTPase distantly related to Rab-like proteins from mammals, found in the flagellar proteome [PMID: 15998802]; belongs to IFT-B1 particle;;Small GTPase distantly related to Rab-like proteins from mammals, found in the flagellar proteome [PMID: 15998802]; belongs to IFT-B1 particle;"
+Cre01.g035950			Mitochondrion	"GO:0055085;GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0008271"	"transmembrane transport;integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;secondary active sulfate transmembrane transporter activity"		"g809.t1;g809.t1;g809.t1;g809.t1;g809.t1;g809.t1;g809.t1"		
+Cre01.g038650	"GMM:27.4;GMM:27.1.1"	"RNA.RNA binding;RNA.processing.splicing"	Chloroplast	GO:0003676	"nucleic acid binding"	SRS2	"g865.t1;SRS2;Cre01.g038650.t1.1"	SRS2	"Serine/arginine-rich pre-mRNA splicing factor protein of the SC35-like subfamily"
+Cre01.g030050	GMM:29.2.1.99.2.34	"protein.synthesis.ribosomal protein.unknown.large subunit.L34"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPL34	"Cre01.g030050.t1.1;g682.t1"	PRPL34	"imported to chloroplast and part of the large 50S ribosomal subunit"
+Cre01.g038250	"GMM:13.2.7;GMM:11.3"	"amino acid metabolism.degradation.histidine;lipid metabolism.phospholipid synthesis"	Chloroplast	"GO:0030170;GO:0019752;GO:0016831"	"pyridoxal phosphate binding;carboxylic acid metabolic process;carboxy-lyase activity"	SDC1	"g856.t1;Cre01.g038250.t1.1;SDC1;SDC1;Cre01.g038250.t1.1;g856.t1;SDC1;g856.t1;Cre01.g038250.t1.1;SDC1;Cre01.g038250.t1.1;g856.t1;SDC1;Cre01.g038250.t1.1;g856.t1"	"SDC1;SDC1;SDC1;SDC1;SDC1"	"Serine decarboxylase involved in ethanolamine production for PtdEtn biosynthesis;Serine decarboxylase involved in ethanolamine production for PtdEtn biosynthesis;Serine decarboxylase involved in ethanolamine production for PtdEtn biosynthesis;Serine decarboxylase involved in ethanolamine production for PtdEtn biosynthesis;Serine decarboxylase involved in ethanolamine production for PtdEtn biosynthesis"
+Cre01.g046237	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"	Mitochondrion	"GO:0046872;GO:0005524"	"metal ion binding;ATP binding"		"g1034.t2;GEX33"		"ts lethal mutations isolated (PMID 25336509)"
+Cre01.g010800	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"	Mitochondrion	"GO:0036459;GO:0016579"	"thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination"		"g268.t1;g268.t1"		
+Cre01.g036750						DMA1	"Cre01.g036750.t1.1;DMA1;g825.t1"	DMA1	"Putative DNA methylase, N-6 adenine-specific"
+Cre01.g005150	"GMM:13.1.5.2.3;GMM:13.1.1.3.11;GMM:1.2.3"	"amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.serine glyoxylate aminotransferase;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase;PS.photorespiration.aminotransferases peroxisomal"	Mitochondrion			SGA1	"SGA1;g125.t1;SGA1;g125.t1;SGA1;g125.t1;g125.t1;SGA1;g125.t1;SGA1;g125.t1;SGA1;SGA1;g125.t1;SGA1;g125.t1;g125.t1;SGA1;SGA1;g125.t1"	"SGA1;SGA1;SGA1;SGA1;SGA1;SGA1;SGA1;SGA1;SGA1;SGA1"	"Putative aminotransferase (class V) with homology to serine glyoxylate aminotransferases from Arabidopsis (TrEMBL: 081248) and Frillaria agrestis (GenBank AAB95218); this is the longer and more abundant splicing variant SGA1a; both are predicted mitochondrial (TPlen 29) like orthologues in mouse, dog, X. laevis, C. elegans (plus Leishmania and Candida ?), but unlike Arabidopsis, C. merolae, D. discoideum, Drosophila etc... Danio rerio appears to have both a mitochondrial (79378) and a cytosolic (436603) is;Putative aminotransferase (class V) with homology to serine glyoxylate aminotransferases from Arabidopsis (TrEMBL: 081248) and Frillaria agrestis (GenBank AAB95218); this is the longer and more abundant splicing variant SGA1a; both are predicted mitochondrial (TPlen 29) like orthologues in mouse, dog, X. laevis, C. elegans (plus Leishmania and Candida ?), but unlike Arabidopsis, C. merolae, D. discoideum, Drosophila etc... Danio rerio appears to have both a mitochondrial (79378) and a cytosolic (436603) is;Putative aminotransferase (class V) with homology to serine glyoxylate aminotransferases from Arabidopsis (TrEMBL: 081248) and Frillaria agrestis (GenBank AAB95218); this is the longer and more abundant splicing variant SGA1a; both are predicted mitochondrial (TPlen 29) like orthologues in mouse, dog, X. laevis, C. elegans (plus Leishmania and Candida ?), but unlike Arabidopsis, C. merolae, D. discoideum, Drosophila etc... Danio rerio appears to have both a mitochondrial (79378) and a cytosolic (436603) is;Putative aminotransferase (class V) with homology to serine glyoxylate aminotransferases from Arabidopsis (TrEMBL: 081248) and Frillaria agrestis (GenBank AAB95218); this is the longer and more abundant splicing variant SGA1a; both are predicted mitochondrial (TPlen 29) like orthologues in mouse, dog, X. laevis, C. elegans (plus Leishmania and Candida ?), but unlike Arabidopsis, C. merolae, D. discoideum, Drosophila etc... Danio rerio appears to have both a mitochondrial (79378) and a cytosolic (436603) is;Putative aminotransferase (class V) with homology to serine glyoxylate aminotransferases from Arabidopsis (TrEMBL: 081248) and Frillaria agrestis (GenBank AAB95218); this is the longer and more abundant splicing variant SGA1a; both are predicted mitochondrial (TPlen 29) like orthologues in mouse, dog, X. laevis, C. elegans (plus Leishmania and Candida ?), but unlike Arabidopsis, C. merolae, D. discoideum, Drosophila etc... Danio rerio appears to have both a mitochondrial (79378) and a cytosolic (436603) is;Putative aminotransferase (class V) with homology to serine glyoxylate aminotransferases from Arabidopsis (TrEMBL: 081248) and Frillaria agrestis (GenBank AAB95218); this is the longer and more abundant splicing variant SGA1a; both are predicted mitochondrial (TPlen 29) like orthologues in mouse, dog, X. laevis, C. elegans (plus Leishmania and Candida ?), but unlike Arabidopsis, C. merolae, D. discoideum, Drosophila etc... Danio rerio appears to have both a mitochondrial (79378) and a cytosolic (436603) is;Putative aminotransferase (class V) with homology to serine glyoxylate aminotransferases from Arabidopsis (TrEMBL: 081248) and Frillaria agrestis (GenBank AAB95218); this is the longer and more abundant splicing variant SGA1a; both are predicted mitochondrial (TPlen 29) like orthologues in mouse, dog, X. laevis, C. elegans (plus Leishmania and Candida ?), but unlike Arabidopsis, C. merolae, D. discoideum, Drosophila etc... Danio rerio appears to have both a mitochondrial (79378) and a cytosolic (436603) is;Putative aminotransferase (class V) with homology to serine glyoxylate aminotransferases from Arabidopsis (TrEMBL: 081248) and Frillaria agrestis (GenBank AAB95218); this is the longer and more abundant splicing variant SGA1a; both are predicted mitochondrial (TPlen 29) like orthologues in mouse, dog, X. laevis, C. elegans (plus Leishmania and Candida ?), but unlike Arabidopsis, C. merolae, D. discoideum, Drosophila etc... Danio rerio appears to have both a mitochondrial (79378) and a cytosolic (436603) is;Putative aminotransferase (class V) with homology to serine glyoxylate aminotransferases from Arabidopsis (TrEMBL: 081248) and Frillaria agrestis (GenBank AAB95218); this is the longer and more abundant splicing variant SGA1a; both are predicted mitochondrial (TPlen 29) like orthologues in mouse, dog, X. laevis, C. elegans (plus Leishmania and Candida ?), but unlike Arabidopsis, C. merolae, D. discoideum, Drosophila etc... Danio rerio appears to have both a mitochondrial (79378) and a cytosolic (436603) is;Putative aminotransferase (class V) with homology to serine glyoxylate aminotransferases from Arabidopsis (TrEMBL: 081248) and Frillaria agrestis (GenBank AAB95218); this is the longer and more abundant splicing variant SGA1a; both are predicted mitochondrial (TPlen 29) like orthologues in mouse, dog, X. laevis, C. elegans (plus Leishmania and Candida ?), but unlike Arabidopsis, C. merolae, D. discoideum, Drosophila etc... Danio rerio appears to have both a mitochondrial (79378) and a cytosolic (436603) is"
+Cre01.g036150			Chloroplast				"g813.t1;Cre01.g036150.t1.1;Cre01.g036150.t1.1;g813.t1"		
+Cre01.g050600	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"		"GO:0008168;GO:0006139"	"methyltransferase activity;nucleobase-containing compound metabolic process"		g1118.t1		
+Cre01.g012750	GMM:34.15	transport.potassium		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	KCN7	"KCN7;g315.t1;g315.t1;KCN7;g315.t1;KCN7"		"part of a cluster of 4 related potassium channels;part of a cluster of 4 related potassium channels;part of a cluster of 4 related potassium channels"
+Cre01.g025250	GMM:18.3	"Co-factor and vitamine metabolism.riboflavin"	Chloroplast	"GO:0009231;GO:0008531"	"riboflavin biosynthetic process;riboflavin kinase activity"	RFK2	"RFK2;g580.t1;g580.t1;RFK2"	"RFK2;RFK2"	"biosynthesis of FMN from riboflavin and ATP;biosynthesis of FMN from riboflavin and ATP"
+Cre01.g051250	"GMM:31.6.1.6.1;GMM:31.6.1.4.1"	"cell.motility.eukaryotes.central pair.C1a;cell.motility.eukaryotes.axonemal dyneins.outer arm"				DLE1	"ODA-LC4;DLC4;g1135.t1;Cre01.g051250.t1.1"	DLE1	"LC4 component of outer arm dynein; calmodulin homolog. Binds calcium and associates with ODA gamma heavy chain N-terminal domain"
+Cre01.g001800	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	FAP403	"MLCK1;g44.t1;g44.t1;MLCK1;g44.t1;MLCK1"	"FAP403;FAP403;FAP403"	"NimA-related Serine/Threonine protein kinase;NimA-related Serine/Threonine protein kinase;NimA-related Serine/Threonine protein kinase"
+Cre01.g014600	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CSK2			
+Cre01.g025150						CPLD15	"g578.t1;Cre01.g025150.t1.1;g578.t1;Cre01.g025150.t1.1"	"CPLD15;CPLD15"	"Conserved in the Plant Lineage and Diatoms;Conserved in the Plant Lineage and Diatoms"
+Cre01.g040801			Chloroplast				"g914.t1;Cre01.g040800.t1.3"		
+Cre01.g063997	GMM:35.1.41	"not assigned.no ontology.hydroxyproline rich proteins"	Chloroplast				"Cre23.g766650.t1.2;g1267.t1;Cre23.g766650.t1.1;g1267.t1;Cre23.g766650.t1.2;Cre23.g766650.t1.1;g1267.t1;Cre23.g766650.t1.1;Cre23.g766650.t1.2;Cre23.g766650.t1.1;g1267.t1;Cre23.g766650.t1.2"		
+Cre01.g007950	GMM:26.1	misc.misc2		"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP55B1	"CYP2;CYP55B1;g204.t1;CYP55B1;g204.t1;CYP2;CYP55B1;g204.t1;CYP2;g204.t1;CYP2;CYP55B1"	"CYP55B1;CYP55B1;CYP55B1;CYP55B1"	
+Cre01.g027800	"GMM:34.1.1.6;GMM:34.1.1"	"transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit H;transport.p- and v-ATPases.H+-transporting two-sector ATPase"		"GO:0046961;GO:0016820;GO:0015991;GO:0000221"	"proton-transporting ATPase activity, rotational mechanism;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;ATP hydrolysis coupled proton transport;vacuolar proton-transporting V-type ATPase, V1 domain"	ATPVH	"Cre01.g027800.t1.1;g636.t1;ATPvH"	ATPVH1	"Probable vacuolar ATP synthase subunit H, V-ATPase H subunit, Vacuolar proton pump H subunit"
+Cre01.g038151	"GMM:31.2;GMM:29.5.11.20;GMM:27.3.42"	"cell.division;protein.degradation.ubiquitin.proteasom;RNA.regulation of transcription.bromodomain proteins"		"GO:0005524;GO:0005515"	"ATP binding;protein binding"		"g854.t1;Cre01.g038150.t1.3;Cre01.g038150.t1.3;g854.t1"		
+Cre01.g014700			Mitochondrion				"Cre01.g014700.t1.1;g356.t1"		
+Cre01.g021450	GMM:20.1.3	stress.biotic.signalling		GO:0005515	"protein binding"	TPR4	"g497.t1;TPR4;g497.t1;TPR4;g497.t1;TPR4"	"TPR4;TPR4;TPR4"	"TPR protein orthologous to Arabidopsis SRFR1 (At4g37460) and rice BAC80093; Predicted chloroplast targeting; ts-lethal mutant was isolated [PMID: 29743196];TPR protein orthologous to Arabidopsis SRFR1 (At4g37460) and rice BAC80093; Predicted chloroplast targeting; ts-lethal mutant was isolated [PMID: 29743196];TPR protein orthologous to Arabidopsis SRFR1 (At4g37460) and rice BAC80093; Predicted chloroplast targeting; ts-lethal mutant was isolated [PMID: 29743196]"
+Cre01.g003650							"g92.t1;g92.t1;g92.t1;g92.t1;g92.t1;g92.t1;g92.t1"		
+Cre01.g000800			"Secretory pathway"			CGL136	"Cre01.g000800.t1.1;g19.t1;g19.t1;Cre01.g000800.t1.1;g19.t1;Cre01.g000800.t1.1;g19.t1;Cre01.g000800.t1.1;Cre01.g000800.t1.1;g19.t1"	"CGL136;CGL136;CGL136;CGL136;CGL136"	
+Cre01.g028950	GMM:26.23	misc.rhodanese	"Secretory pathway"				"Cre01.g028950.t1.1;g660.t1"		
+Cre01.g038400	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"	"Secretory pathway"	"GO:0051082;GO:0006457;GO:0005783;GO:0005509"	"unfolded protein binding;protein folding;endoplasmic reticulum;calcium ion binding"	CRT2	"Cre01.g038400.t1.1;CRT2;g860.t1;CRT2;g860.t1;Cre01.g038400.t1.1"	"CRT2;CRT2"	"Calreticulin 2. Calreticulin (CRT) is a high-capacity calcium-binding protein mainly localized to the endoplasmic reticulum in eukaryotic cells. Higher plants contain two distinct groups of CRTs: a CRT1/CRT2 group and a CRT3 group. Similar to Arabidopsis At1g09210.1;Calreticulin 2. Calreticulin (CRT) is a high-capacity calcium-binding protein mainly localized to the endoplasmic reticulum in eukaryotic cells. Higher plants contain two distinct groups of CRTs: a CRT1/CRT2 group and a CRT3 group. Similar to Arabidopsis At1g09210.1"
+Cre01.g016200	"GMM:34.14;GMM:20.1.3.1"	"transport.unspecified cations;stress.biotic.signalling.MLO-like"		"GO:0016021;GO:0006952"	"integral component of membrane;defense response"	MLO4	"MLO4;g385.t1;MLO4;g385.t1"		"Integral membrane protein, plant GCPR-like Mlo family; contains a C-terminal EF-hand domain pair; linked to MLO3;Integral membrane protein, plant GCPR-like Mlo family; contains a C-terminal EF-hand domain pair; linked to MLO3"
+Cre01.g036550			"Secretory pathway"	"GO:0035556;GO:0016020"	"intracellular signal transduction;membrane"	ERV14	"g821.t1;ERV14;Cre01.g036550.t1.1"	ERV14	"Expressed Protein. Similar to Erv14p/cornichon, an ER vesicle integral membrane protein involved in establishing cell polarity, signaling and protein degradation"
+Cre01.g030700	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	PTK14	"PTK14;g695.t1;PTK14;g695.t1;g695.t1;PTK14;g695.t1;PTK14;PTK14;g695.t1"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre01.g002824	GMM:26.16	misc.myrosinases-lectin-jacalin	Mitochondrion			SRR24B			
+Cre01.g020950	GMM:29.2.6	"protein.synthesis.ribosomal RNA"		"GO:0042254;GO:0005634"	"ribosome biogenesis;nucleus"		"g487.t1;Cre01.g020950.t1.1"		
+Cre01.g063632	GMM:28.2	DNA.repair		"GO:0008534;GO:0006289;GO:0006284;GO:0003684"	"oxidized purine nucleobase lesion DNA N-glycosylase activity;nucleotide-excision repair;base-excision repair;damaged DNA binding"		"g1266.t1;Cre23.g766700.t1.1;g1266.t1;Cre23.g766700.t1.1"		
+Cre01.g001100							"Cre01.g001100.t1.1;g25.t1;g25.t1;Cre01.g001100.t1.1"		
+Cre01.g037650							"Cre01.g037650.t1.1;g844.t1"		
+Cre01.g046650							"g1012.t1;Cre01.g046650.t1.1"		
+Cre01.g011200	GMM:27.3	"RNA.regulation of transcription"		"GO:0006367;GO:0005669"	"transcription initiation from RNA polymerase II promoter;transcription factor TFIID complex"		"g280.t1;Cre01.g011200.t1.1;g280.t1;Cre01.g011200.t1.1;Cre01.g011200.t1.1;g280.t1"		
+Cre01.g003475			"Secretory pathway"				g81.t1		
+Cre01.g021350			Chloroplast				"g495.t1;Cre01.g021350.t1.1"		
+Cre01.g047265			"Secretory pathway"			PHC52	"g1051.t1;g1051.t1"	"PHC52;PHC52"	"Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain; Null-allele mutant was isolated;;Belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain; Null-allele mutant was isolated;"
+Cre01.g061807	"GMM:20.1;GMM:2.1"	"stress.biotic;major CHO metabolism.synthesis"	"Secretory pathway"				"Cre23.g766950.t1.1;g1261.t1;Cre23.g766950.t1.2"		
+Cre01.g021700	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG36	"CYG36;g502.t1;CYG36;g502.t1"		"Large protein with C-terminal domain similar to guanylate cyclase [Aedes aegypti];Large protein with C-terminal domain similar to guanylate cyclase [Aedes aegypti]"
+Cre01.g041752	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"	Chloroplast				g936.t1		
+Cre01.g035200			"Secretory pathway"	GO:0008270	"zinc ion binding"		"g794.t1;Cre01.g035200.t1.1"		
+Cre01.g008300			Mitochondrion				"g211.t2;g211.t2;g211.t2"		
+Cre01.g053950			Chloroplast				g1192.t1		
+Cre01.g039250	GMM:29.2.1.2.1.2	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S2"		"GO:0006412;GO:0005840;GO:0003735;GO:0003723"	"translation;ribosome;structural constituent of ribosome;RNA binding"	RPS2	"g877.t2;g877.t2"	"RPS2;RPS2"	"Cytosolic 40S small ribosomal subunit protein S2;Cytosolic 40S small ribosomal subunit protein S2"
+Cre01.g010150				GO:0005525	"GTP binding"		"g255.t1;Cre01.g010150.t1.1"		
+Cre01.g029900	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"Cre01.g029900.t1.1;g679.t1;g679.t1;Cre01.g029900.t1.1;Cre01.g029900.t1.1;g679.t1"		
+Cre01.g009200			Chloroplast				"g232.t1;Cre01.g009200.t1.1;g232.t1;Cre01.g009200.t1.1"	"POB29;POB29"	"Found in basal body proteome;Found in basal body proteome"
+Cre01.g039350	"GMM:26.10;GMM:26.1;GMM:16.2"	"misc.cytochrome P450;misc.misc2;secondary metabolism.phenylpropanoids"	"Secretory pathway"	"GO:0055114;GO:0016491;GO:0010181"	"oxidation-reduction process;oxidoreductase activity;FMN binding"	NCR2	"Cre01.g039350.t1.1;NCR2;g879.t1"	NCR2	"NADPH-cytochrome P450 reductase (NADPH-ferrihemoprotein reductase); Orthologous to two P450 reductases in Arabidopsis thaliana (AT4G24520.1, AT4G30210.1);"
+Cre01.g043700							"g977.t1;Cre01.g043700.t1.1;g977.t1;Cre01.g043700.t1.1"		
+Cre01.g024400	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"	"Secretory pathway"			TRS85	"g564.t1;g564.t1;g564.t1;g564.t1"	"TRS85;TRS85;TRS85;TRS85"	"Expressed Protein. Similar to TRS85, a component of the TRAPP complex, involved in ER to Golgi vesicle transport.;Expressed Protein. Similar to TRS85, a component of the TRAPP complex, involved in ER to Golgi vesicle transport.;Expressed Protein. Similar to TRS85, a component of the TRAPP complex, involved in ER to Golgi vesicle transport.;Expressed Protein. Similar to TRS85, a component of the TRAPP complex, involved in ER to Golgi vesicle transport."
+Cre01.g022100	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	"ubiquitin-protein transferase activity"		"g510.t1;Cre01.g022100.t1.1"		
+Cre01.g043850	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g981.t1;g981.t1;g981.t1"		
+Cre01.g019300			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g452.t1;g452.t1;g452.t1;g452.t1;g452.t1"		"contains a Class III nucleotidyl cyclase domain;contains a Class III nucleotidyl cyclase domain;contains a Class III nucleotidyl cyclase domain;contains a Class III nucleotidyl cyclase domain;contains a Class III nucleotidyl cyclase domain"
+Cre01.g048250							"g1072.t1;Cre01.g048250.t1.1"		
+Cre01.g009500	"GMM:30.3;GMM:29.4"	"signalling.calcium;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CDPK3	"g239.t1;CDPK3;Cre01.g009500.t1.1"	CDPK5	"Identified as CrCDPK5 in [PMID: 23936117]"
+Cre01.g040517									
+Cre01.g047700	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN40	"Cre01.g047700.t1.1;g1060.t1;g1060.t1;Cre01.g047700.t1.1"	"CYN40;CYN40"	"Co-chaperone of cytosolic HSP90, homolog of mammilian CYP40; Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; C-terminal TPR domain involved in HSP90 interaction; cytosolic; similar to At2g15790 (AtCYP40, CYP40) and AT2G38730 (AtCYP22);Co-chaperone of cytosolic HSP90, homolog of mammilian CYP40; Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; C-terminal TPR domain involved in HSP90 interaction; cytosolic; similar to At2g15790 (AtCYP40, CYP40) and AT2G38730 (AtCYP22)"
+Cre01.g033700							"g761.t1;Cre01.g033700.t1.1"		
+Cre01.g005050			"Secretory pathway"	GO:0016020	membrane		"g122.t1;g122.t1;g122.t1;g122.t1;g122.t1;g122.t1;g122.t1;g122.t1;g122.t1;g122.t1;g122.t1"		
+Cre01.g041000							g918.t1		
+Cre01.g049100			"Secretory pathway"	GO:0005515	"protein binding"		"g1089.t1;g1089.t1;g1089.t1;g1089.t1;g1089.t1;g1089.t1;g1089.t1"		
+Cre01.g007051	"GMM:29.5.11;GMM:29.2.1.2.2.40"	"protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	RPL40	"Cre01.g007051.t1.1;g185.t1"	RPL40	"cytosolic 60S large ribosomal subunit; ubiquitin-2 like RAD60 N-terminal domain"
+Cre01.g020701			Mitochondrion				"g479.t1;Cre01.g020700.t1.3"		
+Cre01.g012650	GMM:34.15	transport.potassium	"Secretory pathway"	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	KCN9	"g313.t1;KCN9;g313.t1;KCN9;g313.t1;KCN9;KCN9;g313.t1"		"part of a cluster of 4 related potassium channels;part of a cluster of 4 related potassium channels;part of a cluster of 4 related potassium channels;part of a cluster of 4 related potassium channels"
+Cre01.g029400	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"		"g669.t1;Cre01.g029400.t1.1;g669.t1;Cre01.g029400.t1.1"		
+Cre01.g053360									
+Cre01.g037500			Chloroplast	GO:0005515	"protein binding"		"g841.t1;Cre01.g037500.t1.1"		
+Cre01.g013500							"Cre01.g013500.t1.1;g330.t2;g330.t2;Cre01.g013500.t1.1"		
+Cre01.g001400	GMM:29.5	protein.degradation	"Secretory pathway"	"GO:0016020;GO:0007155;GO:0006508;GO:0004222"	"membrane;cell adhesion;proteolysis;metalloendopeptidase activity"	ZMP1	"ZMP1;g31.t1;ZMP1;g31.t1"		"Similar to leishmanolysin-like peptidase (peptidase M8 family); neutral zinc metallopeptidases; zinc-binding site;Similar to leishmanolysin-like peptidase (peptidase M8 family); neutral zinc metallopeptidases; zinc-binding site"
+Cre01.g023200							"g535.t1;Cre01.g023200.t1.1;g535.t1;Cre01.g023200.t1.1;g535.t1;Cre01.g023200.t1.1;g535.t1;Cre01.g023200.t1.1;g535.t1;Cre01.g023200.t1.1;g535.t1;Cre01.g023200.t1.1"		
+Cre01.g005950			Chloroplast				"Cre01.g005950.t1.1;g143.t1;Cre01.g005950.t1.1;g143.t1;Cre01.g005950.t1.1;g143.t1"		
+Cre01.g029550							"g672.t1;g672.t1"		
+Cre01.g026700			Chloroplast				"g612.t1;g612.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre01.g054950	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion				"g1212.t1;Cre01.g054950.t1.1"		
+Cre01.g030900	"GMM:18.5.2.4;GMM:11.1.8"	"Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.succinyl-benzoyl CoA synthetase;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase"	"Secretory pathway"	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		g699.t1		
+Cre01.g049950	GMM:29.5.1	protein.degradation.subtilases	"Secretory pathway"	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	VLE1	"SPO;g1105.t1;VLE1"	VLE1	"subtilisin-like protease involved in the digestion of the sporangial/mother cell wall and hatching of daughter cells after mitosis in the Chlamydomonas vegetative cell cycle. Characterized by Kubo et al. (2009) [PMID: 19179351]; null-allele mutant was isolated (PMID 29743196)"
+Cre01.g050616									
+Cre01.g037751							"g846.t1;Cre01.g037750.t1.3;Cre01.g037750.t1.3;g846.t1"		
+Cre01.g016750	"GMM:20.2.5;GMM:1.1.1.2"	"stress.abiotic.light;PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast			PSBS2	"g400.t1;Cre01.g016750.t1.1"	PSBS2	"one of the two neighbor genes homologous to higher plant PsbS (Npq4) that is involved in Non-Photochemical Quenching (PMID: 10667783; PMID:15222740); shows a single AA difference compared to upstream convergent PSBS1; involved in acclimatation to UV-B; regulated by UVR8"
+Cre01.g028713									
+Cre01.g016500			"Secretory pathway"			DLD2	g391.t1		
+Cre01.g016514	"GMM:8.1.1.3;GMM:11.1.31"	"TCA / organic transformation.TCA.pyruvate DH.E3;lipid metabolism.FA synthesis and FA elongation.pyruvate DH"	Chloroplast	"GO:0055114;GO:0050660;GO:0045454;GO:0016491;GO:0008033"	"oxidation-reduction process;flavin adenine dinucleotide binding;cell redox homeostasis;oxidoreductase activity;tRNA processing"			DLD2	"Putative dihydrolipoamide dehydrogenase (EC 1.8.1.4), E3 component of pyruvate dehydrogenase complex, plastid precursor."
+Cre01.g031050	GMM:27.3.52	"RNA.regulation of transcription.global transcription factor group"					"g704.t1;Cre01.g031050.t1.1"		
+Cre01.g006000			Mitochondrion				g144.t1		
+Cre01.g035850	"GMM:31.4;GMM:29.3.4.2"	"cell.vesicle transport;protein.targeting.secretory pathway.golgi"		"GO:0030127;GO:0008270;GO:0006888;GO:0006886"	"COPII vesicle coat;zinc ion binding;ER to Golgi vesicle-mediated transport;intracellular protein transport"	SEC24B	"Cre01.g035850.t1.1;g807.t1;g807.t1;Cre01.g035850.t1.1;g807.t1;Cre01.g035850.t1.1;g807.t1;Cre01.g035850.t1.1;g807.t1;Cre01.g035850.t1.1"	"SEC24B;SEC24B;SEC24B;SEC24B;SEC24B"	"Hypothetical Conserved Protein. Similar to SEC24 component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Hypothetical Conserved Protein. Similar to SEC24 component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Hypothetical Conserved Protein. Similar to SEC24 component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Hypothetical Conserved Protein. Similar to SEC24 component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Hypothetical Conserved Protein. Similar to SEC24 component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex."
+Cre01.g032350			"Secretory pathway"			PIG8	"Cre01.g032350.t1.1;g732.t1;PIG8;PIG8;g732.t1;Cre01.g032350.t1.1;Cre01.g032350.t1.1;PIG8;g732.t1"	"PIG8;PIG8;PIG8"	"induced by p53 in etoposide-treated cells, also known as Ei24 etoposide-induced protein 2.4 (PMID:8649819); candidate tumor suppressor gene coding for an apoptosis factor that is an ER-localized Bcl-2 binding protein (PMID:15781622); in C. reinhardtii, affected by agents known to interfere with p53 (PMID:16678168);induced by p53 in etoposide-treated cells, also known as Ei24 etoposide-induced protein 2.4 (PMID:8649819); candidate tumor suppressor gene coding for an apoptosis factor that is an ER-localized Bcl-2 binding protein (PMID:15781622); in C. reinhardtii, affected by agents known to interfere with p53 (PMID:16678168);induced by p53 in etoposide-treated cells, also known as Ei24 etoposide-induced protein 2.4 (PMID:8649819); candidate tumor suppressor gene coding for an apoptosis factor that is an ER-localized Bcl-2 binding protein (PMID:15781622); in C. reinhardtii, affected by agents known to interfere with p53 (PMID:16678168)"
+Cre01.g027350	GMM:27.1	RNA.processing		"GO:0008173;GO:0006396;GO:0003723"	"RNA methyltransferase activity;RNA processing;RNA binding"	tmg10	"TMG10;g625.t1;Cre01.g027350.t1.1;Cre01.g027350.t1.1;TMG10;g625.t1"		
+Cre01.g055432	"GMM:34.99;GMM:31.2.5"	"transport.misc;cell.division.plastid"	Mitochondrion	"GO:0055085;GO:0016020"	"transmembrane transport;membrane"		"g1230.t1;Cre23.g768200.t1.1;g1230.t1;Cre23.g768200.t1.1;g1230.t1;Cre23.g768200.t1.1;g1230.t1;Cre23.g768200.t1.1;Cre23.g768200.t1.1;g1230.t1"		
+Cre01.g069837							"g1285.t1;Cre23.g765950.t1.1;Cre23.g765950.t1.1;g1285.t1;g1285.t1;Cre23.g765950.t1.1;g1285.t1;Cre23.g765950.t1.1;g1285.t1;Cre23.g765950.t1.1"		
+Cre01.g023950			Mitochondrion				"g554.t1;g554.t1"		
+Cre01.g003050	GMM:31.4	"cell.vesicle transport"		"GO:0015031;GO:0006904;GO:0000145"	"protein transport;vesicle docking involved in exocytosis;exocyst"	SEC8	"Cre01.g003050.t1.1;g72.t1;g72.t1;Cre01.g003050.t1.1"	"SEC8;SEC8"	"Hypothetical Conserved Protein. Similar to SEC8, a subunit of the Exocyst.;Hypothetical Conserved Protein. Similar to SEC8, a subunit of the Exocyst."
+Cre01.g000450						AXL2	"ERR2;AXL2;g12.t1;Cre01.g000450.t1.1;Cre01.g000450.t1.1;g12.t1;AXL2;ERR2"		"belongs to a tandem cluster of three related genes for GT77 family proteins;belongs to a tandem cluster of three related genes for GT77 family proteins"
+Cre01.g043150							"BLZ15;g965.t1;Cre01.g043150.t1.1"		"Putative basic-leucine zipper (bZIP) transcription factor"
+Cre01.g047600	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"					"g1058.t1;SDR4;Cre01.g047600.t1.1;SDR4;Cre01.g047600.t1.1;g1058.t1;SDR4;g1058.t1;Cre01.g047600.t1.1"		" 3-oxoacyl-[acyl-carrier-protein] reductase-related protein; 3-oxoacyl-[acyl-carrier-protein] reductase-related protein; 3-oxoacyl-[acyl-carrier-protein] reductase-related protein"
+Cre01.g029200	GMM:31.2	cell.division	"Secretory pathway"	"GO:0008233;GO:0006508;GO:0005634"	"peptidase activity;proteolysis;nucleus"	ESP1	"ESP1;DIV30;g665.t1;ESP1;DIV30;g665.t1;DIV30;g665.t1;ESP1"	"ESP1;ESP1;ESP1"	"Separase homolog; Protease that cleaves cohesin proteins to initiate anaphase. ts lethal mutations block with multiply replicated DNA in a single nucleus (PMID 25336509);Separase homolog; Protease that cleaves cohesin proteins to initiate anaphase. ts lethal mutations block with multiply replicated DNA in a single nucleus (PMID 25336509);Separase homolog; Protease that cleaves cohesin proteins to initiate anaphase. ts lethal mutations block with multiply replicated DNA in a single nucleus (PMID 25336509)"
+Cre01.g051000	GMM:26.6	"misc.O-methyl transferases"	Chloroplast	"GO:0008168;GO:0006479"	"methyltransferase activity;protein methylation"		"PRM;g1129.t1;g1129.t1;PRM"		"Likely Protein Arginine methyltransferase; Ribosomal L11 methyltransferase-like; null-allele mutant was isolated (PMID 29743196);Likely Protein Arginine methyltransferase; Ribosomal L11 methyltransferase-like; null-allele mutant was isolated (PMID 29743196)"
+Cre01.g017500	"GMM:29.5.11.4.2;GMM:29.2.2.3.99;GMM:29.2.2.1"	"protein.degradation.ubiquitin.E3.RING;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;protein.synthesis.ribosome biogenesis.export from nucleus"		GO:0042254	"ribosome biogenesis"		"Cre01.g017500.t1.1;g414.t1;Cre01.g017500.t1.1;g414.t1"		
+Cre01.g005600			Chloroplast	"GO:0051536;GO:0009055"	"iron-sulfur cluster binding;electron carrier activity"	FDX8	"FDX8;Cre01.g005650.t1.2;g136.t1"	FDX8	"Ferredoxin with 2Fe-2S iron-sulfur cluster binding domain"
+Cre01.g022666			Chloroplast						
+Cre01.g031250							"Cre01.g031250.t1.1;g707.t1"		
+Cre01.g006550									
+Cre01.g017450	GMM:28.1	"DNA.synthesis/chromatin structure"	"Secretory pathway"	"GO:0006260;GO:0003887;GO:0003677"	"DNA replication;DNA-directed DNA polymerase activity;DNA binding"	POLA2	"g413.t1;DIV46;DIV46;g413.t1"	"POLA2;POLA2"	"Homologous to eukaryotic DNA polymerase alpha catalytic subunit; Replication polymerase. Class B polymerase.ts-lethal mutations block in S/M (PMID 25336509);Homologous to eukaryotic DNA polymerase alpha catalytic subunit; Replication polymerase. Class B polymerase.ts-lethal mutations block in S/M (PMID 25336509)"
+Cre01.g037350			Mitochondrion			CGLD2	"g837.t1;CGLD2;TEH2;g837.t1;TEH2;CGLD2"	"CGLD2;CGLD2"	"Conserved in the Green Lineage and Diatoms;Conserved in the Green Lineage and Diatoms"
+Cre01.g005701			"Secretory pathway"				"g138.t1;Cre01.g005701.t1.1;g138.t1;Cre01.g005701.t1.1;g138.t1;Cre01.g005701.t1.1;g138.t1;Cre01.g005701.t1.1"		
+Cre01.g022550							"g520.t1;g520.t1"		
+Cre01.g043450			Chloroplast				"g972.t1;Cre01.g043450.t1.1"		
+Cre01.g028600	"GMM:26.8;GMM:16.4.1"	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;secondary metabolism.N misc.alkaloid-like"	Mitochondrion				"Cre01.g028600.t1.1;SDR2;g653.t1"		" 3-oxoacyl-[acyl-carrier-protein] reductase-related protein"
+Cre01.g034800							g785.t1		
+Cre01.g012950	"GMM:30.2.99;GMM:30.11;GMM:29.4.1"	"signalling.receptor kinases.misc;signalling.light;protein.postranslational modification.kinase"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g319.t1;g319.t1;g319.t1"		
+Cre01.g023500							"FAL2;g542.t1;Cre01.g023500.t1.1"		
+Cre01.g033550	"GMM:21.1.1;GMM:21.1"	"redox.thioredoxin.PDIL;redox.thioredoxin"	"Secretory pathway"	"GO:0045454;GO:0005783"	"cell redox homeostasis;endoplasmic reticulum"	PDI2	"g759.t1;Cre01.g033550.t1.1;Cre01.g033550.t1.1;g759.t1;g759.t1;Cre01.g033550.t1.1;g759.t1;Cre01.g033550.t1.1;Cre01.g033550.t1.1;g759.t1;Cre01.g033550.t1.1;g759.t1"	"PDI2;PDI2;PDI2;PDI2;PDI2;PDI2"	
+Cre01.g045500							"g1018.t1;Cre01.g045500.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g035400				"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		g798.t1		
+Cre01.g004350	GMM:35.1.41	"not assigned.no ontology.hydroxyproline rich proteins"		GO:0005515	"protein binding"	HLM1	"ROC77;ROC105;g107.t1;HLM1;ALIX;NAT3;Cre01.g004350.t1.1"	HLM1	"Matsuo et al.'s (2008) roc77 (rhythm of chloroplast 77) and roc105 circadian bioluminescence rhythm mutant loci map here"
+Cre01.g031726			"Secretory pathway"						
+Cre01.g070932	"GMM:33.3;GMM:27.3.28"	"development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"Cre23.g765800.t1.1;g1288.t1;Cre23.g765800.t1.1;g1288.t1"		
+Cre01.g022450			Mitochondrion				g517.t1		
+Cre01.g031951							"Cre01.g031950.t1.3;g723.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g019850	"GMM:29.5.9;GMM:29.5.7"	"protein.degradation.AAA type;protein.degradation.metalloprotease"	Mitochondrion	"GO:0016021;GO:0008270;GO:0006508;GO:0005524;GO:0004222"	"integral component of membrane;zinc ion binding;proteolysis;ATP binding;metalloendopeptidase activity"	FTSH3	"YTA10;FHL3;g462.t1"	FTSH3	"Mitochondrial FtsH protease; inner-membrane metalloprotease (M41) exposing catalytic sites to the mitochondrial matrix (?m-AAA_ protease); Similar to YTA10 in Saccharomyces cerevisiae"
+Cre01.g017900			"Secretory pathway"				"g422.t1;g422.t1;g422.t1"		
+Cre01.g033050									
+Cre01.g039626									
+Cre01.g042100							"Cre01.g042100.t1.1;g944.t1;g944.t1;Cre01.g042100.t1.1"		
+Cre01.g046800			Chloroplast					"MSP1;MSP1"	"UGA-encoded Selenocysteine residues at positions 47 and 104 ; contains SECIS in 3'-UTR; the second, best conserved Sec is within first of four transmembrane segments; family is present in algae, Amoebas, Sphaeroforma, but not animals; Sec transformed to Cys in some Chlorophyceae (C. eustigma, C. moewusii);UGA-encoded Selenocysteine residues at positions 47 and 104 ; contains SECIS in 3'-UTR; the second, best conserved Sec is within first of four transmembrane segments; family is present in algae, Amoebas, Sphaeroforma, but not animals; Sec transformed to Cys in some Chlorophyceae (C. eustigma, C. moewusii)"
+Cre01.g046850	"GMM:29.5.11.3;GMM:29.5.11"	"protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin"				UBC13	"Cre01.g046850.t1.1;g1041.t1;UBC13"	UBC13	"E2 Ubiquitin conjugating enzyme, subclass XII"
+Cre01.g018900	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0016567;GO:0005515;GO:0004842"	"protein ubiquitination;protein binding;ubiquitin-protein transferase activity"		"g444.t1;Cre01.g018900.t1.1;g444.t1;Cre01.g018900.t1.1;g444.t1;Cre01.g018900.t1.1;g444.t1;Cre01.g018900.t1.1"		
+Cre01.g042352	GMM:29.4.1	"protein.postranslational modification.kinase"	"Secretory pathway"	"GO:0016020;GO:0006508;GO:0005044;GO:0004252"	"membrane;proteolysis;scavenger receptor activity;serine-type endopeptidase activity"	SRR19			
+Cre01.g054550							"Cre01.g054550.t1.1;g1204.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g008850						HLM2	"g222.t1;HLM2;HLM2;g222.t1;g222.t1;HLM2;g222.t1;HLM2"		
+Cre01.g015850						FAP68	"g379.t1;g379.t1;g379.t1;g379.t1"	"FAP68;FAP68;FAP68;FAP68"	"Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG17 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400];Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG17 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400];Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG17 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400];Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG17 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400]"
+Cre01.g026450	GMM:27.1.1	RNA.processing.splicing		GO:0003676	"nucleic acid binding"	SRS1	"SRS1;SRP35;Cre01.g026450.t1.1;g607.t1;SRS1;g607.t1;Cre01.g026450.t1.1;SRP35;SRS1;g607.t1;SRP35;Cre01.g026450.t1.1"	"SRS1;SRS1;SRS1"	"Serine/arginine-rich pre-mRNA splicing factor protein of the SF2/ASF subfamily; contains two RNA recognition motifs (RRM);;Serine/arginine-rich pre-mRNA splicing factor protein of the SF2/ASF subfamily; contains two RNA recognition motifs (RRM);;Serine/arginine-rich pre-mRNA splicing factor protein of the SF2/ASF subfamily; contains two RNA recognition motifs (RRM);"
+Cre01.g044200							"Cre01.g044200.t1.1;g988.t1"		
+Cre01.g002300	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN19-2	"CYN19-2;CYN4;g56.t1;ROC1;Cre01.g002300.t1.1;ROC1;CYN19-2;Cre01.g002300.t1.1;CYN4;g56.t1;CYN4;g56.t1;CYN19-2;Cre01.g002300.t1.1;ROC1"	"CYN19B;CYN19B;CYN19B"	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; identical to AF5226 CYP1; cytosolic; similar to At4g38740 (ROC1, AtCYP18-3) and At2g21130+ (AtCYP19-2); found in the flagellar proteome; Similar to Radial Spoke Protein RSP12;Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; identical to AF5226 CYP1; cytosolic; similar to At4g38740 (ROC1, AtCYP18-3) and At2g21130+ (AtCYP19-2); found in the flagellar proteome; Similar to Radial Spoke Protein RSP12;Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; identical to AF5226 CYP1; cytosolic; similar to At4g38740 (ROC1, AtCYP18-3) and At2g21130+ (AtCYP19-2); found in the flagellar proteome; Similar to Radial Spoke Protein RSP12"
+Cre01.g027700			Chloroplast				"Cre01.g027700.t1.1;g633.t1;g633.t1;Cre01.g027700.t1.1"		
+Cre01.g055461			Chloroplast				"Cre23.g767900.t1.2;g1237.t1;Cre23.g767900.t1.1"		
+Cre01.g044400			Chloroplast				"g993.t1;Cre01.g044400.t1.1"		
+Cre01.g012800			Chloroplast			FAP230	g316.t1	FAP230	"Also found in basal body proteome as BUG19; Altered pI in DRC mutant axonemes; not conserved"
+Cre01.g026500	"GMM:29.5.4;GMM:27.3.99"	"protein.degradation.aspartate protease;RNA.regulation of transcription.unclassified"	"Secretory pathway"	"GO:0006508;GO:0004190"	"proteolysis;aspartic-type endopeptidase activity"	ASP3	"g608.t1;ASP3;ASP3;g608.t1"	"ASP3;ASP3"	"Aspartic protease, pepsin (A1) family; directed to secretory pathway;Aspartic protease, pepsin (A1) family; directed to secretory pathway"
+Cre01.g032250			Chloroplast				g730.t1		
+Cre01.g003700			Mitochondrion				"Cre01.g003700.t1.1;g93.t1;g93.t1;Cre01.g003700.t1.1;g93.t1;Cre01.g003700.t1.1"		
+Cre01.g022462									
+Cre01.g041650			Chloroplast				g932.t1		
+Cre01.g011630			Chloroplast				"g290.t2;Cre01.g011650.t2.1;g290.t2;Cre01.g011650.t2.1;Cre01.g011650.t2.1;g290.t2;Cre01.g011650.t2.1;g290.t2"		
+Cre01.g033832	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"		"HEL7;g764.t1"	RH39	
+Cre01.g033350	GMM:16.4.2.1	"secondary metabolism.N misc.betaine.betaine-aldehyde dehydrogenase"	"Secretory pathway"	"GO:0055114;GO:0016491;GO:0008152"	"oxidation-reduction process;oxidoreductase activity;metabolic process"	ALD2	"g753.t1;Cre01.g033350.t1.1;ALD2"	ALDH22	"Family 22 aldehyde dehydrogenase"
+Cre01.g025500			Mitochondrion				"g585.t1;g585.t1"		
+Cre01.g001501			Chloroplast			OPR1	"OPR1;g33.t1"	RAA11	"Necessary for trans-splicing of psaA mRNA; OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; Component of psaA trans-splicing sub complex I"
+Cre01.g012450	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	"ubiquitin-protein transferase activity"		"g309.t1;g309.t1;g309.t1;g309.t1"		
+Cre01.g029100	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006260;GO:0005634"	"DNA replication;nucleus"		"g663.t1;Cre01.g029100.t1.1"		
+Cre01.g018200	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"					"g430.t1;g430.t1;g430.t1;g430.t1"		"Acyl-CoA N-acyltransferase with RING/FYVE/PHD-type zinc finger domain;Acyl-CoA N-acyltransferase with RING/FYVE/PHD-type zinc finger domain;Acyl-CoA N-acyltransferase with RING/FYVE/PHD-type zinc finger domain;Acyl-CoA N-acyltransferase with RING/FYVE/PHD-type zinc finger domain"
+Cre01.g044650	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"	Mitochondrion	GO:0005515	"protein binding"		"g998.t1;Cre01.g044650.t1.1;g998.t1;Cre01.g044650.t1.1;g998.t1;Cre01.g044650.t1.1;g998.t1;Cre01.g044650.t1.1"		
+Cre01.g048050	GMM:18.4.6	"Co-factor and vitamine metabolism.pantothenate.phosphopantothenoylcysteine synthetase (PPCS)"				COA3	"COA3;Cre01.g048050.t1.1;g1067.t1;PPCS1;COAB1"	COAB1	"4-phospho-panto-thenoylcysteine synthetase/phosphopantothenate-cysteine ligase; Probably catalyzes the second and third steps (out of five) of CoA synthesis from pantothenate"
+Cre01.g049550			Mitochondrion				"g1099.t1;Cre01.g049550.t1.1"		
+Cre01.g038850	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g869.t1;g869.t1;g869.t1;g869.t1;g869.t1"		
+Cre01.g029950							"g680.t1;Cre01.g029950.t1.1"		
+Cre01.g029700			"Secretory pathway"				"g675.t1;Cre01.g029700.t1.1"		
+Cre01.g030600	"GMM:3.6;GMM:29.4"	"minor CHO metabolism.callose;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	MAPKKK4	"g693.t1;MAPKKK4;g693.t1;MAPKKK4;MAPKKK4;g693.t1;g693.t1;MAPKKK4;g693.t1;MAPKKK4"		"MAPKKK4; MAP (Mitogen-Activated) Kinase Kinase Kinase Homolog 4; MEK Kinase 4; MAP3K4; null-allele mutant was isolated (PMID 29743196);MAPKKK4; MAP (Mitogen-Activated) Kinase Kinase Kinase Homolog 4; MEK Kinase 4; MAP3K4; null-allele mutant was isolated (PMID 29743196);MAPKKK4; MAP (Mitogen-Activated) Kinase Kinase Kinase Homolog 4; MEK Kinase 4; MAP3K4; null-allele mutant was isolated (PMID 29743196);MAPKKK4; MAP (Mitogen-Activated) Kinase Kinase Kinase Homolog 4; MEK Kinase 4; MAP3K4; null-allele mutant was isolated (PMID 29743196);MAPKKK4; MAP (Mitogen-Activated) Kinase Kinase Kinase Homolog 4; MEK Kinase 4; MAP3K4; null-allele mutant was isolated (PMID 29743196)"
+Cre01.g040900			"Secretory pathway"				g916.t1		
+Cre01.g046600							"g1011.t1;g1011.t1;g1011.t1"		
+Cre01.g046501			Chloroplast				"g1037.t1;g1037.t1"		
+Cre01.g034850							"g786.t1;g786.t1"		
+Cre01.g004750	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Chloroplast				"g115.t2;g115.t2"		
+Cre01.g036350	"GMM:34.21;GMM:30.3;GMM:3.3"	"transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols"	Mitochondrion	"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"	PMA1	"g817.t1;PMA1"	PMA1	
+Cre01.g016528	GMM:3.5	"minor CHO metabolism.others"		"GO:0046872;GO:0019509;GO:0005737"	"metal ion binding;L-methionine biosynthetic process from methylthioadenosine;cytoplasm"		g393.t1		
+Cre01.g039750	GMM:26.1	misc.misc2	Chloroplast	"GO:0042586;GO:0005506"	"peptide deformylase activity;iron ion binding"	PDF1B	"Cre01.g039750.t1.1;g888.t1"	PDF1B	"Polypeptide deformylase,removes formyl group from initiator Met; organelle targetted; linked to PDF1C"
+Cre01.g019000	"GMM:20.1;GMM:2.1"	"stress.biotic;major CHO metabolism.synthesis"					"Cre01.g019000.t1.1;g446.t1;Cre01.g019000.t1.1;g446.t1"		
+Cre01.g013350			Chloroplast				"g327.t1;Cre01.g013350.t1.1;Cre01.g013350.t1.1;g327.t1;Cre01.g013350.t1.1;g327.t1"		
+Cre01.g007400			Chloroplast				"g192.t1;g192.t1"		
+Cre01.g045700	GMM:21.2.1	"redox.ascorbate and glutathione.ascorbate"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0006979;GO:0004601"	"oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity"	CAT2	"g1024.t1;CAT2;CAT2;g1024.t1"	"CAT2;CAT2"	"Heme-containing catalase-peroxidase, a bifunctional antioxidant enzyme that exhibits both catalase (EC:1.11.1.6) and peroxidase (EC:1.11.1.7) activity; Functions as an oligomer; the primary structure of the subunit can be divided into two similar halves, which may have arisen from a gene duplication event; most related to bacterial homologues, localization unsure;Heme-containing catalase-peroxidase, a bifunctional antioxidant enzyme that exhibits both catalase (EC:1.11.1.6) and peroxidase (EC:1.11.1.7) activity; Functions as an oligomer; the primary structure of the subunit can be divided into two similar halves, which may have arisen from a gene duplication event; most related to bacterial homologues, localization unsure"
+Cre01.g027400			Mitochondrion				g626.t1		
+Cre01.g034451	GMM:29.5	protein.degradation		GO:0005515	"protein binding"		g778.t1		
+Cre01.g011901	GMM:14.1	S-assimilation.APS		"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS7	"ARS7;g295.t1;Cre01.g011900.t1.3;g295.t1;ARS7;Cre01.g011900.t1.3"	"ARS7;ARS7"	
+Cre01.g016300			Chloroplast			CAM3	"g387.t1;CAM3"		
+Cre01.g007700	GMM:29.5	protein.degradation	Chloroplast	"GO:0006508;GO:0005622;GO:0004177"	"proteolysis;intracellular;aminopeptidase activity"		g198.t1		
+Cre01.g055250	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast				"g1218.t1;Cre01.g055250.t1.1;Cre01.g055250.t1.1;g1218.t1;g1218.t1;Cre01.g055250.t1.1"		
+Cre01.g010864	GMM:29.2.5	protein.synthesis.release	"Secretory pathway"	"GO:0016149;GO:0006415;GO:0005737;GO:0003747"	"translation release factor activity, codon specific;translational termination;cytoplasm;translation release factor activity"		"g272.t1;g272.t1;g272.t1"		"Localization and function not clear, is related to bacterial PrfB (RF2) which serves UAA and UGA stop codons, but the UGA stop codon is not used in chloroplasts and mitochondria.;Localization and function not clear, is related to bacterial PrfB (RF2) which serves UAA and UGA stop codons, but the UGA stop codon is not used in chloroplasts and mitochondria.;Localization and function not clear, is related to bacterial PrfB (RF2) which serves UAA and UGA stop codons, but the UGA stop codon is not used in chloroplasts and mitochondria."
+Cre01.g055416	GMM:33.99	development.unspecified		"GO:0005681;GO:0000398"	"spliceosomal complex;mRNA splicing, via spliceosome"		"Cre23.g768400.t1.1;g1226.t1;Cre23.g768400.t1.1;g1226.t1"		
+Cre01.g001750	"GMM:29.6.1;GMM:29.6"	"protein.folding.prefoldin and trigger factor;protein.folding"	Chloroplast.Stroma	"GO:0015031;GO:0006457"	"protein transport;protein folding"	TIG1	"g43.t1;TIG1;Cre01.g001750.t1.1;g43.t1;Cre01.g001750.t1.1;TIG1"	"TIG1;TIG1"	"Involved in co-translational protein folding; contains a peptidyl-prolyl cis-trans isomerase (FKBP-type) domain and N- and C-terminal domains involved in ribosome-binding; probably located in chloroplast stroma;Involved in co-translational protein folding; contains a peptidyl-prolyl cis-trans isomerase (FKBP-type) domain and N- and C-terminal domains involved in ribosome-binding; probably located in chloroplast stroma"
+Cre01.g041850			"Secretory pathway"				g938.t1		
+Cre01.g015150			Chloroplast				"g366.t1;Cre01.g015150.t1.1;g366.t1;Cre01.g015150.t1.1;g366.t1;Cre01.g015150.t1.1"		
+Cre01.g030750			Mitochondrion				"g696.t1;g696.t1;g696.t1;g696.t1;g696.t1"		
+Cre01.g013600			Chloroplast				"g332.t1;g332.t1;g332.t1"		
+Cre01.g037600			Mitochondrion				"g843.t1;g843.t1"		
+Cre01.g044950			Chloroplast				"g1004.t1;Cre01.g044950.t1.1"		
+Cre01.g047550	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"	RAB6	"Cre01.g047550.t1.1;g1057.t1;RAB6;RABH1"	RAB6	"Similar to the RabH/Rab6 type of small GTPase, involved in intra-Golgi vesicle trafficking; Class V in [PMID: 8756593];"
+Cre01.g006670			Mitochondrion						
+Cre01.g025100							"g577.t1;PGP9"		
+Cre01.g011300	GMM:29.5.5	"protein.degradation.serine protease"	"Secretory pathway"	"GO:0006508;GO:0004185"	"proteolysis;serine-type carboxypeptidase activity"		"g282.t1;CPY"	SCLP50	"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g008600			Chloroplast	"GO:0016757;GO:0006486"	"transferase activity, transferring glycosyl groups;protein glycosylation"		g217.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g017400							"g412.t2;g412.t2"		
+Cre01.g049900							"g1104.t1;g1104.t1;g1104.t1"		
+Cre01.g029000			Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	COQD2	"COQ5D;g661.t1;UMM1;Cre01.g029000.t1.1;COQ5D;UMM1;g661.t1;Cre01.g029000.t1.1"	"COQD2;COQD2"	"UbiE/COQ5 methyltransferase family; possibly functioning in chloroplast;UbiE/COQ5 methyltransferase family; possibly functioning in chloroplast"
+Cre01.g011350	GMM:27.2	RNA.transcription		"GO:0006367;GO:0005634"	"transcription initiation from RNA polymerase II promoter;nucleus"		"Cre01.g011350.t1.1;g283.t1;Cre01.g011350.t1.1;g283.t1"		
+Cre01.g047500			Chloroplast	GO:0005515	"protein binding"		"Cre01.g047500.t1.1;g1056.t1;g1056.t1;Cre01.g047500.t1.1;g1056.t1;Cre01.g047500.t1.1;g1056.t1;Cre01.g047500.t1.1"		
+Cre01.g053850	"GMM:33.99;GMM:30.11;GMM:29.5.11.4.99"	"development.unspecified;signalling.light;protein.degradation.ubiquitin.E3.unspecified"	Mitochondrion	GO:0005515	"protein binding"		"g1190.t1;Cre01.g053850.t1.1;g1190.t1;Cre01.g053850.t1.1"		
+Cre01.g004124			Mitochondrion				"g102.t2;g102.t2;g102.t2"		
+Cre01.g048350	"GMM:3.5;GMM:26.3;GMM:10.6.2"	"minor CHO metabolism.others;misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Chloroplast	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CGL53	"g1074.t1;EBM1;Cre01.g048350.t1.1;Cre01.g048350.t1.1;EBM1;g1074.t1"	"CGL53;CGL53"	"Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre01.g055465	"GMM:34.99;GMM:29.3.4.99"	"transport.misc;protein.targeting.secretory pathway.unspecified"					"Cre23.g767850.t1.1;Cre23.g767850.t1.2;g1238.t1"		
+Cre01.g058886	GMM:34.5	transport.ammonium		GO:0005525	"GTP binding"		"Cre23.g767300.t1.2;Cre23.g767300.t1.1;g1253.t1;Cre23.g767300.t1.2;Cre23.g767300.t1.1;g1253.t1;Cre23.g767300.t1.1;Cre23.g767300.t1.2;g1253.t1"		
+Cre01.g045450							"Cre01.g045450.t1.1;g1017.t1"		
+Cre01.g055300			Mitochondrion						
+Cre01.g000700				"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"ZFR1;g17.t1;ZFR1;g17.t1;g17.t1;ZFR1"		"Predicted zinc finger, RING-type; leucine-rich repeat family protein;Predicted zinc finger, RING-type; leucine-rich repeat family protein;Predicted zinc finger, RING-type; leucine-rich repeat family protein"
+Cre01.g037050				"GO:0008270;GO:0003677"	"zinc ion binding;DNA binding"		"g831.t1;Cre01.g037050.t1.1"		
+Cre01.g046950			Mitochondrion				"Cre01.g046950.t1.1;g1043.t1"		
+Cre01.g065822	GMM:31.6.1.3.2.1	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A"		GO:0005515	"protein binding"	IFT122	"FAP80;Cre23.g766400.t1.2;g1272.t1;Cre23.g766400.t1.1"	IFT122	
+Cre01.g005200	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"	"Secretory pathway"	GO:0006629	"lipid metabolic process"	TGL2	"g126.t1;TGL2;TGL2;g126.t1;TGL2;g126.t1"		
+Cre01.g053000	GMM:11.5.2	"lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)"	Chloroplast	"GO:0055114;GO:0051287;GO:0046168;GO:0016616;GO:0009331;GO:0006072;GO:0005975;GO:0004367"	"oxidation-reduction process;NAD binding;glycerol-3-phosphate catabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;glycerol-3-phosphate dehydrogenase complex;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity"	GPD2	"Cre01.g053000.t1.1;GPDH2;g1171.t1;GPD1;GPD1;g1171.t1;GPDH2;Cre01.g053000.t1.1"	"GPD2;GPD2"	"Identified as GPDH2 (PMID 22358185); Closely related to nearby GPDH3;;Identified as GPDH2 (PMID 22358185); Closely related to nearby GPDH3;"
+Cre01.g041200							"g922.t1;g922.t1"		
+Cre01.g031750	GMM:29.2.2	"protein.synthesis.ribosome biogenesis"	Chloroplast				"g718.t1;Cre01.g031750.t1.1;g718.t1;Cre01.g031750.t1.1"		
+Cre01.g048200	"GMM:28.1;GMM:27.1.2"	"DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"	Mitochondrion				"g1071.t1;g1071.t1"		
+Cre01.g044000			Chloroplast				g984.t1		
+Cre01.g062902				"GO:0016592;GO:0006357;GO:0001104"	"mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity"		"g1264.t1;Cre23.g766800.t1.1;Cre23.g766800.t1.2"		
+Cre01.g026150				"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"		"g601.t1;g601.t1;g601.t1"		
+Cre01.g033200							"g750.t1;Cre01.g033200.t1.1;g750.t1;Cre01.g033200.t1.1"		
+Cre01.g039000							g872.t1		
+Cre01.g034950	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"g789.t1;Cre01.g034950.t1.1"		
+Cre01.g016950	GMM:29.4	"protein.postranslational modification"		"GO:0018342;GO:0008318"	"protein prenylation;protein prenyltransferase activity"		"g404.t1;Cre01.g016950.t1.1"		
+Cre01.g035750			"Secretory pathway"	"GO:0055085;GO:0016020"	"transmembrane transport;membrane"	MSC3	"MSC3;Cre01.g035750.t1.1;g805.t1;Cre01.g035750.t1.1;g805.t1;MSC3;Cre01.g035750.t1.1;g805.t1;MSC3"	"MSC3;MSC3;MSC3"	"sequence similarity with bacterial (E. coli) mechanosensitive ion channel MscS;sequence similarity with bacterial (E. coli) mechanosensitive ion channel MscS;sequence similarity with bacterial (E. coli) mechanosensitive ion channel MscS"
+Cre01.g006950	"GMM:4.3.10;GMM:4.1.10;GMM:1.3.6"	"glycolysis.unclear/dually targeted.aldolase;glycolysis.cytosolic branch.aldolase;PS.calvin cycle.aldolase"	Chloroplast	"GO:0006096;GO:0004332"	"glycolytic process;fructose-bisphosphate aldolase activity"	FBA1	"g182.t2;g182.t2"	"FBA1;FBA1"	"Aldehyde-lyase (EC 4.1.2.13); may be plastidic based on N-terminal extension, but greater sequence similarity to cytosolic forms; glycolytic enzyme that catalyses the reversible aldol cleavage or condensation of fructose-1,6-bisphosphate into dihydroxyacetone-phosphate and glyceraldehyde 3-phosphate; found in the flagellar proteome [PMID: 15998802];Aldehyde-lyase (EC 4.1.2.13); may be plastidic based on N-terminal extension, but greater sequence similarity to cytosolic forms; glycolytic enzyme that catalyses the reversible aldol cleavage or condensation of fructose-1,6-bisphosphate into dihydroxyacetone-phosphate and glyceraldehyde 3-phosphate; found in the flagellar proteome [PMID: 15998802]"
+Cre01.g031650			Chloroplast	"GO:0016757;GO:0016021"	"transferase activity, transferring glycosyl groups;integral component of membrane"	CGLD12	"g715.t1;g715.t1;g715.t1"	"CGLD12;CGLD12;CGLD12"	"similar to Def transferase, transferring glycosyl groups (pfam5637, Glyco_transf_34, galactosyl transferase GMA12/MNN1 family). Glycosyltransferases of this family contain a DXD motif;similar to Def transferase, transferring glycosyl groups (pfam5637, Glyco_transf_34, galactosyl transferase GMA12/MNN1 family). Glycosyltransferases of this family contain a DXD motif;similar to Def transferase, transferring glycosyl groups (pfam5637, Glyco_transf_34, galactosyl transferase GMA12/MNN1 family). Glycosyltransferases of this family contain a DXD motif"
+Cre01.g050350	GMM:29.5.11.3	protein.degradation.ubiquitin.E2		"GO:0016021;GO:0004252"	"integral component of membrane;serine-type endopeptidase activity"	RBL6	"RBL6;g1113.t1;g1113.t1;RBL6"		"similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579);similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579)"
+Cre01.g000050			Chloroplast			RWP14	"g4.t1;RWP14"	RWP14	"putative RWP-RK domain transcription factor, however the domain is non-canonical (RWPaqk)"
+Cre01.g043950			Mitochondrion				"g983.t1;g983.t1;g983.t1;g983.t1;g983.t1;g983.t1;g983.t1"		
+Cre01.g039850	"GMM:3.5;GMM:13.2.3.5.1;GMM:13.2.3.5"	"minor CHO metabolism.others;amino acid metabolism.degradation.aspartate family.lysine.lysine decarboxylase;amino acid metabolism.degradation.aspartate family.lysine"	Mitochondrion			CGL48	"g890.t1;CPK5"	CGL48	"Conserved in the Green Lineage"
+Cre01.g010100			"Secretory pathway"	GO:0008080	"N-acetyltransferase activity"		"g254.t1;Cre01.g010100.t1.1;NAT7;g254.t1;NAT7;Cre01.g010100.t1.1"		"Related to GCN5;Related to GCN5"
+Cre01.g008900							"Cre01.g008900.t1.1;g224.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g019200				"GO:0030688;GO:0006364"	"preribosome, small subunit precursor;rRNA processing"	NOP52	"GEX18;g450.t1;g450.t1;GEX18"	"NOP52;NOP52"	"Protein NNP-1, Novel nuclear protein 1; Nop52 is believed to be involved in the generation of 28S rRNA (PMID: 10341208). ts lethal mutations isolated (PMID 25336509);Protein NNP-1, Novel nuclear protein 1; Nop52 is believed to be involved in the generation of 28S rRNA (PMID: 10341208). ts lethal mutations isolated (PMID 25336509)"
+Cre01.g025950	"GMM:35.1.5;GMM:33.99"	"not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;development.unspecified"	Mitochondrion			PPR8	"g596.t1;Cre01.g025950.t1.1"	PPR8	
+Cre01.g030400							"g689.t1;g689.t1"		
+Cre01.g041400			Chloroplast				"g926.t1;g926.t1;g926.t1;g926.t1"		
+Cre01.g005450	GMM:31.6.1.5.1	"cell.motility.eukaryotes.radial spoke.head"				RSP10	"Cre01.g005450.t1.1;g131.t1;Cre01.g005450.t1.1;g131.t1"	"RSP10;RSP10"	"A subunit in the radial spoke head with multiple MORN motifs [PMID: 16507594; GI:83284715];A subunit in the radial spoke head with multiple MORN motifs [PMID: 16507594; GI:83284715]"
+Cre01.g038900	GMM:11.9.2.2	"lipid metabolism.lipid degradation.lipases.acylglycerol lipase"					g870.t1		
+Cre01.g050700							"g1123.t1;g1123.t1;g1123.t1"		
+Cre01.g048701	GMM:11.6	"lipid metabolism.lipid transfer proteins etc"	Chloroplast				g1081.t1		
+Cre01.g043200			Chloroplast				"CGLD6;g966.t1;Cre01.g043200.t1.1"		
+Cre01.g023800			Mitochondrion				g550.t1		
+Cre01.g011050									
+Cre01.g045850	"GMM:30.2.17;GMM:27.1.19"	"signalling.receptor kinases.DUF 26;RNA.processing.ribonucleases"		GO:0015074	"DNA integration"		g1029.t1		
+Cre01.g020141									
+Cre01.g051700	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"g1146.t1;g1146.t1;g1146.t1;g1146.t1;g1146.t1"		
+Cre01.g010832	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"		g270.t1		
+Cre01.g020575	GMM:29.6.2.1	"protein.folding.chaperones and co-chaperones.small HSPs"	Chloroplast			HSP22D	"Cre01.g020550.t1.1;g477.t1"	HSP22D	"small heat shock protein with C-terminal domain containing partial homology with alpha-crystallin domain; N-terminus by TargetP weakly predicted to be chloroplast transit peptide; PMID: 16143837"
+Cre01.g035300	"GMM:26.8;GMM:22.1.5"	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;polyamine metabolism.synthesis.N-carbamoylputrescine amidohydrolase"	Chloroplast	"GO:0016810;GO:0006807"	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	CPA2	"CPA2;Cre01.g035300.t1.1;g796.t1"	CPA2	"Highly similar to plant N-carbamoylputrescine amidase (amidohydrolase), last step in the agmatinase pathway of polyamine (putrescine) biosynthesis; null-allele mutant was isolated (PMID 29743196)"
+Cre01.g042600							"Cre01.g042600.t1.1;g954.t1"		
+Cre01.g051400	GMM:29.3.4.1	"protein.targeting.secretory pathway.ER"	"Secretory pathway"	"GO:0046923;GO:0016021;GO:0006621"	"ER retention sequence binding;integral component of membrane;protein retention in ER lumen"	ERD2A	"Cre01.g051400.t1.1;ERD2A;g1138.t1"	ERD2A	"Expressed Protein. Conserved protein similar to KDEL receptor involved in ER retention of lumenal proteins."
+Cre01.g053750			"Secretory pathway"			LPL3	"LPL3;Cre01.g053750.t1.1;g1188.t1"	LPL3	
+Cre01.g023400			"Secretory pathway"				g540.t1		
+Cre01.g016570	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g396.t1		
+Cre01.g031450							"Cre01.g031450.t1.1;g711.t1"		
+Cre01.g031850			Chloroplast				"ACD1;g720.t1"		"1-aminocyclopropane-1-carboxylate deaminase, similar to Trp synthase. 1-aminocyclopropane-1-carboxylate is a key intermediate in the biosynthesis of the plant hormone ethylene. Used Pyridoxal phosphate a co-factor"
+Cre01.g022650	"GMM:26.8;GMM:23.2.1.5;GMM:23"	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;nucleotide metabolism.degradation.pyrimidine.beta-ureidopropionase;nucleotide metabolism"		"GO:0016810;GO:0006807"	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"		"g522.t1;Cre01.g022650.t1.1;g522.t1;Cre01.g022650.t1.1"		
+Cre01.g014300			"Secretory pathway"				"g348.t2;HGC;HGC;g348.t2;g348.t2;HGC;g348.t2;HGC;HGC;g348.t2;HGC;g348.t2;HGC;g348.t2;HGC;g348.t2;HGC;g348.t2"		
+Cre01.g052000	GMM:31.1	cell.organisation					"g1153.t1;Cre01.g052000.t1.1;g1153.t1;Cre01.g052000.t1.1"	"ZNG1;ZNG1"	"Paralog of ZNG2 (Cre05.g234652); Ortholog of YNR029c from yeast;Paralog of ZNG2 (Cre05.g234652); Ortholog of YNR029c from yeast"
+Cre01.g018450							"g435.t1;g435.t1"		
+Cre01.g020887	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"				CYG49	"g485.t1;Cre01.g020887.t1.1"		
+Cre01.g009950				GO:0008168	"methyltransferase activity"	NEP1	"g251.t1;Cre01.g009950.t1.1;NEP1"	NEP1	"Involved in 4S ribosomal subunit biogenesis; seems to play a role in a methylation reaction in pre-rRNA processing (By similarity)"
+Cre01.g009101	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"g230.t1;Cre01.g009100.t1.3;g230.t1;Cre01.g009100.t1.3"		
+Cre01.g035150				GO:0046872	"metal ion binding"		"g793.t1;g793.t1"		
+Cre01.g036100			Mitochondrion	GO:0005515	"protein binding"		"g812.t1;g812.t1;g812.t1;g812.t1;g812.t1"		
+Cre01.g008350			"Secretory pathway"				"g212.t1;g212.t1"		
+Cre01.g051875			Mitochondrion						
+Cre01.g049050							"g1088.t1;Cre01.g049050.t1.1"		
+Cre01.g031100	GMM:1.1.1	"PS.lightreaction.photosystem II"	Chloroplast.Stroma.Thylakoid.Membrane			TEF30	"MET1;Cre01.g031100.t1.1;g705.t1"	TEF30	"Interacts with PSII monomers at the stromal side of thylakoid membranes; functions in facilitating the incorporation of a new D1 protein and/or the reintegration of CP43 into repaired PSII monomers; protecting repaired PSII monomers from undergoing repeated repair cycles; or facilitating the migration of repaired PSII monomers back to stacked regions for supercomplex reassembly"
+Cre01.g006600	GMM:20.2.3	stress.abiotic.drought/salt					"Cre01.g006600.t1.1;g163.t1"		
+Cre01.g018750							"DIV155;Cre01.g018750.t1.1;g441.t1;DIV155;Cre01.g018750.t1.1;g441.t1;DIV155;Cre01.g018750.t1.1;g441.t1"		"ts-lethal mutation block is S/M (PMID 29743196);ts-lethal mutation block is S/M (PMID 29743196);ts-lethal mutation block is S/M (PMID 29743196)"
+Cre01.g013200			"Secretory pathway"				"Cre01.g013200.t1.1;g324.t1"		
+Cre01.g043650						DLU2	"DLU2;LRRC56;MOT37;g976.t1"	ODA8	"ODA8 is a primarily cytoplasmic dynein assembly or maturation factor, also found in the flagellar matrix fraction [PMID: 25558044]; Homolog of human LRRC56, mutations in which disrupt normal ciliary motility [PMID: 30388400];"
+Cre01.g032650	GMM:7.2.2	"OPP.non-reductive PP.transaldolase"	Chloroplast	GO:0005975	"carbohydrate metabolic process"	TAL1	"g738.t2;Cre01.g032650.t1.1;g738.t2;Cre01.g032650.t1.1"	"TAL1;TAL1"	"EC 2.2.1.2; possible cytosolic isoform, although weak predicted organelle targeting by Target-P; catalyzes the reversible transfer of a three-carbon ketol unit from sedoheptulose 7-phosphate to glyceraldehyde 3-phosphate to form erythrose 4-phosphate and fructose 6-phosphate; this enzyme, together with transketolase, provides a link between the glycolytic and pentose-phosphate pathways;EC 2.2.1.2; possible cytosolic isoform, although weak predicted organelle targeting by Target-P; catalyzes the reversible transfer of a three-carbon ketol unit from sedoheptulose 7-phosphate to glyceraldehyde 3-phosphate to form erythrose 4-phosphate and fructose 6-phosphate; this enzyme, together with transketolase, provides a link between the glycolytic and pentose-phosphate pathways"
+Cre01.g021650							"g501.t1;Cre01.g021650.t1.1"		
+Cre01.g018000	GMM:27.2	RNA.transcription		"GO:0008270;GO:0006351;GO:0003676"	"zinc ion binding;transcription, DNA-templated;nucleic acid binding"	RPA12	g424.t1	RPA12	"called Rpa12p in yeast"
+Cre01.g002400	"GMM:11.9.2.1;GMM:11.9.2"	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase;lipid metabolism.lipid degradation.lipases"		GO:0006629	"lipid metabolic process"	TGL1	"TGL1;g58.t1;TGL1;g58.t1;TGL1;g58.t1"		
+Cre01.g021200				GO:0005515	"protein binding"	CGL47	"g492.t1;Cre01.g021200.t1.1"	CGL47	"Conserved in the Green Lineage"
+Cre01.g057791							"g1250.t1;Cre23.g767450.t1.1"		
+Cre01.g012000			Mitochondrion				g297.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre01.g054500			Mitochondrion	"GO:0055114;GO:0050661;GO:0016021;GO:0008750"	"oxidation-reduction process;NADP binding;integral component of membrane;NAD(P)+ transhydrogenase (AB-specific) activity"		"Cre01.g054500.t1.1;g1203.t1;g1203.t1;Cre01.g054500.t1.1"		
+Cre01.g030200	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"	FAP6	"Cre01.g030200.t1.1;g685.t1;PP2C4;PPP3;PP2C4;PPP3;g685.t1;Cre01.g030200.t1.1;PP2C4;PPP3;g685.t1;Cre01.g030200.t1.1;PPP3;PP2C4;g685.t1;Cre01.g030200.t1.1;g685.t1;Cre01.g030200.t1.1;PPP3;PP2C4;g685.t1;Cre01.g030200.t1.1;PPP3;PP2C4"	"FAP6;FAP6;FAP6;FAP6;FAP6;FAP6"	"conserved expressed protein in flagellar proteome [PMID: 15998802], related to protein phosphatase 2C; chloroplast targeted prediction in Arabidopsis;conserved expressed protein in flagellar proteome [PMID: 15998802], related to protein phosphatase 2C; chloroplast targeted prediction in Arabidopsis;conserved expressed protein in flagellar proteome [PMID: 15998802], related to protein phosphatase 2C; chloroplast targeted prediction in Arabidopsis;conserved expressed protein in flagellar proteome [PMID: 15998802], related to protein phosphatase 2C; chloroplast targeted prediction in Arabidopsis;conserved expressed protein in flagellar proteome [PMID: 15998802], related to protein phosphatase 2C; chloroplast targeted prediction in Arabidopsis;conserved expressed protein in flagellar proteome [PMID: 15998802], related to protein phosphatase 2C; chloroplast targeted prediction in Arabidopsis"
+Cre01.g071662	"GMM:2.2.1.3;GMM:11.1.8"	"major CHO metabolism.degradation.sucrose.invertases;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase"		"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	ACS1	"ACS1;Cre23.g765700.t1.1;Cre23.g765700.t1.2;g1290.t1;Cre23.g765700.t1.1;Cre23.g765700.t1.2;ACS1;g1290.t1;g1290.t1;ACS1;Cre23.g765700.t1.1;Cre23.g765700.t1.2"	"ACS1;ACS1;ACS1"	"Acetyl-CoA synthetase (EC 6.2.1.1); Acetate-CoA ligase; Not in mitochondrion or plastid based on Target-P prediction (predicted as other with high reliability); similar to rice ACS (GenBank XP_466041);Acetyl-CoA synthetase (EC 6.2.1.1); Acetate-CoA ligase; Not in mitochondrion or plastid based on Target-P prediction (predicted as other with high reliability); similar to rice ACS (GenBank XP_466041);Acetyl-CoA synthetase (EC 6.2.1.1); Acetate-CoA ligase; Not in mitochondrion or plastid based on Target-P prediction (predicted as other with high reliability); similar to rice ACS (GenBank XP_466041)"
+Cre01.g041050	GMM:34.3	"transport.amino acids"		"GO:0016020;GO:0015171;GO:0003333"	"membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport"	AOC6	"g919.t2;AOC6;AOC6;g919.t2;g919.t2;AOC6;AOC6;g919.t2"	"AOC6;AOC6;AOC6;AOC6"	"Related to human SLC7A family of solute carriers, involved in cationic amino acid transport (arginine, lysine, ornithine); this is probably the gene mutated in the L-MSX resistant mutant msr1, mapped to a compatible position on LG I;Related to human SLC7A family of solute carriers, involved in cationic amino acid transport (arginine, lysine, ornithine); this is probably the gene mutated in the L-MSX resistant mutant msr1, mapped to a compatible position on LG I;Related to human SLC7A family of solute carriers, involved in cationic amino acid transport (arginine, lysine, ornithine); this is probably the gene mutated in the L-MSX resistant mutant msr1, mapped to a compatible position on LG I;Related to human SLC7A family of solute carriers, involved in cationic amino acid transport (arginine, lysine, ornithine); this is probably the gene mutated in the L-MSX resistant mutant msr1, mapped to a compatible position on LG I"
+Cre01.g055408	"GMM:2.2.1.3;GMM:11.1.8"	"major CHO metabolism.degradation.sucrose.invertases;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase"	Chloroplast	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	ACS2	"g1224.t1;g1224.t1;g1224.t1"	"ACS2;ACS2;ACS2"	"identical to XP_001700230; located in peroxisomal microbodies (Lauersen et al, Algal Res. 2016);identical to XP_001700230; located in peroxisomal microbodies (Lauersen et al, Algal Res. 2016);identical to XP_001700230; located in peroxisomal microbodies (Lauersen et al, Algal Res. 2016)"
+Cre01.g009601			Chloroplast						
+Cre01.g050800			Mitochondrion				"g1125.t1;g1125.t1;g1125.t1;g1125.t1"		
+Cre01.g060347			Mitochondrion				"Cre23.g767107.t1.2;Cre23.g767107.t1.1;g1257.t1;Cre23.g767107.t1.1;g1257.t1;Cre23.g767107.t1.2;Cre23.g767107.t1.2;Cre23.g767107.t1.1;g1257.t1"		
+Cre01.g003532									
+Cre01.g014400							"g350.t1;g350.t1"		
+Cre01.g009676	"GMM:33.99;GMM:27.3.3"	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"				BUG25			
+Cre01.g022700							"g525.t1;g525.t1"		
+Cre01.g004250	GMM:31.6.1.4.2	"cell.motility.eukaryotes.axonemal dyneins.inner arm"				DLT3	"Cre01.g004250.t1.1;DLT3;TCTEX1;TCT1;g105.t1"	TCTEX1	"Light Chain Associated with Inner Arm Dynein I1/f and Cytoplasmic Dynein 1b; Similar to Tctex-1 (t-complex expressed protein) in mouse"
+Cre01.g043750						BBS7	"g978.t1;g978.t1;g978.t1;g978.t1;g978.t1;g978.t1;g978.t1;g978.t1;g978.t1;g978.t1"	"BBS7;BBS7;BBS7;BBS7;BBS7;BBS7;BBS7;BBS7;BBS7;BBS7"	"Flagellar protein, core component of the core BBSome complex that targets membrane proteins to cilia;Flagellar protein, core component of the core BBSome complex that targets membrane proteins to cilia;Flagellar protein, core component of the core BBSome complex that targets membrane proteins to cilia;Flagellar protein, core component of the core BBSome complex that targets membrane proteins to cilia;Flagellar protein, core component of the core BBSome complex that targets membrane proteins to cilia;Flagellar protein, core component of the core BBSome complex that targets membrane proteins to cilia;Flagellar protein, core component of the core BBSome complex that targets membrane proteins to cilia;Flagellar protein, core component of the core BBSome complex that targets membrane proteins to cilia;Flagellar protein, core component of the core BBSome complex that targets membrane proteins to cilia;Flagellar protein, core component of the core BBSome complex that targets membrane proteins to cilia"
+Cre01.g054433									
+Cre01.g003524	"GMM:30.3;GMM:29.4"	"signalling.calcium;protein.postranslational modification"					g86.t1		
+Cre01.g025767			"Secretory pathway"				"g592.t1;Cre01.g025767.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g051500	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ULP1	"LUP1;g1143.t1;Cre01.g051500.t1.1"		
+Cre01.g008750			Chloroplast				"Cre01.g008750.t1.1;g220.t1"		
+Cre01.g008500							"g215.t1;Cre01.g008500.t1.1;g215.t1;Cre01.g008500.t1.1"		
+Cre01.g010400			"Secretory pathway"			FAP380	"Cre01.g010400.t1.1;g261.t1"	FAP380	"Found in the flagellar proteome"
+Cre01.g001350	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding;transporter activity"		"Cre01.g001350.t1.1;g30.t1;ABC1"		"ATP-binding cassette (ABC) transporter with ATPase, AAA+ type, core"
+Cre01.g002950							"g70.t1;g70.t1"		
+Cre01.g011800	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g293.t1;g293.t1;g293.t1"		
+Cre01.g031350									
+Cre01.g022850			Mitochondrion				"Cre01.g022850.t1.1;g528.t1"		
+Cre01.g044850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING					"g1002.t1;Cre01.g044850.t1.1;g1002.t1;Cre01.g044850.t1.1"		
+Cre01.g007300							"g190.t1;Cre01.g007300.t1.1;g190.t1;Cre01.g007300.t1.1"		
+Cre01.g024650	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"CTL1;g568.t1;g568.t1;CTL1;g568.t1;CTL1;g568.t1;CTL1;CTL1;g568.t1;g568.t1;CTL1"		"Contains several carbohydrate binding domains: C-type lectin, PAN/APPLE-like and a C-terminal serine/threonine protein kinase domain; null-allele mutant was isolated (PMID 29743196);Contains several carbohydrate binding domains: C-type lectin, PAN/APPLE-like and a C-terminal serine/threonine protein kinase domain; null-allele mutant was isolated (PMID 29743196);Contains several carbohydrate binding domains: C-type lectin, PAN/APPLE-like and a C-terminal serine/threonine protein kinase domain; null-allele mutant was isolated (PMID 29743196);Contains several carbohydrate binding domains: C-type lectin, PAN/APPLE-like and a C-terminal serine/threonine protein kinase domain; null-allele mutant was isolated (PMID 29743196);Contains several carbohydrate binding domains: C-type lectin, PAN/APPLE-like and a C-terminal serine/threonine protein kinase domain; null-allele mutant was isolated (PMID 29743196);Contains several carbohydrate binding domains: C-type lectin, PAN/APPLE-like and a C-terminal serine/threonine protein kinase domain; null-allele mutant was isolated (PMID 29743196)"
+Cre01.g001600	"GMM:35.1.9;GMM:31.1"	"not assigned.no ontology.BTB/POZ domain-containing protein;cell.organisation"		GO:0005515	"protein binding"		"g35.t1;Cre01.g001600.t1.1"		
+Cre01.g009400	GMM:34.14	"transport.unspecified cations"		"GO:0055085;GO:0016020;GO:0006810;GO:0005215"	"transmembrane transport;membrane;transport;transporter activity"	NSS2	"NSS2;Cre01.g009400.t1.1;g237.t1;g237.t1;Cre01.g009400.t1.1;NSS2;Cre01.g009400.t1.1;NSS2;g237.t1"		"Sodium:solute symporter, possibly a high-affinity choline or Na+/proline symporter;Sodium:solute symporter, possibly a high-affinity choline or Na+/proline symporter;Sodium:solute symporter, possibly a high-affinity choline or Na+/proline symporter"
+Cre01.g015000	"GMM:23.4.99;GMM:13.1.2.3.2"	"nucleotide metabolism.phosphotransfer and pyrophosphatases.misc;amino acid metabolism.synthesis.glutamate family.arginine.acetylglutamate kinase"	Chloroplast			NAGK1	"Cre01.g015000.t1.1;AGK1;g362.t1"	NAGK1	"Acetylglutamate kinase-like protein, chloroplast precursor; based on location, could be the locus for the arg1 mutation"
+Cre01.g020750			Chloroplast				"g480.t1;Cre01.g020750.t1.1"		
+Cre01.g056331	"GMM:21.99;GMM:18.2"	"redox.misc;Co-factor and vitamine metabolism.thiamine"					"Cre23.g767650.t1.2;g1246.t1;Cre23.g767650.t1.1"		
+Cre01.g033500							"g756.t1;Cre01.g033500.t1.1"		
+Cre01.g049600	GMM:1.1.4	"PS.lightreaction.ATP synthase"	Chloroplast			CGLD22	"Cre01.g049600.t1.1;CGLD22;g1100.t1;Cre01.g049600.t1.1;CGLD22;g1100.t1;g1100.t1;CGLD22;Cre01.g049600.t1.1"		"transmembrane protein conserved in photosynthetic organisms (atp1, uncI); Arabidopsis ortholog has been reported to interact with CF1 or with CFo subunits c and b;transmembrane protein conserved in photosynthetic organisms (atp1, uncI); Arabidopsis ortholog has been reported to interact with CF1 or with CFo subunits c and b;transmembrane protein conserved in photosynthetic organisms (atp1, uncI); Arabidopsis ortholog has been reported to interact with CF1 or with CFo subunits c and b"
+Cre01.g025400	GMM:31.6.1.6.4	"cell.motility.eukaryotes.central pair.C2b"				HYDIN	"Cre01.g025400.t1.1;g583.t1;HYD3;g583.t1;HYD3;Cre01.g025400.t1.1"	"HYDIN1;HYDIN1"	"Hydrocephalus-inducing protein homolog; Forms extension C2b of axonemal central pair;Hydrocephalus-inducing protein homolog; Forms extension C2b of axonemal central pair"
+Cre01.g015550			Chloroplast	GO:0003824	"catalytic activity"		"g374.t1;DDA1"		"Involved in ascorbate and aldarate metabolism"
+Cre01.g000900			Chloroplast			CPLD20	"Cre01.g000900.t1.1;g21.t1"	CPLD20	"Predicted protein of unknown function containing DUF135 domain; Conserved expressed protein"
+Cre01.g026800			Mitochondrion						
+Cre01.g000650	GMM:26.7	"misc.oxidases - copper, flavone etc"		"GO:0055114;GO:0048038;GO:0009308;GO:0008131;GO:0005507"	"oxidation-reduction process;quinone binding;amine metabolic process;primary amine oxidase activity;copper ion binding"	AMX2	"g16.t1;AMX2;g16.t1;AMX2"	"AMX2;AMX2"	"possibly peroxisomal; contains PTS1 canonical sequence;possibly peroxisomal; contains PTS1 canonical sequence"
+Cre01.g034300							"g773.t1;Cre01.g034300.t1.1"		
+Cre01.g022000	GMM:29.5.9	"protein.degradation.AAA type"		GO:0005524	"ATP binding"		"g508.t1;FIGN1;SPA1;SPA1;FIGN1;g508.t1"		"AAA-type ATPase protein involved in microtubule-severing;AAA-type ATPase protein involved in microtubule-severing"
+Cre01.g013450							"Cre01.g013450.t1.1;g329.t1;g329.t1;Cre01.g013450.t1.1;Cre01.g013450.t1.1;g329.t1;g329.t1;Cre01.g013450.t1.1;g329.t1;Cre01.g013450.t1.1;g329.t1;Cre01.g013450.t1.1;Cre01.g013450.t1.1;g329.t1"		
+Cre01.g057061			Mitochondrion				"Cre23.g767550.t1.1;g1248.t1;Cre23.g767550.t1.2"		
+Cre01.g014850							"Cre01.g014850.t1.1;g359.t1;g359.t1;Cre01.g014850.t1.1"		
+Cre01.g011600	GMM:11.1.13	"lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein"		"GO:0006355;GO:0005634;GO:0003700"	"regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding"		"g289.t1;Cre01.g011600.t1.1;g289.t1;Cre01.g011600.t1.1;Cre01.g011600.t1.1;g289.t1;g289.t1;Cre01.g011600.t1.1"		
+Cre01.g055457	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g1236.t2;Cre23.g767950.t1.1;g1236.t2;Cre23.g767950.t1.1;g1236.t2;Cre23.g767950.t1.1;g1236.t2;Cre23.g767950.t1.1;Cre23.g767950.t1.1;g1236.t2"		
+Cre01.g022350	"GMM:29.2.2.3.5;GMM:28.1"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure"	Chloroplast	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL3	"g515.t1;HEL3;Cre01.g022350.t1.1"		
+Cre01.g018100			"Secretory pathway"	"GO:0008138;GO:0006470"	"protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation"		"g427.t1;Cre01.g018100.t1.1"		
+Cre01.g048900	GMM:27.3.42	"RNA.regulation of transcription.bromodomain proteins"		GO:0005515	"protein binding"		"GTF1;g1085.t1"		"Global transcription factor containing Bromodomain, which may interact specifically with acetylated lysines. ChromoDB GTE343"
+Cre01.g008250			Chloroplast				"Cre01.g008250.t1.1;g210.t1"		
+Cre01.g041550	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g930.t1		
+Cre01.g016850			Chloroplast				"g402.t1;Cre01.g016850.t1.1"		
+Cre01.g000033			Mitochondrion						
+Cre01.g039101	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB7			
+Cre01.g027300							g624.t1		
+Cre01.g048102							"g1069.t1;Cre01.g048102.t1.1;Cre01.g048102.t1.1;g1069.t1"		
+Cre01.g045800							"g1027.t1;g1027.t1;g1027.t1"		
+Cre01.g041100	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		GO:0005515	"protein binding"	HLM3	"g920.t1;HLM3"		"Protein contains an interrupted SET domain with similarity to Arabidopsis thaliana ATXR2, SET36, SDG36 (At3g2182). ChromoDB SDG345"
+Cre01.g002600			Chloroplast				"Cre01.g002600.t1.1;g62.t1"		
+Cre01.g045050			Mitochondrion				"g1006.t1;Cre01.g045050.t1.1"		
+Cre01.g034380	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"	Mitochondrion				"g776.t1;Cre01.g034380.t1.1"		
+Cre01.g020450			"Secretory pathway"				"Cre01.g020450.t1.1;g475.t1"		
+Cre01.g020264	"GMM:31.1;GMM:29.5.2"	"cell.organisation;protein.degradation.autophagy"		GO:0006914	autophagy	ATG6	"VPS30;APG6;g471.t1;Cre01.g020250.t1.2"	ATG6	"Subunit of phosphatidylinositol (PtdIns) 3-kinase complexes I and II; Complex I is essential in autophagy, Complex II is required for vacuolar protein sorting; ortholog of higher eukaryote gene Beclin 1"
+Cre01.g018550			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG69	"g437.t1;CYG69;g437.t1;CYG69;g437.t1;CYG69;g437.t1;CYG69"		
+Cre01.g047800	"GMM:34.21;GMM:21.4"	"transport.calcium;redox.glutaredoxins"	Chloroplast	"GO:0045454;GO:0015035;GO:0009055"	"cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity"	GRX6	"g1062.t1;g1062.t1"	"GRX6;GRX6"	"Glutaredoxin 6, CGFS type glutaredoxin, probably chloroplastic. GRX domain on C-terminal part. N-terminal part: no homology with proteins of known function but strong homology with synechocystis slr1035. PMID: 16328797;Glutaredoxin 6, CGFS type glutaredoxin, probably chloroplastic. GRX domain on C-terminal part. N-terminal part: no homology with proteins of known function but strong homology with synechocystis slr1035. PMID: 16328797"
+Cre01.g039550	GMM:31.1	cell.organisation	Chloroplast			PLAP1	"g883.t1;PLP1;PLP1;g883.t1"	"PLAP1;PLAP1"	"PAP-fibrillin family protein;PAP-fibrillin family protein"
+Cre01.g030500	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG58	"Cre01.g030500.t1.1;g691.t1;CYG58;CYG58;g691.t1;Cre01.g030500.t1.1"		
+Cre01.g003200				GO:0016491	"oxidoreductase activity"		"g75.t1;Cre01.g003200.t1.1;g75.t1;Cre01.g003200.t1.1"		
+Cre01.g055428							"g1229.t1;Cre23.g768250.t1.1"		
+Cre01.g037850	GMM:11.1.1	"lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation"	Chloroplast			BCC2	" BCCP2;BCC2;g848.t1;BXP2; BCCP2;g848.t1;BXP2;BCC2"	"BCC2;BCC2"	"Biotin-containing subunit of the chloroplastic acetyl-coenzyme A carboxylase;Biotin-containing subunit of the chloroplastic acetyl-coenzyme A carboxylase"
+Cre01.g047100			Chloroplast				g1046.t1		
+Cre01.g036650	"GMM:30.3;GMM:29.4.1;GMM:29.4;GMM:29.2.2"	"signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification;protein.synthesis.ribosome biogenesis"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g823.t1		
+Cre01.g037950							"g850.t1;g850.t1"		
+Cre01.g045640	"GMM:3.5;GMM:29.4.1"	"minor CHO metabolism.others;protein.postranslational modification.kinase"				SRR12	"g1022.t1;Cre01.g045640.t1.1"		
+Cre01.g037700	GMM:11.2.1	"lipid metabolism.FA desaturation.desaturase"	Chloroplast	GO:0006629	"lipid metabolic process"	FAD3	"Cre01.g037700.t1.1;delta4FAD;g845.t1;FAD3;g845.t1;Cre01.g037700.t1.1;delta4FAD;FAD3;FAD3;Cre01.g037700.t1.1;delta4FAD;g845.t1;Cre01.g037700.t1.1;delta4FAD;g845.t1;FAD3"	"FAD9;FAD9;FAD9;FAD9"	"Chloroplast glycerolipid delta4-fatty acid desaturase; Linoleate desaturase; enzymes of this family catalyze the insertion of a double bond at the delta position of fatty acids;Chloroplast glycerolipid delta4-fatty acid desaturase; Linoleate desaturase; enzymes of this family catalyze the insertion of a double bond at the delta position of fatty acids;Chloroplast glycerolipid delta4-fatty acid desaturase; Linoleate desaturase; enzymes of this family catalyze the insertion of a double bond at the delta position of fatty acids;Chloroplast glycerolipid delta4-fatty acid desaturase; Linoleate desaturase; enzymes of this family catalyze the insertion of a double bond at the delta position of fatty acids"
+Cre01.g032800	GMM:34.14	"transport.unspecified cations"				MRS6	"MRS2;g741.t1;Cre01.g032800.t1.1"	MRS6	"Homology to CorA, a Mg2+ transporter protein; in yeast, is essential for group II intron splicing in mitochondria in response to Mg2+ (see PMID: 1154418)"
+Cre01.g012350				"GO:0006351;GO:0003887;GO:0003677"	"transcription, DNA-templated;DNA-directed DNA polymerase activity;DNA binding"		"Cre01.g012350.t1.1;g307.t1;Cre01.g012350.t1.1;g307.t1"		
+Cre01.g006766			"Secretory pathway"				"Cre01.g006750.t1.2;g176.t1"		
+Cre01.g052550							"g1164.t1;g1164.t1;g1164.t1;g1164.t1"		
+Cre01.g020050			Mitochondrion				"g466.t1;g466.t1;g466.t1"		
+Cre01.g023750							g546.t1		
+Cre01.g054300			Mitochondrion				g1199.t1		
+Cre01.g026250	GMM:3.8.2	"minor CHO metabolism.galactose.alpha-galactosidases"				AGA1	"AGA1;g603.t1;Cre01.g026250.t1.1"	AGA1	"alpha-galactosidase (melibiase); belongs to the family GH27 of O-glycosyl hydrolases of clan GH-D; contains ShK domain"
+Cre01.g004000							"Cre01.g004000.t1.1;g100.t1"		
+Cre01.g003800	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g95.t1;g95.t1;g95.t1;g95.t1;g95.t1;g95.t1"		
+Cre01.g023350	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"	THO2	"g539.t1;THO2;THO2;g539.t1;g539.t1;THO2;THO2;g539.t1;g539.t1;THO2"		"belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to eubacterial homologues; probably cytosolic;belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to eubacterial homologues; probably cytosolic;belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to eubacterial homologues; probably cytosolic;belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to eubacterial homologues; probably cytosolic;belongs to M3 family of metalloproteases, like thimet oligopeptidase; most similar to eubacterial homologues; probably cytosolic"
+Cre01.g025025				GO:0003677	"DNA binding"		"g575.t1;Cre01.g025024.t1.2"		
+Cre01.g045550	"GMM:34.8;GMM:2.2.2.6"	"transport.metabolite transporters at the envelope membrane;major CHO metabolism.degradation.starch.transporter"	Chloroplast	"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		"APE2;g1019.t1;Cre01.g045550.t1.1;TPT3"	TPT3	"Located in zones of contact between the inner and outer membrane of the chloroplast (By similarity). Belongs to the TPT transporter family. TPT (TC2.A.7.9.1) subfamily transporter; null-allele mutant was isolated (PMID 29743196)"
+Cre01.g036451							"g819.t1;SMM2"		
+Cre01.g007811			Chloroplast				g201.t1		
+Cre01.g043100			Chloroplast				"g964.t1;Cre01.g043100.t1.1"		
+Cre01.g009731	GMM:29.4	"protein.postranslational modification"	Mitochondrion				"Cre01.g009731.t1.1;g246.t1"		
+Cre01.g005350	GMM:28.1.1	"DNA.synthesis/chromatin structure.retrotransposon/transposase"				tnp3			
+Cre01.g041300				"GO:0006488;GO:0005789;GO:0004583"	"dolichol-linked oligosaccharide biosynthetic process;endoplasmic reticulum membrane;dolichyl-phosphate-glucose-glycolipid alpha-glucosyltransferase activity"	ALG10	"ALG10;g924.t1;Cre01.g041300.t1.1"		"GT59 family"
+Cre01.g004550	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"		GO:0005515	"protein binding"	FAP190	"g111.t1;Cre01.g004550.t1.1"	FAP190	"Flagellar Associated Protein, found in the flagellar proteome; null-allele mutant was isolated (PMID 29743196)"
+Cre01.g006876			Mitochondrion						
+Cre01.g015451	GMM:29.1	"protein.aa activation"		GO:0055114	"oxidation-reduction process"		"g372.t1;g372.t1"		
+Cre01.g034600			Chloroplast	GO:0005515	"protein binding"		"Cre01.g034600.t1.1;g781.t1;Cre01.g034600.t1.1;g781.t1;g781.t1;Cre01.g034600.t1.1;Cre01.g034600.t1.1;g781.t1"		
+Cre01.g024550	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g566.t1;STK;g566.t1;STK;STK;g566.t1;STK;g566.t1;STK;g566.t1"		
+Cre01.g021900	GMM:29.1.30	"protein.aa activation.pseudouridylate synthase"		"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS11	"g506.t1;PUS11;PUS11;g506.t1"		
+Cre01.g046250			"Secretory pathway"						
+Cre01.g034750							"g784.t1;g784.t1;g784.t1"		
+Cre01.g040200	"GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	WNK2	"g897.t1;WNK2;Cre01.g040200.t1.1;WNK2;Cre01.g040200.t1.1;g897.t1;g897.t1;Cre01.g040200.t1.1;WNK2"		"WNK (With No Lysine) protein kinase homolog;WNK (With No Lysine) protein kinase homolog;WNK (With No Lysine) protein kinase homolog"
+Cre01.g054350							g1200.t1		
+Cre01.g018850	GMM:28.1	"DNA.synthesis/chromatin structure"					"g443.t1;EEP2;Cre01.g018850.t1.1"		
+Cre01.g006628									
+Cre01.g051100	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0005681;GO:0000398"	"spliceosomal complex;mRNA splicing, via spliceosome"		"Cre01.g051100.t1.1;g1131.t1"		
+Cre01.g007251			Mitochondrion				"g189.t1;g189.t1;g189.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre01.g045600			Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	SRR12	"g1020.t1;SRR12"		"Speract/scavenger receptor cysteine-rich (SRCR) family protein, transmembrane glycoprotein"
+Cre01.g034200	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		g771.t1		
+Cre01.g048800				GO:0008080	"N-acetyltransferase activity"		"NAT8;g1083.t1"		"Related to GCN5"
+Cre01.g043550	GMM:27.3.28	"RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"	"Secretory pathway"	"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"g974.t1;g974.t1;g974.t1;g974.t1;g974.t1;g974.t1;g974.t1"		
+Cre01.g023050						UBX2	"UBX2;g532.t1;Cre01.g023050.t1.1"	UBX2	
+Cre01.g008976			Chloroplast						
+Cre01.g035050							"g791.t2;g791.t2"		
+Cre01.g011400							"g285.t2;HGC;g285.t2;HGC;HGC;g285.t2"		
+Cre01.g052350	GMM:29.2.1.1.3.2.20	"protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L20"	Chloroplast	"GO:0019843;GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"rRNA binding;translation;ribosome;intracellular;structural constituent of ribosome"	MRPL20	"g1160.t1;bL20m"	MRPL20	
+Cre01.g014000			Chloroplast				"Cre01.g014000.t1.1;g342.t1"		
+Cre01.g051550	"GMM:27.1.2;GMM:27.1"	"RNA.processing.RNA helicase;RNA.processing"		GO:0004386	"helicase activity"	HEL8	"HEL9;SSA9;HEL8;g1144.t1;g1144.t1;SSA9;HEL8;HEL9;HEL8;HEL9;g1144.t1;SSA9"		"contains a conserved C-terminal C2H2 Zn-finger domain; this particular helicase has been identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia;contains a conserved C-terminal C2H2 Zn-finger domain; this particular helicase has been identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia;contains a conserved C-terminal C2H2 Zn-finger domain; this particular helicase has been identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia"
+Cre01.g017750									
+Cre01.g069472	GMM:29.1.16	"protein.aa activation.cysteine-tRNA ligase"	Chloroplast				"g1284.t1;Cre23.g766000.t1.1"	TSC2	"Closer related to E coli cysS than TSC1"
+Cre01.g019550							"Cre01.g019550.t1.1;g457.t1"		"High GC protein of unknown function, ankryin repeat-containing"
+Cre01.g028300							"Cre01.g028300.t1.1;g646.t1;Cre01.g028300.t1.1;g646.t1;Cre01.g028300.t1.1;g646.t1"		
+Cre01.g028550	GMM:29.5.3	"protein.degradation.cysteine protease"				OTU1	"g652.t1;OTU1;Cre01.g028550.t1.1;OTU1;Cre01.g028550.t1.1;g652.t1;OTU1;g652.t1;Cre01.g028550.t1.1"		"Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila.;Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila.;Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila."
+Cre01.g050150	GMM:17.7.1.5	"hormone metabolism.jasmonate.synthesis-degradation.12-oxophytodienoate reductase 3"	Chloroplast	"GO:0055114;GO:0016491;GO:0010181"	"oxidation-reduction process;oxidoreductase activity;FMN binding"	NFO1	"g1109.t1;NFO1"	NFO1	
+Cre01.g017300			Chloroplast			PRPS21	"Cre01.g017300.t1.1;g410.t1;Cre01.g017300.t1.1;g410.t1;g410.t1;Cre01.g017300.t1.1"	"PRPS21;PRPS21;PRPS21"	"imported to chloroplast; Chloroplast small ribosomal subunit protein S21;imported to chloroplast; Chloroplast small ribosomal subunit protein S21;imported to chloroplast; Chloroplast small ribosomal subunit protein S21"
+Cre01.g025983			"Secretory pathway"				g597.t1		
+Cre01.g047400							"g1054.t1;g1054.t1;g1054.t1"		
+Cre01.g002900							"g69.t1;Cre01.g002900.t1.1"		
+Cre01.g027575	GMM:26.1	misc.misc2	Chloroplast						
+Cre01.g036000	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g810.t1;g810.t1"		
+Cre01.g040379	"GMM:28.2;GMM:27.1.2"	"DNA.repair;RNA.processing.RNA helicase"					"Cre01.g040379.t1.1;g901.t1"		
+Cre01.g050000			"Secretory pathway"				"Cre01.g050000.t1.1;g1106.t1"		
+Cre01.g047900	GMM:31.1	cell.organisation					g1064.t1		
+Cre01.g003100			Chloroplast				g73.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g050500	GMM:27.3	"RNA.regulation of transcription"	Mitochondrion			TCB1	"g1116.t1;PPR1;HCF152;g1116.t1;PPR1;HCF152;g1116.t1;HCF152;PPR1;g1116.t1;HCF152;PPR1"	"TCB1;TCB1;TCB1;TCB1"	"PentatricoPeptide Repeat protein that facilitates translation and stabilization of petB mRNA in the chloroplast; Homologous to HCF152 and contains a similar C-terminal domain;PentatricoPeptide Repeat protein that facilitates translation and stabilization of petB mRNA in the chloroplast; Homologous to HCF152 and contains a similar C-terminal domain;PentatricoPeptide Repeat protein that facilitates translation and stabilization of petB mRNA in the chloroplast; Homologous to HCF152 and contains a similar C-terminal domain;PentatricoPeptide Repeat protein that facilitates translation and stabilization of petB mRNA in the chloroplast; Homologous to HCF152 and contains a similar C-terminal domain"
+Cre01.g027600			Chloroplast				g631.t1		
+Cre01.g002100			Mitochondrion				"g48.t1;Cre01.g002100.t1.1;g48.t1;Cre01.g002100.t1.1;Cre01.g002100.t1.1;g48.t1;g48.t1;Cre01.g002100.t1.1;g48.t1;Cre01.g002100.t1.1"		
+Cre01.g017701	GMM:20.2.3	stress.abiotic.drought/salt							
+Cre01.g006301									
+Cre01.g017150			Chloroplast				g407.t1		
+Cre01.g012126	GMM:14.1	S-assimilation.APS	"Secretory pathway;Chloroplast"	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS4	"Cre01.g012126.t1.1;g300.t1;g300.t1;Cre01.g012126.t1.1;g300.t1;Cre01.g012126.t1.1;Cre01.g012126.t1.1;g300.t1"		
+Cre01.g004900							"Cre01.g004900.t1.1;g118.t1;g118.t1;Cre01.g004900.t1.1"		
+Cre01.g052300	GMM:27.3.18	"RNA.regulation of transcription.E2F/DP transcription factor family"		"GO:0006355;GO:0005667;GO:0003700"	"regulation of transcription, DNA-templated;transcription factor complex;transcription factor activity, sequence-specific DNA binding"	E2F1	"g1159.t1;g1159.t1;g1159.t1;g1159.t1"	"E2F1;E2F1;E2F1;E2F1"	"E2F family transcription factor; functioning in a dimer with DP1; putative function in G1/S and S/M. Positive regulator that controls commitment and S/M size checkpoints. Mutations at this locus suppress the small-cell phenotype of mutants in the MAT3 gene encoding a retinoblastoma-like transcription factor;E2F family transcription factor; functioning in a dimer with DP1; putative function in G1/S and S/M. Positive regulator that controls commitment and S/M size checkpoints. Mutations at this locus suppress the small-cell phenotype of mutants in the MAT3 gene encoding a retinoblastoma-like transcription factor;E2F family transcription factor; functioning in a dimer with DP1; putative function in G1/S and S/M. Positive regulator that controls commitment and S/M size checkpoints. Mutations at this locus suppress the small-cell phenotype of mutants in the MAT3 gene encoding a retinoblastoma-like transcription factor;E2F family transcription factor; functioning in a dimer with DP1; putative function in G1/S and S/M. Positive regulator that controls commitment and S/M size checkpoints. Mutations at this locus suppress the small-cell phenotype of mutants in the MAT3 gene encoding a retinoblastoma-like transcription factor"
+Cre01.g042150	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"	GO:0016020	membrane		g945.t1		
+Cre01.g055444			Mitochondrion				"g1233.t1;Cre23.g768050.t1.2;Cre23.g768050.t1.1"		
+Cre01.g021100			Mitochondrion				"g490.t1;Cre01.g021100.t1.1"		
+Cre01.g002227							"Cre01.g002227.t1.1;g53.t1;Cre01.g002227.t1.1;g53.t1"		
+Cre01.g038500	"GMM:26.10;GMM:26.1"	"misc.cytochrome P450;misc.misc2"	Chloroplast	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP746A1	"g862.t1;Cre01.g038500.t1.1;CYP3;CYP3;Cre01.g038500.t1.1;g862.t1;Cre01.g038500.t1.1;g862.t1;CYP3"	"CYP746A1;CYP746A1;CYP746A1"	"Cytochrome P450. CYP746B1 is found in moss Physcomitrella patens;Cytochrome P450. CYP746B1 is found in moss Physcomitrella patens;Cytochrome P450. CYP746B1 is found in moss Physcomitrella patens"
+Cre01.g059617			Chloroplast				"Cre23.g767200.t1.1;g1255.t1"		
+Cre01.g054800	GMM:29.4	"protein.postranslational modification"					"g1209.t1;Cre01.g054800.t1.1;g1209.t1;Cre01.g054800.t1.1"		
+Cre01.g011000	GMM:29.2.1.2.2.6	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L6"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL6	"g276.t1;Cre01.g011000.t1.1"	RPL6	"Cytosolic 60S large ribosomal subunit protein L6"
+Cre01.g022800							"FAL1;g527.t1;g527.t1;FAL1;g527.t1;FAL1"		
+Cre01.g052100	GMM:29.2.1.1.1.2.18	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L18"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPL18	"Cre01.g052100.t1.1;g1155.t1"	PRPL18	"imported to chloroplast; Chloroplast large ribosomal subunit protein L18"
+Cre01.g002700			Mitochondrion				"Cre01.g002700.t1.1;g64.t1;Cre01.g002700.t1.1;g64.t1"		
+Cre01.g053700	GMM:34.15	transport.potassium		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"		"g1187.t1;g1187.t1;g1187.t1"		
+Cre01.g045350						DRC5	"Cre01.g045350.t1.1;FAP155;g1014.t1"	DRC5	"Flagellar Associated Protein 155, found in the flagellar proteome; Gene deleted in sup-pf-4;"
+Cre01.g031004	GMM:27.3.12	"RNA.regulation of transcription.C3H zinc finger family"					"g703.t1;Cre01.g031004.t1.1;g703.t1;Cre01.g031004.t1.1;Cre01.g031004.t1.1;g703.t1;Cre01.g031004.t1.1;g703.t1"		
+Cre01.g005534			Chloroplast						
+Cre01.g008150	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006470;GO:0006468;GO:0005524;GO:0004722;GO:0004672;GO:0003824"	"protein dephosphorylation;protein phosphorylation;ATP binding;protein serine/threonine phosphatase activity;protein kinase activity;catalytic activity"	RPK1	"g208.t1;RPK1;g208.t1;RPK1"	"RPK1;RPK1"	
+Cre01.g016556	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0019887;GO:0005956"	"protein kinase regulator activity;protein kinase CK2 complex"		"g395.t1;g395.t1"		
+Cre01.g030300							"g687.t1;g687.t1;g687.t1;g687.t1"		
+Cre01.g037150	GMM:34.18	"transport.unspecified anions"	Chloroplast	"GO:0055085;GO:0016020;GO:0006821;GO:0005247"	"transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity"		"g833.t1;CLV6;CLV6;g833.t1;CLV6;g833.t1;g833.t1;CLV6;CLV6;g833.t1"		
+Cre01.g015400							"g371.t1;Cre01.g015400.t1.1"		
+Cre01.g050451	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0006464	"cellular protein modification process"	TTL6	"g1115.t1;TTL6;Cre01.g050450.t1.3;g1115.t1;Cre01.g050450.t1.3;TTL6;TTL6;g1115.t1;Cre01.g050450.t1.3;TTL6;Cre01.g050450.t1.3;g1115.t1"	"TTL6;TTL6;TTL6;TTL6"	
+Cre01.g021550							"g499.t1;g499.t1;g499.t1"		
+Cre01.g055151			Mitochondrion				"g1216.t1;Cre01.g055150.t1.2"		
+Cre01.g027850	GMM:30.11	signalling.light				NUOAF2	"NUOAF2;g637.t1;g637.t1;NUOAF2"	"NUOAF2;NUOAF2"	"Similar to complex I intermediate-associated protein 3; see NUOAF1;Similar to complex I intermediate-associated protein 3; see NUOAF1"
+Cre01.g042950							"g961.t1;Cre01.g042950.t1.1"		
+Cre01.g033950			Chloroplast	GO:0008270	"zinc ion binding"	EXN2	"EXN2;g766.t1"		"ribonuclease H fold"
+Cre01.g051300							"g1136.t1;g1136.t1"		
+Cre01.g040533									
+Cre01.g015100			Chloroplast			CSB5	"g364.t1;CSB5"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre01.g007600	GMM:16.8.2	"secondary metabolism.flavonoids.chalcones"		GO:0016872	"intramolecular lyase activity"		g196.t1		
+Cre01.g049350	GMM:29.5	protein.degradation	Chloroplast	"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"		"g1095.t1;g1095.t1"		
+Cre01.g048450							g1076.t1		
+Cre01.g002200	GMM:27.2	RNA.transcription		"GO:0006351;GO:0003899;GO:0003677"	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPB6	"g50.t1;RPB6"	RPB6	"putative DNA-directed RNA polymerase subunit, sequence similarity to yeast RNB6 (13-15 kDa)"
+Cre01.g050624			"Secretory pathway"						
+Cre01.g027750			Chloroplast			MFT7	"MFT7;MAE7;g634.t1"		"putative MATE efflux family protein, related to Arabidopsis putative integral membrane protein"
+Cre01.g051466			"Secretory pathway"						
+Cre01.g041950			Chloroplast				"g941.t1;Cre01.g041950.t1.1;g941.t1;Cre01.g041950.t1.1"		
+Cre01.g055400							"g1222.t1;Cre01.g055400.t1.1"		
+Cre01.g043817			Chloroplast						
+Cre01.g006402									
+Cre01.g014900			Chloroplast				"g360.t1;g360.t1;g360.t1;g360.t1;g360.t1"		
+Cre01.g030968			Mitochondrion						
+Cre01.g032900			Chloroplast				"g743.t2;g743.t2;g743.t2;g743.t2;g743.t2;g743.t2"		
+Cre01.g039300	"GMM:27.1;GMM:1.1.1.3"	"RNA.processing;PS.lightreaction.photosystem II.biogenesis"		"GO:0003723;GO:0003676"	"RNA binding;nucleic acid binding"	RB47	"Cre01.g039300.t1.1;PABP;g878.t1"	RB47	"Almost identical to T07933, polyadenylate-binding protein RB47 precursor, chloroplast-targeted; regulates translation of psbA; possibly controlled by RB60, a protein disulfide isomerase whose Volvox homolog is controlled by regA (regulator of somatic development);"
+Cre01.g045150						FAP304	"g1008.t1;Cre01.g045150.t1.1"	FAP304	
+Cre01.g004300	"GMM:13.1.3.1.1;GMM:13.1.3.1"	"amino acid metabolism.synthesis.aspartate family.asparagine.asparagine synthetase;amino acid metabolism.synthesis.aspartate family.asparagine"	Chloroplast	"GO:0006529;GO:0004066"	"asparagine biosynthetic process;asparagine synthase (glutamine-hydrolyzing) activity"	ASN1	"ASNS;Cre01.g004300.t1.1;g106.t1"	ASN1	"Asparagine synthase (glutamine-hydrolyzing)"
+Cre01.g029500	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	CDPKK3	"Cre01.g029500.t1.1;g671.t1;CDPKK3;Cre01.g029500.t1.1;CDPKK3;g671.t1;CDPKK3;Cre01.g029500.t1.1;g671.t1;Cre01.g029500.t1.1;g671.t1;CDPKK3;CDPKK3;g671.t1;Cre01.g029500.t1.1;CDPKK3;g671.t1;Cre01.g029500.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre01.g022150				"GO:0008076;GO:0006813;GO:0005249"	"voltage-gated potassium channel complex;potassium ion transport;voltage-gated potassium channel activity"	KCN3	"g511.t1;KCN3;KCN3;g511.t1"		"Voltage-dependent 1-domain potassium channel (Shaker-like), alpha subunit; P-loop contains conserved motif for K+ selectivity;Voltage-dependent 1-domain potassium channel (Shaker-like), alpha subunit; P-loop contains conserved motif for K+ selectivity"
+Cre01.g045400	GMM:3.3	"minor CHO metabolism.sugar alcohols"	"Secretory pathway"			CSB8			
+Cre01.g009900	"GMM:30.99;GMM:29.9;GMM:20.2.1"	"signalling.unspecified;protein.co-chaperones;stress.abiotic.heat"	Chloroplast			CDJ3	"CDJ3;g250.t1;g250.t1;CDJ3"		"Contains N-terminal J-domain (pfam226) and bacterial-type Ferredoxin domain (COG1141, [4Fe4S]); not involved in protein folding, but stimulates ATPase activity of HSP70B; in same clade as CDJ4;Contains N-terminal J-domain (pfam226) and bacterial-type Ferredoxin domain (COG1141, [4Fe4S]); not involved in protein folding, but stimulates ATPase activity of HSP70B; in same clade as CDJ4"
+Cre01.g001657						DAB1	"DAB1;DNAAF3;DNAAF3;DAB1"	"PF22;PF22"	"Axonemal dynein assembly factor PF22, located in cytoplasm, needed for assembly of ODAs, IDA b and IDA c; Essential for the preassembly of dyneins into complexes before their transport into cilia; Mutants have paralyzed flagella; Human homolog is DNAAF3; Also called Dynein Assembly Blocked 1 (DAB1);Axonemal dynein assembly factor PF22, located in cytoplasm, needed for assembly of ODAs, IDA b and IDA c; Essential for the preassembly of dyneins into complexes before their transport into cilia; Mutants have paralyzed flagella; Human homolog is DNAAF3; Also called Dynein Assembly Blocked 1 (DAB1)"
+Cre01.g042900	"GMM:29.2.2.3.99;GMM:27.1"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;RNA.processing"					"RRM1;Cre01.g042900.t1.1;g960.t1"	RRM1	
+Cre01.g015950			Chloroplast	GO:0003725	"double-stranded RNA binding"	CPL11	"g380.t1;Cre01.g015950.t1.1"	CPL11	"Conserved expressed organellar protein involved in translation; putative translation factor (SUA5); found in plants and cyanobacteria"
+Cre01.g017200	"GMM:31.3.1;GMM:29.6.3.1"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs"		GO:0006457	"protein folding"	FKB99	"g408.t1;Cre01.g017200.t1.1;FKB24;FKB24;Cre01.g017200.t1.1;g408.t1"	"FKB99;FKB99"	"Contains 3 N-terminal FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin) domains and C-terminal TPR repeats; orthologue of AT3G25230;Contains 3 N-terminal FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin) domains and C-terminal TPR repeats; orthologue of AT3G25230"
+Cre01.g012244									
+Cre01.g026550	"GMM:29.6.2.2;GMM:29.6"	"protein.folding.chaperones and co-chaperones.HSP60s;protein.folding"	Cytosol	"GO:0051082;GO:0006457;GO:0005524"	"unfolded protein binding;protein folding;ATP binding"	CCT7	"CCT7;g609.t1"	CCT7	"T-complex protein 1, eta subunit (TCP-1-eta) (CCT-eta) (TCPH); subunit of cytosolic chaperonin complex. ts-lethal mutant was isolated (PMID 29743196)"
+Cre01.g013550			Mitochondrion				"g331.t1;g331.t1;g331.t1"		
+Cre01.g055448			Chloroplast						
+Cre01.g000300			Mitochondrion			GDP8	"GDP8;g9.t1"	CGI58	"Glycerophosphoryl diester phosphodiesterase family protein; Predicted glycerophosphodiester phosphodiesterasehydrolase in the hydrolase, alpha/beta fold family; Name comes from Comparative gene identification-58 protein;"
+Cre01.g001450							"Cre01.g001450.t1.1;g32.t1;Cre01.g001450.t1.1;g32.t1;g32.t1;Cre01.g001450.t1.1"		"Contains IQ calmodulin-binding region and P-loop containing nucleoside triphosphate hydrolase domain;Contains IQ calmodulin-binding region and P-loop containing nucleoside triphosphate hydrolase domain;Contains IQ calmodulin-binding region and P-loop containing nucleoside triphosphate hydrolase domain"
+Cre01.g034650							"Cre01.g034650.t1.1;g782.t1"		
+Cre01.g053150	GMM:11.5.2	"lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)"		"GO:0055114;GO:0051287;GO:0046168;GO:0016616;GO:0009331;GO:0006072;GO:0005975;GO:0004367"	"oxidation-reduction process;NAD binding;glycerol-3-phosphate catabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;glycerol-3-phosphate dehydrogenase complex;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity"	GPD3	"g1174.t2;Cre01.g053150.t1.1;GPDH3"	GPD3	"Identified as GPDH3 (PMID 22358185); Closely related to nearby GPDH2"
+Cre01.g010500							"Cre01.g010500.t1.1;g263.t1"		
+Cre01.g047350			Chloroplast				"g1053.t1;g1053.t1"		
+Cre01.g037800	GMM:21.1	redox.thioredoxin		GO:0045454	"cell redox homeostasis"	TRX21	"g847.t1;TRL7;TRX21;Cre01.g037800.t1.1"		"Shares some similarities with putative ATP binding protein. Contains a thioredoxin homology domain lacking the thioredoxin active site."
+Cre01.g004926									
+Cre01.g070567				"GO:0006351;GO:0005634;GO:0003899;GO:0003677"	"transcription, DNA-templated;nucleus;DNA-directed RNA polymerase activity;DNA binding"		"g1287.t1;Cre23.g765850.t1.2;Cre23.g765850.t1.1;g1287.t1;Cre23.g765850.t1.1;Cre23.g765850.t1.2;Cre23.g765850.t1.1;g1287.t1;Cre23.g765850.t1.2"		
+Cre01.g054200							"g1197.t1;Cre01.g054200.t1.1"		
+Cre01.g034000	GMM:29.3.1	protein.targeting.nucleus	"Secretory pathway"	"GO:0008536;GO:0006886"	"Ran GTPase binding;intracellular protein transport"	IPB1	"Cre01.g034000.t1.1;g767.t1;IPB1"	IPB1	
+Cre01.g026600	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC11	"g610.t1;UBC11;Cre01.g026600.t1.1"	UBC11	"E2 Ubiquitin conjugating enzyme, subclass XV"
+Cre01.g053300	GMM:22.1.4	"polyamine metabolism.synthesis.agmatine deiminase"	Mitochondrion	"GO:0009446;GO:0004668"	"putrescine biosynthetic process;protein-arginine deiminase activity"	AIH1	"AIH1;g1178.t1;AIH1;g1178.t1;AIH1;g1178.t1"	"AIH1;AIH1;AIH1"	"converts agmatin to N-carbamoyl-putrescine; involved in agmatine pathway of polyamine (putrescine) biosynthesis; could be organelle-targeted;converts agmatin to N-carbamoyl-putrescine; involved in agmatine pathway of polyamine (putrescine) biosynthesis; could be organelle-targeted;converts agmatin to N-carbamoyl-putrescine; involved in agmatine pathway of polyamine (putrescine) biosynthesis; could be organelle-targeted"
+Cre01.g011500	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	"protein binding"	RPN11	"g287.t1;RPN11;Cre01.g011500.t1.1"	RPN11	"26S proteasome regulatory complex, lid subcomplex, non-ATPase subunit RPN11 (26S PROTEASOME-ASSOCIATED PAD1 HOMOLOG)"
+Cre01.g025300	GMM:28.2	DNA.repair	"Secretory pathway"	"GO:0033063;GO:0006281;GO:0003677;GO:0000724"	"Rad51B-Rad51C-Rad51D-XRCC2 complex;DNA repair;DNA binding;double-strand break repair via homologous recombination"	RAD51B	"RAD51B;g581.t1;RAD51B;g581.t1"	"RAD51B;RAD51B"	"similar to RAD51 which forms nucleoprotein filament for strand invasion; homologous to RecA ATPase;similar to RAD51 which forms nucleoprotein filament for strand invasion; homologous to RecA ATPase"
+Cre01.g011450			"Secretory pathway"				"g286.t1;g286.t1"		
+Cre01.g045825			Chloroplast				"g1028.t1;Cre01.g045850.t1.3"		
+Cre01.g041500	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"					g929.t1		
+Cre01.g035450							"Cre01.g035450.t1.1;g799.t1"		
+Cre01.g049117									
+Cre01.g016050	GMM:27.1.1	RNA.processing.splicing		"GO:0030623;GO:0017070;GO:0005681;GO:0005515;GO:0003723;GO:0000398"	"U5 snRNA binding;U6 snRNA binding;spliceosomal complex;protein binding;RNA binding;mRNA splicing, via spliceosome"	PRP8	"g382.t1;PRP8;Cre01.g016050.t1.1"	PRP8	"Central component of the spliceosome, which may play a role in aligning the pre-mRNA 5' and 3' exons for ligation. Interacts with U5 snRNA, and with pre-mRNA 5' splice sites in B spliceosomes and 3' splice sites in C spliceosomes. Part of the U5 snRNP complex, and of U5.4/6 and U5.U4atac/U6atac snRNP complexes in U2- and U12-dependent spliceosomes, respectively. ts-lethal mutant isolated (PMID 29743196)"
+Cre01.g027150	"GMM:28.1;GMM:27.1"	"DNA.synthesis/chromatin structure;RNA.processing"	Mitochondrion	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL5	"g621.t1;HEL5;CPLD46"	CPLD46	"Putative DEAD/DEAH-box helicase, possibly plastid targeted; Identified as HEL5 in the GreenCut;"
+Cre01.g038550	GMM:11.10.4	"lipid metabolism.glycolipid synthesis.sulfolipid synthase"	Chloroplast			SQD2	g863.t1	SQD2	"sulfolipid synthase, adds sulfoquinovose to diacylglycerol to produce the plant sulfolipid, sulfoquinovosyldiacylglycerol"
+Cre01.g038100			Chloroplast				"Cre01.g038100.t1.1;BES1;g853.t1"		"Similar to Bestrophin, RFP-TM, chloride channel; similar to Arabidopsis AT3G61320 and AT2G45870; part of a small multigene family that includes Low-CO2-inducible membrane protein LCI11"
+Cre01.g050950	GMM:16.1.1	"secondary metabolism.isoprenoids.non-mevalonate pathway"	Chloroplast	GO:0071949	"FAD binding"	GGR1	"Cre01.g050950.t1.1;CHLP;LYL1;g1128.t1;CHLP;Cre01.g050950.t1.1;LYL1;g1128.t1;Cre01.g050950.t1.1;CHLP;LYL1;g1128.t1;LYL1;Cre01.g050950.t1.1;CHLP;g1128.t1"	"CHLP1;CHLP1;CHLP1;CHLP1"	
+Cre01.g023550				GO:0005515	"protein binding"	FAP234	"TPG2;g543.t1;TPG2;g543.t1"	"FAP234;FAP234"	"Conserved Flagellar Associated Protein with leucine-rich repeat; found in the flagellar proteome; makes complex with TTLL9 (see FAP267) (PubMed ID:24196831 Kubo et al. Kamiya 2014) and (PubMed ID:26085508 Kubo et al. Witman 2015);Conserved Flagellar Associated Protein with leucine-rich repeat; found in the flagellar proteome; makes complex with TTLL9 (see FAP267) (PubMed ID:24196831 Kubo et al. Kamiya 2014) and (PubMed ID:26085508 Kubo et al. Witman 2015)"
+Cre01.g043250							"g967.t1;g967.t1;g967.t1;g967.t1;g967.t1;g967.t1;g967.t1;g967.t1"		
+Cre01.g064362	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre23.g766600.t1.1;g1268.t1;g1268.t1;Cre23.g766600.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre01.g040150	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre01.g040150.t1.1;g896.t1"		
+Cre01.g018950	"GMM:29.2.4.1;GMM:29.2.3.1"	"protein.synthesis.elongation.deoxyhypusine synthase;protein.synthesis.initiation.deoxyhypusine synthase"		GO:0008612	"peptidyl-lysine modification to peptidyl-hypusine"	DHS1	"g445.t1;Cre01.g018950.t1.1;g445.t1;Cre01.g018950.t1.1;Cre01.g018950.t1.1;g445.t1"	"DHS1;DHS1;DHS1"	"Transfers the aminobutyl moiety of spermidine to a specific lysine residue of eIF5A, forming deoxyhypusine; deoxypusine will then be hydroxylated to generate the unusual aminoacid hypusine; an important mechanism controlling cell proliferation and growth (PMID: 16600425);Transfers the aminobutyl moiety of spermidine to a specific lysine residue of eIF5A, forming deoxyhypusine; deoxypusine will then be hydroxylated to generate the unusual aminoacid hypusine; an important mechanism controlling cell proliferation and growth (PMID: 16600425);Transfers the aminobutyl moiety of spermidine to a specific lysine residue of eIF5A, forming deoxyhypusine; deoxypusine will then be hydroxylated to generate the unusual aminoacid hypusine; an important mechanism controlling cell proliferation and growth (PMID: 16600425)"
+Cre01.g052500			"Secretory pathway"				"g1163.t1;g1163.t1;g1163.t1"		
+Cre01.g039450			Chloroplast				g881.t1		"Similar to PIC1 from Arabidopsis thaliana"
+Cre01.g030100	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK13	"PTK13;g683.t1;g683.t1;PTK13"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre01.g048400			Mitochondrion				"DZIP1L;g1075.t1;DZIP1L;g1075.t1;g1075.t1;DZIP1L"	"DZP1;DZP1;DZP1"	"Deleted in azoospermia (DAZ) interacting zinc finger protein 1; Mutants have paralyzed cilia; Similar to Iguana protien in Dania rerio and DZIP1L in Homo sapiens;Deleted in azoospermia (DAZ) interacting zinc finger protein 1; Mutants have paralyzed cilia; Similar to Iguana protien in Dania rerio and DZIP1L in Homo sapiens;Deleted in azoospermia (DAZ) interacting zinc finger protein 1; Mutants have paralyzed cilia; Similar to Iguana protien in Dania rerio and DZIP1L in Homo sapiens"
+Cre01.g032139				GO:0005515	"protein binding"				
+Cre01.g032400			Chloroplast	GO:0018193	"peptidyl-amino acid modification"		"g733.t1;Cre01.g032400.t1.1;Cre01.g032400.t1.1;g733.t1"		
+Cre01.g005100			"Secretory pathway"				"g123.t1;g123.t1;g123.t1"		
+Cre01.g024100			Mitochondrion				g557.t1		
+Cre01.g044250						CAM4	"CAM4;g989.t1;g989.t1;CAM4;g989.t1;CAM4;CAM4;g989.t1;CAM4;g989.t1"		
+Cre01.g007651				"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS10	"g197.t1;PUS10"		
+Cre01.g018600			"Secretory pathway"				"Cre01.g018600.t1.1;g438.t1"		
+Cre01.g048550			Mitochondrion				g1078.t1		
+Cre01.g026850			Chloroplast						
+Cre01.g055469				"GO:0032259;GO:0008168"	"methylation;methyltransferase activity"		"g1239.t1;Cre23.g767800.t1.1"		
+Cre01.g054750	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre01.g054750.t1.1;g1208.t1;Cre01.g054750.t1.1;g1208.t1;Cre01.g054750.t1.1;g1208.t1"		
+Cre01.g019450	GMM:29.5.11.3	protein.degradation.ubiquitin.E2		GO:0019789	"SUMO transferase activity"		"CreSCE1c;UBC9;g455.t2;UBE2I;g455.t2;UBE2I;CreSCE1c;UBC9"	"SCE3;SCE3"	"E2 SUMO conjugating enzyme; Biochemical activity verified;E2 SUMO conjugating enzyme; Biochemical activity verified"
+Cre01.g015650							"g376.t1;Cre01.g015650.t1.1;g376.t1;Cre01.g015650.t1.1"		
+Cre01.g002050			"Secretory pathway"	GO:0003993	"acid phosphatase activity"	APT1	"g47.t1;APT1"		"Acid phosphatase containing 2 catalytic histidines"
+Cre01.g049300			Mitochondrion				"g1094.t1;g1094.t1"		
+Cre01.g037300			Chloroplast				"g836.t1;Cre01.g037300.t1.1;g836.t1;Cre01.g037300.t1.1;Cre01.g037300.t1.1;g836.t1"		
+Cre01.g050100	GMM:13.1.3.5.5	"amino acid metabolism.synthesis.aspartate family.lysine.diaminopimelate decarboxylase"	Chloroplast	GO:0003824	"catalytic activity"	DPD1	"g1108.t1;Cre01.g050100.t1.1;DPD1"	DPD1	"EC:4.1.1.20; lysine synthesis enzyme (LysA); plastid location expected based on homology"
+Cre01.g020350	GMM:8.1.7	"TCA / organic transformation.TCA.succinate dehydrogenase"	Mitochondrion	GO:0016627	"oxidoreductase activity, acting on the CH-CH group of donors"	SDH3	"g473.t1;Cre01.g020350.t1.1"	SDH3	"Succinate dehydrogenase cytochrome b56 subunit, mitochondrial precursor (SDHC); next to downstream divergently transcribed SDH4, suggesting a shared bidirectional promoter region"
+Cre01.g036200			Mitochondrion	"GO:0005515;GO:0003824"	"protein binding;catalytic activity"		"Cre01.g036200.t1.1;g814.t1;g814.t1;Cre01.g036200.t1.1;g814.t1;Cre01.g036200.t1.1;g814.t1;Cre01.g036200.t1.1;g814.t1;Cre01.g036200.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre01.g040500			Chloroplast				"Cre01.g040500.t1.1;g905.t1;Cre01.g040500.t1.1;g905.t1;g905.t1;Cre01.g040500.t1.1;Cre01.g040500.t1.1;g905.t1;g905.t1;Cre01.g040500.t1.1;g905.t1;Cre01.g040500.t1.1"		
+Cre01.g000400			"Secretory pathway"			AXL3	"ERR1;g11.t1;AXL3;Cre01.g000400.t1.1"		"belongs to a tandem cluster of three related genes for GT77 family proteins"
+Cre01.g023600	"GMM:26.11.1;GMM:26.11"	"misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases"		"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"		"g544.t1;Cre01.g023600.t1.1"		
+Cre01.g040050	"GMM:18.2.1;GMM:18"	"Co-factor and vitamine metabolism.thiamine.thiamine diphosphokinase;Co-factor and vitamine metabolism"		"GO:0030975;GO:0009229;GO:0005524;GO:0004788"	"thiamine binding;thiamine diphosphate biosynthetic process;ATP binding;thiamine diphosphokinase activity"	TPK1	"g894.t1;TPK1;TPK1;g894.t1"	"TPK1;TPK1"	"Pyrophosphorylate thiamine to form thiamine pyrophosphate (the active form of the cofactor);Pyrophosphorylate thiamine to form thiamine pyrophosphate (the active form of the cofactor)"
+Cre01.g006202						CSB4			
+Cre01.g031500	"GMM:21.2.1;GMM:16.1"	"redox.ascorbate and glutathione.ascorbate;secondary metabolism.isoprenoids"	"Secretory pathway"	"GO:0055114;GO:0016491;GO:0005507"	"oxidation-reduction process;oxidoreductase activity;copper ion binding"		"Cre01.g031500.t1.1;g712.t1"		
+Cre01.g008000				GO:0003723	"RNA binding"		"g205.t1;Cre01.g008000.t1.1"		
+Cre01.g042450	GMM:29.5.5	"protein.degradation.serine protease"					"g951.t1;g951.t1"		
+Cre01.g006500	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"							
+Cre01.g040600			Mitochondrion			FAP327	"g910.t1;g910.t1;g910.t1;g910.t1;g910.t1;g910.t1;g910.t1"	"FAP327;FAP327;FAP327;FAP327;FAP327;FAP327;FAP327"	
+Cre01.g013769							"g336.t1;Cre01.g013769.t1.1"		
+Cre01.g003500	GMM:28.2	DNA.repair				MSH2	"CLUB1;MSH2;g83.t1;Cre01.g003500.t1.1;Cre01.g003500.t1.1;g83.t1;MSH2;CLUB1"		"Orthologous to CLUB (AT5G54440) in Arabidopsis thaliana; AtCLUB Encodes a putative TRAPPII tethering factor required for cell plate assembly during cytokinesis;Orthologous to CLUB (AT5G54440) in Arabidopsis thaliana; AtCLUB Encodes a putative TRAPPII tethering factor required for cell plate assembly during cytokinesis"
+Cre01.g025000						SSA12	"SSA12;Cre01.g025000.t1.1;g574.t1"	SSA12	
+Cre01.g065092			Mitochondrion						
+Cre01.g034875			Chloroplast						
+Cre01.g018184									
+Cre01.g022283							"Cre01.g022300.t1.3;g514.t1;g514.t1;Cre01.g022300.t1.3"		
+Cre01.g042650				GO:0005509	"calcium ion binding"		"g955.t1;Cre01.g042650.t1.1"		
+Cre01.g014100							"g344.t1;Cre01.g014100.t1.1"		
+Cre01.g055420	GMM:29.4	"protein.postranslational modification"		"GO:0008601;GO:0000159"	"protein phosphatase type 2A regulator activity;protein phosphatase type 2A complex"		"Cre23.g768350.t1.2;PP2A-B;Cre23.g768350.t1.1;PF4;g1227.t1;Cre23.g768350.t1.1;PP2A-B;Cre23.g768350.t1.2;g1227.t1;PF4;g1227.t1;PF4;Cre23.g768350.t1.2;PP2A-B;Cre23.g768350.t1.1"	"PP2A1;PP2A1;PP2A1"	"PP2A1, a WD repeat PP2A-B protein, targets the PP2A-C catalytic subunit to axonemes. The pf4 mutant is a frame shift (null) with altered motility (PMID: 21692192).;PP2A1, a WD repeat PP2A-B protein, targets the PP2A-C catalytic subunit to axonemes. The pf4 mutant is a frame shift (null) with altered motility (PMID: 21692192).;PP2A1, a WD repeat PP2A-B protein, targets the PP2A-C catalytic subunit to axonemes. The pf4 mutant is a frame shift (null) with altered motility (PMID: 21692192)."
+Cre01.g008550	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g216.t1;g216.t1;g216.t1;g216.t1;g216.t1"		
+Cre01.g007350	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				MOT42	"MOT42;g191.t1;Cre01.g007350.t1.1"	MOT42	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre01.g053550			"Secretory pathway"				"g1184.t1;g1184.t1;g1184.t1"		
+Cre01.g037900			"Secretory pathway"				g849.t1		
+Cre01.g048000							"g1066.t1;g1066.t1"	"TPM1;TPM1"	"Found in basal body proteome as tropomyosin;Found in basal body proteome as tropomyosin"
+Cre01.g036900	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g828.t1;g828.t1;g828.t1;g828.t1;g828.t1;g828.t1"		
+Cre01.g001678	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g40.t2;Cre58.g791550.t1.1"		
+Cre01.g055966							g1245.t1		
+Cre01.g014250			Mitochondrion			OPR2	"g347.t1;g347.t1;g347.t1"	"OPR2;OPR2;OPR2"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre01.g041150							"g921.t1;g921.t1;g921.t1;g921.t1"		
+Cre01.g043400							"Cre01.g043400.t1.1;g971.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g035650							"Cre01.g035650.t1.1;g803.t1"		
+Cre01.g024251	GMM:27.1.2	"RNA.processing.RNA helicase"	Chloroplast	"GO:0005524;GO:0004386;GO:0003676"	"ATP binding;helicase activity;nucleic acid binding"		"g561.t1;Cre01.g024251.t1.1"		
+Cre01.g033516				"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"g757.t1;Cre01.g033524.t1.2"		
+Cre01.g020918	"GMM:29.5.7;GMM:29.5"	"protein.degradation.metalloprotease;protein.degradation"	Chloroplast	GO:0006508	proteolysis	PREP1	"PREP1;g486.t1;Cre01.g020900.t1.3;g486.t1;PREP1;Cre01.g020900.t1.3;PREP1;g486.t1;Cre01.g020900.t1.3;PREP1;Cre01.g020900.t1.3;g486.t1;PREP1;g486.t1;Cre01.g020900.t1.3"	"PREP1;PREP1;PREP1;PREP1;PREP1"	"Zn metalloprotease, M16C family; Arabidopsis orthologues are dually-targeted to chloroplast and mitochondrion (PMID: 17081117); degrades cTP and mTP cleaved off pre-proteins during organellar import, in a large catalytic chamber (PMID: 16601675);Zn metalloprotease, M16C family; Arabidopsis orthologues are dually-targeted to chloroplast and mitochondrion (PMID: 17081117); degrades cTP and mTP cleaved off pre-proteins during organellar import, in a large catalytic chamber (PMID: 16601675);Zn metalloprotease, M16C family; Arabidopsis orthologues are dually-targeted to chloroplast and mitochondrion (PMID: 17081117); degrades cTP and mTP cleaved off pre-proteins during organellar import, in a large catalytic chamber (PMID: 16601675);Zn metalloprotease, M16C family; Arabidopsis orthologues are dually-targeted to chloroplast and mitochondrion (PMID: 17081117); degrades cTP and mTP cleaved off pre-proteins during organellar import, in a large catalytic chamber (PMID: 16601675);Zn metalloprotease, M16C family; Arabidopsis orthologues are dually-targeted to chloroplast and mitochondrion (PMID: 17081117); degrades cTP and mTP cleaved off pre-proteins during organellar import, in a large catalytic chamber (PMID: 16601675)"
+Cre01.g028777									
+Cre01.g022950	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		GO:0005515	"protein binding"		"Cre01.g022950.t1.1;g530.t1"		
+Cre01.g001150	GMM:29.4.1	"protein.postranslational modification.kinase"					g26.t1		
+Cre01.g032050	GMM:34.11	"transport.NDP-sugars at the ER"	"Secretory pathway"	"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		"UAA1;Cre01.g032050.t1.1;g725.t1;g725.t1;Cre01.g032050.t1.1;UAA1;g725.t1;Cre01.g032050.t1.1;UAA1"		"UAA transporter;UAA transporter;UAA transporter"
+Cre01.g031200				"GO:0030942;GO:0008312;GO:0006614"	"endoplasmic reticulum signal peptide binding;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane"	SRP14	"SRP14;Cre01.g031200.t1.1;g706.t1"	SRP14	"Expressed Protein. Similar to the SRP14 subunit of the Signal Recognition Particle. Involved in ER protein translocation."
+Cre01.g004450			Chloroplast			CPLD42	"Cre01.g004450.t1.1;g109.t1;Cre01.g004450.t1.1;g109.t1"	"CPLD42;CPLD42"	"Contains domain of unknown function (DUF1517). This family consists of several hypothetical glycine rich plant and bacterial proteins of around 3 residues in length.;Contains domain of unknown function (DUF1517). This family consists of several hypothetical glycine rich plant and bacterial proteins of around 3 residues in length."
+Cre01.g052750			"Secretory pathway"				"g1167.t1;g1167.t1"		"Transient receptor potential (TRP) ion channel;Transient receptor potential (TRP) ion channel"
+Cre01.g009765			Chloroplast				"g247.t1;Cre01.g009750.t1.3"		
+Cre01.g030550	GMM:29.5.11	protein.degradation.ubiquitin					"g692.t1;UBX1;Cre01.g030550.t1.1;UBX1;Cre01.g030550.t1.1;g692.t1;g692.t1;Cre01.g030550.t1.1;UBX1"		"Ubiquitin-associated protein, contains PUB/PUG domain. May be a ubiquitin-associated/translation elongation factor, EF1B. Proteins with PUB/PUG domains are often linked to the ubiquitin-proteasome system;Ubiquitin-associated protein, contains PUB/PUG domain. May be a ubiquitin-associated/translation elongation factor, EF1B. Proteins with PUB/PUG domains are often linked to the ubiquitin-proteasome system;Ubiquitin-associated protein, contains PUB/PUG domain. May be a ubiquitin-associated/translation elongation factor, EF1B. Proteins with PUB/PUG domains are often linked to the ubiquitin-proteasome system"
+Cre01.g003300			"Secretory pathway"	GO:0006865	"amino acid transport"		"g77.t1;Cre01.g003300.t1.1"		
+Cre01.g013000			"Secretory pathway"				"g320.t1;g320.t1;g320.t1"		
+Cre01.g003487							g82.t1		
+Cre01.g005550	"GMM:29.4;GMM:29.3.4.99"	"protein.postranslational modification;protein.targeting.secretory pathway.unspecified"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	ARL4	"Cre01.g005550.t1.1;ARL4;g135.t1;ARL2"		"Expressed Protein. ARF-like 2, a member of the ARF/Sar1 GTPase family conserved in essentially all eukaryotes (A. thaliana ortholog - Titan5). Involved in the dynamics of the tubulin cytoskeleton probably via regulation of the assembly of alpha/beta tubulin dimers; Has 13,404 nt intron that spans many sequence gaps, may represent assembly problems with the scaffold"
+Cre01.g039950	GMM:33.99	development.unspecified	Mitochondrion			MFT32	"MFT32;g892.t1;Cre01.g039950.t1.1;g892.t1;Cre01.g039950.t1.1;MFT32"		"Permease, Nodulin-like;Permease, Nodulin-like"
+Cre01.g033150							"Cre01.g033150.t1.1;g749.t1"		
+Cre01.g016400							"g389.t1;g389.t1"		
+Cre01.g020000			Chloroplast				g465.t1		
+Cre01.g000017									
+Cre01.g028400			Mitochondrion			DDC1	"g648.t1;DDC1;DDC1;g648.t1;DDC1;g648.t1"	"DDC1;DDC1;DDC1"	"Could be involved in the formation of tryptamine by decarboxylation of tryptophan; tryptamine is a substrate of strictosidine synthase, a key enzyme in monoterpene indole alkaloid biosynthesis; a strictosidine synthase homologue is found in Chlamydomonas;Could be involved in the formation of tryptamine by decarboxylation of tryptophan; tryptamine is a substrate of strictosidine synthase, a key enzyme in monoterpene indole alkaloid biosynthesis; a strictosidine synthase homologue is found in Chlamydomonas;Could be involved in the formation of tryptamine by decarboxylation of tryptophan; tryptamine is a substrate of strictosidine synthase, a key enzyme in monoterpene indole alkaloid biosynthesis; a strictosidine synthase homologue is found in Chlamydomonas"
+Cre01.g029850	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004674;GO:0004672"	"protein phosphorylation;ATP binding;protein serine/threonine kinase activity;protein kinase activity"		"g678.t1;STPK19;Cre01.g029850.t1.1;STK19;STK19;STPK19;g678.t1;Cre01.g029850.t1.1;Cre01.g029850.t1.1;STPK19;STK19;g678.t1"		"Serine/Threonine Protein Kinase Homolog 19;Serine/Threonine Protein Kinase Homolog 19;Serine/Threonine Protein Kinase Homolog 19"
+Cre01.g051625							"g1145.t1;Cre01.g051600.t1.3"		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g042800	GMM:19.13	"tetrapyrrole synthesis.divinyl chlorophyllide-a 8-vinyl-reductase"	Chloroplast			DVR1	"Cre01.g042800.t1.1;g958.t1"	DVR1	"3,8-divinyl protochlorophyllide a 8-vinyl reductase, chloroplast precursor; predicted chloroplast transit peptide 1-58; [PMID: 15695432; PMID: 15632054]. This is an NAD-dependent epimerase/dehydratase (see SNE family) however interacts with petF [PMID: 28938113] suggesting possibly uses petF not NAD. Also interacts with bestrophin-1 athylakoid membrane protein."
+Cre01.g002787				"GO:0016020;GO:0005975;GO:0005044;GO:0004553"	"membrane;carbohydrate metabolic process;scavenger receptor activity;hydrolase activity, hydrolyzing O-glycosyl compounds"	SRR24A	"g66.t1;SRR24A;SRR24;Cre01.g002800.t1.3"		"Scavenger receptor cysteine-rich protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain. Very large protein. Part of a group of 4 homologous proteins; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre01.g005900	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX	Chloroplast	GO:0005515	"protein binding"		"g142.t1;g142.t1"		
+Cre01.g010880	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	"protein binding"		g273.t1		
+Cre01.g023150	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006260;GO:0005524;GO:0003677"	"DNA replication;ATP binding;DNA binding"	MCM5	"MCM5;Cre01.g023150.t1.1;g534.t1"	MCM5	"homology to MCM5 DNA replication protein"
+Cre01.g009325							g235.t1		
+Cre01.g009000			Chloroplast				"g227.t1;g227.t1"		
+Cre01.g000550			"Secretory pathway"				"Cre01.g000550.t1.1;g14.t1;g14.t1;Cre01.g000550.t1.1"		
+Cre01.g046324							g1035.t1		
+Cre01.g047300							"g1052.t1;Cre01.g047300.t1.1"		
+Cre01.g002250	"GMM:27.3.54;GMM:26.24"	"RNA.regulation of transcription.histone acetyltransferases;misc.GCN5-related N-acetyltransferase"	Chloroplast	GO:0008080	"N-acetyltransferase activity"		"g55.t1;NAT4;Cre01.g002250.t1.1;NAT4;g55.t1;Cre01.g002250.t1.1"		"Histone acetyltransferase (GNAT/MYST superfamily), ChromDB HAG3406;Histone acetyltransferase (GNAT/MYST superfamily), ChromDB HAG3406"
+Cre01.g021400							"Cre01.g021400.t1.1;SPL13;g496.t1;Cre01.g021400.t1.1;SPL13;g496.t1;Cre01.g021400.t1.1;SPL13;g496.t1;Cre01.g021400.t1.1;g496.t1;SPL13"		"Pre-mRNA splicing factor, related to the cell cycle control protein CWF25;Pre-mRNA splicing factor, related to the cell cycle control protein CWF25;Pre-mRNA splicing factor, related to the cell cycle control protein CWF25;Pre-mRNA splicing factor, related to the cell cycle control protein CWF25"
+Cre01.g011750							g292.t1		
+Cre01.g043901							g982.t1		
+Cre01.g032200			Mitochondrion				"g729.t1;Cre01.g032200.t1.1;FAL3;Cre01.g032200.t1.1;g729.t1;FAL3"		
+Cre01.g033250			Mitochondrion				"Cre01.g033250.t1.1;g751.t1;g751.t1;Cre01.g033250.t1.1;g751.t1;Cre01.g033250.t1.1"		
+Cre01.g055000			Mitochondrion	GO:0016787	"hydrolase activity"		g1213.t1		
+Cre01.g016450	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		GO:0005515	"protein binding"		"g390.t1;g390.t1"		
+Cre01.g028423	"GMM:27.3.99;GMM:16.4.1;GMM:13.2.6.2"	"RNA.regulation of transcription.unclassified;secondary metabolism.N misc.alkaloid-like;amino acid metabolism.degradation.aromatic aa.tyrosine"		"GO:0030170;GO:0019752;GO:0016831"	"pyridoxal phosphate binding;carboxylic acid metabolic process;carboxy-lyase activity"	DDC1	"Cre01.g028423.t1.1;g649.t1;g649.t1;Cre01.g028423.t1.1"		
+Cre01.g001671			Mitochondrion						
+Cre01.g017951			Chloroplast	GO:0005515	"protein binding"		"g423.t1;Cre01.g017950.t1.2"		
+Cre01.g047650			"Secretory pathway"				"Cre01.g047650.t1.1;g1059.t1"		
+Cre01.g020650			Chloroplast				g478.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre01.g028650			"Secretory pathway"				"g654.t1;Cre01.g028650.t1.1;g654.t1;Cre01.g028650.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre01.g044300			Mitochondrion				"g991.t1;Cre01.g044300.t1.1;g991.t1;Cre01.g044300.t1.1"		
+Cre01.g050316	GMM:29.2.1.1.1.2.3	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L3"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"				
+Cre01.g029600	"GMM:33.99;GMM:30.3"	"development.unspecified;signalling.calcium"	Chloroplast				"Cre01.g029600.t1.1;g673.t1;g673.t1;Cre01.g029600.t1.1"		
+Cre01.g004200							"Cre01.g004200.t1.1;g104.t1;Cre01.g004200.t1.1;g104.t1"		
+Cre01.g002201							"Cre01.g002201.t1.1;g52.t2"		
+Cre01.g045752									
+Cre01.g033071									
+Cre01.g012600	GMM:4.1.2	"glycolysis.cytosolic branch.phosphoglucomutase (PGM)"	Chloroplast	"GO:0071704;GO:0016868;GO:0005975"	"organic substance metabolic process;intramolecular transferase activity, phosphotransferases;carbohydrate metabolic process"	GPM2	"GPM2;g312.t1;g312.t1;GPM2"	"PGM2;PGM2"	"Converts D-glucose 1-phosphate into D-glucose 6-phosphate, and participates in both the breakdown and synthesis of glucose; the reaction mechanism involves phosphoryl transfer from a phosphoserine to the substrate to create a biophosphorylated sugar, followed by a phosphoryl transfer from the substrate back to the enzyme; Note that PGM = phosphogluco mutase and GPM = phosphoglycerate mutase;Converts D-glucose 1-phosphate into D-glucose 6-phosphate, and participates in both the breakdown and synthesis of glucose; the reaction mechanism involves phosphoryl transfer from a phosphoserine to the substrate to create a biophosphorylated sugar, followed by a phosphoryl transfer from the substrate back to the enzyme; Note that PGM = phosphogluco mutase and GPM = phosphoglycerate mutase"
+Cre01.g001950			"Secretory pathway"				"g45.t1;Cre01.g001950.t1.1"		
+Cre01.g006250	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"							
+Cre01.g024900	GMM:27.4	"RNA.RNA binding"		"GO:0017069;GO:0003676;GO:0000398"	"snRNA binding;nucleic acid binding;mRNA splicing, via spliceosome"		"g572.t1;g572.t1"		
+Cre01.g032300	GMM:28.99	DNA.unspecified		GO:0003676	"nucleic acid binding"	GBP1	"GBP1;g731.t1;Cre01.g032300.t1.1;Cre01.g032300.t1.1;GBP1;g731.t1;g731.t1;GBP1;Cre01.g032300.t1.1;g731.t1;GBP1;Cre01.g032300.t1.1;g731.t1;GBP1;Cre01.g032300.t1.1"	"GBP1;GBP1;GBP1;GBP1;GBP1"	"contains two RRM domains and a region rich in Gly, Ala Arg; binds yeast telomeres and substitutes yeast homolg Rlf6, allowing recruitment of Rap1p; dimeric GBP1 has a strong preference for ssDNA, while monomer also binds cognate RNA; binding does not require formation of a G-quadruplex;contains two RRM domains and a region rich in Gly, Ala Arg; binds yeast telomeres and substitutes yeast homolg Rlf6, allowing recruitment of Rap1p; dimeric GBP1 has a strong preference for ssDNA, while monomer also binds cognate RNA; binding does not require formation of a G-quadruplex;contains two RRM domains and a region rich in Gly, Ala Arg; binds yeast telomeres and substitutes yeast homolg Rlf6, allowing recruitment of Rap1p; dimeric GBP1 has a strong preference for ssDNA, while monomer also binds cognate RNA; binding does not require formation of a G-quadruplex;contains two RRM domains and a region rich in Gly, Ala Arg; binds yeast telomeres and substitutes yeast homolg Rlf6, allowing recruitment of Rap1p; dimeric GBP1 has a strong preference for ssDNA, while monomer also binds cognate RNA; binding does not require formation of a G-quadruplex;contains two RRM domains and a region rich in Gly, Ala Arg; binds yeast telomeres and substitutes yeast homolg Rlf6, allowing recruitment of Rap1p; dimeric GBP1 has a strong preference for ssDNA, while monomer also binds cognate RNA; binding does not require formation of a G-quadruplex"
+Cre01.g049200							"g1092.t1;g1092.t1;g1092.t1;g1092.t1;g1092.t1"		
+Cre01.g003463	GMM:28.2	DNA.repair		"GO:0030983;GO:0006298;GO:0005524"	"mismatched DNA binding;mismatch repair;ATP binding"		g80.t1		
+Cre01.g009150			"Secretory pathway"				g231.t1		
+Cre01.g012550							"g311.t1;g311.t1"		
+Cre01.g055440						CSR8	"Cre23.g768100.t1.1;g1232.t1;CSR8"		
+Cre01.g019750	GMM:17.3.3	"hormone metabolism.brassinosteroid.induced-regulated-responsive-activated"		"GO:0006265;GO:0005524;GO:0003918;GO:0003677"	"DNA topological change;ATP binding;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA binding"		g461.t1		
+Cre01.g005126						CSB3			
+Cre01.g027500			Chloroplast	GO:0005515	"protein binding"		"g628.t1;g628.t1"		
+Cre01.g016800				"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g401.t1;g401.t1"		
+Cre01.g035550	GMM:28.2	DNA.repair	Mitochondrion				g801.t1		
+Cre01.g045000			"Secretory pathway"			PRL9	"PRL9;g1005.t1;Cre01.g045000.t1.1"		"CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein"
+Cre01.g035350	GMM:11.8.7	"lipid metabolism.exotics (steroids, squalene etc).trans-2-enoyl-CoA reductase (NADPH)"		"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"		"g797.t1;Cre01.g035350.t1.1;g797.t1;Cre01.g035350.t1.1;Cre01.g035350.t1.1;g797.t1;Cre01.g035350.t1.1;g797.t1;Cre01.g035350.t1.1;g797.t1"		
+Cre01.g037400	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN19-1	"g838.t1;CYN3;CYN19-1;CYN19-1;CYN3;g838.t1;CYN19-1;g838.t1;CYN3"	"CYN19A;CYN19A;CYN19A"	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type similar to At2g16600 (AtCYP19-1) and other cytosolic cyclophilins; has homology to mRNA splicing factor SYF2;Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type similar to At2g16600 (AtCYP19-1) and other cytosolic cyclophilins; has homology to mRNA splicing factor SYF2;Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type similar to At2g16600 (AtCYP19-1) and other cytosolic cyclophilins; has homology to mRNA splicing factor SYF2"
+Cre01.g023250							"g536.t1;g536.t1"		
+Cre01.g039600			Mitochondrion				g884.t1		
+Cre01.g026950			"Secretory pathway"						
+Cre01.g006050						LF3	"g145.t1;LF3;g145.t1;LF3"	"LF3;LF3"	"LF3 is involved in controlling flagellar length. Null mutants (ulf1 and ulf3) have unequal length flagella; hypomorphic alleles have long flagella. gi:37778331;LF3 is involved in controlling flagellar length. Null mutants (ulf1 and ulf3) have unequal length flagella; hypomorphic alleles have long flagella. gi:37778331"
+Cre01.g005400	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"					"SDR1;g130.t1;SDR1;g130.t1"		"possibly a 3-oxoacyl-[acyl-carrier-protein] reductase;possibly a 3-oxoacyl-[acyl-carrier-protein] reductase"
+Cre01.g000150	GMM:34.12	transport.metal	Chloroplast	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	ZRT2	"CrZIP2;Cre01.g000150.t1.1;g6.t1;Cre01.g000150.t1.1;g6.t1;CrZIP2;CrZIP2;Cre01.g000150.t1.1;g6.t1;g6.t1;Cre01.g000150.t1.1;CrZIP2"	"ZRT2;ZRT2;ZRT2;ZRT2"	"Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation;Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation;Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation;Similarity to ZIP Subfamily I; expression specific to Zn deficiency; constitutive expression in a CRR1_cys mutant coincident with zinc accumulation"
+Cre01.g003000							"g71.t1;g71.t1"		
+Cre01.g033000						FAP334	"g745.t1;Cre01.g033000.t1.1"	FAP334	
+Cre01.g031900	"GMM:35.1.1;GMM:34.16"	"not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"				"g722.t1;g722.t1;g722.t1;g722.t1"		
+Cre01.g019100	"GMM:26.1;GMM:13.2.5.2;GMM:13.1.5.1.1"	"misc.misc2;amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase"		"GO:0055114;GO:0051287;GO:0016616;GO:0008152"	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process"		"g448.t1;Cre01.g019100.t1.1;Cre01.g019100.t1.1;g448.t1"	"HPR2;HPR2"	"Takes part in the cytosolic bypass of photorespiration as the compensatory pathway of HPR1 for the reduction of hydroxypyruvate;Takes part in the cytosolic bypass of photorespiration as the compensatory pathway of HPR1 for the reduction of hydroxypyruvate"
+Cre01.g019900			Mitochondrion			FAP384	"Cre01.g019900.t1.1;g463.t1;Cre01.g019900.t1.1;g463.t1"	"FAP384;FAP384"	
+Cre01.g023450			Chloroplast				"Cre01.g023450.t1.1;g541.t1;Cre01.g023450.t1.1;g541.t1;g541.t1;Cre01.g023450.t1.1;Cre01.g023450.t1.1;g541.t1"		
+Cre01.g035800				"GO:0016021;GO:0006813;GO:0005242"	"integral component of membrane;potassium ion transport;inward rectifier potassium channel activity"	IRK2	"Cre01.g035800.t1.1;IRK2;g806.t1"	IRK2	"putative inward rectifier K+ channel"
+Cre01.g053500	GMM:16.1.1	"secondary metabolism.isoprenoids.non-mevalonate pathway"		GO:0003824	"catalytic activity"		"g1183.t1;g1183.t1"		
+Cre01.g027050							"g619.t1;g619.t1;g619.t1;g619.t1"		
+Cre01.g049826			Chloroplast			PHC59	"PHC59;g1103.t1;PHC59;g1103.t1;g1103.t1;PHC59;PHC59;g1103.t1;PHC59;g1103.t1"		"Has pherophorin; Null-allele passenger mutation was isolated;Has pherophorin; Null-allele passenger mutation was isolated;Has pherophorin; Null-allele passenger mutation was isolated;Has pherophorin; Null-allele passenger mutation was isolated;Has pherophorin; Null-allele passenger mutation was isolated"
+Cre01.g053250	GMM:33.99	development.unspecified	Mitochondrion	GO:0006355	"regulation of transcription, DNA-templated"				
+Cre01.g070202							"Cre23.g765900.t1.1;Cre23.g765900.t1.2;g1286.t1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre01.g022600			"Secretory pathway"	"GO:0016021;GO:0008146"	"integral component of membrane;sulfotransferase activity"	CGL13	g521.t2	CGL13	
+Cre01.g029250	GMM:13.1.6.4	"amino acid metabolism.synthesis.aromatic aa.tyrosine"	Mitochondrion	"GO:0055114;GO:0016714;GO:0009072;GO:0005506;GO:0004497"	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced pteridine as one donor, and incorporation of one atom of oxygen;aromatic amino acid family metabolic process;iron ion binding;monooxygenase activity"	AAH1	"g666.t1;Cre01.g029250.t1.1;AAH1"	AAH1	"related to phenylalanine hydroxylase and tryptophan monooxygenase, not usually found in angiosperms"
+Cre01.g032700			Chloroplast	"GO:0051156;GO:0006096;GO:0005524;GO:0004340"	"glucose 6-phosphate metabolic process;glycolytic process;ATP binding;glucokinase activity"	GLK1	"Cre01.g032700.t1.1;g739.t1;g739.t1;Cre01.g032700.t1.1;Cre01.g032700.t1.1;g739.t1"	"GLK1;GLK1;GLK1"	"Glucokinase; EC:2.7.1.2; Glucose Kinase; similar to Nostoc glucokinase (GenBank BAB74672); Target-P weakly predicts an organelle target sequence;Glucokinase; EC:2.7.1.2; Glucose Kinase; similar to Nostoc glucokinase (GenBank BAB74672); Target-P weakly predicts an organelle target sequence;Glucokinase; EC:2.7.1.2; Glucose Kinase; similar to Nostoc glucokinase (GenBank BAB74672); Target-P weakly predicts an organelle target sequence"
+Cre01.g051137							g1132.t1		
+Cre01.g034100	"GMM:29.5.7;GMM:29.5"	"protein.degradation.metalloprotease;protein.degradation"	Chloroplast				"g769.t2;g769.t2;g769.t2;g769.t2;g769.t2"		
+Cre01.g008800			"Secretory pathway"				g221.t1		
+Cre01.g034400	GMM:7.1.2	"OPP.oxidative PP.6-phosphogluconolactonase"	Chloroplast	GO:0005975	"carbohydrate metabolic process"	PGL1	"g777.t1;PGL1;g777.t1;PGL1;PGL1;g777.t1;PGL1;g777.t1"	"PGL1;PGL1;PGL1;PGL1"	"belongs to pentose phosphate pathway; probably chloroplast-targeted;belongs to pentose phosphate pathway; probably chloroplast-targeted;belongs to pentose phosphate pathway; probably chloroplast-targeted;belongs to pentose phosphate pathway; probably chloroplast-targeted"
+Cre01.g001550	GMM:29.2.3	protein.synthesis.initiation	Chloroplast	"GO:0006413;GO:0003743"	"translational initiation;translation initiation factor activity"	TIF3	"TIF3;TIF3A;g34.t1;TIF3;TIF3A;g34.t1;g34.t1;TIF3A;TIF3;TIF3;TIF3A;g34.t1;TIF3A;g34.t1;TIF3"	"CIF3;CIF3;CIF3;CIF3;CIF3"	"Bacterial-type IF3; Ortholog of Arabidopsis SVR9 that suppresses FtsH-dependent variegation;Bacterial-type IF3; Ortholog of Arabidopsis SVR9 that suppresses FtsH-dependent variegation;Bacterial-type IF3; Ortholog of Arabidopsis SVR9 that suppresses FtsH-dependent variegation;Bacterial-type IF3; Ortholog of Arabidopsis SVR9 that suppresses FtsH-dependent variegation;Bacterial-type IF3; Ortholog of Arabidopsis SVR9 that suppresses FtsH-dependent variegation"
+Cre01.g042050	"GMM:29.4;GMM:27.3.67"	"protein.postranslational modification;RNA.regulation of transcription.putative transcription regulator"	Chloroplast	"GO:0055114;GO:0033743;GO:0030091;GO:0016671;GO:0006979"	"oxidation-reduction process;peptide-methionine (R)-S-oxide reductase activity;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;response to oxidative stress"		"Cre01.g042050.t1.1;g943.t1"	MSRB3	"Similar to Selenoprotein R, but not a selenoprotein"
+Cre01.g003450			Chloroplast				"g79.t2;g79.t2"		
+Cre01.g055412							g1225.t1		
+Cre01.g012900	"GMM:29.2.4;GMM:13.99"	"protein.synthesis.elongation;amino acid metabolism.misc"	Mitochondrion				"g318.t1;g318.t1;g318.t1"		
+Cre01.g041426									
+Cre01.g005651							"g137.t1;g137.t1"		
+Cre01.g034550						FAP109	"Cre01.g034550.t1.1;g780.t1;g780.t1;Cre01.g034550.t1.1"	"FAP109;FAP109"	"Found in the flagellar proteome;Found in the flagellar proteome"
+Cre01.g051900	GMM:9.5	"mitochondrial electron transport / ATP synthesis.cytochrome c reductase"	Mitochondrion	"GO:0055114;GO:0051537;GO:0016679;GO:0016491;GO:0008121"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity, acting on diphenols and related substances as donors;oxidoreductase activity;ubiquinol-cytochrome-c reductase activity"	RIP1	"ISP1;g1151.t1;Cre01.g051900.t1.1;Cre01.g051900.t1.1;g1151.t1;ISP1"	"RIP1;RIP1"	
+Cre01.g015750			Mitochondrion				"g378.t1;Cre01.g015750.t1.1;g378.t1;Cre01.g015750.t1.1;g378.t1;Cre01.g015750.t1.1"		
+Cre01.g024000			Mitochondrion						
+Cre01.g060712	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"Cre23.g767100.t1.1;g1258.t1"		
+Cre01.g027764	"GMM:34.99;GMM:34.16"	"transport.misc;transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"		"g635.t1;Cre01.g027764.t1.1;g635.t1;Cre01.g027764.t1.1;g635.t1;Cre01.g027764.t1.1"		
+Cre01.g054600							g1205.t1		
+Cre01.g046052	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g1032.t1;g1032.t1"		
+Cre01.g026400	GMM:34.7	transport.phosphate	"Secretory pathway"	GO:0016021	"integral component of membrane"	EXS	"g606.t1;g606.t1;g606.t1"	"EXS1;EXS1;EXS1"	"Involved in the retention of luminal endoplasmic reticulum proteins, affecting glycoprotein processing in the Golgi;Involved in the retention of luminal endoplasmic reticulum proteins, affecting glycoprotein processing in the Golgi;Involved in the retention of luminal endoplasmic reticulum proteins, affecting glycoprotein processing in the Golgi"
+Cre01.g007550			"Secretory pathway"				"g195.t1;GT90F1;GT90-1;GT90F1;g195.t1;GT90-1"		
+Cre01.g007100			"Secretory pathway"				g186.t1		
+Cre01.g013150			Chloroplast			CGLD35	"g323.t1;Cre01.g013150.t1.1"	CGLD35	
+Cre01.g068012			Mitochondrion			PPR5	"Cre23.g766200.t1.2;PPR5;Cre23.g766200.t1.1;g1280.t1;FAP330"	PPR5	"Found in the flagellar proteome"
+Cre01.g031700							"FKM1;g716.t3;FKM1;g716.t3"		"FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces"
+Cre01.g049500	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"		"GO:0016020;GO:0005507;GO:0004129"	"membrane;copper ion binding;cytochrome-c oxidase activity"	COX2B	"g1098.t1;Cre01.g049500.t1.1"	COX2B	"In C. reinhardtii, subunit II is nuclear encoded with the N-terminal and C-terminal parts of the protein encoded by separate genes - N-terminus by COX2A and C-terminus by COX2B; respiratory complex IV; terminal oxidase of respiratory electron transport chain; heme-protein complex [PMID: 11094061; PMID: 11675593]"
+Cre01.g043500				"GO:0034227;GO:0002098;GO:0000049"	"tRNA thio-modification;tRNA wobble uridine modification;tRNA binding"		"g973.t1;g973.t1;g973.t1;g973.t1"		
+Cre01.g008700							"Cre01.g008700.t1.1;g219.t1"		
+Cre01.g022400			"Secretory pathway"				"g516.t1;g516.t1"		
+Cre01.g017550			"Secretory pathway"	GO:0005515	"protein binding"		"g415.t1;g415.t1"		
+Cre01.g055316			"Secretory pathway"				"g1220.t1;Cre01.g055314.t2.1"		
+Cre01.g047218			Chloroplast				"g1049.t1;Cre01.g047218.t1.1"		
+Cre01.g035900							g808.t1		
+Cre01.g013700	"GMM:34.2;GMM:34.18"	"transport.sugars;transport.unspecified anions"		"GO:0055085;GO:0005741"	"transmembrane transport;mitochondrial outer membrane"	VDAC1	"g334.t1;ASC1"	VDAC1	"Outer mitochondrial membrane protein porin."
+Cre01.g014650	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH5	"g355.t1;P4H5;Cre01.g014650.t1.1;PHX2;g355.t1;Cre01.g014650.t1.1;P4H5;PHX2;g355.t1;P4H5;Cre01.g014650.t1.1;PHX2;PHX2;Cre01.g014650.t1.1;g355.t1;P4H5"	"PFH5;PFH5;PFH5;PFH5"	"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. [PMID: 17220203] as v2 C_280045; contains C-terminal ShK domain;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. [PMID: 17220203] as v2 C_280045; contains C-terminal ShK domain;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. [PMID: 17220203] as v2 C_280045; contains C-terminal ShK domain;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. [PMID: 17220203] as v2 C_280045; contains C-terminal ShK domain"
+Cre01.g044600	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"					"g997.t1;Cre01.g044600.t1.1;g997.t1;Cre01.g044600.t1.1;g997.t1;Cre01.g044600.t1.1;Cre01.g044600.t1.1;g997.t1;g997.t1;Cre01.g044600.t1.1"		
+Cre01.g016651									
+Cre01.g028101			Mitochondrion				"Cre01.g028100.t1.2;g642.t1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre01.g006642			Chloroplast						
+Cre01.g000850			Chloroplast			CPLD38	"Cre01.g000850.t1.1;g20.t1"	CPLD38	"Conserved in the Plant Lineage and Diatoms; interacts with CPLD49 in the thylakoid membrane"
+Cre01.g040701			"Secretory pathway"				"g912.t1;Cre01.g040700.t1.3"		
+Cre01.g025650			"Secretory pathway"				"g588.t1;Cre01.g025650.t1.1"		
+Cre01.g036800	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN9-1	"KIN9-1;g826.t1;KIN9-1;g826.t1"	"KIN9A;KIN9A"	"kinesin-9 family protein (peptide is shared with several kinesins);kinesin-9 family protein (peptide is shared with several kinesins)"
+Cre01.g050608							"g1119.t2;g1119.t2;g1119.t2;g1119.t2"		
+Cre01.g040850							"g915.t2;Cre01.g040850.t1.1;g915.t2;Cre01.g040850.t1.1;Cre01.g040850.t1.1;g915.t2;g915.t2;Cre01.g040850.t1.1;Cre01.g040850.t1.1;g915.t2;g915.t2;Cre01.g040850.t1.1"		
+Cre01.g032750			Chloroplast				"g740.t1;Cre01.g032750.t1.1;Cre01.g032750.t1.1;g740.t1"		
+Cre01.g046150	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	"GO:0030145;GO:0004177"	"manganese ion binding;aminopeptidase activity"		"g1033.t1;XPA1"	ICP55	"Xaa-Pro aminopeptidase"
+Cre01.g030850	"GMM:29.5.11.20;GMM:29.5"	"protein.degradation.ubiquitin.proteasom;protein.degradation"		"GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175"	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA4	"POA4;g698.t1;Cre01.g030850.t1.1"	POA4	"20S proteasome alpha subunit D (type 7)"
+Cre01.g010650			"Secretory pathway"				"g265.t1;Cre01.g010650.t1.1"		
+Cre01.g011250							g281.t1		
+Cre01.g006850							"g179.t1;Cre01.g006850.t1.1"		
+Cre01.g025850	GMM:3.4.4	"minor CHO metabolism.myo-inositol.myo-inositol oxygenases"	Mitochondrion	"GO:0055114;GO:0050113;GO:0019310;GO:0005737;GO:0005506"	"oxidation-reduction process;inositol oxygenase activity;inositol catabolic process;cytoplasm;iron ion binding"	INO	"g594.t1;INO;Cre01.g025850.t1.1;g594.t1;Cre01.g025850.t1.1;INO;g594.t1;INO;Cre01.g025850.t1.1;INO;Cre01.g025850.t1.1;g594.t1"		
+Cre01.g010201			"Secretory pathway"				"g256.t1;g256.t1"		
+Cre01.g047200			Chloroplast				g1048.t2		
+Cre01.g051800	GMM:13.1.6.2	"amino acid metabolism.synthesis.aromatic aa.phenylalanine and tyrosine"	Chloroplast	"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"	AST2	"AST2;g1148.t1;AAT;AAT;AST2;g1148.t1;AST2;g1148.t1;AAT"	"AST2;AST2;AST2"	"Transaminase A; Target-P gives weak prediction of mitochondrial targeting;Transaminase A; Target-P gives weak prediction of mitochondrial targeting;Transaminase A; Target-P gives weak prediction of mitochondrial targeting"
+Cre01.g052850	"GMM:31.3;GMM:30.6"	"cell.cycle;signalling.MAP kinases"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g1169.t1		
+Cre01.g058156									
+Cre01.g038300			Mitochondrion	"GO:0006355;GO:0005739;GO:0003690"	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"		"g857.t1;Cre01.g038300.t1.1"		
+Cre01.g054100	GMM:30.2.11	"signalling.receptor kinases.leucine rich repeat XI"	Mitochondrion	GO:0005515	"protein binding"		g1195.t1		
+Cre01.g031400							"Cre01.g031400.t1.1;g710.t1"		
+Cre01.g055550	"GMM:9.7;GMM:29.8"	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase;protein.assembly and cofactor ligation"	Mitochondrion	GO:0005507	"copper ion binding"	COX11	"g1243.t1;COX11;Cre01.g055550.t1.1"	COX11	"protein involved in assembly of copper in mitochondrial cytochrome c oxidase, similar to yeast COX11"
+Cre01.g044100	"GMM:2.2.2.1.2;GMM:2.2.2.1"	"major CHO metabolism.degradation.starch.starch cleavage.beta amylase;major CHO metabolism.degradation.starch.starch cleavage"		"GO:0016161;GO:0000272"	"beta-amylase activity;polysaccharide catabolic process"	AMB3	"g986.t1;AMYB3;AMB3;Cre01.g044100.t1.1"	AMB3	"Belongs to glycoside hydrolase family 14; alpha 1,4-glucan maltohydrolase (EC 3.2.1.2), hydrolyzes the alpha 1,4-glucosidic linkages of starch from the nonreducing ends. Arabidopsis genes use BAM root"
+Cre01.g009550	GMM:26.24	"misc.GCN5-related N-acetyltransferase"	Mitochondrion	GO:0008080	"N-acetyltransferase activity"		"NAT6;g240.t1;g240.t1;NAT6"		"Related to GCN5;Related to GCN5"
+Cre01.g029350				"GO:0022900;GO:0016651"	"electron transport chain;oxidoreductase activity, acting on NAD(P)H"	FAP297	"g668.t1;C1d-87;Cre01.g029350.t1.1"	FAP297	"Found in the flagellar proteome; Contains WD40 repeats; Together with FAP221, FAP46, FAP54, FAP74 and calmodulin, form a single complex in the C1d projection;"
+Cre01.g023900			Mitochondrion						
+Cre01.g006576			Mitochondrion						
+Cre01.g019600			Chloroplast				"Cre01.g019600.t1.1;g458.t1"		
+Cre01.g038600	GMM:11.2.3	"lipid metabolism.FA desaturation.omega 3 desaturase"	Chloroplast	"GO:0055114;GO:0016717;GO:0006629"	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water;lipid metabolic process"	FAD7	"g864.t1;Cre01.g038600.t1.1;Cre01.g038600.t1.1;g864.t1;g864.t1;Cre01.g038600.t1.1;g864.t1;Cre01.g038600.t1.1;Cre01.g038600.t1.1;g864.t1;g864.t1;Cre01.g038600.t1.1"	"FAD7;FAD7;FAD7;FAD7;FAD7;FAD7"	"Chloroplast glycerolipid omega-3-fatty acid desaturase;Chloroplast glycerolipid omega-3-fatty acid desaturase;Chloroplast glycerolipid omega-3-fatty acid desaturase;Chloroplast glycerolipid omega-3-fatty acid desaturase;Chloroplast glycerolipid omega-3-fatty acid desaturase;Chloroplast glycerolipid omega-3-fatty acid desaturase"
+Cre01.g055477			Mitochondrion						
+Cre01.g012700	GMM:34.15	transport.potassium		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	KCN6	"g314.t1;KCN6;Cre01.g012700.t1.1;Cre01.g012700.t1.1;g314.t1;KCN6"		"part of a cluster of 4 related potassium channels;part of a cluster of 4 related potassium channels"
+Cre01.g067647			Chloroplast				g1279.t1		
+Cre01.g010350	"GMM:18.11;GMM:18;GMM:11.5"	"Co-factor and vitamine metabolism.lipoic acid;Co-factor and vitamine metabolism;lipid metabolism.glycerol metabolism"	"Secretory pathway"	GO:0006464	"cellular protein modification process"	LIPB	"Cre01.g010350.t1.1;LPL1;g260.t1"	LIPB1	"lipoate protein ligase, lipoate biosynthesis protein"
+Cre01.g020800			Mitochondrion				"Cre01.g020800.t1.1;g483.t1;Cre01.g020800.t1.1;g483.t1"		
+Cre01.g008450				"GO:0007067;GO:0000775"	"mitotic nuclear division;chromosome, centromeric region"		"Cre01.g008450.t1.1;NUF2;g214.t1"		"ts-lethal mutation block is S/M (PMID 29743196)"
+Cre01.g022250	GMM:29.2.1.1.1.2.3	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L3"	Mitochondrion	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPL3	"g513.t1;MRPL3;uL3m"	MRPL3	
+Cre01.g009850							"Cre01.g009850.t1.1;g249.t1;Cre01.g009850.t1.1;g249.t1"		
+Cre01.g001200	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	MAPKKK14	"MAPKKK14;g27.t1;g27.t1;MAPKKK14"		"Mitogen activated protein kinase kinase kinase;Mitogen activated protein kinase kinase kinase"
+Cre01.g045903	GMM:11.4	"lipid metabolism.TAG synthesis"	Chloroplast	"GO:0019432;GO:0008374;GO:0004144"	"triglyceride biosynthetic process;O-acyltransferase activity;diacylglycerol O-acyltransferase activity"	DGAT1		DGAT1	"Type 1 DGAT; Catalyzes the reaction: acyl-CoA + 1,2-diacylglycerol = CoA + triacylglycerol."
+Cre01.g024800	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g570.t1;g570.t1"		
+Cre01.g050300							g1111.t1		
+Cre01.g034150				"GO:0016021;GO:0015299;GO:0006812"	"integral component of membrane;solute:proton antiporter activity;cation transport"		"g770.t1;g770.t1"		
+Cre01.g042550			"Secretory pathway"	GO:0072546	"ER membrane protein complex"		"g953.t1;g953.t1"		
+Cre01.g047229							"g1050.t1;Cre01.g047229.t1.1;Cre01.g047229.t1.1;g1050.t1;Cre01.g047229.t1.1;g1050.t1"		
+Cre01.g011150	GMM:27.3.6	"RNA.regulation of transcription.basic helix-loop-helix family (bHLH)"		GO:0046983	"protein dimerization activity"		g279.t1		
+Cre01.g002861	GMM:26.16	misc.myrosinases-lectin-jacalin							
+Cre01.g014751			Chloroplast				g357.t1		
+Cre01.g012100			"Secretory pathway"	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS4	"g299.t1;ARS4;g299.t1;ARS4;g299.t1;ARS4;g299.t1;ARS4"	"ARS4;ARS4;ARS4;ARS4"	
+Cre01.g036500			"Secretory pathway;Chloroplast"				"g820.t1;Cre01.g036500.t1.1"		
+Cre01.g007901	GMM:34.99	transport.misc	"Mitochondrion;Secretory pathway"	"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"		"g203.t2;g203.t2;g203.t2;g203.t2"		
+Cre01.g024350	GMM:28.99	DNA.unspecified	"Secretory pathway"	GO:0016021	"integral component of membrane"		"g563.t1;Cre01.g024350.t1.1"		
+Cre01.g065457							"Cre23.g766450.t1.1;g1271.t1;Cre23.g766450.t1.2"		
+Cre01.g015300			Mitochondrion	GO:0055114	"oxidation-reduction process"		g369.t1		
+Cre01.g004600	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"				RWP12	"g112.t1;RWP12;g112.t1;RWP12;g112.t1;RWP12;RWP12;g112.t1;g112.t1;RWP12;g112.t1;RWP12;RWP12;g112.t1;g112.t1;RWP12;RWP12;g112.t1;RWP12;g112.t1;g112.t1;RWP12;RWP12;g112.t1;g112.t1;RWP12;g112.t1;RWP12;RWP12;g112.t1"	"RWP12;RWP12;RWP12;RWP12;RWP12;RWP12;RWP12;RWP12;RWP12;RWP12;RWP12;RWP12;RWP12;RWP12;RWP12"	"putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor"
+Cre01.g025200	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP4	"MMP4;Cre01.g025200.t1.1;g579.t1;g579.t1;Cre01.g025200.t1.1;MMP4"	"MMP4;MMP4"	"Conserved organelle protein with lipase active site;Conserved organelle protein with lipase active site"
+Cre01.g038376									
+Cre01.g009250	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006265;GO:0005524;GO:0003918;GO:0003677"	"DNA topological change;ATP binding;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA binding"	TOP2	"DIV19;TOP2;g233.t1;g233.t1;DIV19;TOP2;TOP2;DIV19;g233.t1;TOP2;DIV19;g233.t1;TOP2;DIV19;g233.t1"	"TOP2;TOP2;TOP2;TOP2;TOP2"	"Similar to DNA topoisomerase II in Arabidopsis, TOP2 or AT3G23890. ts-lethal mutations block in S/M (PMID 25336509);Similar to DNA topoisomerase II in Arabidopsis, TOP2 or AT3G23890. ts-lethal mutations block in S/M (PMID 25336509);Similar to DNA topoisomerase II in Arabidopsis, TOP2 or AT3G23890. ts-lethal mutations block in S/M (PMID 25336509);Similar to DNA topoisomerase II in Arabidopsis, TOP2 or AT3G23890. ts-lethal mutations block in S/M (PMID 25336509);Similar to DNA topoisomerase II in Arabidopsis, TOP2 or AT3G23890. ts-lethal mutations block in S/M (PMID 25336509)"
+Cre01.g013900			Mitochondrion				"g340.t2;g340.t2;g340.t2"		
+Cre01.g021750				GO:0006355	"regulation of transcription, DNA-templated"		"Cre01.g021750.t1.1;g503.t1"		
+Cre01.g004850			Mitochondrion	"GO:0016787;GO:0006351;GO:0005634;GO:0005524;GO:0003677"	"hydrolase activity;transcription, DNA-templated;nucleus;ATP binding;DNA binding"	TXE1	"TXE1;g117.t1"		"Transcription elongation factor, TFIIS/CRSP7"
+Cre01.g021300			"Secretory pathway"				"g494.t1;Cre01.g021300.t1.1"		
+Cre01.g050750							g1124.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre01.g030250	GMM:23.2	"nucleotide metabolism.degradation"	Mitochondrion	GO:0046854	"phosphatidylinositol phosphorylation"		"g686.t1;Cre01.g030250.t1.1"		
+Cre01.g021600	GMM:27.1.2	"RNA.processing.RNA helicase"		"GO:0005524;GO:0005515;GO:0003676"	"ATP binding;protein binding;nucleic acid binding"	HEL1	"g500.t1;HEL1;Cre01.g021600.t1.1;Cre01.g021600.t1.1;HEL1;g500.t1"		
+Cre01.g048600			Mitochondrion				"g1079.t1;g1079.t1;g1079.t1"		
+Cre01.g066552	GMM:21.1	redox.thioredoxin	Chloroplast	"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"		"Cre23.g766300.t1.1;g1274.t1;TRXf1;Cre23.g766300.t1.2"	TRXF1	
+Cre01.g026650	"GMM:18.1;GMM:18"	"Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism"	"Secretory pathway"				"Cre01.g026650.t1.1;g611.t1;Cre01.g026650.t1.1;g611.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre01.g050400	GMM:29.3.2	protein.targeting.mitochondria	Chloroplast			TIM22C	"g1114.t1;Cre01.g050400.t1.1"	TIM22C	"Similar to mitochondrial import inner membrane translocase TIM22, belongs to theTIM17/TIM22/TIM23 family. Four TIM22-related proteins are present in Arabidopsis, three in Chlamydomonas"
+Cre01.g005500							"g132.t1;Cre01.g005500.t1.1;g132.t1;Cre01.g005500.t1.1;Cre01.g005500.t1.1;g132.t1"		
+Cre01.g002350	"GMM:29.5.11.2;GMM:17.2.2"	"protein.degradation.ubiquitin.E1;hormone metabolism.auxin.signal transduction"		GO:0008641	"small protein activating enzyme activity"		g57.t1	NAE1	
+Cre01.g035250	GMM:22.1.5	"polyamine metabolism.synthesis.N-carbamoylputrescine amidohydrolase"	Mitochondrion				"Cre01.g035250.t1.1;g795.t1"		
+Cre01.g023100	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		"GO:0006355;GO:0003700"	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		g533.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g041256	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion				"Cre01.g041256.t1.1;g923.t1;g923.t1;Cre01.g041256.t1.1;g923.t1;Cre01.g041256.t1.1;g923.t1;Cre01.g041256.t1.1;Cre01.g041256.t1.1;g923.t1;Cre01.g041256.t1.1;g923.t1;g923.t1;Cre01.g041256.t1.1;g923.t1;Cre01.g041256.t1.1"		
+Cre01.g039500	"GMM:33.99;GMM:3.5"	"development.unspecified;minor CHO metabolism.others"		GO:0005515	"protein binding"	FAP89	"Cre01.g039500.t1.1;g882.t1;g882.t1;Cre01.g039500.t1.1;g882.t1;Cre01.g039500.t1.1;g882.t1;Cre01.g039500.t1.1;Cre01.g039500.t1.1;g882.t1;Cre01.g039500.t1.1;g882.t1"	"FAP89;FAP89;FAP89;FAP89;FAP89;FAP89"	"Conserved uncharacterized Flagellar Associated Protein, similar to Notchless; found in the flagellar proteome [PMID: 15998802];Conserved uncharacterized Flagellar Associated Protein, similar to Notchless; found in the flagellar proteome [PMID: 15998802];Conserved uncharacterized Flagellar Associated Protein, similar to Notchless; found in the flagellar proteome [PMID: 15998802];Conserved uncharacterized Flagellar Associated Protein, similar to Notchless; found in the flagellar proteome [PMID: 15998802];Conserved uncharacterized Flagellar Associated Protein, similar to Notchless; found in the flagellar proteome [PMID: 15998802];Conserved uncharacterized Flagellar Associated Protein, similar to Notchless; found in the flagellar proteome [PMID: 15998802]"
+Cre01.g043050			Mitochondrion	GO:0016021	"integral component of membrane"	SNR2	"Cre01.g043050.t1.1;SNR2;g963.t1;g963.t1;Cre01.g043050.t1.1;SNR2"		
+Cre01.g007050			Chloroplast			CPLD11	"g184.t1;Cre01.g007050.t1.1"	CPLD11	"similar to hypothetical protein from cyanobacteria and plants"
+Cre01.g020500			"Secretory pathway"				"Cre01.g020500.t1.1;g476.t1"		
+Cre01.g026016									
+Cre01.g025900	"GMM:31.2;GMM:20.2.5"	"cell.division;stress.abiotic.light"					"Cre01.g025900.t1.1;g595.t1"		
+Cre01.g042850	GMM:21.2	"redox.ascorbate and glutathione"	"Secretory pathway"				"g959.t1;Cre01.g042850.t1.1"		
+Cre01.g014350	GMM:21.5	redox.peroxiredoxin	Chloroplast	"GO:0055114;GO:0016491;GO:0016209"	"oxidation-reduction process;oxidoreductase activity;antioxidant activity"	PRX5	"g349.t1;Cre01.g014350.t1.1"	PRX5	"thioredoxin dependent peroxidase, N-terminal sequence predicted as a mitochondrial targeting signal BUT the protein is more closely related to chloroplastic type II PRX from Arabidopsis (AtPRXIIE)."
+Cre01.g041351							"g925.t1;Cre01.g041350.t1.2;Cre01.g041350.t1.2;g925.t1"		
+Cre01.g023913							"g553.t1;Cre01.g023913.t1.1"		
+Cre01.g021251	"GMM:13.1.2.3.23;GMM:13.1.2.3"	"amino acid metabolism.synthesis.glutamate family.arginine.argininosuccinate lyase;amino acid metabolism.synthesis.glutamate family.arginine"	Chloroplast	"GO:0042450;GO:0004056"	"arginine biosynthetic process via ornithine;argininosuccinate lyase activity"	ARG7	"g493.t1;Cre01.g021250.t1.3;ASL;ASL;g493.t1;Cre01.g021250.t1.3;ASL;Cre01.g021250.t1.3;g493.t1"	"ARG7;ARG7;ARG7"	"Argininosuccinate lyase (Argininosuccinase). Last enzyme in arginine biosynthetic pathway. arg7 mutants require exogenous arginine. Genetic locus maps to right arm of linkage group I [PMID: 258383; PMID: 17126];Argininosuccinate lyase (Argininosuccinase). Last enzyme in arginine biosynthetic pathway. arg7 mutants require exogenous arginine. Genetic locus maps to right arm of linkage group I [PMID: 258383; PMID: 17126];Argininosuccinate lyase (Argininosuccinase). Last enzyme in arginine biosynthetic pathway. arg7 mutants require exogenous arginine. Genetic locus maps to right arm of linkage group I [PMID: 258383; PMID: 17126]"
+Cre01.g048950	GMM:23.1.1.5	"nucleotide metabolism.synthesis.pyrimidine.uridine 5'-monophosphate synthase"	Chloroplast	"GO:0009116;GO:0006207;GO:0004590"	"nucleoside metabolic process;'de novo' pyrimidine nucleobase biosynthetic process;orotidine-5'-phosphate decarboxylase activity"	PYR5	"g1086.t1;PYR5;Cre01.g048950.t1.1;PYR5;Cre01.g048950.t1.1;g1086.t1;Cre01.g048950.t1.1;PYR5;g1086.t1;PYR5;g1086.t1;Cre01.g048950.t1.1"	"PYR5;PYR5;PYR5;PYR5"	"Uridine 5'- monophosphate synthase (orotate phosphoribosyltransferase / orotidine-5'-phosphate decarboxylase); pyrimidine biosynthesis pathway; probably mitochondrion located, while higher plant and metazoan enzyme is cytosolic;Uridine 5'- monophosphate synthase (orotate phosphoribosyltransferase / orotidine-5'-phosphate decarboxylase); pyrimidine biosynthesis pathway; probably mitochondrion located, while higher plant and metazoan enzyme is cytosolic;Uridine 5'- monophosphate synthase (orotate phosphoribosyltransferase / orotidine-5'-phosphate decarboxylase); pyrimidine biosynthesis pathway; probably mitochondrion located, while higher plant and metazoan enzyme is cytosolic;Uridine 5'- monophosphate synthase (orotate phosphoribosyltransferase / orotidine-5'-phosphate decarboxylase); pyrimidine biosynthesis pathway; probably mitochondrion located, while higher plant and metazoan enzyme is cytosolic"
+Cre01.g032600			"Secretory pathway"			HPAT1	"CGL25;g737.t1;g737.t1;CGL25;g737.t1;CGL25"	"HPAT1;HPAT1;HPAT1"	"GT8 family protein, Conserved in the Green Lineage; HPAT1 and HPAT2 share co-orthologous relationship with three HPAT genes in Arabidopsis;;GT8 family protein, Conserved in the Green Lineage; HPAT1 and HPAT2 share co-orthologous relationship with three HPAT genes in Arabidopsis;;GT8 family protein, Conserved in the Green Lineage; HPAT1 and HPAT2 share co-orthologous relationship with three HPAT genes in Arabidopsis;"
+Cre01.g010050							"g253.t1;g253.t1;g253.t1;g253.t1;g253.t1;g253.t1;g253.t1;g253.t1"		
+Cre01.g034350	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"					g775.t1		
+Cre01.g000100	GMM:34.12	transport.metal					"g5.t1;g5.t1;g5.t1"		
+Cre01.g010300							"Cre01.g010300.t1.1;g259.t1"		
+Cre01.g050650							"g1122.t1;Cre01.g050650.t1.1;Cre01.g050650.t1.1;g1122.t1;g1122.t1;Cre01.g050650.t1.1"		
+Cre01.g028250	GMM:11.9.2.2	"lipid metabolism.lipid degradation.lipases.acylglycerol lipase"				GEA1	"Cre01.g028250.t1.1;g645.t1;GEA1;g645.t1;Cre01.g028250.t1.1;GEA1"	"GEA1;GEA1"	"homology to Saccharomyces cerevisiae Dbp2p: essential ATP-dependent RNA helicase of the DEAD-box protein family, involved in nonsense-mediated mRNA decay and rRNA processing;homology to Saccharomyces cerevisiae Dbp2p: essential ATP-dependent RNA helicase of the DEAD-box protein family, involved in nonsense-mediated mRNA decay and rRNA processing"
+Cre01.g028500							"g651.t1;Cre01.g028500.t1.1"		
+Cre01.g056696			Mitochondrion				"Cre23.g767600.t1.1;g1247.t1;Cre23.g767600.t1.1;g1247.t1"		
+Cre01.g031875							"g721.t1;Cre01.g031900.t1.3"		
+Cre01.g042502	GMM:29.4.1	"protein.postranslational modification.kinase"		"GO:0016020;GO:0006508;GO:0005044;GO:0004252"	"membrane;proteolysis;scavenger receptor activity;serine-type endopeptidase activity"	SRR11			
+Cre01.g007000	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g183.t1;Cre01.g007000.t1.1;Cre01.g007000.t1.1;g183.t1;g183.t1;Cre01.g007000.t1.1"		
+Cre01.g069107						COX191	"Cre23.g766050.t1.1;PET191;g1283.t1;COX191;Cre23.g766050.t1.2"	COX191	"Putative protein required for assembly of cytochrome c oxidase; similar to PET191 of Saccharomyces cerevisiae; Previously annotated as PET191"
+Cre01.g022050							"g509.t1;Cre01.g022050.t1.1"		
+Cre01.g016600	"GMM:20.2.5;GMM:1.1.1.2"	"stress.abiotic.light;PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast			PSBS1	"g397.t1;Cre01.g016600.t1.1"	PSBS1	"one of the two neighbor genes homologous to higher plant PsbS (Npq4) that is involved in Non-Photochemical Quenching; corresponds to the gene mentioned in PMID: 16143839; shows a single AA difference compared to downstream convergent PSBS2; involved in acclimatation to UV-B; regulated by UVR8"
+Cre01.g016250			"Secretory pathway"	"GO:0016021;GO:0006952"	"integral component of membrane;defense response"	MLO3	"MLO3;g386.t1;MLO4"		"Integral membrane protein, plant GCPR-like Mlo family; may contains a C-terminal EF-hand domain pair like other MLO proteins; linked to MLO4"
+Cre01.g009650	"GMM:33.99;GMM:27.3.3"	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"	Mitochondrion	"GO:0007275;GO:0006355;GO:0003700"	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	BUG25	"Cre01.g009650.t1.1;g243.t1"	BUG25	"Basal body protein of unknown function, found in basal body proteome [PMID: 15964273]. Transcript upregulated during flagellar regeneration."
+Cre01.g038950			"Secretory pathway"				"SELENOF;Cre01.g038950.t1.1;g871.t1"	SELF1	"Most similar to human SelF; contains Sep15/SelM thioredoxin-like domain; apparently not a Selenoprotein in Chlamydomonas"
+Cre01.g042200			Chloroplast				"g946.t1;PBA1;PBA1;g946.t1"	"PBAS1;PBAS1"	"Revealed by complexome profiling as associated with Photosystem II; Conserved in green algae, brown algae, diatoms, Eustigmatophytes, not in land plants; Has TM helix, targeted to thylakoids; Was named ""putatively Photosystem B associated"" (PBA1) in [PMID: 34436580];Revealed by complexome profiling as associated with Photosystem II; Conserved in green algae, brown algae, diatoms, Eustigmatophytes, not in land plants; Has TM helix, targeted to thylakoids; Was named ""putatively Photosystem B associated"" (PBA1) in [PMID: 34436580]"
+Cre01.g030986							g702.t1		
+Cre01.g018050			Chloroplast				"g425.t1;NEF1;Cre01.g018050.t1.1;Cre01.g018050.t1.1;g425.t1;NEF1;Cre01.g018050.t1.1;NEF1;g425.t1"		"Some similarity to NEF1 of Arabidopsis. Encodes a membrane protein that probably plays a role in maintaining plastid envelope integrity; defects lead to lipid accumulation problems in plastids of A. thaliani leaves (PMID: 15225283);Some similarity to NEF1 of Arabidopsis. Encodes a membrane protein that probably plays a role in maintaining plastid envelope integrity; defects lead to lipid accumulation problems in plastids of A. thaliani leaves (PMID: 15225283);Some similarity to NEF1 of Arabidopsis. Encodes a membrane protein that probably plays a role in maintaining plastid envelope integrity; defects lead to lipid accumulation problems in plastids of A. thaliani leaves (PMID: 15225283)"
+Cre01.g043600			Chloroplast				g975.t1		
+Cre01.g027900	GMM:17.1.1	"hormone metabolism.abscisic acid.synthesis-degradation"					"Cre01.g027900.t1.1;g638.t1;Cre01.g027900.t1.1;g638.t1;g638.t1;Cre01.g027900.t1.1"		"TB2/DP1, receptor expression-enhancing protein 1/2/3/4;TB2/DP1, receptor expression-enhancing protein 1/2/3/4;TB2/DP1, receptor expression-enhancing protein 1/2/3/4"
+Cre01.g014800	GMM:28.2	DNA.repair	Chloroplast	"GO:0045910;GO:0030983;GO:0016887;GO:0006298;GO:0005524;GO:0004519"	"negative regulation of DNA recombination;mismatched DNA binding;ATPase activity;mismatch repair;ATP binding;endonuclease activity"	MSH7	"g358.t1;MSH7"	CPL21	"Conserved in the plant lineage; Orthologous to AT1G65070 in Arabidopsis thaliana, a DNA mismatch repair protein MutS, type 2;"
+Cre01.g050550			Chloroplast	"GO:0051537;GO:0043231"	"2 iron, 2 sulfur cluster binding;intracellular membrane-bounded organelle"		"Cre01.g050550.t1.1;g1117.t1"		
+Cre01.g040550							g909.t1		
+Cre01.g039650	GMM:26.1	misc.misc2		"GO:0042586;GO:0005506"	"peptide deformylase activity;iron ion binding"	PDF1C	"g886.t1;Cre01.g039650.t1.1"	PDF1C	"Polypeptide deformylase,removes formyl group from initiator Met; organelle targetted; highly similar to nearby PDF1B but seems to lack N-terminal part and shows very low expression level: could be a pseudogene"
+Cre01.g055404							"Cre01.g055450.t1.3;g1223.t1"		
+Cre01.g051211	"GMM:34.99;GMM:34.16"	"transport.misc;transport.ABC transporters and multidrug resistance systems"	Mitochondrion	"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"		"MAE9;g1134.t1"		
+Cre01.g040350	GMM:28.2	DNA.repair	Chloroplast	"GO:0045910;GO:0030983;GO:0016887;GO:0006298;GO:0005524;GO:0004519"	"negative regulation of DNA recombination;mismatched DNA binding;ATPase activity;mismatch repair;ATP binding;endonuclease activity"	MSH8	"MSH8;g900.t1;MSH8;g900.t1"		"Orthologous to AT5G54090 in Arabidopsis thaliana, a DNA mismatch repair protein MutS, type 2; Null-allele passenger mutation was isolated [PMID: 29743196];;Orthologous to AT5G54090 in Arabidopsis thaliana, a DNA mismatch repair protein MutS, type 2; Null-allele passenger mutation was isolated [PMID: 29743196];"
+Cre01.g022200			"Secretory pathway"				"g512.t1;Cre01.g022200.t1.1"		
+Cre01.g051950	"GMM:29.5.4;GMM:27.3.99"	"protein.degradation.aspartate protease;RNA.regulation of transcription.unclassified"		"GO:0006508;GO:0004190"	"proteolysis;aspartic-type endopeptidase activity"	ASP2	"CND41;g1152.t1;ASP2;Cre01.g051950.t1.1"	ASP2	"Aspartic peptidase, pepsin (A1) family; probably secreted or lysosomial as it shows a typical signal peptide; similar to chloroplast nucleoid DNA binding protein (CND41) identified in tobacco (PMID: 10683432), important for N-starvation induced RuBisCO degradation but whose reported chloroplast localization is probably erroneous"
+Cre01.g049000			Chloroplast	"GO:0008124;GO:0006729"	"4-alpha-hydroxytetrahydrobiopterin dehydratase activity;tetrahydrobiopterin biosynthetic process"	CGL31	"Cre01.g049000.t1.1;CGL31;PTD1;g1087.t1"	RAF2	"Conserved in the Green Lineage"
+Cre01.g015500	GMM:3.3	"minor CHO metabolism.sugar alcohols"		GO:0005515	"protein binding"	CGL91	"g373.t1;Cre01.g015500.t1.1;g373.t1;Cre01.g015500.t1.1"	"CGL91;CGL91"	
+Cre01.g013300	GMM:29.5.5	"protein.degradation.serine protease"	Mitochondrion	GO:0005515	"protein binding"	DEG10	"g326.t1;g326.t1"	"DEG10;DEG10"	"DegP-type protease, probably mitochondrial; one PDZ domain;DegP-type protease, probably mitochondrial; one PDZ domain"
+Cre01.g038800	GMM:34.19	"transport.major intrinsic proteins"		"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	MIP3	"g868.t1;Cre01.g038800.t1.1;MIP3"		"Related to plant plasma membrane SIP, aquaporin-like"
+Cre01.g036050	GMM:28.2	DNA.repair	Mitochondrion	"GO:0030983;GO:0006298;GO:0005524"	"mismatched DNA binding;mismatch repair;ATP binding"	MLH1	"g811.t1;g811.t1"	"MLH1;MLH1"	"MutL homolog; involved in DNA mismatch repair, together with MSH proteins;MutL homolog; involved in DNA mismatch repair, together with MSH proteins"
+Cre01.g043800							"g979.t1;g979.t1"		
+Cre01.g004157	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Chloroplast				"g103.t1;Cre01.g004157.t1.1;Cre01.g004157.t1.1;g103.t1;Cre01.g004157.t1.1;g103.t1;Cre01.g004157.t1.1;g103.t1;Cre01.g004157.t1.1;g103.t1;g103.t1;Cre01.g004157.t1.1;g103.t1;Cre01.g004157.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre01.g033300	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"				"Cre01.g033300.t1.1;g752.t2"		"Contains Pfam domain, pf13668, ferritin-like domain found in DRPs;"
+Cre01.g021950	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"	Mitochondrion	"GO:0007018;GO:0003777"	"microtubule-based movement;microtubule motor activity"		g507.t1		
+Cre01.g003541									
+Cre01.g009050							"g229.t1;Cre01.g009050.t1.1"		
+Cre01.g062172	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HBV1	"Cre23.g766900.t1.2;Cre23.g766900.t1.1;g1262.t1;HBV1"	HBV1	
+Cre01.g059982			Mitochondrion				"Cre23.g767150.t1.1;g1256.t1;Cre23.g767150.t1.1;g1256.t1"		
+Cre01.g015103	GMM:3.3	"minor CHO metabolism.sugar alcohols"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g365.t1;Cre01.g015103.t1.1;Cre01.g015103.t1.1;g365.t1"		"Contains periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain. May be involved in solute transport and early steps of a signal transduction cascade;Contains periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain. May be involved in solute transport and early steps of a signal transduction cascade"
+Cre01.g018700							"g440.t1;g440.t1"		
+Cre01.g012050	"GMM:34.4;GMM:1.5.3"	"transport.nitrate;PS.carbon concentrating mechanism.algal"	Mitochondrion	"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	NAR1.6	"NAR1.6;g298.t1;Cre01.g012050.t1.1;Cre01.g012050.t1.1;NAR1.6;g298.t1"	"NAR1F;NAR1F"	"belongs to the family of formate/nitrite transporters, bacterial type (nirC); additional N-terminal sequence may target it to an organelle; partially controled by NIT2; NCBI accession number AY612642;belongs to the family of formate/nitrite transporters, bacterial type (nirC); additional N-terminal sequence may target it to an organelle; partially controled by NIT2; NCBI accession number AY612642"
+Cre01.g052150	GMM:31.1	cell.organisation				FAP87	"ANK2;g1156.t1;ANK2;g1156.t1;g1156.t1;ANK2;g1156.t1;ANK2"	"FAP87;FAP87;FAP87;FAP87"	"Flagellar protein with ankyrin repeats; found in the flagellar proteome [PMID: 15998802];Flagellar protein with ankyrin repeats; found in the flagellar proteome [PMID: 15998802];Flagellar protein with ankyrin repeats; found in the flagellar proteome [PMID: 15998802];Flagellar protein with ankyrin repeats; found in the flagellar proteome [PMID: 15998802]"
+Cre01.g010750	"GMM:9.7;GMM:27.3.44"	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase;RNA.regulation of transcription.chromatin remodeling factors"					"RLS10;g267.t1;Cre01.g010750.t1.1;RLS10;Cre01.g010750.t1.1;g267.t1"		"Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770 SAND; PF01342);Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770 SAND; PF01342)"
+Cre01.g030000			"Secretory pathway"				g681.t1		
+Cre01.g040950				"GO:0006468;GO:0005524;GO:0004674"	"protein phosphorylation;ATP binding;protein serine/threonine kinase activity"		"g917.t1;Cre01.g040950.t1.1"		
+Cre01.g002150			Chloroplast				"g49.t1;Cre01.g002150.t1.1;Cre01.g002150.t1.1;g49.t1"		
+Cre01.g045902	GMM:29.8	"protein.assembly and cofactor ligation"	Chloroplast				"g1010.t1;g1010.t1;g1010.t1;g1010.t1;g1010.t1;g1010.t1;g1010.t1;g1010.t1;g1010.t1;g1010.t1"	"HCF101;HCF101;HCF101;HCF101;HCF101;HCF101;HCF101;HCF101;HCF101;HCF101"	"belongs to FSC-NTPase ([4Fe-4S]-cluster-containing P-loop NTPase) superfamily; serves as scaffold for assembly of [4Fe-4S]-clusters; Arabidopsis mutant is deficient in Photosyntem I and soluble Ferredoxin-thioredoxin reductase;belongs to FSC-NTPase ([4Fe-4S]-cluster-containing P-loop NTPase) superfamily; serves as scaffold for assembly of [4Fe-4S]-clusters; Arabidopsis mutant is deficient in Photosyntem I and soluble Ferredoxin-thioredoxin reductase;belongs to FSC-NTPase ([4Fe-4S]-cluster-containing P-loop NTPase) superfamily; serves as scaffold for assembly of [4Fe-4S]-clusters; Arabidopsis mutant is deficient in Photosyntem I and soluble Ferredoxin-thioredoxin reductase;belongs to FSC-NTPase ([4Fe-4S]-cluster-containing P-loop NTPase) superfamily; serves as scaffold for assembly of [4Fe-4S]-clusters; Arabidopsis mutant is deficient in Photosyntem I and soluble Ferredoxin-thioredoxin reductase;belongs to FSC-NTPase ([4Fe-4S]-cluster-containing P-loop NTPase) superfamily; serves as scaffold for assembly of [4Fe-4S]-clusters; Arabidopsis mutant is deficient in Photosyntem I and soluble Ferredoxin-thioredoxin reductase;belongs to FSC-NTPase ([4Fe-4S]-cluster-containing P-loop NTPase) superfamily; serves as scaffold for assembly of [4Fe-4S]-clusters; Arabidopsis mutant is deficient in Photosyntem I and soluble Ferredoxin-thioredoxin reductase;belongs to FSC-NTPase ([4Fe-4S]-cluster-containing P-loop NTPase) superfamily; serves as scaffold for assembly of [4Fe-4S]-clusters; Arabidopsis mutant is deficient in Photosyntem I and soluble Ferredoxin-thioredoxin reductase;belongs to FSC-NTPase ([4Fe-4S]-cluster-containing P-loop NTPase) superfamily; serves as scaffold for assembly of [4Fe-4S]-clusters; Arabidopsis mutant is deficient in Photosyntem I and soluble Ferredoxin-thioredoxin reductase;belongs to FSC-NTPase ([4Fe-4S]-cluster-containing P-loop NTPase) superfamily; serves as scaffold for assembly of [4Fe-4S]-clusters; Arabidopsis mutant is deficient in Photosyntem I and soluble Ferredoxin-thioredoxin reductase;belongs to FSC-NTPase ([4Fe-4S]-cluster-containing P-loop NTPase) superfamily; serves as scaffold for assembly of [4Fe-4S]-clusters; Arabidopsis mutant is deficient in Photosyntem I and soluble Ferredoxin-thioredoxin reductase"
+Cre01.g000750			"Secretory pathway"				"ZFR2;g18.t1"		"Predicted zinc finger, RING-type protein; Tmemb_185A domain containing protein"
+Cre01.g024850	GMM:26.23	misc.rhodanese				RDP2	"RDP2;g571.t1"		
+Cre01.g066187	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	ZRT4	"CrZIP9;Cre23.g766350.t1.1;ZRT4;g1273.t1;Cre23.g766350.t1.2;Cre23.g766350.t1.2;g1273.t1;ZRT4;Cre23.g766350.t1.1;CrZIP9;Cre23.g766350.t1.1;ZRT4;CrZIP9;g1273.t1;Cre23.g766350.t1.2"	"ZIP6;ZIP6;ZIP6"	"Similarity to ZIP GufA-like family; highest abundant ZIP family transcript during metal-replete growth;Similarity to ZIP GufA-like family; highest abundant ZIP family transcript during metal-replete growth;Similarity to ZIP GufA-like family; highest abundant ZIP family transcript during metal-replete growth"
+Cre01.g015200	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"		"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE4	"g367.t1;PDE4;PDE4;g367.t1;g367.t1;PDE4"		"Metal-dependent phosphohydrolase; may be involved in cAMP signal transduction;Metal-dependent phosphohydrolase; may be involved in cAMP signal transduction;Metal-dependent phosphohydrolase; may be involved in cAMP signal transduction"
+Cre01.g048100							"g1068.t1;g1068.t1;g1068.t1;g1068.t1"		
+Cre01.g009450	GMM:29.9	protein.co-chaperones	Cytosol			DNJ22	"DNJ22;g238.t1"		"DnaJ-like protein; contains N-terminal J-domain (pfam226)"
+Cre01.g038700	GMM:34.18	"transport.unspecified anions"	Mitochondrion	"GO:0055085;GO:0016020;GO:0006821;GO:0005247"	"transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity"	CLV5	"g866.t1;Cre01.g038700.t1.1;CLV5"		
+Cre01.g026200	GMM:3.8.2	"minor CHO metabolism.galactose.alpha-galactosidases"	Mitochondrion			PPR9	"Cre01.g026200.t1.1;g602.t1"	PPR9	
+Cre01.g012150	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979;GO:0006457"	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress;protein folding"	MSRA4	"FKB16-10;Cre01.g012150.t1.1;g301.t1"	MSRA4	"contains an N-terminal FKBP-type immunophilin domain and a C-terminal methionine-S-sulfoxide reductase domain that catalyzes the thioredoxin-dependent reduction of L-methionine (S)-S-oxide in oxidized proteins"
+Cre01.g041667			"Mitochondrion;Chloroplast"				g933.t1		
+Cre01.g028200	"GMM:27.1.2;GMM:27.1;GMM:17.5.3"	"RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL6	"g644.t2;DBP2;HEL6;DBP2;HEL6;g644.t2"		"homology to Saccharomyces cerevisiae Dbp2p: essential ATP-dependent RNA helicase of the DEAD-box protein family, involved in nonsense-mediated mRNA decay and rRNA processing;homology to Saccharomyces cerevisiae Dbp2p: essential ATP-dependent RNA helicase of the DEAD-box protein family, involved in nonsense-mediated mRNA decay and rRNA processing"
+Cre01.g006656			Chloroplast						
+Cre01.g004700			"Secretory pathway"	GO:0016021	"integral component of membrane"		"Cre01.g004700.t1.1;g114.t1"		"Target of CRR1"
+Cre01.g037100	"GMM:30.1;GMM:29.4;GMM:29.2.2"	"signalling.in sugar and nutrient physiology;protein.postranslational modification;protein.synthesis.ribosome biogenesis"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g832.t1		
+Cre01.g002203			"Secretory pathway"						
+Cre01.g044276			"Secretory pathway"				g990.t1		
+Cre01.g016542			Chloroplast				g394.t1		
+Cre01.g032000							g724.t1		
+Cre01.g012200	"GMM:33.99;GMM:33.3;GMM:27.3.28"	"development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0005515;GO:0003677"	"nucleus;protein binding;DNA binding"		"g303.t1;g303.t1;g303.t1;g303.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre01.g012500	"GMM:31.4;GMM:30.5;GMM:3.5"	"cell.vesicle transport;signalling.G-proteins;minor CHO metabolism.others"				PRA1	"Cre01.g012500.t1.1;PRA1;g310.t1;g310.t1;PRA1;Cre01.g012500.t1.1"		
+Cre01.g037450	GMM:31.3.1	"cell.cycle.peptidylprolyl isomerase"	"Secretory pathway"				g839.t1		
+Cre01.g037476			Chloroplast						
+Cre01.g016150							"g384.t1;Cre01.g016150.t1.1"		
+Cre01.g038200			Mitochondrion				"g855.t1;Cre01.g038200.t1.1;Cre01.g038200.t1.1;g855.t1"		
+Cre01.g011950			Chloroplast						
+Cre01.g000950			"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT13	"MFT13;g22.t1"		"Similar to MFS-1 sugar transporter with Spinster-like transmembrane topology"
+Cre01.g010848			Chloroplast				g271.t1		
+Cre01.g053050			Mitochondrion						
+Cre01.g055200						CPL7	"Cre01.g055200.t1.1;DIV47;g1217.t1;GIF3"	CPL7	"Similar to GIF3, GRF-interacting factor of A. thaliana. ts-lethal mutations block in S/M (PMID 25336509)"
+Cre01.g007737	GMM:34.99	transport.misc	Chloroplast	"GO:0016021;GO:0006810"	"integral component of membrane;transport"	FBT1	"g199.t1;FBT1"	FBT1	"Belongs to BT1-family of transporters (also known as FBT) involved in folate/pteridine transport; Orthologous to AT2G32040 in Arabidopsis thaliana which was identified as a folate and biopterin transporter with similarity to those of trypanosomes;"
+Cre01.g045650			Mitochondrion			ZNJ3	"ZNJ3;g1023.t1;Cre01.g045650.t1.1"		"contains a Zn-finger domain with CXXCXGXG motif, also found in DnaJ co-chaperones; probably organelle-targeted"
+Cre01.g029050				GO:0005515	"protein binding"		"g662.t1;Cre01.g029050.t1.1;g662.t1;Cre01.g029050.t1.1;g662.t1;Cre01.g029050.t1.1;g662.t1;Cre01.g029050.t1.1"		
+Cre01.g054000	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g1193.t1;Cre01.g054000.t1.1;g1193.t1;Cre01.g054000.t1.1;g1193.t1;Cre01.g054000.t1.1"		
+Cre01.g040300			Mitochondrion	GO:0008171	"O-methyltransferase activity"		"Cre01.g040300.t1.1;g899.t1"		
+Cre01.g054850			Chloroplast				"Cre01.g054850.t1.1;g1210.t1"		
+Cre01.g005750			"Secretory pathway"				g139.t1		
+Cre01.g019150	"GMM:31.1.1.2;GMM:31.1"	"cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"		"GO:0005815;GO:0000922;GO:0000226"	"microtubule organizing center;spindle pole;microtubule cytoskeleton organization"	GCP4	"g449.t1;GCP4;Cre01.g019150.t1.1"	GCP4	"Putative gamma-tubulin ring complex protein 4"
+Cre01.g006352									
+Cre01.g027250							"g623.t1;Cre01.g027250.t1.1"		
+Cre01.g034250			"Secretory pathway"				g772.t1		
+Cre01.g054900							"Cre01.g054900.t1.1;g1211.t1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre01.g022500	GMM:8.2.10	"TCA / organic transformation.other organic acid transformations.malic"	Mitochondrion	"GO:0055114;GO:0051287;GO:0004471"	"oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity"	MME5	"Cre01.g022500.t1.1;g519.t1;g519.t1;Cre01.g022500.t1.1"	"MME5;MME5"	"Malic Enzyme, NADP-dependent; malate dehydrogenase, decarboxylating (EC 1.1.1.40); based on similarity to mouse NADP malic enzyme (GenBank AAH80660); likely mitochondrial targeting, based on Target-P prediction and homology;;Malic Enzyme, NADP-dependent; malate dehydrogenase, decarboxylating (EC 1.1.1.40); based on similarity to mouse NADP malic enzyme (GenBank AAH80660); likely mitochondrial targeting, based on Target-P prediction and homology;"
+Cre01.g007850	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Mitochondrion			TEF29	"TEF29;g202.t1;Cre01.g007850.t1.1"	NUO18	"NADH:ubiquinone oxidoreductase (Complex I) subunit, mitochondrial; Ortholog to NDUFB8 in Homo sapiens; Also found in thylakoid-enriched fraction based on mass spectrometric peptide identification;"
+Cre01.g024500				"GO:0044782;GO:0036064;GO:0005813"	"cilium organization;ciliary basal body;centrosome"		g565.t1		
+Cre01.g036700	"GMM:30.3;GMM:29.4.1;GMM:29.4;GMM:29.2.2"	"signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification;protein.synthesis.ribosome biogenesis"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g824.t1;Cre01.g036700.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g042402									
+Cre01.g023300				GO:0016491	"oxidoreductase activity"		"g537.t1;Cre01.g023300.t1.1;Cre01.g023300.t1.1;g537.t1;g537.t1;Cre01.g023300.t1.1;Cre01.g023300.t1.1;g537.t1"		
+Cre01.g058521			"Secretory pathway"			ALG11	"Cre23.g767350.t1.1;g1252.t1;LEW3;GTR6"	ALG11	"GDP-Man:Man(3)GlcNAc(2)-PP-Dol alpha-1,2-mannosyltransferase; GT59 family; Orthologous to Leaf Wilting 3 (LEW3, AT2G40190) in Arabidopsis thaliana"
+Cre01.g047450	GMM:29.5.3	"protein.degradation.cysteine protease"				CPLD17	"g1055.t1;OTU2;CPLD17;CPLD17;OTU2;g1055.t1"	"CPLD17;CPLD17"	"OTU-like cysteine protease. Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila.;OTU-like cysteine protease. Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila."
+Cre01.g003150			Mitochondrion				"Cre01.g003150.t1.1;g74.t1"		"the U5g snRNA, not a protein gene, is in the vicinity"
+Cre01.g055424			"Secretory pathway"			PIGP	"PIGP;GPI19;g1228.t1;Cre23.g768300.t1.1;PIGP;g1228.t1;GPI19;Cre23.g768300.t1.1"		
+Cre01.g009575	"GMM:33.99;GMM:27.3.3"	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"	Mitochondrion	"GO:0007275;GO:0006355;GO:0003700"	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		g241.t1		
+Cre01.g036600	GMM:28.99	DNA.unspecified				EXN3	"g822.t1;Cre01.g036600.t1.1;EXN3;g822.t1;Cre01.g036600.t1.1;EXN3"		
+Cre01.g041800			"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre01.g041800.t1.1;g937.t2;g937.t2;Cre01.g041800.t1.1;g937.t2;Cre01.g041800.t1.1;Cre01.g041800.t1.1;g937.t2;Cre01.g041800.t1.1;g937.t2"		
+Cre01.g012400			"Secretory pathway"	"GO:0016021;GO:0016020"	"integral component of membrane;membrane"		"Cre01.g012400.t1.1;g308.t1"		
+Cre01.g035700							"g804.t1;Cre01.g035700.t1.1;g804.t1;Cre01.g035700.t1.1;Cre01.g035700.t1.1;g804.t1;Cre01.g035700.t1.1;g804.t1;Cre01.g035700.t1.1;g804.t1"		
+Cre01.g019250	GMM:21.2.1.1	"redox.ascorbate and glutathione.ascorbate.GME"				GME	"SNE1;g451.t1;GME;Cre01.g019250.t1.1"	SNE1	"homolog of Arabidopsis GDP-mannose-3',5'-epimerase (GME) (AT5G28840); involved in vitamin C biosynthesis"
+Cre01.g010450			"Secretory pathway"	GO:0005515	"protein binding"		"Cre01.g010450.t1.1;g262.t1"		
+Cre01.g029650	GMM:29.3.4.3	"protein.targeting.secretory pathway.vacuole"		"GO:0042147;GO:0030904;GO:0015031;GO:0008565"	"retrograde transport, endosome to Golgi;retromer complex;protein transport;protein transporter activity"	VPS35	"VPS35;g674.t1"	VPS35	"Expressed Protein. Similar to VPS35, a component of the Retromer Coat complex involved in endosomal to Golgi trafficking; may still need editing at 3' end due to sequence gap."
+Cre01.g033750			Chloroplast				g762.t1		
+Cre01.g053800			Chloroplast				g1189.t1		
+Cre01.g037000	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"	Mitochondrion	"GO:0006508;GO:0004185"	"proteolysis;serine-type carboxypeptidase activity"		"CPY;g830.t1;g830.t1;CPY"	"SCPL49;SCPL49"	
+Cre01.g026100				"GO:0008033;GO:0004540"	"tRNA processing;ribonuclease activity"	RPP14	"g600.t1;XRP14;Cre01.g026100.t1.1;XRP14;g600.t1;Cre01.g026100.t1.1"	"RPP14;RPP14"	"Involved in precursor rRNA processing;Involved in precursor rRNA processing"
+Cre01.g033763			Chloroplast	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"				
+Cre01.g063267						BLP1	"BLP1;g1265.t1;Cre23.g766750.t1.1"		"Cell adhesion complex protein bystin"
+Cre01.g020223	GMM:8.1.8	"TCA / organic transformation.TCA.fumarase"		"GO:0016829;GO:0006099"	"lyase activity;tricarboxylic acid cycle"	FUM2	"g470.t1;g470.t1;g470.t1"	"FUM2;FUM2;FUM2"	
+Cre01.g012850	GMM:34.15	transport.potassium	Mitochondrion	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	KCN8	"Cre01.g012850.t1.1;g317.t1;KCN8"		"part of a cluster of 4 related potassium channels"
+Cre01.g044900			Mitochondrion				"g1003.t2;Cre01.g044900.t1.1;Cre01.g044900.t1.1;g1003.t2"		
+Cre01.g048300							"g1073.t1;g1073.t1"		
+Cre01.g031800			"Secretory pathway"				g719.t1		
+Cre01.g054250	"GMM:26.10;GMM:26.1;GMM:25.4;GMM:17.2.2"	"misc.cytochrome P450;misc.misc2;C1-metabolism.5-formyltetrahydrofolate cyclo-ligase;hormone metabolism.auxin.signal transduction"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743A1	"g1198.t1;Cre01.g054250.t1.1;CYP4"	CYP743A1	"Hypothetical cytochrome P450. The CYP711 clan includes CYP711A1 of Arabidopsis (MAX1). This gene product makes a carotenoid-derived branch inhibiting hormone. The CYP743 family has best BLAST hits to CYP3 family members (animal sequences). The top 100 BLAST hits were all animal sequences. The plant CYP711 clan may share a common ancestor with the animal CYP3/CYP4 clan."
+Cre01.g003751			Mitochondrion	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"		"g94.t1;Cre01.g003750.t1.3"		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g039400							"g880.t1;g880.t1;g880.t1"		
+Cre01.g010250	"GMM:29.4;GMM:26.13"	"protein.postranslational modification;misc.acid and other phosphatases"	Chloroplast	GO:0003824	"catalytic activity"		"PPP2;g257.t1;PPP2;g257.t1;g257.t1;PPP2;PPP2;g257.t1"		
+Cre01.g035000				GO:0005515	"protein binding"		"g790.t1;Cre01.g035000.t1.1"		
+Cre01.g001700	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g42.t1		
+Cre01.g027650			Mitochondrion				"Cre01.g027650.t1.1;g632.t1"		
+Cre01.g006900							"g181.t1;g181.t1"		
+Cre01.g052400	GMM:1.1.3	"PS.lightreaction.cytochrome b6/f"	Chloroplast	GO:0016020	membrane	CCB3	"g1161.t1;Cre01.g052400.t1.1;CPLD43;YLMG3"	CCB3	"involved in heme c covalent linkage to cytochrome b6; belongs to YggT family; onserved among organisms performing oxygenic photosynthesis. The protein is localized to the chloroplast. PMID: 17535914"
+Cre01.g043350	GMM:19.16	"tetrapyrrole synthesis.chlorophyll b synthase"	Chloroplast	"GO:0055114;GO:0051537;GO:0016491;GO:0010277"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	CAO1	"g970.t1;CAO;Cre01.g043350.t1.1"	CAO1	"Chlorophyll a oxygenase; chlorophyll b synthase [PMID: 10468639]; Predicted chloroplast transit peptide 1-29; carries out two successive oxygenation reactions using NADPH as electron donnor, leading to 7-hydroxychlorophyllide a, then chlorophyllide b"
+Cre01.g052050	"GMM:9.5;GMM:29.3.99"	"mitochondrial electron transport / ATP synthesis.cytochrome c reductase;protein.targeting.unknown"	Mitochondrion			UQCC1	"g1154.t1;UCC1;UQCC1;CBP3;Cre01.g052050.t1.1"	UCC1	"Ubiquinol-cytochrome C chaperone family protein; [= human QCRAF3 subunit], probably mitochondrial"
+Cre01.g021850	GMM:28.99	DNA.unspecified	Chloroplast	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL2	"g505.t1;HEL2"		"DEAD box ATP-dependent RNA helicase. ChromoDB SDG3416"
+Cre01.g004500	"GMM:16.5.1.1.1.3;GMM:13.1.4.4.3"	"secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.methylthioalkylmalate isomerase large subunit (MAM-IL);amino acid metabolism.synthesis.branched chain group.leucine specific.3-isopropylmalate dehydrogenase"	Chloroplast	GO:0008152	"metabolic process"	LEU1	"Cre01.g004500.t1.1;LEUL1;LEU1L;g110.t1;g110.t1;Cre01.g004500.t1.1;LEUL1;LEU1L"	"LEU1L;LEU1L"	"putative 3-isopropylmalate dehydratase (EC 4.2.1.33), large subunit; isopropylmalate isomerase; second committed step in Leu biosynthesis; predicted as plastidic by Target-P and by homology;putative 3-isopropylmalate dehydratase (EC 4.2.1.33), large subunit; isopropylmalate isomerase; second committed step in Leu biosynthesis; predicted as plastidic by Target-P and by homology"
+Cre01.g014450							"g351.t1;g351.t1;g351.t1;g351.t1;g351.t1;g351.t1;g351.t1"		
+Cre01.g005300				GO:0006865	"amino acid transport"		"Cre01.g005300.t1.1;g128.t1;TNP4"		"Has a putative transposase DNA-binding domain containing four conserved cysteines suggestive of a zinc binding domain; part of cluster of three putative transposases"
+Cre01.g018150							"g428.t1;Cre01.g018150.t1.1;g428.t1;Cre01.g018150.t1.1;Cre01.g018150.t1.1;g428.t1;Cre01.g018150.t1.1;g428.t1"		
+Cre01.g003250	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB1	"TNP1;CSB1;g76.t1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre01.g039200	GMM:31.6.1.3.2.2	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	IFT22	"g876.t1;Rabl5;FAP9;Cre01.g039200.t1.1;Rabl5;g876.t1;Cre01.g039200.t1.1;FAP9"	"IFT22;IFT22"	"Flagellar Associated Protein, found in the Chlamydomonas flagellar proteome [PMID: 15998802]; belongs to IFT-B1 particle; has orthologs in most flagellated eukaryotes (RABL5 in human), a member of the Ras superfamily of GTPases but the GTP-specificity motif abrogated (ATPase?);Flagellar Associated Protein, found in the Chlamydomonas flagellar proteome [PMID: 15998802]; belongs to IFT-B1 particle; has orthologs in most flagellated eukaryotes (RABL5 in human), a member of the Ras superfamily of GTPases but the GTP-specificity motif abrogated (ATPase?)"
+Cre01.g014050	"GMM:27.3.99;GMM:27.3.12"	"RNA.regulation of transcription.unclassified;RNA.regulation of transcription.C3H zinc finger family"					"Cre01.g014050.t1.1;g343.t1;g343.t1;Cre01.g014050.t1.1;Cre01.g014050.t1.1;g343.t1;g343.t1;Cre01.g014050.t1.1"		
+Cre01.g072027									
+Cre01.g036950			Chloroplast	"GO:0051073;GO:0009236;GO:0008818"	"adenosylcobinamide-GDP ribazoletransferase activity;cobalamin biosynthetic process;cobalamin 5'-phosphate synthase activity"	CBA1	"CBA1;g829.t1;Cre01.g036950.t1.1"	CBA1	
+Cre01.g008891			Chloroplast				"g223.t1;Cre01.g008891.t1.1;Cre01.g008891.t1.1;g223.t1"		
+Cre01.g053350			Mitochondrion						
+Cre01.g023000	GMM:34.7	transport.phosphate	Chloroplast			PHT1	"PHT1;g531.t1;PHT4-1;MFT12"	PHT4A	"putative Na+-dependent inorganic phosphate cotransporter"
+Cre01.g050850	"GMM:29.5.11.4.3.2;GMM:29.4"	"protein.degradation.ubiquitin.E3.SCF.FBOX;protein.postranslational modification"		GO:0016787	"hydrolase activity"	PKL1	"PKL1;BSL1;g1126.t2;Cre01.g050850.t1.1;DIV44;PKL1;DIV44;g1126.t2;BSL1;Cre01.g050850.t1.1;g1126.t2;DIV44;Cre01.g050850.t1.1;PKL1;BSL1;DIV44;Cre01.g050850.t1.1;BSL1;g1126.t2;PKL1"	"PKL1;PKL1;PKL1;PKL1"	"Serine/threonine protein phosphatase 1 Beta (PP1b); has a Kelch repeat at the N-terminus; found in the flagellar proteome [PMID: 15998802]. Similar to Arabidopsis BSL phosphatases. ts-lethal mutations block in G2 (PMID 25336509);Serine/threonine protein phosphatase 1 Beta (PP1b); has a Kelch repeat at the N-terminus; found in the flagellar proteome [PMID: 15998802]. Similar to Arabidopsis BSL phosphatases. ts-lethal mutations block in G2 (PMID 25336509);Serine/threonine protein phosphatase 1 Beta (PP1b); has a Kelch repeat at the N-terminus; found in the flagellar proteome [PMID: 15998802]. Similar to Arabidopsis BSL phosphatases. ts-lethal mutations block in G2 (PMID 25336509);Serine/threonine protein phosphatase 1 Beta (PP1b); has a Kelch repeat at the N-terminus; found in the flagellar proteome [PMID: 15998802]. Similar to Arabidopsis BSL phosphatases. ts-lethal mutations block in G2 (PMID 25336509)"
+Cre01.g011376									
+Cre01.g017350							"RMT3;g411.t1"		"SET domain-containing methyltransferase; Similar to At1g143 F7A19.12, F16A14.25; putative ribulose-1,5 bisphosphate carboxylase/oxygenase large subunit N-methyltransferase [EC:2.1.1.127]. ChromoDB SDG3413"
+Cre01.g048750			Chloroplast			PPR7	"Cre01.g048750.t1.1;g1082.t1;Cre01.g048750.t1.1;g1082.t1"	"PPR7;PPR7"	"Mild effects on stabilization of rbcL, rpoC2, psbH, and tscA transcripts and maturation of polycistronic mRNAs (psbJ-atpI-psaJ-rps12, atpA-psbI-cemA-atpH, rrnS);Mild effects on stabilization of rbcL, rpoC2, psbH, and tscA transcripts and maturation of polycistronic mRNAs (psbJ-atpI-psaJ-rps12, atpA-psbI-cemA-atpH, rrnS)"
+Cre01.g044750			"Secretory pathway"				g1000.t1		
+Cre01.g002451	GMM:35.1.19	"not assigned.no ontology.C2 domain-containing protein"	Mitochondrion	GO:0005515	"protein binding"				
+Cre01.g001300	GMM:31.6.1.11	cell.motility.eukaryotes.other	"Secretory pathway"				g29.t1		
+Cre01.g040250	GMM:29.9	protein.co-chaperones	Cytosol			DNJ9	"Cre01.g040250.t1.1;g898.t1;DNJ9;DNJ9;Cre01.g040250.t1.1;g898.t1"		"DnaJ-like protein; might be targeted to chloroplast, as judged from homology to rice Q5QMD6 and to Arabidopsis O8799 predicted (weakly) by TargetP to be chloroplast-targeted; contains O-methyltransferase in N-terminus (pfam1596) (but not the higher plan;DnaJ-like protein; might be targeted to chloroplast, as judged from homology to rice Q5QMD6 and to Arabidopsis O8799 predicted (weakly) by TargetP to be chloroplast-targeted; contains O-methyltransferase in N-terminus (pfam1596) (but not the higher plan"
+Cre01.g024150			Mitochondrion				"Cre01.g024150.t1.1;g558.t1;Cre01.g024150.t1.1;g558.t1"		
+Cre01.g034700			"Secretory pathway"				"g783.t1;g783.t1;g783.t1"		
+Cre01.g048650	"GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g1080.t1;g1080.t1"		
+Cre01.g024601			Mitochondrion						
+Cre01.g042300	GMM:29.4.1	"protein.postranslational modification.kinase"	Chloroplast	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR6	"SRR6;g948.t1;SRR6;g948.t1;g948.t1;SRR6;SRR6;g948.t1;SRR6;g948.t1"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912)"
+Cre01.g051450			Chloroplast	GO:0005515	"protein binding"		"g1139.t2;g1139.t2"		
+Cre01.g021000			"Secretory pathway"	GO:0031083	"BLOC-1 complex"		g488.t1		
+Cre01.g015350	GMM:19.14	"tetrapyrrole synthesis.protochlorophyllide reductase"	Chloroplast	"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"	POR1	"POR;POR1;g370.t1"	POR1	"Light-dependent protochlorophyllide reductase, chloroplast precursor; Converts protochlorophyllide to chlorophyllide using NADPH and light as the reductant; Chlamydomonas mutant known as pc-1 has a two-nucleotide deletion within the fourth and fifth codon"
+Cre01.g010950				GO:0005515	"protein binding"		g275.t1		
+Cre01.g037200			Chloroplast				"Cre01.g037200.t1.1;g834.t1;g834.t1;Cre01.g037200.t1.1"		
+Cre01.g052250	GMM:21.1	redox.thioredoxin	Chloroplast	"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRXx	"TRX1;TRXx;Cre01.g052250.t1.1;g1158.t1"	TRXX1	"Chloroplastic localization confirmed experimentally in Arabidopsis. TRXx could be involved in oxidative stress responses as it is the most efficient chloroplastic TRX for reduction of 2-cys Peroxiredoxins, chloroplastic TRX dependent peroxidases [PMID: 12707279; PMID: 10580150]."
+Cre01.g049400							"Cre01.g049400.t1.1;g1096.t1;g1096.t1;Cre01.g049400.t1.1;Cre01.g049400.t1.1;g1096.t1"		
+Cre01.g028850	GMM:26.23	misc.rhodanese	"Secretory pathway"				"Cre01.g028850.t1.1;g658.t1"		
+Cre01.g030350			"Secretory pathway"			CGL41	"g688.t1;CGL41;CrRbcXIIa"	RBCX2A	"Conserved in the Green Lineage"
+Cre01.g005543							g134.t1		
+Cre01.g042750	GMM:8.1.3	"TCA / organic transformation.TCA.aconitase"	Chloroplast	GO:0008152	"metabolic process"	ACH1	"g957.t1;Cre01.g042750.t1.1;g957.t1;Cre01.g042750.t1.1;Cre01.g042750.t1.1;g957.t1;g957.t1;Cre01.g042750.t1.1;g957.t1;Cre01.g042750.t1.1;g957.t1;Cre01.g042750.t1.1;Cre01.g042750.t1.1;g957.t1;g957.t1;Cre01.g042750.t1.1"	"ACH1;ACH1;ACH1;ACH1;ACH1;ACH1;ACH1;ACH1"	"Aconitate hydratase (EC 4.2.1.3), mitochondrial; citrate hydro-lyase; aconitase;Aconitate hydratase (EC 4.2.1.3), mitochondrial; citrate hydro-lyase; aconitase;Aconitate hydratase (EC 4.2.1.3), mitochondrial; citrate hydro-lyase; aconitase;Aconitate hydratase (EC 4.2.1.3), mitochondrial; citrate hydro-lyase; aconitase;Aconitate hydratase (EC 4.2.1.3), mitochondrial; citrate hydro-lyase; aconitase;Aconitate hydratase (EC 4.2.1.3), mitochondrial; citrate hydro-lyase; aconitase;Aconitate hydratase (EC 4.2.1.3), mitochondrial; citrate hydro-lyase; aconitase;Aconitate hydratase (EC 4.2.1.3), mitochondrial; citrate hydro-lyase; aconitase"
+Cre01.g041855	"GMM:29.5.7;GMM:29.5"	"protein.degradation.metalloprotease;protein.degradation"	Chloroplast						
+Cre01.g028350	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast	GO:0005515	"protein binding"	DEG8	"g647.t1;g647.t1"	"DEG8;DEG8"	"DegP-type protease, thylakoid lumen; one PDZ domain;DegP-type protease, thylakoid lumen; one PDZ domain"
+Cre01.g010000	"GMM:30.6;GMM:3.6;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	MAPK8	"Cre01.g010000.t1.1;MAPK8;g252.t1"		"Mitogen-Activated Protein Kinase Homolog 8 (gI 11275338); Downstream kinase in the canonical MAP kinase pathway"
+Cre01.g050050	GMM:31.1	cell.organisation				GUM1	"Cre01.g050050.t1.1;GUM1;g1107.t1"	GUM1	"Putative guanidinoacetate N-methyltransferase with ankryin domain"
+Cre01.g043000	GMM:29.2.2.3.3	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases"	Mitochondrion	"GO:0051536;GO:0008173;GO:0006364;GO:0005737;GO:0003824"	"iron-sulfur cluster binding;RNA methyltransferase activity;rRNA processing;cytoplasm;catalytic activity"		g962.t1		
+Cre01.g067282									
+Cre01.g011100	"GMM:17.3.1.2.99;GMM:16.1.5;GMM:11.8.6"	"hormone metabolism.brassinosteroid.synthesis-degradation.sterols.other;secondary metabolism.isoprenoids.terpenoids;lipid metabolism.exotics (steroids, squalene etc).cycloartenol synthase"		GO:0003824	"catalytic activity"	CAS1	"g278.t2;Cre01.g011100.t1.1;CAS1;CAS1;g278.t2;Cre01.g011100.t1.1;g278.t2;CAS1;Cre01.g011100.t1.1"		"Probably a squalene cyclase; similar to cycloartenol synthase; (S)-2,3-epoxysqualene mutase from Arabidopsis thaliana - possibly involved in sterol/ergosterol biosynthesis;Probably a squalene cyclase; similar to cycloartenol synthase; (S)-2,3-epoxysqualene mutase from Arabidopsis thaliana - possibly involved in sterol/ergosterol biosynthesis;Probably a squalene cyclase; similar to cycloartenol synthase; (S)-2,3-epoxysqualene mutase from Arabidopsis thaliana - possibly involved in sterol/ergosterol biosynthesis"
+Cre01.g038450			Chloroplast				"g861.t1;Cre01.g038450.t1.1"		
+Cre01.g071297									
+Cre01.g051350			Chloroplast				"g1137.t1;g1137.t1;g1137.t1"		
+Cre01.g005001			Mitochondrion			CPLD9	"CPLD9;Cre01.g005000.t1.3;g121.t1"	CPLD9	
+Cre01.g040650									
+Cre01.g016350							g388.t1		
+Cre01.g009700			Chloroplast	GO:0003824	"catalytic activity"		"PPP1;g245.t1;g245.t1;PPP1;PPP1;g245.t1;g245.t1;PPP1"		
+Cre01.g000600	GMM:33.99	development.unspecified		GO:0005515	"protein binding"		"g15.t1;Cre01.g000600.t1.1;g15.t1;Cre01.g000600.t1.1"		
+Cre01.g046502			Chloroplast						
+Cre01.g017100	"GMM:26.5;GMM:11.7"	"misc.acyl transferases;lipid metabolism.unassigned"	Chloroplast				g406.t1		
+Cre01.g010816							g269.t1		
+Cre01.g044350			"Secretory pathway"				"g992.t1;g992.t1;g992.t1"		
+Cre01.g022681							"g524.t2;g524.t2"		
+Cre01.g002650							"Cre01.g002650.t1.1;g63.t1"		
+Cre01.g021500	GMM:34.99	transport.misc	"Secretory pathway"				"g498.t1;g498.t1;g498.t1;g498.t1;g498.t1"		
+Cre01.g033400	GMM:29.3.2	protein.targeting.mitochondria				TIM9	"g754.t1;Cre01.g033400.t1.1"	TIM9	"Mitochondrial import inner membrane translocase subunit Tim9. Mitochondrial intermembrane chaperone that participates in the import and insertion of multi-pass transmembrane proteins into the mitochondrial inner membrane."
+Cre01.g021150				"GO:0008173;GO:0006396"	"RNA methyltransferase activity;RNA processing"		"TMU1;g491.t2;TRMC2;TRMC2;g491.t2;TMU1;TMU1;TRMC2;g491.t2"	"TMU1;TMU1;TMU1"	"catalyzes the transfer of a methyl group from S-adenosylmethionine to position 5 of the uridine residue at position 54 of tRNAs.;catalyzes the transfer of a methyl group from S-adenosylmethionine to position 5 of the uridine residue at position 54 of tRNAs.;catalyzes the transfer of a methyl group from S-adenosylmethionine to position 5 of the uridine residue at position 54 of tRNAs."
+Cre01.g008200			"Secretory pathway"				g209.t1		
+Cre01.g003516			Mitochondrion				g85.t1		
+Cre01.g015050						AGK1	"AGK1;g363.t1;AGK1;g363.t1"		"Previously annotated as Acetylglutamate kinase, likely due to confusion with neighbor, Cre01.g015000;Previously annotated as Acetylglutamate kinase, likely due to confusion with neighbor, Cre01.g015000"
+Cre01.g001664							"g38.t1;Cre58.g791600.t1.2;Cre58.g791600.t1.1"		
+Cre01.g054400							"g1201.t1;g1201.t1;g1201.t1"		
+Cre01.g040400							"g902.t1;Cre01.g040400.t1.1"		
+Cre01.g046652	"GMM:29.1.10;GMM:27.4"	"protein.aa activation.methionine-tRNA ligase;RNA.RNA binding"	Chloroplast	GO:0000049	"tRNA binding"		g1013.t1		
+Cre01.g020850			Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG49	"g484.t1;CYG49"		"Protein with domain similar to guanylate cyclase [Aedes aegypti]"
+Cre01.g009350	GMM:22.1.4	"polyamine metabolism.synthesis.agmatine deiminase"	Mitochondrion	"GO:0009446;GO:0004668"	"putrescine biosynthetic process;protein-arginine deiminase activity"	AIH2	"g236.t1;AIH2;Cre01.g009350.t1.1;g236.t1;AIH2;Cre01.g009350.t1.1;AIH2;Cre01.g009350.t1.1;g236.t1;Cre01.g009350.t1.1;g236.t1;AIH2;g236.t1;Cre01.g009350.t1.1;AIH2;g236.t1;Cre01.g009350.t1.1;AIH2;AIH2;g236.t1;Cre01.g009350.t1.1"	"AIH2;AIH2;AIH2;AIH2;AIH2;AIH2;AIH2"	"converts agmatin to N-carbamoyl-putrescine; involved in agmatine pathway of polyamine (putrescine) biosynthesis; found in soluble mitochondrial proteome;converts agmatin to N-carbamoyl-putrescine; involved in agmatine pathway of polyamine (putrescine) biosynthesis; found in soluble mitochondrial proteome;converts agmatin to N-carbamoyl-putrescine; involved in agmatine pathway of polyamine (putrescine) biosynthesis; found in soluble mitochondrial proteome;converts agmatin to N-carbamoyl-putrescine; involved in agmatine pathway of polyamine (putrescine) biosynthesis; found in soluble mitochondrial proteome;converts agmatin to N-carbamoyl-putrescine; involved in agmatine pathway of polyamine (putrescine) biosynthesis; found in soluble mitochondrial proteome;converts agmatin to N-carbamoyl-putrescine; involved in agmatine pathway of polyamine (putrescine) biosynthesis; found in soluble mitochondrial proteome;converts agmatin to N-carbamoyl-putrescine; involved in agmatine pathway of polyamine (putrescine) biosynthesis; found in soluble mitochondrial proteome"
+Cre01.g025750							g591.t1		
+Cre01.g051482									
+Cre01.g007450			Mitochondrion				"g193.t1;g193.t1"		
+Cre01.g044800			Chloroplast	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	PFL1	"DGAT1;DGAT1;DGAT1;DGAT1;DGAT1"	"PFL1;PFL1;PFL1;PFL1;PFL1"	"Pyruvate-formate lyase; may contain organelle targeting peptide; corresponds to GI:585666 (a C-terminal fragment), induced under phosphate deprivation; also known as formate acetyltransferase. Genbank AJ620191, GI:92084841; PMID: 16452484;Pyruvate-formate lyase; may contain organelle targeting peptide; corresponds to GI:585666 (a C-terminal fragment), induced under phosphate deprivation; also known as formate acetyltransferase. Genbank AJ620191, GI:92084841; PMID: 16452484;Pyruvate-formate lyase; may contain organelle targeting peptide; corresponds to GI:585666 (a C-terminal fragment), induced under phosphate deprivation; also known as formate acetyltransferase. Genbank AJ620191, GI:92084841; PMID: 16452484;Pyruvate-formate lyase; may contain organelle targeting peptide; corresponds to GI:585666 (a C-terminal fragment), induced under phosphate deprivation; also known as formate acetyltransferase. Genbank AJ620191, GI:92084841; PMID: 16452484;Pyruvate-formate lyase; may contain organelle targeting peptide; corresponds to GI:585666 (a C-terminal fragment), induced under phosphate deprivation; also known as formate acetyltransferase. Genbank AJ620191, GI:92084841; PMID: 16452484"
+Cre01.g029150	GMM:31.6.1.4.1	"cell.motility.eukaryotes.axonemal dyneins.outer arm"				DAU1	"DAU1;Cre01.g029150.t1.1;g664.t1;ODA7;LRRC50;DNAAF1"	ODA7A	"Outer row dynein assembly protein, ODA7 [PMID: 17194703]; identified by comparative genomics as present only in organisms having motile (MOT) cilia. Primarily cytoplasmic; ortholog of human LRRC50, mutations in which can result in primary ciliary dyskinesia [PMID: 19944405]."
+Cre01.g031300	"GMM:30.3;GMM:3.3;GMM:29.4.1"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	CDPK4	"CDPK4;g708.t1"		
+Cre01.g018400	"GMM:30.4.5;GMM:29.4.1"	"signalling.phosphinositides.inositol-tetrakisphosphate 1-kinase;protein.postranslational modification.kinase"		"GO:0052726;GO:0052725;GO:0047325;GO:0032957;GO:0005622;GO:0005524;GO:0000287"	"inositol-1,3,4-trisphosphate 5-kinase activity;inositol-1,3,4-trisphosphate 6-kinase activity;inositol tetrakisphosphate 1-kinase activity;inositol trisphosphate metabolic process;intracellular;ATP binding;magnesium ion binding"	ITPK2	"ITPK2;IPK;g434.t1;IPK;g434.t1;ITPK2;IPK;g434.t1;ITPK2"	"ITPK2;ITPK2;ITPK2"	"Forms 1,3,4,5-InsP4 and 1,3,4,6-InsP4 from 1,3,4-InsP3; also acts as an inositol-tetrakisphosphate 6-kinase;Forms 1,3,4,5-InsP4 and 1,3,4,6-InsP4 from 1,3,4-InsP3; also acts as an inositol-tetrakisphosphate 6-kinase;Forms 1,3,4,5-InsP4 and 1,3,4,6-InsP4 from 1,3,4-InsP3; also acts as an inositol-tetrakisphosphate 6-kinase"
+Cre01.g055350			Chloroplast				"Cre01.g055350.t1.1;g1221.t1"		
+Cre01.g006100	GMM:21.99	redox.misc		"GO:0051536;GO:0009055"	"iron-sulfur cluster binding;electron carrier activity"	FDX7	"FDX7;Cre01.g006100.t1.1;g147.t1"	FDX7	"Ferredoxin with 2Fe-2S iron-sulfur cluster binding domain"
+Cre01.g020751			Mitochondrion						
+Cre01.g034325			Chloroplast						
+Cre01.g045100			"Secretory pathway"				"Cre01.g045100.t1.1;g1007.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g023787	GMM:29.2.2.1	"protein.synthesis.ribosome biogenesis.export from nucleus"		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"ARB2;g548.t1"		
+Cre01.g001650			"Secretory pathway"				"Cre01.g001650.t1.1;g36.t1"		
+Cre01.g033450			Mitochondrion				"Cre01.g033450.t1.1;g755.t1"		
+Cre01.g026900			Chloroplast	GO:0071949	"FAD binding"	SSA14	"SSA14;g616.t2;g616.t2;SSA14;g616.t2;SSA14;SSA14;g616.t2"	"SSA14;SSA14;SSA14;SSA14"	"Kynurenine 3-monooxygenase. Identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA). Previously annotated as SSA14. Catalyzes the formatio;Kynurenine 3-monooxygenase. Identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA). Previously annotated as SSA14. Catalyzes the formatio;Kynurenine 3-monooxygenase. Identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA). Previously annotated as SSA14. Catalyzes the formatio;Kynurenine 3-monooxygenase. Identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA). Previously annotated as SSA14. Catalyzes the formatio"
+Cre01.g052601			Chloroplast	"GO:0008233;GO:0006508"	"peptidase activity;proteolysis"				
+Cre01.g068742			Mitochondrion	GO:0003676	"nucleic acid binding"		"Cre23.g766100.t1.1;g1282.t1;Cre23.g766100.t1.2;Cre23.g766100.t1.2;g1282.t1;Cre23.g766100.t1.1;Cre23.g766100.t1.2;g1282.t1;Cre23.g766100.t1.1;Cre23.g766100.t1.2;g1282.t1;Cre23.g766100.t1.1;Cre23.g766100.t1.2;g1282.t1;Cre23.g766100.t1.1;Cre23.g766100.t1.2;g1282.t1;Cre23.g766100.t1.1;g1282.t1;Cre23.g766100.t1.1;Cre23.g766100.t1.2"		
+Cre01.g025551			Chloroplast				"Cre01.g025550.t1.2;g586.t1;g586.t1;Cre01.g025550.t1.2;g586.t1;Cre01.g025550.t1.2"		
+Cre01.g038750						MOT7	"Cre01.g038750.t1.1;g867.t1;g867.t1;Cre01.g038750.t1.1"	"MOT7;MOT7"	"Flagellar Associated Protein; Identified by comparative genomics as being present only in organisms having motile (MOT) cilia;Flagellar Associated Protein; Identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre01.g018350	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"					"g433.t1;Cre01.g018350.t1.1;Cre01.g018350.t1.1;g433.t1"		
+Cre01.g044700	"GMM:21.2.2;GMM:21.2.1"	"redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione.ascorbate"		GO:0005515	"protein binding"		"g999.t1;Cre01.g044700.t1.1;GST4;g999.t1;GST4;Cre01.g044700.t1.1"		
+Cre01.g031600			"Secretory pathway"				"Cre01.g031600.t1.1;g714.t1"		
+Cre01.g011850	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g294.t2;g294.t2;g294.t2;g294.t2;g294.t2;g294.t2;g294.t2;g294.t2"		
+Cre01.g032850	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK23	"PTK23;g742.t1"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre01.g013250							"g325.t1;g325.t1;g325.t1;g325.t1;g325.t1"		
+Cre01.g036300	GMM:3.3	"minor CHO metabolism.sugar alcohols"					"g816.t1;g816.t1;g816.t1;g816.t1"		
+Cre01.g055453	GMM:13.1.4.1.1	"amino acid metabolism.synthesis.branched chain group.common.acetolactate synthase"	Chloroplast	"GO:0016597;GO:0008152"	"amino acid binding;metabolic process"	ALS2	"Cre23.g768000.t1.1;ALSS1;ALS2;g1235.t1"	ALS2	"Acetolactate synthase, small subunit (EC 2.2.1.6); (acetohydroxy acid synthase, small subunit); precursor; expected plastidic by homology, although predicted as mitochondrial by Target-P. Previously annotated as ALSS1"
+Cre01.g062537							"Cre23.g766850.t1.1;g1263.t1;Cre23.g766850.t1.2"		
+Cre01.g015600	GMM:29.2	protein.synthesis					"g375.t1;g375.t1;g375.t1;g375.t1;g375.t1;g375.t1"		
+Cre01.g011550							"g288.t1;g288.t1;g288.t1"		
+Cre01.g032100				GO:0005515	"protein binding"		"g726.t1;g726.t1"		
+Cre01.g049650				"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"		"g1101.t1;g1101.t1"		
+Cre01.g054150	GMM:21.1	redox.thioredoxin	Chloroplast	"GO:0055114;GO:0045454;GO:0016491"	"oxidation-reduction process;cell redox homeostasis;oxidoreductase activity"	NTRC1	"Cre01.g054150.t1.1;NTR4;g1196.t1;Cre01.g054150.t1.1;NTR4;g1196.t1"	"NTRC1;NTRC1"	"NADPH-dependent thioredoxin reductase C type (NTR/thioredoxin fusion); NTRC is a two domain protein containing an NADPH dependent thioredoxin reductase (N-terminal part) and a thioredoxin (C-terminal part). The protein was shown to be localized in chloroplasts in rice and appears to protect from abiotic stress in Arabidopsis [PMID: 15292215].;NADPH-dependent thioredoxin reductase C type (NTR/thioredoxin fusion); NTRC is a two domain protein containing an NADPH dependent thioredoxin reductase (N-terminal part) and a thioredoxin (C-terminal part). The protein was shown to be localized in chloroplasts in rice and appears to protect from abiotic stress in Arabidopsis [PMID: 15292215]."
+Cre01.g013801	GMM:16.1.3.4	"secondary metabolism.isoprenoids.tocopherol biosynthesis.tocopherol cyclase"	Chloroplast	GO:0009976	"tocopherol cyclase activity"		"Cre01.g013801.t1.1;SXD1;g338.t1;g338.t1;SXD1;Cre01.g013801.t1.1"	"TCY1;TCY1"	
+Cre01.g030650	"GMM:30.11;GMM:28.2"	"signalling.light;DNA.repair"	"Secretory pathway"			PHR5	"CRY-DASH2;PHR5;g694.t1;Cre01.g030650.t1.1"	DCRY2	"Drosophila, Arabidopsis, Synechocystis, Human-type Cryptochrome 2; Deoxyribodipyrimidine photolyase; contains 6-4 DNA-photolyase and FAD binding domains; involved in light-dependent DNA repair"
+Cre01.g035100			Chloroplast	GO:0006189	"'de novo' IMP biosynthetic process"		"g792.t1;Cre01.g035100.t1.1"		
+Cre01.g006614							g164.t1		
+Cre01.g013400			"Secretory pathway"	"GO:0042765;GO:0016255"	"GPI-anchor transamidase complex;attachment of GPI anchor to protein"	PIGS	g328.t1	PIGS1	"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g041583				GO:0006355	"regulation of transcription, DNA-templated"		g931.t2		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g018075							g426.t1		
+Cre01.g059252			Chloroplast				"g1254.t1;Cre23.g767250.t1.1;g1254.t1;Cre23.g767250.t1.1;Cre23.g767250.t1.1;g1254.t1"		
+Cre01.g004050			Mitochondrion						
+Cre01.g037550							"g842.t1;g842.t1;g842.t1"		
+Cre01.g026750			Mitochondrion				"g613.t1;g613.t1"		
+Cre01.g051750	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING					"g1147.t2;g1147.t2;g1147.t2"		
+Cre01.g061442	GMM:29.5.11.4.3.1	protein.degradation.ubiquitin.E3.SCF.SKP		GO:0006511	"ubiquitin-dependent protein catabolic process"		"Cre23.g767000.t1.2;g1260.t1;Cre23.g767000.t1.1"		
+Cre01.g019500							"Cre01.g019500.t1.1;g456.t1;g456.t1;Cre01.g019500.t1.1"		
+Cre01.g008650	GMM:29.4.1	"protein.postranslational modification.kinase"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CDK1	"g218.t1;CDK1"	CDK1	"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g047001			Chloroplast				"g1044.t1;Cre01.g047000.t1.2"		
+Cre01.g017050						MCP1	"Cre01.g017050.t1.1;MCP1;g405.t1;g405.t1;MCP1;Cre01.g017050.t1.1"		
+Cre01.g005250									
+Cre01.g002550	"GMM:29.4;GMM:29.2.2"	"protein.postranslational modification;protein.synthesis.ribosome biogenesis"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	FAP335	"g61.t1;g61.t1;g61.t1"	"FAP335;FAP335;FAP335"	
+Cre01.g023773			Chloroplast	GO:0005515	"protein binding"		"g547.t1;Cre01.g023773.t1.1"		
+Cre01.g017650						FAP34	"g417.t2;FAP34;FAP34;g417.t2"	"RIB30;RIB30"	"Microtubule inner proteins (MIP) of 30 kDa that binds the ribbon; Also known as Flagellar Associated Protein 34 (FAP34);;Microtubule inner proteins (MIP) of 30 kDa that binds the ribbon; Also known as Flagellar Associated Protein 34 (FAP34);"
+Cre01.g053900	GMM:29.5	protein.degradation	Mitochondrion				"g1191.t1;g1191.t1"		
+Cre01.g019051			"Secretory pathway"				g447.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre01.g026300							"Cre01.g026300.t1.1;g604.t1"		
+Cre01.g023850							g551.t1		
+Cre01.g039800							"g889.t1;g889.t1;g889.t1"		
+Cre01.g032500	"GMM:29.9;GMM:29.6.2.6;GMM:20.2.1"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat"	Cytosol	GO:0005515	"protein binding"	DNJ8	"DNJ8;Cre01.g032500.t1.1;g735.t1;g735.t1;Cre01.g032500.t1.1;DNJ8"	"TPR2;TPR2"	"Ortholog of the TPR2 co-chaperone of cytosolic HSP70 and HSP90; contains a C-terminal J domain and two TPR domains via which it is known to interact with the chaperones in mammals; Not to be confused with another protein (Cre12.g508350) that was previously annotated as TPR2 in Chlamydomonas;Ortholog of the TPR2 co-chaperone of cytosolic HSP70 and HSP90; contains a C-terminal J domain and two TPR domains via which it is known to interact with the chaperones in mammals; Not to be confused with another protein (Cre12.g508350) that was previously annotated as TPR2 in Chlamydomonas"
+Cre01.g045601			Chloroplast	"GO:0016020;GO:0006508;GO:0005044;GO:0004252"	"membrane;proteolysis;scavenger receptor activity;serine-type endopeptidase activity"		"Cre01.g045601.t1.1;g1021.t1;g1021.t1;Cre01.g045601.t1.1;g1021.t1;Cre01.g045601.t1.1"		
+Cre01.g047750	"GMM:29.2.1.2.2.518;GMM:29.2.1.2.2.0518"	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L18A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L18A"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	RPL18A	"g1061.t1;RPL18a;Cre01.g047750.t1.1;RPL18a;g1061.t1;Cre01.g047750.t1.1"	"RPL18A;RPL18A"	"Cytosolic 60S large ribosomal subunit protein L18a;Cytosolic 60S large ribosomal subunit protein L18a"
+Cre01.g034900	"GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4;GMM:29.2.2"	"signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification;protein.synthesis.ribosome biogenesis"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	CDPK5	"CDPK5;g788.t1;Cre01.g034900.t1.1"		
+Cre01.g039150	GMM:29.3.3	protein.targeting.chloroplast				TIC21	"PIC1;Cre01.g039150.t1.1;g875.t1;TIC21;g875.t1;PIC1;Cre01.g039150.t1.1;TIC21;PIC1;g875.t1;Cre01.g039150.t1.1;TIC21"	"CPLD5;CPLD5;CPLD5"	"Previously described as 21 kDa translocon at the inner membrane of chloroplasts; Conserved in the plant lineage and diatoms;Previously described as 21 kDa translocon at the inner membrane of chloroplasts; Conserved in the plant lineage and diatoms;Previously described as 21 kDa translocon at the inner membrane of chloroplasts; Conserved in the plant lineage and diatoms"
+Cre01.g029750	"GMM:23.4.3;GMM:23.4.1"	"nucleotide metabolism.phosphotransfer and pyrophosphatases.uridylate kinase;nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase"		"GO:0019205;GO:0006139;GO:0005524"	"nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding"	DAAK1	"FAK1;g676.t1;FAK2;FAK1;g676.t1;FAK2"	"DAAK1;DAAK1"	"3 nearly identical repeats of an adenylate kinase domain; corresponds approximately to GI:46518741; reduced in the flagellum of the outer dynein arm oda5 mutant [PMID: 156435]. Previously annotated as two distinct FAKs, but no current evidence for this;3 nearly identical repeats of an adenylate kinase domain; corresponds approximately to GI:46518741; reduced in the flagellum of the outer dynein arm oda5 mutant [PMID: 156435]. Previously annotated as two distinct FAKs, but no current evidence for this"
+Cre01.g012300			Chloroplast				"g306.t1;g306.t1"		
+Cre01.g035600			Chloroplast	"GO:0055085;GO:0016020"	"transmembrane transport;membrane"	MSC2	"g802.t1;MSC2"	MSC2	"sequence similarity with bacterial (E. coli) mechanosensitive ion channel MscS"
+Cre01.g005813							"g140.t1;Cre01.g005813.t1.1"	POB31	"Found in basal body proteome"
+Cre01.g024750	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"STK;g569.t1;g569.t1;STK;STK;g569.t1;STK;g569.t1;g569.t1;STK;g569.t1;STK;g569.t1;STK;STK;g569.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre01.g003826	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"							
+Cre01.g052950	GMM:28.2	DNA.repair				PSO2	"g1170.t1;g1170.t1"	"PSO2;PSO2"	
+Cre01.g013650							"g333.t1;g333.t1;g333.t1"		
+Cre01.g020100			"Secretory pathway"				g467.t1		
+Cre01.g047050	GMM:11.9.3.2	"lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase"	Mitochondrion						
+Cre01.g025050	GMM:27.3.9	"RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family"		"GO:0043565;GO:0008270;GO:0006355;GO:0003700"	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"Cre01.g025050.t1.1;g576.t1"		
+Cre01.g003550	GMM:26.23	misc.rhodanese	Chloroplast				"g89.t1;g89.t1;g89.t1;g89.t1"		
+Cre01.g003600			Mitochondrion						
+Cre01.g020305						SDH4	SDH4	SDH4	"Succinate dehydrogenase (Complex II) subunit D, probably mitochondrial; subunit 4 of mitochondrial electron transport chain complex II (succinate dehydrogenase EC 1.3.99.1); next to SDH3, upstream on other strand, suggesting a shared bidirectional promoter region; the 5'-UTR overlaps with that of one of the SDH3 transcripts"
+Cre01.g044050	GMM:34.1	"transport.p- and v-ATPases"		"GO:0033179;GO:0015991;GO:0015078"	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"		"Cre01.g044050.t1.1;g985.t1"		
+Cre01.g003850	"GMM:26.10;GMM:26.1"	"misc.cytochrome P450;misc.misc2"		"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP747A1	"g97.t1;CYP1"	CYP747A1	"cytochrome P450, unknown function"
+Cre29.g757797			Chloroplast				g18318.t1		
+Cre29.g757947									
+Cre29.g757897			"Secretory pathway"				"Cre48.g789500.t1.2;g18322.t1;Cre48.g789500.t1.1"		
+Cre29.g757847									
+Cre10.g427900	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g10569.t1;g10569.t1"		
+Cre10.g466050			"Mitochondrion;Chloroplast"				"g11422.t1;Cre10.g466050.t1.1;Cre10.g466050.t1.1;g11422.t1;Cre10.g466050.t1.1;g11422.t1;g11422.t1;Cre10.g466050.t1.1;Cre10.g466050.t1.1;g11422.t1;Cre10.g466050.t1.1;g11422.t1"		
+Cre10.g419250									
+Cre10.g455500	GMM:27.3.42	"RNA.regulation of transcription.bromodomain proteins"		GO:0005515	"protein binding"		"GTF4;Cre10.g455500.t1.1;g11178.t1"		"Global transcription factor group E, containing bromodomains. May be a histone acetyltransferase. ChromoDB GTE341"
+Cre10.g443850	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast				g10912.t1		
+Cre10.g438783			Mitochondrion				"g10807.t2;Cre10.g438800.t1.3"		
+Cre10.g434750	"GMM:13.1.4.1.2;GMM:13.1.4.1"	"amino acid metabolism.synthesis.branched chain group.common.ketol-acid reductoisomerase;amino acid metabolism.synthesis.branched chain group.common"	Chloroplast	"GO:0055114;GO:0016491;GO:0009082;GO:0004455"	"oxidation-reduction process;oxidoreductase activity;branched-chain amino acid biosynthetic process;ketol-acid reductoisomerase activity"	AAI1	"AAI1;Cre10.g434750.t1.1;g10722.t1;Cre10.g434750.t1.1;g10722.t1;AAI1"	"AAI1;AAI1"	"acetohydroxy acid isomeroreductase (EC 1.1.1.86); ILVC; ketol-acid reductoisomerase; expected plastidic by homology, but predicted as mitochondrial by Target-P;acetohydroxy acid isomeroreductase (EC 1.1.1.86); ILVC; ketol-acid reductoisomerase; expected plastidic by homology, but predicted as mitochondrial by Target-P"
+Cre10.g425400			"Secretory pathway"				"Cre10.g425400.t1.1;g10514.t1;g10514.t1;Cre10.g425400.t1.1;g10514.t1;Cre10.g425400.t1.1"		
+Cre10.g444044			Chloroplast				g10917.t1		
+Cre10.g434300							"g10712.t1;g10712.t1"		
+Cre10.g433650			Mitochondrion	GO:0008168	"methyltransferase activity"		"TMC3;g10697.t1"		
+Cre10.g421079							"g10421.t1;Cre10.g421079.t1.1"		
+Cre10.g428525									
+Cre10.g441350							"g10861.t1;g10861.t1;g10861.t1"		
+Cre10.g465600							"g11409.t1;Cre10.g465600.t1.1"		
+Cre10.g423600	GMM:33.99	development.unspecified	Chloroplast	"GO:0005515;GO:0005509"	"protein binding;calcium ion binding"		"g10477.t1;g10477.t1;g10477.t1;g10477.t1"		
+Cre10.g426292	GMM:4.1.14	"glycolysis.cytosolic branch.pyruvate kinase (PK)"		"GO:0030955;GO:0006096;GO:0004743;GO:0000287"	"potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding"	PYK6	"PYK6;g10533.t1;PYK6;g10533.t1"	"PYK6;PYK6"	"Pyruvate kinase with zinc finger domain;Pyruvate kinase with zinc finger domain"
+Cre10.g443650			"Secretory pathway"				g10908.t1		
+Cre10.g462350	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g11334.t1;g11334.t1;g11334.t1"		
+Cre10.g427350	"GMM:26.10;GMM:26.1;GMM:17.6.1.4"	"misc.cytochrome P450;misc.misc2;hormone metabolism.gibberelin.synthesis-degradation.ent-kaurenoic acid hydroxylase/oxygenase"		"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP39A2	"CYP31;g10557.t1;CYP31;g10557.t1;g10557.t1;CYP31"	"CYP39A2;CYP39A2;CYP39A2"	
+Cre10.g419150			Mitochondrion				g10376.t1		
+Cre10.g453850			"Secretory pathway"				"g11145.t1;Cre10.g453850.t1.1"		
+Cre10.g422250							g10446.t1		
+Cre10.g451450	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g11093.t1;g11093.t1"		
+Cre10.g461874									
+Cre10.g453800						TSP3	"g11143.t1;CTPA3;TCP3;TSP3;CTPA3;g11143.t1;TSP3;TCP3;g11143.t1;TCP3;CTPA3;TSP3"		"Previously annotated as a Tail-specific protease (TSP3/CTPA3), but this was probably a misannotation related to the neighboring CTPB1 gene (Cre10.g453807);;Previously annotated as a Tail-specific protease (TSP3/CTPA3), but this was probably a misannotation related to the neighboring CTPB1 gene (Cre10.g453807);;Previously annotated as a Tail-specific protease (TSP3/CTPA3), but this was probably a misannotation related to the neighboring CTPB1 gene (Cre10.g453807);"
+Cre10.g422700				"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"g10457.t1;SMM35;Cre10.g422700.t1.1"		
+Cre10.g426850				GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"		g10547.t1		
+Cre10.g464450			Mitochondrion	GO:0005515	"protein binding"		g11381.t1		
+Cre10.g424400	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0005839;GO:0004298"	"proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity"	PBB1	"PBB1;Cre10.g424400.t1.1;g10493.t1"	PBB1	"20S proteasome beta subunit B, type beta 2; (PSMB7) (PSMB10) (PUP1), trypsin-like activity"
+Cre10.g444950							"g10939.t1;Cre10.g444950.t1.1;Cre10.g444950.t1.1;g10939.t1;g10939.t1;Cre10.g444950.t1.1"		
+Cre10.g450650				GO:0005515	"protein binding"		"g11075.t1;Cre10.g450650.t1.1"		
+Cre10.g454700							"Cre10.g454700.t1.1;g11161.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g426350			Chloroplast				"g10535.t1;g10535.t1"		"Conserved expressed protein;Conserved expressed protein"
+Cre10.g436650	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL45	"HEL45;g10764.t1;g10764.t1;HEL45"		
+Cre10.g458500	GMM:13.1.3.6.1.1	"amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate kinase"	Chloroplast			ASK1	"g11247.t1;ASK1;AHD2;Cre10.g458500.t1.1;ASK1;AHD2;Cre10.g458500.t1.1;g11247.t1"		"Monofunctional enzyme (EC:2.7.2.4); involved in Threonine , Methionine , and Lysine biosynthesis; possibly plastid targeted, based on Target-P prediction;Monofunctional enzyme (EC:2.7.2.4); involved in Threonine , Methionine , and Lysine biosynthesis; possibly plastid targeted, based on Target-P prediction"
+Cre10.g445000			"Secretory pathway"	"GO:0055085;GO:0016020;GO:0008324;GO:0006814;GO:0006813;GO:0005215"	"transmembrane transport;membrane;cation transmembrane transporter activity;sodium ion transport;potassium ion transport;transporter activity"	SLT2	"g10940.t1;Cre10.g445000.t1.1"	SLT2	"SAC1-like transporter 2, putative sodium/sulfate co-transporter, transcript is up-regulated during sulfur-deprivation; related to the SAC1 protein which regulates sulfur-deficiency responses [PMID: 16307308]"
+Cre10.g454450	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"g11156.t2;g11156.t2;g11156.t2"		
+Cre10.g441700							"g10868.t1;g10868.t1;g10868.t1;g10868.t1"		
+Cre10.g419350							"g10380.t1;g10380.t1;g10380.t1"		
+Cre10.g433550	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0051103;GO:0006310;GO:0006281;GO:0005524;GO:0003910;GO:0003677"	"DNA ligation involved in DNA repair;DNA recombination;DNA repair;ATP binding;DNA ligase (ATP) activity;DNA binding"	DNL4	"LIG2;DNL4;g10695.t1;DNL4;g10695.t1;LIG2"	"LIG4;LIG4"	"ATP-dependent DNA ligase; most similar to Arabidopsis LIG4 (AT5G57160); genetically linked to KU80 and POLE2;ATP-dependent DNA ligase; most similar to Arabidopsis LIG4 (AT5G57160); genetically linked to KU80 and POLE2"
+Cre10.g456150	GMM:28.2	DNA.repair				HLD3	"HLD3;g11192.t1;Cre10.g456150.t1.1"		
+Cre10.g458600	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP245	"g11249.t1;g11249.t1;g11249.t1"	"FAP245;FAP245;FAP245"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre10.g427896			"Secretory pathway"			CSB38			
+Cre10.g450000							"Cre10.g450000.t1.1;g11061.t1"		
+Cre10.g459450	GMM:29.5.1	protein.degradation.subtilases	"Secretory pathway"	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SUB10			
+Cre10.g447300	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	"protein binding"	DDI1	"Cre10.g447300.t1.1;g11002.t1"	DDI1	"contains UBA domain"
+Cre10.g428734				GO:0055114	"oxidation-reduction process"		"g10591.t1;Cre69.g794000.t1.1"		
+Cre10.g417650	GMM:27.1	RNA.processing	Mitochondrion	"GO:0008173;GO:0006396;GO:0003723"	"RNA methyltransferase activity;RNA processing;RNA binding"		g10340.t1		
+Cre10.g449020			Mitochondrion	"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"		"g11039.t1;g11039.t1"		
+Cre10.g433800	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				CSE21	"CSE21;g10700.t1;Cre10.g433800.t1.1;g10700.t1;CSE21;Cre10.g433800.t1.1;Cre10.g433800.t1.1;g10700.t1;CSE21"		"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome;Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome;Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre10.g461100							g11305.t1		
+Cre10.g422650			Mitochondrion				"g10456.t1;g10456.t1"		
+Cre10.g431650	"GMM:20.2.5;GMM:18"	"stress.abiotic.light;Co-factor and vitamine metabolism"		"GO:0008152;GO:0006741;GO:0003951"	"metabolic process;NADP biosynthetic process;NAD+ kinase activity"		"g10655.t1;Cre10.g431650.t1.1"		
+Cre10.g428650	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"				CDPKK1	"Cre10.g428650.t1.1;CDPKK1;g10585.t1;CDPKKK1;CDPKK1;g10585.t1;CDPKKK1;Cre10.g428650.t1.1;CDPKKK1;g10585.t1;CDPKK1;Cre10.g428650.t1.1;CDPKKK1;g10585.t1;CDPKK1;Cre10.g428650.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre10.g451800	GMM:29.5	protein.degradation					"g11099.t1;Cre10.g451800.t1.1;Cre10.g451800.t1.1;g11099.t1;Cre10.g451800.t1.1;g11099.t1"		
+Cre10.g451400	"GMM:18.1.1;GMM:18"	"Co-factor and vitamine metabolism.molybdenum cofactor.gephyrin;Co-factor and vitamine metabolism"		GO:0032324	"molybdopterin cofactor biosynthetic process"	CNX1E	"CNX1B;NIT4;g11092.t1;CNX1E"	CNX1E	"Inserts molybdenum into molybdopterin (MPT) to yield Moco through the intermediate MPT-AMP; related to Arabidopsis thaliana Cnx1E and homologous to C-terminal region of Molybdopterin biosynthesis CNX1 protein; the nit4-104 mutation is in this gene (V171A), as well as nit6-106 (G183D), and the two mutations show intermolecular complementation both in vivo and in vitro"
+Cre10.g443900	GMM:34.18	"transport.unspecified anions"	"Secretory pathway"	"GO:0016021;GO:0016020;GO:0006820;GO:0005452"	"integral component of membrane;membrane;anion transport;inorganic anion exchanger activity"	BOR1	"BOR1;g10913.t1;BOR1;g10913.t1"	"BOR1;BOR1"	"Homologous to Arabidopsis borate transporter, AtBor1. Contains HCO3- transporter family. (pfam00955). This family contains Band 3 anion exchange proteins that exchange Cl-/HCO3-. This family also includes cotransporters of Na+/HCO3-;Homologous to Arabidopsis borate transporter, AtBor1. Contains HCO3- transporter family. (pfam00955). This family contains Band 3 anion exchange proteins that exchange Cl-/HCO3-. This family also includes cotransporters of Na+/HCO3-"
+Cre10.g465026									
+Cre10.g428000							g10571.t1		
+Cre10.g418100	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175"	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA3	"POA3;g10353.t1"	POA3	"(PSA4) 20S proteasome alpha subunit C (type 4)"
+Cre10.g445177			Mitochondrion						
+Cre10.g465850							"Cre10.g465850.t1.1;g11418.t1"		
+Cre10.g440300	GMM:31.2	cell.division		"GO:0030915;GO:0006281;GO:0000724"	"Smc5-Smc6 complex;DNA repair;double-strand break repair via homologous recombination"	SMC5A	"g10838.t1;SMC5A;g10838.t1;SMC5A"	"SMC5A;SMC5A"	"Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. This is one of two SMC5 genes near each other on scaffold 10.;Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. This is one of two SMC5 genes near each other on scaffold 10."
+Cre10.g446550	GMM:34.1.1	"transport.p- and v-ATPases.H+-transporting two-sector ATPase"		"GO:0046961;GO:0034220;GO:0033180;GO:0015991"	"proton-transporting ATPase activity, rotational mechanism;ion transmembrane transport;proton-transporting V-type ATPase, V1 domain;ATP hydrolysis coupled proton transport"	ATPVF	"g10986.t1;ATPVF;Cre10.g446550.t1.1"	ATPVF1	"Probable vacuolar ATP synthase subunit F; V-ATPase F subunit; Vacuolar proton pump F subunit"
+Cre10.g430700						FAP308	g10636.t1	FAP308	"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g435650	GMM:34.99	transport.misc		"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	HPT1	"g10743.t1;HPT1;HGPT1;g10743.t1;HPT1;HGPT1;HGPT1;HPT1;g10743.t1"		"membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); Note that HPT symbol conflicts with homogentisate phytyltransferase (HPT) gene;;membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); Note that HPT symbol conflicts with homogentisate phytyltransferase (HPT) gene;;membrane hexose-phosphate transporter, Major Facilitator Superfamily; similarity to bacterial uhpC protein, with dual transport and sensing role for glucose-6-phosphate, and to putative glycerol-3-phosphate transporter of Cyanidioschyzon merolae (CMQ264C); Note that HPT symbol conflicts with homogentisate phytyltransferase (HPT) gene;"
+Cre10.g432200							"Cre10.g432200.t1.1;g10666.t1;bS1m;bS1m;g10666.t1;Cre10.g432200.t1.1"	"MRPS1;MRPS1"	
+Cre10.g425650			"Secretory pathway"	GO:0016021	"integral component of membrane"		"g10519.t1;Cre10.g425650.t1.1"		
+Cre10.g445251									
+Cre10.g443500			Mitochondrion			PCD3	"g10905.t1;Cre10.g443500.t1.1;PCD3"		
+Cre10.g449100	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	Chloroplast			MCP25	"Cre10.g449100.t1.1;g11041.t1;MCP25;g11041.t1;Cre10.g449100.t1.1;MCP25;MCP25;g11041.t1;Cre10.g449100.t1.1"		
+Cre10.g455750	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"	Mitochondrion	"GO:0046872;GO:0005524"	"metal ion binding;ATP binding"		"g11184.t1;SRH19;g11184.t1;SRH19"		"SNF2-related protein. ChromDB CHR3415;SNF2-related protein. ChromDB CHR3415"
+Cre10.g427550			"Secretory pathway"	"GO:0016757;GO:0006486"	"transferase activity, transferring glycosyl groups;protein glycosylation"		g10561.t1		
+Cre10.g461950	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0005839;GO:0004298"	"proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity"	PBE1	"g11325.t1;Cre10.g461950.t1.1;PBE1"	PBE1	"20S proteasome beta subunit E, type beta 5; (PRE2), (PSB5), chymotrypsin-like activity"
+Cre10.g427500	GMM:26.1	misc.misc2		"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A1	"Cre10.g427500.t1.1;CYP32;g10560.t1"	CYP739A1	"Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols."
+Cre10.g465101									
+Cre10.g463350			"Secretory pathway"			HRP3	"g11354.t1;Cre10.g463350.t1.1;HRP3;g11354.t1;Cre10.g463350.t1.1;HRP3;HRP3;Cre10.g463350.t1.1;g11354.t1;g11354.t1;Cre10.g463350.t1.1;HRP3;g11354.t1;Cre10.g463350.t1.1;HRP3"		"cell wall protein; contains (hydroxy)proline-rich (HR) domain with (SP)n repeats;cell wall protein; contains (hydroxy)proline-rich (HR) domain with (SP)n repeats;cell wall protein; contains (hydroxy)proline-rich (HR) domain with (SP)n repeats;cell wall protein; contains (hydroxy)proline-rich (HR) domain with (SP)n repeats;cell wall protein; contains (hydroxy)proline-rich (HR) domain with (SP)n repeats"
+Cre10.g453250			"Secretory pathway"						
+Cre10.g466450	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g11432.t1;g11432.t1"		
+Cre10.g446900	"GMM:33.99;GMM:30.1;GMM:3.1;GMM:29.4"	"development.unspecified;signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family;protein.postranslational modification"		GO:0005515	"protein binding"		"g10993.t1;Cre10.g446900.t1.1;g10993.t1;Cre10.g446900.t1.1;g10993.t1;Cre10.g446900.t1.1"		
+Cre10.g456350	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN7-2	"Cre10.g456350.t1.1;g11197.t1;KIN7-2;g11197.t1;KIN7-2;Cre10.g456350.t1.1"	"KIN7B;KIN7B"	"kinesin-7 family;kinesin-7 family"
+Cre10.g439700	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"	CGL28	"g10826.t1;Cre10.g439700.t1.1;Cre10.g439700.t1.1;g10826.t1;g10826.t1;Cre10.g439700.t1.1"	"CGL28;CGL28;CGL28"	"Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre10.g459050	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast	"GO:0070008;GO:0008236;GO:0006508;GO:0004252"	"serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity"		g11259.t1		
+Cre10.g432301			Chloroplast				"g10668.t1;g10668.t1;g10668.t1"		
+Cre10.g419850			Mitochondrion				"g10391.t1;Cre10.g419850.t1.1;g10391.t1;Cre10.g419850.t1.1"		
+Cre10.g442050							g10877.t1		
+Cre10.g427000				"GO:0006355;GO:0005739;GO:0003690"	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	MOC2	"g10550.t1;Cre10.g427000.t1.1;g10550.t1;Cre10.g427000.t1.1;g10550.t1;Cre10.g427000.t1.1"	"MOC2;MOC2;MOC2"	"Putative mTERF domain containing protein; possibly a mitochondrial transcription termination factor;Putative mTERF domain containing protein; possibly a mitochondrial transcription termination factor;Putative mTERF domain containing protein; possibly a mitochondrial transcription termination factor"
+Cre10.g453450	GMM:27.1	RNA.processing		"GO:0030532;GO:0008380"	"small nuclear ribonucleoprotein complex;RNA splicing"	SMP4	"SMP4;g11132.t1;Cre10.g453450.t1.1"	SMP4	"putative Small nuclear ribonucleoprotein Sm D2 (snRNP core protein D2) (Sm-D2)"
+Cre10.g418000							"g10351.t1;Cre10.g418000.t1.1"		
+Cre10.g427050	GMM:29.8	"protein.assembly and cofactor ligation"	Mitochondrion			MNP1	"g10551.t1;MNP1;Cre10.g427050.t1.1"	INDH1	"Similar to bacterial MRP proteins. Predicted mitochondrial localization. MNP = MRP/NBP35-like P-loop NTPase; Functions in Fe-S cluster assembly"
+Cre10.g428800			"Secretory pathway"				"Cre10.g428800.t1.1;g10593.t1;g10593.t1;Cre10.g428800.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre10.g435100							"g10732.t1;Cre10.g435100.t1.1"		
+Cre10.g439250							"Cre10.g439250.t1.1;g10817.t1"		
+Cre10.g441850							"g10872.t1;g10872.t1;g10872.t1;g10872.t1;g10872.t1;g10872.t1;g10872.t1;g10872.t1;g10872.t1;g10872.t1"		
+Cre10.g437650			Mitochondrion				"g10783.t1;g10783.t1;g10783.t1"		
+Cre10.g455400						RME2	"RME2;Cre10.g455400.t1.1;g11176.t1"		"Putative RNA methylase with conserved N-6 adenine-specific DNA methylase site"
+Cre10.g450100	GMM:34.15	transport.potassium	Mitochondrion	"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"		g11063.t1		
+Cre10.g458626			Chloroplast				g11250.t1		
+Cre10.g431000							"g10642.t1;g10642.t1;g10642.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre10.g457900							"Cre10.g457900.t1.1;g11232.t1;g11232.t1;Cre10.g457900.t1.1;Cre10.g457900.t1.1;g11232.t1;g11232.t1;Cre10.g457900.t1.1;Cre10.g457900.t1.1;g11232.t1"		
+Cre10.g424500	GMM:3.5	"minor CHO metabolism.others"				CPK4	"CPK4;Cre10.g424500.t1.1;g10495.t1;Cre10.g424500.t1.1;CPK4;g10495.t1"		"PfkB-type carbohydrate kinase family protein, ribokinase;PfkB-type carbohydrate kinase family protein, ribokinase"
+Cre10.g433100	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Chloroplast	"GO:0005525;GO:0000166"	"GTP binding;nucleotide binding"		"OBGE;Cre10.g433100.t1.1;g10685.t1"	OBGE1	
+Cre10.g465450			"Secretory pathway"	"GO:0008476;GO:0006478"	"protein-tyrosine sulfotransferase activity;peptidyl-tyrosine sulfation"		"Cre10.g465450.t1.1;g11405.t1"		
+Cre10.g442300			Chloroplast				"g10882.t2;g10882.t2;g10882.t2;g10882.t2;g10882.t2"		
+Cre10.g420950			Chloroplast				"Cre10.g420950.t1.1;g10417.t1;Cre10.g420950.t1.1;g10417.t1;Cre10.g420950.t1.1;g10417.t1"		
+Cre10.g417900							"g10349.t1;Cre10.g417900.t1.1"		
+Cre10.g448051	GMM:34.99	transport.misc					"SFL1;Cre10.g448050.t1.2;g11018.t1"	CPSFL1	"Protein can bind phytoene and beta-carotene and phosphatidic acid; putatively involved in the regulation of phytoene synthesis and carotenoid transport; mutant shows decreased accumulation of plastidial isoprenoid-derived pigments and is extremely light-sensitive"
+Cre10.g435850						CPLD24	"g10747.t1;Cre10.g435850.t1.1"	CPLD24	"Conserved expressed protein, perhaps chloroplast targeted"
+Cre10.g420400							g10402.t1		
+Cre10.g437400			"Secretory pathway"				"g10778.t1;Cre10.g437400.t1.1"		
+Cre10.g418626			Chloroplast				g10364.t1		
+Cre10.g459226									
+Cre10.g430400	GMM:29.2.1.2.2.37	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L37"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL37	"g10629.t1;Cre10.g430400.t1.1;g10629.t1;Cre10.g430400.t1.1;Cre10.g430400.t1.1;g10629.t1;Cre10.g430400.t1.1;g10629.t1"	"RPL37;RPL37;RPL37;RPL37"	"Cytosolic 60S large ribosomal subunit protein L37;Cytosolic 60S large ribosomal subunit protein L37;Cytosolic 60S large ribosomal subunit protein L37;Cytosolic 60S large ribosomal subunit protein L37"
+Cre10.g464650			Chloroplast			CGL36	"Cre10.g464650.t1.1;g11385.t1"	CGL36	
+Cre10.g442700	"GMM:28.99;GMM:28.1"	"DNA.unspecified;DNA.synthesis/chromatin structure"		"GO:0043141;GO:0005524;GO:0003678"	"ATP-dependent 5'-3' DNA helicase activity;ATP binding;DNA helicase activity"		"g10890.t1;Cre10.g442700.t1.1;Reptin;RUVBL2;Cre10.g442700.t1.1;g10890.t1;RUVBL2;Reptin"	"RVB2;RVB2"	"Part of a R2TP-like complex formed by RVB1 (Cre09.g414050), RVB2 (Cre10.g442700), MOT48 (Cre10.g467050), and RPAP3 (Cre02.g084900);;Part of a R2TP-like complex formed by RVB1 (Cre09.g414050), RVB2 (Cre10.g442700), MOT48 (Cre10.g467050), and RPAP3 (Cre02.g084900);"
+Cre10.g451100							"g11086.t1;g11086.t1;g11086.t1"		
+Cre10.g462950			Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPL33	"g11347.t1;Cre10.g462950.t1.1"	PRPL33	"imported to chloroplast; Chloroplast large ribosomal subunit protein L33"
+Cre10.g423300	GMM:29.5	protein.degradation					"g10470.t1;g10470.t1;g10470.t1"		
+Cre10.g449300							g11047.t1		
+Cre10.g452850							g11121.t1		
+Cre10.g456650						AOF6	"AOF6;g11206.t1;AOF6;g11206.t1"		"Putative flavin-containing amine oxidase;Putative flavin-containing amine oxidase"
+Cre10.g449750	"GMM:26.22;GMM:11.1.12"	"misc.short chain dehydrogenase/reductase (SDR);lipid metabolism.FA synthesis and FA elongation.ACP protein"		"GO:0055114;GO:0016788;GO:0009058;GO:0008152;GO:0003824"	"oxidation-reduction process;hydrolase activity, acting on ester bonds;biosynthetic process;metabolic process;catalytic activity"	PKS1	"PKS1;g11056.t1;g11056.t1;PKS1"	"PKS1;PKS1"	"Contains beta-ketoacyl-ACP synthase domains and polyketide synthase KR domains; the largest gene in Chlamydomonas; induced in 2-d old zygotes; mutant zygotes have lost the central cell wall layer and the 50 nm knob-like structures, as well as dessication tolerance; null-allele mutant was isolated (PMID 29743196);Contains beta-ketoacyl-ACP synthase domains and polyketide synthase KR domains; the largest gene in Chlamydomonas; induced in 2-d old zygotes; mutant zygotes have lost the central cell wall layer and the 50 nm knob-like structures, as well as dessication tolerance; null-allele mutant was isolated (PMID 29743196)"
+Cre10.g440900	GMM:27.1.19	RNA.processing.ribonucleases				RRP43	"g10850.t1;Cre10.g440900.t1.1;RRP43"	RRP43	"putative PH domain-containing exosome subunit of the Rrp42 group"
+Cre10.g432900	GMM:3.5	"minor CHO metabolism.others"					"AKR3;g10681.t1;Cre10.g432900.t1.1;AKR3;g10681.t1;Cre10.g432900.t1.1;g10681.t1;AKR3;Cre10.g432900.t1.1"		
+Cre10.g431950	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g10661.t1;Cre10.g431950.t1.1;Cre10.g431950.t1.1;g10661.t1"		
+Cre10.g421150			"Secretory pathway"						
+Cre10.g441250			"Secretory pathway"				"Cre10.g441250.t1.1;g10858.t1"	TMEM231	"Ortholog of TMEM231 in humans; Human TMEM231 encodes a transmembrane protein, which is a component of the B9 complex involved in the formation of the diffusion barrier between the cilia and plasma membrane;"
+Cre10.g466650				GO:0005509	"calcium ion binding"	FAP252	"Cre10.g466650.t1.1;g11437.t1;g11437.t1;Cre10.g466650.t1.1;g11437.t1;Cre10.g466650.t1.1"	"FAP252;FAP252;FAP252"	"Flagellar Associated Protein; found in the flagellar proteome; in basal body proteome as BUG1 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 157384]; Altered pI in DRC mutant axonemes; not conserved;Flagellar Associated Protein; found in the flagellar proteome; in basal body proteome as BUG1 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 157384]; Altered pI in DRC mutant axonemes; not conserved;Flagellar Associated Protein; found in the flagellar proteome; in basal body proteome as BUG1 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 157384]; Altered pI in DRC mutant axonemes; not conserved"
+Cre10.g440650				"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		"g10845.t1;g10845.t1"		
+Cre10.g427950	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g10570.t1;g10570.t1;g10570.t1;g10570.t1;g10570.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre10.g462300	"GMM:31.4;GMM:17.2.2"	"cell.vesicle transport;hormone metabolism.auxin.signal transduction"		GO:0035091	"phosphatidylinositol binding"		g11332.t1		
+Cre10.g449650			Chloroplast				g11054.t1		
+Cre10.g440400			Mitochondrion				"g10840.t1;Cre10.g440400.t1.1"		
+Cre10.g437700	GMM:29.4	"protein.postranslational modification"					"g10784.t3;Cre10.g437700.t1.1"		
+Cre10.g434650	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0035434;GO:0016021;GO:0005375"	"copper ion transmembrane transport;integral component of membrane;copper ion transmembrane transporter activity"	CTR3	"g10719.t1;g10719.t1;g10719.t1"	"CTR3;CTR3;CTR3"	"Copper transport related; high similarity to CTR type copper ion transporter CTR2 (q.v.), of which it is a close neighbour in the genome (33.5 kb away); has the motif MxxxM-X13-GxxxG per Vinzenz Unger, but appears to lack TM2 and TM3; appears to have cleavable signal sequence; putative copper transport accessory protein; Similarity to N-terminal soluble domain of CTR2; does not rescue yeast ctr1 mutant; Target of CRR1;Copper transport related; high similarity to CTR type copper ion transporter CTR2 (q.v.), of which it is a close neighbour in the genome (33.5 kb away); has the motif MxxxM-X13-GxxxG per Vinzenz Unger, but appears to lack TM2 and TM3; appears to have cleavable signal sequence; putative copper transport accessory protein; Similarity to N-terminal soluble domain of CTR2; does not rescue yeast ctr1 mutant; Target of CRR1;Copper transport related; high similarity to CTR type copper ion transporter CTR2 (q.v.), of which it is a close neighbour in the genome (33.5 kb away); has the motif MxxxM-X13-GxxxG per Vinzenz Unger, but appears to lack TM2 and TM3; appears to have cleavable signal sequence; putative copper transport accessory protein; Similarity to N-terminal soluble domain of CTR2; does not rescue yeast ctr1 mutant; Target of CRR1"
+Cre10.g451300	GMM:28.99	DNA.unspecified	Chloroplast	"GO:0008408;GO:0006139;GO:0003676"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding"	EXN13	"EXN13;g11090.t1;EXN13;g11090.t1"		
+Cre10.g448350			"Secretory pathway"	GO:0016020	membrane		"g11024.t1;g11024.t1"		
+Cre10.g425550	GMM:3.5	"minor CHO metabolism.others"					"g10517.t1;g10517.t1"		
+Cre10.g438450						LTH1	"g10800.t1;g10800.t1"	"LTH1;LTH1"	"belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox; null-allele mutant was isolated (PMID 29743196);belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox; null-allele mutant was isolated (PMID 29743196)"
+Cre10.g444150	"GMM:29.5.11.4.2;GMM:29.4.1.59"	"protein.degradation.ubiquitin.E3.RING;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX"		"GO:0016020;GO:0005525"	"membrane;GTP binding"		"g10921.t1;g10921.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre10.g431750			"Secretory pathway"				"g10657.t1;g10657.t1;g10657.t1"		
+Cre10.g427150							"g10553.t1;SPL16;Cre10.g427150.t1.1"		"Isy1-like splicing family protein, involved in optimizing splicing"
+Cre10.g457050			"Secretory pathway"				"Cre10.g457013.t1.2;g11214.t1;Cre10.g457013.t1.2;g11214.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre10.g430350			Chloroplast				"g10627.t1;Cre10.g430350.t1.1;g10627.t1;Cre10.g430350.t1.1"	"POB23;POB23"	"Found in basal body proteome;Found in basal body proteome"
+Cre10.g422750				"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	MOT10	"g10459.t1;MOT10"	MOT10	"identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre10.g421250	GMM:31.4	"cell.vesicle transport"	Mitochondrion	"GO:0006887;GO:0000145"	"exocytosis;exocyst"	EXO70	"Cre10.g421250.t1.1;EXO70;g10425.t1"	EXO70	"Hypothetical Conserved Protein. Similar to Exo70, a subunit of the Exocyst."
+Cre10.g456420			"Secretory pathway"						
+Cre10.g456460			Chloroplast						
+Cre10.g466000				"GO:0005739;GO:0004129"	"mitochondrion;cytochrome-c oxidase activity"		"g11421.t1;Cre10.g466000.t1.1"		
+Cre10.g426950	GMM:26.1	misc.misc2		"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A3	"Cre10.g426950.t1.1;g10549.t1;CYP30"	CYP739A3	"Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols."
+Cre10.g428600							g10584.t1		
+Cre10.g445100			Chloroplast	"GO:0006355;GO:0005739;GO:0003690"	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	CGL50	"g10942.t1;g10942.t1"	"CGL50;CGL50"	
+Cre10.g426200			Mitochondrion			OPR44	"RAP4;CLR21;g10531.t1"	OPR44	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain"
+Cre10.g450254			Chloroplast						
+Cre10.g446850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING					g10992.t1		
+Cre10.g446450			Mitochondrion	GO:0000160	"phosphorelay signal transduction system"		"Cre10.g446450.t1.1;g10984.t1"		
+Cre10.g436150	GMM:18.4.9	"Co-factor and vitamine metabolism.pantothenate.dephospho-CoA kinase (DPCK)"		"GO:0015937;GO:0005524;GO:0004140"	"coenzyme A biosynthetic process;ATP binding;dephospho-CoA kinase activity"	COA6	"g10754.t1;COA6"	COAE1	"Catalyzes the final step (of five) of pantothenate biosynthesis from CoA; Named for dephospho-CoA kinase in E. coli (coaE)"
+Cre10.g464325			"Secretory pathway"				"g11378.t1;g11378.t1;g11378.t1"		
+Cre10.g459950							g11278.t2		
+Cre10.g431850						PGM18	"Cre10.g431850.t1.1;PGM18;g10659.t1;Cre10.g431850.t1.1;PGM18;g10659.t1"		"Putative phosphoglycerate mutase;Putative phosphoglycerate mutase"
+Cre10.g421750			"Secretory pathway;Chloroplast"	GO:0016020	membrane	CGL32	"g10436.t1;CGL32;g10436.t1;CGL32"	"FAX1;FAX1"	"Conserved in the Green Lineage; Transmembrane protein involved in fatty-acid export from the chloroplast; Presumably located in the inner envelope membrane;Conserved in the Green Lineage; Transmembrane protein involved in fatty-acid export from the chloroplast; Presumably located in the inner envelope membrane"
+Cre10.g426632			Chloroplast						
+Cre10.g454550	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"				COX19	"Cre10.g454550.t1.1;g11158.t2;COX19"	COX19	"Similar to Cox19 protein, involved in assembly of cytochrome oxidase;"
+Cre10.g450600	GMM:29.2.2.50	"protein.synthesis.ribosome biogenesis.BRIX"	Chloroplast	GO:0005515	"protein binding"		"g11073.t1;g11073.t1"		
+Cre10.g417450							g10335.t1		
+Cre10.g462250	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"	REF1	"g11331.t1;Cre10.g462250.t1.1;REF1"	REF1	"Nuclear protein that binds to RNA and to Mex67p, required for export of poly(A)+ mRNA from the nucleus; member of the REF (RNA and export factor binding proteins) family; homologue of YRA1 and YRA2 yeast proteins. Contains one RNA recognition motif (RRM); null-allele mutant was isolated (PMID 29743196)"
+Cre10.g459350			Chloroplast			OPR49	"RAP5;g11266.t1"	OPR49	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain"
+Cre10.g452650	GMM:29.3.2	protein.targeting.mitochondria		"GO:0015450;GO:0006886;GO:0005744"	"P-P-bond-hydrolysis-driven protein transmembrane transporter activity;intracellular protein transport;mitochondrial inner membrane presequence translocase complex"	TIM17	"g11117.t1;Cre10.g452650.t1.1"	TIM17	"Mitochondrial import inner membrane translocase subunit Tim17. Essential component of the TIM23 complex, a complex that mediates the translocation of transit peptide-containing proteins across the mitochondrial inner membrane"
+Cre10.g455300	GMM:27.1	RNA.processing		GO:0006396	"RNA processing"	SMP1	"Cre10.g455300.t1.1;SMP1;g11174.t1"	SMP1	"putative sm protein 1, small nuclear ribonucleoprotein Sm D3 (snRNP core protein D3)"
+Cre10.g452300			Chloroplast	"GO:0008168;GO:0006139"	"methyltransferase activity;nucleobase-containing compound metabolic process"		"Cre10.g452300.t1.1;g11110.t1"		
+Cre10.g437100							g10772.t1		
+Cre10.g454025				"GO:0016560;GO:0005778;GO:0005515"	"protein import into peroxisome matrix, docking;peroxisomal membrane;protein binding"		"g11148.t1;Cre10.g454050.t2.1;g11148.t1;Cre10.g454050.t2.1;g11148.t1;Cre10.g454050.t2.1;g11148.t1;Cre10.g454050.t2.1"		
+Cre10.g430626			Mitochondrion						
+Cre10.g445153			Chloroplast						
+Cre10.g442600	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0006810;GO:0005215"	"transmembrane transport;membrane;transport;transporter activity"	XUV5	"Cre10.g442600.t1.1;UAPA2;g10888.t2;XUV5;XUV5;UAPA2;g10888.t2;Cre10.g442600.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre10.g442900	GMM:28.1.1	"DNA.synthesis/chromatin structure.retrotransposon/transposase"				tnp25			
+Cre10.g449950							"g11060.t1;Cre10.g449950.t1.1"		
+Cre10.g445226	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion						
+Cre10.g430900	GMM:31.1	cell.organisation		"GO:0005815;GO:0000922;GO:0000226"	"microtubule organizing center;spindle pole;microtubule cytoskeleton organization"		"g10640.t1;g10640.t1"		
+Cre10.g435550						DOH1	"DOH1;g10741.t1;Cre10.g435550.t1.1"	DOH1	"hydroxylates deoxyhypusine, the last step in formation of hypusine (PMID: 17476569); this unusual aminoacid is found uniquely on a specific residue of eIF5 and is important for the control of cellular proliferation and growth (PMID: 16600425); ts-lethal mutant was isolated (PMID 29743196)"
+Cre10.g418500							"g10361.t1;g10361.t1;g10361.t1;g10361.t1;g10361.t1"		
+Cre10.g461850									
+Cre10.g465793			Mitochondrion						
+Cre10.g467200	"GMM:33.3.1;GMM:31.3"	"development.multitarget.target of rapamycin;cell.cycle"	Mitochondrion	"GO:0016773;GO:0005515"	"phosphotransferase activity, alcohol group as acceptor;protein binding"	ATR1	"ATR1;g11448.t1;ATR1;g11448.t1"		"DNA damage sensing protein kinase homolog; related to ataxia telangiectasia RAD3/ATRprotein. PI3K related;DNA damage sensing protein kinase homolog; related to ataxia telangiectasia RAD3/ATRprotein. PI3K related"
+Cre10.g459550							"g11270.t1;g11270.t1;g11270.t1"	"B9D2B;B9D2B;B9D2B"	"Transition zone protein involved in cIlia stability;Transition zone protein involved in cIlia stability;Transition zone protein involved in cIlia stability"
+Cre10.g462650							"Cre10.g462650.t1.1;g11340.t1"		
+Cre10.g421021							"g10419.t1;Cre10.g421021.t1.1"		
+Cre10.g446700	"GMM:31.1;GMM:27.3.99"	"cell.organisation;RNA.regulation of transcription.unclassified"		GO:0008270	"zinc ion binding"	ANK28	"g10989.t1;ANK28;Cre10.g446700.t1.1"		"protein of unknown function with ankyrin repeats"
+Cre10.g447450							"g11005.t1;Cre10.g447450.t1.1"		
+Cre10.g439850	GMM:28.99	DNA.unspecified	"Secretory pathway"	GO:0016021	"integral component of membrane"		"Cre10.g439850.t1.1;g10829.t1;Cre10.g439850.t1.1;g10829.t1;Cre10.g439850.t1.1;g10829.t1"		
+Cre10.g420250			Mitochondrion						
+Cre10.g448850	GMM:29.5.3	"protein.degradation.cysteine protease"	Chloroplast	"GO:0006508;GO:0005622;GO:0004198"	"proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity"	FAP135	"Cre10.g448850.t1.1;CAL5;ODA5AK;FAP135;g11034.t1"	FAP135	"Similar to Calpain cystein proteases"
+Cre10.g436500	GMM:26.13	"misc.acid and other phosphatases"		GO:0016787	"hydrolase activity"		"XPP;g10761.t1;Cre10.g436500.t1.1"		"SurE is known to be related to starvation survival"
+Cre10.g456440			Chloroplast						
+Cre10.g463100							"Cre10.g463100.t1.1;g11349.t1"		
+Cre10.g454951									
+Cre10.g447400							"Cre10.g447400.t1.1;g11004.t1"		
+Cre10.g430250	"GMM:26.2;GMM:10.3.2"	"misc.UDP glucosyl and glucoronyl transferases;cell wall.hemicellulose synthesis.glucuronoxylan"				ELG21	"g10625.t1;ELG21;Cre10.g430250.t1.1;g10625.t1;ELG21;Cre10.g430250.t1.1;Cre10.g430250.t1.1;ELG21;g10625.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre10.g460250			"Secretory pathway"				"Cre10.g460250.t1.1;g11284.t1"		
+Cre10.g446100	GMM:21.1	redox.thioredoxin	Chloroplast	"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRXy	"g10976.t1;TRXY;TRX6;Cre10.g446100.t1.1"	TRXY1	"Initially identified in Chlamydomonas; chloroplastic localization confirmed experimentally in Arabidopsis [PMID: 15531707]; TRX y could be involved in oxidative stress responses as it is the most efficient chloroplastic TRX for reduction of Peroxiredoxin-Q, a chloroplastic TRX dependent peroxidase"
+Cre10.g420512			"Secretory pathway"				"g10405.t2;Cre10.g420521.t2.1"		
+Cre10.g465200									
+Cre10.g448600							"g11029.t1;Cre10.g448600.t1.1;Cre10.g448600.t1.1;g11029.t1;g11029.t1;Cre10.g448600.t1.1;Cre10.g448600.t1.1;g11029.t1"		
+Cre10.g429350							"g10606.t1;Cre10.g429350.t1.1;Cre10.g429350.t1.1;g10606.t1;g10606.t1;Cre10.g429350.t1.1"		
+Cre10.g439050	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	Chloroplast			MCP7	"Cre10.g439050.t1.1;MCP7;MITC7;g10813.t1"		
+Cre10.g455600	"GMM:31.2;GMM:28.99;GMM:28.1;GMM:27.3.63"	"cell.division;DNA.unspecified;DNA.synthesis/chromatin structure;RNA.regulation of transcription.PHD finger transcription factor"	Chloroplast	"GO:0005524;GO:0005515"	"ATP binding;protein binding"	ORC1	"DIV74;g11180.t1;ORC1"	ORC1	"Homologous to eukaryotic ORC1, DNA replication control protein. s-lethal mutations block DNA replication (PMID 25336509)"
+Cre10.g460466	GMM:29.5.11.4.4	protein.degradation.ubiquitin.E3.APC				APC2:3frag	g11289.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g424050			Mitochondrion				g10486.t1		
+Cre10.g442800	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0006810;GO:0005215"	"transmembrane transport;membrane;transport;transporter activity"	XUV6	"g10892.t1;XUV6;UAPA1;UAPA1;XUV6;g10892.t1"		"Target of CRR1;Target of CRR1"
+Cre10.g438400						LTH2	"g10799.t1;g10799.t1;g10799.t1;g10799.t1"	"LTH2;LTH2;LTH2;LTH2"	"belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox;belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox;belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox;belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox"
+Cre10.g417675			"Secretory pathway"						
+Cre10.g439800			"Secretory pathway"				"g10828.t1;Cre10.g439800.t1.1"		
+Cre10.g447650							"g11009.t1;Cre10.g447650.t1.1"		
+Cre10.g417700	GMM:29.2.1.2.2.3	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L3"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL3	"Cre10.g417700.t1.1;g10343.t1;g10343.t1;Cre10.g417700.t1.1;Cre10.g417700.t1.1;g10343.t1;g10343.t1;Cre10.g417700.t1.1;g10343.t1;Cre10.g417700.t1.1"	"RPL3;RPL3;RPL3;RPL3;RPL3"	"Cytosolic 60S large ribosomal subunit protein L3;Cytosolic 60S large ribosomal subunit protein L3;Cytosolic 60S large ribosomal subunit protein L3;Cytosolic 60S large ribosomal subunit protein L3;Cytosolic 60S large ribosomal subunit protein L3"
+Cre10.g427800	"GMM:30.2.12;GMM:30.2.11"	"signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI"	"Secretory pathway"				"g10566.t1;g10566.t1;g10566.t1;g10566.t1"		
+Cre10.g452950				"GO:0070588;GO:0055085;GO:0034704;GO:0016020;GO:0006811;GO:0005262;GO:0005216"	"calcium ion transmembrane transport;transmembrane transport;calcium channel complex;membrane;ion transport;calcium channel activity;ion channel activity"	TRP1	"g11123.t1;TRP1;g11123.t1;TRP1"	"TRP1;TRP1"	"TRP-like ion channel protein, expressed in high light;TRP-like ion channel protein, expressed in high light"
+Cre10.g453350				GO:0046872	"metal ion binding"		"Cre10.g453350.t1.1;g11130.t1;Cre10.g453350.t1.1;g11130.t1"		
+Cre10.g448750			Chloroplast				"GT90F21;GT90-21;g11032.t1;g11032.t1;GT90-21;GT90F21"		
+Cre10.g459300			Mitochondrion				"g11265.t1;Cre10.g459300.t1.1;Cre10.g459300.t1.1;g11265.t1"		
+Cre10.g458000			"Secretory pathway"				"Cre10.g458000.t1.1;g11234.t1;Cre10.g458000.t1.1;g11234.t1"		
+Cre10.g458183			Mitochondrion	"GO:0055114;GO:0045300;GO:0006631"	"oxidation-reduction process;acyl-[acyl-carrier-protein] desaturase activity;fatty acid metabolic process"		g11239.t1		
+Cre10.g434150			Chloroplast				"g10709.t1;g10709.t1;g10709.t1;g10709.t1;g10709.t1"		
+Cre10.g463500	"GMM:29.4.1;GMM:29.4;GMM:28.1"	"protein.postranslational modification.kinase;protein.postranslational modification;DNA.synthesis/chromatin structure"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g11359.t1;g11359.t1"		
+Cre10.g439026									
+Cre10.g423700							"g10479.t1;g10479.t1"		
+Cre10.g463400			Mitochondrion				g11357.t1		
+Cre10.g430550							"g10632.t1;Cre10.g430550.t1.1"		
+Cre10.g456554						CSC5	"Cre10.g456554.t1.1;g11204.t1;CSC5"		"function unknown; homologs in Gonium, not Volvox"
+Cre10.g419050	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"	Mitochondrion	"GO:0046961;GO:0046933;GO:0045261;GO:0015986;GO:0005524"	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;proton-transporting ATP synthase complex, catalytic core F(1);ATP synthesis coupled proton transport;ATP binding"	ATP1B	"g10374.t1;ATP1B;g10374.t1;ATP1B"	"ATP1B;ATP1B"	"alpha subunit of the mitochondrial ATP synthase [= human ATP5A1, yeast ATP1]; part of the F1 sector; isoform of ATP1A;alpha subunit of the mitochondrial ATP synthase [= human ATP5A1, yeast ATP1]; part of the F1 sector; isoform of ATP1A"
+Cre10.g445419									
+Cre10.g453700							"g11137.t1;g11137.t1"		
+Cre10.g429650							g10613.t1		
+Cre10.g447735							"Cre10.g447735.t1.1;g11011.t1"		
+Cre10.g418700				GO:0008168	"methyltransferase activity"	DMA4	"Cre10.g418700.t1.1;DMA4;g10366.t1"	DMA4	"Putative DNA methylase, N-6 adenine-specific"
+Cre10.g419443							"Cre10.g419443.t1.1;g10382.t1"		
+Cre10.g446275							"g10980.t1;Cre10.g446282.t1.2;g10980.t1;Cre10.g446282.t1.2;g10980.t1;Cre10.g446282.t1.2"		
+Cre10.g464133	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"	"Mitochondrion;Chloroplast"				"Cre10.g464150.t1.3;g11373.t1"		
+Cre10.g455100						SOUL6	"SOUL6;g11169.t1"		
+Cre10.g463750	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG27	"CYG27;g11364.t1"		"similar to guanylate cyclase 1 (GCYB2) from Homo sapiens"
+Cre10.g466526			"Secretory pathway"				g11434.t1		
+Cre10.g450500	GMM:2	"major CHO metabolism"	Chloroplast	GO:2001070	"starch binding"		"g11071.t1;g11071.t1;g11071.t1;g11071.t1;g11071.t1;g11071.t1;g11071.t1;g11071.t1"		
+Cre10.g458900						SRR33	"SRR33;g11256.t1;g11256.t1;SRR33"		"part of a group of 5 closely-related SRR proteins;part of a group of 5 closely-related SRR proteins"
+Cre10.g450950							"g11083.t1;Cre10.g450950.t1.1"		
+Cre10.g442150			Mitochondrion				"g10879.t1;g10879.t1;g10879.t1"		
+Cre10.g439350			Chloroplast				"Cre10.g439350.t1.1;g10819.t1"		
+Cre10.g452750	GMM:34.8	"transport.metabolite transporters at the envelope membrane"					"TPT16;TPT18;g11119.t1;Cre10.g452750.t1.1"		
+Cre10.g456800							g11209.t1		
+Cre10.g422500							"g10453.t1;g10453.t1;g10453.t1;g10453.t1"		
+Cre10.g449138									
+Cre10.g456050	"GMM:26.7;GMM:11.8"	"misc.oxidases - copper, flavone etc;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016491	"oxidoreductase activity"		"g11190.t2;Cre10.g456050.t1.1;Cre10.g456050.t1.1;g11190.t2;g11190.t2;Cre10.g456050.t1.1;g11190.t2;Cre10.g456050.t1.1;g11190.t2;Cre10.g456050.t1.1"	"AGG6;AGG6;AGG6;AGG6;AGG6"	"Flagellar Flavodoxine, AGG3 Paralog;Flagellar Flavodoxine, AGG3 Paralog;Flagellar Flavodoxine, AGG3 Paralog;Flagellar Flavodoxine, AGG3 Paralog;Flagellar Flavodoxine, AGG3 Paralog"
+Cre10.g453766			Mitochondrion				"g11141.t1;g11141.t1"		
+Cre10.g420600							"g10410.t1;g10410.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre10.g438700	"GMM:33.99;GMM:29.2.2.3.4"	"development.unspecified;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins"		GO:0005515	"protein binding"		g10805.t1		
+Cre10.g438883			Chloroplast				"Cre10.g438900.t2.1;g10809.t1;g10809.t1;Cre10.g438900.t2.1"		
+Cre10.g462816			Chloroplast				g11344.t1		
+Cre10.g460800	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre10.g460800.t1.1;g11297.t1;Cre10.g460800.t1.1;g11297.t1;Cre10.g460800.t1.1;g11297.t1;g11297.t1;Cre10.g460800.t1.1"		
+Cre10.g461300			Mitochondrion						
+Cre10.g427750	GMM:31.1	cell.organisation	Chloroplast	"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN9-3	"g10565.t1;KIN9-3;Cre10.g427750.t1.1"	KIN9C	"kinesin-9 family"
+Cre10.g453050	GMM:31.3	cell.cycle		"GO:0019901;GO:0006355;GO:0000079"	"protein kinase binding;regulation of transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	CYCM1	"CYCM1;Cre10.g453050.t1.1;g11125.t1;Cre10.g453050.t1.1;CYCM1;g11125.t1"	"CYCM1;CYCM1"	"Volvocales specific cyclin; null-allele mutant was isolated (PMID 29743196);Volvocales specific cyclin; null-allele mutant was isolated (PMID 29743196)"
+Cre10.g429850							"Cre10.g429850.t1.1;g10618.t1"		
+Cre10.g424600							g10497.t1		
+Cre10.g457750	GMM:34.6	transport.sulphate		"GO:0055085;GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0008271"	"transmembrane transport;integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;secondary active sulfate transmembrane transporter activity"	SULTR1	"g11229.t1;Cre10.g457750.t1.1;g11229.t1;Cre10.g457750.t1.1;Cre10.g457750.t1.1;g11229.t1"	"SULTR1;SULTR1;SULTR1"	
+Cre10.g436450							"g10760.t2;g10760.t2;g10760.t2;g10760.t2;g10760.t2;g10760.t2"		
+Cre10.g465300			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g11401.t1;g11401.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre10.g440550							g10843.t1		
+Cre10.g428400	"GMM:29.1.30;GMM:23.5.2"	"protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase"	Mitochondrion	"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS7	"PUS7;g10579.t1"		"Possibly targeted to the mitochondria. Also contains a motif RluA found on 23S RNA-specific pseudouridine synthase."
+Cre10.g435350						ESU1	"ESU1;g10737.t2;ESU1a"	ESU1	"The endosulfine domain is a conserved region found in both cAMP-regulated phosphoprotein 19 (ARPP-19) and Alpha/Beta endosulfine. No function has yet been assigned to ARPP-19. Endosulfine is the endogenous ligand for the ATP-dependent potassium (K ATP) channels; this is the shorter and more abundant of two isoforms differing at N-terminus (none appears organelle-targeted)"
+Cre10.g435500	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	"GO:0006414;GO:0005622;GO:0003746"	"translational elongation;intracellular;translation elongation factor activity"	EFT2	"g10740.t1;g10740.t1"	"EFT2;EFT2"	"Elongation factor Ts-like protein, homolog of Arabidopsis AAV43776 - pfam889, EF_TS;Elongation factor Ts-like protein, homolog of Arabidopsis AAV43776 - pfam889, EF_TS"
+Cre10.g455625			Chloroplast				g11181.t1		
+Cre10.g442350							g10883.t1		
+Cre10.g457600							"g11226.t1;g11226.t1"		
+Cre10.g447500	GMM:31.1	cell.organisation	Chloroplast	"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN16-2	"g11006.t1;KIN16-2;KIN12-3;KIN12-3;KIN16-2;g11006.t1;KIN12-3;KIN16-2;g11006.t1"	"KIN16B;KIN16B;KIN16B"	"kinesin-16 family, a new family separated from the polyphyletic kinesin-12 family (PMID: 16481395);kinesin-16 family, a new family separated from the polyphyletic kinesin-12 family (PMID: 16481395);kinesin-16 family, a new family separated from the polyphyletic kinesin-12 family (PMID: 16481395)"
+Cre10.g417730			Mitochondrion						
+Cre10.g442500			Chloroplast				"g10886.t1;Cre10.g442500.t1.1"		
+Cre10.g455900							"Cre10.g455900.t1.1;g11187.t1;g11187.t1;Cre10.g455900.t1.1"		
+Cre10.g429100	"GMM:29.1.40;GMM:29.1.15"	"protein.aa activation.bifunctional aminoacyl-tRNA synthetase;protein.aa activation.proline-tRNA ligase"		"GO:0006433;GO:0006418;GO:0005737;GO:0005524;GO:0004827;GO:0004812;GO:0000166"	"prolyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;proline-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding"		"Cre10.g429100.t1.1;g10601.t1;g10601.t1;Cre10.g429100.t1.1;Cre10.g429100.t1.1;g10601.t1;Cre10.g429100.t1.1;g10601.t1"		
+Cre10.g431800	GMM:14.1	S-assimilation.APS	"Secretory pathway"	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS5	"g10658.t1;Cre10.g431800.t1.1"	ARS5	
+Cre10.g434250	GMM:29.3.2	protein.targeting.mitochondria					"Cre10.g434250.t1.1;g10711.t1"	TIM23	"Component of the TIM23 complex in mitochondria; Orthologous to three TIM23 genes in Arabidopsis thaliana"
+Cre10.g444650							g10932.t1		
+Cre10.g423350							"g10471.t1;Cre10.g423350.t1.1"		
+Cre10.g452900						SMY2	"SMY2;g11122.t1;Cre10.g452900.t1.1"	SMY2	
+Cre10.g449850	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					g11058.t1		
+Cre10.g420150			Chloroplast				g10397.t1		
+Cre10.g426500			Mitochondrion				"Cre10.g426500.t1.1;g10538.t1;Cre10.g426500.t1.1;g10538.t1"		
+Cre10.g461400	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"					"g11312.t1;g11312.t1;g11312.t1;g11312.t1;g11312.t1;g11312.t1;g11312.t1;g11312.t1;g11312.t1;g11312.t1"		
+Cre10.g463250							g11352.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g426000				"GO:0034227;GO:0005737"	"tRNA thio-modification;cytoplasm"	URM1	"g10527.t1;Cre10.g426000.t1.1;URM1"	URM1	"Urm1 (Ubiquitin-Related Modifier1) The Urm1 fold, like those of two closely related proteins MoaD (molybdopterin synthase) and ThiS (sulfur carrier protein), is similar to that of ubiquitin although there is little or no sequence similarity; cd1764"
+Cre10.g438100	"GMM:3.99;GMM:1.2.1"	"minor CHO metabolism.misc;PS.photorespiration.phosphoglycolate phosphatase"				PGP2	"g10792.t1;Cre10.g438100.t1.1;PGP2"		"Phosphoglycolate phosphatase (EC 3.1.3.18), chloroplast precursor; similar to Chlamydomonas PGP1"
+Cre10.g449200	GMM:31.1	cell.organisation		"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"	ANK5	"ANK5;g11045.t1;ANK5;g11045.t1;ANK5;g11045.t1;ANK5;g11045.t1"		"protein of unknown function with ankyrin repeats; null-allele mutant was isolated (PMID 29743196);protein of unknown function with ankyrin repeats; null-allele mutant was isolated (PMID 29743196);protein of unknown function with ankyrin repeats; null-allele mutant was isolated (PMID 29743196);protein of unknown function with ankyrin repeats; null-allele mutant was isolated (PMID 29743196)"
+Cre10.g448900			"Secretory pathway"				"g11035.t1;g11035.t1;g11035.t1;g11035.t1"		
+Cre10.g463934							g11368.t2		
+Cre10.g445150	GMM:28.99	DNA.unspecified		"GO:0008408;GO:0006139;GO:0003676;GO:0002161"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding;aminoacyl-tRNA editing activity"	EXN12	"g10943.t1;EXN12;EXN12;g10943.t1"		
+Cre10.g437829	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"				CGL89	"g10786.t1;Cre10.g437829.t1.1;CGL89;g10786.t1;CGL89;Cre10.g437829.t1.1;CGL89;g10786.t1;Cre10.g437829.t1.1"	"CIA6;CIA6;CIA6"	"Conserved in the Green Lineage; contains SET domain methyltransferase domain, but no activity was demonstrated; mutant shows impaired growth under very low CO2; lower expression of CCP1, LCIB and CAH4 and a disorganized pyrenoid;Conserved in the Green Lineage; contains SET domain methyltransferase domain, but no activity was demonstrated; mutant shows impaired growth under very low CO2; lower expression of CCP1, LCIB and CAH4 and a disorganized pyrenoid;Conserved in the Green Lineage; contains SET domain methyltransferase domain, but no activity was demonstrated; mutant shows impaired growth under very low CO2; lower expression of CCP1, LCIB and CAH4 and a disorganized pyrenoid"
+Cre10.g466200	"GMM:31.3;GMM:31.2"	"cell.cycle;cell.division"	Mitochondrion	GO:0005634	nucleus	CYCAB1	g11427.t1	CYCAB1	"Related to A/B cyclins. Appears to be Volvocalean specific subclade of A and B type cyclins."
+Cre10.g430501	GMM:27.1	RNA.processing		GO:0005515	"protein binding"		"g10631.t1;Cre10.g430500.t1.2;g10631.t1;Cre10.g430500.t1.2;Cre10.g430500.t1.2;g10631.t1;g10631.t1;Cre10.g430500.t1.2;Cre10.g430500.t1.2;g10631.t1;g10631.t1;Cre10.g430500.t1.2"		
+Cre10.g454800			Mitochondrion				"g11163.t1;Cre10.g454800.t1.1"		
+Cre10.g421800			Mitochondrion				"Cre10.g421800.t1.1;g10437.t2"		
+Cre10.g443400							"g10903.t1;g10903.t1"		
+Cre10.g458850			Chloroplast			SRR32	"Cre10.g458850.t1.1;SRR32;g11255.t1"		"part of a group of 5 closely-related SRR proteins"
+Cre10.g456226									
+Cre10.g434850			"Secretory pathway"				"g10724.t1;g10724.t1"		
+Cre10.g462750				GO:0005515	"protein binding"		g11342.t1		
+Cre10.g453400	"GMM:34.99;GMM:30.99;GMM:27.3.67"	"transport.misc;signalling.unspecified;RNA.regulation of transcription.putative transcription regulator"		"GO:0055085;GO:0016020;GO:0005509"	"transmembrane transport;membrane;calcium ion binding"	MSC4	"MSC4;MSCL1;MSC4;MSCL1"		"protein of unknown function with mechanosensitive ion channel (MSC) like domain;protein of unknown function with mechanosensitive ion channel (MSC) like domain"
+Cre10.g431250	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Chloroplast	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG5	"CYG5;g10648.t1;CYG5;g10648.t1;g10648.t1;CYG5"		"Probable domain of larger protein similar to guanylate cyclase beta-2 chain from Bos taurus XP_587526.2;Probable domain of larger protein similar to guanylate cyclase beta-2 chain from Bos taurus XP_587526.2;Probable domain of larger protein similar to guanylate cyclase beta-2 chain from Bos taurus XP_587526.2"
+Cre10.g419000	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					"Cre10.g419000.t1.1;g10373.t1"		
+Cre10.g437550			Chloroplast				"g10781.t1;g10781.t1;g10781.t1"		
+Cre10.g453750							g11140.t1		
+Cre10.g436300			"Secretory pathway"				"Cre10.g436300.t1.1;g10757.t1"		
+Cre10.g462000			Mitochondrion				"g11326.t1;g11326.t1"		
+Cre10.g445850	"GMM:34.99;GMM:34.16"	"transport.misc;transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"		"g10969.t1;MAE14;g10969.t1;MAE14"		
+Cre10.g460400			Chloroplast	GO:0046872	"metal ion binding"		"g11288.t1;g11288.t1;g11288.t1;g11288.t1"		
+Cre10.g456950	GMM:29.5.3	"protein.degradation.cysteine protease"		"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP10	"CEP10;g11212.t1"		"Cysteine-type endopeptidase, papain type"
+Cre10.g454250	GMM:29.6.3.1	"protein.folding.immunophilins (IMM).FKBPs"	Chloroplast	GO:0006457	"protein folding"	FKB16-9	"Cre10.g454250.t1.1;FKB16-9;FKB13;g11152.t1"	FKB16I	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); possibly targeted to thylakoid lumen (by homology to At5g45680 and presence of a RR motif); [PMID: 15701785]"
+Cre10.g420800	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP46	C1d-HC2	FAP46	"Found in the flagellar proteome [PMID: 15998802]; together with FAP221,FAP54, FAP74, C1d-87 and calmodulin, form a single complex in the C1d projection"
+Cre10.g446300	"GMM:29.5;GMM:13.1.3.4.12"	"protein.degradation;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase"		"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	smm36	"Cre10.g446300.t1.1;SMM36;g10981.t1;SMM36;Cre10.g446300.t1.1;g10981.t1;SMM36;g10981.t1;Cre10.g446300.t1.1"		
+Cre10.g450900			Chloroplast				"g11081.t1;Cre10.g450900.t1.1"		
+Cre10.g451600	GMM:26.16	misc.myrosinases-lectin-jacalin	Chloroplast	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	SRR28B	"SRR28B;g11096.t2;SRR28;SRR28;SRR28B;g11096.t2;SRR28B;SRR28;g11096.t2;SRR28B;SRR28;g11096.t2;SRR28;SRR28B;g11096.t2;g11096.t2;SRR28;SRR28B;g11096.t2;SRR28;SRR28B;SRR28;g11096.t2;SRR28B;SRR28;g11096.t2;SRR28B;SRR28B;SRR28;g11096.t2;SRR28B;g11096.t2;SRR28"		"Scavenger receptor cysteine-rich protein, to form a very large protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain; part of a group of 5 closely-related SRR proteins.;Scavenger receptor cysteine-rich protein, to form a very large protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain; part of a group of 5 closely-related SRR proteins.;Scavenger receptor cysteine-rich protein, to form a very large protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain; part of a group of 5 closely-related SRR proteins.;Scavenger receptor cysteine-rich protein, to form a very large protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain; part of a group of 5 closely-related SRR proteins.;Scavenger receptor cysteine-rich protein, to form a very large protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain; part of a group of 5 closely-related SRR proteins.;Scavenger receptor cysteine-rich protein, to form a very large protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain; part of a group of 5 closely-related SRR proteins.;Scavenger receptor cysteine-rich protein, to form a very large protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain; part of a group of 5 closely-related SRR proteins.;Scavenger receptor cysteine-rich protein, to form a very large protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain; part of a group of 5 closely-related SRR proteins.;Scavenger receptor cysteine-rich protein, to form a very large protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain; part of a group of 5 closely-related SRR proteins.;Scavenger receptor cysteine-rich protein, to form a very large protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain; part of a group of 5 closely-related SRR proteins.;Scavenger receptor cysteine-rich protein, to form a very large protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain; part of a group of 5 closely-related SRR proteins."
+Cre10.g436550	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	Chloroplast.Stroma			LCI5	"g10762.t1;LCI5;Cre10.g436550.t1.1;Cre10.g436550.t1.1;g10762.t1;LCI5"	"EPYC1;EPYC1"	"Also known as Low-CO2-inducible protein 5 (LCI5); Low-complexity repeat protein, probably serving as a linker between RuBisCO proteins in the pyrenoid matrix; regulated by CCM1; phopshorylated under low CO2; essential for pyrenoid formation;;Also known as Low-CO2-inducible protein 5 (LCI5); Low-complexity repeat protein, probably serving as a linker between RuBisCO proteins in the pyrenoid matrix; regulated by CCM1; phopshorylated under low CO2; essential for pyrenoid formation;"
+Cre10.g450879	GMM:29.2.2.50	"protein.synthesis.ribosome biogenesis.BRIX"					"Cre10.g450879.t1.1;g11080.t1"		
+Cre10.g421576									
+Cre10.g460532	GMM:29.5.11.4.4	protein.degradation.ubiquitin.E3.APC	Mitochondrion	"GO:0031625;GO:0006511"	"ubiquitin protein ligase binding;ubiquitin-dependent protein catabolic process"	APC2	"g11290.t1;APC2;APC2;g11290.t1"	"APC2;APC2"	"Subunit 2 of Anaphase Promoting Complex. Cell cycle regulated E3 ubiquitin ligase. Cullin-related protein; ts-lethal mutants arrest with 2C DNA content and fail to initiate cleavage plane and complete mitosis (PMID 29743196);Subunit 2 of Anaphase Promoting Complex. Cell cycle regulated E3 ubiquitin ligase. Cullin-related protein; ts-lethal mutants arrest with 2C DNA content and fail to initiate cleavage plane and complete mitosis (PMID 29743196)"
+Cre10.g432700				GO:0006397	"mRNA processing"	SMP10	"SMP10;g10676.t1"	SMP10	"Predicted snRNP core protein; SMP10 name replaces previous PRP1 name."
+Cre10.g441200						LAL3	"LAL3;Cre10.g441200.t1.1;g10857.t1;Cre10.g441200.t1.1;LAL3;g10857.t1;LAL3;Cre10.g441200.t1.1;g10857.t1"		"contains a La domain and DM15 domains in its C-terminal half; similar to At5g21160, a La-like protein (PMID: 17459889);contains a La domain and DM15 domains in its C-terminal half; similar to At5g21160, a La-like protein (PMID: 17459889);contains a La domain and DM15 domains in its C-terminal half; similar to At5g21160, a La-like protein (PMID: 17459889)"
+Cre10.g456000	"GMM:31.6.1.10;GMM:11.8"	"cell.motility.eukaryotes.flagellar associated proteins;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016491	"oxidoreductase activity"	FAP191	"Cre10.g456000.t1.1;g11189.t1;Cre10.g456000.t1.1;g11189.t1"	"FAP191;FAP191"	"Flagellar Associated Protein similar to quinone reductase; one of four highly similar, tandemly-repeated flavodoxins. Other proteins in cluster include the flagellar associated proteins FAP142/AGG3, and AGG6. Found in the flagellar proteome;Flagellar Associated Protein similar to quinone reductase; one of four highly similar, tandemly-repeated flavodoxins. Other proteins in cluster include the flagellar associated proteins FAP142/AGG3, and AGG6. Found in the flagellar proteome"
+Cre10.g442041									
+Cre10.g424700	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g10499.t1;g10499.t1"		
+Cre10.g455050							"Cre10.g455050.t1.1;g11168.t1"		
+Cre10.g447850			Chloroplast			YEE2	"Cre10.g447850.t1.1;g11014.t1;YEE2;YEE2;Cre10.g447850.t1.1;g11014.t1;Cre10.g447850.t1.1;YEE2;g11014.t1"	"YEE2;YEE2;YEE2"	"contains 2 DUF395 domains, found in YeeE and YedE from Escherichia coli. These proteins are integral membrane proteins of unknown function. Many of these proteins contain two homologous regions that are represented by this entry. This region contains several conserved glycines and an invariant cysteine that is probably an important functional residue;contains 2 DUF395 domains, found in YeeE and YedE from Escherichia coli. These proteins are integral membrane proteins of unknown function. Many of these proteins contain two homologous regions that are represented by this entry. This region contains several conserved glycines and an invariant cysteine that is probably an important functional residue;contains 2 DUF395 domains, found in YeeE and YedE from Escherichia coli. These proteins are integral membrane proteins of unknown function. Many of these proteins contain two homologous regions that are represented by this entry. This region contains several conserved glycines and an invariant cysteine that is probably an important functional residue"
+Cre10.g465700			"Secretory pathway"	"GO:0055114;GO:0016715;GO:0005507;GO:0004497"	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;copper ion binding;monooxygenase activity"		"Cre10.g465700.t1.1;g11411.t1;Cre10.g465700.t1.1;g11411.t1"		
+Cre10.g418350			"Secretory pathway"				g10358.t1		
+Cre10.g437000			"Secretory pathway"				"g10770.t1;Cre10.g437000.t1.1;g10770.t1;Cre10.g437000.t1.1"		
+Cre10.g425501	GMM:27.3.54	"RNA.regulation of transcription.histone acetyltransferases"		GO:0005515	"protein binding"		"g10516.t1;g10516.t1;g10516.t1"		
+Cre10.g454600							g11159.t1	FAP15	"Found in the flagellar proteome"
+Cre10.g423550	"GMM:13.2.5.2.11;GMM:13.2.5.2;GMM:13.1.5.2.11"	"amino acid metabolism.degradation.serine-glycine-cysteine group.glycine.threonine aldolase;amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.threonine aldolase"		"GO:0016829;GO:0006520"	"lyase activity;cellular amino acid metabolic process"		"ATA2;g10476.t1;ATA2;g10476.t1;g10476.t1;ATA2;g10476.t1;ATA2"		"Alanine racemase/threonine aldolase;Alanine racemase/threonine aldolase;Alanine racemase/threonine aldolase;Alanine racemase/threonine aldolase"
+Cre10.g445050			"Secretory pathway"	"GO:0055085;GO:0016020;GO:0008324;GO:0006814;GO:0006813;GO:0005215"	"transmembrane transport;membrane;cation transmembrane transporter activity;sodium ion transport;potassium ion transport;transporter activity"	SLT3	"g10941.t1;Cre10.g445050.t1.1;Cre10.g445050.t1.1;g10941.t1"	"SLT3;SLT3"	"SAC1-like transporter 3, putative sodium/sulfate co-transporter, transcript is down-regulated during sulfur-deprivation; related to the SAC1 protein which regulates sulfur-deficiency responses [PMID: 16307308];SAC1-like transporter 3, putative sodium/sulfate co-transporter, transcript is down-regulated during sulfur-deprivation; related to the SAC1 protein which regulates sulfur-deficiency responses [PMID: 16307308]"
+Cre10.g430950	"GMM:28.2;GMM:27.3.44"	"DNA.repair;RNA.regulation of transcription.chromatin remodeling factors"		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"	RAD54B	"g10641.t1;SRH18"	RAD54B	"ChromDB CHR3414, a SWI2/SNF2-like protein in the RAD54/ATRX subclass; the yeast homologue RAD54 facilitates strand invasion by the RAD51 nucleoprotein filament"
+Cre10.g422150	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"	"Secretory pathway"	"GO:0008236;GO:0006508"	"serine-type peptidase activity;proteolysis"		"g10444.t1;g10444.t1;g10444.t1"		
+Cre10.g425251							"g10511.t1;g10511.t1"		
+Cre10.g452076			"Secretory pathway"						
+Cre10.g438650	"GMM:23.4.3;GMM:23.4.1"	"nucleotide metabolism.phosphotransfer and pyrophosphatases.uridylate kinase;nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase"	Chloroplast	"GO:0019205;GO:0006139;GO:0005524"	"nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding"	ADK2	"ADK2;Cre10.g438650.t1.1;g10804.t1;ADK2;g10804.t1;Cre10.g438650.t1.1"		"Putative adenylate kinase;Putative adenylate kinase"
+Cre10.g465757			Mitochondrion						
+Cre10.g466800							"g11440.t1;g11440.t1;g11440.t1;g11440.t1"		
+Cre10.g443700			"Secretory pathway"	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"				
+Cre10.g456480			Mitochondrion				g11201.t1		
+Cre10.g439450							g10821.t1		
+Cre10.g466350	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"CDPK2;SNRK2.8;CKIN2.8;g11430.t1"	SNRK2H	"Mediates abiotic stress responses"
+Cre10.g456851			Mitochondrion				"Cre10.g456850.t1.3;g11210.t1;TMG4"		
+Cre10.g441050	GMM:27.3.2	"RNA.regulation of transcription.alfin-like"		"GO:0042393;GO:0006355"	"histone binding;regulation of transcription, DNA-templated"		"g10854.t1;Cre10.g441050.t1.1"		
+Cre10.g444300			Chloroplast			IQA4			
+Cre10.g461750	GMM:27.3.46	"RNA.regulation of transcription.DNA methyltransferases"				DMC5	"DMC5;g11319.t1;DMC5;g11319.t1;g11319.t1;DMC5;g11319.t1;DMC5"		"Putative DNMT1-type cytosine-C5 specific DNA methylase; protein contains both a methylase domain and a bromo adjacent homology (BAH) domain. ChromoDB DMT341;Putative DNMT1-type cytosine-C5 specific DNA methylase; protein contains both a methylase domain and a bromo adjacent homology (BAH) domain. ChromoDB DMT341;Putative DNMT1-type cytosine-C5 specific DNA methylase; protein contains both a methylase domain and a bromo adjacent homology (BAH) domain. ChromoDB DMT341;Putative DNMT1-type cytosine-C5 specific DNA methylase; protein contains both a methylase domain and a bromo adjacent homology (BAH) domain. ChromoDB DMT341"
+Cre10.g419500							"g10384.t1;Cre10.g419500.t1.1;g10384.t1;Cre10.g419500.t1.1"		
+Cre10.g445347			"Secretory pathway"						
+Cre10.g433150				GO:0005515	"protein binding"		"Cre10.g433150.t1.1;g10686.t1"		
+Cre10.g464264			Chloroplast	GO:0008080	"N-acetyltransferase activity"		"Cre10.g464264.t1.1;g11376.t1"		
+Cre10.g424775	GMM:34.12	transport.metal	"Secretory pathway;Chloroplast"	"GO:0046872;GO:0030001;GO:0000166"	"metal ion binding;metal ion transport;nucleotide binding"	CTP2	"Cre10.g424800.t2.1;PAA1;g10501.t1;PCH1;g10501.t1;PAA1;Cre10.g424800.t2.1;PCH1;PAA1;Cre10.g424800.t2.1;g10501.t1;PCH1;PCH1;PAA1;Cre10.g424800.t2.1;g10501.t1;PAA1;Cre10.g424800.t2.1;PCH1;g10501.t1;g10501.t1;PCH1;Cre10.g424800.t2.1;PAA1;PCH1;Cre10.g424800.t2.1;PAA1;g10501.t1"	"CTP2;CTP2;CTP2;CTP2;CTP2;CTP2;CTP2"	"Cu transport across inner envelope of chloroplast; Ortholog of PAA1 from Arabidopsis thaliana; Like the ortholog in A. thaliana, this locus encodes two proteins by means of alternative splicing that produces a PCH1-like soluble protein and PAA1-like transcript;;Cu transport across inner envelope of chloroplast; Ortholog of PAA1 from Arabidopsis thaliana; Like the ortholog in A. thaliana, this locus encodes two proteins by means of alternative splicing that produces a PCH1-like soluble protein and PAA1-like transcript;;Cu transport across inner envelope of chloroplast; Ortholog of PAA1 from Arabidopsis thaliana; Like the ortholog in A. thaliana, this locus encodes two proteins by means of alternative splicing that produces a PCH1-like soluble protein and PAA1-like transcript;;Cu transport across inner envelope of chloroplast; Ortholog of PAA1 from Arabidopsis thaliana; Like the ortholog in A. thaliana, this locus encodes two proteins by means of alternative splicing that produces a PCH1-like soluble protein and PAA1-like transcript;;Cu transport across inner envelope of chloroplast; Ortholog of PAA1 from Arabidopsis thaliana; Like the ortholog in A. thaliana, this locus encodes two proteins by means of alternative splicing that produces a PCH1-like soluble protein and PAA1-like transcript;;Cu transport across inner envelope of chloroplast; Ortholog of PAA1 from Arabidopsis thaliana; Like the ortholog in A. thaliana, this locus encodes two proteins by means of alternative splicing that produces a PCH1-like soluble protein and PAA1-like transcript;;Cu transport across inner envelope of chloroplast; Ortholog of PAA1 from Arabidopsis thaliana; Like the ortholog in A. thaliana, this locus encodes two proteins by means of alternative splicing that produces a PCH1-like soluble protein and PAA1-like transcript;"
+Cre10.g451700			Chloroplast				"g11097.t1;g11097.t1"		
+Cre10.g418950	GMM:31.1	cell.organisation	Chloroplast	"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN10-2	"g10371.t2;KIN10-2;KIN4-4;IAR1;KIN4-4;KIN10-2;g10371.t2;IAR1;IAR1;KIN4-4;KIN10-2;g10371.t2"	"KIN10B;KIN10B;KIN10B"	"Kinesin family member, kinesin-4/10 family, homolog of Volvox carteri invA [GI:31879428, PMID: 12809605]. Needed in Volvox for involution;Kinesin family member, kinesin-4/10 family, homolog of Volvox carteri invA [GI:31879428, PMID: 12809605]. Needed in Volvox for involution;Kinesin family member, kinesin-4/10 family, homolog of Volvox carteri invA [GI:31879428, PMID: 12809605]. Needed in Volvox for involution"
+Cre10.g433300							"g10689.t1;g10689.t1;g10689.t1"		
+Cre10.g459100							g11260.t1		
+Cre10.g421400			"Secretory pathway"				"Cre10.g421400.t1.1;g10428.t1"		
+Cre10.g429750	"GMM:31.6.1.10;GMM:30.99"	"cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified"					"g10616.t1;g10616.t1;g10616.t1;g10616.t1;g10616.t1"	"FAP417;FAP417;FAP417;FAP417;FAP417"	"Found in the flagellar proteome;Found in the flagellar proteome;Found in the flagellar proteome;Found in the flagellar proteome;Found in the flagellar proteome"
+Cre10.g425800	GMM:28.99	DNA.unspecified				ORN1	"g10523.t1;ORN1;Cre10.g425800.t1.1"	ORN1	"Homolog of bacterial oligoribonuclease (Orn), ribonuclease H superfamily, DEDD exonuclease; REX2, REXO2"
+Cre10.g433700			"Secretory pathway"				"g10698.t2;g10698.t2;g10698.t2"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre10.g426650			"Secretory pathway"						
+Cre10.g458050	GMM:26.26.1	"misc.aminotransferases.aminotransferase class IV family protein"		"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	BCA3	"BCA3;Cre10.g458050.t1.1;g11235.t1;Cre10.g458050.t1.1;g11235.t1;BCA3"		"class IV aminotransferase; performs the last step of biosynthesis of Leu, Ile and/or Vaal, transaminating the precursor using Glu as an amine donnor; there are 3 paralogs;class IV aminotransferase; performs the last step of biosynthesis of Leu, Ile and/or Vaal, transaminating the precursor using Glu as an amine donnor; there are 3 paralogs"
+Cre10.g444850	GMM:34.21	transport.calcium		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	CAV7	"CAV7;g10937.t1"	CAV7	"Voltage-dependent 4-domain calcium channel, alpha subunit; may exhibit altered ion selectivity as conserved P-loop loci differ from mammalian Ca2+ channels (PMID: 8968582)"
+Cre10.g432500	GMM:28.1	"DNA.synthesis/chromatin structure"		GO:0007076	"mitotic chromosome condensation"		"Cre10.g432500.t1.1;g10672.t1;CND1"		"Condensin complex component, non-SMC subunit (Cnd1 homolog). ChromoDB CPD341"
+Cre10.g432050						FAP284	"Cre10.g432050.t1.1;g10663.t1"	FAP284	"Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre10.g429600	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	"Secretory pathway"	GO:0008270	"zinc ion binding"		"g10611.t1;Cre10.g429600.t1.1;g10611.t1;Cre10.g429600.t1.1"		
+Cre10.g420450							"g10403.t1;Cre10.g420450.t1.1;g10403.t1;Cre10.g420450.t1.1;Cre10.g420450.t1.1;g10403.t1"		
+Cre10.g420050	GMM:28.1.1	"DNA.synthesis/chromatin structure.retrotransposon/transposase"					g10395.t1		
+Cre10.g429500			Mitochondrion				g10609.t1		
+Cre10.g446000							"g10974.t1;g10974.t1"		
+Cre10.g434700			Chloroplast				"Cre10.g434700.t1.1;g10720.t1"		
+Cre10.g433350	"GMM:33.3;GMM:27.3.28"	"development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"g10690.t1;g10690.t1;g10690.t1;g10690.t1;g10690.t1"		
+Cre10.g430150	"GMM:35.1.5;GMM:1.1.1.3"	"not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;PS.lightreaction.photosystem II.biogenesis"	Chloroplast.Stroma.Thylakoid.Membrane			LPA1	"Cre10.g430150.t1.1;g10623.t1;REP27;LPA1;LPA1;REP27;Cre10.g430150.t1.1;g10623.t1"	"LPA1;LPA1"	"Intrinsic thylakoid membrane protein with TPR and DUF3493 domains; homologous to cyanobacterial PratA and LPA1 of Arabidopsis; also known as REP27;Intrinsic thylakoid membrane protein with TPR and DUF3493 domains; homologous to cyanobacterial PratA and LPA1 of Arabidopsis; also known as REP27"
+Cre10.g441450							"g10863.t1;Cre10.g441450.t1.1"		
+Cre10.g426750	"GMM:26.10;GMM:26.1"	"misc.cytochrome P450;misc.misc2"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A5	"CYP29;g10545.t1;Cre10.g426750.t1.1;CYP29;g10545.t1;Cre10.g426750.t1.1;g10545.t1;Cre10.g426750.t1.1;CYP29;Cre10.g426750.t1.1;g10545.t1;CYP29"	"CYP739A5;CYP739A5;CYP739A5;CYP739A5"	"Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols.;Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols.;Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols.;Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols."
+Cre10.g452200			"Secretory pathway"				"g11108.t1;g11108.t1"		
+Cre10.g428350			Chloroplast				"g10578.t1;Cre10.g428350.t1.1;mL40"	MRPL40	
+Cre10.g449550	GMM:21.5	redox.peroxiredoxin		"GO:0055114;GO:0016491;GO:0016209"	"oxidation-reduction process;oxidoreductase activity;antioxidant activity"	PRX3	"Cre10.g449550.t1.1;g11052.t1"	PRX3	"thioredoxin dependent peroxidase, probably cytosolic"
+Cre10.g439100	"GMM:29.6.2.2;GMM:29.6"	"protein.folding.chaperones and co-chaperones.HSP60s;protein.folding"	Cytosol	GO:0005524	"ATP binding"	CCT1	"g10814.t1;Cre10.g439100.t1.1;CCT1;Cre10.g439100.t1.1;CCT1;g10814.t1"	"CCT1;CCT1"	"T-complex protein 1, alpha subunit (TCP-1-alpha) (CCT-alpha) (TCPA); subunit of cytosolic chaperonin complex;T-complex protein 1, alpha subunit (TCP-1-alpha) (CCT-alpha) (TCPA); subunit of cytosolic chaperonin complex"
+Cre10.g464250			Chloroplast				"g11375.t1;Cre10.g464250.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g440100							"g10834.t1;Cre10.g440100.t1.1;Cre10.g440100.t1.1;g10834.t1"		
+Cre10.g423050	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"					"g10465.t1;Cre10.g423050.t1.1"		
+Cre10.g466750	"GMM:15.2;GMM:13.1.5.3.2"	"metal handling.binding, chelation and storage;amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.SAT"	Chloroplast	"GO:0009001;GO:0006535;GO:0005737"	"serine O-acetyltransferase activity;cysteine biosynthetic process from serine;cytoplasm"	SAT1	"g11439.t1;SAT1;SAT1;g11439.t1;SAT1;g11439.t1"	"SAT1;SAT1;SAT1"	"EC 2.3.1.30; identical to GenBank AAM23309 (PMID 12481091) except for short sequence at beginning of 5' UTR; differs from the other isoform in the 5' UTR; involved in cysteine and methionine biosynthesis; Target-P predicts plastid targeting; one of three paralogs;EC 2.3.1.30; identical to GenBank AAM23309 (PMID 12481091) except for short sequence at beginning of 5' UTR; differs from the other isoform in the 5' UTR; involved in cysteine and methionine biosynthesis; Target-P predicts plastid targeting; one of three paralogs;EC 2.3.1.30; identical to GenBank AAM23309 (PMID 12481091) except for short sequence at beginning of 5' UTR; differs from the other isoform in the 5' UTR; involved in cysteine and methionine biosynthesis; Target-P predicts plastid targeting; one of three paralogs"
+Cre10.g435250	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	"Secretory pathway"	"GO:0016810;GO:0006807"	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	NIC13	"g10735.t1;NIC13;NIC13;g10735.t1"	"NIC13;NIC13"	"A nitrilase/cyanide hydratase family protein;A nitrilase/cyanide hydratase family protein"
+Cre10.g465226			"Secretory pathway"						
+Cre10.g454100	GMM:29.2.2.50	"protein.synthesis.ribosome biogenesis.BRIX"					"g11149.t1;Cre10.g454100.t1.1"		
+Cre10.g464950			Chloroplast				"g11392.t1;g11392.t1"		
+Cre10.g458350	GMM:26.16	misc.myrosinases-lectin-jacalin	"Secretory pathway"	"GO:0016020;GO:0005975;GO:0005044;GO:0004553"	"membrane;carbohydrate metabolic process;scavenger receptor activity;hydrolase activity, hydrolyzing O-glycosyl compounds"	SRR16		"SRR16;SRR16;SRR16"	"Scavenger receptor cysteine-rich protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain;Very large protein; Part of a group of 4 homologous proteins;Null-allele mutant was isolated [PMID: 29743196];Gene model may be fragmented. Should probably include Cre10.g801187 and Cre10.g801188;Scavenger receptor cysteine-rich protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain;Very large protein; Part of a group of 4 homologous proteins;Null-allele mutant was isolated [PMID: 29743196];Gene model may be fragmented. Should probably include Cre10.g801187 and Cre10.g801188;Scavenger receptor cysteine-rich protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain;Very large protein; Part of a group of 4 homologous proteins;Null-allele mutant was isolated [PMID: 29743196];Gene model may be fragmented. Should probably include Cre10.g801187 and Cre10.g801188"
+Cre10.g445650	GMM:31.2	cell.division		"GO:0051276;GO:0005694;GO:0005524;GO:0005515"	"chromosome organization;chromosome;ATP binding;protein binding"	SMC3	"g10965.t1;Cre10.g445650.t1.1;SMC3"	SMC3	"Structural Maintenance of Chromosomes protein 3 homolog, ChromDB CPC3403; Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation; ts-lethal mutant was isolated (PMID 29743196)"
+Cre10.g450300				GO:0055114	"oxidation-reduction process"		g11067.t1		
+Cre10.g444450	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	"protein binding"	SSA17	"SSA17;g10928.t1;SSA17;g10928.t1;g10928.t1;SSA17"	"SSA17;SSA17;SSA17"	"Identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA); null-allele mutant was isolated (PMID 29743196);Identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA); null-allele mutant was isolated (PMID 29743196);Identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA); null-allele mutant was isolated (PMID 29743196)"
+Cre10.g420700	GMM:9.9	"mitochondrial electron transport / ATP synthesis.F1-ATPase"		"GO:0046961;GO:0046933;GO:0015986;GO:0000275"	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;ATP synthesis coupled proton transport;mitochondrial proton-transporting ATP synthase complex, catalytic core F(1)"	ATP15	"Cre10.g420700.t1.1;g10412.t1"	ATP15	"F1F-ATP synthase epsilon chain, polypeptide of 8.3 kDa, mitochondrial precursor; [=yeast ATP15, human ATP5E]; part of the F1 sector"
+Cre10.g422800			Mitochondrion	"GO:0005622;GO:0003676"	"intracellular;nucleic acid binding"		"g10460.t1;HER1;g10460.t1;HER1;g10460.t1;HER1"		"Contains HRDC (Helicase and RNase D C-terminal) and DnaJ domains;Contains HRDC (Helicase and RNase D C-terminal) and DnaJ domains;Contains HRDC (Helicase and RNase D C-terminal) and DnaJ domains"
+Cre10.g462500						PUS16	"PUS16;g11337.t1"		"linked to PUS15"
+Cre10.g422850			Chloroplast				"g10461.t1;g10461.t1;g10461.t1;g10461.t1"		
+Cre10.g439950							"g10831.t1;g10831.t1;g10831.t1;g10831.t1;g10831.t1"		
+Cre10.g464800	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g11389.t1;Cre10.g464800.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g460950									
+Cre10.g459900	GMM:26.7	"misc.oxidases - copper, flavone etc"	"Secretory pathway"			PFH4	"g11277.t2;P4H4;PHX16;P4H4;PHX16;g11277.t2"	"PFH4;PFH4"	"contains C-terminal ShK domain, Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. (27) [PMID: 17220203] as v2 C_800043;contains C-terminal ShK domain, Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. (27) [PMID: 17220203] as v2 C_800043"
+Cre10.g443050	GMM:26.7	"misc.oxidases - copper, flavone etc"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH3	"P4H3;g10897.t1;Cre10.g443050.t1.1;PHX15;g10897.t1;P4H3;Cre10.g443050.t1.1;PHX15"	"PFH3;PFH3"	"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. (27) [PMID: 17220203] as v2 C_150026; contains C-terminal ShK domain; Target of CRR1;Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. (27) [PMID: 17220203] as v2 C_150026; contains C-terminal ShK domain; Target of CRR1"
+Cre10.g448250			Mitochondrion	GO:0005515	"protein binding"		"g11022.t1;g11022.t1;g11022.t1;g11022.t1;g11022.t1;g11022.t1"		
+Cre10.g457500	"GMM:30.1;GMM:29.4.1;GMM:29.4"	"signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification"		GO:0005515	"protein binding"		"CKIN beta;g11224.t1;g11224.t1;CKIN beta;CKIN beta;g11224.t1"	"SNRKB1;SNRKB1;SNRKB1"	"Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses"
+Cre10.g459700							g11273.t1		
+Cre10.g454000				"GO:0007165;GO:0005515"	"signal transduction;protein binding"		"Cre10.g454000.t1.1;g11147.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g421900	GMM:31.6.1.11	cell.motility.eukaryotes.other	"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR27	"SRR27;g10439.t1;g10439.t1;SRR27;SRR27;g10439.t1"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912); part of a group of 5 closely-related SRR proteins; null-allele passenger mutation was isolated (PMID 29743196);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912); part of a group of 5 closely-related SRR proteins; null-allele passenger mutation was isolated (PMID 29743196);Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912); part of a group of 5 closely-related SRR proteins; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre10.g466850	"GMM:31.3.1;GMM:29.6.3.1"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs"		GO:0006457	"protein folding"	FKB18	g11441.t1	FKB18	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); probably directed to thylakoid lumen (homology to AtFKBP18 and bipartite cTP: 29 + RR motif); present in thylakoid proteome based on mass spectrometric peptide identification [PMID: 17078018]"
+Cre10.g438950							"g10810.t1;g10810.t1;g10810.t1;g10810.t1"		
+Cre10.g425900	GMM:1.1.2.1	"PS.lightreaction.photosystem I.LHC-I"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCA5	"Cre10.g425900.t1.1;g10525.t1;Cre10.g425900.t1.1;g10525.t1;g10525.t1;Cre10.g425900.t1.1;Cre10.g425900.t1.1;g10525.t1"	"LHCA5;LHCA5;LHCA5;LHCA5"	
+Cre10.g449350			Mitochondrion	GO:0004045	"aminoacyl-tRNA hydrolase activity"		"Cre10.g449350.t1.1;g11048.t1;g11048.t1;Cre10.g449350.t1.1"		
+Cre10.g434950							"g10726.t1;Cre10.g434950.t1.1;Cre10.g434950.t1.1;g10726.t1"		
+Cre10.g459800	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"					"Cre10.g459800.t1.1;g11275.t1"		
+Cre10.g444550	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"	Mitochondrion	"GO:0008233;GO:0006508"	"peptidase activity;proteolysis"	SPP1A	"Cre10.g444550.t1.1;g10930.t1;SPPA1;SPP1A;SPP1;Cre10.g444550.t1.1;SPPA1;g10930.t1;SPP1A;SPP1"	"SPP1A;SPP1A"	"SppA, protease IV, signal peptide peptidase, serine endopeptidase of S49 family (ClpP clan); contains 2 functional S49 domains; probably associated with thylakoid membrane and involved in cleavage of membrane proteins or signal peptide; called SPPA1-1 in Sokolenko, 2005, Physiol. Plantarum 123:391; null-allele mutant was isolated (PMID 29743196);SppA, protease IV, signal peptide peptidase, serine endopeptidase of S49 family (ClpP clan); contains 2 functional S49 domains; probably associated with thylakoid membrane and involved in cleavage of membrane proteins or signal peptide; called SPPA1-1 in Sokolenko, 2005, Physiol. Plantarum 123:391; null-allele mutant was isolated (PMID 29743196)"
+Cre10.g434400	GMM:31.6.1.6.1	"cell.motility.eukaryotes.central pair.C1a"				PF6	"PF6;g10714.t1;Cre10.g434400.t1.1;Cre10.g434400.t1.1;g10714.t1;PF6"	"PF6;PF6"	"Together with C1a-86, C1a-34, C1a-32, C1a-18, and calmodulin, forms the central pair projection C1a; may play a role in modulating both inner and outer dynein arm activity;Together with C1a-86, C1a-34, C1a-32, C1a-18, and calmodulin, forms the central pair projection C1a; may play a role in modulating both inner and outer dynein arm activity"
+Cre10.g465900	"GMM:31.3;GMM:31.2;GMM:29.4.1;GMM:29.4"	"cell.cycle;cell.division;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CDKA1	"Cre10.g465900.t1.1;g11419.t1;Cre10.g465900.t1.1;g11419.t1"	"CDKA1;CDKA1"	"P34 cdc2/CDK1 ortholog; orthologous to plant CDKA; PSTAIRE motif; null mutant delays G1/S; null-allele mutant was isolated (PMID 29743196);P34 cdc2/CDK1 ortholog; orthologous to plant CDKA; PSTAIRE motif; null mutant delays G1/S; null-allele mutant was isolated (PMID 29743196)"
+Cre10.g420226			Mitochondrion						
+Cre10.g461900	"GMM:3.5;GMM:17.2.3"	"minor CHO metabolism.others;hormone metabolism.auxin.induced-regulated-responsive-activated"	Chloroplast				"Cre10.g461900.t1.1;AKR8;g11324.t1"		
+Cre10.g440450	"GMM:1.1.1.3;GMM:1.1.1.2"	"PS.lightreaction.photosystem II.biogenesis;PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast.Stroma.Thylakoid.Membrane	"GO:0016020;GO:0015979;GO:0009654;GO:0009523"	"membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II"	PSB28	"g10841.t1;Cre10.g440450.t1.1"	PSB28	"Chloroplast precursor; Synechocystis homolog associates with stromal side of RC47 intermediate during repair; can be crosslinked with cyt b559"
+Cre10.g434983									
+Cre10.g457650			Chloroplast				"Cre10.g457650.t1.1;g11227.t1"		
+Cre10.g458700							g11252.t2		
+Cre10.g428100	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		"GO:0008033;GO:0004809;GO:0003723"	"tRNA processing;tRNA (guanine-N2-)-methyltransferase activity;RNA binding"	tmg5	"TMG5;g10573.t1;g10573.t1;TMG5"		
+Cre10.g436950	GMM:28.1	"DNA.synthesis/chromatin structure"					"Cre10.g436950.t1.1;g10769.t1;g10769.t1;Cre10.g436950.t1.1"		
+Cre10.g467050	GMM:31.6.1.11	cell.motility.eukaryotes.other				DAP2	"g11445.t1;Cre10.g467050.t1.1;DNAA14;DAP2;IDA10;MOT48"	MOT48	"Predominantly cytoplasmic; member of PIH domain family of HSP90 co-chaperones; identified by comparative genomics as being present only in organisms having motile (MOT) cilia; Null-allele passenger mutation was isolated [PMID: 29743196]; Part of a R2TP-like complex formed by RVB1 (Cre09.g414050), RVB2 (Cre10.g442700), MOT48 (Cre10.g467050), and RPAP3 (Cre02.g084900)"
+Cre10.g442250							"g10881.t1;Cre10.g442250.t1.1;g10881.t1;Cre10.g442250.t1.1"		
+Cre10.g456300	GMM:1.1.1.3	"PS.lightreaction.photosystem II.biogenesis"	Chloroplast			MBD1	"g11196.t1;MBD1;NAC2"	NAC2	"Gene product is required for accumulation of the chloroplast psbD mRNA; NAC = No Accumulation of CP47"
+Cre10.g420350	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast	"GO:0015979;GO:0009538;GO:0009522"	"photosynthesis;photosystem I reaction center;photosystem I"	PSAE	"g10401.t1;Cre10.g420350.t1.1;PSAE"	PSAE1	"Acceptor side subunit, involved in ferredoxin docking"
+Cre10.g461319									
+Cre10.g466500	GMM:24.2	"biodegradation of xenobiotics.lactoylglutathione lyase"	Chloroplast			CPL12	"g11433.t1;Cre10.g466500.t1.1;g11433.t1;Cre10.g466500.t1.1"	"CPL12;CPL12"	"Glyoxylase family protein - has a strong match with lactoylglutathione lyase of Arabidopsis;Glyoxylase family protein - has a strong match with lactoylglutathione lyase of Arabidopsis"
+Cre10.g429200	GMM:29.4.1	"protein.postranslational modification.kinase"	Mitochondrion	GO:0005515	"protein binding"		"g10603.t1;g10603.t1"		
+Cre10.g431450			Chloroplast	GO:0008080	"N-acetyltransferase activity"		"NAT24;g10651.t1;NAT24;g10651.t1;g10651.t1;NAT24;NAT24;g10651.t1"		"Related to GCN5;Related to GCN5;Related to GCN5;Related to GCN5"
+Cre10.g436000	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	"protein binding"		g10750.t1	POC2	"Found in basal body proteome; Novel P-loop protein found in FABP"
+Cre10.g446650	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"		"MER;HEL46;g10988.t1;MER;g10988.t1;HEL46;g10988.t1;MER;HEL46;HEL46;MER;g10988.t1;g10988.t1;HEL46;MER"		"Related to MER3;Related to MER3;Related to MER3;Related to MER3;Related to MER3"
+Cre10.g433450				GO:0005515	"protein binding"		"Cre10.g433450.t1.1;g10692.t1"		
+Cre10.g448977			"Secretory pathway"				"g11037.t1;Cre10.g448977.t1.1"		
+Cre10.g457297	GMM:3.3	"minor CHO metabolism.sugar alcohols"				tnp27	"g11220.t1;g11220.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre10.g426600	"GMM:26.1;GMM:17.3.1.1.99"	"misc.misc2;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.other"	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A6	"CYP27;Cre10.g426600.t1.1;g10540.t1;Cre10.g426600.t1.1;CYP27;g10540.t1"	"CYP739A6;CYP739A6"	"Cytochrome P450, The CYP85 clan families CYP85 and CYP90 make brassinosteroid. in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols.;Cytochrome P450, The CYP85 clan families CYP85 and CYP90 make brassinosteroid. in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols."
+Cre10.g451900	GMM:13.1.3.2.1	"amino acid metabolism.synthesis.aspartate family.threonine.threonine synthase"	Chloroplast			THS1	"THS1;g11101.t1;THS1;g11101.t1;g11101.t1;THS1;g11101.t1;THS1"	"THS1;THS1;THS1;THS1"	"putative threonine synthase (EC:4.2.3.1); organelle (mitochondria) targeting predicted by Target-P; plastid location expected based on homology;putative threonine synthase (EC:4.2.3.1); organelle (mitochondria) targeting predicted by Target-P; plastid location expected based on homology;putative threonine synthase (EC:4.2.3.1); organelle (mitochondria) targeting predicted by Target-P; plastid location expected based on homology;putative threonine synthase (EC:4.2.3.1); organelle (mitochondria) targeting predicted by Target-P; plastid location expected based on homology"
+Cre10.g460326			"Secretory pathway"				g11286.t1		
+Cre10.g422400			"Secretory pathway"				g10450.t1		
+Cre10.g465550	GMM:20.2.1	stress.abiotic.heat	Chloroplast	"GO:0019538;GO:0016887;GO:0005524"	"protein metabolic process;ATPase activity;ATP binding"	CLPD1	"g11407.t1;CLPD;g11407.t1;CLPD;g11407.t1;CLPD;g11407.t1;CLPD;CLPD;g11407.t1;g11407.t1;CLPD"	"CLPD1;CLPD1;CLPD1;CLPD1;CLPD1;CLPD1"	"probably chloroplastic (by homology); possibly acting as ATP-dependent subunit of Clp protease;probably chloroplastic (by homology); possibly acting as ATP-dependent subunit of Clp protease;probably chloroplastic (by homology); possibly acting as ATP-dependent subunit of Clp protease;probably chloroplastic (by homology); possibly acting as ATP-dependent subunit of Clp protease;probably chloroplastic (by homology); possibly acting as ATP-dependent subunit of Clp protease;probably chloroplastic (by homology); possibly acting as ATP-dependent subunit of Clp protease"
+Cre10.g461500									
+Cre10.g420900	"GMM:29.2.2.2.1;GMM:28.1;GMM:27.1.2"	"protein.synthesis.ribosome biogenesis.assembly factors.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL44	"g10416.t1;Cre10.g420900.t1.1;HEL44;g10416.t1;Cre10.g420900.t1.1;HEL44;Cre10.g420900.t1.1;g10416.t1;HEL44"		
+Cre10.g453550			Mitochondrion				g11134.t1		
+Cre10.g448550			Mitochondrion				g11028.t1		
+Cre10.g418250	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"				BLD10	"Cre10.g418250.t1.1;g10356.t1;BLD10;BLD10;g10356.t1;Cre10.g418250.t1.1;BLD10;g10356.t1;Cre10.g418250.t1.1;BLD10;g10356.t1;Cre10.g418250.t1.1;Cre10.g418250.t1.1;BLD10;g10356.t1"	"BLD10;BLD10;BLD10;BLD10;BLD10"	"Basal body protein localized to the cartwheel structure at the proximal end. bld10 mutants have no basal bodies or flagella.;Basal body protein localized to the cartwheel structure at the proximal end. bld10 mutants have no basal bodies or flagella.;Basal body protein localized to the cartwheel structure at the proximal end. bld10 mutants have no basal bodies or flagella.;Basal body protein localized to the cartwheel structure at the proximal end. bld10 mutants have no basal bodies or flagella.;Basal body protein localized to the cartwheel structure at the proximal end. bld10 mutants have no basal bodies or flagella."
+Cre10.g451477									
+Cre10.g436800			"Secretory pathway"	GO:0005515	"protein binding"		"g10766.t1;g10766.t1"		
+Cre10.g445750			Mitochondrion				"g10967.t1;Cre10.g445750.t1.1"		
+Cre10.g463850							"g11366.t1;Cre10.g463850.t1.1;g11366.t1;Cre10.g463850.t1.1"		
+Cre10.g431550	GMM:3.3	"minor CHO metabolism.sugar alcohols"		"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	ADH6	"g10653.t1;ADH6;ADH6;g10653.t1"		"Alcohol dehydrogenase, zinc-containing;Alcohol dehydrogenase, zinc-containing"
+Cre10.g424900	GMM:26.7	"misc.oxidases - copper, flavone etc"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH1	"PHX13;PFH1;g10503.t1;Cre10.g424900.t1.1"		"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate."
+Cre10.g448650	GMM:11.3.5	"lipid metabolism.phospholipid synthesis.diacylglycerol kinase"		GO:0016301	"kinase activity"	KDG5	"g11030.t1;KDG5"		
+Cre10.g457194			Chloroplast						
+Cre10.g453650				GO:0006281	"DNA repair"		"Cre10.g453650.t1.1;g11136.t1;Cre10.g453650.t1.1;g11136.t1"		
+Cre10.g451150			Chloroplast				g11087.t1		
+Cre10.g445151									
+Cre10.g448450	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0006863;GO:0006810;GO:0005345;GO:0005215"	"transmembrane transport;membrane;purine nucleobase transport;transport;purine nucleobase transmembrane transporter activity;transporter activity"	XUV2	"XUV2;g11026.t1;UAPA5"		"related to plants; also related to bacterial inner membrane proteins"
+Cre10.g445900							"g10970.t1;g10970.t1;g10970.t1"		
+Cre10.g427700	GMM:27.1.2	"RNA.processing.RNA helicase"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL47	"Cre10.g427700.t1.1;HEL47;g10564.t1;g10564.t1;HEL47;Cre10.g427700.t1.1;g10564.t1;HEL47;Cre10.g427700.t1.1;HEL47;g10564.t1;Cre10.g427700.t1.1;HEL47;g10564.t1;Cre10.g427700.t1.1"		
+Cre10.g431150	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP256	"g10646.t1;ROC22;CEP104;ROC22;CEP104;g10646.t1;CEP104;g10646.t1;ROC22;ROC22;g10646.t1;CEP104"	"FAP256;FAP256;FAP256;FAP256"	"Found in the flagellar proteome; localizes to the tip of the central and outer doublet microtubules, and remains there during assembly and disassembly; homologous to vertebrate centrosomal protein CEP104; Matsuo et al.'s (2008) roc22 (rhythm of chloroplast 22) circadian bioluminescence rhythm mutant locus maps here;Found in the flagellar proteome; localizes to the tip of the central and outer doublet microtubules, and remains there during assembly and disassembly; homologous to vertebrate centrosomal protein CEP104; Matsuo et al.'s (2008) roc22 (rhythm of chloroplast 22) circadian bioluminescence rhythm mutant locus maps here;Found in the flagellar proteome; localizes to the tip of the central and outer doublet microtubules, and remains there during assembly and disassembly; homologous to vertebrate centrosomal protein CEP104; Matsuo et al.'s (2008) roc22 (rhythm of chloroplast 22) circadian bioluminescence rhythm mutant locus maps here;Found in the flagellar proteome; localizes to the tip of the central and outer doublet microtubules, and remains there during assembly and disassembly; homologous to vertebrate centrosomal protein CEP104; Matsuo et al.'s (2008) roc22 (rhythm of chloroplast 22) circadian bioluminescence rhythm mutant locus maps here"
+Cre10.g421500			Mitochondrion				"g10430.t1;g10430.t1"		
+Cre10.g455800			"Secretory pathway"				"g11185.t2;g11185.t2"		
+Cre10.g424350	"GMM:33.99;GMM:29.5.7;GMM:29.5.11"	"development.unspecified;protein.degradation.metalloprotease;protein.degradation.ubiquitin"	Chloroplast	GO:0008270	"zinc ion binding"		"g10492.t1;g10492.t1"		
+Cre10.g447600			Chloroplast				"g11008.t1;Cre10.g447600.t1.1"		
+Cre10.g462901			"Secretory pathway"				"Cre10.g462900.t1.3;g11346.t1"		
+Cre10.g433866			Chloroplast						
+Cre10.g447000							"Cre10.g447000.t1.1;g10995.t1"		
+Cre10.g417750			Mitochondrion	GO:0006629	"lipid metabolic process"		"g10346.t1;g10346.t1"		
+Cre10.g423650	"GMM:29.2.1.1.4.2;GMM:29.2.1.1.1.2.11"	"protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L11"	Chloroplast	"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	PRPL11	"Cre10.g423650.t1.1;g10478.t1;Cre10.g423650.t1.1;g10478.t1"	"PRPL11;PRPL11"	"imported to chloroplast; Chloroplast large ribosomal subunit protein L11;imported to chloroplast; Chloroplast large ribosomal subunit protein L11"
+Cre10.g432600	GMM:14.1	S-assimilation.APS	"Secretory pathway"	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS18	"ARS18;g10674.t1;ARS18;g10674.t1;ARS18;g10674.t1"	"ARS18;ARS18;ARS18"	
+Cre10.g437950				"GO:0015923;GO:0008270;GO:0006013;GO:0005975;GO:0004559;GO:0004553"	"mannosidase activity;zinc ion binding;mannose metabolic process;carbohydrate metabolic process;alpha-mannosidase activity;hydrolase activity, hydrolyzing O-glycosyl compounds"		"g10789.t1;Cre10.g437950.t1.1;g10789.t1;Cre10.g437950.t1.1;g10789.t1;Cre10.g437950.t1.1;g10789.t1;Cre10.g437950.t1.1;g10789.t1;Cre10.g437950.t1.1"		
+Cre10.g462100							"g11328.t1;g11328.t1"		
+Cre10.g430800	GMM:35.1.1	"not assigned.no ontology.ABC1 family protein"	Chloroplast				"g10638.t1;g10638.t1;g10638.t1;g10638.t1"		
+Cre10.g452000	GMM:34.14	"transport.unspecified cations"					"g11103.t1;Cre10.g452000.t1.1"		
+Cre10.g464050			Chloroplast				g11371.t1		
+Cre10.g422350	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"					"g10449.t1;g10449.t1"		
+Cre10.g444000	"GMM:29.5.11.4.2;GMM:29.4.1.59"	"protein.degradation.ubiquitin.E3.RING;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX"		"GO:0016020;GO:0005525"	"membrane;GTP binding"		"g10915.t1;Cre10.g444000.t1.1;Cre10.g444000.t1.1;g10915.t1"		
+Cre10.g445299			Mitochondrion						
+Cre10.g450800							"g11078.t1;Cre10.g450800.t1.1"		
+Cre10.g465750							"g11413.t1;g11413.t1"		
+Cre10.g458250							g11241.t1		
+Cre10.g428900	GMM:27.4	"RNA.RNA binding"		"GO:0032259;GO:0008168;GO:0003723"	"methylation;methyltransferase activity;RNA binding"	CGL72	"g10595.t1;RRM9"	CGL72	"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre10.g419950				GO:0005515	"protein binding"		g10393.t1		
+Cre10.g423450	"GMM:3.8;GMM:20.2.3;GMM:18.4.7;GMM:18.4"	"minor CHO metabolism.galactose;stress.abiotic.drought/salt;Co-factor and vitamine metabolism.pantothenate.phosphopantothenoylcysteine decarboxylase (PPCDC);Co-factor and vitamine metabolism.pantothenate"	"Secretory pathway"	GO:0003824	"catalytic activity"	COA4	" COAC1;g10474.t1;COA4;Cre10.g423450.t1.1;PPCDC1;PPCDC1;Cre10.g423450.t1.1;g10474.t1;COA4; COAC1"	"COAC1;COAC1"	"Similar to Arabidopsis halotolerance protein Hal3a; Probably catalyzes the second and third steps (out of five) of CoA synthesis from pantothenate;Similar to Arabidopsis halotolerance protein Hal3a; Probably catalyzes the second and third steps (out of five) of CoA synthesis from pantothenate"
+Cre10.g435050			Mitochondrion						
+Cre10.g443000	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	ATM3	"Cre10.g443000.t1.1;ATM3;g10896.t1"	ATM3	"Related to the Chlamydomonas Cds1 protein, a mitochondrial half-size ABC transporter involved in cadmium detoxification, and to the S. pombe HMT1, a vacuolar phytochelatin-cadmium transporter."
+Cre10.g419700			"Secretory pathway"	"GO:0016021;GO:0015693;GO:0015095"	"integral component of membrane;magnesium ion transport;magnesium ion transmembrane transporter activity"	CGL6	g10388.t1	CGL6	
+Cre10.g441550			"Secretory pathway"			MAM3B	"g10865.t1;MAM3B;MAM3B;g10865.t1;g10865.t1;MAM3B"		"contains a DUF21 transmembrane domain of unknown function usually associated with CBS domains (found in Hemolysins and Mg2+/CO2 transporters CorB CorC); similarity to many Arabidopsis proteins and to yeast Mam3p, involved in mitochondrial biogenesis;contains a DUF21 transmembrane domain of unknown function usually associated with CBS domains (found in Hemolysins and Mg2+/CO2 transporters CorB CorC); similarity to many Arabidopsis proteins and to yeast Mam3p, involved in mitochondrial biogenesis;contains a DUF21 transmembrane domain of unknown function usually associated with CBS domains (found in Hemolysins and Mg2+/CO2 transporters CorB CorC); similarity to many Arabidopsis proteins and to yeast Mam3p, involved in mitochondrial biogenesis"
+Cre10.g444094									
+Cre10.g444800						CGL63	"g10936.t1;Cre10.g444800.t1.1;Cre10.g444800.t1.1;g10936.t1"	"CGL63;CGL63"	
+Cre10.g454150						SAT3	"g11150.t1;SAT3;Cre10.g454150.t1.1;SAT3;g11150.t1;Cre10.g454150.t1.1"		
+Cre10.g430050	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC20	"Cre10.g430050.t1.1;UBC20;g10621.t1"	UBC20	"E2 Ubiquitin conjugating enzyme, subclass X"
+Cre10.g422326			Mitochondrion						
+Cre10.g464750				GO:0008080	"N-acetyltransferase activity"		"Cre10.g464750.t1.1;NAT25;g11387.t1"		"Related to GCN5"
+Cre10.g435775									
+Cre10.g459500	"GMM:30.5;GMM:3.5;GMM:29.2.2.1"	"signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.export from nucleus"		GO:0005525	"GTP binding"	NGB1	"g11269.t1;NGB1"	NGB1	"Involved in the biogenesis of the 60S ribosomal subunit (By similarity); Probably nuclear; nucleolar; Belongs to the GTP1/OBG family; NOG subfamily."
+Cre10.g419600				GO:0004112	"cyclic-nucleotide phosphodiesterase activity"		"Cre10.g419600.t1.1;g10386.t1"		
+Cre10.g438200							"g10794.t1;Cre10.g438200.t1.1;Cre10.g438200.t1.1;g10794.t1"		
+Cre10.g438550	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	"GO:0015031;GO:0008565"	"protein transport;protein transporter activity"	TATA	"TATA;TAT1;g10802.t1;Cre10.g438550.t1.1"	TATA1	"The TAT translocon translocates proteins with a Twin Arginine Transit peptide through the thylakoid membrane"
+Cre10.g441000	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		"GO:0006351;GO:0005634;GO:0003677"	"transcription, DNA-templated;nucleus;DNA binding"		"Cre10.g441000.t1.1;g10852.t1;Cre10.g441000.t1.1;g10852.t1;g10852.t1;Cre10.g441000.t1.1;g10852.t1;Cre10.g441000.t1.1;g10852.t1;Cre10.g441000.t1.1"		
+Cre10.g422050	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"g10442.t1;Cre10.g422050.t1.1"		
+Cre10.g464850	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979"	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress"	MSRA5	"Cre10.g464850.t1.1;g11390.t1;Cre10.g464850.t1.1;g11390.t1"	"MSRA5;MSRA5"	"catalyzes the thioredoxin-dependent reduction of L-methionine (S)-S-oxide in oxidized proteins;catalyzes the thioredoxin-dependent reduction of L-methionine (S)-S-oxide in oxidized proteins"
+Cre10.g424200	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006260;GO:0003887;GO:0003677"	"DNA replication;DNA-directed DNA polymerase activity;DNA binding"		g10489.t1	POLE2	"involved in leading strand DNA synthesis and nucleotide and base excision repair; genetically linked to KU80 and DNL4"
+Cre10.g453707							"g11138.t1;g11138.t1"		
+Cre10.g433600	"GMM:25.6;GMM:25"	"C1-metabolism.methylenetetrahydrofolate reductase;C1-metabolism"		"GO:0055114;GO:0006555;GO:0004489"	"oxidation-reduction process;methionine metabolic process;methylenetetrahydrofolate reductase (NAD(P)H) activity"		"g10696.t1;Cre10.g433600.t1.1;Cre10.g433600.t1.1;g10696.t1"		
+Cre10.g461050	"GMM:34.1.1;GMM:34.1"	"transport.p- and v-ATPases.H+-transporting two-sector ATPase;transport.p- and v-ATPases"		"GO:0046034;GO:0033178;GO:0016820;GO:0015992;GO:0015991;GO:0005524"	"ATP metabolic process;proton-transporting two-sector ATPase complex, catalytic domain;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;proton transport;ATP hydrolysis coupled proton transport;ATP binding"	ATPVA1	"Cre10.g461050.t1.1;g11304.t1;ATPvA1;Cre10.g461050.t1.1;g11304.t1;ATPvA1;g11304.t1;Cre10.g461050.t1.1;ATPvA1;ATPvA1;g11304.t1;Cre10.g461050.t1.1;g11304.t1;ATPvA1;Cre10.g461050.t1.1;Cre10.g461050.t1.1;ATPvA1;g11304.t1;g11304.t1;ATPvA1;Cre10.g461050.t1.1;Cre10.g461050.t1.1;g11304.t1;ATPvA1;g11304.t1;ATPvA1;Cre10.g461050.t1.1;g11304.t1;Cre10.g461050.t1.1;ATPvA1"	"ATPVA1;ATPVA1;ATPVA1;ATPVA1;ATPVA1;ATPVA1;ATPVA1;ATPVA1;ATPVA1;ATPVA1"	"Vacuolar ATP synthase subunit A, V-ATPase A, vacuolar proton pump alpha subunit;Vacuolar ATP synthase subunit A, V-ATPase A, vacuolar proton pump alpha subunit;Vacuolar ATP synthase subunit A, V-ATPase A, vacuolar proton pump alpha subunit;Vacuolar ATP synthase subunit A, V-ATPase A, vacuolar proton pump alpha subunit;Vacuolar ATP synthase subunit A, V-ATPase A, vacuolar proton pump alpha subunit;Vacuolar ATP synthase subunit A, V-ATPase A, vacuolar proton pump alpha subunit;Vacuolar ATP synthase subunit A, V-ATPase A, vacuolar proton pump alpha subunit;Vacuolar ATP synthase subunit A, V-ATPase A, vacuolar proton pump alpha subunit;Vacuolar ATP synthase subunit A, V-ATPase A, vacuolar proton pump alpha subunit;Vacuolar ATP synthase subunit A, V-ATPase A, vacuolar proton pump alpha subunit"
+Cre10.g425700							"g10521.t1;Cre10.g425700.t1.1;g10521.t1;Cre10.g425700.t1.1"	"NUP107;NUP107"	"107 kDa Nuclear Pore Complex Protein;107 kDa Nuclear Pore Complex Protein"
+Cre10.g446250	"GMM:29.5.9;GMM:29.5.11.20"	"protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom"		GO:0005524	"ATP binding"		"g10979.t1;g10979.t1;g10979.t1;g10979.t1;g10979.t1"		
+Cre10.g456750	GMM:21.2.1	"redox.ascorbate and glutathione.ascorbate"		GO:0005515	"protein binding"		"DAR1;Cre10.g456750.t1.1;g11208.t1"		"Catalyzes the reduction of dehydroascorbate to ascorbate in environmental stress adaptation. Similar to Arabidopsis At1g1957.1"
+Cre10.g452150			"Secretory pathway"				"Cre10.g452150.t1.1;g11107.t1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre10.g423950	GMM:31.4	"cell.vesicle transport"	"Secretory pathway"				"Cre10.g423950.t1.1;g10484.t1;g10484.t1;Cre10.g423950.t1.1"		
+Cre10.g432400			Chloroplast			OPR46	"g10670.t1;Cre10.g432400.t1.1;Cre10.g432400.t1.1;g10670.t1"	"OPR46;OPR46"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre10.g452500				GO:0005634	nucleus		"g11114.t1;Cre10.g452500.t1.1;g11114.t1;Cre10.g452500.t1.1"		
+Cre10.g438000							"g10790.t1;g10790.t1"		
+Cre10.g441800				"GO:0006355;GO:0006351"	"regulation of transcription, DNA-templated;transcription, DNA-templated"		"g10871.t1;g10871.t1;g10871.t1;g10871.t1"		
+Cre10.g422900	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g10463.t1;g10463.t1;g10463.t1;g10463.t1;g10463.t1"		
+Cre10.g423150	GMM:29.4.1	"protein.postranslational modification.kinase"					g10467.t1		
+Cre10.g441950	GMM:27.1	RNA.processing		GO:0006397	"mRNA processing"	LSM2	"Cre10.g441950.t1.1;LSM2;g10874.t1"		"gi 15704973 gb BI729278.1 BI729278 like Sm-D1 protein, sm protein, snRNA associated"
+Cre10.g432150	"GMM:31.3;GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"cell.cycle;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre10.g432150.t1.1;g10665.t1;Cre10.g432150.t1.1;g10665.t1;g10665.t1;Cre10.g432150.t1.1;Cre10.g432150.t1.1;g10665.t1;g10665.t1;Cre10.g432150.t1.1;g10665.t1;Cre10.g432150.t1.1;Cre10.g432150.t1.1;g10665.t1;Cre10.g432150.t1.1;g10665.t1"		
+Cre10.g427250	GMM:31.1	cell.organisation				PRO1	"PRO1;Cre10.g427250.t1.1;PRF1;DIV68;PFN1;g10555.t1"	PRO1	"Actin-binding protein; localizes to cell body and flagella [PMID: 11739661]; TS-lethal mutant arrests with unreplicated DNA [PMID: 25336509]"
+Cre10.g461650			Mitochondrion				"mL80;Cre10.g461650.t1.1;g11317.t1"	MRPL80	
+Cre10.g428750	GMM:35.1.14	"not assigned.no ontology.S RNA-binding domain-containing protein"		"GO:0006397;GO:0005634;GO:0003676"	"mRNA processing;nucleus;nucleic acid binding"		"g10592.t1;g10592.t1;g10592.t1"		
+Cre10.g453200			Chloroplast						
+Cre10.g445443			Chloroplast						
+Cre10.g464550	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	LAT1	"g11383.t1;Cre10.g464550.t1.1;Cre10.g464550.t1.1;g11383.t1"	"LAT1;LAT1"	"null mutants sentitive to the actin-depolymerizing drug Latrunculin B; 1-nt deletion mutant in potential N-terminal extension (annotated in v5.5 as 5'-UTR) also LatB-sensitive;null mutants sentitive to the actin-depolymerizing drug Latrunculin B; 1-nt deletion mutant in potential N-terminal extension (annotated in v5.5 as 5'-UTR) also LatB-sensitive"
+Cre10.g436400			Chloroplast				g10759.t1		
+Cre10.g428706				GO:0055114	"oxidation-reduction process"		"g10589.t1;Cre69.g794100.t1.1;g10589.t1;Cre69.g794100.t1.1;g10589.t1;Cre69.g794100.t1.1"		
+Cre10.g449450							g11050.t1		
+Cre10.g439200	GMM:23.5.3	"nucleotide metabolism.deoxynucleotide metabolism.cytosine deaminase"	"Secretory pathway"	GO:0008270	"zinc ion binding"	CDD5	"CDD5;Cre10.g439200.t1.1;g10816.t1;Cre10.g439200.t1.1;CDD5;g10816.t1"	"CDD5;CDD5"	
+Cre10.g428250			Chloroplast				"g10576.t1;g10576.t1;g10576.t1"		
+Cre10.g457801			Chloroplast						
+Cre10.g437300			"Secretory pathway"				"g10776.t1;g10776.t1;g10776.t1;g10776.t1"		
+Cre10.g463600	GMM:11.9.2	"lipid metabolism.lipid degradation.lipases"		GO:0006629	"lipid metabolic process"	TGL17	"TGL17;g11361.t1;Cre10.g463600.t1.1;g11361.t1;TGL17;Cre10.g463600.t1.1;Cre10.g463600.t1.1;TGL17;g11361.t1;g11361.t1;TGL17;Cre10.g463600.t1.1"		
+Cre10.g439550	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	"Secretory pathway"				"g10823.t2;g10823.t2"		
+Cre10.g455190			Chloroplast	"GO:0008610;GO:0008168"	"lipid biosynthetic process;methyltransferase activity"		"g11171.t1;g11171.t1;g11171.t1"		
+Cre10.g465375			Mitochondrion						
+Cre10.g422600	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion	GO:0051539	"4 iron, 4 sulfur cluster binding"	NUO6	g10455.t1	NUO6	"Mitochondrial NADH:ubiquinone oxidoreductase (Complex I) 51 kD subunit, mitochondrial; Ortholog of NDUFV1 in Homo sapiens; Chain F. gi 34328784 gb AAQ63696.1;"
+Cre10.g418800				GO:0005515	"protein binding"		"DIV156;g10368.t1"		"ts-lethal mutant was isolated (PMID 29743196)"
+Cre10.g462700	GMM:27.1.3.13	"RNA.processing.3' end processing.CFIm25"		"GO:0006378;GO:0005849;GO:0003729"	"mRNA polyadenylation;mRNA cleavage factor complex;mRNA binding"		g11341.t1		
+Cre10.g422450	"GMM:26.2;GMM:2.1.2"	"misc.UDP glucosyl and glucoronyl transferases;major CHO metabolism.synthesis.starch"	"Secretory pathway"			GGT1	"GGT1;g10452.t1;Cre10.g422450.t1.1"	PGSIP6	
+Cre10.g467150			Mitochondrion			ROC69	"g11447.t1;ROC69;ROC69;g11447.t1"		"Matsuo et al.'s (2008) roc69 (rhythm of chloroplast 69) circadian bioluminescence rhythm mutant locus maps near this gene [PMID: 18334618];Matsuo et al.'s (2008) roc69 (rhythm of chloroplast 69) circadian bioluminescence rhythm mutant locus maps near this gene [PMID: 18334618]"
+Cre10.g456600							"g11205.t1;g11205.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre10.g421600	GMM:29.1.3	"protein.aa activation.threonine-tRNA ligase"	"Secretory pathway"	"GO:0043039;GO:0016876;GO:0006418;GO:0005524;GO:0004812;GO:0000166"	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"	TST2	"g10433.t1;TST2;Cre10.g421600.t1.1;Cre10.g421600.t1.1;TST2;g10433.t1"	"TST2;TST2"	
+Cre10.g466550				"GO:0006351;GO:0006289;GO:0000439"	"transcription, DNA-templated;nucleotide-excision repair;core TFIIH complex"		"Cre10.g466550.t1.1;g11435.t1"	TF2H1	
+Cre10.g463026				"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"		g11348.t1		
+Cre10.g460201			Mitochondrion				"Cre10.g460200.t1.2;g11283.t1"		
+Cre10.g439300			Mitochondrion	GO:0055114	"oxidation-reduction process"		"g10818.t1;Cre10.g439300.t1.1;Cre10.g439300.t1.1;g10818.t1"		
+Cre10.g449127			Mitochondrion				"g11042.t1;Cre10.g449127.t1.1;Cre10.g449127.t1.1;g11042.t1;Cre10.g449127.t1.1;g11042.t1;Cre10.g449127.t1.1;g11042.t1"		
+Cre10.g464600			Chloroplast	GO:0005509	"calcium ion binding"	CAM14	"EZY15;CAM14;g11384.t1;g11384.t1;CAM14;EZY15"	"EZY15;EZY15"	"Calmodulin-like protein and early zygote expressed protein [PMID: 18487630];Calmodulin-like protein and early zygote expressed protein [PMID: 18487630]"
+Cre10.g424750	GMM:6.5	"gluconeogenesis / glyoxylate cycle.pyruvate dikinase"		"GO:0016772;GO:0016310;GO:0016301;GO:0005524"	"transferase activity, transferring phosphorus-containing groups;phosphorylation;kinase activity;ATP binding"	PPD1	"g10500.t1;PPD1;Cre10.g424750.t1.1"	PPD1	"Pyruvate phosphate dikinase (PPDK) (EC 2.7.9.1); Pyruvate orthophosphate dikinase (PODK); Target-P predicts no organelle targeting sequence; similar to PPDK from Phytophthora (GenBank AAK74150), probably cytosolic"
+Cre10.g455350			Chloroplast				"g11175.t1;Cre10.g455350.t1.1"		
+Cre10.g440950				GO:0005515	"protein binding"	FAP192	"g10851.t1;FAP192;Cre10.g440950.t1.1;FAP192;g10851.t1;Cre10.g440950.t1.1;g10851.t1;FAP192;Cre10.g440950.t1.1"	"FAP192;FAP192;FAP192"	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome;Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome;Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome"
+Cre10.g465822			Chloroplast				"g11417.t1;Cre10.g465822.t1.1"		
+Cre10.g459200	"GMM:34.1.2;GMM:34.1"	"transport.p- and v-ATPases.H+-exporting ATPase;transport.p- and v-ATPases"		"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"	PMA2	"ACA4;PMA2;g11262.t1;Cre10.g459200.t1.1;g11262.t1;ACA4;PMA2;Cre10.g459200.t1.1;ACA4;g11262.t1;Cre10.g459200.t1.1;PMA2"	"PMA2;PMA2;PMA2"	"Putative plasma membrane-type proton ATPase GI:16751320; Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Putative plasma membrane-type proton ATPase GI:16751320; Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];Putative plasma membrane-type proton ATPase GI:16751320; Low-CO2 inducible gene revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]"
+Cre10.g465400				"GO:0034244;GO:0032021"	"negative regulation of transcription elongation from RNA polymerase II promoter;NELF complex"		"Cre10.g465400.t1.1;g11404.t1"		
+Cre10.g456100	"GMM:31.6.1.9;GMM:11.8"	"cell.motility.eukaryotes.flagellar adhesion and gamete fusion;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016491	"oxidoreductase activity"	AGG3	"g11191.t1;AGG3;Cre10.g456100.t1.1;POC21;FAP142;FAP142;POC21;Cre10.g456100.t1.1;AGG3;g11191.t1;Cre10.g456100.t1.1;POC21;FAP142;AGG3;g11191.t1;g11191.t1;AGG3;FAP142;POC21;Cre10.g456100.t1.1"	"AGG3;AGG3;AGG3;AGG3"	"One of four highly similar, tandemly-repeated flavodoxins. Other proteins in cluster include the flagellar associated proteins FAP191, and AGG4; Found in the basal body proteome as POC21; Found in the flagellar proteome as FAP142; Associated with detergent-resistant membranes and involved in phototaxis;;One of four highly similar, tandemly-repeated flavodoxins. Other proteins in cluster include the flagellar associated proteins FAP191, and AGG4; Found in the basal body proteome as POC21; Found in the flagellar proteome as FAP142; Associated with detergent-resistant membranes and involved in phototaxis;;One of four highly similar, tandemly-repeated flavodoxins. Other proteins in cluster include the flagellar associated proteins FAP191, and AGG4; Found in the basal body proteome as POC21; Found in the flagellar proteome as FAP142; Associated with detergent-resistant membranes and involved in phototaxis;;One of four highly similar, tandemly-repeated flavodoxins. Other proteins in cluster include the flagellar associated proteins FAP191, and AGG4; Found in the basal body proteome as POC21; Found in the flagellar proteome as FAP142; Associated with detergent-resistant membranes and involved in phototaxis;"
+Cre10.g425150	GMM:29.4	"protein.postranslational modification"							
+Cre10.g429702									
+Cre10.g460700	GMM:29.4.1	"protein.postranslational modification.kinase"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g11294.t1;g11294.t1;g11294.t1"		
+Cre10.g423000			"Secretory pathway"				"g10464.t1;Cre10.g423000.t1.1"		
+Cre10.g436850							"Cre10.g436850.t1.1;g10767.t1"		
+Cre10.g420551			"Secretory pathway"				"g10408.t1;Cre10.g420551.t1.1;Cre10.g420551.t1.1;g10408.t1"		
+Cre10.g449250	GMM:31.6.1.3.1.1	"cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.kinesin-2 subunits"		"GO:0019894;GO:0005871"	"kinesin binding;kinesin complex"	KAP1	"KAP1;FLA3;g11046.t1;Cre10.g449250.t1.1"	KAP1	"Kinesin-associated protein; probable non-motor subunit of kinesin-II, the anterograde motor for intraflagellar transport."
+Cre10.g439750							"Cre10.g439750.t1.1;g10827.t1"		
+Cre10.g438300						LTH4	"Cre10.g438300.t1.1;g10796.t1"	LTH4	"belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox"
+Cre10.g419900			Chloroplast						
+Cre10.g460901									
+Cre10.g430300			Mitochondrion				"Cre10.g430300.t1.1;g10626.t1"		
+Cre10.g444726			Mitochondrion						
+Cre10.g446150			"Secretory pathway"				"Cre10.g446150.t1.1;g10977.t1;g10977.t1;Cre10.g446150.t1.1"		
+Cre10.g442950			Chloroplast				"g10895.t1;Cre10.g442950.t1.1;g10895.t1;Cre10.g442950.t1.1"		
+Cre10.g466950			Mitochondrion				g11443.t1		
+Cre10.g433050	GMM:26.17	misc.dynamin	Mitochondrion			DRP8	"ARC5;ARCS;DRP8;DRP5B;g10684.t1;g10684.t1;ARC5;DRP8;ARCS;DRP5B"		"Similar to Arabidopsis DRP5B (formerly ARC5);Similar to Arabidopsis DRP5B (formerly ARC5)"
+Cre10.g417550			Chloroplast			CLPT3	"g10337.t1;CLPS3;CLPS3;g10337.t1;g10337.t1;CLPS3;CLPS3;g10337.t1"	"CLPT3;CLPT3;CLPT3;CLPT3"	"Homologue of plant ClpT (formerly called ClpS) proteins associated with ClpP complex (PMID: 14593120); has similarity to the N-terminal domain of ClpA chaperone that binds the ClpS adaptator;Homologue of plant ClpT (formerly called ClpS) proteins associated with ClpP complex (PMID: 14593120); has similarity to the N-terminal domain of ClpA chaperone that binds the ClpS adaptator;Homologue of plant ClpT (formerly called ClpS) proteins associated with ClpP complex (PMID: 14593120); has similarity to the N-terminal domain of ClpA chaperone that binds the ClpS adaptator;Homologue of plant ClpT (formerly called ClpS) proteins associated with ClpP complex (PMID: 14593120); has similarity to the N-terminal domain of ClpA chaperone that binds the ClpS adaptator"
+Cre10.g457850							"Cre10.g457850.t1.1;g11231.t1"		
+Cre10.g463450	"GMM:29.4.1;GMM:28.1"	"protein.postranslational modification.kinase;DNA.synthesis/chromatin structure"	Chloroplast				g11358.t1		
+Cre10.g425675			Mitochondrion	"GO:0006810;GO:0005643"	"transport;nuclear pore"				
+Cre10.g440800							"g10848.t1;g10848.t1;g10848.t1"		
+Cre10.g435800	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Chloroplast	"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"	CSP41B	"CSP41b;g10746.t1;SNE11;Cre10.g435800.t1.1;RAP38;RAP38;SNE11;CSP41b;g10746.t1;Cre10.g435800.t1.1"	"CSP41B;CSP41B"	"Cleaves RNA in vitro, but appears necessary for stabilizing Cp mRNA in Arabidopsis and spinach; Arabidopsis homolog binds multiple mRNA and rRNA and interacts with Csp41a in multimeric complexes; also found associated with ribosomes and RNA polymerase; cp ribosome-associated protein RAP38; similar to NAD-dependent nucleoside-diphosphate-sugar epimerase/dehydratase;Cleaves RNA in vitro, but appears necessary for stabilizing Cp mRNA in Arabidopsis and spinach; Arabidopsis homolog binds multiple mRNA and rRNA and interacts with Csp41a in multimeric complexes; also found associated with ribosomes and RNA polymerase; cp ribosome-associated protein RAP38; similar to NAD-dependent nucleoside-diphosphate-sugar epimerase/dehydratase"
+Cre10.g425600			Chloroplast				"PGM15;g10518.t1"		
+Cre10.g417850			Chloroplast	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g10348.t1;g10348.t1;g10348.t1;g10348.t1;g10348.t1"		
+Cre10.g458750									
+Cre10.g439000	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215"	"ATPase activity;integral component of membrane;transport;ATP binding;transporter activity"		"g10811.t1;g10811.t1"		"Putative Long-chain acyl-CoA transporter, ABC superfamily;Putative Long-chain acyl-CoA transporter, ABC superfamily"
+Cre10.g428200	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"Cre10.g428200.t1.1;g10575.t1;Cre10.g428200.t1.1;g10575.t1;Cre10.g428200.t1.1;g10575.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre10.g440200	GMM:31.2	cell.division		"GO:0030915;GO:0006281;GO:0000724"	"Smc5-Smc6 complex;DNA repair;double-strand break repair via homologous recombination"	SMC5B	"SMC5B;g10836.t1;SMC5B;g10836.t1;SMC5B;g10836.t1;SMC5B;g10836.t1;g10836.t1;SMC5B;SMC5B;g10836.t1;SMC5B;g10836.t1;SMC5B;g10836.t1"	"SMC5B;SMC5B;SMC5B;SMC5B;SMC5B;SMC5B;SMC5B;SMC5B"	"Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. This is one of two SMC5 genes near each other on scaffold 10.;Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. This is one of two SMC5 genes near each other on scaffold 10.;Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. This is one of two SMC5 genes near each other on scaffold 10.;Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. This is one of two SMC5 genes near each other on scaffold 10.;Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. This is one of two SMC5 genes near each other on scaffold 10.;Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. This is one of two SMC5 genes near each other on scaffold 10.;Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. This is one of two SMC5 genes near each other on scaffold 10.;Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. This is one of two SMC5 genes near each other on scaffold 10."
+Cre10.g441326									
+Cre10.g430376							g10628.t1		
+Cre10.g424450	"GMM:34.9;GMM:34.20;GMM:29.3.2"	"transport.metabolite transporters at the mitochondrial membrane;transport.porins;protein.targeting.mitochondria"		"GO:0055085;GO:0005741"	"transmembrane transport;mitochondrial outer membrane"	TOM40	"g10494.t1;Cre10.g424450.t1.1;g10494.t1;Cre10.g424450.t1.1;g10494.t1;Cre10.g424450.t1.1;g10494.t1;Cre10.g424450.t1.1;Cre10.g424450.t1.1;g10494.t1"	"TOM40;TOM40;TOM40;TOM40;TOM40"	
+Cre10.g456550									
+Cre10.g418150	GMM:27.3.35	"RNA.regulation of transcription.bZIP transcription factor family"	Chloroplast			FAP178	"g10354.t1;Cre10.g418150.t1.1;g10354.t1;Cre10.g418150.t1.1"	"FAP178;FAP178"	"Found in the flagellar proteome; Similar to Testis and Spermatogenesis Cell Related Protein 2;Found in the flagellar proteome; Similar to Testis and Spermatogenesis Cell Related Protein 2"
+Cre10.g448300							"g11023.t1;g11023.t1"		
+Cre10.g451000				"GO:0008616;GO:0008479;GO:0006400"	"queuosine biosynthetic process;queuine tRNA-ribosyltransferase activity;tRNA modification"		"Cre10.g451000.t1.1;TRR1;g11084.t1;Cre10.g451000.t1.1;TRR1;g11084.t1;Cre10.g451000.t1.1;TRR1;g11084.t1"	"TRR1;TRR1;TRR1"	"modifies tRNAs for Asn, Asp, His, and Tyr with hypermodified base, queuine, at position 34 (the first/wobble posiition of the anticodon);modifies tRNAs for Asn, Asp, His, and Tyr with hypermodified base, queuine, at position 34 (the first/wobble posiition of the anticodon);modifies tRNAs for Asn, Asp, His, and Tyr with hypermodified base, queuine, at position 34 (the first/wobble posiition of the anticodon)"
+Cre10.g447950			Chloroplast				"Cre10.g447950.t1.1;g11016.t1;g11016.t1;Cre10.g447950.t1.1"		
+Cre10.g441400	"GMM:29.2.2.3.1;GMM:27.3.67"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;RNA.regulation of transcription.putative transcription regulator"				NOP58	"g10862.t1;Cre10.g441400.t1.1;NOP58;NOP58;g10862.t1;Cre10.g441400.t1.1"	"NOP58;NOP58"	"Structural Component of C/D snoRNPs. Required for pre-Ribosomal RNA processing and snoRNA guided pre-rRNA methylation; shows sequence similarities to NOP56;Structural Component of C/D snoRNPs. Required for pre-Ribosomal RNA processing and snoRNA guided pre-rRNA methylation; shows sequence similarities to NOP56"
+Cre10.g445395									
+Cre10.g429300			"Secretory pathway"	GO:0005515	"protein binding"		"g10605.t1;g10605.t1;g10605.t1"		
+Cre10.g452100			Chloroplast	"GO:0030145;GO:0016021;GO:0015979;GO:0009523"	"manganese ion binding;integral component of membrane;photosynthesis;photosystem II"	PSBY	"g11106.t1;PSBY2;PSBY"	PSBY1	"PsbY is found in higher plants and is a homolog of Ycf32 in Cyanobacteria and Chromophyta. Expressed as a precursor polyprotein which is processed into two Ycf32-related proteins (PsbY-A1 and -A2) in higher plants. PMID: 16143838; contains five PSBY repeats; the homologues in higher plant have only two repeats (PMID: 9512354), while 5 are found in the unique Ostreococcus PsbY; the function of PsbY in PSII is unclear : a Synechocystis mutant is slightly more sensitive to high light in Ca-depleted medium (PM"
+Cre10.g425350	"GMM:29.4.1.57;GMM:29.4"	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre10.g425350.t1.1;g10513.t1;g10513.t1;Cre10.g425350.t1.1"		
+Cre10.g452350			Chloroplast				g11111.t1		
+Cre10.g457400	"GMM:31.6.1.10;GMM:30.99"	"cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified"					"g11222.t1;g11222.t1;g11222.t1;g11222.t1;g11222.t1"		
+Cre10.g431050	GMM:26.16	misc.myrosinases-lectin-jacalin		"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR13	"SRR13;g10643.t1;g10643.t1;SRR13;SRR13;g10643.t1"		"speract/scavenger receptor cysteine-rich (SRCR) family protein, transmembrane glycoprotein;speract/scavenger receptor cysteine-rich (SRCR) family protein, transmembrane glycoprotein;speract/scavenger receptor cysteine-rich (SRCR) family protein, transmembrane glycoprotein"
+Cre10.g439400	GMM:19.1	"tetrapyrrole synthesis.glu-tRNA synthetase"	Chloroplast	GO:0016884	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor"	GAT1	"GAT1;g10820.t1;g10820.t1;GAT1"	"GAT1;GAT1"	
+Cre10.g457450	GMM:30.99	signalling.unspecified					"g11223.t1;g11223.t1"		
+Cre10.g455700	GMM:27.1	RNA.processing				PAP5	"PAP5;Cre10.g455700.t1.1;g11183.t1"	PAP5	"Non-canonical poly(A) polymerase (ncPAP) with PAP/25A core domain; conserved in green algae"
+Cre10.g451050			"Secretory pathway"				g11085.t1		
+Cre10.g432950							g10682.t1		
+Cre10.g438050	GMM:11.1.3	"lipid metabolism.FA synthesis and FA elongation.ketoacyl ACP synthase"	"Secretory pathway"			KAS3	"KAS3;mtKAS;g10791.t1;mtKAS;KAS3;g10791.t1"		"Putative mitochondrial beta-ketoacyl-ACP synthase (mitochondrial FAS);Putative mitochondrial beta-ketoacyl-ACP synthase (mitochondrial FAS)"
+Cre10.g453100			"Secretory pathway"				"Cre10.g453100.t1.1;g11126.t1;Cre10.g453100.t1.1;g11126.t1"		
+Cre10.g443250	"GMM:29.6.2.2;GMM:29.6"	"protein.folding.chaperones and co-chaperones.HSP60s;protein.folding"	Cytosol	"GO:0051082;GO:0006457;GO:0005524"	"unfolded protein binding;protein folding;ATP binding"	CCT3	"g10900.t1;Cre10.g443250.t1.1;CCT3;CCT3;Cre10.g443250.t1.1;g10900.t1"	"CCT3;CCT3"	"T-complex protein 1, gamma subunit (TCP-1-gamma) (CCT-gamma) (TCPC); subunit of cytosolic chaperonin complex. Transcript upregulated during flagellar regeneration; PMID: 15738400;T-complex protein 1, gamma subunit (TCP-1-gamma) (CCT-gamma) (TCPC); subunit of cytosolic chaperonin complex. Transcript upregulated during flagellar regeneration; PMID: 15738400"
+Cre10.g450550	"GMM:31.5.1;GMM:26.30;GMM:26.3"	"cell.cell death.plants;misc.other Ferredoxins and Rieske domain;misc.gluco-, galacto- and mannosidases"		"GO:0055114;GO:0051537;GO:0016491;GO:0010277"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	PAO3	"g11072.t1;PAO1;PAO3"		"Contains Rieske iron-sulfur cluster and PAO domains, and a trasmembrane region for attchment to thylakoid membrane; closest homolog of Arabidopsis AT4G25650 (PTC52) and AT3G44880 (PAO); belongs to the classical family of short chain dehydrogenases [PMID: 15180984]"
+Cre10.g443600							"g10907.t1;g10907.t1"		
+Cre10.g418600	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"	Chloroplast			RLS3	"g10363.t1;RLS3;RLS3;g10363.t1;g10363.t1;RLS3;RLS3;g10363.t1;RLS3;g10363.t1;RLS3;g10363.t1;RLS3;g10363.t1"		"Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF01342).;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF01342).;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF01342).;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF01342).;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF01342).;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF01342).;Member of a family of proteins [PMID: 16720695, 16622701] related to Volvox carteri RegA, which is a putative transcription repressor [PMID: 9895312] containing a SAND domain (IPR000770; PF01342)."
+Cre10.g453782			Mitochondrion				g11142.t1		
+Cre10.g458400									
+Cre10.g419200							"g10377.t1;g10377.t1"		
+Cre10.g449000			"Secretory pathway"			LZY1	"VPT1;g11038.t1;LZY1;LZY1;g11038.t1;VPT1"		"Putative aminotransferase, class I and II; possible valine-pyruvate transaminase (EC 2.6.1.66);Putative aminotransferase, class I and II; possible valine-pyruvate transaminase (EC 2.6.1.66)"
+Cre10.g438850	GMM:27.3.35	"RNA.regulation of transcription.bZIP transcription factor family"	Mitochondrion	"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	ROC76	"ROC76;Cre10.g438850.t1.1;g10808.t1;g10808.t1;Cre10.g438850.t1.1;ROC76;g10808.t1;ROC76;Cre10.g438850.t1.1"		"BZIP transcription factor; Matsuo et al.'s (2008) roc76 (rhythm of chloroplast 76) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];BZIP transcription factor; Matsuo et al.'s (2008) roc76 (rhythm of chloroplast 76) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];BZIP transcription factor; Matsuo et al.'s (2008) roc76 (rhythm of chloroplast 76) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618]"
+Cre10.g444500	GMM:26.23	misc.rhodanese	Chloroplast				"g10929.t1;Cre10.g444500.t1.1"		
+Cre10.g446500			Chloroplast			CPL24	"g10985.t1;CPO1;CPO1;g10985.t1"	"CPL24;CPL24"	"Conserved in photosynthetic organisms; contains pfam07534: TLD domain; null-allele mutant was isolated (PMID 29743196);Conserved in photosynthetic organisms; contains pfam07534: TLD domain; null-allele mutant was isolated (PMID 29743196)"
+Cre10.g431100			Mitochondrion				"g10645.t1;g10645.t1;g10645.t1"	"OPR126;OPR126;OPR126"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre10.g421100			Mitochondrion				"g10422.t1;g10422.t1;g10422.t1"		
+Cre10.g464400	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SSA20			
+Cre10.g442200	"GMM:16.8.4;GMM:16.8.3;GMM:11.8.4"	"secondary metabolism.flavonoids.flavonols;secondary metabolism.flavonoids.dihydroflavonols;lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"	"Secretory pathway"			ERG6	"g10880.t1;Cre10.g442200.t1.1;ERG26;ERG6"		"3-beta hydroxysteroid dehydrogenase/isomerase family"
+Cre10.g444086			Chloroplast						
+Cre10.g450700	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Mitochondrion			CSB39	"g11076.t1;TNP26;CSB329"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre10.g461350						BUG23	"g11311.t1;BUG23;g11311.t1;BUG23"	"BUG23;BUG23"	"Found in basal body proteome as BUG23; Transcript upregulated during flagellar regeneration;Found in basal body proteome as BUG23; Transcript upregulated during flagellar regeneration"
+Cre10.g422718									
+Cre10.g427400							"Cre10.g427400.t1.1;g10558.t1"		
+Cre10.g453807	GMM:29.5	protein.degradation	Chloroplast	"GO:0008236;GO:0006508;GO:0005515"	"serine-type peptidase activity;proteolysis;protein binding"		"g11144.t2;Cre10.g453807.t1.1"	CTPB1	"One of three related C-terminal peptidases (CTPA1/Cre10.g420550, CTPB1/Cre10.g453807, CTPC1/Cre06.g265850) that are highly conserved in oxygenic photosynthetic organisms; CTPA1 cleaves the C-terminal extension of the D1 precursor (pD1) to form mature D1, but the function of CTPB1 and CTPC1 remains unknown; Orthologous to CtpB/CTPA3 (AT3G57680) in Arabidopsis thaliana;"
+Cre10.g434350	GMM:34.12	transport.metal	Mitochondrion	"GO:0035434;GO:0016021;GO:0005375"	"copper ion transmembrane transport;integral component of membrane;copper ion transmembrane transporter activity"	CTR2	"g10713.t1;g10713.t1"	"CTR2;CTR2"	"Similarity to fungal CTR family; expression increases during Cu deficiency, regulated by CRR1; localized to plasma membrane; gene rescues yeast _ctr1 mutant; Fits the pattern for TM2 and TM3: MxxxM-X13-GxxxG per Vinzenz Unger;Similarity to fungal CTR family; expression increases during Cu deficiency, regulated by CRR1; localized to plasma membrane; gene rescues yeast _ctr1 mutant; Fits the pattern for TM2 and TM3: MxxxM-X13-GxxxG per Vinzenz Unger"
+Cre10.g454650				"GO:0006351;GO:0005634;GO:0003899"	"transcription, DNA-templated;nucleus;DNA-directed RNA polymerase activity"	RPC5	"Cre10.g454650.t1.1;RPC5;g11160.t1"	RPC5	
+Cre10.g441650			"Secretory pathway"				g10867.t1		
+Cre10.g426335				GO:0008270	"zinc ion binding"		"g10534.t1;Cre10.g426335.t1.1"		
+Cre10.g450150			"Secretory pathway"				"Cre10.g450150.t1.1;g11064.t1;Cre10.g450150.t1.1;g11064.t1;g11064.t1;Cre10.g450150.t1.1"		
+Cre10.g455451			Chloroplast				"g11177.t1;Cre10.g455450.t1.3"		
+Cre10.g428966							"Cre10.g428966.t1.1;g10597.t1"		
+Cre10.g457100			"Secretory pathway"				"Cre10.g457100.t1.1;g11215.t1"		
+Cre10.g421450							"g10429.t1;g10429.t1;g10429.t1;g10429.t1"		
+Cre10.g432250	"GMM:31.3;GMM:30.6;GMM:3.6;GMM:29.4.1"	"cell.cycle;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g10667.t1;g10667.t1;g10667.t1;g10667.t1"		
+Cre10.g466100							"g11423.t1;Cre10.g466100.t1.1;g11423.t1;Cre10.g466100.t1.1"		
+Cre10.g465050			Chloroplast	GO:0003676	"nucleic acid binding"		g11395.t1		
+Cre10.g421950						TEF26	"g10440.t2;TEF26"	TEF26	"Protein with unknown function, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]"
+Cre10.g418400							"g10359.t2;g10359.t2;g10359.t2;g10359.t2"		
+Cre10.g433500						PWR10	"PWR10;g10694.t1;g10694.t1;PWR10;g10694.t1;PWR10"		"Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence;Belongs to a family of 14 Chlamydomonas genes with similarity to DUF506 proteins (plant-specific, unknown function); contains pfam04720: PDDEXK_6, distant homologues of the PD-(D/E)XK nuclease superfamily; the PWR family name comes from the perfectly conserved PWR motif shared between the Chlamydomonas and plant proteins; many genes in the family show clustering on chromosomes 3, 14 and 16; there is no obvious organelle targeting sequence"
+Cre10.g459400							"Cre10.g459400.t1.1;g11267.t1"		
+Cre10.g425050	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"	Mitochondrion	GO:0005515	"protein binding"	ROC59	"ROC28;g10507.t1;ROC59;ROC28;ROC59;g10507.t1;g10507.t1;ROC59;ROC28;ROC28;ROC59;g10507.t1;ROC59;ROC28;g10507.t1"	"ROC59;ROC59;ROC59;ROC59;ROC59"	"WD40- and tetratricopeptide-repeats protein involved in circadian rhythms with possible histone acetyltransferase activity; one of the target genes of the circadian transcription factor ROC75; Matsuo et al.'s (2008) roc28 (rhythm of chloroplast 28) and roc59 circadian bioluminescence rhythm mutant loci map here;WD40- and tetratricopeptide-repeats protein involved in circadian rhythms with possible histone acetyltransferase activity; one of the target genes of the circadian transcription factor ROC75; Matsuo et al.'s (2008) roc28 (rhythm of chloroplast 28) and roc59 circadian bioluminescence rhythm mutant loci map here;WD40- and tetratricopeptide-repeats protein involved in circadian rhythms with possible histone acetyltransferase activity; one of the target genes of the circadian transcription factor ROC75; Matsuo et al.'s (2008) roc28 (rhythm of chloroplast 28) and roc59 circadian bioluminescence rhythm mutant loci map here;WD40- and tetratricopeptide-repeats protein involved in circadian rhythms with possible histone acetyltransferase activity; one of the target genes of the circadian transcription factor ROC75; Matsuo et al.'s (2008) roc28 (rhythm of chloroplast 28) and roc59 circadian bioluminescence rhythm mutant loci map here;WD40- and tetratricopeptide-repeats protein involved in circadian rhythms with possible histone acetyltransferase activity; one of the target genes of the circadian transcription factor ROC75; Matsuo et al.'s (2008) roc28 (rhythm of chloroplast 28) and roc59 circadian bioluminescence rhythm mutant loci map here"
+Cre10.g427850	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Chloroplast	GO:0006355	"regulation of transcription, DNA-templated"		"g10567.t1;g10567.t1;g10567.t1"		
+Cre10.g458150							"g11237.t1;g11237.t1;g11237.t1;g11237.t1"		
+Cre10.g437250							"Cre10.g437250.t1.1;g10775.t1"		
+Cre10.g451850	"GMM:33.99;GMM:31.1;GMM:29.5.9;GMM:29.5.11.20"	"development.unspecified;cell.organisation;protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom"	Mitochondrion	GO:0005524	"ATP binding"		g11100.t1	KATL2	"similar to the catalytic subunit of Katanin; genetically linked to KTNA1 and KATL"
+Cre10.g426400				GO:0045454	"cell redox homeostasis"	TRX22	"TRX22;g10536.t1;TRL8"		
+Cre10.g458550			Chloroplast				"g11248.t1;Cre10.g458550.t1.1;g11248.t1;Cre10.g458550.t1.1"	"STIC2;STIC2"	"Homolog to STIC2 (Suppressor of TIC40). In Arabidopsis, STIC2 is a stromal factor that interacts with the ALB translocon and participates in thylakoid protein translocation.;Homolog to STIC2 (Suppressor of TIC40). In Arabidopsis, STIC2 is a stromal factor that interacts with the ALB translocon and participates in thylakoid protein translocation."
+Cre10.g450450						FAP18	"g11070.t1;Cre10.g450450.t1.1;g11070.t1;Cre10.g450450.t1.1;g11070.t1;Cre10.g450450.t1.1;Cre10.g450450.t1.1;g11070.t1;Cre10.g450450.t1.1;g11070.t1;g11070.t1;Cre10.g450450.t1.1;g11070.t1;Cre10.g450450.t1.1"	"FAP18;FAP18;FAP18;FAP18;FAP18;FAP18;FAP18"	"Flagellar Associated Protein, found in the flagellar proteome; high E/A/P content. Similar to IgA-specific serine peptidase;Flagellar Associated Protein, found in the flagellar proteome; high E/A/P content. Similar to IgA-specific serine peptidase;Flagellar Associated Protein, found in the flagellar proteome; high E/A/P content. Similar to IgA-specific serine peptidase;Flagellar Associated Protein, found in the flagellar proteome; high E/A/P content. Similar to IgA-specific serine peptidase;Flagellar Associated Protein, found in the flagellar proteome; high E/A/P content. Similar to IgA-specific serine peptidase;Flagellar Associated Protein, found in the flagellar proteome; high E/A/P content. Similar to IgA-specific serine peptidase;Flagellar Associated Protein, found in the flagellar proteome; high E/A/P content. Similar to IgA-specific serine peptidase"
+Cre10.g434600	"GMM:33.99;GMM:31.6.1.10;GMM:30.5"	"development.unspecified;cell.motility.eukaryotes.flagellar associated proteins;signalling.G-proteins"		"GO:0055085;GO:0016020;GO:0006811;GO:0005515;GO:0005216"	"transmembrane transport;membrane;ion transport;protein binding;ion channel activity"	FAP148	"Cre10.g434600.t1.1;g10718.t1;TRP21;Cre10.g434600.t1.1;g10718.t1;TRP21;TRP21;Cre10.g434600.t1.1;g10718.t1;Cre10.g434600.t1.1;g10718.t1;TRP21"	"FAP148;FAP148;FAP148;FAP148"	"Flagellar Associated Protein with cation channel domain, found in the flagellar proteome;Flagellar Associated Protein with cation channel domain, found in the flagellar proteome;Flagellar Associated Protein with cation channel domain, found in the flagellar proteome;Flagellar Associated Protein with cation channel domain, found in the flagellar proteome"
+Cre10.g423850	GMM:29.4.1	"protein.postranslational modification.kinase"	"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR26			
+Cre10.g435600							g10742.t1	TMEM17	"Ortholog of TMEM17 in humans; Mutations of human TMEM17 have been associated with Orofaciodigital Syndrome"
+Cre10.g465575			Chloroplast						
+Cre10.g462200	GMM:27.3.55	"RNA.regulation of transcription.HDA"		GO:0070403	"NAD+ binding"	HDA17	"HDA17;SRTA;g11330.t1;Cre10.g462200.t1.1"	SRTA1	"The UVM4 and UVM11 strains selected for high transgene expression carry point mutations in this gene, while stra-3 is a null mutant of similar phenotype; belongs to SIR2 family; ChromDB SRT3402; similar to classes IV sirtuins SIRT6 SIRT7, nucleus-located, that deacetylate histones and other proteins"
+Cre10.g444100	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"	"GO:0016567;GO:0016020;GO:0005525;GO:0004842"	"protein ubiquitination;membrane;GTP binding;ubiquitin-protein transferase activity"		"g10920.t1;g10920.t1;g10920.t1"		
+Cre10.g428150	"GMM:35.1.1;GMM:34.16"	"not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems"	Mitochondrion				g10574.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g463900			"Secretory pathway"				"g11367.t1;g11367.t1"		
+Cre10.g431602			Chloroplast						
+Cre10.g440250						PGM19	"g10837.t1;PGM19;PGM19;g10837.t1"		
+Cre10.g428692				GO:0055114	"oxidation-reduction process"		"g10588.t1;Cre69.g794101.t1.2;Cre69.g794101.t1.1"		
+Cre10.g424000							"g10485.t1;g10485.t1;g10485.t1"		
+Cre10.g450050							"g11062.t1;g11062.t1"		
+Cre10.g461150	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g11306.t1;Cre10.g461150.t1.1;Cre10.g461150.t1.1;g11306.t1"		"The 3' UTR of this gene is highly similar to that of the nearby ATPvA1 and other genes, even though the genes share no similarity in their coding region, possibly an overlooke transposon;The 3' UTR of this gene is highly similar to that of the nearby ATPvA1 and other genes, even though the genes share no similarity in their coding region, possibly an overlooke transposon"
+Cre10.g443950	"GMM:29.5.11.4.2;GMM:29.4.1.59"	"protein.degradation.ubiquitin.E3.RING;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX"	"Secretory pathway"	"GO:0016567;GO:0016020;GO:0005525;GO:0004842"	"protein ubiquitination;membrane;GTP binding;ubiquitin-protein transferase activity"		"g10914.t1;g10914.t1"		
+Cre10.g452400			"Secretory pathway"			CSF1	"Cre10.g452400.t1.1;g11112.t1;CSF1"		"Belongs to a large family of proteins found only in Chlamydomonas and Volvox"
+Cre10.g424100	GMM:23.4.99	"nucleotide metabolism.phosphotransfer and pyrophosphatases.misc"	Chloroplast	"GO:0006796;GO:0005737;GO:0004427;GO:0000287"	"phosphate-containing compound metabolic process;cytoplasm;inorganic diphosphatase activity;magnesium ion binding"	IPY1	"g10487.t1;IPY1;Cre10.g424100.t1.1;Cre10.g424100.t1.1;g10487.t1;IPY1"		"identical to GI:14571671=CAC42762 (ppaI); probably chloroplastic (by homology);identical to GI:14571671=CAC42762 (ppaI); probably chloroplastic (by homology)"
+Cre10.g436100	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0005515;GO:0004672"	"protein phosphorylation;ATP binding;protein binding;protein kinase activity"	MLK1	"g10753.t1;MLK1;MLK1;g10753.t1;g10753.t1;MLK1;MLK1;g10753.t1;g10753.t1;MLK1;g10753.t1;MLK1;MLK1;g10753.t1"	"MLK1;MLK1;MLK1;MLK1;MLK1;MLK1;MLK1"	"Mixed lineage protein kinase with a GAF domain, which is a domain present in phytochrome and CGMP-specific phosphodiesterases. A serine/threonine protein kinase which has a GAF domain, a potential chromophore binding domain.;Mixed lineage protein kinase with a GAF domain, which is a domain present in phytochrome and CGMP-specific phosphodiesterases. A serine/threonine protein kinase which has a GAF domain, a potential chromophore binding domain.;Mixed lineage protein kinase with a GAF domain, which is a domain present in phytochrome and CGMP-specific phosphodiesterases. A serine/threonine protein kinase which has a GAF domain, a potential chromophore binding domain.;Mixed lineage protein kinase with a GAF domain, which is a domain present in phytochrome and CGMP-specific phosphodiesterases. A serine/threonine protein kinase which has a GAF domain, a potential chromophore binding domain.;Mixed lineage protein kinase with a GAF domain, which is a domain present in phytochrome and CGMP-specific phosphodiesterases. A serine/threonine protein kinase which has a GAF domain, a potential chromophore binding domain.;Mixed lineage protein kinase with a GAF domain, which is a domain present in phytochrome and CGMP-specific phosphodiesterases. A serine/threonine protein kinase which has a GAF domain, a potential chromophore binding domain.;Mixed lineage protein kinase with a GAF domain, which is a domain present in phytochrome and CGMP-specific phosphodiesterases. A serine/threonine protein kinase which has a GAF domain, a potential chromophore binding domain."
+Cre10.g417600			Chloroplast				"g10339.t1;g10339.t1;g10339.t1"		
+Cre10.g464350				"GO:0008270;GO:0003676"	"zinc ion binding;nucleic acid binding"		"Cre10.g464350.t1.1;g11379.t2;Cre10.g464350.t1.1;g11379.t2"		
+Cre10.g428720			"Secretory pathway"				"Cre69.g794050.t1.1;g10590.t1;g10590.t1;Cre69.g794050.t1.1"		
+Cre10.g430650							"Cre10.g430650.t1.1;g10635.t1;g10635.t1;Cre10.g430650.t1.1"		
+Cre10.g461000							"g11303.t1;Cre10.g461000.t1.1"		
+Cre10.g454400	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		g11155.t1		
+Cre10.g446400	"GMM:31.1;GMM:29.5.9;GMM:29.5.11.20"	"cell.organisation;protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom"		"GO:0009378;GO:0006310;GO:0006281"	"four-way junction helicase activity;DNA recombination;DNA repair"	KAT3	"KAT3;g10983.t1;KAT2;VPS4;KAT2;KAT3;VPS4;g10983.t1;VPS4;KAT2;KAT3;g10983.t1"	"KATL1;KATL1;KATL1"	"Similar to the catalytic subunit of Katanin; genetically linked to KTNA1 and KATL2;Similar to the catalytic subunit of Katanin; genetically linked to KTNA1 and KATL2;Similar to the catalytic subunit of Katanin; genetically linked to KTNA1 and KATL2"
+Cre10.g445275	GMM:20.2.3	stress.abiotic.drought/salt					g10951.t1		
+Cre10.g443350							"Cre10.g443350.t1.1;g10902.t1"		
+Cre10.g419800	GMM:11.3.4	"lipid metabolism.phospholipid synthesis.CDP-diacylglycerol-inositol 3-phosphatidyltransferase"	"Secretory pathway"	"GO:0016780;GO:0016020;GO:0008654"	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	PIS1	"Cre10.g419800.t1.1;g10390.t1;Cre10.g419800.t1.1;g10390.t1"	"PIS1;PIS1"	"condenses CDP-DAG with I-3-P;condenses CDP-DAG with I-3-P"
+Cre10.g452800	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	Chloroplast			LCIB	"g11120.t1;PMP1;LCIB;Cre10.g452800.t1.1"	LCIB1	"low-CO2 inducible protein; homologous to LCIC with which it forms a complex; regulated by CCM1; LCIB is indispensable for the CO2-concentrating mechanism especially under low-CO2 conditions; localization is diffuse in chloroplast stroma under high-CO2 and low-CO2 conditions, but aggregated around pyrenoid as ring-like structure under very low-CO2 conditions; LCIB expression is also detected under HC conditions; Mutations in this gene include pmp1 (Spalding et al., 1983 [PMID: 16663206]) and ad1 (Wang et al"
+Cre10.g465763			Mitochondrion			CSB40	"CSB40;g11415.t1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre10.g448800			Mitochondrion				"g11033.t1;g11033.t1"		
+Cre10.g453500			Mitochondrion				"Cre10.g453500.t1.1;g11133.t1"	RWP15	"putative RWP-RK domain transcription factor"
+Cre10.g434200							g10710.t1		
+Cre10.g423083	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion						
+Cre10.g462783			"Secretory pathway"				g11343.t1		
+Cre10.g453300							"g11129.t1;g11129.t1"		
+Cre10.g459250	"GMM:29.2.1.2.2.535;GMM:29.2.1.2.2.0535"	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L35A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L35A"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL35A	"Cre10.g459250.t1.1;RPL35a;g11264.t1"	RPL35A	"Cytosolic 60S large ribosomal subunit protein L35a"
+Cre10.g439900	"GMM:29.6.2.3;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat"	"Secretory pathway"			HSP70G	"Cre10.g439900.t1.1;g10830.t1;g10830.t1;Cre10.g439900.t1.1;Cre10.g439900.t1.1;g10830.t1;Cre10.g439900.t1.1;g10830.t1;g10830.t1;Cre10.g439900.t1.1;g10830.t1;Cre10.g439900.t1.1;g10830.t1;Cre10.g439900.t1.1;Cre10.g439900.t1.1;g10830.t1;g10830.t1;Cre10.g439900.t1.1;Cre10.g439900.t1.1;g10830.t1;Cre10.g439900.t1.1;g10830.t1"	"HSP70G;HSP70G;HSP70G;HSP70G;HSP70G;HSP70G;HSP70G;HSP70G;HSP70G;HSP70G;HSP70G"	"one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it is more similar to HSP110-like proteins, as is HSP70E; probably located in the ER lumen, as it homologue Hyou1, by its C-terminal KGEEL sequence;one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it is more similar to HSP110-like proteins, as is HSP70E; probably located in the ER lumen, as it homologue Hyou1, by its C-terminal KGEEL sequence;one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it is more similar to HSP110-like proteins, as is HSP70E; probably located in the ER lumen, as it homologue Hyou1, by its C-terminal KGEEL sequence;one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it is more similar to HSP110-like proteins, as is HSP70E; probably located in the ER lumen, as it homologue Hyou1, by its C-terminal KGEEL sequence;one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it is more similar to HSP110-like proteins, as is HSP70E; probably located in the ER lumen, as it homologue Hyou1, by its C-terminal KGEEL sequence;one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it is more similar to HSP110-like proteins, as is HSP70E; probably located in the ER lumen, as it homologue Hyou1, by its C-terminal KGEEL sequence;one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it is more similar to HSP110-like proteins, as is HSP70E; probably located in the ER lumen, as it homologue Hyou1, by its C-terminal KGEEL sequence;one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it is more similar to HSP110-like proteins, as is HSP70E; probably located in the ER lumen, as it homologue Hyou1, by its C-terminal KGEEL sequence;one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it is more similar to HSP110-like proteins, as is HSP70E; probably located in the ER lumen, as it homologue Hyou1, by its C-terminal KGEEL sequence;one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it is more similar to HSP110-like proteins, as is HSP70E; probably located in the ER lumen, as it homologue Hyou1, by its C-terminal KGEEL sequence;one of 9 genes encoding HSP70-like proteins in Chlamydomonas; it is more similar to HSP110-like proteins, as is HSP70E; probably located in the ER lumen, as it homologue Hyou1, by its C-terminal KGEEL sequence"
+Cre10.g454900	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"		"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE29	"PDE29;Cre10.g454900.t1.1;g11165.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g447050							g10996.t1		
+Cre10.g420537	GMM:34.99	transport.misc					"g10406.t1;Cre10.g420537.t1.1;Cre10.g420537.t1.1;g10406.t1"		
+Cre10.g447350	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"	Chloroplast	"GO:0030127;GO:0008270;GO:0006888;GO:0006886"	"COPII vesicle coat;zinc ion binding;ER to Golgi vesicle-mediated transport;intracellular protein transport"	SEC23B	"g11003.t1;Cre10.g447350.t1.1;Cre10.g447350.t1.1;g11003.t1"	"SEC23B;SEC23B"	"Expressed Protein. Similar to Sec23 component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex.;Expressed Protein. Similar to Sec23 component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec23/24 sub-complex."
+Cre10.g431900							"Cre10.g431900.t1.1;g10660.t1"		
+Cre10.g448700	"GMM:31.1;GMM:27.3.44"	"cell.organisation;RNA.regulation of transcription.chromatin remodeling factors"	Mitochondrion	GO:0005515	"protein binding"		"Cre10.g448700.t1.1;g11031.t1"		
+Cre10.g463800							"g11365.t1;Cre10.g463800.t1.1"		
+Cre10.g418650			Mitochondrion				g10365.t1		
+Cre10.g426102			Mitochondrion				g10529.t1		
+Cre10.g457950	GMM:29.5	protein.degradation	Chloroplast				"g11233.t1;g11233.t1;g11233.t1"		
+Cre10.g459000							"IBA57;g11258.t1"	IBA57	"Targeting factor, involved in Fe-S cluster trafficking"
+Cre10.g430200	GMM:14.1	S-assimilation.APS	"Secretory pathway"	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS3	"g10624.t2;ARS3;Cre10.g430200.t1.1"	ARS3	
+Cre10.g429601	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		GO:0016888	"endodeoxyribonuclease activity, producing 5'-phosphomonoesters"		g10612.t1		
+Cre10.g432350							"g10669.t2;g10669.t2;g10669.t2"		
+Cre10.g463370			"Secretory pathway"				"Cre10.g463370.t1.1;g11356.t1"		
+Cre10.g436700							"Cre10.g436700.t1.1;g10765.t1"		
+Cre10.g424850	"GMM:27.1.1;GMM:27.1"	"RNA.processing.splicing;RNA.processing"		"GO:0046540;GO:0000398;GO:0000244"	"U4/U6 x U5 tri-snRNP complex;mRNA splicing, via spliceosome;spliceosomal tri-snRNP complex assembly"		"g10502.t1;SPL5;Cre10.g424850.t1.1;PRP31;g10502.t1;SPL5;Cre10.g424850.t1.1;PRP31"	"PRP31;PRP31"	"U4/U6 small nuclear ribonucleoprotein; similar to PRP31;U4/U6 small nuclear ribonucleoprotein; similar to PRP31"
+Cre10.g438350			"Secretory pathway"			LTH3	"g10798.t1;g10798.t1"	"LTH3;LTH3"	"belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox;belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox"
+Cre10.g455250			Mitochondrion				"g11173.t1;Cre10.g455250.t1.1"		
+Cre10.g464100	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre10.g464100.t1.1;g11372.t1;g11372.t1;Cre10.g464100.t1.1;Cre10.g464100.t1.1;g11372.t1;Cre10.g464100.t1.1;g11372.t1"		
+Cre10.g451752	GMM:1.5	"PS.carbon concentrating mechanism"	Mitochondrion			PHC25	"g11098.t1;PHC25;g11098.t1;PHC25"		
+Cre10.g427600	"GMM:33.99;GMM:31.1;GMM:29.5.11.20"	"development.unspecified;cell.organisation;protein.degradation.ubiquitin.proteasom"		"GO:0009378;GO:0006310;GO:0006281"	"four-way junction helicase activity;DNA recombination;DNA repair"	KAT1	"KAT1;Cre10.g427600.t1.1;g10562.t1;PF19;Cre10.g427600.t1.1;KAT1;PF19;g10562.t1;Cre10.g427600.t1.1;PF19;KAT1;g10562.t1"	"KTNA1;KTNA1;KTNA1"	"Microtubule-severing protein katanin, p60 (catalytic) subunit. Genbank accession AF205377; Mutated in central pair assembly mutant pf19; homologous to human KTNA1; genetically linked to KATL1 and KATL2;Microtubule-severing protein katanin, p60 (catalytic) subunit. Genbank accession AF205377; Mutated in central pair assembly mutant pf19; homologous to human KTNA1; genetically linked to KATL1 and KATL2;Microtubule-severing protein katanin, p60 (catalytic) subunit. Genbank accession AF205377; Mutated in central pair assembly mutant pf19; homologous to human KTNA1; genetically linked to KATL1 and KATL2"
+Cre10.g463700							g11363.t1		
+Cre10.g460000			Mitochondrion				g11279.t1		
+Cre10.g419400							"g10381.t1;g10381.t1;g10381.t1;g10381.t1;g10381.t1"		
+Cre10.g441150			"Mitochondrion;Chloroplast"				"g10856.t1;g10856.t1;g10856.t1;g10856.t1;g10856.t1"		
+Cre10.g449150			"Secretory pathway"				"g11044.t1;g11044.t1"		
+Cre10.g429450							"g10608.t1;g10608.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre10.g460100	GMM:33.99	development.unspecified	Mitochondrion	GO:0005515	"protein binding"		"g11281.t1;Cre10.g460100.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g429400						MCG1	"g10607.t1;OPR45;g10607.t1;OPR45;g10607.t1;OPR45;OPR45;g10607.t1"	"MCG1;MCG1;MCG1;MCG1"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; stabilizes petG mRNA; two alternative transcripts;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; stabilizes petG mRNA; two alternative transcripts;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; stabilizes petG mRNA; two alternative transcripts;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; stabilizes petG mRNA; two alternative transcripts"
+Cre10.g448000							g11017.t1		
+Cre10.g442750	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"g10891.t1;Cre10.g442750.t1.1;Cre10.g442750.t1.1;g10891.t1"		
+Cre10.g458650							"g11251.t1;g11251.t1"		
+Cre10.g463200							"Cre10.g463200.t1.1;g11351.t1;Cre10.g463200.t1.1;g11351.t1;g11351.t1;Cre10.g463200.t1.1;g11351.t1;Cre10.g463200.t1.1;Cre10.g463200.t1.1;g11351.t1;Cre10.g463200.t1.1;g11351.t1;g11351.t1;Cre10.g463200.t1.1;Cre10.g463200.t1.1;g11351.t1"		
+Cre10.g450926									
+Cre10.g419100							"g10375.t1;g10375.t1"		
+Cre10.g432850						FAP77	"g10680.t1;Cre10.g432850.t1.1;CFAP77"	FAP77	"Flagellar Associated Protein, found in the flagellar proteome; Also found in basal body proteome as BUG1 [PMID: 15964273]; Also found in basal body proteome as CFAP77 [PMID: 28781053]; Transcript upregulated during flagellar regeneration [PMID: 15738400]; weak Similarity to Breast Cancer 1;"
+Cre10.g458950	GMM:29.8	"protein.assembly and cofactor ligation"	"Secretory pathway"				"g11257.t1;Cre10.g458950.t1.1;IBA57"		
+Cre10.g466300							"g11429.t1;Cre10.g466300.t1.1"	AAAS1	
+Cre10.g461700			Mitochondrion				g11318.t1		
+Cre10.g428850	GMM:31.6.1.4.1	"cell.motility.eukaryotes.axonemal dyneins.outer arm"				DLT1	"LC9;ODA-LC9;DLC9;Cre10.g428850.t1.1;g10594.t1"	DLT1	"LC9 component of outer arm dynein; Tctex1 homolog (Tctex-1 binds to the cytoplasmic tail of rhodopsin) [PMID: 16195342]"
+Cre10.g447700			Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		g11010.t1		
+Cre10.g446050			"Secretory pathway"				g10975.t1		
+Cre10.g454350			Mitochondrion				"g11154.t1;g11154.t1;g11154.t1"		
+Cre10.g465000				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g11393.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre10.g417500	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"	"Secretory pathway"	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN20-5	"CYN20-5;CYN9;Cre10.g417500.t1.1;g10336.t1"	CYN20E	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; contains an unusual N-terminal domain with signature of nuclear movement protein NudC (pfam3593)/alpha-crystallin/HSP2 (p23 co-chaperone of HSP90, cd237)"
+Cre10.g437150	"GMM:35.1.5;GMM:33.99"	"not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;development.unspecified"	Mitochondrion			PPR6	"Cre10.g437150.t1.1;CYCR5;g10773.t1;Cre10.g437150.t1.1;g10773.t1;CYCR5"	"PPR6;PPR6"	"PentatricoPeptide Repeat protein with a SmR-like and a cyclin domain;PentatricoPeptide Repeat protein with a SmR-like and a cyclin domain"
+Cre10.g435400							"Cre10.g435400.t1.1;g10738.t1"		
+Cre10.g426250							g10532.t1		
+Cre10.g418851			"Secretory pathway"				"Cre10.g418850.t1.2;g10369.t1"		
+Cre10.g421000				GO:0005515	"protein binding"		g10418.t1		
+Cre10.g421200			Mitochondrion	GO:0003723	"RNA binding"		g10424.t1		
+Cre10.g449700				GO:0006950	"response to stress"		"g11055.t1;g11055.t1;g11055.t1"		
+Cre10.g445600	"GMM:29.2.2.3.99;GMM:29.2.2.2.2"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;protein.synthesis.ribosome biogenesis.assembly factors.GTPases"		"GO:0042254;GO:0005634"	"ribosome biogenesis;nucleus"		g10964.t1		
+Cre10.g443801			"Secretory pathway"				g10911.t1		
+Cre10.g427453			Mitochondrion				"g10559.t1;g10559.t1;g10559.t1;g10559.t1"		
+Cre10.g428500	GMM:26.7	"misc.oxidases - copper, flavone etc"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH2	"PHX14;g10581.t1;P4H2;P4H2;g10581.t1;PHX14;P4H2;g10581.t1;PHX14"	"PFH2;PFH2;PFH2"	"contains C-terminal ShK domain, Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. (27) [PMID: 17220203] as v2 C_130209;contains C-terminal ShK domain, Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. (27) [PMID: 17220203] as v2 C_130209;contains C-terminal ShK domain, Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al. (27) [PMID: 17220203] as v2 C_130209"
+Cre10.g465950						CGL148	"g11420.t1;Cre10.g465950.t1.1;Cre10.g465950.t1.1;g11420.t1"	"CGL148;CGL148"	
+Cre10.g427200							"g10554.t2;g10554.t2"		
+Cre10.g422201	GMM:34.12	transport.metal	Mitochondrion	"GO:0046872;GO:0030001;GO:0000166"	"metal ion binding;metal ion transport;nucleotide binding"	CTP4	"g10445.t1;Cre10.g422200.t1.2"	CTP4	"Cu transport across thylakoid membrane; Ortholog of PAA2 from A. thaliana"
+Cre10.g442550			Chloroplast				"g10887.t1;Cre10.g442550.t1.1"		
+Cre10.g462600				"GO:0009982;GO:0009451;GO:0003723;GO:0001522"	"pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis"	PUS15			
+Cre10.g423750	GMM:18.8.1	"Co-factor and vitamine metabolism.ubiquinone.hexaprenyldihydroxybenzoate methyltransferase"	Chloroplast			COQ3	"Cre10.g423750.t1.1;COQ3;g10480.t1"	COQ3	"Similar to yeast hexaprenyldihydroxybenzoate methyltransferase (GI:92090588), involved in Coenzyme Q biosynthesis"
+Cre10.g443150							"Cre10.g443150.t1.1;g10899.t1"		
+Cre10.g424550			Mitochondrion				"g10496.t1;g10496.t1"		
+Cre10.g455551			Chloroplast				"g11179.t1;g11179.t1"		
+Cre10.g428050			Mitochondrion				g10572.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g421850							"g10438.t1;Cre10.g421850.t1.1"		
+Cre10.g441300	"GMM:33.99;GMM:27.3.3"	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"		"GO:0007275;GO:0006355;GO:0003700"	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g10859.t1;g10859.t1;g10859.t1;g10859.t1;g10859.t1"		
+Cre10.g444400							g10927.t1		
+Cre10.g445371									
+Cre10.g428664						DIC6	"FAP163;WD60;g10586.t1;D1bIC1"	DIC6	
+Cre10.g440700			"Secretory pathway"				g10846.t1		
+Cre10.g461895									
+Cre10.g424250						FAP90	"Cre10.g424250.t1.1;g10490.t1;BUG13"	FAP90	"Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG13 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400]"
+Cre10.g431700							"Cre10.g431700.t1.1;g10656.t1"		
+Cre10.g457000	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN65	"g11213.t1;g11213.t1"	"CYN65;CYN65"	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; N-terminal domain contains modified RING Zinc-finger (U-box); no targeting peptide, probably cytosolic; similar to AtCYP65;Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; N-terminal domain contains modified RING Zinc-finger (U-box); no targeting peptide, probably cytosolic; similar to AtCYP65"
+Cre10.g432750							g10677.t1		
+Cre10.g444183			"Secretory pathway"				"g10922.t1;Cre10.g444200.t1.3"		
+Cre10.g452700							"g11118.t1;Cre10.g452700.t1.1"		
+Cre10.g421550	GMM:27.3.28	"RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"		"GO:0005634;GO:0003677"	"nucleus;DNA binding"				
+Cre10.g429017			Mitochondrion				"g10599.t1;Cre10.g429017.t1.1;g10599.t1;Cre10.g429017.t1.1;Cre10.g429017.t1.1;g10599.t1"		
+Cre10.g436250			"Secretory pathway"				"Cre10.g436250.t1.1;g10756.t1"		
+Cre10.g459600	GMM:27.3.13	"RNA.regulation of transcription.CCAAT box binding factor family, DR1"					g11271.t1		
+Cre10.g458450	"GMM:21.2.2;GMM:21.2"	"redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione"		"GO:0055114;GO:0006979;GO:0004602"	"oxidation-reduction process;response to oxidative stress;glutathione peroxidase activity"	GPX5	"g11246.t1;GPXH"	GPX5	"GPX5 gene expression is induced by singlet oxygen; mutant shows altered response to Rose Bengal"
+Cre10.g423500	GMM:19.21	"tetrapyrrole synthesis.heme oxygenase"	Chloroplast	"GO:0055114;GO:0006788;GO:0004392"	"oxidation-reduction process;heme oxidation;heme oxygenase (decyclizing) activity"	HMO1	"HMO1;Cre10.g423500.t1.1;g10475.t1;g10475.t1;HMO1;Cre10.g423500.t1.1"	"HMOX1;HMOX1"	"Heme oxygenase; HMOX; HO; Catalyzes the ferredoxin dependent degradation of heme to bilirubin, it is essential for recycling of iron from heme [PMID: 9744099; PMID: 10949378]. Heme is used as a substrate and cofactor for its own degradation to biliverdin, iron, and carbon monoxide; Involved in the synthesis of phytochromobilin, the pigment cofactor of phytochrome, in plants [PMID: 9744099];Heme oxygenase; HMOX; HO; Catalyzes the ferredoxin dependent degradation of heme to bilirubin, it is essential for recycling of iron from heme [PMID: 9744099; PMID: 10949378]. Heme is used as a substrate and cofactor for its own degradation to biliverdin, iron, and carbon monoxide; Involved in the synthesis of phytochromobilin, the pigment cofactor of phytochrome, in plants [PMID: 9744099]"
+Cre10.g426616			Mitochondrion						
+Cre10.g435900			Mitochondrion				g10748.t1		
+Cre10.g437601			Mitochondrion						
+Cre10.g417426			Mitochondrion						
+Cre10.g444216							g10923.t1		
+Cre10.g450200							"Cre10.g450200.t1.1;g11065.t1;Cre10.g450200.t1.1;g11065.t1;g11065.t1;Cre10.g450200.t1.1"		
+Cre10.g460600	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"	Chloroplast	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN53	g11292.t1	CYN53	"Peptidyl-prolyl cis-trans isomerase (rotamase) with two cyclophilin domains in tandem; similar and linked to CYN52; contains N-terminal PAN domain of unknown function, shared with CYN51"
+Cre10.g421700	GMM:11.5.2	"lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)"	Chloroplast	"GO:0055114;GO:0051287;GO:0046168;GO:0016616;GO:0009331;GO:0006072;GO:0005975;GO:0004367"	"oxidation-reduction process;NAD binding;glycerol-3-phosphate catabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;glycerol-3-phosphate dehydrogenase complex;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity"	GPD4	"g10435.t1;GPDH1;Cre10.g421700.t1.1"	GPD4	"Identified as GPDH1 (PMID 22358185); Null-allele mutant was isolated (PMID 29743196)"
+Cre10.g436200			Mitochondrion				"g10755.t1;g10755.t1;g10755.t1;g10755.t1"		
+Cre10.g421300							"Cre10.g421300.t1.1;g10426.t1;g10426.t1;Cre10.g421300.t1.1"		
+Cre10.g444600			Mitochondrion				"g10931.t1;g10931.t1"		
+Cre10.g465650	GMM:33.99	development.unspecified		GO:0005515	"protein binding"		"g11410.t1;Cre10.g465650.t1.1"		
+Cre10.g442850	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0006265;GO:0005694;GO:0003917;GO:0003916;GO:0003677"	"DNA topological change;chromosome;DNA topoisomerase type I activity;DNA topoisomerase activity;DNA binding"	TOP1A	"g10893.t1;g10893.t1;g10893.t1;g10893.t1;g10893.t1;g10893.t1;g10893.t1"	"TOP1A;TOP1A;TOP1A;TOP1A;TOP1A;TOP1A;TOP1A"	"contains HMG-box;contains HMG-box;contains HMG-box;contains HMG-box;contains HMG-box;contains HMG-box;contains HMG-box"
+Cre10.g434500	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g10716.t1;g10716.t1;g10716.t1;g10716.t1"		
+Cre10.g438150							"Cre10.g438150.t1.1;g10793.t1;Cre10.g438150.t1.1;g10793.t1;Cre10.g438150.t1.1;g10793.t1;g10793.t1;Cre10.g438150.t1.1"		
+Cre10.g450626			Chloroplast						
+Cre10.g465150									
+Cre10.g451350							g11091.t1		
+Cre10.g432770							"Cre10.g432770.t1.1;g10678.t1;g10678.t1;Cre10.g432770.t1.1;g10678.t1;Cre10.g432770.t1.1"		
+Cre10.g454500			Mitochondrion						
+Cre10.g446800	GMM:16.8.2	"secondary metabolism.flavonoids.chalcones"					"g10991.t1;Cre10.g446800.t1.1"		
+Cre10.g446950			Mitochondrion	GO:0005515	"protein binding"		"g10994.t1;g10994.t1"		
+Cre10.g451250	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g11089.t1;g11089.t1;g11089.t1"		
+Cre10.g433750	"GMM:27.1.3.1;GMM:27.1"	"RNA.processing.3' end processing.PAP;RNA.processing"		"GO:0043631;GO:0016779;GO:0005634;GO:0004652;GO:0003723"	"RNA polyadenylation;nucleotidyltransferase activity;nucleus;polynucleotide adenylyltransferase activity;RNA binding"	PAP1	"g10699.t1;PAP1;PAP1;g10699.t1;g10699.t1;PAP1;PAP1;g10699.t1"	"PAP1;PAP1;PAP1;PAP1"	"Class-I Nucleotidyl-transferase; adds poly(A) tails to nuclear transcripts;Class-I Nucleotidyl-transferase; adds poly(A) tails to nuclear transcripts;Class-I Nucleotidyl-transferase; adds poly(A) tails to nuclear transcripts;Class-I Nucleotidyl-transferase; adds poly(A) tails to nuclear transcripts"
+Cre10.g444750			Mitochondrion				"g10935.t1;g10935.t1"		
+Cre10.g445323			"Secretory pathway"						
+Cre10.g438600							"g10803.t1;Cre10.g438600.t1.1"		
+Cre10.g433250	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0006810;GO:0005215"	"transmembrane transport;membrane;transport;transporter activity"	XUV4	"g10688.t1;XUV4;Cre10.g433250.t1.1;UAPA4"		
+Cre10.g447800				GO:0003723	"RNA binding"		"g11013.t1;Cre10.g447800.t1.1;g11013.t1;Cre10.g447800.t1.1;g11013.t1;Cre10.g447800.t1.1"		
+Cre10.g465726									
+Cre10.g464200			"Secretory pathway"				g11374.t1		
+Cre10.g447200									
+Cre10.g452550	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"	Mitochondrion			HOP1	"HOP1;Cre10.g452550.t1.1;g11115.t1;HOP1;Cre10.g452550.t1.1;g11115.t1;Cre10.g452550.t1.1;g11115.t1;HOP1"	"HOPP1;HOPP1;HOPP1"	"HORMA-domain containing meiosis-specific protein; binds DSBs and oligomerizes early during meiotic prophase, forming axial and lateral elements of the synaptonemal complex;HORMA-domain containing meiosis-specific protein; binds DSBs and oligomerizes early during meiotic prophase, forming axial and lateral elements of the synaptonemal complex;HORMA-domain containing meiosis-specific protein; binds DSBs and oligomerizes early during meiotic prophase, forming axial and lateral elements of the synaptonemal complex"
+Cre10.g422100							"g10443.t1;Cre10.g422100.t1.1"		
+Cre10.g443450			"Secretory pathway"				"g10904.t1;Cre10.g443450.t1.1"		
+Cre10.g462150			Chloroplast				g11329.t1		
+Cre10.g440350				"GO:0006950;GO:0005516"	"response to stress;calmodulin binding"		g10839.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g456500							g11202.t1		
+Cre10.g441100			"Secretory pathway"	"GO:0042765;GO:0016255"	"GPI-anchor transamidase complex;attachment of GPI anchor to protein"	PIGT	"GPI16;Cre10.g441100.t1.1;GPIT1;GIT1;g10855.t1;PIGT"	PIGT1	"GPI (glycosyl phosphatidyl inositol) transamidase (here: GPI16/PIG-T subunit / sub-complex of the GPI transamidase); part of a multiprotein complex; GPI transamidase adds glycosylphosphatidylinositols (GPIs) to newly synthesized proteins; essential N-glycosylated transmembrane glycoprotein"
+Cre10.g451200							"Cre10.g451200.t1.1;g11088.t1"		
+Cre10.g444250	"GMM:34.99;GMM:29.3.4.99;GMM:28.99"	"transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified"					"g10924.t1;g10924.t1"		
+Cre10.g442000							"Cre10.g442000.t1.1;g10875.t1"		
+Cre10.g464300			Mitochondrion						
+Cre10.g464900	GMM:11.9.3	"lipid metabolism.lipid degradation.lysophospholipases"					"g11391.t1;g11391.t1;g11391.t1;g11391.t1"		
+Cre10.g447767	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion			AOF2	"AOF2;g11012.t1"		"Flavin containing amine oxidoreductase"
+Cre10.g425450			Mitochondrion			AOF5	"Cre10.g425450.t1.1;g10515.t1;AOF5"		"Putative flavin-containing amine oxidase"
+Cre10.g445700	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g10966.t1;g10966.t1;g10966.t1;g10966.t1"		
+Cre10.g432000	"GMM:29.5.11.4.6;GMM:28.2;GMM:20.2.5"	"protein.degradation.ubiquitin.E3.DCX;DNA.repair;stress.abiotic.light"		"GO:0006281;GO:0005634;GO:0003676"	"DNA repair;nucleus;nucleic acid binding"	DDB1	"Cre10.g432000.t1.1;DDB1;g10662.t1"	DDB1	"Homologous to eukaryotic UV-DDB1(UV-damaged DNA binding complex subunit 1 protein); Nucleus"
+Cre10.g422000	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		"GO:0008033;GO:0004809;GO:0003723"	"tRNA processing;tRNA (guanine-N2-)-methyltransferase activity;RNA binding"		"TRM1;Cre10.g422000.t1.1;TMG6;g10441.t1"		
+Cre10.g423900				GO:0003677	"DNA binding"		"g10483.t1;Cre10.g423900.t1.1"		
+Cre10.g421350	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"			MMP25	"MMP25;g10427.t1;Cre10.g421350.t1.1;MMP25;Cre10.g421350.t1.1;g10427.t1;g10427.t1;MMP25;Cre10.g421350.t1.1;MMP25;Cre10.g421350.t1.1;g10427.t1"	"MMP25;MMP25;MMP25;MMP25"	"Matrix metalloproteinase belonging to the M11 peptidase family;Matrix metalloproteinase belonging to the M11 peptidase family;Matrix metalloproteinase belonging to the M11 peptidase family;Matrix metalloproteinase belonging to the M11 peptidase family"
+Cre10.g431350			Chloroplast			TGL16	"g10649.t1;TGL16;g10649.t1;TGL16"		
+Cre10.g440850	"GMM:21.2.2;GMM:21.2"	"redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione"	Chloroplast	"GO:0055114;GO:0016491;GO:0016209;GO:0006979;GO:0004602"	"oxidation-reduction process;oxidoreductase activity;antioxidant activity;response to oxidative stress;glutathione peroxidase activity"	GPX4	g10849.t2	GPX4	"Possibly cytosolic"
+Cre10.g449050			Mitochondrion				"Cre10.g449050.t1.1;g11040.t1;g11040.t1;Cre10.g449050.t1.1;g11040.t1;Cre10.g449050.t1.1"		
+Cre10.g452600							"g11116.t1;Cre10.g452600.t1.1;g11116.t1;Cre10.g452600.t1.1"		
+Cre10.g425200	GMM:29.4	"protein.postranslational modification"		"GO:0055114;GO:0030328;GO:0016670;GO:0001735"	"oxidation-reduction process;prenylcysteine catabolic process;oxidoreductase activity, acting on a sulfur group of donors, oxygen as acceptor;prenylcysteine oxidase activity"		"g10510.t1;g10510.t1;g10510.t1"		
+Cre10.g455000							"Cre10.g455000.t1.1;g11167.t2;g11167.t2;Cre10.g455000.t1.1;Cre10.g455000.t1.1;g11167.t2;g11167.t2;Cre10.g455000.t1.1;g11167.t2;Cre10.g455000.t1.1;Cre10.g455000.t1.1;g11167.t2;Cre10.g455000.t1.1;g11167.t2;g11167.t2;Cre10.g455000.t1.1"		
+Cre10.g435300	GMM:29.5.4	"protein.degradation.aspartate protease"		"GO:0008270;GO:0006508;GO:0004177"	"zinc ion binding;proteolysis;aminopeptidase activity"	AAP1	"g10736.t2;AAP1;g10736.t2;AAP1;g10736.t2;AAP1;AAP1;g10736.t2;g10736.t2;AAP1;AAP1;g10736.t2;AAP1;g10736.t2;g10736.t2;AAP1;g10736.t2;AAP1;AAP1;g10736.t2"	"AAP1;AAP1;AAP1;AAP1;AAP1;AAP1;AAP1;AAP1;AAP1;AAP1"	"Probably organelle-located, by TargetP prediction and similarity to AT5G04710;Probably organelle-located, by TargetP prediction and similarity to AT5G04710;Probably organelle-located, by TargetP prediction and similarity to AT5G04710;Probably organelle-located, by TargetP prediction and similarity to AT5G04710;Probably organelle-located, by TargetP prediction and similarity to AT5G04710;Probably organelle-located, by TargetP prediction and similarity to AT5G04710;Probably organelle-located, by TargetP prediction and similarity to AT5G04710;Probably organelle-located, by TargetP prediction and similarity to AT5G04710;Probably organelle-located, by TargetP prediction and similarity to AT5G04710;Probably organelle-located, by TargetP prediction and similarity to AT5G04710"
+Cre10.g464776									
+Cre10.g432550				"GO:0008076;GO:0006813;GO:0005249"	"voltage-gated potassium channel complex;potassium ion transport;voltage-gated potassium channel activity"	KCN2	"Cre10.g432550.t1.1;g10673.t1;KCN2"		"Belongs to Kv class; contains one K+ selective pore domain; sequence shows the K+ filter selection and voltage sensor regions; closely related to KCN1"
+Cre10.g438750							"Cre10.g438750.t1.1;g10806.t1"		
+Cre10.g463650							"g11362.t1;Cre10.g463650.t1.1"		
+Cre10.g439500			"Secretory pathway"				"g10822.t1;g10822.t1;g10822.t1;g10822.t1"		
+Cre10.g425850							"g10524.t1;Cre10.g425850.t1.1"		
+Cre10.g465250	GMM:31.6.1.5.2	"cell.motility.eukaryotes.radial spoke.stalk"				RSP11	"PF25;g11400.t1;Cre10.g465250.t1.1"	RSP11	"Flagellar radial spoke protein 11 (RSP11) at radial spoke stalk; containing an RIIa domain initially found in the regulatory subunit of cAMP dependent protein kinase. Gene originally termed PF25 [PMID: 16507594; PMID: 7204490; PMID: 16267272; GI:83284717]."
+Cre10.g440000			Chloroplast			RAA8	"g10832.t1;OPR120"	RAA8	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; necessary for trans-splicing of psaA mRNA; mutated in strain F19; component psaA trans-splicing sub complex I"
+Cre10.g419450	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g10383.t1;g10383.t1;g10383.t1"		
+Cre10.g466400							"g11431.t2;g11431.t2"		
+Cre10.g418450			"Secretory pathway"				"Cre10.g418450.t1.1;g10360.t1"		
+Cre10.g435950			"Secretory pathway"			OPR47	g10749.t1	OPR47	"OctotricoPeptide Repeat (OPR) protein"
+Cre10.g450350						IFT25	"FAP232;g11068.t1;Cre10.g450350.t1.1;Hspb11"	IFT25	"Found in the flagellar and basal body proteomes; belongs to IFT-B1 particle; identified in the flagellar proteome; upregulated by deflagellation"
+Cre10.g429050	GMM:28.2	DNA.repair		"GO:0006289;GO:0006281;GO:0005634;GO:0004519;GO:0004518;GO:0003697"	"nucleotide-excision repair;DNA repair;nucleus;endonuclease activity;nuclease activity;single-stranded DNA binding"		"g10600.t1;XPG2"	XPG2	"Similar to the Xeroderma pignmentosum group G protein, XPGC, and Rad2 yeast homolog [PMID: 17992532]"
+Cre10.g430100	"GMM:26.2;GMM:10.3.2"	"misc.UDP glucosyl and glucoronyl transferases;cell wall.hemicellulose synthesis.glucuronoxylan"	"Secretory pathway"			ELG22	"g10622.t1;ELG22;g10622.t1;ELG22;ELG22;g10622.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre10.g420561	GMM:29.5.5	"protein.degradation.serine protease"							
+Cre10.g426800			"Secretory pathway"	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"		"g10546.t1;g10546.t1"		
+Cre10.g420500				"GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216"	"calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity"		g10404.t1		
+Cre10.g433400				"GO:0006850;GO:0005743"	"mitochondrial pyruvate transport;mitochondrial inner membrane"		"g10691.t1;Cre10.g433400.t1.1"		
+Cre10.g420100	"GMM:29.9;GMM:20.2.1"	"protein.co-chaperones;stress.abiotic.heat"	Cytosol			DNJ35	"g10396.t1;Cre10.g420100.t1.1;DNJ35"		"DnaJ-like protein, probably cytosolic since it contains no N-terminal extension and homologs in Arabidopsis (Q9SR91), tobacco (Q9SP9), and rice (Q688X8) are predicted by TargetP to be cytosolic; contains N-terminal J-domain (pfam226) and DnaJ C termina"
+Cre10.g418750							"g10367.t1;g10367.t1;g10367.t1"		
+Cre10.g462550							"Cre10.g462550.t1.1;g11338.t1"		
+Cre10.g420200			"Secretory pathway"			PHC55	"PHC55;g10398.t1;Cre10.g420200.t1.1"		
+Cre10.g434967							g10727.t1		
+Cre10.g434550			"Secretory pathway"						
+Cre10.g429550				"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	MRPS16	"g10610.t1;RPS16;Cre10.g429550.t1.1"	MRPS16	
+Cre10.g442400				GO:0005634	nucleus		"g10884.t1;Cre10.g442400.t1.1"		
+Cre10.g466600			Chloroplast				g11436.t2		
+Cre10.g423200	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g10468.t1;g10468.t1"		
+Cre10.g446750							"g10990.t2;g10990.t2;g10990.t2"		
+Cre10.g461575			Mitochondrion						
+Cre10.g427300	GMM:31.6.1.5.2	"cell.motility.eukaryotes.radial spoke.stalk"				RSP2	"PF24;Cre10.g427300.t1.1;g10556.t1"	RSP2	"Radial spoke protein 2 (RSP2). Originally identified as PF24 locus [PMID: 16507594; PMID: 7204490; PMID: 14871938; GI:37528882]"
+Cre10.g426700	GMM:26.1	misc.misc2	"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A4	"g10544.t1;CYP28;g10544.t1;CYP28;CYP28;g10544.t1"	"CYP739A4;CYP739A4;CYP739A4"	"Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols.;Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols.;Cytochrome P450. The CYP85 clan families CYP85 and CYP90 make brassinosteroids in higher plants. The CYP737-740 families in Chlamydomonas may metabolize sterols."
+Cre10.g439150	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"	RPT5	"GEX36;RPT5;g10815.t1;Cre10.g439150.t1.1"	RPT5	"26S proteasome regulatory complex, base subcomplex, ATPase RPT5 (subunit 6A). ts lethal mutations isolated (PMID 25336509)"
+Cre10.g443100			Chloroplast				"Cre10.g443100.t1.1;g10898.t1"		
+Cre10.g434726			Chloroplast				g10721.t1		
+Cre10.g458300							"g11242.t1;Cre10.g458300.t1.1;g11242.t1;Cre10.g458300.t1.1"		
+Cre10.g445952			"Secretory pathway"				"g10973.t1;g10973.t1;g10973.t1"		
+Cre10.g449501			Mitochondrion						
+Cre10.g444900	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"	MFT4	"MAE4;g10938.t1;MFT4;MAE4;MFT4;g10938.t1;MAE4;g10938.t1;MFT4"		"putative MATE efflux family protein, Na+-driven multidrug efflux pump;putative MATE efflux family protein, Na+-driven multidrug efflux pump;putative MATE efflux family protein, Na+-driven multidrug efflux pump"
+Cre10.g448200	"GMM:29.4;GMM:29.3.4.99"	"protein.postranslational modification;protein.targeting.secretory pathway.unspecified"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	ARL9	"g11021.t1;ARL9;g11021.t1;ARL9;ARL9;g11021.t1;ARL9;g11021.t1"		
+Cre10.g455650	"GMM:13.1.3.4.12;GMM:13.1.3.4"	"amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase;amino acid metabolism.synthesis.aspartate family.methionine"					"Cre10.g455650.t1.1;g11182.t1"		
+Cre10.g455231						CSR4	"g11172.t1;CSR4;Cre10.g455231.t1.1"		
+Cre10.g425000	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g10506.t1;g10506.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre10.g461851			Mitochondrion				g11321.t2		
+Cre10.g433900	"GMM:29.5.11.4.1;GMM:29.4.1.59"	"protein.degradation.ubiquitin.E3.HECT;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX"	Mitochondrion	"GO:0006464;GO:0005515;GO:0004842;GO:0004719"	"cellular protein modification process;protein binding;ubiquitin-protein transferase activity;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity"		"g10703.t2;g10703.t2;g10703.t2;g10703.t2;g10703.t2;g10703.t2;g10703.t2;g10703.t2;g10703.t2"		
+Cre10.g453900	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0005515;GO:0003755;GO:0000413"	"protein folding;protein binding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN71	"g11146.t1;Cre10.g453900.t1.1;Cre10.g453900.t1.1;g11146.t1;g11146.t1;Cre10.g453900.t1.1;g11146.t1;Cre10.g453900.t1.1"	"CYN71;CYN71;CYN71;CYN71"	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to AtCYP71; null-allele mutant was isolated (PMID 29743196);Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to AtCYP71; null-allele mutant was isolated (PMID 29743196);Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to AtCYP71; null-allele mutant was isolated (PMID 29743196);Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to AtCYP71; null-allele mutant was isolated (PMID 29743196)"
+Cre10.g434001			Chloroplast						
+Cre10.g463150	"GMM:13.2.6.3;GMM:13.2.4.1;GMM:13.2.3.5;GMM:11.9.4.14"	"amino acid metabolism.degradation.aromatic aa.tryptophan;amino acid metabolism.degradation.branched chain group.shared;amino acid metabolism.degradation.aspartate family.lysine;lipid metabolism.lipid degradation.beta-oxidation.enoyl isomerase"		"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"g11350.t1;g11350.t1"	"DCI1;DCI1"	
+Cre10.g447550			Chloroplast				g11007.t1		
+Cre10.g432800	GMM:29.2.1.2.1.31	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.SA"		"GO:0015935;GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"small ribosomal subunit;translation;ribosome;intracellular;structural constituent of ribosome"	RPSA	"RPSA;g10679.t1;Cre10.g432800.t1.1;RPSA;g10679.t1;Cre10.g432800.t1.1;g10679.t1;RPSA;Cre10.g432800.t1.1;g10679.t1;RPSA;Cre10.g432800.t1.1;g10679.t1;RPSA;Cre10.g432800.t1.1;RPSA;g10679.t1;Cre10.g432800.t1.1;g10679.t1;Cre10.g432800.t1.1;RPSA;Cre10.g432800.t1.1;g10679.t1;RPSA;RPSA;g10679.t1;Cre10.g432800.t1.1"	"RPSA1;RPSA1;RPSA1;RPSA1;RPSA1;RPSA1;RPSA1;RPSA1;RPSA1"	"Cytosolic 40S small ribosomal subunit protein Sa;Cytosolic 40S small ribosomal subunit protein Sa;Cytosolic 40S small ribosomal subunit protein Sa;Cytosolic 40S small ribosomal subunit protein Sa;Cytosolic 40S small ribosomal subunit protein Sa;Cytosolic 40S small ribosomal subunit protein Sa;Cytosolic 40S small ribosomal subunit protein Sa;Cytosolic 40S small ribosomal subunit protein Sa;Cytosolic 40S small ribosomal subunit protein Sa"
+Cre10.g420650	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	"protein binding"		"g10411.t1;Cre10.g420650.t1.1"		
+Cre10.g426050	"GMM:29.5.5;GMM:29.5"	"protein.degradation.serine protease;protein.degradation"		"GO:0008236;GO:0006508;GO:0005515"	"serine-type peptidase activity;proteolysis;protein binding"	TSP1	"g10528.t1;CTPA1;Cre10.g426050.t1.1;TSP1;TCP1"		"Possible C-terminal peptidase based on conserved domains"
+Cre10.g460850			Chloroplast				"g11298.t1;g11298.t1"		
+Cre10.g442450			"Secretory pathway"	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"g10885.t1;Cre10.g442450.t1.1;Cre10.g442450.t1.1;g10885.t1;g10885.t1;Cre10.g442450.t1.1;Cre10.g442450.t1.1;g10885.t1"		
+Cre10.g457700	"GMM:4.1.16;GMM:31.6.1.6.3;GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4"	"glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);cell.motility.eukaryotes.central pair.C1;signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre10.g457700.t1.1;g11228.t1;g11228.t1;Cre10.g457700.t1.1"		
+Cre10.g463300			"Secretory pathway"				"g11353.t1;Cre10.g463300.t1.1;Cre10.g463300.t1.1;g11353.t1;Cre10.g463300.t1.1;g11353.t1"		
+Cre10.g441500							"g10864.t1;Cre10.g441500.t1.1"		
+Cre10.g437800			Mitochondrion	"GO:0006810;GO:0005215"	"transport;transporter activity"		"g10785.t1;g10785.t1"		
+Cre10.g455950	"GMM:31.6.1.10;GMM:11.8"	"cell.motility.eukaryotes.flagellar associated proteins;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016491	"oxidoreductase activity"	FAP407	"g11188.t1;g11188.t1"	"FAP407;FAP407"	"One of four highly similar, tandemly-repeated flavodoxins, AGG3 Paralog;One of four highly similar, tandemly-repeated flavodoxins, AGG3 Paralog"
+Cre10.g431400	GMM:27.1.19	RNA.processing.ribonucleases				TRZ1	"g10650.t1;Cre10.g431400.t1.1;TRZ1"		"sequence similarity with Arabidopsis TRZ1, a nuclear tRNase Z, b-lactamase family; could be involved in tRNA 3'-end processing"
+Cre10.g466900									
+Cre10.g434900	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	"GO:0055114;GO:0050660;GO:0016491;GO:0003824"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;catalytic activity"		"g10725.t1;g10725.t1"		
+Cre10.g459650			Mitochondrion				"g11272.t1;g11272.t1;g11272.t1"		
+Cre10.g433476									
+Cre10.g461250	"GMM:29.5.9;GMM:29.5.11.20"	"protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom"		GO:0005524	"ATP binding"		"NSF1;g11308.t1;NSF1;g11308.t1"		"ts-lethal mutant block at S/M (PMID 29743196);ts-lethal mutant block at S/M (PMID 29743196)"
+Cre10.g426550							"g10539.t1;Cre10.g426550.t1.1;g10539.t1;Cre10.g426550.t1.1;Cre10.g426550.t1.1;g10539.t1"		
+Cre10.g418050							"Cre10.g418050.t1.1;g10352.t1"		
+Cre10.g457262			"Secretory pathway"						
+Cre10.g461200							g11307.t1		
+Cre10.g443300	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CNK5	"CNK5;Cre10.g443300.t1.1;g10901.t1"	CNK5	"NimA related kinase homolog 5 [gi:34334399, PMID: 15068267]; null-allele mutant was isolated (PMID 29743196)"
+Cre10.g453000							"g11124.t1;Cre10.g453000.t1.1"		
+Cre10.g454850			Mitochondrion	"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"Cre10.g454850.t1.1;g11164.t1"		
+Cre10.g448100			"Secretory pathway"	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"		"Cre10.g448100.t1.1;g11019.t1;g11019.t1;Cre10.g448100.t1.1;Cre10.g448100.t1.1;g11019.t1"		
+Cre10.g443750							"Cre10.g443750.t1.1;g10910.t1"		
+Cre10.g419750	GMM:27.2	RNA.transcription		"GO:0046983;GO:0006351;GO:0003899"	"protein dimerization activity;transcription, DNA-templated;DNA-directed RNA polymerase activity"	RPB3	"g10389.t1;RPB3;Cre10.g419750.t1.1"	RPB3	"ts-lethal mutant was isolated (PMID 29743196)"
+Cre10.g420750	GMM:29.2.1.2.2.30	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L30"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL30	"Cre10.g420750.t1.1;g10413.t1;Cre10.g420750.t1.1;g10413.t1;Cre10.g420750.t1.1;g10413.t1;g10413.t1;Cre10.g420750.t1.1;Cre10.g420750.t1.1;g10413.t1;Cre10.g420750.t1.1;g10413.t1;g10413.t1;Cre10.g420750.t1.1;Cre10.g420750.t1.1;g10413.t1;Cre10.g420750.t1.1;g10413.t1"	"RPL30;RPL30;RPL30;RPL30;RPL30;RPL30;RPL30;RPL30;RPL30"	"Cytosolic 60S large ribosomal subunit protein L30;Cytosolic 60S large ribosomal subunit protein L30;Cytosolic 60S large ribosomal subunit protein L30;Cytosolic 60S large ribosomal subunit protein L30;Cytosolic 60S large ribosomal subunit protein L30;Cytosolic 60S large ribosomal subunit protein L30;Cytosolic 60S large ribosomal subunit protein L30;Cytosolic 60S large ribosomal subunit protein L30;Cytosolic 60S large ribosomal subunit protein L30"
+Cre10.g457550	GMM:34.99	transport.misc				ATG18	"g11225.t1;Cre10.g457550.t1.1"	ATG18	"Phosphoinositide binding protein; required for vesicle formation in autophagy; binds PtdIns(3,5)P2, PI3P and PI4P; WD-40 repeat containing protein and PROPPIN family member; relocalizes from the vacuole to cytoplasm upon DNA replication stress; mammalian homologs include: WIPI1, WIPI2, WIPI3 and WIPI4/WDR45; mutations in human WDR45 cause static encephalopathy of childhood with neurodegeneration in adulthood (SENDA)"
+Cre10.g449600	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Mitochondrion			SPR1	"g11053.t1;SPR1"	SPR1	
+Cre10.g428550	GMM:25.3	"C1-metabolism.dihydropteridine diphosphokinase"	Mitochondrion	"GO:0042558;GO:0009396;GO:0003848"	"pteridine-containing compound metabolic process;folic acid-containing compound biosynthetic process;2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity"		"g10583.t1;DTS1;Cre10.g428550.t1.1;Cre10.g428550.t1.1;DTS1;g10583.t1"		"Involved in folate biosynthesis, probably mitochondrial enzyme. Converts p-aminobenzoic acid into folate;Involved in folate biosynthesis, probably mitochondrial enzyme. Converts p-aminobenzoic acid into folate"
+Cre10.g462850			"Secretory pathway"	"GO:0016021;GO:0015700;GO:0015105"	"integral component of membrane;arsenite transport;arsenite transmembrane transporter activity"		g11345.t1		
+Cre10.g437500	GMM:29.3.2	protein.targeting.mitochondria		"GO:0030150;GO:0005742"	"protein import into mitochondrial matrix;mitochondrial outer membrane translocase complex"	TOM7	"g10780.t1;Cre10.g437500.t1.1"	TOM7	"Mitochondrial import receptor subunit TOM7 (Translocase of outer membrane of 7 kDa) InterPro:IPR012621"
+Cre10.g436050	GMM:21.6	"redox.dismutases and catalases"	Chloroplast	"GO:0055114;GO:0046872;GO:0006801;GO:0004784"	"oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity"	FSD1	"g10751.t1;Cre10.g436050.t1.1"	FSD1	"superoxide dismutase [Fe], chloroplast precursor; iron superoxide dismutase; (FeSOD)"
+Cre10.g456900	"GMM:29.5.3;GMM:23.3"	"protein.degradation.cysteine protease;nucleotide metabolism.salvage"	Mitochondrion				"FPN4;g11211.t1;Cre10.g456900.t1.1"		
+Cre10.g430600			Chloroplast				g10633.t1		
+Cre10.g458800			"Secretory pathway"			SRR31	"g11254.t1;SRR31;Cre10.g458800.t1.1;SRR31;g11254.t1;Cre10.g458800.t1.1;Cre10.g458800.t1.1;SRR31;g11254.t1;g11254.t1;SRR31;Cre10.g458800.t1.1"		"part of a group of 5 closely-related SRR proteins;part of a group of 5 closely-related SRR proteins;part of a group of 5 closely-related SRR proteins;part of a group of 5 closely-related SRR proteins"
+Cre10.g424300	GMM:31.1	cell.organisation		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	KIN16-1	"KIN16-1;KIN12-2;g10491.t1;Cre10.g424300.t1.1"	KIN16A	"kinesin-16 family, a new family separated from the standard polyphyletic kinesin-12 family (PMID: 16481395)"
+Cre10.g466250	GMM:29.2.2.3.4	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins"		"GO:0032040;GO:0006364;GO:0005515"	"small-subunit processome;rRNA processing;protein binding"	PRP20	"Cre10.g466250.t1.1;g11428.t1;PRP20"	PRP20	"involved in pre-mRNA splicing. Contains WD-repeats and related to PRP19"
+Cre10.g430450	"GMM:18.5.1;GMM:1.2"	"Co-factor and vitamine metabolism.folate and vitamine K.folate;PS.photorespiration"	Chloroplast	"GO:0016742;GO:0009058;GO:0008864;GO:0006189"	"hydroxymethyl-, formyl- and related transferase activity;biosynthetic process;formyltetrahydrofolate deformylase activity;'de novo' IMP biosynthetic process"		"Cre10.g430450.t1.1;g10630.t1;Cre10.g430450.t1.1;g10630.t1"		
+Cre10.g450750			"Secretory pathway"				"g11077.t1;Cre10.g450750.t1.1"		
+Cre10.g449800			Mitochondrion				"g11057.t1;g11057.t1"		
+Cre10.g436600	GMM:33.99	development.unspecified	Chloroplast	"GO:0005525;GO:0003924"	"GTP binding;GTPase activity"		"RSGA;g10763.t1;Cre10.g436600.t1.1"	RSGA1	
+Cre10.g418976									
+Cre10.g460350	"GMM:3.3;GMM:26.5"	"minor CHO metabolism.sugar alcohols;misc.acyl transferases"	"Secretory pathway"	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"	PGA4	"PGA4;g11287.t1;g11287.t1;PGA4"	"PGA4;PGA4"	"Contains carbohydrate/purine kinase, PfkB, conserved site;Contains carbohydrate/purine kinase, PfkB, conserved site"
+Cre10.g446350	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"	CGLD14	"g10982.t1;g10982.t1"	"CGLD14;CGLD14"	
+Cre10.g460150	GMM:20.2.3	stress.abiotic.drought/salt		GO:0016020	membrane	ERM9	"Cre10.g460150.t1.1;ERM9;g11282.t1"		"Transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration)"
+Cre10.g435450	GMM:27.3.9	"RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family"		"GO:0043565;GO:0008270;GO:0006355;GO:0003700"	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	CPL2	"g10739.t1;Cre10.g435450.t1.1;Cre10.g435450.t1.1;g10739.t1"	"CPL2;CPL2"	"Conserved, expressed, transcription factor like protein;Conserved, expressed, transcription factor like protein"
+Cre10.g448500				"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"g11027.t1;g11027.t1"		
+Cre10.g440600							"Cre10.g440600.t1.1;g10844.t1;Cre10.g440600.t1.1;g10844.t1"		
+Cre10.g436900	GMM:29.3.2	protein.targeting.mitochondria				TAM41	"TAM41;g10768.t1;Cre10.g436900.t1.1"	TAM41	"Matrix factor involved in mitochondrial protein import. Similar to Arabidopsis Tam41 (AT3G47630.2) and to yeast Tam41 (YGR046W)."
+Cre10.g457228									
+Cre10.g456200	GMM:29.2.1.2.1.24	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S24"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS24	"Cre10.g456200.t1.1;g11193.t1"	RPS24	"Cytosolic 40S small ribosomal subunit protein S24"
+Cre10.g451950	"GMM:13.1.5.2.2;GMM:13.1.1.3.1;GMM:1.2.3"	"amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.glycine transaminase;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine aminotransferase;PS.photorespiration.aminotransferases peroxisomal"	Mitochondrion	"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"	AAT1	"Cre10.g451950.t1.1;AAT1;g11102.t1;g11102.t1;AAT1;Cre10.g451950.t1.1;g11102.t1;AAT1;Cre10.g451950.t1.1"	"AAT1;AAT1;AAT1"	"Alanine aminotransferase (EC 2.6.1.2); CO2-responsive gene; predicted mitochondrial by Target-P [PMID: 8883380];Alanine aminotransferase (EC 2.6.1.2); CO2-responsive gene; predicted mitochondrial by Target-P [PMID: 8883380];Alanine aminotransferase (EC 2.6.1.2); CO2-responsive gene; predicted mitochondrial by Target-P [PMID: 8883380]"
+Cre10.g436350	GMM:13.1.6.1.5	"amino acid metabolism.synthesis.aromatic aa.chorismate.shikimate kinase"	Chloroplast			SHKF1	"g10758.t1;SHK5;SHKF1;SHKF1;g10758.t1;SHK5"	"SHKF1;SHKF1"	"possible shikimate kinase (EC 2.7.1.71); based on similarity to rice shikimate kinase (GenBank BAD83413); predicted plastid location by Target-P and by homology;possible shikimate kinase (EC 2.7.1.71); based on similarity to rice shikimate kinase (GenBank BAD83413); predicted plastid location by Target-P and by homology"
+Cre10.g424150	GMM:27.2	RNA.transcription		"GO:0006367;GO:0005672"	"transcription initiation from RNA polymerase II promoter;transcription factor TFIIA complex"	TF2A4	"g10488.t1;Cre10.g424150.t1.1;g10488.t1;Cre10.g424150.t1.1"	"TF2A4;TF2A4"	
+Cre10.g464037							"Cre10.g464037.t1.1;g11370.t1;Cre10.g464037.t1.1;g11370.t1"		
+Cre10.g425300	GMM:13.1.3.1	"amino acid metabolism.synthesis.aspartate family.asparagine"	"Secretory pathway"	"GO:0006529;GO:0004066"	"asparagine biosynthetic process;asparagine synthase (glutamine-hydrolyzing) activity"		g10512.t1		
+Cre10.g432650				"GO:0016787;GO:0000290"	"hydrolase activity;deadenylation-dependent decapping of nuclear-transcribed mRNA"		"g10675.t1;g10675.t1"		
+Cre10.g435750	"GMM:30.2.7;GMM:30.2.25;GMM:30.2.13;GMM:29.4"	"signalling.receptor kinases.leucine rich repeat VII;signalling.receptor kinases.wall associated kinase;signalling.receptor kinases.leucine rich repeat XIII;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g10744.t1		
+Cre10.g433000	"GMM:29.1.14;GMM:29.1"	"protein.aa activation.glycine-tRNA ligase;protein.aa activation"	Chloroplast	"GO:0006426;GO:0005737;GO:0005524;GO:0004820;GO:0000166"	"glycyl-tRNA aminoacylation;cytoplasm;ATP binding;glycine-tRNA ligase activity;nucleotide binding"	TSG2	"TSG2;g10683.t1"	TSG2	"Putative organellar glycyl-tRNA synthetase, closer related to E coli glyS than TSG1"
+Cre10.g453728			Mitochondrion				"g11139.t1;g11139.t1"		
+Cre10.g443550	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672;GO:0003824"	"protein phosphorylation;protein kinase activity;catalytic activity"		"g10906.t1;Cre10.g443550.t1.1;Cre10.g443550.t1.1;g10906.t1;g10906.t1;Cre10.g443550.t1.1;Cre10.g443550.t1.1;g10906.t1;g10906.t1;Cre10.g443550.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre10.g437900							"SPL31;g10788.t1;g10788.t1;SPL31;SPL31;g10788.t1;SPL31;g10788.t1"		"Putative pre-mRNA-splicing factor, similar to PRP39 and plant protein of unknown function;Putative pre-mRNA-splicing factor, similar to PRP39 and plant protein of unknown function;Putative pre-mRNA-splicing factor, similar to PRP39 and plant protein of unknown function;Putative pre-mRNA-splicing factor, similar to PRP39 and plant protein of unknown function"
+Cre10.g458216							"Cre10.g458224.t1.2;g11240.t1"		
+Cre10.g419650			Chloroplast				"g10387.t1;Cre10.g419650.t1.1"		
+Cre10.g420000							g10394.t1		
+Cre10.g432100			Chloroplast				"Cre10.g432100.t1.1;g10664.t1"		
+Cre10.g417741									
+Cre10.g466175			Mitochondrion						
+Cre10.g429000	GMM:29.5.11.3	protein.degradation.ubiquitin.E2	Chloroplast				g10598.t2	UBC39	
+Cre10.g460050	"GMM:19.40;GMM:19.4"	"tetrapyrrole synthesis.regulation;tetrapyrrole synthesis.ALA dehydratase"	Chloroplast			FLU	"FLP;g11280.t2;FLU;FLP;FLU;g11280.t2"	"FLU1;FLU1"	"Two alternative spliced variant l-FLP and s-FLP [PMID: 15630026]. Flu is a negative regulator of tetrapyrrole biosynthesis by interaction with the glutamyl-tRNA reductase through the tetratricopeptide repeat domain [PMID: 12459457, PMID: 11606728]; also known as tigrina D in barley [PMID: 14550558];Two alternative spliced variant l-FLP and s-FLP [PMID: 15630026]. Flu is a negative regulator of tetrapyrrole biosynthesis by interaction with the glutamyl-tRNA reductase through the tetratricopeptide repeat domain [PMID: 12459457, PMID: 11606728]; also known as tigrina D in barley [PMID: 14550558]"
+Cre10.g454300	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g11153.t1;g11153.t1;g11153.t1"		
+Cre10.g422300	GMM:21.5	redox.peroxiredoxin	Chloroplast	GO:0016491	"oxidoreductase activity"	PRX6	"g10447.t1;Cre10.g422300.t1.1"	PRX6	"Thioredoxin dependent peroxidase similar to Arabidopsis PRXQ; Chloroplastic thioredoxin dependent peroxidase; Attached to thylakoids in Arabidopsis [PMID: 16507087; PMID: 15531707; PMID: 14976238; PMID: 12529539; PMID: 15890615]"
+Cre10.g418550									
+Cre10.g445201									
+Cre10.g454200			Chloroplast				"g11151.t1;Cre10.g454200.t1.1"		
+Cre10.g430850							"g10639.t1;Cre10.g430850.t1.1;g10639.t1;Cre10.g430850.t1.1;Cre10.g430850.t1.1;g10639.t1"		
+Cre10.g437050			Mitochondrion	"GO:0006461;GO:0005739"	"protein complex assembly;mitochondrion"	ATP11	"ATP11;Cre10.g437050.t1.1;g10771.t1;ATP11;g10771.t1;Cre10.g437050.t1.1"	"ATP11;ATP11"	"Putative assembly factor 1 for the F1 component of the mitochondrial ATP synthase complex; homolog of yeast protein ATP11 (named ATPAF1 in mammals); N-terminal mitochondrial targeting sequence predicted by TargetP;Putative assembly factor 1 for the F1 component of the mitochondrial ATP synthase complex; homolog of yeast protein ATP11 (named ATPAF1 in mammals); N-terminal mitochondrial targeting sequence predicted by TargetP"
+Cre10.g434450	"GMM:9.1.2;GMM:11.8"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;lipid metabolism.exotics (steroids, squalene etc)"	Mitochondrion			NUOA9	"Cre10.g434450.t1.1;g10715.t1;Cre10.g434450.t1.1;g10715.t1;Cre10.g434450.t1.1;g10715.t1;Cre10.g434450.t1.1;g10715.t1;g10715.t1;Cre10.g434450.t1.1"	"NUOA9;NUOA9;NUOA9;NUOA9;NUOA9"	"Putative NADH:ubiquinone oxidoreductase (Complex I) 39 kDa subunit precursor, mitochondrial [gi 33943527 gb AAQ55458.1 , =NDUFA9; Ortholog to NDUFA9 in Homo sapiens;;Putative NADH:ubiquinone oxidoreductase (Complex I) 39 kDa subunit precursor, mitochondrial [gi 33943527 gb AAQ55458.1 , =NDUFA9; Ortholog to NDUFA9 in Homo sapiens;;Putative NADH:ubiquinone oxidoreductase (Complex I) 39 kDa subunit precursor, mitochondrial [gi 33943527 gb AAQ55458.1 , =NDUFA9; Ortholog to NDUFA9 in Homo sapiens;;Putative NADH:ubiquinone oxidoreductase (Complex I) 39 kDa subunit precursor, mitochondrial [gi 33943527 gb AAQ55458.1 , =NDUFA9; Ortholog to NDUFA9 in Homo sapiens;;Putative NADH:ubiquinone oxidoreductase (Complex I) 39 kDa subunit precursor, mitochondrial [gi 33943527 gb AAQ55458.1 , =NDUFA9; Ortholog to NDUFA9 in Homo sapiens;"
+Cre10.g419550			"Secretory pathway"	GO:0004112	"cyclic-nucleotide phosphodiesterase activity"		"Cre10.g419550.t1.1;g10385.t1;g10385.t1;Cre10.g419550.t1.1"		
+Cre10.g430000			Chloroplast				g10620.t1		
+Cre10.g447100			Mitochondrion	GO:0005759	"mitochondrial matrix"		"p32;mS105;Cre10.g447100.t1.1;g10997.t1"	MRPS105	"forms a homotrimeric complex protruding on the solvent side of SSU head (Waltz et al 2021); a MAM33-family protein, conserved in all eukaryotes; has several functions in mitochondria, some related to mitoribosome assembly, but usually not found in mitoribosomes; amiRNA KD strain does not show reduction in rRNA levels except for L2b, but show reduction in Nad4 levels"
+Cre10.g463355			Chloroplast						
+Cre10.g444317									
+Cre10.g437850	"GMM:27.4;GMM:27.1.1"	"RNA.RNA binding;RNA.processing.splicing"		"GO:0045292;GO:0005846;GO:0003676;GO:0000339"	"mRNA cis splicing, via spliceosome;nuclear cap binding complex;nucleic acid binding;RNA cap binding"		"g10787.t1;SAE1"	CBP20	"Orthologous to CBP20 in Arabidopsis thaliana (AT5G44200)"
+Cre10.g437201				"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g10774.t1;g10774.t1"		
+Cre10.g444700	GMM:2.1.2.3	"major CHO metabolism.synthesis.starch.starch branching"	Chloroplast	"GO:0043169;GO:0005975;GO:0004553;GO:0003824"	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	SBE3	"SBE2b;g10933.t1;SBE2b;g10933.t1;g10933.t1;SBE2b;g10933.t1;SBE2b"	"SBE3;SBE3;SBE3;SBE3"	"Catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position;Catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position;Catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position;Catalyses the formation of alpha-1,6 linkages within the polymer by cleaving a preexisting linear chain and transferring the fragment at the non reducing end of the cleaved glucan to an alpha-1,6 position"
+Cre10.g452050	GMM:1.1.2.1	"PS.lightreaction.photosystem I.LHC-I"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCA4	"Cre10.g452050.t1.1;g11104.t1;g11104.t1;Cre10.g452050.t1.1;g11104.t1;Cre10.g452050.t1.1;g11104.t1;Cre10.g452050.t1.1"	"LHCA4;LHCA4;LHCA4;LHCA4"	
+Cre10.g429800	"GMM:9.99;GMM:34.16;GMM:29.4.1"	"mitochondrial electron transport / ATP synthesis.unspecified;transport.ABC transporters and multidrug resistance systems;protein.postranslational modification.kinase"				COQ8	"Cre10.g429800.t1.1;COQ8;ABC1;g10617.t1;g10617.t1;COQ8;ABC1;Cre10.g429800.t1.1;Cre10.g429800.t1.1;ABC1;COQ8;g10617.t1;ABC1;COQ8;g10617.t1;Cre10.g429800.t1.1"	"COQ8;COQ8;COQ8;COQ8"	"70 kDa protein similar to yeast COQ8 protein involved in ubiquinone-10 biosynthesis (PMID: 11279158); previously called ABC1 (for Activity of bc1 complex) (PMID: 14695938); similar to At4g01660 gene product (PMID: 15710684);70 kDa protein similar to yeast COQ8 protein involved in ubiquinone-10 biosynthesis (PMID: 11279158); previously called ABC1 (for Activity of bc1 complex) (PMID: 14695938); similar to At4g01660 gene product (PMID: 15710684);70 kDa protein similar to yeast COQ8 protein involved in ubiquinone-10 biosynthesis (PMID: 11279158); previously called ABC1 (for Activity of bc1 complex) (PMID: 14695938); similar to At4g01660 gene product (PMID: 15710684);70 kDa protein similar to yeast COQ8 protein involved in ubiquinone-10 biosynthesis (PMID: 11279158); previously called ABC1 (for Activity of bc1 complex) (PMID: 14695938); similar to At4g01660 gene product (PMID: 15710684)"
+Cre10.g464500			Chloroplast	GO:0015035	"protein disulfide oxidoreductase activity"	PDO1	"PDO1;Cre10.g464500.t1.1;g11382.t1"	PDO1	
+Cre10.g433200	GMM:34.99	transport.misc		"GO:0055085;GO:0016020;GO:0006810;GO:0005215"	"transmembrane transport;membrane;transport;transporter activity"	XUV3	"g10687.t1;UAPA3;XUV3;UAPA4;Cre10.g433200.t1.1"		
+Cre10.g439600	"GMM:33.99;GMM:3.5"	"development.unspecified;minor CHO metabolism.others"					"g10824.t1;g10824.t1"		
+Cre10.g426900			Chloroplast	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"		g10548.t1		
+Cre10.g445467			Chloroplast						
+Cre10.g425100	GMM:29.4	"protein.postranslational modification"		GO:0005515	"protein binding"				
+Cre10.g435200							"g10734.t1;Cre10.g435200.t1.1;g10734.t1;Cre10.g435200.t1.1;g10734.t1;Cre10.g435200.t1.1"		
+Cre10.g428300			Chloroplast				g10577.t1		
+Cre10.g466700	"GMM:17.6.1;GMM:16.4.1"	"hormone metabolism.gibberelin.synthesis-degradation;secondary metabolism.N misc.alkaloid-like"		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"		g11438.t1		
+Cre10.g462400			Mitochondrion				"g11335.t1;g11335.t1"		
+Cre10.g446200			"Secretory pathway"				"g10978.t1;Cre10.g446200.t1.1"		
+Cre10.g455150			"Secretory pathway"				"g11170.t1;Cre10.g455150.t1.1"		
+Cre10.g438250						LAT2	"g10795.t1;g10795.t1;g10795.t1;g10795.t1"	"LAT2;LAT2;LAT2;LAT2"	"Null mutants are sensitive to the actin-depolymerizing drug Latrunculin B; belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox;Null mutants are sensitive to the actin-depolymerizing drug Latrunculin B; belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox;Null mutants are sensitive to the actin-depolymerizing drug Latrunculin B; belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox;Null mutants are sensitive to the actin-depolymerizing drug Latrunculin B; belongs to a family of 7 highly similar genes (5 adjacent on chr10), conserved in Volvox"
+Cre10.g456700						EJC1	"Cre10.g456700.t1.1;g11207.t1;EJC1;EJC1;g11207.t1;Cre10.g456700.t1.1"	"CASC3;CASC3"	"Contains CASC3/Barentsz eIF4AIII binding domain involved in post-transcriptional regulation of mRNA in metazoa;Contains CASC3/Barentsz eIF4AIII binding domain involved in post-transcriptional regulation of mRNA in metazoa"
+Cre10.g424650			Mitochondrion				"Cre10.g424650.t1.1;g10498.t1"		
+Cre10.g432450							"g10671.t1;g10671.t1;g10671.t1;g10671.t1"		
+Cre10.g450850				GO:0005515	"protein binding"		g11079.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g465350			"Secretory pathway"						
+Cre10.g437450							"g10779.t1;Cre10.g437450.t1.1"		
+Cre10.g420550	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast	"GO:0008236;GO:0006508;GO:0005515"	"serine-type peptidase activity;proteolysis;protein binding"	TSP4	"CTPA4;TSP4;g10407.t1;CTPA4;TSP4;g10407.t1"	"CTPA1;CTPA1"	"One of three related C-terminal peptidases (CTPA1/Cre10.g420550, CTPB1/Cre10.g453807, CTPC1/Cre06.g265850) that are highly conserved in oxygenic photosynthetic organisms; CTPA1 cleaves the C-terminal extension of the D1 precursor (pD1) to form mature D1, but the function of CTPB1 and CTPC1 remains unknown; Orthologous to CtpA/CTPA2 (AT4G17740) in Arabidopsis thaliana;;One of three related C-terminal peptidases (CTPA1/Cre10.g420550, CTPB1/Cre10.g453807, CTPC1/Cre06.g265850) that are highly conserved in oxygenic photosynthetic organisms; CTPA1 cleaves the C-terminal extension of the D1 precursor (pD1) to form mature D1, but the function of CTPB1 and CTPC1 remains unknown; Orthologous to CtpA/CTPA2 (AT4G17740) in Arabidopsis thaliana;"
+Cre10.g435000									
+Cre10.g439650	"GMM:3.5;GMM:29.3.4.2"	"minor CHO metabolism.others;protein.targeting.secretory pathway.golgi"		GO:0017119	"Golgi transport complex"	COG8	"g10825.t1;COG8;Cre10.g439650.t1.1"	COG8	"Expressed Protein. Similar to COG8/Dor1p, component of oligomeric golgi complex 8, involved in vesicle tethering and other Golgi functions"
+Cre10.g462450							"g11336.t1;Cre10.g462450.t1.1"		
+Cre10.g452450	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast			TIC110	"g11113.t1;TIC110;Cre10.g452450.t1.1"		"Previously described as 110 kDa translocon at the inner membrane of chloroplasts [PMID: 15829604]; Present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]"
+Cre10.g450400	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion			NUO5	"g11069.t1;Cre10.g450400.t1.1;NUOE"	NUO5	"Complex I 24 kD subunit, mitochondrial; marked by amc9 mutation; Ortholog of NDUFV2 in Homo sapiens;"
+Cre10.g423800	GMM:28.2	DNA.repair	"Secretory pathway"	"GO:0016817;GO:0006303;GO:0003677"	"hydrolase activity, acting on acid anhydrides;double-strand break repair via nonhomologous end joining;DNA binding"		"g10481.t1;g10481.t1"	"KU80;KU80"	"interacts with Ku70 for non-homologous end joining; mutant shows increased sensitivity to double-stranded breaks; genetically linked to POLE2 and DNL4;interacts with Ku70 for non-homologous end joining; mutant shows increased sensitivity to double-stranded breaks; genetically linked to POLE2 and DNL4"
+Cre10.g423250	"GMM:8.2.9;GMM:8.1.9;GMM:6.3"	"TCA / organic transformation.other organic acid transformations.cyt MDH;TCA / organic transformation.TCA.malate DH;gluconeogenesis / glyoxylate cycle.malate dehydrogenase"		"GO:0055114;GO:0019752;GO:0016616;GO:0016491"	"oxidation-reduction process;carboxylic acid metabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;oxidoreductase activity"	MDN2	"MDH2;Cre10.g423250.t1.1;MDN2;g10469.t1;Cre10.g423250.t1.1;MDN2;MDH2;g10469.t1"	"MDH2;MDH2"	"Malate dehydrogenase ( MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; putative glyoxysomal localization; PMID: 1921471;Malate dehydrogenase ( MDH) (= malic dehydrogenase) [EC:1.1.1.37]; NAD-dependent; putative glyoxysomal localization; PMID: 1921471"
+Cre10.g422550							"g10454.t1;Cre10.g422550.t1.1"		
+Cre10.g441600			Chloroplast			OPR48	"g10866.t1;g10866.t1"	"OPR48;OPR48"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre10.g441900			Chloroplast			FAP145	g10873.t1	FAP145	"Flagellar Associated Protein weakly similar to Translin-Associated Factor X (Tsnax) Interacting Protein 1 Found in the flagellar proteome"
+Cre10.g437350	"GMM:34.9;GMM:34.8"	"transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane"	Mitochondrion			MCP12	"MITC12;MCP12;Cre10.g437350.t1.1;g10777.t1;MCP12;Cre10.g437350.t1.1;g10777.t1;MITC12;MITC12;MCP12;g10777.t1;Cre10.g437350.t1.1"		"calcium-binding EF hand domain;calcium-binding EF hand domain;calcium-binding EF hand domain"
+Cre10.g428678	"GMM:30.1;GMM:3.1"	"signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family"	Mitochondrion	"GO:0050660;GO:0008033"	"flavin adenine dinucleotide binding;tRNA processing"	GID1	"Cre69.g794150.t1.1;GID1;MNMG;g10587.t1;Cre69.g794150.t1.1;GID1;MNMG;g10587.t1;MNMG;g10587.t1;Cre69.g794150.t1.1;GID1;MNMG;Cre69.g794150.t1.1;GID1;g10587.t1;MNMG;GID1;Cre69.g794150.t1.1;g10587.t1"	"MNMG1;MNMG1;MNMG1;MNMG1;MNMG1"	"homolog to bacterial MnmG which modifies the wobble nucleotide U34 of certain tRNAs; contains glucose-inhibited division protein Am oxidoreductase motifs;homolog to bacterial MnmG which modifies the wobble nucleotide U34 of certain tRNAs; contains glucose-inhibited division protein Am oxidoreductase motifs;homolog to bacterial MnmG which modifies the wobble nucleotide U34 of certain tRNAs; contains glucose-inhibited division protein Am oxidoreductase motifs;homolog to bacterial MnmG which modifies the wobble nucleotide U34 of certain tRNAs; contains glucose-inhibited division protein Am oxidoreductase motifs;homolog to bacterial MnmG which modifies the wobble nucleotide U34 of certain tRNAs; contains glucose-inhibited division protein Am oxidoreductase motifs"
+Cre10.g458100			Chloroplast			YEE1	"Cre10.g458100.t1.1;YEE1;g11236.t1;Cre10.g458100.t1.1;g11236.t1;YEE1"		"contains DUF395 domain, found in YeeE and YedE from Escherichia coli. These proteins are integral membrane proteins of unknown function. Many of these proteins contain two homologous regions that are represented by this entry. This region contains several conserved glycines and an invariant cysteine that is probably an important functional residue;contains DUF395 domain, found in YeeE and YedE from Escherichia coli. These proteins are integral membrane proteins of unknown function. Many of these proteins contain two homologous regions that are represented by this entry. This region contains several conserved glycines and an invariant cysteine that is probably an important functional residue"
+Cre10.g429250	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g10604.t1;g10604.t1;g10604.t1;g10604.t1;g10604.t1;g10604.t1"		
+Cre10.g422876									
+Cre10.g464700			Chloroplast				"g11386.t1;Cre10.g464700.t1.1;Cre10.g464700.t1.1;g11386.t1"		
+Cre10.g421650	GMM:33.99	development.unspecified	"Secretory pathway"				"g10434.t1;Cre10.g421650.t1.1"		
+Cre10.g456250			Chloroplast	"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRX25	"TRX16;TRL11;TRX25;Cre10.g456250.t1.1;g11195.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre10.g422419			Mitochondrion						
+Cre10.g429880	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"		GO:0003677	"DNA binding"	CGL156	"Cre10.g429900.t4.1;g10619.t1;Cre10.g429900.t4.1;g10619.t1;g10619.t1;Cre10.g429900.t4.1;g10619.t1;Cre10.g429900.t4.1"	"CGL156;CGL156;CGL156;CGL156"	"Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre10.g431200			"Secretory pathway"				"g10647.t1;Cre10.g431200.t1.1"		
+Cre10.g452250			Mitochondrion			FAP41	"g11109.t1;g11109.t1"	"FAP41;FAP41"	"redox sensitive;redox sensitive"
+Cre10.g440050	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	Chloroplast	"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"	CSP41A	"RAP41;Cre10.g440050.t1.1;SNE12;Csp41a;g10833.t1"	CSP41A	"Homologous to CSP41b; Arabidopsis homologs form multimeric complexes and bind multiple mRNA and rRNA; similar to NAD-dependent nucleoside-diphosphate-sugar epimerase/dehydratase"
+Cre10.g448150							"g11020.t1;g11020.t1"		
+Cre10.g419300			"Secretory pathway"				"g10379.t1;Cre10.g419300.t1.1"		
+Cre10.g463968			"Secretory pathway"						
+Cre10.g436053									
+Cre10.g417950	"GMM:33.99;GMM:29.2.2.3.4"	"development.unspecified;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins"		"GO:0006364;GO:0005515"	"rRNA processing;protein binding"		"Cre10.g417950.t1.1;g10350.t1"		
+Cre10.g467000	GMM:31.6.1.3.2.2	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B"				IFT57	"Cre10.g467000.t1.1;IFT55;g11444.t1;g11444.t1;IFT55;Cre10.g467000.t1.1"	"IFT57;IFT57"	"Component of IFT-B2 particle;Component of IFT-B2 particle"
+Cre10.g425950	GMM:29.1.15	"protein.aa activation.proline-tRNA ligase"		GO:0002161	"aminoacyl-tRNA editing activity"		"g10526.t1;Cre10.g425950.t1.1"		
+Cre10.g459850							"g11276.t1;Cre10.g459850.t1.1"		
+Cre10.g455850	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0042555;GO:0006270;GO:0006260;GO:0005634;GO:0005524;GO:0003678;GO:0003677"	"MCM complex;DNA replication initiation;DNA replication;nucleus;ATP binding;DNA helicase activity;DNA binding"	MCM7	"Cre10.g455850.t1.1;g11186.t1"	MCM7	"Homology to MCM7 DNA replication protein"
+Cre10.g417576			Mitochondrion						
+Cre10.g441750							"g10870.t1;Cre10.g441750.t1.1"		
+Cre10.g428433	GMM:28.2	DNA.repair		"GO:0016799;GO:0008270;GO:0006289;GO:0006284;GO:0003906;GO:0003684"	"hydrolase activity, hydrolyzing N-glycosyl compounds;zinc ion binding;nucleotide-excision repair;base-excision repair;DNA-(apurinic or apyrimidinic site) lyase activity;damaged DNA binding"		"FDG2;Cre10.g428450.t1.3;g10580.t2;FDG2;g10580.t2;Cre10.g428450.t1.3;Cre10.g428450.t1.3;g10580.t2;FDG2"		"Excises oxidized bases; null-allele mutant was isolated (PMID 29743196);Excises oxidized bases; null-allele mutant was isolated (PMID 29743196);Excises oxidized bases; null-allele mutant was isolated (PMID 29743196)"
+Cre10.g425750	"GMM:34.99;GMM:29.5.2"	"transport.misc;protein.degradation.autophagy"					"g10522.t1;g10522.t1"		
+Cre10.g434800			Chloroplast	GO:0005515	"protein binding"		g10723.t1		
+Cre10.g460750			Chloroplast				g11296.t1		
+Cre10.g465500							g11406.t2		
+Cre10.g446600	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"	Chloroplast	"GO:0015074;GO:0005515"	"DNA integration;protein binding"				
+Cre10.g440150							"Cre10.g440150.t1.1;g10835.t1"	CMC1	"Component of MITRAC (mitochondrial translation regulation assembly intermediate of cytochrome c oxidase complex)"
+Cre10.g442650	GMM:28.99	DNA.unspecified	Chloroplast	GO:0003676	"nucleic acid binding"		"g10889.t1;Cre10.g442650.t1.1;g10889.t1;Cre10.g442650.t1.1;Cre10.g442650.t1.1;g10889.t1"		
+Cre10.g426450			Chloroplast				"Cre10.g426450.t1.1;g10537.t1;g10537.t1;Cre10.g426450.t1.1;Cre10.g426450.t1.1;g10537.t1"		
+Cre10.g460300	GMM:4.1.12	"glycolysis.cytosolic branch.phosphoglycerate mutase"	Chloroplast			PGM2	"PGM2;g11285.t1;Cre10.g460300.t1.1"		"phosphoglycerate/bisphosphoglycerate mutase family protein"
+Cre10.g460650	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"	"Secretory pathway"	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN52	"Cre10.g460650.t1.1;g11293.t1"	CYN52	"Peptidyl-prolyl cis-trans isomerase (rotamase) with two cyclophilin domains in tandem; similar to CYN53 and CYN51, linked to CYN53"
+Cre10.g429150	GMM:13.1.6.5.2	"amino acid metabolism.synthesis.aromatic aa.tryptophan.anthranilate phosphoribosyltransferase"	"Secretory pathway"	"GO:0016757;GO:0008152"	"transferase activity, transferring glycosyl groups;metabolic process"	PRT1	"Cre10.g429150.t1.1;g10602.t1;PRT1"	PRT1	"Similar to phosphoribosyl transferase in Arabidopsis"
+Cre10.g463550	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g11360.t1;g11360.t1"		
+Cre10.g447250			Mitochondrion						
+Cre10.g449901			"Secretory pathway"				g11059.t1		
+Cre10.g457331	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"					"g11221.t1;g11221.t1"		
+Cre10.g467100				"GO:0042254;GO:0001522"	"ribosome biogenesis;pseudouridine synthesis"		"g11446.t1;g11446.t1"		
+Cre10.g461450							"g11313.t1;Cre10.g461450.t1.1;Cre10.g461450.t1.1;g11313.t1"		
+Cre10.g445800			Chloroplast				"g10968.t1;g10968.t1;g10968.t1"		
+Cre10.g466150			"Secretory pathway"	GO:0005515	"protein binding"		"g11425.t1;Cre10.g466150.t1.1"		
+Cre10.g430750	GMM:27.3.26	"RNA.regulation of transcription.MYB-related transcription factor family"					g10637.t1		
+Cre10.g420850			"Secretory pathway"				g10415.t1		
+Cre10.g456400			Mitochondrion	"GO:0017153;GO:0016020;GO:0006835"	"sodium:dicarboxylate symporter activity;membrane;dicarboxylic acid transport"	DAT1	"g11198.t2;DAT1;g11198.t2;DAT1;DAT1;g11198.t2;g11198.t2;DAT1"		"related to dicarboxylate amino acids cation sodium proton (DAACS) transporter; DAACS family transporter absent in plants;related to dicarboxylate amino acids cation sodium proton (DAACS) transporter; DAACS family transporter absent in plants;related to dicarboxylate amino acids cation sodium proton (DAACS) transporter; DAACS family transporter absent in plants;related to dicarboxylate amino acids cation sodium proton (DAACS) transporter; DAACS family transporter absent in plants"
+Cre10.g459151			"Secretory pathway"						
+Cre10.g431500							"g10652.t1;g10652.t1;g10652.t1;g10652.t1;g10652.t1"		
+Cre10.g447225							g11000.t1		
+Cre10.g449400			"Secretory pathway"				"g11049.t1;g11049.t1;g11049.t1"		
+Cre10.g438500	GMM:33.99	development.unspecified				FAP264	"MOT54;g10801.t1;CPK3;Cre10.g438500.t1.1;MOT54;Cre10.g438500.t1.1;CPK3;g10801.t1;CPK3;g10801.t1;Cre10.g438500.t1.1;MOT54"	"FAP264;FAP264;FAP264"	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome; initially identified by comparative genomics as being present only in organisms having motile (MOT) cilia, but has homologs in land plants; contains leucine-rich repeat;Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome; initially identified by comparative genomics as being present only in organisms having motile (MOT) cilia, but has homologs in land plants; contains leucine-rich repeat;Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome; initially identified by comparative genomics as being present only in organisms having motile (MOT) cilia, but has homologs in land plants; contains leucine-rich repeat"
+Cre10.g454734	"GMM:1.1.2.1;GMM:1.1.1.1"	"PS.lightreaction.photosystem I.LHC-I;PS.lightreaction.photosystem II.LHC-II"	Chloroplast			LHCP2	"TIC21;g11162.t2;PIC1;TIC21;PIC1;g11162.t2;PIC1;g11162.t2;TIC21;PIC1;g11162.t2;TIC21"		"Possible role in Fe import into the chloroplast; Similar to PIC1/TIC21 in Arabidopsis thaliana;;Possible role in Fe import into the chloroplast; Similar to PIC1/TIC21 in Arabidopsis thaliana;;Possible role in Fe import into the chloroplast; Similar to PIC1/TIC21 in Arabidopsis thaliana;;Possible role in Fe import into the chloroplast; Similar to PIC1/TIC21 in Arabidopsis thaliana;"
+Cre10.g421050							"g10420.t1;g10420.t1;g10420.t1;g10420.t1;g10420.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre10.g433850	GMM:27.3.99	"RNA.regulation of transcription.unclassified"					g10701.t1		
+Cre10.g447900							g11015.t2		
+Cre10.g433950	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			CURTL2	g10704.t1		
+Cre10.g448950			Chloroplast				"g11036.t1;EEP3;EEP3;g11036.t1"		
+Cre10.g457150							"Cre10.g457150.t1.1;g11216.t1"		
+Cre10.g448400			Mitochondrion				g11025.t1		
+Cre10.g453600	GMM:11.2.1	"lipid metabolism.FA desaturation.desaturase"		GO:0006629	"lipid metabolic process"		"g11135.t2;DES;g11135.t2;DES;g11135.t2;DES"	"FAD13;FAD13;FAD13"	"Cytochrome b5 domain-fused desaturase with omega 13-desaturase activity; A front-end desaturase involved in production of pinolenic and coniferonic acids;Cytochrome b5 domain-fused desaturase with omega 13-desaturase activity; A front-end desaturase involved in production of pinolenic and coniferonic acids;Cytochrome b5 domain-fused desaturase with omega 13-desaturase activity; A front-end desaturase involved in production of pinolenic and coniferonic acids"
+Cre10.g428950			"Secretory pathway"				"Cre10.g428950.t1.1;g10596.t1"		
+Cre10.g451500				"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR28A	"CHI5;Cre10.g451500.t1.1;g11095.t1;SRR28;SRR28A"		"Scavenger receptor cysteine-rich protein, to form a very large protein with multiple C-type lectin domains and a glycoside hydrolase family 18 domain; part of a group of 5 closely-related SRR proteins."
+Cre10.g459750						NUOA1	"Cre10.g459750.t1.1;g11274.t1"	NUOA1	"NADH:ubiquinone oxidoreductase (Complex I) subunit MWFE-like protein, mitochondrial; [= NDUFA1 subunit]; gb AAS48198; Ortholog to NDUFA1 in Homo sapiens;"
+Cre10.g440750	"GMM:28.2;GMM:28.1"	"DNA.repair;DNA.synthesis/chromatin structure"		"GO:0006265;GO:0005524;GO:0003918;GO:0003677"	"DNA topological change;ATP binding;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA binding"	TOP3	"g10847.t1;Cre10.g440750.t1.1;TOP3;g10847.t1;Cre10.g440750.t1.1;TOP3"	"TOP3;TOP3"	"DNA gyrase subunit B; similar to Arabidopsis thaliana, ATF21E1;DNA gyrase subunit B; similar to Arabidopsis thaliana, ATF21E1"
+Cre10.g440500							"g10842.t1;g10842.t1;g10842.t1;g10842.t1;g10842.t1;g10842.t1;g10842.t1"		
+Cre10.g462050	"GMM:30.2.8.2;GMM:29.4"	"signalling.receptor kinases.leucine rich repeat VIII.type 2;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK20	"PTK20;g11327.t1;g11327.t1;PTK20;g11327.t1;PTK20;PTK20;g11327.t1"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre10.g418300							"g10357.t1;Cre10.g418300.t1.1"		
+Cre10.g418900	"GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4"	"signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre10.g418900.t1.1;g10370.t1;g10370.t1;Cre10.g418900.t1.1;Cre10.g418900.t1.1;g10370.t1"		
+Cre10.g427650							"g10563.t1;Cre10.g427650.t1.1"		
+Cre10.g418200			"Secretory pathway"				"g10355.t1;Cre10.g418200.t1.1"		
+Cre10.g426152	GMM:13.2.3.4.1	"amino acid metabolism.degradation.aspartate family.methionine.methionine gamma-lyase"		GO:0030170	"pyridoxal phosphate binding"	MGL1	g10530.t1	MGL1	"involved in Methionine degradation; PLP-dependent enzyme"
+Cre10.g423400	"GMM:27.3.12;GMM:12.4"	"RNA.regulation of transcription.C3H zinc finger family;N-metabolism.misc"	Chloroplast	"GO:0055114;GO:0050660;GO:0017150;GO:0008033"	"oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing"		"g10472.t2;g10472.t2"		
+Cre10.g461550			Mitochondrion				"Cre10.g461550.t1.1;g11315.t1"		
+Cre04.g224450	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"				
+Cre04.g212100	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		"g4737.t1;g4737.t1"		
+Cre04.g228700			Mitochondrion				g5005.t1		
+Cre04.g229800									
+Cre04.g225200	GMM:33.99	development.unspecified	Mitochondrion			FAP311	"g4922.t1;g4922.t1;g4922.t1;g4922.t1;g4922.t1;g4922.t1;g4922.t1;g4922.t1"	"FAP311;FAP311;FAP311;FAP311;FAP311;FAP311;FAP311;FAP311"	
+Cre04.g220387			"Secretory pathway"	"GO:0055114;GO:0020037;GO:0016705;GO:0005506"	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP770A1	"Cre04.g220400.t1.2;g4807.t1"	CYP770A1	"cytochrome P450, unknown function, in CYP711 clan. The CYP711 clan includes CYP711A1 of Arabidopsis (MAX1). This gene product makes a carotenoid-derived branch inhibiting hormone. The CYP743 family has best BLAST hits to CYP3 family members (animal sequences). The top 100 BLAST hits were all animal sequences. The plant CYP711 clan may share a common ancestor with the animal CYP3/CYP4 clan."
+Cre04.g231418			Chloroplast				"Cre32.g781600.t1.1;Cre32.g781600.t1.2;g5051.t1;Cre32.g781600.t1.2;g5051.t1;Cre32.g781600.t1.1;Cre32.g781600.t1.1;g5051.t1;Cre32.g781600.t1.2;Cre32.g781600.t1.2;g5051.t1;Cre32.g781600.t1.1"		
+Cre04.g213652	GMM:28.1	"DNA.synthesis/chromatin structure"	"Secretory pathway"	GO:0003964	"RNA-directed DNA polymerase activity"		"g4706.t1;TERT;CrTERT;g4706.t1;TERT;CrTERT;TERT;g4706.t1;CrTERT"	"TERT1;TERT1;TERT1"	"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre04.g214433			Mitochondrion				g4498.t1		
+Cre04.g213250	GMM:29.5	protein.degradation		GO:0006508	proteolysis				
+Cre04.g213152			Chloroplast						
+Cre04.g220750			Mitochondrion						
+Cre04.g218300	GMM:29.2.2.3.5	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases"	Mitochondrion	GO:0005634	nucleus		"Cre04.g218300.t1.1;g4758.t1;g4758.t1;Cre04.g218300.t1.1;g4758.t1;Cre04.g218300.t1.1;Cre04.g218300.t1.1;g4758.t1"		
+Cre04.g223375							g4874.t1		
+Cre04.g217975			"Secretory pathway"				g4610.t1		
+Cre04.g226001			Mitochondrion				"g4940.t1;Cre04.g226000.t1.3"		
+Cre04.g224947									
+Cre04.g223550			Chloroplast				g4879.t1		
+Cre04.g214504			Mitochondrion	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"		g4688.t1		
+Cre04.g219851			Mitochondrion				"Cre04.g219850.t1.3;g4794.t1;Cre04.g219850.t1.3;g4794.t1"		
+Cre04.g217932	GMM:29.2.1.1.4.2	"protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPL35	"PRPL35;Cre03.g210050.t1.2;g4563.t1;Cre03.g210050.t1.1"	PRPL35	"imported to chloroplast"
+Cre04.g226350	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Chloroplast			CSB23			
+Cre04.g217953	GMM:27.4	"RNA.RNA binding"	Mitochondrion	GO:0003676	"nucleic acid binding"		"g4584.t1;Cre03.g209200.t1.1;g4584.t1;Cre03.g209200.t1.1;Cre03.g209200.t1.1;g4584.t1"		
+Cre04.g226500			Mitochondrion				g4957.t1		
+Cre04.g223050	GMM:8.3	"TCA / organic transformation.carbonic anhydrases"	"Secretory pathway"			CAH2	"CAH2;Cre04.g223050.t1.1;g4866.t1"	CAH2	"Carbonic anhydrase 2 (CA2), alpha type; periplasmic localization; high-CO2-inducible [PMID: 212472]; identical to CAH2_CHLRE, P24258 (gi:115455). The inorganic carbon-concentrating mechanism has been reviewed by Spalding (28) [PMID: 1759798]."
+Cre04.g227500			Mitochondrion	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR18	"g4977.t1;SRR18"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912); null-allele mutant was isolated (PMID 29743196)"
+Cre04.g232602	"GMM:21.4;GMM:21.1"	"redox.glutaredoxins;redox.thioredoxin"		"GO:0045454;GO:0015035;GO:0009055"	"cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity"	GRX4	"g5064.t1;GRX4;Cre32.g781100.t1.2;Cre32.g781100.t1.1"	GRX4	"Glutaredoxin 4, CGFS type, probably cytosolic, contains 2 glutaredoxin modules"
+Cre04.g222100	GMM:28.1.3	"DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0006366	"transcription from RNA polymerase II promoter"		"g4847.t1;Cre04.g222100.t1.1"		
+Cre04.g219000	"GMM:31.1;GMM:28.1"	"cell.organisation;DNA.synthesis/chromatin structure"	"Secretory pathway"	GO:0005524	"ATP binding"		"Cre04.g219000.t1.1;g4773.t1;Cre04.g219000.t1.1;g4773.t1;g4773.t1;Cre04.g219000.t1.1"		
+Cre04.g224750	GMM:31.4	"cell.vesicle transport"	Mitochondrion	"GO:0016192;GO:0016021"	"vesicle-mediated transport;integral component of membrane"	VAM1	"VAM1;g4905.t1;VAMP71;Cre04.g224750.t1.1"	VAMP1	"Expressed Protein, similar to VAMP7 R-SNAREs, involved in Golgi/PM and Golgi/endosomal trafficking; most similar to VAMP72-family of land plants; part of a 4-member gene family in Chlamydomonas all on same scaffold and in 2 tandem pairs, location and order of gene family members are syntenic in Volvox"
+Cre04.g215800							"g4655.t1;g4655.t1;g4655.t1;g4655.t1;g4655.t1;g4655.t1;g4655.t1;g4655.t1"		
+Cre04.g217986							g4630.t2		
+Cre04.g227450	GMM:34.8	"transport.metabolite transporters at the envelope membrane"					"TPT9;Cre04.g227450.t1.1;g4976.t1"		
+Cre04.g220600			Mitochondrion				g4813.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre04.g212801									
+Cre04.g224800	GMM:31.4	"cell.vesicle transport"		"GO:0016192;GO:0016021"	"vesicle-mediated transport;integral component of membrane"	VAM4	"g4906.t1;Cre04.g224800.t1.1;VAM4;VAMP74"	VAMP4	"Expressed Protein, similar to VAMP7 R-SNAREs, involved in Golgi/PM and Golgi/endosomal trafficking; most similar to VAMP72-family of land plants; part of a 4-member gene family in Chlamydomonas all on same scaffold and in 2 tandem pairs, location and order of gene family members are syntenic in Volvox"
+Cre04.g226811			Mitochondrion						
+Cre04.g225500			Chloroplast				"g4929.t2;CSA6"		
+Cre04.g217960									
+Cre04.g217903	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0004519;GO:0003676"	"endonuclease activity;nucleic acid binding"		"g4534.t1;g4534.t1"		
+Cre04.g217925	GMM:26.16	misc.myrosinases-lectin-jacalin							
+Cre04.g217100							g4519.t1		
+Cre04.g215400	"GMM:35.1.1;GMM:34.16"	"not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems"	Chloroplast			AKC3	"Cre04.g215400.t1.1;g4664.t1;g4664.t1;Cre04.g215400.t1.1;g4664.t1;Cre04.g215400.t1.1"	"AKC3;AKC3;AKC3"	"ABC1 kinase family protein of unknown function; similar to EYE3 (required for eyespot assembly); Arabidopsis homolog is predicted to be plastid-localized;ABC1 kinase family protein of unknown function; similar to EYE3 (required for eyespot assembly); Arabidopsis homolog is predicted to be plastid-localized;ABC1 kinase family protein of unknown function; similar to EYE3 (required for eyespot assembly); Arabidopsis homolog is predicted to be plastid-localized"
+Cre04.g222200							"Cre04.g222200.t1.1;g4849.t1"		
+Cre04.g223700							"Cre04.g223700.t1.1;g4882.t1"		
+Cre04.g228208	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"				
+Cre04.g211900	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG37	"g4741.t1;ELG37;ELG35;g4741.t1;ELG37;ELG35"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre04.g229163							g5016.t1		
+Cre04.g233003			Mitochondrion				"Cre32.g780900.t1.1;g5068.t1"		
+Cre04.g226650			"Secretory pathway"						
+Cre04.g214351			Chloroplast				"Cre04.g214300.t1.3;g4691.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g233302				"GO:0008716;GO:0005737;GO:0005515"	"D-alanine-D-alanine ligase activity;cytoplasm;protein binding"		"Cre32.g780750.t1.2;Cre32.g780750.t1.1;g5071.t1;Cre32.g780750.t1.1;g5071.t1;Cre32.g780750.t1.2;Cre32.g780750.t1.1;g5071.t1;Cre32.g780750.t1.2;Cre32.g780750.t1.2;g5071.t1;Cre32.g780750.t1.1;g5071.t1;Cre32.g780750.t1.1;Cre32.g780750.t1.2;Cre32.g780750.t1.2;g5071.t1;Cre32.g780750.t1.1"		
+Cre04.g215702			Mitochondrion				g4658.t1		
+Cre04.g217943			Chloroplast	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"AKIN10;g4574.t1"		
+Cre04.g211800	GMM:29.2.1.2.2.23	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L23"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	RPL23	"g4743.t1;Cre04.g211800.t1.1"	RPL23	"Cytosolic 60S large ribosomal subunit protein L23"
+Cre04.g228900	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	"protein binding"		"g5009.t1;PPP19"		"related to NLI interacting factor"
+Cre04.g217910	GMM:26.23	misc.rhodanese	Chloroplast				"Cre03.g211150.t1.2;g4541.t1;Cre03.g211150.t1.1"		
+Cre04.g229472						CSB25			
+Cre04.g218700	GMM:29.2.3	protein.synthesis.initiation	Chloroplast	"GO:0006413;GO:0003743;GO:0003723"	"translational initiation;translation initiation factor activity;RNA binding"	INFA	"Cre04.g218700.t1.1;INFA;g4767.t1;EIF1"	TIF1	"Putative bacterial/organellar initiation factor 1 (IF-1)"
+Cre04.g217987			Mitochondrion						
+Cre04.g219600	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		"g4786.t1;Cre04.g219600.t1.1"		
+Cre04.g212401	"GMM:29.5.11.3;GMM:29.5.11"	"protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin"	Mitochondrion				"g4730.t1;Cre04.g212401.t1.1"	UBC15	"E2 Ubiquitin conjugating enzyme, subclass XI"
+Cre04.g216650			Chloroplast				g4505.t1		
+Cre04.g229750			Chloroplast				"Cre04.g229750.t1.1;g5032.t1"		
+Cre04.g229536			"Secretory pathway"						
+Cre04.g221550			Chloroplast				"VDE;CVDE;g4835.t1;FAO5;Cre04.g221550.t1.1;NPQ1"	CVDE1	"Atypical chlorophycean violaxanthin de-epoxidase, not orthologous to land plant VDE; FAD-dependent oxidoreductase; located on stromal side of theylakoid"
+Cre04.g229776			Mitochondrion						
+Cre04.g216600	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005524	"ATP binding"	RPT6	"g4504.t1;Cre04.g216600.t1.1;RPT6;RPT6;Cre04.g216600.t1.1;g4504.t1"	"RPT6;RPT6"	"26S proteasome regulatory complex, base subcomplex, ATPase RPT6 (subunit 8);26S proteasome regulatory complex, base subcomplex, ATPase RPT6 (subunit 8)"
+Cre04.g221100			Chloroplast				"g4826.t1;Cre04.g221100.t1.1"		
+Cre04.g228100							g4991.t1		
+Cre04.g220350	GMM:34.1	"transport.p- and v-ATPases"		"GO:0033179;GO:0015991;GO:0015078"	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVA3	"g4806.t2;ATPVA3;Cre04.g220350.t1.1;Cre04.g220350.t1.1;ATPVA3;g4806.t2;Cre04.g220350.t1.1;ATPVA3;g4806.t2"	"ATPVA3;ATPVA3;ATPVA3"	"Putative vacuolar H+-ATPase V0 sector, subunit A; vacuolar proton translocating ATPase subunit A (ATPvA);Putative vacuolar H+-ATPase V0 sector, subunit A; vacuolar proton translocating ATPase subunit A (ATPvA);Putative vacuolar H+-ATPase V0 sector, subunit A; vacuolar proton translocating ATPase subunit A (ATPvA)"
+Cre04.g218250	"GMM:29.4;GMM:29.3.4.99"	"protein.postranslational modification;protein.targeting.secretory pathway.unspecified"				FAP313	"Cre04.g218250.t1.1;g4757.t1;ARL3"	FAP313	"Expressed Protein; similar to the ARL3 type of ARF-related small GTPase. This type of GTPase is found in animals but not in angiosperms. Found in the flagellar proteome [PMID: 15998802]"
+Cre04.g231320									
+Cre04.g213985							"Cre49.g789650.t1.1;g4494.t1;Cre49.g789650.t1.2"		
+Cre04.g229398							"g5022.t1;Cre04.g229421.t1.2"		
+Cre04.g218500			"Secretory pathway"				"Cre04.g218500.t1.1;g4762.t1"		
+Cre04.g227800			"Secretory pathway"				"g4985.t1;g4985.t1"		
+Cre04.g217931	GMM:26.7	"misc.oxidases - copper, flavone etc"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PFH14	"g4562.t1;Cre03.g210100.t1.2;Cre03.g210100.t1.1;P4H14"	PFH14	"Procollagen-proline dioxygenase homolog, requires Fe2+ and ascorbate. Identified by Keskiaho et al.[PMID: 17220203] as v2 C_1000010 ; contains C-terminal ShK domain"
+Cre04.g225450			Chloroplast			FDX10		FDX10	
+Cre04.g224500	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g4897.t1;g4897.t1;g4897.t1;g4897.t1;g4897.t1;g4897.t1;g4897.t1;g4897.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre04.g224700	"GMM:34.3;GMM:34.13"	"transport.amino acids;transport.peptides and oligopeptides"		"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	NRT1.1	"g4904.t1;NRT1.1;Cre04.g224700.t1.1"	NRT1	
+Cre04.g227350	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"		"GO:0006355;GO:0005634"	"regulation of transcription, DNA-templated;nucleus"	CCR4	"g4974.t1;CCR4;g4974.t1;CCR4;g4974.t1;CCR4"	"CCR4;CCR4;CCR4"	"Belongs to the CNOT2/3/5 family of transcription regulation complexes;Belongs to the CNOT2/3/5 family of transcription regulation complexes;Belongs to the CNOT2/3/5 family of transcription regulation complexes"
+Cre04.g224867			Mitochondrion				"g4911.t1;Cre15.g644650.t1.1;g4911.t1;Cre15.g644650.t1.1;Cre15.g644650.t1.1;g4911.t1"		
+Cre04.g218750				GO:0019825	"oxygen binding"	THB4	"g4768.t2;THB4;Cre04.g218750.t1.1;g4768.t2;THB4;Cre04.g218750.t1.1"	"THB4;THB4"	"oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is in tandem with THB3 on Chr_04; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor;oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is in tandem with THB3 on Chr_04; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor"
+Cre04.g226700			"Secretory pathway"				"Cre04.g226700.t1.1;g4961.t1;Cre04.g226700.t1.1;g4961.t1;Cre04.g226700.t1.1;g4961.t1"		
+Cre04.g218950							g4772.t1		
+Cre04.g214503	GMM:29.2.1.2.1.12	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S12"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"		"g4687.t1;g4687.t1;g4687.t1;g4687.t1"		
+Cre04.g218350							"Cre04.g218350.t1.1;g4759.t1;Cre04.g218350.t1.1;g4759.t1"		
+Cre04.g222150			Mitochondrion				"g4848.t1;Cre04.g222150.t1.1"		
+Cre04.g219800	GMM:16.1	"secondary metabolism.isoprenoids"	Mitochondrion				g4793.t1		
+Cre04.g219576							g4785.t1		
+Cre04.g213150	"GMM:34.99;GMM:15.1"	"transport.misc;metal handling.acquisition"	"Secretory pathway"	"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"		"Cre04.g213150.t1.1;g4714.t1;MAE13"		
+Cre04.g226450	GMM:27.1	RNA.processing		GO:0005515	"protein binding"	PRP17	"g4956.t1;PRP17;PRP17;g4956.t1;PRP17;g4956.t1;g4956.t1;PRP17"	"PRP17;PRP17;PRP17;PRP17"	"Homologue of yeast PRP17, which is required specifically for the second step of splicing; contains WD-40 repeats.;Homologue of yeast PRP17, which is required specifically for the second step of splicing; contains WD-40 repeats.;Homologue of yeast PRP17, which is required specifically for the second step of splicing; contains WD-40 repeats.;Homologue of yeast PRP17, which is required specifically for the second step of splicing; contains WD-40 repeats."
+Cre04.g212800									
+Cre04.g226926									
+Cre04.g215750	GMM:31.2	cell.division		GO:0005515	"protein binding"		"g4656.t1;Cre04.g215750.t1.1"		
+Cre04.g214750	GMM:31.4	"cell.vesicle transport"		"GO:0016192;GO:0016021"	"vesicle-mediated transport;integral component of membrane"	VMP7	"g4677.t1;VMPL2;VMP7;VMP7;VMPL2;g4677.t1"		"Expressed Protein. Contains R-SNARE domain distantly similar to VAMP4, not found in land plants. Part of 2 member gene family on same scaffold separated by one gene (<-VMPL1, IFM1, <-VMPL2);Expressed Protein. Contains R-SNARE domain distantly similar to VAMP4, not found in land plants. Part of 2 member gene family on same scaffold separated by one gene (<-VMPL1, IFM1, <-VMPL2)"
+Cre04.g219925									
+Cre04.g217979			Chloroplast						
+Cre04.g217904			Mitochondrion				"g4535.t1;mL118;Cre03.g211400.t1.1;OPR133"	MRPL118	"an OctotricoPeptide Repeat (OPR) protein (Walz et al 2021); stabilizes the 3' extremity of the L8 fragment which forms a loop inside the inner groove of the protein, as well as with ES-94; moderate KD in amiRNA strain leads to reduced accumulation of large subunit rRNA"
+Cre04.g214550			"Secretory pathway"				"Cre04.g214550.t1.1;g4683.t1"		
+Cre04.g214150	GMM:18.2	"Co-factor and vitamine metabolism.thiamine"	Chloroplast			THI4	"g4694.t1;g4694.t1;g4694.t1;g4694.t1;g4694.t1;g4694.t1"	"THI4;THI4;THI4;THI4;THI4;THI4"	"regulatory protein involved in the synthesis of the thiazole moiety of thiamine pyrophosphate; contains riboswitch THI RNA motif;regulatory protein involved in the synthesis of the thiazole moiety of thiamine pyrophosphate; contains riboswitch THI RNA motif;regulatory protein involved in the synthesis of the thiazole moiety of thiamine pyrophosphate; contains riboswitch THI RNA motif;regulatory protein involved in the synthesis of the thiazole moiety of thiamine pyrophosphate; contains riboswitch THI RNA motif;regulatory protein involved in the synthesis of the thiazole moiety of thiamine pyrophosphate; contains riboswitch THI RNA motif;regulatory protein involved in the synthesis of the thiazole moiety of thiamine pyrophosphate; contains riboswitch THI RNA motif"
+Cre04.g217989									
+Cre04.g215350	GMM:33.99	development.unspecified		GO:0005515	"protein binding"		"g4665.t1;g4665.t1"		
+Cre04.g223750				"GO:0005515;GO:0003677"	"protein binding;DNA binding"		"g4883.t1;g4883.t1;g4883.t1"		
+Cre04.g221301	GMM:31.3	cell.cycle				CYCD5	"CYCD5;g4830.t1"	CYCD5	"D type cyclin. Contains LXCXE motif that binds to retinoblastoma related proteins."
+Cre04.g219950	GMM:29.4.1.59	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX"	Mitochondrion				"g4797.t1;Cre04.g219950.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g212700	"GMM:33.99;GMM:27.3.28"	"development.unspecified;RNA.regulation of transcription.squamosa promoter binding protein family (SBP)"	Chloroplast	"GO:0005634;GO:0003677"	"nucleus;DNA binding"		"g4724.t1;g4724.t1"		
+Cre04.g225650			"Secretory pathway"	GO:0004869	"cysteine-type endopeptidase inhibitor activity"		"Cre04.g225650.t1.1;g4931.t1"		
+Cre04.g224826									
+Cre04.g225950	GMM:27.3.42	"RNA.regulation of transcription.bromodomain proteins"	Chloroplast	GO:0005515	"protein binding"		"g4939.t1;Cre04.g225950.t1.1;Cre04.g225950.t1.1;g4939.t1;g4939.t1;Cre04.g225950.t1.1"		
+Cre04.g215700	GMM:31.6.1.8	"cell.motility.eukaryotes.flagellar membrane proteins"					"Cre04.g215700.t1.1;g4657.t1;g4657.t1;Cre04.g215700.t1.1;g4657.t1;Cre04.g215700.t1.1;g4657.t1;Cre04.g215700.t1.1"		
+Cre04.g221250			Chloroplast				"Cre04.g221250.t1.1;g4829.t1"		
+Cre04.g222550							"g4856.t1;g4856.t1"		
+Cre04.g217050							g4518.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g218000			Mitochondrion				g4752.t1	MOC1	"Chloroplast Holliday junction resolvase, involved in the double-strand break repair pathway of homologous recombination; mutant shows a single enlarged nucleoid in the plastid"
+Cre04.g232202			"Secretory pathway"				"g5060.t1;Cre32.g781250.t1.1;g5060.t1;Cre32.g781250.t1.1"		
+Cre04.g217909			Chloroplast				"g4540.t1;Cre03.g211200.t1.1;Cre03.g211200.t1.1;g4540.t1;Cre03.g211200.t1.1;g4540.t1"	"OPR124;OPR124;OPR124"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre04.g220550									
+Cre04.g229494				"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"g5026.t1;g5026.t1"		
+Cre04.g228250	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB24			
+Cre04.g211650			Chloroplast				"g4746.t1;Cre04.g211650.t1.1;g4746.t1;Cre04.g211650.t1.1"		
+Cre04.g217917							"Cre03.g210800.t1.2;Cre03.g210800.t1.1;g4548.t1;Cre03.g210800.t1.2;Cre03.g210800.t1.1;g4548.t1"		
+Cre04.g230242						MOT40	"Cre83.g796300.t1.2;Cre83.g796300.t1.1;g5039.t1;MOT40"	MOT40	"Identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre04.g222500							g4855.t1	BICD1	"Found in basal body proteome as Bicaudal D"
+Cre04.g217974	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion						
+Cre04.g222450									
+Cre04.g217929	"GMM:14.5;GMM:12.1.1"	"S-assimilation.sulfite oxidase;N-metabolism.nitrate metabolism.NR"	Mitochondrion	"GO:0055114;GO:0042128;GO:0030151;GO:0016491"	"oxidation-reduction process;nitrate assimilation;molybdenum ion binding;oxidoreductase activity"		"Cre03.g210200.t1.1;g4560.t1"		
+Cre04.g229700	GMM:4.1.1	"glycolysis.cytosolic branch.UGPase"		"GO:0070569;GO:0008152"	"uridylyltransferase activity;metabolic process"	UGP1	"g5031.t1;Cre04.g229700.t1.1;UGP;UGP1;UGP1;UGP;Cre04.g229700.t1.1;g5031.t1;UGP;UGP1;g5031.t1;Cre04.g229700.t1.1"	"UGP1;UGP1;UGP1"	"UDPGP, Glucose-1-phosphate uridylyltransferase; UTP--glucose-1-phosphate uridylyltransferase; plays a central role as a glucosyl donor in metabolic pathways; a cytosolic enzyme;UDPGP, Glucose-1-phosphate uridylyltransferase; UTP--glucose-1-phosphate uridylyltransferase; plays a central role as a glucosyl donor in metabolic pathways; a cytosolic enzyme;UDPGP, Glucose-1-phosphate uridylyltransferase; UTP--glucose-1-phosphate uridylyltransferase; plays a central role as a glucosyl donor in metabolic pathways; a cytosolic enzyme"
+Cre04.g230536	GMM:29.4	"protein.postranslational modification"		"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR25	"g5042.t1;g5042.t1"		
+Cre04.g225100							g4919.t1		
+Cre04.g229374			"Secretory pathway"				g5021.t1		
+Cre04.g218450	GMM:17.1.2	"hormone metabolism.abscisic acid.signal transduction"					"g4761.t1;Cre04.g218450.t1.1"		
+Cre04.g223150			Mitochondrion			NCL1	"CLR18;OPR20;g4868.t1;CLR18;g4868.t1;OPR20;CLR18;OPR20;g4868.t1;CLR18;OPR20;g4868.t1"	"NCL1;NCL1;NCL1;NCL1"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; not in NCL cluster on Chr_15;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; not in NCL cluster on Chr_15;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; not in NCL cluster on Chr_15;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein; contains a C-terminal RAP domain; not in NCL cluster on Chr_15"
+Cre04.g220787			Chloroplast				"Cre04.g220787.t1.1;g4818.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g228050			"Secretory pathway"				"g4990.t1;g4990.t1"		
+Cre04.g231222	"GMM:29.6.2.2;GMM:1.3.13"	"protein.folding.chaperones and co-chaperones.HSP60s;PS.calvin cycle.rubisco interacting"	"Chloroplast.Stroma;Chloroplast"	"GO:0016020;GO:0005524;GO:0005044"	"membrane;ATP binding;scavenger receptor activity"	CPN60A	"g5049.t1;CPN60 alpha;CPN60 alpha;g5049.t1;CPN60 alpha;g5049.t1;g5049.t1;CPN60 alpha"	"CPN60A;CPN60A;CPN60A;CPN60A"	"GroEL/HSP60-homolog, chloroplast chaperonin; shares only approximately 50% similarity with CPN60Bs; forms with CPN60B1 and CPN60B2 a tetradecameric complex of stochiometry 6:2:6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;GroEL/HSP60-homolog, chloroplast chaperonin; shares only approximately 50% similarity with CPN60Bs; forms with CPN60B1 and CPN60B2 a tetradecameric complex of stochiometry 6:2:6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;GroEL/HSP60-homolog, chloroplast chaperonin; shares only approximately 50% similarity with CPN60Bs; forms with CPN60B1 and CPN60B2 a tetradecameric complex of stochiometry 6:2:6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding;GroEL/HSP60-homolog, chloroplast chaperonin; shares only approximately 50% similarity with CPN60Bs; forms with CPN60B1 and CPN60B2 a tetradecameric complex of stochiometry 6:2:6 that interacts with the co-chaperonin complex; RuBisCO chaperonin required for LS folding"
+Cre04.g225750			Chloroplast	"GO:0016791;GO:0009117;GO:0000287"	"phosphatase activity;nucleotide metabolic process;magnesium ion binding"		"g4933.t2;g4933.t2;g4933.t2"		
+Cre04.g229948	GMM:27.3.12	"RNA.regulation of transcription.C3H zinc finger family"		"GO:0055114;GO:0050660;GO:0046872;GO:0017150;GO:0008033"	"oxidation-reduction process;flavin adenine dinucleotide binding;metal ion binding;tRNA dihydrouridine synthase activity;tRNA processing"		"g5036.t1;g5036.t1;g5036.t1;g5036.t1;g5036.t1"		
+Cre04.g224883			Mitochondrion				"g4912.t1;Cre15.g644600.t1.2;Cre15.g644600.t1.1;Cre15.g644600.t1.2;Cre15.g644600.t1.1;g4912.t1"		
+Cre04.g212850									
+Cre04.g224550			"Secretory pathway"				"GT90-37;g4898.t1;GT90F37;Cre04.g224550.t1.1"		
+Cre04.g229250							g5018.t1		
+Cre04.g230634	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"						
+Cre04.g217937	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast				g4568.t1		
+Cre04.g232402			"Secretory pathway"				"Cre32.g781207.t1.1;g5062.t1;Cre32.g781207.t1.2"		
+Cre04.g217965			"Secretory pathway"						
+Cre04.g213400	GMM:29.5.1	protein.degradation.subtilases	"Secretory pathway"	"GO:0006508;GO:0004252"	"proteolysis;serine-type endopeptidase activity"	SUB7	"SUB7;g4709.t1;Cre04.g213400.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g216000							"Cre04.g216000.t1.1;g4650.t1;g4650.t1;Cre04.g216000.t1.1;g4650.t1;Cre04.g216000.t1.1;Cre04.g216000.t1.1;g4650.t1;g4650.t1;Cre04.g216000.t1.1"		
+Cre04.g214500	GMM:8.1.4	"TCA / organic transformation.TCA.IDH"	Mitochondrion	"GO:0055114;GO:0016616;GO:0006102;GO:0004450"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;isocitrate metabolic process;isocitrate dehydrogenase (NADP+) activity"	IDH3	g4684.t1	IDH3	"NADP specific isocitrate dehydrogenase (EC 1.1.1.42), mitochondrial precursor; similar to mammalian mitochondrial ICDH (e.g., GenBank XP_536192), predicted by Target-P to have an organellar targeting sequence (mitochondrial)"
+Cre04.g223300	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				CCP1	"CCP1;Cre04.g223300.t1.1;g4872.t1;CCP1;Cre04.g223300.t1.1;g4872.t1"	"CCP1;CCP1"	"low-CO2-inducible 36kDa chloroplast envelope protein (LIP36-1), CO2-responsive gene; related to mitochondrial substrate carrier proteins; CCP1 and LCIE are located in head-to-head orientation, like nearby CCP2 and LCID; regulated by CCM1 [PMID: 15235119]; involved in acclimation to changing CO2 concentrations;low-CO2-inducible 36kDa chloroplast envelope protein (LIP36-1), CO2-responsive gene; related to mitochondrial substrate carrier proteins; CCP1 and LCIE are located in head-to-head orientation, like nearby CCP2 and LCID; regulated by CCM1 [PMID: 15235119]; involved in acclimation to changing CO2 concentrations"
+Cre04.g211600	"GMM:30.1;GMM:29.4.1;GMM:29.4"	"signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification"				SNF1	"g4747.t1;SNF1;snRK1;CKIN1"	SNRK1A	"Mediates abiotic stress response, including cold-stress and P deprivation"
+Cre04.g228450	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"	Chloroplast			CPL10	"Cre04.g228450.t1.1;g4998.t1;g4998.t1;Cre04.g228450.t1.1"	"CPL10;CPL10"	"Expressed protein of unknown function; possibly conserved in higher plants and cyanobacteria;Expressed protein of unknown function; possibly conserved in higher plants and cyanobacteria"
+Cre04.g216050	"GMM:30.2.7;GMM:30.2.11;GMM:30.2.10"	"signalling.receptor kinases.leucine rich repeat VII;signalling.receptor kinases.leucine rich repeat XI;signalling.receptor kinases.leucine rich repeat X"	"Secretory pathway"	GO:0005515	"protein binding"		"g4649.t1;g4649.t1;g4649.t1;g4649.t1;g4649.t1;g4649.t1;g4649.t1;g4649.t1;g4649.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre04.g225700			Chloroplast				"g4932.t1;Cre04.g225700.t1.1;g4932.t1;Cre04.g225700.t1.1"		
+Cre04.g217907							"Cre03.g211283.t1.2;Cre03.g211283.t1.1;g4538.t1;g4538.t1;Cre03.g211283.t1.1;Cre03.g211283.t1.2;g4538.t1;Cre03.g211283.t1.1;Cre03.g211283.t1.2"		"Was initially identified as part of Flagellar Associated Protein FAP79, but gene model was later split;Was initially identified as part of Flagellar Associated Protein FAP79, but gene model was later split;Was initially identified as part of Flagellar Associated Protein FAP79, but gene model was later split"
+Cre04.g220461									
+Cre04.g213050							"g4717.t1;Cre04.g213050.t1.1"		
+Cre04.g227550							g4979.t1		
+Cre04.g222650	GMM:31.6.1.11	cell.motility.eukaryotes.other					g4858.t1		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre04.g227750			Mitochondrion	"GO:0006281;GO:0000077;GO:0000014"	"DNA repair;DNA damage checkpoint;single-stranded DNA endodeoxyribonuclease activity"		"g4984.t1;g4984.t1"		
+Cre04.g219700				GO:0034464	BBSome	BBS9	"BBS9;g4788.t3"	BBS9	"Flagellar protein, component of the core BBSome complex that targets membrane proteins to cilia"
+Cre04.g229350				"GO:0032259;GO:0008168"	"methylation;methyltransferase activity"		"Cre04.g229350.t1.1;g5020.t1"		
+Cre04.g217400			Mitochondrion				"g4526.t1;Cre04.g217400.t1.1;g4526.t1;Cre04.g217400.t1.1"		
+Cre04.g219796							"g4792.t1;Cre04.g219796.t1.1"		
+Cre04.g227200			"Secretory pathway"				"g4971.t1;g4971.t1"		
+Cre04.g224150	GMM:11.5.1	"lipid metabolism.glycerol metabolism.glycerol kinase"		"GO:0016773;GO:0005975"	"phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process"		"g4890.t1;Cre04.g224150.t1.1"		
+Cre04.g216902	"GMM:33.99;GMM:30.5"	"development.unspecified;signalling.G-proteins"		GO:0005515	"protein binding"	DAW1	"WDR69;g4514.t1;DAW1;WDR69;g4514.t1;DAW1"	"ODA16;ODA16"	"Outer dynein arm assembly factor ODA16; WD repeat protein that interacts with IFT46 to aid IFT-dependent ODA transport [PMID: 18852297;28298440];Outer dynein arm assembly factor ODA16; WD repeat protein that interacts with IFT46 to aid IFT-dependent ODA transport [PMID: 18852297;28298440]"
+Cre04.g221700	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"	Mitochondrion	"GO:0019646;GO:0016020;GO:0015002"	"aerobic electron transport chain;membrane;heme-copper terminal oxidase activity"	COX3	"COX3;g4838.t1;Cre04.g221700.t1.1;Cre04.g221700.t1.1;g4838.t1;COX3"	"COX3;COX3"	"Cytochrome c oxidase subunit III; mitochondrial complex IV; Note: in C. reinhardtii this subunit is nuclear-encoded;Cytochrome c oxidase subunit III; mitochondrial complex IV; Note: in C. reinhardtii this subunit is nuclear-encoded"
+Cre04.g228750			Chloroplast				"g5006.t1;g5006.t1"		
+Cre04.g217951						LCI33	"g4581.t1;Cre03.g209350.t1.2;Cre03.g209350.t1.1;LCI33;g4581.t1;Cre03.g209350.t1.2;Cre03.g209350.t1.1;LCI33"	"LCI33;LCI33"	"Low-CO2 inducible gene (homologous to unknown protein in Trypanosoma brucei) revealed by cDNA array analyses;Low-CO2 inducible gene (homologous to unknown protein in Trypanosoma brucei) revealed by cDNA array analyses"
+Cre04.g217952	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	Chloroplast				"g4582.t2;Cre03.g209300.t1.1;Cre03.g209300.t1.2"		
+Cre04.g223250	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	Mitochondrion			LCIE	"LCIE;g4871.t1;LCIE;g4871.t1"	"LCIE1;LCIE1"	"Homologous to limiting-CO2 inducible proteins LCIC, LCIB [PMID: 15235119] and to LCID [PMID 16777959]; part of the CAH1/2 cluster of inversely repeated CO2 responsive genes; LCIE and CCP1 are located in head-to-head orientation in the cluster; regulated by CCM1 [PMID 16777959];Homologous to limiting-CO2 inducible proteins LCIC, LCIB [PMID: 15235119] and to LCID [PMID 16777959]; part of the CAH1/2 cluster of inversely repeated CO2 responsive genes; LCIE and CCP1 are located in head-to-head orientation in the cluster; regulated by CCM1 [PMID 16777959]"
+Cre04.g218900	"GMM:31.1;GMM:28.1"	"cell.organisation;DNA.synthesis/chromatin structure"		GO:0005524	"ATP binding"		"g4771.t1;g4771.t1;g4771.t1;g4771.t1"		
+Cre04.g217921	GMM:31.4	"cell.vesicle transport"		"GO:0030126;GO:0016192;GO:0006886;GO:0005737;GO:0005198"	"COPI vesicle coat;vesicle-mediated transport;intracellular protein transport;cytoplasm;structural molecule activity"	COPB1	"g4552.t1;Cre03.g210600.t1.1;COPB1;Cre03.g210600.t1.2"	COPB1	"Expressed Protein. Beta-COP. Subunit of COP-I complex involved in vesicle coat formation."
+Cre04.g217946			Chloroplast	GO:0016787	"hydrolase activity"		"Cre03.g209550.t1.2;Cre03.g209550.t1.1;g4577.t1;Cre03.g209550.t1.1;Cre03.g209550.t1.2;g4577.t1;Cre03.g209550.t1.1;Cre03.g209550.t1.2;g4577.t1;Cre03.g209550.t1.1;Cre03.g209550.t1.2;g4577.t1"		
+Cre04.g220100							"g4801.t1;g4801.t1"		
+Cre04.g216700			"Secretory pathway"			PHO5	"Cre04.g216700.t1.1;g4506.t1;PHOX;PHO5"	PHO5	"Major phosphate-repressible, calcium-dependent, secreted extracellular alkaline phosphatase [PMID: 8754684; PMID: 16400166] homolog of Volvox carteri PHOX [gi:4160586, PMID: 9880549]."
+Cre04.g217981			Chloroplast						
+Cre04.g214200							"g4693.t1;g4693.t1"		
+Cre04.g216203						FAP339			
+Cre04.g213873							"Cre49.g789600.t1.1;g4493.t1;Cre49.g789600.t1.2;Cre49.g789600.t1.1;g4493.t1;Cre49.g789600.t1.2"		
+Cre04.g217912	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	"Secretory pathway"	GO:0016811	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides"		"g4543.t1;g4543.t1"		
+Cre04.g217967				GO:0046983	"protein dimerization activity"		"Cre03.g208750.t1.2;g4601.t1;Cre03.g208750.t1.1"		
+Cre04.g231908							"g5057.t1;Cre32.g781364.t1.1;Cre32.g781364.t1.2"		
+Cre04.g212150	GMM:27.1	RNA.processing					g4736.t1		
+Cre04.g213750			Mitochondrion				"g4703.t2;g4703.t2;g4703.t2"		
+Cre04.g214800				"GO:0016192;GO:0016021"	"vesicle-mediated transport;integral component of membrane"	VMP6	"VMPL1;VMP6;Cre04.g214800.t1.1;g4675.t1"		"Expressed Protein. Contains R-SNARE motif distantly similar to VAMP4, not found in land plants. Part of 2 member gene family on same scaffold separated by one gene (<-VMPL1, IFM1, <-VMPL2)"
+Cre04.g217961									
+Cre04.g217000							g4517.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g219150	GMM:31.6.1.11	cell.motility.eukaryotes.other	"Secretory pathway"				g4776.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g218200	GMM:29.4	"protein.postranslational modification"					g4756.t1		
+Cre04.g225350			Mitochondrion	GO:0005515	"protein binding"		g4925.t1		
+Cre04.g217750	"GMM:33.99;GMM:27.3.67"	"development.unspecified;RNA.regulation of transcription.putative transcription regulator"	Mitochondrion	GO:0005515	"protein binding"		"g4532.t1;g4532.t1;g4532.t1;g4532.t1;g4532.t1;g4532.t1"		
+Cre04.g219250	GMM:31.6.1.3.2.2	"cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B"				IFT52	"BLD1;Cre04.g219250.t1.1;g4778.t1;g4778.t1;BLD1;Cre04.g219250.t1.1"	"IFT52;IFT52"	"Component of IFT-B1 particle; contains ABC-type uncharacterized transport domain; mutated in bld1 mutant; the C. elegans homologue of IFT52/BLD1 is osm-6. [PMID: 11676918, PMID: 11676919, Genbank entry AF397450].;Component of IFT-B1 particle; contains ABC-type uncharacterized transport domain; mutated in bld1 mutant; the C. elegans homologue of IFT52/BLD1 is osm-6. [PMID: 11676918, PMID: 11676919, Genbank entry AF397450]."
+Cre04.g225050	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast				g4918.t1		
+Cre04.g217988									
+Cre04.g226138									
+Cre04.g215250						FAP26	"g4666.t1;g4666.t1;g4666.t1"	"FAP26;FAP26;FAP26"	
+Cre04.g221750							g4839.t1		
+Cre04.g215100			Chloroplast				"g4669.t1;g4669.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre04.g221950			"Secretory pathway"				g4844.t1		
+Cre04.g223500	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4877.t1;g4877.t1;g4877.t1;g4877.t1"		
+Cre04.g219650			"Secretory pathway"				"g4787.t1;Cre04.g219650.t1.1"		
+Cre04.g223000						HLM9	"g4865.t1;HLM9;HLM9;g4865.t1"		
+Cre04.g217968			Mitochondrion				"Cre03.g208700.t1.1;g4602.t1"		
+Cre04.g217200							"g4521.t1;g4521.t1"		
+Cre04.g224200							"g4891.t1;Cre04.g224200.t1.1;Cre04.g224200.t1.1;g4891.t1;Cre04.g224200.t1.1;g4891.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre04.g217949						AXL6	"AXL6;g4580.t1"		"GT77 family;"
+Cre04.g217918			Chloroplast						
+Cre04.g220424			"Secretory pathway"				g4808.t1		
+Cre04.g220500							"Cre04.g220500.t1.1;g4810.t1"		
+Cre04.g217984			Mitochondrion						
+Cre04.g218600							"Cre04.g218600.t1.1;g4765.t1"		
+Cre04.g217300									
+Cre04.g230732	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	GO:0008146	"sulfotransferase activity"	CSR2	"CSR2;g5044.t1"		
+Cre04.g216976									
+Cre04.g226301									
+Cre04.g216200				GO:0046983	"protein dimerization activity"		"Cre04.g216200.t1.1;g4643.t1"		
+Cre04.g213900			Chloroplast				"g4699.t1;Cre04.g213900.t1.1"		
+Cre04.g218400	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		"g4760.t1;g4760.t1;g4760.t1"		
+Cre04.g213100			Chloroplast			CGLD7	g4716.t1	CGLD7	"Conserved in the Green Lineage and Diatoms"
+Cre04.g225600			Chloroplast	GO:0005759	"mitochondrial matrix"	CGL104	"g4930.t1;g4930.t1"	"CGL104;CGL104"	"Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre04.g229226							g5017.t2		
+Cre04.g212900							"Cre04.g212900.t1.1;g4720.t1"		
+Cre04.g217450				"GO:0043666;GO:0009966;GO:0004864"	"regulation of phosphoprotein phosphatase activity;regulation of signal transduction;protein phosphatase inhibitor activity"		g4527.t1		
+Cre04.g229518									
+Cre04.g226550	GMM:14.1	S-assimilation.APS		"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS11	"ARS11;Cre04.g226550.t1.1;g4958.t1"	ARS11	
+Cre04.g217959	GMM:13.1.5.1.3	"amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoserine phosphatase"		"GO:0006564;GO:0004647"	"L-serine biosynthetic process;phosphoserine phosphatase activity"	PSP1			
+Cre04.g221650	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0006265;GO:0005694;GO:0005524;GO:0003918;GO:0003916;GO:0003677"	"DNA topological change;chromosome;ATP binding;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA topoisomerase activity;DNA binding"	TOP4	"g4837.t1;g4837.t1"	"TOP4;TOP4"	
+Cre04.g228500							"Cre04.g228500.t1.1;g4999.t1"		
+Cre04.g213450	GMM:27.3.71	"RNA.regulation of transcription.SNF7"		GO:0007034	"vacuolar transport"	VPS2A	"VPS2A;Cre04.g213450.t1.1;g4708.t1;VPS2A;Cre04.g213450.t1.1;g4708.t1"	"VPS2A;VPS2A"	"Expressed Protein. Similar to yeast Vps2p/Did4p, SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes);Expressed Protein. Similar to yeast Vps2p/Did4p, SNF7-domain protein, component of the ESCRT-III complex involved in the ubiquitin-mediated internalization into the multi-vesicular bodies (late endosomes)"
+Cre04.g222600			Mitochondrion			PHC46	"Cre04.g222600.t1.1;PHC46;g4857.t1"		
+Cre04.g226600	GMM:14.1	S-assimilation.APS	Chloroplast	"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS12	"g4959.t1;ARS12;g4959.t1;ARS12"	"ARS12;ARS12"	
+Cre04.g221400							"Cre04.g221400.t1.1;g4832.t1"		
+Cre04.g223800				"GO:0008124;GO:0006729"	"4-alpha-hydroxytetrahydrobiopterin dehydratase activity;tetrahydrobiopterin biosynthetic process"		"Cre04.g223800.t1.1;g4884.t2"		
+Cre04.g225400	GMM:3.3	"minor CHO metabolism.sugar alcohols"	Chloroplast				"Cre04.g225400.t1.1;g4926.t1;g4926.t1;Cre04.g225400.t1.1"		
+Cre04.g228150	"GMM:16.7;GMM:16.1;GMM:11.1.11;GMM:11.1.10"	"secondary metabolism.wax;secondary metabolism.isoprenoids;lipid metabolism.FA synthesis and FA elongation.fatty acid elongase;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase"		"GO:0016747;GO:0016020;GO:0008610;GO:0006633"	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;lipid biosynthetic process;fatty acid biosynthetic process"	FAE1	"g4992.t1;Cre04.g228150.t1.1;FAE1;Cre04.g228150.t1.1;g4992.t1;FAE1;g4992.t1;Cre04.g228150.t1.1;FAE1;g4992.t1;Cre04.g228150.t1.1;FAE1;FAE1;Cre04.g228150.t1.1;g4992.t1"	"FAE1;FAE1;FAE1;FAE1;FAE1"	"similar to chalcone and stilbene synthases and related to polyketide synthases;similar to chalcone and stilbene synthases and related to polyketide synthases;similar to chalcone and stilbene synthases and related to polyketide synthases;similar to chalcone and stilbene synthases and related to polyketide synthases;similar to chalcone and stilbene synthases and related to polyketide synthases"
+Cre04.g211599			"Secretory pathway"				"Cre04.g211599.t1.1;g4748.t2"		
+Cre04.g228000				GO:0005096	"GTPase activator activity"		"g4989.t1;g4989.t1;g4989.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre04.g229050							"g5014.t1;g5014.t1"		
+Cre04.g213002									
+Cre04.g212200	GMM:27.1	RNA.processing					"g4735.t1;g4735.t1;g4735.t1;g4735.t1;g4735.t1;g4735.t1;g4735.t1;g4735.t1;g4735.t1;g4735.t1;g4735.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre04.g217650			"Secretory pathway"						
+Cre04.g214000			"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"		"g4697.t1;g4697.t1;g4697.t1;g4697.t1;g4697.t1;g4697.t1"		
+Cre04.g226900							"Cre04.g226900.t1.1;g4966.t1"		
+Cre04.g225301			Chloroplast				"g4924.t1;g4924.t1"		
+Cre04.g214505									
+Cre04.g211700	GMM:31.1	cell.organisation	Mitochondrion	GO:0005515	"protein binding"		g4745.t1		
+Cre04.g215200			"Secretory pathway"				"g4667.t1;Cre04.g215200.t1.1"		
+Cre04.g217966							g4600.t1		
+Cre04.g229100				"GO:0035299;GO:0005524"	"inositol pentakisphosphate 2-kinase activity;ATP binding"				
+Cre04.g220700	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0007049;GO:0006468;GO:0005524;GO:0004672"	"cell cycle;protein phosphorylation;ATP binding;protein kinase activity"	ALK2	"ALK2;g4815.t1;Cre04.g220700.t1.1;DIV43"	ALK2	"Possible role in mitotic regulation; ts-lethal mutations block in S/M"
+Cre04.g217980									
+Cre04.g232006							"Cre32.g781350.t1.2;Cre32.g781350.t1.1;g5058.t1"		
+Cre04.g224899							g4913.t1		
+Cre04.g226114			Mitochondrion				g4945.t1		
+Cre04.g217908	"GMM:31.1;GMM:29.4.1"	"cell.organisation;protein.postranslational modification.kinase"				FAP79	"g4539.t1;Cre03.g211250.t1.1;FAP79;g4539.t1;Cre03.g211250.t1.1;FAP79;g4539.t1;Cre03.g211250.t1.1;FAP79;FAP79;g4539.t1;Cre03.g211250.t1.1;g4539.t1;Cre03.g211250.t1.1;FAP79"	"FAP79;FAP79;FAP79;FAP79;FAP79"	"Flagellar Associated Protein with ankyrin repeats. Found in the flagellar proteome [PMID: 15998802]. Possible phospholipase A2 or serine endopeptidase activity; null-allele passenger mutation was isolated (PMID 29743196);Flagellar Associated Protein with ankyrin repeats. Found in the flagellar proteome [PMID: 15998802]. Possible phospholipase A2 or serine endopeptidase activity; null-allele passenger mutation was isolated (PMID 29743196);Flagellar Associated Protein with ankyrin repeats. Found in the flagellar proteome [PMID: 15998802]. Possible phospholipase A2 or serine endopeptidase activity; null-allele passenger mutation was isolated (PMID 29743196);Flagellar Associated Protein with ankyrin repeats. Found in the flagellar proteome [PMID: 15998802]. Possible phospholipase A2 or serine endopeptidase activity; null-allele passenger mutation was isolated (PMID 29743196);Flagellar Associated Protein with ankyrin repeats. Found in the flagellar proteome [PMID: 15998802]. Possible phospholipase A2 or serine endopeptidase activity; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre04.g233102							"g5069.t1;Cre32.g780850.t1.1;Cre32.g780850.t1.1;g5069.t1;Cre32.g780850.t1.1;g5069.t1;g5069.t1;Cre32.g780850.t1.1"		
+Cre04.g213800	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"	GO:0046872	"metal ion binding"		g4702.t1		
+Cre04.g217962						LCI12			
+Cre04.g217800	GMM:33.99	development.unspecified	Mitochondrion						
+Cre04.g217922	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"Cre03.g210550.t1.2;Cre03.g210550.t1.1;g4553.t1;g4553.t1;Cre03.g210550.t1.1;Cre03.g210550.t1.2"		
+Cre04.g214801			Chloroplast						
+Cre04.g221900				GO:0005515	"protein binding"		g4843.t1		
+Cre04.g232902							"g5067.t1;Cre32.g780950.t1.1"		
+Cre04.g213904	"GMM:29.4;GMM:27.3.99"	"protein.postranslational modification;RNA.regulation of transcription.unclassified"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g4700.t1		
+Cre04.g218650	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	Mitochondrion			UCP3	"g4766.t1;g4766.t1;g4766.t1"	"UCP3;UCP3;UCP3"	"Belong to mitochondrial substrate carrier family;Belong to mitochondrial substrate carrier family;Belong to mitochondrial substrate carrier family"
+Cre04.g217150							g4520.t1		
+Cre04.g217911	GMM:27.1	RNA.processing					"g4542.t1;Cre03.g211100.t1.2;Cre03.g211100.t1.1;Cre03.g211100.t1.1;Cre03.g211100.t1.2;g4542.t1;g4542.t1;Cre03.g211100.t1.1;Cre03.g211100.t1.2;g4542.t1;Cre03.g211100.t1.2;Cre03.g211100.t1.1;g4542.t1;Cre03.g211100.t1.1;Cre03.g211100.t1.2"		
+Cre04.g231810	GMM:3.5	"minor CHO metabolism.others"							
+Cre04.g215650				"GO:0030915;GO:0006281;GO:0005634"	"Smc5-Smc6 complex;DNA repair;nucleus"		"g4659.t1;g4659.t1;g4659.t1"		
+Cre04.g226126			Mitochondrion						
+Cre04.g218150	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"Cre04.g218150.t1.1;g4755.t1;PPP18;PPP18;Cre04.g218150.t1.1;g4755.t1;PPP18;g4755.t1;Cre04.g218150.t1.1;Cre04.g218150.t1.1;g4755.t1;PPP18;PPP18;g4755.t1;Cre04.g218150.t1.1"	"PPH1;PPH1;PPH1;PPH1;PPH1"	"Involved, together with PBCP, in state transitions and thylakoid protein de-phosphorylation, similar to PPH1/TAP38 of higher plants.;Involved, together with PBCP, in state transitions and thylakoid protein de-phosphorylation, similar to PPH1/TAP38 of higher plants.;Involved, together with PBCP, in state transitions and thylakoid protein de-phosphorylation, similar to PPH1/TAP38 of higher plants.;Involved, together with PBCP, in state transitions and thylakoid protein de-phosphorylation, similar to PPH1/TAP38 of higher plants.;Involved, together with PBCP, in state transitions and thylakoid protein de-phosphorylation, similar to PPH1/TAP38 of higher plants."
+Cre04.g227700			"Secretory pathway"				"g4983.t1;g4983.t1;g4983.t1;g4983.t1;g4983.t1"		
+Cre04.g219787	"GMM:28.1;GMM:18.5.2.7"	"DNA.synthesis/chromatin structure;Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.DHNA phytyltransferase"	Mitochondrion	"GO:0016021;GO:0004659"	"integral component of membrane;prenyltransferase activity"		"Cre04.g219787.t1.1;g4791.t1"		
+Cre04.g214209									
+Cre04.g217969									
+Cre04.g224667									
+Cre04.g217915	"GMM:34.4;GMM:1.5.3"	"transport.nitrate;PS.carbon concentrating mechanism.algal"	Mitochondrion	"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	NAR1.3	"NAR1.3;g4546.t1;Cre03.g210900.t1.1"	NAR1C	"belongs to the family of formate/nitrite transporters; NCBI Accession number AY612643"
+Cre04.g230830			"Secretory pathway"	GO:0005515	"protein binding"		"g5045.t1;Cre32.g781850.t1.1"		
+Cre04.g225800						CPLD71	"Cre04.g225800.t1.1;g4935.t1;Cre04.g225800.t1.1;g4935.t1"	"CPLD71;CPLD71"	"Conserved in the Plant Lineage and Diatoms;Conserved in the Plant Lineage and Diatoms"
+Cre04.g220050				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4799.t1;Cre04.g220050.t1.1"		
+Cre04.g211950						ELG32	"ELG32;g4740.t1"		
+Cre04.g212000			Chloroplast						
+Cre04.g217500						URN3	"Cre04.g217500.t1.1;g4528.t1;URN3"		
+Cre04.g223540			Chloroplast			CSB22			
+Cre04.g217920			"Secretory pathway"				"g4551.t1;Cre03.g210650.t1.1;Cre03.g210650.t1.1;g4551.t1;Cre03.g210650.t1.1;g4551.t1"		
+Cre04.g222850							"Cre04.g222850.t1.1;g4862.t1"		
+Cre04.g226200	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4950.t1;g4950.t1"		
+Cre04.g233202			"Secretory pathway"	GO:0016757	"transferase activity, transferring glycosyl groups"		"g5070.t1;Cre32.g780800.t1.2;Cre32.g780800.t1.1;g5070.t1;Cre32.g780800.t1.2;Cre32.g780800.t1.1"		
+Cre04.g224250	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP147	g4892.t1	FAP147	"Found in the flagellar proteome; Flagellar Associated Protein weakly similar to Myc-binding protein-associated protein; Identified by comparative genomics as being present only in organisms having motile cilia;"
+Cre04.g215952			Chloroplast						
+Cre04.g222300	GMM:27.1	RNA.processing		"GO:0006396;GO:0003723"	"RNA processing;RNA binding"		"g4851.t1;SRS3;SRS3;g4851.t1"		"Contains RNA polymerase II-binding domain and Suppressor-of-White-APricot (SWAP) domain (Surp module); This gene was annotated as SRS3 as per PMID: 28364390, but this is not the SRS3 gene identified in that work (Cre03.g164950);;Contains RNA polymerase II-binding domain and Suppressor-of-White-APricot (SWAP) domain (Surp module); This gene was annotated as SRS3 as per PMID: 28364390, but this is not the SRS3 gene identified in that work (Cre03.g164950);"
+Cre04.g212300	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006470;GO:0005515;GO:0004722;GO:0004721;GO:0003824"	"protein dephosphorylation;protein binding;protein serine/threonine phosphatase activity;phosphoprotein phosphatase activity;catalytic activity"		"g4733.t1;PPP17;PPP17;g4733.t1"		
+Cre04.g219200						CPL19	"Cre04.g219200.t1.1;g4777.t1;g4777.t1;Cre04.g219200.t1.1;g4777.t1;Cre04.g219200.t1.1;g4777.t1;Cre04.g219200.t1.1"	"CPL19;CPL19;CPL19;CPL19"	"Conserved in the Plant Lineage;Conserved in the Plant Lineage;Conserved in the Plant Lineage;Conserved in the Plant Lineage"
+Cre04.g231026	"GMM:29.3.3;GMM:28.1"	"protein.targeting.chloroplast;DNA.synthesis/chromatin structure"	Chloroplast	"GO:0080085;GO:0045038;GO:0009507;GO:0009416"	"signal recognition particle, chloroplast targeting;protein import into chloroplast thylakoid membrane;chloroplast;response to light stimulus"	SRP43	"Cre32.g781750.t1.2;cpSRP43;Cre32.g781750.t1.1;g5047.t1;SRP43;g5047.t1;SRP43;Cre32.g781750.t1.2;Cre32.g781750.t1.1;cpSRP43"	"SRP43;SRP43"	
+Cre04.g217240			Mitochondrion						
+Cre04.g229000				"GO:0035299;GO:0005524"	"inositol pentakisphosphate 2-kinase activity;ATP binding"	IPK1	"IP5-2K;g5012.t1"	IPK1	"converts 1,3,4,5,6-InsP5 to 1,3,4,5,6-InsP6"
+Cre04.g216250						FAP276	"Cre04.g216250.t1.1;g4642.t1"	FAP276	"Found in the flagellar proteome as Flagellar Associated Protein 276"
+Cre04.g212250			"Secretory pathway"				g4734.t1		
+Cre04.g217957									
+Cre04.g220850	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"Cre04.g220850.t1.1;g4821.t1;g4821.t1;Cre04.g220850.t1.1;g4821.t1;Cre04.g220850.t1.1"		
+Cre04.g226226									
+Cre04.g223200	"GMM:31.3;GMM:31.2"	"cell.cycle;cell.division"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4869.t1;g4869.t1;g4869.t1"		
+Cre04.g216102			Mitochondrion				g4648.t1		
+Cre04.g227950							g4988.t1		
+Cre04.g217971									
+Cre04.g228350	GMM:13.2.4.1	"amino acid metabolism.degradation.branched chain group.shared"	Mitochondrion	"GO:0016746;GO:0008152"	"transferase activity, transferring acyl groups;metabolic process"	DLA4	"DLA4;g4996.t1"	DLA4	"Dihydrolipoamide acetyltransferase; dihydrolipoyllysine-residue succinyltransferase"
+Cre04.g214600			"Secretory pathway"				"g4682.t1;g4682.t1"		
+Cre04.g212500			Chloroplast			CGL42	"Cre04.g212500.t1.1;g4728.t1;g4728.t1;Cre04.g212500.t1.1;Cre04.g212500.t1.1;g4728.t1"	"CGL42;CGL42;CGL42"	
+Cre04.g217939	GMM:11.2.1	"lipid metabolism.FA desaturation.desaturase"				FAD5C	"Cre03.g209800.t1.1;g4570.t1;FAD5C"		"Identified by comparative genomics as being present only in organisms having motile (MOT) cilia; linked and very similar to FAD5B and FAD5D"
+Cre04.g219350	GMM:29.9	protein.co-chaperones	Chloroplast				"PLC1;g4780.t1"		
+Cre04.g221350							"g4831.t1;Cre04.g221350.t1.1"		
+Cre04.g224915									
+Cre04.g217700				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4531.t1;g4531.t1;g4531.t1;g4531.t1"		
+Cre04.g224683				"GO:0016459;GO:0005524;GO:0003774"	"myosin complex;ATP binding;motor activity"		g4902.t1		
+Cre04.g212550			Chloroplast	GO:0006464	"cellular protein modification process"	TTL7	"TTL7;g4727.t1"	TTL7	
+Cre04.g215150	GMM:2.1.2.2	"major CHO metabolism.synthesis.starch.starch synthase"	Chloroplast			SSS1	"SSS1;Cre04.g215150.t1.1;g4668.t2;SSIb;SSS1;SSIb;Cre04.g215150.t1.1;g4668.t2;Cre04.g215150.t1.1;g4668.t2;SSIb;SSS1"	"SSS1B;SSS1B;SSS1B"	"ADP-glucose alpha-1,4 glucane alpha-4-glucanotransferase;ADP-glucose alpha-1,4 glucane alpha-4-glucanotransferase;ADP-glucose alpha-1,4 glucane alpha-4-glucanotransferase"
+Cre04.g222750	"GMM:34.9;GMM:1.5.3"	"transport.metabolite transporters at the mitochondrial membrane;PS.carbon concentrating mechanism.algal"				CCP2	"g4860.t1;CCP2"	CCP2	"related to mitochondrial substrate carrier proteins; Chen et al. 1997 [PMID: 9159951]; reproted to be localized in chloroplast . CCP2 and LCID are located in head-to-head orientation, like nearby CCP1 and LCIE; involved in acclimation to changing CO2 concentrations"
+Cre04.g230928	"GMM:21.1.2;GMM:21.1"	"redox.thioredoxin.QSOX;redox.thioredoxin"		"GO:0055114;GO:0045454;GO:0016972"	"oxidation-reduction process;cell redox homeostasis;thiol oxidase activity"		"TRL13;Cre32.g781800.t1.1;g5046.t1;g5046.t1;Cre32.g781800.t1.1;TRL13;g5046.t1;Cre32.g781800.t1.1;TRL13"		
+Cre04.g214900			Mitochondrion				"g4673.t1;g4673.t1"		
+Cre04.g220200	GMM:34.15	transport.potassium	Chloroplast	"GO:0055085;GO:0016021;GO:0015299;GO:0006813;GO:0006812"	"transmembrane transport;integral component of membrane;solute:proton antiporter activity;potassium ion transport;cation transport"		"Cre04.g220200.t1.1;g4803.t2;Cre04.g220200.t1.1;g4803.t2;g4803.t2;Cre04.g220200.t1.1;g4803.t2;Cre04.g220200.t1.1;g4803.t2;Cre04.g220200.t1.1;Cre04.g220200.t1.1;g4803.t2;Cre04.g220200.t1.1;g4803.t2"		
+Cre04.g230144	GMM:11.8.1.2	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids.serine C-palmitoyltransferase"	"Secretory pathway"	"GO:0030170;GO:0009058"	"pyridoxal phosphate binding;biosynthetic process"	SPT1	"SPT1;g5038.t1;g5038.t1;SPT1;SPT1;g5038.t1;g5038.t1;SPT1;g5038.t1;SPT1;g5038.t1;SPT1;g5038.t1;SPT1;SPT1;g5038.t1"	"SPT1;SPT1;SPT1;SPT1;SPT1;SPT1;SPT1;SPT1"	
+Cre04.g216774			Chloroplast				g4508.t1		
+Cre04.g220576			Mitochondrion						
+Cre04.g217948			"Mitochondrion;Chloroplast"				"g4579.t2;Cre03.g209481.t1.1;Cre03.g209481.t1.2;Cre03.g209481.t1.1;Cre03.g209481.t1.2;g4579.t2;g4579.t2;Cre03.g209481.t1.2;Cre03.g209481.t1.1;g4579.t2;Cre03.g209481.t1.1;Cre03.g209481.t1.2"		
+Cre04.g214612			Chloroplast				"Cre04.g214612.t1.1;g4681.t1"		
+Cre04.g227650			"Secretory pathway"				"g4982.t1;g4982.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre04.g217958									
+Cre04.g227000	GMM:28.2	DNA.repair		"GO:0032300;GO:0030983;GO:0006298;GO:0005524"	"mismatch repair complex;mismatched DNA binding;mismatch repair;ATP binding"	MLH2	"g4969.t1;MLH2"	MLH2	"MutL homolog; belongs to the Mlh2/Pms1/Pms2 family [see PMID: 17992532]. Homolog of MutL, which forms a complex with MutS"
+Cre04.g227251	GMM:31.6.1.11	cell.motility.eukaryotes.other					"Cre04.g227250.t1.3;g4972.t1;g4972.t1;Cre04.g227250.t1.3;g4972.t1;Cre04.g227250.t1.3;Cre04.g227250.t1.3;g4972.t1"		
+Cre04.g228550			Mitochondrion				"g5000.t1;g5000.t1"		
+Cre04.g231124	GMM:27.4	"RNA.RNA binding"		"GO:0046872;GO:0005515"	"metal ion binding;protein binding"		"g5048.t1;Cre32.g781700.t1.1;Cre32.g781700.t1.2"		
+Cre04.g214097	GMM:33.99	development.unspecified	"Secretory pathway"				"g4495.t1;g4495.t1;g4495.t1"		
+Cre04.g220800							g4819.t1		
+Cre04.g215050	"GMM:16.1.4.6;GMM:16.1.4"	"secondary metabolism.isoprenoids.carotenoids.carotenoid beta ring hydroxylase;secondary metabolism.isoprenoids.carotenoids"	Chloroplast	"GO:0055114;GO:0016491;GO:0006633;GO:0005506"	"oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding"	CHYB	"Cre04.g215050.t1.1;CHYB;CBH1;CHYB1;g4670.t1"	CHYB1	"beta-carotene hydroxylase (carotene beta-hydroxylase), putative chloroplast precursor (CBH) [PMID:15849308]"
+Cre04.g216875							"Cre04.g216900.t1.2;g4513.t1"		
+Cre04.g213905	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"GEX148;g4701.t1;GEX148;g4701.t1;GEX148;g4701.t1;g4701.t1;GEX148;g4701.t1;GEX148;GEX148;g4701.t1"		"ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196);ts-lethal mutant was isolated (PMID 29743196)"
+Cre04.g217916	GMM:34.15	transport.potassium					"Cre03.g210850.t1.1;Cre03.g210850.t1.2;g4547.t1;g4547.t1;Cre03.g210850.t1.2;Cre03.g210850.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre04.g217905			Mitochondrion				"g4536.t1;Cre03.g211350.t1.1;Cre03.g211350.t1.2"		
+Cre04.g224931									
+Cre04.g220900			"Secretory pathway"				"GT90F4;g4822.t1;GT90-4;Cre04.g220900.t1.1;GT90-4;g4822.t1;GT90F4;Cre04.g220900.t1.1;GT90F4;GT90-4;g4822.t1;Cre04.g220900.t1.1"		
+Cre04.g223850	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"	HEL23	"DEH1;g4885.t1;Cre04.g223850.t1.1;HEL23;DEH1;Cre04.g223850.t1.1;g4885.t1;HEL23"		"Cytoplasmic DExD/H-box helicase, stimulates mRNA 5'-decapping. Homologue of S. cerevisiae Dhh1. Might be involved in the translational control of some specific mRNAs.;Cytoplasmic DExD/H-box helicase, stimulates mRNA 5'-decapping. Homologue of S. cerevisiae Dhh1. Might be involved in the translational control of some specific mRNAs."
+Cre04.g218100	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP25	"g4754.t1;Cre04.g218100.t1.1"	FAP25	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome"
+Cre04.g223100	GMM:8.3	"TCA / organic transformation.carbonic anhydrases"	"Secretory pathway"			CAH1	"CAH1;Cre04.g223100.t1.1;g4867.t1;CAH1;Cre04.g223100.t1.1;g4867.t1;g4867.t1;Cre04.g223100.t1.1;CAH1"	"CAH1;CAH1;CAH1"	"Carbonate dehydratase 1 in Chlamydomonas reinhardtii, also known as CA1; gi:115447; Carbonic anhydrase 1 precursor (Carbonate dehydratase 1) (CA1); alpha type - Carbonic anhydrase 1 localized in the periplasmic space and low-CO2 inducible gene regulated b;Carbonate dehydratase 1 in Chlamydomonas reinhardtii, also known as CA1; gi:115447; Carbonic anhydrase 1 precursor (Carbonate dehydratase 1) (CA1); alpha type - Carbonic anhydrase 1 localized in the periplasmic space and low-CO2 inducible gene regulated b;Carbonate dehydratase 1 in Chlamydomonas reinhardtii, also known as CA1; gi:115447; Carbonic anhydrase 1 precursor (Carbonate dehydratase 1) (CA1); alpha type - Carbonic anhydrase 1 localized in the periplasmic space and low-CO2 inducible gene regulated b"
+Cre04.g215600	GMM:13.1.3.4.13	"amino acid metabolism.synthesis.aspartate family.methionine.methionine S-methyltransferase"		GO:0008757	"S-adenosylmethionine-dependent methyltransferase activity"		"g4660.t1;Cre04.g215600.t1.1;Cre04.g215600.t1.1;g4660.t1"		
+Cre04.g229850							"Cre04.g229850.t1.1;g5035.t1"		
+Cre04.g217850	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		g4749.t1		
+Cre04.g227526			Mitochondrion						
+Cre04.g224850							"g4908.t1;g4908.t1"		
+Cre04.g224300						CGL84	"CGL84;g4893.t1"	CGL84	"Conserved in green algae and plants"
+Cre04.g215950	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN57	"g4651.t1;g4651.t1"	"CYN57;CYN57"	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type with S/K-R/E RNA-binding domain; no targeting peptide, cytosolic; similar to AtCYP57;Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type with S/K-R/E RNA-binding domain; no targeting peptide, cytosolic; similar to AtCYP57"
+Cre04.g232303									
+Cre04.g228950							"g5011.t1;Cre04.g228950.t1.1"		
+Cre04.g214690	GMM:3.6	"minor CHO metabolism.callose"		"GO:0006396;GO:0004526;GO:0001682"	"RNA processing;ribonuclease P activity;tRNA 5'-leader removal"		"g4679.t1;Cre04.g214690.t1.1"		
+Cre04.g216300			Chloroplast				"g4641.t1;Cre04.g216300.t1.1"		
+Cre04.g217935	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"					"g4566.t1;g4566.t1"		
+Cre04.g217919			Mitochondrion				"g4550.t1;g4550.t1"		
+Cre04.g213950				"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR23	"SRR23;g4698.t1"		"Scavenger receptor cysteine-rich protein; contains ligand-binding SRCR domain found in speract/scavenger receptor (PMID: 14995912)"
+Cre04.g217906							"g4537.t1;Cre03.g211300.t1.2;Cre03.g211300.t1.1"		
+Cre04.g217550	GMM:29.2.3	protein.synthesis.initiation		"GO:0031369;GO:0006413;GO:0005852;GO:0005515;GO:0003743"	"translation initiation factor binding;translational initiation;eukaryotic translation initiation factor 3 complex;protein binding;translation initiation factor activity"	EIF3C	"EIF3C;g4529.t1"	EIF3C	"putative Eukaryotic translation initiation factor 3 subunit 8 (eIF3 p110) (eIF3c)"
+Cre04.g220768			Mitochondrion				"Cre04.g220751.t1.2;g4817.t1"		
+Cre04.g221500			Mitochondrion				"g4834.t1;SMM13;SMM13;g4834.t1;SMM13;g4834.t1"		
+Cre04.g212350			Chloroplast				"g4732.t1;Cre04.g212350.t1.1"		
+Cre04.g221850			Chloroplast				"g4842.t1;Cre04.g221850.t1.1"		
+Cre04.g213000	"GMM:34.99;GMM:15.1"	"transport.misc;metal handling.acquisition"	"Mitochondrion;Secretory pathway"	"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"		"MAE12;g4718.t1;Cre04.g213000.t1.1;MAE12;g4718.t1;Cre04.g213000.t1.1"		
+Cre04.g217923	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre04.g223600							"Cre04.g223600.t1.1;g4880.t1;g4880.t1;Cre04.g223600.t1.1"		
+Cre04.g228400	GMM:27.3.32	"RNA.regulation of transcription.WRKY domain transcription factor family"	Mitochondrion	"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	WRK1	"WRK1;g4997.t1;g4997.t1;WRK1;g4997.t1;WRK1"		
+Cre04.g217990									
+Cre04.g212450							"g4729.t1;Cre04.g212450.t1.1"		
+Cre04.g225776									
+Cre04.g215550							"Cre04.g215550.t1.1;g4661.t1"		
+Cre04.g229026			Mitochondrion				g5013.t1		
+Cre04.g216950	GMM:11.1.3	"lipid metabolism.FA synthesis and FA elongation.ketoacyl ACP synthase"	Chloroplast	"GO:0016747;GO:0008610;GO:0008152"	"transferase activity, transferring acyl groups other than amino-acyl groups;lipid biosynthetic process;metabolic process"		"g4515.t1;KAS3;Cre04.g216950.t1.1"		
+Cre04.g217913	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"	"Secretory pathway"			MCP19	"g4544.t1;MCP19;Cre03.g211000.t1.1;Cre03.g211000.t1.1;MCP19;g4544.t1"		
+Cre04.g216100	"GMM:24.2;GMM:13.2.3.2"	"biodegradation of xenobiotics.lactoylglutathione lyase;amino acid metabolism.degradation.aspartate family.threonine"	Chloroplast				"g4647.t1;g4647.t1;g4647.t1;g4647.t1"		
+Cre04.g226800							g4963.t1		
+Cre04.g220150			Mitochondrion				"g4802.t1;Cre04.g220150.t1.1"		
+Cre04.g217945	GMM:11.2.1	"lipid metabolism.FA desaturation.desaturase"	Chloroplast	GO:0006629	"lipid metabolic process"		"FAD5D;Cre03.g209600.t1.2;g4576.t1;Cre03.g209600.t1.1;FAD5D;Cre03.g209600.t1.2;g4576.t1;Cre03.g209600.t1.1;g4576.t1;Cre03.g209600.t1.2;Cre03.g209600.t1.1;FAD5D;g4576.t1;Cre03.g209600.t1.2;Cre03.g209600.t1.1;FAD5D"		
+Cre04.g229550			"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR15	"SRR15;g5029.t1"		"Contains C-terminal Transient receptor potential (TRP) ion channel domain; null-allele mutant was isolated (PMID 29743196)"
+Cre04.g228600			Mitochondrion				g5001.t1		
+Cre04.g217220			Mitochondrion				"Cre04.g217250.t3.1;g4522.t1"		
+Cre04.g217942									
+Cre04.g227301									
+Cre04.g214545	GMM:34.15	transport.potassium	Chloroplast				"Cre49.g789800.t1.1;g4499.t1;g4499.t1;Cre49.g789800.t1.1;Cre49.g789800.t1.1;g4499.t1;Cre49.g789800.t1.1;g4499.t1;Cre49.g789800.t1.1;g4499.t1"		
+Cre04.g221000				"GO:0016787;GO:0008152"	"hydrolase activity;metabolic process"		"g4824.t1;Cre04.g221000.t1.1"		
+Cre04.g214502	GMM:10.1.2	"cell wall.precursor synthesis.UGE"		"GO:0055114;GO:0016616;GO:0006694;GO:0003854"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	UGE	"g4686.t1;UGE;DIV113;EZY4;g4686.t1;UGE;DIV113;EZY4"	"UGE1;UGE1"	"ts-lethal mutant has fragile cell membrane when poked with a needle at restrictive temperature (PMID 29743196);ts-lethal mutant has fragile cell membrane when poked with a needle at restrictive temperature (PMID 29743196)"
+Cre04.g217938			Chloroplast	GO:0005515	"protein binding"				
+Cre04.g217940	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre03.g209750.t1.2;g4571.t1;Cre03.g209750.t1.1"		
+Cre04.g222250			Mitochondrion						
+Cre04.g225176			Mitochondrion						
+Cre04.g226950							"g4968.t1;Cre04.g226950.t1.1;g4968.t1;Cre04.g226950.t1.1"		
+Cre04.g227600	"GMM:30.2.8.2;GMM:30.2.11;GMM:17.3.2.1"	"signalling.receptor kinases.leucine rich repeat VIII.type 2;signalling.receptor kinases.leucine rich repeat XI;hormone metabolism.brassinosteroid.signal transduction.BRI"	Chloroplast	GO:0005515	"protein binding"		"g4981.t1;Cre04.g227600.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g213650	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		"g4705.t1;Cre04.g213650.t1.1;Cre04.g213650.t1.1;g4705.t1"		
+Cre04.g226150	GMM:34.3	"transport.amino acids"		"GO:0055085;GO:0016020;GO:0015171;GO:0006810;GO:0003333"	"transmembrane transport;membrane;amino acid transmembrane transporter activity;transport;amino acid transmembrane transport"	AOC1	"AOC1;g4948.t1;g4948.t1;AOC1"	"AOC1;AOC1"	"amino acid carrier 1; belongs to APC (Amino acid Polyamine organoCation) family;amino acid carrier 1; belongs to APC (Amino acid Polyamine organoCation) family"
+Cre04.g224650	GMM:29.3.1	protein.targeting.nucleus		GO:0005515	"protein binding"	FAP296	g4901.t1	FAP296	"Flagellar Associated Protein similar to importin alpha, found in the flagellar proteome"
+Cre04.g218550							"Cre04.g218550.t1.1;g4764.t1"		
+Cre04.g217928	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g4559.t1;Cre03.g210250.t1.1;Cre03.g210250.t1.2"		
+Cre04.g227050			"Secretory pathway"				"g4970.t1;g4970.t1;g4970.t1;g4970.t1;g4970.t1;g4970.t1"		
+Cre04.g231712	GMM:1.5	"PS.carbon concentrating mechanism"	Chloroplast						
+Cre04.g217976									
+Cre04.g223876	GMM:29.2.3	protein.synthesis.initiation							
+Cre04.g214850							"g4674.t1;Cre04.g214850.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g217350	GMM:34.15	transport.potassium		"GO:0071805;GO:0016020;GO:0015079"	"potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity"	KUP4	"g4525.t1;KUP4;Cre04.g217350.t1.1"	KUP4	"Potassium ion uptake transporter, distantly linked to KUP5 gene encoding a similar protein"
+Cre04.g218050	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"				RWP8	"g4753.t2;RWP8;RWP8;g4753.t2;g4753.t2;RWP8;g4753.t2;RWP8;RWP8;g4753.t2;g4753.t2;RWP8"	"RWP8;RWP8;RWP8;RWP8;RWP8;RWP8"	"putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor;putative RWP-RK domain transcription factor"
+Cre04.g222000	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	"protein binding"		g4845.t1		
+Cre04.g211850	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELIP5	"ELI5;g4742.t1;Cre04.g211850.t1.1"	ELIP5	"belongs to chlorophyll A-B binding protein superfamily, ELIP family"
+Cre04.g227900	GMM:31.6.1.6.6	"cell.motility.eukaryotes.central pair.C1-C2 bridge"		GO:0005515	"protein binding"	PF20	"Cre04.g227900.t1.1;PF20;g4987.t1"	PF20	"WD-repeat containing protein PF20 of the central pair of the flagella; associates with the intermicrotubule bridge;"
+Cre04.g217991			"Secretory pathway"	GO:0005515	"protein binding"		"g4639.t1;Cre04.g216351.t1.2;g4639.t1;Cre04.g216351.t1.2;g4639.t1;Cre04.g216351.t1.2"		
+Cre04.g213300			"Secretory pathway"				"Cre04.g213300.t1.1;g4711.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g219300							"Cre04.g219300.t1.1;g4779.t1"		"similar to ZnF_C4 abd HLH domain containing kinases (subfamily of choline kinases) smart00587"
+Cre04.g232702			Mitochondrion				"Cre32.g781050.t1.1;g5065.t1"		
+Cre04.g216840									
+Cre04.g216737							g4507.t1		
+Cre04.g220300				GO:0005515	"protein binding"		"Cre04.g220300.t1.1;g4805.t1"		
+Cre04.g213350			Mitochondrion				g4710.t1		
+Cre04.g215850	GMM:29.3.1	protein.targeting.nucleus		"GO:0008565;GO:0006606;GO:0005737;GO:0005634;GO:0005515"	"protein transporter activity;protein import into nucleus;cytoplasm;nucleus;protein binding"	IPA1	"Cre04.g215850.t1.1;IPA1;g4654.t1"	IPA1	
+Cre04.g224600				GO:0046983	"protein dimerization activity"		"g4900.t1;Cre04.g224600.t1.1;g4900.t1;Cre04.g224600.t1.1;Cre04.g224600.t1.1;g4900.t1;Cre04.g224600.t1.1;g4900.t1;Cre04.g224600.t1.1;g4900.t1"		
+Cre04.g219750	"GMM:28.99;GMM:28.1"	"DNA.unspecified;DNA.synthesis/chromatin structure"		"GO:0043140;GO:0006281;GO:0006260;GO:0005524;GO:0003676"	"ATP-dependent 3'-5' DNA helicase activity;DNA repair;DNA replication;ATP binding;nucleic acid binding"	HEL22	"HEL22;g4790.t1;g4790.t1;HEL22"		
+Cre04.g226250									
+Cre04.g216550							"g4503.t1;Cre04.g216550.t1.1"		
+Cre04.g224350			"Secretory pathway"			MOT55	"g4894.t1;MOT55;MOT55;g4894.t1"	"MOT55;MOT55"	"Identified by comparative genomics as being present only in organisms having motile (MOT) cilia;Identified by comparative genomics as being present only in organisms having motile (MOT) cilia"
+Cre04.g232802	"GMM:29.4;GMM:17.1.3;GMM:17.1.2"	"protein.postranslational modification;hormone metabolism.abscisic acid.induced-regulated-responsive-activated;hormone metabolism.abscisic acid.signal transduction"		"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"Cre32.g781000.t1.1;g5066.t1;Cre32.g781000.t1.1;g5066.t1;g5066.t1;Cre32.g781000.t1.1"		
+Cre04.g225150			"Secretory pathway"				"g4920.t1;g4920.t1;g4920.t1;g4920.t1;g4920.t1;g4920.t1"		
+Cre04.g228650	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"		"g5003.t1;Cre04.g228650.t1.1;Cre04.g228650.t1.1;g5003.t1"		
+Cre04.g218800			Mitochondrion	GO:0019825	"oxygen binding"	THB3	"THB3;g4769.t1;THB3;g4769.t1"	"THB3;THB3"	"oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is in tandem with THB4 on Chr_04; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor;oxygen-binding heme protein belonging to group I of truncated 2-on2 hemoglobins (trHbs); homologs are found in bacteria, plants and unicellular eukaryotes (Paramecium, Tetrahymena); there are several pairs of related and linked genes in this family, this one is in tandem with THB4 on Chr_04; may carry out NO dioxygenation in the presence of nitrate reductase acting as an electron donnor"
+Cre04.g215000	GMM:11.2.1	"lipid metabolism.FA desaturation.desaturase"		GO:0006629	"lipid metabolic process"	BKT1	"g4671.t1;BKT;Cre04.g215000.t1.1;BKT1;CBK1"	BKT1	"beta-carotene C-4 oxygenase (beta-carotene ketolase), putative chloroplast precursor (CBK) (crtW); overexpression after removal of the 116 aa C-terminal extension leads to high accumulation of astaxanthin and other ketocarotenoids"
+Cre04.g219100			"Secretory pathway"				"g4775.t1;g4775.t1"		
+Cre04.g230340						FAP206	"Cre83.g796350.t1.1;Cre83.g796350.t1.2;g5040.t1"	FAP206	"altered pI in DRC mutant axonemes (PubMed ID:21700706 Lin et al. Nicastro 2011); MT-binding protein, docking adapter for RS2 and dynein c (PubMed ID:25540426 Vasudevan et al. Gaertig 2015); plays a role in a role in radial spoke formation; mouse ortholog shows male infertility, hydrocephalus and impaired mucociliary clearance of the airways"
+Cre04.g221800			Mitochondrion				"g4841.t1;g4841.t1;g4841.t1"	"POB2;POB2;POB2"	"Found in basal body proteome;Found in basal body proteome;Found in basal body proteome"
+Cre04.g220825			Mitochondrion				"Cre04.g220815.t1.2;g4820.t1"		
+Cre04.g218526			"Secretory pathway"				g4763.t1		
+Cre04.g218850	GMM:29.2.2.50	"protein.synthesis.ribosome biogenesis.BRIX"					"g4770.t1;Cre04.g218850.t1.1;RNP"		
+Cre04.g212400						UBC15	"g4731.t1;UBC15"		
+Cre04.g221150			"Secretory pathway"				"g4827.t1;GT90F5;GT90-5"		
+Cre04.g220633			Mitochondrion				"Cre04.g220650.t2.1;g4814.t1"		
+Cre04.g216350	GMM:3.5	"minor CHO metabolism.others"				CPLD3	"AKR7;g4640.t1;Cre04.g216350.t1.1"	CPLD3	"Aldo/keto reductase. Conserved expressed protein. Previously annotated as CPLD3"
+Cre04.g217924	GMM:11.2.1	"lipid metabolism.FA desaturation.desaturase"	Chloroplast				"g4555.t1;FAD5B"		
+Cre04.g225900	GMM:31.4	"cell.vesicle transport"		"GO:0016192;GO:0016021"	"vesicle-mediated transport;integral component of membrane"	VAMP72	"VAMP72;Cre04.g225900.t1.1;VAM2;g4938.t1;VAMP72;g4938.t1;Cre04.g225900.t1.1;VAM2"	"VAMP2;VAMP2"	"Expressed Protein, similar to VAMP7 R-SNAREs, involved in Golgi/PM and Golgi/endosomal trafficking; most similar to VAMP72-family of land plants; part of a 4-member gene family in Chlamydomonas all on same scaffold and in 2 tandem pairs, location and order of gene family members are syntenic in Volvox;Expressed Protein, similar to VAMP7 R-SNAREs, involved in Golgi/PM and Golgi/endosomal trafficking; most similar to VAMP72-family of land plants; part of a 4-member gene family in Chlamydomonas all on same scaffold and in 2 tandem pairs, location and order of gene family members are syntenic in Volvox"
+Cre04.g214100	GMM:19.32	"tetrapyrrole synthesis.sirohydrochlorin ferrochelatase"	Chloroplast	"GO:0016852;GO:0009236"	"sirohydrochlorin cobaltochelatase activity;cobalamin biosynthetic process"	SIRB	"g4695.t1;SIRB;Cre04.g214100.t1.1;CBIX"	SIRB1	"Involved in siroheme biosynthesis; Contains CbiX domain"
+Cre04.g214657	GMM:34.15	transport.potassium	Mitochondrion	"GO:0071805;GO:0016020;GO:0015079"	"potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity"		g4500.t1		
+Cre04.g222950						SUR2	"SUR2;Cre04.g222950.t1.1;g4864.t1"	SUR2	"Surfeit genes are believed to play a role as housekeeping genes. While tightly clustered in vertebrates, surfeit loci seem unlinked in invertebrates"
+Cre04.g228925			Mitochondrion				"Cre04.g228939.t1.2;g5010.t1"		
+Cre04.g228625	GMM:27.3.41	"RNA.regulation of transcription.B3 transcription factor family"	"Secretory pathway"						
+Cre04.g217978									
+Cre04.g217934				GO:0009116	"nucleoside metabolic process"		g4565.t1		
+Cre04.g217950	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre04.g217950.t1.1;g4751.t1;g4751.t1;Cre04.g217950.t1.1;Cre04.g217950.t1.1;g4751.t1;g4751.t1;Cre04.g217950.t1.1;Cre04.g217950.t1.1;g4751.t1"		
+Cre04.g217941	GMM:29.4	"protein.postranslational modification"					"g4572.t1;Cre03.g209700.t1.1;g4572.t1;Cre03.g209700.t1.1"		
+Cre04.g228800	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g5007.t1;g5007.t1;g5007.t1"		
+Cre04.g212650				GO:0003924	"GTPase activity"		"g4725.t1;Cre04.g212650.t1.1"		
+Cre04.g222402							g4853.t1		
+Cre04.g219550							"Cre04.g219550.t1.1;g4784.t1;Cre04.g219550.t1.1;g4784.t1"		
+Cre04.g214501	GMM:27.1	RNA.processing	Chloroplast	"GO:0006402;GO:0004654;GO:0003723"	"mRNA catabolic process;polyribonucleotide nucleotidyltransferase activity;RNA binding"	PNP1	"PNP1;g4685.t1;PNT2;PNP1;g4685.t1;PNT2"	"PNP1;PNP1"	"Polyribonucleotide nucleotidyltransferase, Polyribonucleotide phosphorylase, PNPase; involved in the tailing and degradation of chloroplast transcripts;Polyribonucleotide nucleotidyltransferase, Polyribonucleotide phosphorylase, PNPase; involved in the tailing and degradation of chloroplast transcripts"
+Cre04.g214350	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast	"GO:0008408;GO:0006260;GO:0003887;GO:0003677;GO:0001882;GO:0000166"	"3'-5' exonuclease activity;DNA replication;DNA-directed DNA polymerase activity;DNA binding;nucleoside binding;nucleotide binding"	POLA1	"POLA1;g4690.t1;DIV13"	POLA1	"Homologous to eukaryotic DNA polymerase alpha catalytic subunit; Replication polymerase. Class B polymerase. ts-lethal mutants block in S/M (PMID 25336509)"
+Cre04.g215500							"Cre04.g215500.t1.1;g4662.t1"		
+Cre04.g226100							"g4943.t1;g4943.t1;g4943.t1;g4943.t1"		
+Cre04.g219450				"GO:0055114;GO:0051537;GO:0016491"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"		"DNJ30:MIDFRAG;g4782.t1;Cre04.g219450.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g229422									
+Cre04.g217985									
+Cre04.g217956									
+Cre04.g214700			"Secretory pathway"				g4678.t1		
+Cre04.g220000	"GMM:29.4.1.59;GMM:29.4"	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		g4798.t1		
+Cre04.g229650			"Mitochondrion;Chloroplast"	"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	ADH10	"ADH10;g5030.t3;ADH10;g5030.t3"		"Alcohol dehydrogenase. Acclimation to changing CO2 concentrations and light intensities was studied by Yamano et al. 28 [PMID: 18322145].;Alcohol dehydrogenase. Acclimation to changing CO2 concentrations and light intensities was studied by Yamano et al. 28 [PMID: 18322145]."
+Cre04.g213751							g4704.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g220076	GMM:29.4	"protein.postranslational modification"							
+Cre04.g217900			Chloroplast				"Cre04.g217900.t1.1;g4750.t1;g4750.t1;Cre04.g217900.t1.1"		
+Cre04.g217977						CSU3			
+Cre04.g219725							"Cre04.g219742.t1.2;g4789.t1"		
+Cre04.g217973									
+Cre04.g231614	GMM:30.2.11	"signalling.receptor kinases.leucine rich repeat XI"		GO:0005515	"protein binding"		"Cre32.g781500.t1.1;g5053.t1"		
+Cre04.g217963			"Secretory pathway"						
+Cre04.g216811			Mitochondrion				"g4509.t1;Cre04.g216811.t1.1"		
+Cre04.g221450			Mitochondrion			PHC54	"PHC54;Cre04.g221450.t1.1;g4833.t1;PHC54;Cre04.g221450.t1.1;g4833.t1"		
+Cre04.g216826			Mitochondrion				"g4510.t1;Cre04.g216826.t1.1"		
+Cre04.g220950			Mitochondrion				"Cre04.g220950.t1.1;g4823.t1"		
+Cre04.g226750			"Secretory pathway"				"g4962.t1;Cre04.g226750.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g223400							"Cre04.g223400.t1.1;g4875.t1"		
+Cre04.g216150							"g4646.t1;Cre04.g216150.t1.1"		
+Cre04.g226400	GMM:28.1.3	"DNA.synthesis/chromatin structure.histone"					"Cre04.g226400.t1.1;g4955.t1;Cre04.g226400.t1.1;g4955.t1;g4955.t1;Cre04.g226400.t1.1"		
+Cre04.g223900				"GO:0030173;GO:0006891"	"integral component of Golgi membrane;intra-Golgi vesicle-mediated transport"		g4887.t1		
+Cre04.g217930							"Cre03.g210150.t1.2;g4561.t2;Cre03.g210150.t1.1;g4561.t2;Cre03.g210150.t1.1;Cre03.g210150.t1.2"		
+Cre04.g232502			"Secretory pathway"				"Cre32.g781150.t1.1;g5063.t1;Cre32.g781150.t1.1;g5063.t1"		
+Cre04.g219050	GMM:29.4.1	"protein.postranslational modification.kinase"	"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"	SRR10			
+Cre04.g217936							g4567.t1		
+Cre04.g217982			Mitochondrion						
+Cre04.g217927	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING					"Cre03.g210300.t1.1;g4558.t1;g4558.t1;Cre03.g210300.t1.1"		
+Cre04.g227568			Chloroplast				"Cre04.g227568.t1.1;g4980.t1"		
+Cre04.g223350	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG62	"CYG62;g4873.t1;g4873.t1;CYG62"		
+Cre04.g224400	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Mitochondrion	"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g4895.t1;g4895.t1;g4895.t1;g4895.t1;g4895.t1;g4895.t1;g4895.t1;g4895.t1;g4895.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre04.g219400	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		"Cre04.g219400.t1.1;g4781.t1"		
+Cre04.g213251	"GMM:29.5.31;GMM:29.5"	"protein.degradation.alanine protease;protein.degradation"	Mitochondrion	GO:0006508	proteolysis				
+Cre04.g214050				"GO:0016021;GO:0015689;GO:0015098"	"integral component of membrane;molybdate ion transport;molybdate ion transmembrane transporter activity"	SULTR4	"Cre04.g214050.t1.1;g4696.t1;SUL4;SULTR4"	MOT1	"Knockdown of expression impairs molybdate transport and nitrate reductase activity; heterologous expression confers molybdate transport capability in yeast; Note: not to be confused with Cre03.g164650 which was previously annotated as MOT1 as a motility-related gene"
+Cre04.g226850	GMM:29.5.4	"protein.degradation.aspartate protease"	"Secretory pathway"	"GO:0006629;GO:0006508;GO:0004190"	"lipid metabolic process;proteolysis;aspartic-type endopeptidase activity"	ASP1	"g4965.t1;ASP1;Cre04.g226850.t1.1"	ASP1	"Aspartic protease, pepsin (A1) family; directed to secretory pathway; previously identified by Almeida, C.M.(23) Thesis, Department of Zoologia, University of Coimbra, Coimbra, Portugal (Accession number CAE18153)"
+Cre04.g222050			Mitochondrion				"g4846.t1;g4846.t1;g4846.t1"		
+Cre04.g217964			Mitochondrion						
+Cre04.g229300	GMM:1.3.13	"PS.calvin cycle.rubisco interacting"	Chloroplast	GO:0005524	"ATP binding"	RCA1	"g5019.t1;g5019.t1"	"RCA1;RCA1"	"RubisCO activase, chloroplast precursor; required for optimal photosynthesis in a low CO2 atmosphere [PMID: 16667924; independent cDNA sequence: M62962].;RubisCO activase, chloroplast precursor; required for optimal photosynthesis in a low CO2 atmosphere [PMID: 16667924; independent cDNA sequence: M62962]."
+Cre04.g227850			"Secretory pathway"				"g4986.t1;g4986.t1"		
+Cre04.g226050	GMM:14.1	S-assimilation.APS		"GO:0008484;GO:0008152"	"sulfuric ester hydrolase activity;metabolic process"	ARS10	"ARS10;g4941.t1;g4941.t1;ARS10;g4941.t1;ARS10"	"ARS10;ARS10;ARS10"	
+Cre04.g228675			"Secretory pathway"				"g5004.t1;Cre04.g228692.t1.2"		
+Cre04.g225250							"g4923.t1;g4923.t1;g4923.t1"		
+Cre04.g226176			Chloroplast						
+Cre04.g213500			Chloroplast	"GO:0008176;GO:0006400"	"tRNA (guanine-N7-)-methyltransferase activity;tRNA modification"		"TMG8;g4707.t1;g4707.t1;TMG8;g4707.t1;TMG8"		
+Cre04.g232104	GMM:1.1.1.1	"PS.lightreaction.photosystem II.LHC-II"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCBM3	"Cre32.g781300.t1.1;LHCBM3;Cre32.g781300.t1.2;g5059.t1;Cre32.g781300.t1.1;LHCBM3;Cre32.g781300.t1.2;g5059.t1"	"LHCBM3;LHCBM3"	
+Cre04.g223650			"Secretory pathway"			FAP30	"g4881.t1;g4881.t1;g4881.t1"	"FAP30;FAP30;FAP30"	"Similar to hyalin-domain proteins;Similar to hyalin-domain proteins;Similar to hyalin-domain proteins"
+Cre04.g217926									
+Cre04.g225000							"g4917.t3;g4917.t3"		
+Cre04.g223225	"GMM:3.6;GMM:29.4"	"minor CHO metabolism.callose;protein.postranslational modification"							
+Cre04.g219900			Chloroplast				"g4795.t1;PGPP1;PGPP1;g4795.t1"		"Putative phosphatidylglycerolphosphate phosphatase (PtdGro synthesis);Putative phosphatidylglycerolphosphate phosphatase (PtdGro synthesis)"
+Cre04.g230438	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre32.g782050.t1.1;Cre32.g782050.t1.2;g5041.t1"		
+Cre04.g217970									
+Cre04.g219500	GMM:29.9	protein.co-chaperones	Mitochondrion			DNJ30	"DNJ30;g4783.t1;g4783.t1;DNJ30;g4783.t1;DNJ30;g4783.t1;DNJ30;g4783.t1;DNJ30"		"DnaJ-like protein; contains TPR repeat and J-domain (pfam226) at the C-terminus.;DnaJ-like protein; contains TPR repeat and J-domain (pfam226) at the C-terminus.;DnaJ-like protein; contains TPR repeat and J-domain (pfam226) at the C-terminus.;DnaJ-like protein; contains TPR repeat and J-domain (pfam226) at the C-terminus.;DnaJ-like protein; contains TPR repeat and J-domain (pfam226) at the C-terminus."
+Cre04.g225850	GMM:31.4	"cell.vesicle transport"	"Secretory pathway"	"GO:0016192;GO:0016021"	"vesicle-mediated transport;integral component of membrane"	VAM3	"VAM3;Cre04.g225850.t1.1;g4937.t1;VAMP73"	VAMP3	"Expressed Protein, similar to VAMP7 R-SNAREs, involved in Golgi/PM and Golgi/endosomal trafficking; most similar to VAMP72-family of land plants; part of a 4-member gene family in Chlamydomonas all on same scaffold and in 2 tandem pairs, location and order of gene family members are syntenic in Volvox"
+Cre04.g220250	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		g4804.t1		
+Cre04.g222800	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"	Mitochondrion			LCID	"Cre04.g222800.t1.1;LCID;g4861.t1;LCID;Cre04.g222800.t1.1;g4861.t1"	"LCID1;LCID1"	"Homologous to limiting-CO2 inducible proteins LCIB and LCIC [PMID: 15235119] and to LCIE [PMID 16777959, 20660228]; part of the CAH1/2 cluster of inversely repeated CO2 responsive genes; LCID and CCP2 are located in head-to-head orientation; regulated by CCM1 [PMID 16777959];Homologous to limiting-CO2 inducible proteins LCIB and LCIC [PMID: 15235119] and to LCIE [PMID 16777959, 20660228]; part of the CAH1/2 cluster of inversely repeated CO2 responsive genes; LCID and CCP2 are located in head-to-head orientation; regulated by CCM1 [PMID 16777959]"
+Cre04.g215001							g4672.t2		
+Cre04.g214250	"GMM:33.99;GMM:32;GMM:29.2.3;GMM:27.3.36"	"development.unspecified;micro RNA, natural antisense etc;protein.synthesis.initiation;RNA.regulation of transcription.argonaute transcription factor family"		"GO:0005515;GO:0003676"	"protein binding;nucleic acid binding"	AGO2	"AGO2;g4692.t2"	AGO2	"Presumably involved in posttranscriptional gene silencing/RNA interference; more similar to other Chlamydomonas than to any plant AGO genes."
+Cre04.g221200	GMM:27.3.63	"RNA.regulation of transcription.PHD finger transcription factor"				CGL109	g4828.t1	CGL109	"null-allele mutant was isolated (PMID 29743196)"
+Cre04.g221770				GO:0005515	"protein binding"		"g4840.t1;Cre04.g221770.t1.1"		
+Cre04.g217914				GO:0005515	"protein binding"	FAP57	"g4545.t2;WDR65;Cre03.g210950.t1.1;BOP2;Cre03.g210950.t1.1;g4545.t2;WDR65;BOP2"	"FAP57;FAP57"	"Found in the flagellar proteome [PMID: 15998802]; targets assembly of a subset of inner arm dyneins;Found in the flagellar proteome [PMID: 15998802]; targets assembly of a subset of inner arm dyneins"
+Cre04.g212600			Chloroplast				"Cre04.g212600.t1.1;g4726.t1"		
+Cre04.g213761	GMM:11.9.4.5	"lipid metabolism.lipid degradation.beta-oxidation.acyl-CoA thioesterase"	Chloroplast				"Cre49.g789550.t1.1;g4492.t1;g4492.t1;Cre49.g789550.t1.1;Cre49.g789550.t1.1;g4492.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre04.g221600							"g4836.t1;Cre04.g221600.t1.1"		
+Cre04.g224002				"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"		g4888.t1		
+Cre04.g217947							"g4578.t1;Cre03.g209500.t1.1;g4578.t1;Cre03.g209500.t1.1"		
+Cre04.g215450	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		"Cre04.g215450.t1.1;g4663.t1;g4663.t1;Cre04.g215450.t1.1;Cre04.g215450.t1.1;g4663.t1;Cre04.g215450.t1.1;g4663.t1"		
+Cre04.g228850	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g5008.t1;g5008.t1;g5008.t1"		
+Cre04.g217933							"Cre03.g210000.t1.1;g4564.t1;Cre03.g210000.t1.2"		
+Cre04.g230046			"Secretory pathway"				g5037.t1		
+Cre04.g211750			Chloroplast	GO:0016021	"integral component of membrane"		"g4744.t1;g4744.t1"		
+Cre04.g217955	GMM:13.1.5.1.3	"amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoserine phosphatase"		"GO:0006564;GO:0004647"	"L-serine biosynthetic process;phosphoserine phosphatase activity"		"g4586.t1;Cre03.g209100.t1.1;PSP1;PSP1;g4586.t1;Cre03.g209100.t1.1;PSP1;Cre03.g209100.t1.1;g4586.t1"		"(EC 3.1.3.3); predicted mitochondrial targeting by Target-P; homology predicts plastid targeting. Acclimation to changing CO2 concentrations and light intensities was studied by Yamano et al. 2008 [PMID: 18322145].;(EC 3.1.3.3); predicted mitochondrial targeting by Target-P; homology predicts plastid targeting. Acclimation to changing CO2 concentrations and light intensities was studied by Yamano et al. 2008 [PMID: 18322145].;(EC 3.1.3.3); predicted mitochondrial targeting by Target-P; homology predicts plastid targeting. Acclimation to changing CO2 concentrations and light intensities was studied by Yamano et al. 2008 [PMID: 18322145]."
+Cre04.g222350							g4852.t1		
+Cre04.g217954	"GMM:34.21;GMM:30.3;GMM:3.3"	"transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols"	Chloroplast	"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"		"Cre03.g209150.t1.1;g4585.t1;g4585.t1;Cre03.g209150.t1.1;Cre03.g209150.t1.1;g4585.t1;g4585.t1;Cre03.g209150.t1.1;g4585.t1;Cre03.g209150.t1.1"		
+Cre04.g217944	GMM:29.4	"protein.postranslational modification"					"g4575.t1;Cre03.g209650.t1.1;Cre03.g209650.t1.1;g4575.t1;g4575.t1;Cre03.g209650.t1.1"		
+Cre04.g214769			Mitochondrion						
+Cre04.g217972							"Cre37.g784750.t1.2;Cre37.g784750.t1.1;g4606.t1"		
+Cre04.g228300	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"STK;g4995.t1"		
+Cre04.g224100	GMM:23.2	"nucleotide metabolism.degradation"				URN2	"g4889.t2;URN2"		
+Cre04.g212050	GMM:27.3.48	"RNA.regulation of transcription.FHA transcription factor"	"Secretory pathway"	GO:0005515	"protein binding"		g4738.t1		
+Cre04.g222700	"GMM:34.16;GMM:29.2.4;GMM:29.2.2.1"	"transport.ABC transporters and multidrug resistance systems;protein.synthesis.elongation;protein.synthesis.ribosome biogenesis.export from nucleus"		"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"Cre04.g222700.t1.1;g4859.t1;ABC4"	EF3	"ABC-E class cytosolic transporter; May transport sulfate/Fe3+/polyamines/heme"
+Cre04.g216204				GO:0046983	"protein dimerization activity"				
+Cre04.g216850	"GMM:31.1.1.2;GMM:31.1"	"cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"		"GO:0007017;GO:0005874;GO:0003924"	"microtubule-based process;microtubule;GTPase activity"	TUA2	"g4512.t1;Cre04.g216850.t1.1;g4512.t1;Cre04.g216850.t1.1"	"TUA2;TUA2"	"GI:27358004; PMID: 3855249, PMID: 3460413, PMID: 14676280;GI:27358004; PMID: 3855249, PMID: 3460413, PMID: 14676280"
+Cre04.g216500							"g4502.t1;g4502.t1;g4502.t1"		
+Cre04.g214650	GMM:3.6	"minor CHO metabolism.callose"		"GO:0016020;GO:0006075;GO:0003843;GO:0000148"	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	GSL1	"BGS5;GTR19;g4680.t1"	GSL1	"glycosyl transferase of GT48 family, possible 1,3-beta-D-glucan synthase"
+Cre04.g229450			"Secretory pathway"				g5024.t1		
+Cre04.g221050	"GMM:30.9;GMM:20.1;GMM:2.1"	"signalling.lipids;stress.biotic;major CHO metabolism.synthesis"					"g4825.t1;Cre04.g221050.t1.1;Cre04.g221050.t1.1;g4825.t1"		
+Cre04.g223450							g4876.t1		
+Cre04.g217983									
+Cre04.g231516	GMM:35.1.3	"not assigned.no ontology.armadillo/beta-catenin repeat family protein"	Mitochondrion	GO:0005515	"protein binding"		"g5052.t2;Cre32.g781550.t1.1;Cre32.g781550.t1.2;g5052.t2;Cre32.g781550.t1.2;Cre32.g781550.t1.1"		
+Cre04.g214321			"Secretory pathway"				"g4497.t1;Cre49.g789758.t1.2;Cre49.g789758.t1.1;g4497.t1;Cre49.g789758.t1.2;Cre49.g789758.t1.1;g4497.t1;Cre49.g789758.t1.2;Cre49.g789758.t1.1;Cre49.g789758.t1.2;g4497.t1;Cre49.g789758.t1.1"		
+Cre04.g227400	GMM:15.1	"metal handling.acquisition"	"Secretory pathway"	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	FRE1	"Cre04.g227400.t1.1;g4975.t1;g4975.t1;Cre04.g227400.t1.1;Cre04.g227400.t1.1;g4975.t1;g4975.t1;Cre04.g227400.t1.1;g4975.t1;Cre04.g227400.t1.1;Cre04.g227400.t1.1;g4975.t1;g4975.t1;Cre04.g227400.t1.1"	"FRE1;FRE1;FRE1;FRE1;FRE1;FRE1;FRE1"	"homolog to FRO1 in Arabidopsis; null-allele passenger mutation was isolated (PMID 29743196);homolog to FRO1 in Arabidopsis; null-allele passenger mutation was isolated (PMID 29743196);homolog to FRO1 in Arabidopsis; null-allele passenger mutation was isolated (PMID 29743196);homolog to FRO1 in Arabidopsis; null-allele passenger mutation was isolated (PMID 29743196);homolog to FRO1 in Arabidopsis; null-allele passenger mutation was isolated (PMID 29743196);homolog to FRO1 in Arabidopsis; null-allele passenger mutation was isolated (PMID 29743196);homolog to FRO1 in Arabidopsis; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre04.g215900	GMM:31.6.1.8	"cell.motility.eukaryotes.flagellar membrane proteins"	"Secretory pathway"				g4653.t1		
+Cre21.g752947							g18183.t1		
+Cre21.g753297			Chloroplast						
+Cre21.g752397									
+Cre21.g753097			Mitochondrion				g18188.t1		
+Cre21.g752997				"GO:0032775;GO:0009007;GO:0003677"	"DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding"		g18184.t1		
+Cre21.g752247									
+Cre21.g751947							g18161.t1		
+Cre21.g752147			Chloroplast						
+Cre21.g752197			Chloroplast						
+Cre21.g752597			"Secretory pathway"						
+Cre21.g752847									
+Cre21.g752447									
+Cre21.g751897			"Secretory pathway"						
+Cre21.g752547			"Secretory pathway"						
+Cre21.g753147	GMM:20.2.3	stress.abiotic.drought/salt							
+Cre21.g752497									
+Cre21.g753247			Mitochondrion						
+Cre21.g752897			Mitochondrion						
+Cre21.g752647							"Cre25.g771509.t1.2;g18176.t1;Cre25.g771509.t1.1"		
+Cre21.g753197			Mitochondrion						
+Cre21.g752797									
+Cre21.g752297			"Secretory pathway"						
+Cre21.g753047			Chloroplast						
+Cre21.g752347									
+Cre21.g751847			"Secretory pathway"						
+Cre21.g752697			Mitochondrion				"Cre25.g771550.t1.2;Cre25.g771550.t1.1;g18177.t1"		
+Cre21.g752747			Chloroplast						
+Cre21.g752097									
+Cre21.g751997			Chloroplast						
+Cre21.g752047			Mitochondrion						
+Cre12.g511400	"GMM:33.99;GMM:27.3"	"development.unspecified;RNA.regulation of transcription"				PPR4	"g12320.t1;CYCR3;g12320.t1;CYCR3;CYCR3;g12320.t1;CYCR3;g12320.t1;g12320.t1;CYCR3"	"PPR4;PPR4;PPR4;PPR4;PPR4"	"PentatricoPeptide Repeat protein with a SmR-like and a cyclin domain; 9 PPR repeats;PentatricoPeptide Repeat protein with a SmR-like and a cyclin domain; 9 PPR repeats;PentatricoPeptide Repeat protein with a SmR-like and a cyclin domain; 9 PPR repeats;PentatricoPeptide Repeat protein with a SmR-like and a cyclin domain; 9 PPR repeats;PentatricoPeptide Repeat protein with a SmR-like and a cyclin domain; 9 PPR repeats"
+Cre12.g526131				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g498950							"g12606.t1;Cre12.g498950.t1.1;Cre12.g498950.t1.1;g12606.t1;Cre12.g498950.t1.1;g12606.t1"		
+Cre12.g497350						PPR13	"g12638.t1;g12638.t1;g12638.t1"	"PPR13;PPR13;PPR13"	
+Cre12.g500850							"g12559.t1;g12559.t1"		
+Cre12.g544752							"Cre27.g774600.t1.2;g13794.t1;Cre27.g774600.t1.1"		
+Cre12.g546300			Mitochondrion	GO:0019905	"syntaxin binding"		"g13629.t1;Cre12.g546300.t1.1"		
+Cre12.g521450	GMM:29.5.5	"protein.degradation.serine protease"				CLPP2	"g12846.t1;g12846.t1"	"CLPP2;CLPP2"	
+Cre12.g497652	GMM:26.11.1	"misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase"		"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"		g12633.t1		
+Cre12.g505750	GMM:27.2	RNA.transcription		"GO:0008270;GO:0006351;GO:0003899;GO:0003677;GO:0003676"	"zinc ion binding;transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding;nucleic acid binding"	RPB9	"Cre12.g505750.t1.1;g12452.t1;RPB9"	RPB9	"RNA Polymerase II subunit 14.5 kD, putative [EC:2.7.7.6]"
+Cre12.g543303	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"	Chloroplast	"GO:0008270;GO:0005634"	"zinc ion binding;nucleus"	CGLD6	"Cre12.g543150.t2.1;g13706.t1;CGLD20;g13706.t1;CGLD20;Cre12.g543150.t2.1;Cre12.g543150.t2.1;g13706.t1;CGLD20;g13706.t1;CGLD20;Cre12.g543150.t2.1;Cre12.g543150.t2.1;CGLD20;g13706.t1"	"CGLD6;CGLD6;CGLD6;CGLD6;CGLD6"	"Conserved in the Green Lineage and Diatoms;Conserved in the Green Lineage and Diatoms;Conserved in the Green Lineage and Diatoms;Conserved in the Green Lineage and Diatoms;Conserved in the Green Lineage and Diatoms"
+Cre12.g554300	GMM:991.1	"Mineral Nutrition.phosphatie"				NSS6	"NSS6;g13447.t1"		
+Cre12.g528200	GMM:28.1	"DNA.synthesis/chromatin structure"					"g13008.t1;g13008.t1;g13008.t1;g13008.t1;g13008.t1"		
+Cre12.g513400	"GMM:20.1;GMM:2.1"	"stress.biotic;major CHO metabolism.synthesis"		"GO:0052862;GO:0052861;GO:0016998"	"glucan endo-1,4-beta-glucanase activity, C-3 substituted reducing group;glucan endo-1,3-beta-glucanase activity, C-3 substituted reducing group;cell wall macromolecule catabolic process"	EBG1	"g12675.t1;EBG1"	EBG1	
+Cre12.g542450	"GMM:28.1;GMM:27.3.11;GMM:27.1.2"	"DNA.synthesis/chromatin structure;RNA.regulation of transcription.C2H2 zinc finger family;RNA.processing.RNA helicase"	Chloroplast				"g13723.t1;Cre12.g542450.t1.1;g13723.t1;Cre12.g542450.t1.1"		"AAA+ domain;AAA+ domain"
+Cre12.g526326			Chloroplast	"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"		"g12958.t1;g12958.t1;g12958.t1;g12958.t1;g12958.t1;g12958.t1;g12958.t1;g12958.t1"		
+Cre12.g526883			"Secretory pathway"	GO:0008270	"zinc ion binding"		"Cre12.g526900.t2.1;g12982.t2"		
+Cre12.g511650	"GMM:31.4;GMM:20.2.5"	"cell.vesicle transport;stress.abiotic.light"					"g12316.t1;g12316.t1;g12316.t1"		
+Cre12.g507700							g12404.t1		
+Cre12.g509050	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"	PSBP3	"PPL1;g12371.t1"	PSBP3	"Similar to PSBP (oxygen-evolving enhancer protein 2, OEC23); precursor of chloroplast-localized protein, directed to thylakoid lumen by a TAT signal; orthologous to Arabidopsis PPL1, involved in assembly of photoinhibition and PSII repair; the Cyanobacterial ortholog CyanoP binds to the lumenal side;"
+Cre12.g486850			Chloroplast				g12254.t1		
+Cre12.g487850	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	CGL49	"ARL11;g12230.t1;Cre12.g487850.t1.1"	CGL49	"Conserved in the Green Lineage"
+Cre12.g559553							g13332.t1		
+Cre12.g508750	GMM:1.1.2.1	"PS.lightreaction.photosystem I.LHC-I"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCA2	"g12378.t1;Cre12.g508750.t1.1;g12378.t1;Cre12.g508750.t1.1"	"LHCA2;LHCA2"	"Green algal-specific LHCI protein that forms a clade with Lhca9 (Koziol et al. 2007);Green algal-specific LHCI protein that forms a clade with Lhca9 (Koziol et al. 2007)"
+Cre12.g510800	"GMM:19.10;GMM:19.1"	"tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase"	Chloroplast	"GO:0016851;GO:0015995;GO:0015979"	"magnesium chelatase activity;chlorophyll biosynthetic process;photosynthesis"	CHLI2	"g12332.t1;CHLI2;Cre12.g510800.t1.1"	CHLI2	"Magnesium-chelatase subunit chlI, chloroplast precursor (Mg-protoporphyrin IX chelatase); Orthologous to the bacterial magnesium chelatase subunits BchI, and other plant magnesium chelatase subunits ChlI [PMID: 9359397]; Activates and phosphorylates a histidine on CHLD to activate magnesium chelatase activity and is unable to replace CHLI1 subunit in the magnesium chelatase reaction [PMID: 28487379]; chloroplast targeting signal peptide predicted 1-37 by ChloroP."
+Cre12.g547450	GMM:29.3.4.3	"protein.targeting.secretory pathway.vacuole"				VPS9	"VPS9;g13603.t1;Cre12.g547450.t1.1;Cre12.g547450.t1.1;g13603.t1;VPS9"	"VPS9;VPS9"	"Conserved Protein. Similar to VPS9, a guanine nucleotide exchange factor involved in vesicle-mediated vacuolar protein transport; null-allele mutant was isolated;Conserved Protein. Similar to VPS9, a guanine nucleotide exchange factor involved in vesicle-mediated vacuolar protein transport; null-allele mutant was isolated"
+Cre12.g544327			Mitochondrion	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"		"Cre27.g774550.t2.1;g13793.t2;Cre27.g774550.t2.1;g13793.t2"		
+Cre12.g552350			"Secretory pathway"				g13491.t1		
+Cre12.g560668	"GMM:31.3;GMM:30.6;GMM:29.4"	"cell.cycle;signalling.MAP kinases;protein.postranslational modification"					"g13305.t1;Cre12.g560668.t1.1;g13305.t1;Cre12.g560668.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g532550	"GMM:29.2.1.2.2.513;GMM:29.2.1.2.2.0513"	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L13A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L13A"		"GO:0015934;GO:0006412;GO:0005840;GO:0003735"	"large ribosomal subunit;translation;ribosome;structural constituent of ribosome"	RPL13A	"g13103.t1;RPL13a"	RPL13A	"Cytosolic 60S large ribosomal subunit protein L13a"
+Cre12.g538700			Chloroplast			CPLD62	"g13245.t1;Cre12.g538700.t1.1;g13245.t1;Cre12.g538700.t1.1"	"CPLD62;CPLD62"	
+Cre12.g537300							"g13212.t1;Cre12.g537300.t1.1"		
+Cre12.g516750	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g12746.t1;g12746.t1;g12746.t1"		
+Cre12.g525400	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	PTK15	"PTK15;g12930.t1;g12930.t1;PTK15;PTK15;g12930.t1;g12930.t1;PTK15;g12930.t1;PTK15;PTK15;g12930.t1;PTK15;g12930.t1;PTK15;g12930.t1;PTK15;g12930.t1;PTK15;g12930.t1"		"Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329);Putative protein tyrosine kinase identified through multi-level HMM library for kinase classification (PMID: 17557329)"
+Cre12.g512950			Mitochondrion	"GO:0015703;GO:0015109"	"chromate transport;chromate transmembrane transporter activity"	CIT1	"g12667.t1;Cre12.g512950.t1.1;CIT1"		
+Cre12.g494400	"GMM:29.8;GMM:18.7"	"protein.assembly and cofactor ligation;Co-factor and vitamine metabolism.iron-sulphur clusters"				MNP2	"MNP2;Cre12.g494400.t1.1;g12060.t1"	MNP2	"ATP-binding protein, MRP/NBP35 family, N-terminal iron-sulfur binding sequence. Similar to S. cerevisiae Nbp35, an essential protein required for cytosolic iron-sulfur protein assembly; MNP = MRP/NBP35-like P-loop NTPase; MRP2 is predicted to function in the cytosol."
+Cre12.g556911	GMM:28.2	DNA.repair		"GO:0030145;GO:0016787;GO:0006302;GO:0006259;GO:0005634;GO:0004527;GO:0004519"	"manganese ion binding;hydrolase activity;double-strand break repair;DNA metabolic process;nucleus;exonuclease activity;endonuclease activity"		g13391.t1	MRE11	
+Cre12.g540927	GMM:28.1	"DNA.synthesis/chromatin structure"	"Secretory pathway"	"GO:0016887;GO:0006260;GO:0005524;GO:0003677"	"ATPase activity;DNA replication;ATP binding;DNA binding"		"g13785.t1;g13785.t1;g13785.t1;g13785.t1"		
+Cre12.g510100	GMM:29.5.2	protein.degradation.autophagy	Mitochondrion			ATG4	"APG4;g12348.t1"	ATG4	"Conserved cysteine protease required for autophagy; cleaves Atg8p to a form required for autophagosome generation"
+Cre12.g544450	"GMM:34.16;GMM:31.6.1.10"	"transport.ABC transporters and multidrug resistance systems;cell.motility.eukaryotes.flagellar associated proteins"	"Secretory pathway"			CSE20	"Cre12.g544450.t1.1;g13673.t1;CSE20"		"Belongs to family E of Chlamydomonadale-specific proteins, found in clusters, mostly on chromosome 8 and carrying two Ser/Pro-rich domains; function unknown but members have been found in the flagellar proteome"
+Cre12.g517600	"GMM:30.2.18;GMM:29.4.1.59;GMM:29.4.1.57;GMM:29.4;GMM:20.1"	"signalling.receptor kinases.extensin;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification;stress.biotic"					"g12763.t1;Cre12.g517600.t1.1;Cre12.g517600.t1.1;g12763.t1"		
+Cre12.g555100							"Cre12.g555100.t1.1;g13431.t1;Cre12.g555100.t1.1;g13431.t1"		
+Cre12.g517950			Mitochondrion				g12772.t1		
+Cre12.g539200									
+Cre12.g525500	GMM:31.1	cell.organisation	Chloroplast	"GO:0005815;GO:0000922;GO:0000226"	"microtubule organizing center;spindle pole;microtubule cytoskeleton organization"	GCP2	"GCP2;g12932.t1;g12932.t1;GCP2;GCP2;g12932.t1;g12932.t1;GCP2"	"GCP2;GCP2;GCP2;GCP2"	"Gamma tubulin ring complex protein 2; SPC97/DGRIP84 Identified by similarity to other homologs; ts-lethal mutation blocks at S/M (PMID 29743196);Gamma tubulin ring complex protein 2; SPC97/DGRIP84 Identified by similarity to other homologs; ts-lethal mutation blocks at S/M (PMID 29743196);Gamma tubulin ring complex protein 2; SPC97/DGRIP84 Identified by similarity to other homologs; ts-lethal mutation blocks at S/M (PMID 29743196);Gamma tubulin ring complex protein 2; SPC97/DGRIP84 Identified by similarity to other homologs; ts-lethal mutation blocks at S/M (PMID 29743196)"
+Cre12.g561601									
+Cre12.g500000							g12577.t1		
+Cre12.g500100			"Secretory pathway"				"g12574.t1;Cre12.g500100.t1.1"		
+Cre12.g492050							"Cre12.g492050.t1.1;g12111.t1"		
+Cre12.g516700									
+Cre12.g517800	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	"zinc ion binding"		"g12768.t1;Cre12.g517800.t1.1;Cre12.g517800.t1.1;g12768.t1"		
+Cre12.g498550	GMM:19.11	"tetrapyrrole synthesis.magnesium protoporphyrin IX methyltransferase"	Chloroplast			CHLM	"CHLM;g12614.t1;MPM1;MPM1;g12614.t1;CHLM"	"CHLM1;CHLM1"	"Magnesium protoporphyrin IX S-adenosyl methionine O-methyl transferase, chloroplast precursor (Magnesium-protoporphyrin IX methyltransferase) (PPMT); Magnesium-protoporphyrin O-methyltransferase (chlM) [PMID: 12828371; PMID: 12489983; PMID: 4436384]; ChloroP 1.1 predicts chloroplast location;Magnesium protoporphyrin IX S-adenosyl methionine O-methyl transferase, chloroplast precursor (Magnesium-protoporphyrin IX methyltransferase) (PPMT); Magnesium-protoporphyrin O-methyltransferase (chlM) [PMID: 12828371; PMID: 12489983; PMID: 4436384]; ChloroP 1.1 predicts chloroplast location"
+Cre12.g544110									
+Cre12.g487750			Mitochondrion				"g12232.t1;Cre12.g487750.t1.1"		
+Cre12.g538750	GMM:27.1	RNA.processing				LSM1	"LSM1;g13246.t1;Cre12.g538750.t1.1"	LSM1	"gi 15373175 gb BI532601.1 BI532601, putative U6 snRNA-associated Sm-like protein LSm1, RNA cap binding; (SMP6d)"
+Cre12.g537371			"Secretory pathway"						
+Cre12.g511700	"GMM:16.1.2.8;GMM:16.1.1.10"	"secondary metabolism.isoprenoids.mevalonate pathway.geranyl diphosphate synthase;secondary metabolism.isoprenoids.non-mevalonate pathway.geranylgeranyl pyrophosphate synthase"	Mitochondrion	GO:0008299	"isoprenoid biosynthetic process"		"Cre12.g511700.t1.1;g12315.t1;Cre12.g511700.t1.1;g12315.t1"		
+Cre12.g553252			Mitochondrion				"Cre12.g553150.t1.2;g13473.t1;g13473.t1;Cre12.g553150.t1.2"		
+Cre12.g495950							g12140.t1		
+Cre12.g503000	"GMM:34.98;GMM:34.9"	"transport.membrane system unknown;transport.metabolite transporters at the mitochondrial membrane"		"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	GPT3	"Cre12.g503000.t1.1;GPT3;GLPT1;g12510.t1;Cre12.g503000.t1.1;GPT3;g12510.t1;GLPT1;GPT3;Cre12.g503000.t1.1;g12510.t1;GLPT1"	"GPT3;GPT3;GPT3"	"possible glycerol-3-phosphate transporter;possible glycerol-3-phosphate transporter;possible glycerol-3-phosphate transporter"
+Cre12.g503450			"Secretory pathway"	GO:0005515	"protein binding"		"Cre12.g503450.t1.1;g12501.t1;g12501.t1;Cre12.g503450.t1.1"		
+Cre12.g551500	GMM:29.9	protein.co-chaperones	Cytosol			DNJ14	"g13513.t1;DNJ14"	MDJ1A	"DnaJ-like protein; Contains N-terminal J-domain (pfam226) and DnaJ C-ter domain (pfam1556); Orthologous to gametophytic factor 2 (GFA2) AT5G48030 in Arabidopsis thaliana, which is most similar to Mdj1p in Saccharomyces cerevisiae, a chaperone in the mitochondrial matrix; Predicted to be targeted to the mitochondria;"
+Cre12.g542850	GMM:15.3	"metal handling.regulation"		"GO:0055114;GO:0010309"	"oxidation-reduction process;acireductone dioxygenase [iron(II)-requiring] activity"	ARD1	"Cre12.g542850.t1.1;ARD1;g13712.t1"	ARD1	"Aci-reductone dioxygenase involved in the methionine salvage pathway; homologue of human MTCBP-1, yeast ADI1, and ARD proteins in Arabidopsis"
+Cre12.g523800							g12897.t1		
+Cre12.g502100							g12531.t1		
+Cre12.g553950			"Secretory pathway"				g13454.t1		
+Cre12.g548702									
+Cre12.g520550	GMM:29.3.1	protein.targeting.nucleus		"GO:0008536;GO:0006886"	"Ran GTPase binding;intracellular protein transport"	TRN1	"g12826.t1;Cre12.g520550.t1.1;TRN1;Cre12.g520550.t1.1;TRN1;g12826.t1"	"TRN1;TRN1"	"Similar to transportin, a member of the importin beta superfamily;Similar to transportin, a member of the importin beta superfamily"
+Cre12.g550850	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509"	"extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding"	PSBP1	"OEC23;g13528.t1;OEE2;Cre12.g550850.t1.1;OEC23;g13528.t1;OEE2;Cre12.g550850.t1.1"	"PSBP1;PSBP1"	"Chloroplast precursor (OEE2) (23 kDa subunit of oxygen evolving complex of photosystem II) (OEC 23 kDa subunit) (23 kDa thylakoid membrane protein) (OEC23);PMID: 3468511; targeted to thylakoid lumen by TAT pathway;Chloroplast precursor (OEE2) (23 kDa subunit of oxygen evolving complex of photosystem II) (OEC 23 kDa subunit) (23 kDa thylakoid membrane protein) (OEC23);PMID: 3468511; targeted to thylakoid lumen by TAT pathway"
+Cre12.g558352									
+Cre12.g505400	GMM:19.99	"tetrapyrrole synthesis.unspecified"		"GO:0016042;GO:0003847"	"lipid catabolic process;1-alkyl-2-acetylglycerophosphocholine esterase activity"		"Cre12.g505400.t1.1;g12459.t1;Cre12.g505400.t1.1;g12459.t1;Cre12.g505400.t1.1;g12459.t1"		"Related to platelet-activating factor acetylhydrolase, plasma/intracellular isoform II;Related to platelet-activating factor acetylhydrolase, plasma/intracellular isoform II;Related to platelet-activating factor acetylhydrolase, plasma/intracellular isoform II"
+Cre12.g519180	GMM:29.2.4	protein.synthesis.elongation	Chloroplast	"GO:0006414;GO:0005622;GO:0003746;GO:0003676"	"translational elongation;intracellular;translation elongation factor activity;nucleic acid binding"	EFT1a	"Cre12.g519200.t4.1;g12799.t3;EFT1a;EFT1"	PSRP7	"Polyprotein of EF-Ts; Chloroplast small ribosomal subunit protein PSRP-7 and elongation factor Ts are encoded in this single transcript"
+Cre12.g530200									
+Cre12.g492300	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"		"GO:0055114;GO:0051536"	"oxidation-reduction process;iron-sulfur cluster binding"	NUO10	"Cre12.g492300.t1.1;g12105.t1;Cre12.g492300.t1.1;g12105.t1"	"NUO10;NUO10"	"NADH:ubiquinone oxidoreductase (Complex I) subunit 10, mitochondrial; PSST-like protein; Ortholog of NDUFS7 in Homo sapiens;NADH:ubiquinone oxidoreductase (Complex I) subunit 10, mitochondrial; PSST-like protein; Ortholog of NDUFS7 in Homo sapiens"
+Cre12.g557450	GMM:28.2	DNA.repair	Mitochondrion				"g13380.t1;Cre12.g557450.t1.1"		
+Cre12.g513300						CGL23	"Cre12.g513300.t1.1;g12673.t1"	CGL23	
+Cre12.g516333			Chloroplast	GO:0003677	"DNA binding"		"Cre12.g516333.t1.1;g12736.t1;g12736.t1;Cre12.g516333.t1.1;g12736.t1;Cre12.g516333.t1.1"		
+Cre12.g531100	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		"GO:0051603;GO:0005839;GO:0004298"	"proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity"	PBA2	"g13072.t1;Cre12.g531100.t1.1;PBA2;Cre12.g531100.t1.1;g13072.t1;PBA2;PBA2;g13072.t1;Cre12.g531100.t1.1"	"PBA2;PBA2;PBA2"	"20S proteasome beta subunit A2 (beta 1), (PRE3) (PSMB6) (PSMB9), peptidylglutamyl hydrolyzing activity;20S proteasome beta subunit A2 (beta 1), (PRE3) (PSMB6) (PSMB9), peptidylglutamyl hydrolyzing activity;20S proteasome beta subunit A2 (beta 1), (PRE3) (PSMB6) (PSMB9), peptidylglutamyl hydrolyzing activity"
+Cre12.g506400							"g12441.t1;Cre12.g506400.t1.1;Cre12.g506400.t1.1;g12441.t1"		
+Cre12.g544802			Chloroplast						
+Cre12.g555350	"GMM:31.4;GMM:29.3.4.1"	"cell.vesicle transport;protein.targeting.secretory pathway.ER"	"Secretory pathway"	GO:0016021	"integral component of membrane"	RER1	"RER1;Cre12.g555350.t1.1;g13425.t1;RER1;Cre12.g555350.t1.1;g13425.t1"	"RER1;RER1"	"Expressed protein. Conserved protein similar to RER1 proteins involved in ER retention.;Expressed protein. Conserved protein similar to RER1 proteins involved in ER retention."
+Cre12.g487601			Chloroplast				g12237.t1		
+Cre12.g554100			Chloroplast				"g13451.t1;g13451.t1"		
+Cre12.g535550							g13173.t1		
+Cre12.g549852	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"		"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"Cre27.g775000.t1.2;g13806.t1;Cre27.g775000.t1.1"		
+Cre12.g488600	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion	"GO:0006810;GO:0005215"	"transport;transporter activity"		"g12213.t1;g12213.t1"		
+Cre12.g536050	"GMM:34.99;GMM:34.1;GMM:27.3.35"	"transport.misc;transport.p- and v-ATPases;RNA.regulation of transcription.bZIP transcription factor family"		"GO:0046872;GO:0016021;GO:0015914;GO:0005524;GO:0004012;GO:0000287;GO:0000166"	"metal ion binding;integral component of membrane;phospholipid transport;ATP binding;phospholipid-translocating ATPase activity;magnesium ion binding;nucleotide binding"	ALA1	"Cre12.g536050.t1.1;ALA1;g13183.t1;ALA1;g13183.t1;Cre12.g536050.t1.1"	"ALA1;ALA1"	"P-type ATPase; putative phospholipid-transporting ATPase (Aminophospholipid flippase); Adjacent to ALA2 (Cre12.g536000);P-type ATPase; putative phospholipid-transporting ATPase (Aminophospholipid flippase); Adjacent to ALA2 (Cre12.g536000)"
+Cre12.g508550	GMM:18.4.2	"Co-factor and vitamine metabolism.pantothenate.3-methyl-2-oxobutanoate hydroxymethyltransferase (KPHMT,PANB)"	Chloroplast	"GO:0015940;GO:0003864"	"pantothenate biosynthetic process;3-methyl-2-oxobutanoate hydroxymethyltransferase activity"	PAN2	"PANB;g12384.t1;PANB1;PAN2"	PAN2	"3-methyl-2-oxobutanoate hydroxymethyltransferase, KPHMT, the first enzyme in the pantothenate biosynthesis pathway"
+Cre12.g546450			Mitochondrion	GO:0043087	"regulation of GTPase activity"		"g13626.t1;g13626.t1;g13626.t1;g13626.t1;g13626.t1;g13626.t1;g13626.t1"		
+Cre12.g535300							"g13167.t1;g13167.t1;g13167.t1"		
+Cre12.g530500			Chloroplast						
+Cre12.g552150	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0005524;GO:0005515;GO:0004672"	"protein phosphorylation;ATP binding;protein binding;protein kinase activity"		g13495.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g537150			"Secretory pathway"				"Cre12.g537150.t1.1;g13208.t1"		
+Cre12.g519900	GMM:33.99	development.unspecified	Chloroplast	"GO:0016874;GO:0009058;GO:0005524"	"ligase activity;biosynthetic process;ATP binding"		"g12811.t1;Cre12.g519900.t1.1;Cre12.g519900.t1.1;g12811.t1"		
+Cre12.g553678			Chloroplast				"g13815.t1;Cre27.g775450.t1.1"		
+Cre12.g486650							"Cre12.g486650.t1.1;g12259.t1;Cre12.g486650.t1.1;g12259.t1;Cre12.g486650.t1.1;g12259.t1;Cre12.g486650.t1.1;g12259.t1"		
+Cre12.g502350	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL50	"HEL50;g12524.t1"		
+Cre12.g494450	GMM:29.2.1.1.1.1.16	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S16"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPS16	"Cre12.g494450.t1.1;g12059.t1"	PRPS16	"imported to chloroplast; Chloroplast small ribosomal subunit protein S16"
+Cre12.g504302									
+Cre12.g530934							"g13068.t1;Cre12.g530934.t1.1"		
+Cre12.g546800			Mitochondrion			PHC53	"PHC53;g13618.t1"		
+Cre12.g548250	GMM:27.3.48	"RNA.regulation of transcription.FHA transcription factor"		GO:0005515	"protein binding"		"g13586.t1;g13586.t1;g13586.t1"		
+Cre12.g541550							"g13743.t1;Cre12.g541550.t1.1"		
+Cre12.g537800	GMM:29.2.1.2.2.7	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7"				RPL7	"Cre12.g537800.t1.1;g13225.t1;Cre12.g537800.t1.1;g13225.t1"	"RPL7;RPL7"	"Cytosolic 60S large ribosomal subunit protein L7;Cytosolic 60S large ribosomal subunit protein L7"
+Cre12.g514600			Chloroplast	"GO:0016772;GO:0005524"	"transferase activity, transferring phosphorus-containing groups;ATP binding"		"g12699.t1;g12699.t1;g12699.t1"		
+Cre12.g513701	"GMM:29.2.3;GMM:29.2.2.3.5;GMM:29.2.2.2.1;GMM:28.1"	"protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;protein.synthesis.ribosome biogenesis.assembly factors.DExD-box helicases;DNA.synthesis/chromatin structure"		"GO:0016818;GO:0016787;GO:0005634;GO:0005524;GO:0003723;GO:0003677"	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;hydrolase activity;nucleus;ATP binding;RNA binding;DNA binding"				
+Cre12.g533500			"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"Cre12.g533500.t1.1;g13124.t1;Cre12.g533500.t1.1;g13124.t1"		
+Cre12.g509850	GMM:31.9	cell.eyespot				MLT1	"g12354.t1;MLT1;PTX4;MLT1;PTX4;g12354.t1;PTX4;MLT1;g12354.t1;PTX4;MLT1;g12354.t1;PTX4;MLT1;g12354.t1;g12354.t1;MLT1;PTX4"	"MLT1;MLT1;MLT1;MLT1;MLT1;MLT1"	"Low complexity protein required for eyespot localization; mlt1 mutant cells have multiple eyespots; protein localizes along the D4 rootlet microtubules;Low complexity protein required for eyespot localization; mlt1 mutant cells have multiple eyespots; protein localizes along the D4 rootlet microtubules;Low complexity protein required for eyespot localization; mlt1 mutant cells have multiple eyespots; protein localizes along the D4 rootlet microtubules;Low complexity protein required for eyespot localization; mlt1 mutant cells have multiple eyespots; protein localizes along the D4 rootlet microtubules;Low complexity protein required for eyespot localization; mlt1 mutant cells have multiple eyespots; protein localizes along the D4 rootlet microtubules;Low complexity protein required for eyespot localization; mlt1 mutant cells have multiple eyespots; protein localizes along the D4 rootlet microtubules"
+Cre12.g495850	"GMM:26.8;GMM:26.22;GMM:11.1.4"	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;misc.short chain dehydrogenase/reductase (SDR);lipid metabolism.FA synthesis and FA elongation.ACP oxoacyl reductase"	Mitochondrion			HBD1	"Cre12.g495850.t1.1;g12138.t1;HBD1"	HBD1	
+Cre12.g539202			"Secretory pathway"						
+Cre12.g518150							"g12779.t1;FAL17"		"homologs in Volvox carteri"
+Cre12.g514200	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Chloroplast	"GO:0055114;GO:0050660;GO:0016614"	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity, acting on CH-OH group of donors"		"g12691.t1;Cre12.g514200.t1.1;g12691.t1;Cre12.g514200.t1.1;g12691.t1;Cre12.g514200.t1.1;Cre12.g514200.t1.1;g12691.t1;Cre12.g514200.t1.1;g12691.t1;g12691.t1;Cre12.g514200.t1.1"		
+Cre12.g523550						UMM11	"UMM11;g12892.t1"		
+Cre12.g534250			Chloroplast				"Cre12.g534250.t1.1;g13139.t1"		
+Cre12.g493400	GMM:31.2	cell.division		"GO:0051276;GO:0005694;GO:0005524;GO:0005515"	"chromosome organization;chromosome;ATP binding;protein binding"	SMC4	"g12082.t1;g12082.t1"	"SMC4;SMC4"	"Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. ChromoDB CPC341; ts-lethal mutant block at S/M (PMID 29743196);Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation. ChromoDB CPC341; ts-lethal mutant block at S/M (PMID 29743196)"
+Cre12.g518300							"SPL25;g12781.t1;Cre12.g518300.t1.1"		"Pre-mRNA splicing factor, related to Cwf18, may be part of the splicesome"
+Cre12.g557928			"Secretory pathway"				"g13825.t1;Cre27.g775950.t1.1"		
+Cre12.g531400	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"	Mitochondrion	"GO:0090090;GO:0031513;GO:0005856;GO:0005515"	"negative regulation of canonical Wnt signaling pathway;nonmotile primary cilium;cytoskeleton;protein binding"	NPHP4	"NPH4;g13078.t1;NPHP4;g13078.t1;NPH4;NPHP4;NPH4;g13078.t1;NPHP4;NPHP4;g13078.t1;NPH4;NPH4;g13078.t1;NPHP4;NPH4;g13078.t1;NPHP4"	"POC10;POC10;POC10;POC10;POC10;POC10"	"Found in basal body proteome; Mammalian homolog is NPHP-4, also known as nephroretinin, gene mutated in Senior-Loken syndrome;Found in basal body proteome; Mammalian homolog is NPHP-4, also known as nephroretinin, gene mutated in Senior-Loken syndrome;Found in basal body proteome; Mammalian homolog is NPHP-4, also known as nephroretinin, gene mutated in Senior-Loken syndrome;Found in basal body proteome; Mammalian homolog is NPHP-4, also known as nephroretinin, gene mutated in Senior-Loken syndrome;Found in basal body proteome; Mammalian homolog is NPHP-4, also known as nephroretinin, gene mutated in Senior-Loken syndrome;Found in basal body proteome; Mammalian homolog is NPHP-4, also known as nephroretinin, gene mutated in Senior-Loken syndrome"
+Cre12.g527450						CAM17	"g12993.t1;Cre12.g527450.t1.1;CAM17"		
+Cre12.g526515									
+Cre12.g534750			Mitochondrion				"g13151.t1;g13151.t1;g13151.t1"		
+Cre12.g539900	GMM:13.2.4.1	"amino acid metabolism.degradation.branched chain group.shared"	Mitochondrion	"GO:0016624;GO:0008152"	"oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor;metabolic process"		g13777.t1		
+Cre12.g527500	"GMM:33.99;GMM:27.3.55;GMM:20.2.2"	"development.unspecified;RNA.regulation of transcription.HDA;stress.abiotic.cold"		GO:0005515	"protein binding"		"g12994.t1;Cre12.g527500.t1.1;Cre12.g527500.t1.1;g12994.t1;Cre12.g527500.t1.1;g12994.t1"		
+Cre12.g559350	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"					"SDR23;Cre12.g559350.t1.1;g13337.t1;Cre12.g559350.t1.1;g13337.t1;SDR23;g13337.t1;Cre12.g559350.t1.1;SDR23;SDR23;g13337.t1;Cre12.g559350.t1.1"		
+Cre12.g501717									
+Cre12.g534450			Chloroplast	GO:0005515	"protein binding"	CGL86	g13144.t1	CGL86	"Conserved in the Green Lineage"
+Cre12.g518350	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG18	"CYG18;g12782.t1"		"Protein has potential GAF domain and C-terminal domain similar to guanylyl cyclase family member (gcy-38) [Caenorhabditis elegans]; null-allele mutant was isolated (PMID 29743196)"
+Cre12.g521900			Chloroplast				g12855.t1		
+Cre12.g484750			Chloroplast	"GO:0047746;GO:0015996"	"chlorophyllase activity;chlorophyll catabolic process"		"g12031.t1;CLH2;CLH2;g12031.t1"		
+Cre12.g531550	GMM:29.2.3	protein.synthesis.initiation		"GO:0006413;GO:0003743"	"translational initiation;translation initiation factor activity"	EIF5B3	"EIF5Bd;EIF2B;g13081.t1;Cre12.g531550.t1.1;EIF5B3"	EIF5B3	"putative translation initiation factor eIF-2 beta chain; IF5 family member"
+Cre12.g557050			Mitochondrion	GO:0016020	membrane	YGG2	"g13387.t1;Cre12.g557050.t1.1;YGG2"	CPLD8	
+Cre12.g495550						FAP385	"g12132.t1;Cre12.g495550.t1.1"	FAP385	"Cr specific protein"
+Cre12.g489600			Chloroplast	GO:0003676	"nucleic acid binding"		"g12193.t1;g12193.t1"		
+Cre12.g533000	GMM:28.2	DNA.repair		"GO:0006281;GO:0003904"	"DNA repair;deoxyribodipyrimidine photo-lyase activity"	PHR1	"Cre12.g533000.t1.1;g13113.t1;PHR2"	PHR1	"CPD photolyase type II (Deoxyribodipyrimidine photolyase class 2)"
+Cre12.g498000			Mitochondrion				g12625.t2		
+Cre12.g536650							"Cre12.g536650.t1.1;g13196.t1;Cre12.g536650.t1.1;g13196.t1;g13196.t1;Cre12.g536650.t1.1;Cre12.g536650.t1.1;g13196.t1"		
+Cre12.g535650							"Cre12.g535650.t1.1;g13175.t1"		
+Cre12.g523276			"Secretory pathway"						
+Cre12.g527750	GMM:31.6.1.4.1	"cell.motility.eukaryotes.axonemal dyneins.outer arm"				DLT2	"Tctex2;ODA-LC2;ODA12;LC2;DLC2;Cre12.g527750.t1.1;g12999.t1"	DLT2	"LC2 component of outer arm dynein; Tctex2 homolog; the oda12 mutant is discussed in relation to LC1 by Tanner et al. 28 [PMID: 18579685]"
+Cre12.g487350						CEP19	"Cre12.g487350.t1.1;g12242.t1"	CEP19	"null-allele mutant was isolated (PMID 29743196); RABL2-binding protein"
+Cre12.g545900	GMM:3.6	"minor CHO metabolism.callose"					"MAPKKK9;Cre12.g545900.t1.1;g13637.t1"		
+Cre12.g484834									
+Cre12.g485900							"Cre12.g485900.t1.1;g12279.t1"		
+Cre12.g502600			"Secretory pathway"	"GO:0055085;GO:0016020;GO:0008324;GO:0006814;GO:0006813;GO:0005215"	"transmembrane transport;membrane;cation transmembrane transporter activity;sodium ion transport;potassium ion transport;transporter activity"	SLT1	"g12519.t1;Cre12.g502600.t1.1"	SLT1	"SAC1-like transporter 1, putative sodium/sulfate co-transporter, transcript is up-regulated during sulfur-deprivation; related to the SAC1 protein which regulates sulfur-deficiency responses [PMID: 16307308]"
+Cre12.g532450	"GMM:3.5;GMM:10.1.4"	"minor CHO metabolism.others;cell wall.precursor synthesis.UGD"		"GO:0055114;GO:0051287;GO:0016616;GO:0003979"	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;UDP-glucose 6-dehydrogenase activity"		"Cre12.g532450.t1.1;g13101.t1;Cre12.g532450.t1.1;g13101.t1"		
+Cre12.g532000							g13090.t1		
+Cre12.g560450							g13310.t1		
+Cre12.g540480			Chloroplast						
+Cre12.g514700	GMM:28.2	DNA.repair					"PPH;g12701.t1;Cre12.g514700.t1.1;PPH;g12701.t1;Cre12.g514700.t1.1;Cre12.g514700.t1.1;PPH;g12701.t1;PPH;g12701.t1;Cre12.g514700.t1.1"	"PPHC1;PPHC1;PPHC1;PPHC1"	"Pheophytin pheophorbide hydrolase; Converts pheophytin a to pheophorbide a and phytol, the third step of chlorophyll degradation; Orthologous to PPH/CRN1 (AT5G13800) in Arabidopsis thaliana;;Pheophytin pheophorbide hydrolase; Converts pheophytin a to pheophorbide a and phytol, the third step of chlorophyll degradation; Orthologous to PPH/CRN1 (AT5G13800) in Arabidopsis thaliana;;Pheophytin pheophorbide hydrolase; Converts pheophytin a to pheophorbide a and phytol, the third step of chlorophyll degradation; Orthologous to PPH/CRN1 (AT5G13800) in Arabidopsis thaliana;;Pheophytin pheophorbide hydrolase; Converts pheophytin a to pheophorbide a and phytol, the third step of chlorophyll degradation; Orthologous to PPH/CRN1 (AT5G13800) in Arabidopsis thaliana;"
+Cre12.g547950							"g13593.t1;Cre12.g547950.t1.1"		
+Cre12.g492700			Mitochondrion			FAS1	"FAS1;Cre12.g492700.t1.1;g12096.t1;g12096.t1;Cre12.g492700.t1.1;FAS1"	"FAS1;FAS1"	"similar to fasciclin/TGFbeta-induced protein/Volvox CAM (algal-CAM) [PMID: 7925267]; contains 3 FAS1 (BIgH3) domains, involved in cell recognition; probably extracellular, GPI-anchored (by homology);similar to fasciclin/TGFbeta-induced protein/Volvox CAM (algal-CAM) [PMID: 7925267]; contains 3 FAS1 (BIgH3) domains, involved in cell recognition; probably extracellular, GPI-anchored (by homology)"
+Cre12.g504900	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX	Chloroplast	GO:0005515	"protein binding"		"g12470.t1;g12470.t1;g12470.t1;g12470.t1"		
+Cre12.g507300	GMM:29.2.1.2.1.8	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S8"				LCI30	"Cre12.g507300.t1.1;g12416.t1;Cre12.g507300.t1.1;g12416.t1"	"LCI30;LCI30"	"Hypothetical protein highly conserved with protein on chromosome 5 of Arabidopsis and also with mammalian protein;similar to putative TGF (transforming growth factor) beta inducible nuclear protein TINP1 [Oryza sativa (japonica cultivar-group)]; May be associated with the ribosome.; Low-CO2 inducible gene revealed by cDNA array analyses.;Hypothetical protein highly conserved with protein on chromosome 5 of Arabidopsis and also with mammalian protein;similar to putative TGF (transforming growth factor) beta inducible nuclear protein TINP1 [Oryza sativa (japonica cultivar-group)]; May be associated with the ribosome.; Low-CO2 inducible gene revealed by cDNA array analyses."
+Cre12.g554600			Chloroplast			CGL146	"Cre12.g554600.t1.1;g13442.t1"	CGL146	
+Cre12.g534300			Mitochondrion				"g13140.t1;g13140.t1;g13140.t1;g13140.t1"		
+Cre12.g512300	GMM:17.7.1.2	"hormone metabolism.jasmonate.synthesis-degradation.lipoxygenase"	Mitochondrion	"GO:0055114;GO:0046872;GO:0016702"	"oxidation-reduction process;metal ion binding;oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, incorporation of two atoms of oxygen"		"g12300.t1;Cre12.g512300.t1.1;Cre12.g512300.t1.1;g12300.t1;Cre12.g512300.t1.1;g12300.t1"		
+Cre12.g517100	GMM:16.8.2	"secondary metabolism.flavonoids.chalcones"	Chloroplast	GO:0016872	"intramolecular lyase activity"		g12753.t1		
+Cre12.g509400	GMM:23.5.4	"nucleotide metabolism.deoxynucleotide metabolism.ribonucleoside-diphosphate reductase"		"GO:0055114;GO:0009186"	"oxidation-reduction process;deoxyribonucleoside diphosphate metabolic process"	RIR2L	"g12364.t1;Cre12.g509400.t1.1;RIR3;RIR2B;RIR2B;RIR3;Cre12.g509400.t1.1;g12364.t1;RIR2B;RIR3;Cre12.g509400.t1.1;g12364.t1;Cre12.g509400.t1.1;RIR2B;RIR3;g12364.t1"	"RIR2L;RIR2L;RIR2L;RIR2L"	"Ribonucleotide Reductase (RNR), small subunit. Previously annotated as RIR2B;Ribonucleotide Reductase (RNR), small subunit. Previously annotated as RIR2B;Ribonucleotide Reductase (RNR), small subunit. Previously annotated as RIR2B;Ribonucleotide Reductase (RNR), small subunit. Previously annotated as RIR2B"
+Cre12.g500300									
+Cre12.g513800							"g12684.t1;Cre12.g513800.t1.1"		
+Cre12.g528614	GMM:3.3	"minor CHO metabolism.sugar alcohols"				tnp31	"Cre12.g528614.t1.1;g13017.t1;g13017.t1;Cre12.g528614.t1.1"		
+Cre12.g547400							"g13604.t1;g13604.t1"		
+Cre12.g501850	"GMM:3.5;GMM:2.2.1.3.2"	"minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.cell wall"	Chloroplast			FFT1	"g12536.t1;FFT1;FFT1;g12536.t1"		"Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase;Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase"
+Cre12.g552900	"GMM:33.99;GMM:30.5"	"development.unspecified;signalling.G-proteins"	Mitochondrion	GO:0005515	"protein binding"	DOI1	"LIS1;Cre12.g552900.t1.1;g13480.t1;LIS1;g13480.t1;Cre12.g552900.t1.1;Cre12.g552900.t1.1;g13480.t1;LIS1"	"DOI1;DOI1;DOI1"	"WD protein related to Lis1 controls flagellar power output. Lacks LisH domain; null-allele mutant was isolated (PMID 29743196);WD protein related to Lis1 controls flagellar power output. Lacks LisH domain; null-allele mutant was isolated (PMID 29743196);WD protein related to Lis1 controls flagellar power output. Lacks LisH domain; null-allele mutant was isolated (PMID 29743196)"
+Cre12.g560000			Chloroplast				g13319.t1		
+Cre12.g489750	"GMM:33.99;GMM:31.6.1.10"	"development.unspecified;cell.motility.eukaryotes.flagellar associated proteins"		GO:0005515	"protein binding"	FAP52	"g12190.t1;Cre12.g489750.t1.1;Cre12.g489750.t1.1;g12190.t1"	"FAP52;FAP52"	"Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG14 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400;Conserved uncharacterized Flagellar Associated Protein; found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG14 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400"
+Cre12.g528350	"GMM:31.2;GMM:20.2.5"	"cell.division;stress.abiotic.light"	Chloroplast				"Cre12.g528350.t1.1;g13011.t1;Cre12.g528350.t1.1;g13011.t1;Cre12.g528350.t1.1;g13011.t1;Cre12.g528350.t1.1;g13011.t1"		
+Cre12.g556350	"GMM:3.5;GMM:10.6.3"	"minor CHO metabolism.others;cell wall.degradation.pectate lyases and polygalacturonases"		"GO:0005975;GO:0004650"	"carbohydrate metabolic process;polygalacturonase activity"		"CFAP300;g13405.t1;g13405.t1;CFAP300;CFAP300;g13405.t1"		
+Cre12.g556200			"Secretory pathway"				"g13408.t1;g13408.t1;g13408.t1"		
+Cre12.g553702									
+Cre12.g495175			Chloroplast				g12124.t1		
+Cre12.g543700	GMM:28.1.1	"DNA.synthesis/chromatin structure.retrotransposon/transposase"				tnp32			
+Cre12.g534350	"GMM:24.3;GMM:11.9.4.9"	"biodegradation of xenobiotics.3-hydroxybutyryl-CoA dehydrogenase;lipid metabolism.lipid degradation.beta-oxidation.multifunctional"		"GO:0055114;GO:0016491;GO:0006631;GO:0004616;GO:0003857"	"oxidation-reduction process;oxidoreductase activity;fatty acid metabolic process;phosphogluconate dehydrogenase (decarboxylating) activity;3-hydroxyacyl-CoA dehydrogenase activity"	HCD2	"HCD2;Cre12.g534350.t1.1;g13142.t1;HCD2;g13142.t1;Cre12.g534350.t1.1"	"HCD2;HCD2"	
+Cre12.g502900							"Cre12.g502900.t1.1;g12512.t1;g12512.t1;Cre12.g502900.t1.1"		
+Cre12.g509500			Mitochondrion	GO:0005509	"calcium ion binding"		"g12362.t1;g12362.t1"		
+Cre12.g490500			Chloroplast			CGL78	"CGL78;Cre12.g490500.t1.1;YCF54;g12175.t1"	LCAA1	"YCF54 subunit of the aerobic oxidative cyclase; Homolog to chloroplast-localized LCAA/Ycf54 of Arabidopsis; Conserved in the Green Lineage; Target of CRR1"
+Cre12.g524750							"Cre12.g524750.t1.1;g12918.t1"		
+Cre12.g551552			"Secretory pathway"			PHC60	"g13810.t1;Cre27.g775200.t1.1;PHC60;Cre27.g775200.t1.2"		
+Cre12.g545450			Mitochondrion				"Cre12.g545450.t1.1;g13650.t1"		
+Cre12.g515350	GMM:26.16	misc.myrosinases-lectin-jacalin	"Secretory pathway"	"GO:0030246;GO:0007155"	"carbohydrate binding;cell adhesion"				
+Cre12.g526220				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g552600			"Secretory pathway"				"FKM9;g13486.t1;g13486.t1;FKM9"		"FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces"
+Cre12.g525300	"GMM:30.2.8.2;GMM:29.4.1;GMM:29.4"	"signalling.receptor kinases.leucine rich repeat VIII.type 2;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g12928.t1;g12928.t1"		
+Cre12.g522050	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion				"g12858.t1;Cre12.g522050.t1.1;Cre12.g522050.t1.1;g12858.t1"		
+Cre12.g541211	"GMM:34.4;GMM:1.5.3"	"transport.nitrate;PS.carbon concentrating mechanism.algal"					"g13751.t1;g13751.t1;g13751.t1;g13751.t1;g13751.t1;g13751.t1"		"probably transcribed as a dicistronic transcript with downstream NAR1 homolog;probably transcribed as a dicistronic transcript with downstream NAR1 homolog;probably transcribed as a dicistronic transcript with downstream NAR1 homolog;probably transcribed as a dicistronic transcript with downstream NAR1 homolog;probably transcribed as a dicistronic transcript with downstream NAR1 homolog;probably transcribed as a dicistronic transcript with downstream NAR1 homolog"
+Cre12.g560500							"Cre12.g560500.t1.1;g13309.t1"		
+Cre12.g506750	GMM:1.5	"PS.carbon concentrating mechanism"	Mitochondrion			PHC41			
+Cre12.g515050	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Chloroplast	"GO:0005515;GO:0003677"	"protein binding;DNA binding"		"g12708.t1;SET4;HLM18;HLM18;SET4;g12708.t1"		"Protein contains a SET domain with similarity to Arabidopsis thaliana ATX5, SET29, SDG29 (At5g53430); [PMID: 16100335];Protein contains a SET domain with similarity to Arabidopsis thaliana ATX5, SET29, SDG29 (At5g53430); [PMID: 16100335]"
+Cre12.g524450	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006470;GO:0004725"	"protein dephosphorylation;protein tyrosine phosphatase activity"	PTP3	"g12912.t1;PTP3;PTP3;g12912.t1;PTP3;g12912.t1"		"Protein Tyrosine Phosphatase Homolog 3, hypothetical; dephosphorylates phosphotyrosine residues;Protein Tyrosine Phosphatase Homolog 3, hypothetical; dephosphorylates phosphotyrosine residues;Protein Tyrosine Phosphatase Homolog 3, hypothetical; dephosphorylates phosphotyrosine residues"
+Cre12.g491150	GMM:29.3.4.3	"protein.targeting.secretory pathway.vacuole"	"Secretory pathway"			VPS55	"VPS55;g12161.t1"	VPS55	"Expressed Protein. Similar to VPS55, a late endosomal protein involved in late endosome to vacuole trafficking; functional homolog of human obesity receptor gene-related protein (OB-RGRP)"
+Cre12.g522600	GMM:9.6	"mitochondrial electron transport / ATP synthesis.cytochrome c"		"GO:0020037;GO:0009055"	"heme binding;electron carrier activity"	CYC2	"CYC;g12869.t1;CYC2;Cre12.g522600.t1.1"	CYC1	"mitochondrial apocytochrome c [gi:117971; PMID: 2853233]"
+Cre12.g522750			Mitochondrion				"g12874.t1;GT90-22;GT90F22"		
+Cre12.g493250	"GMM:29.4;GMM:29.2.2"	"protein.postranslational modification;protein.synthesis.ribosome biogenesis"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	FAP358	"g12085.t1;Cre12.g493250.t1.1;g12085.t1;Cre12.g493250.t1.1;Cre12.g493250.t1.1;g12085.t1"	"FAP358;FAP358;FAP358"	"null-allele mutant was isolated (PMID 29743196); Similar to protein kinases;null-allele mutant was isolated (PMID 29743196); Similar to protein kinases;null-allele mutant was isolated (PMID 29743196); Similar to protein kinases"
+Cre12.g489950							"Cre12.g489950.t1.1;g12186.t1"		
+Cre12.g507950			Mitochondrion	"GO:0016021;GO:0016020"	"integral component of membrane;membrane"	CGL98	"g12397.t1;g12397.t1;g12397.t1;g12397.t1"	"CGL98;CGL98;CGL98;CGL98"	"Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre12.g491250							"g12159.t1;g12159.t1;g12159.t1;g12159.t1"		
+Cre12.g544900				GO:0005515	"protein binding"		"g13662.t1;Cre12.g544900.t1.1"		
+Cre12.g529751			"Secretory pathway"						
+Cre12.g486207			Mitochondrion						
+Cre12.g529301				"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"Cre12.g529300.t1.3;g13032.t1;Cre12.g529300.t1.3;g13032.t1"		
+Cre12.g545101	GMM:23.2	"nucleotide metabolism.degradation"		"GO:0055114;GO:0051536;GO:0046872;GO:0016491;GO:0009055"	"oxidation-reduction process;iron-sulfur cluster binding;metal ion binding;oxidoreductase activity;electron carrier activity"	XDH1	"XDH1;Cre12.g545050.t1.3;g13658.t1;Cre12.g545050.t1.3;g13658.t1;XDH1;g13658.t1;Cre12.g545050.t1.3;XDH1;g13658.t1;Cre12.g545050.t1.3;XDH1;Cre12.g545050.t1.3;g13658.t1;XDH1;XDH1;g13658.t1;Cre12.g545050.t1.3;XDH1;g13658.t1;Cre12.g545050.t1.3"	"XDH1;XDH1;XDH1;XDH1;XDH1;XDH1;XDH1"	"Includes: Xanthine dehydrogenase (XD); Xanthine oxidase (XO) (Xanthine oxidoreductase);Includes: Xanthine dehydrogenase (XD); Xanthine oxidase (XO) (Xanthine oxidoreductase);Includes: Xanthine dehydrogenase (XD); Xanthine oxidase (XO) (Xanthine oxidoreductase);Includes: Xanthine dehydrogenase (XD); Xanthine oxidase (XO) (Xanthine oxidoreductase);Includes: Xanthine dehydrogenase (XD); Xanthine oxidase (XO) (Xanthine oxidoreductase);Includes: Xanthine dehydrogenase (XD); Xanthine oxidase (XO) (Xanthine oxidoreductase);Includes: Xanthine dehydrogenase (XD); Xanthine oxidase (XO) (Xanthine oxidoreductase)"
+Cre12.g524200	GMM:29.3.4.1	"protein.targeting.secretory pathway.ER"		"GO:0016021;GO:0008233;GO:0006465;GO:0005787"	"integral component of membrane;peptidase activity;signal peptide processing;signal peptidase complex"	SPC25	"SPC25;g12907.t1;Cre12.g524200.t1.1"	SPC25	"25 kDa subunit of the ER signal peptidase; involved in processing signal peptides from ER-targeted proteins"
+Cre12.g494950			Chloroplast				"g12120.t1;Cre12.g494950.t1.1"		
+Cre12.g525750	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre12.g525750.t1.1;g12937.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g494200	GMM:27.3.44	"RNA.regulation of transcription.chromatin remodeling factors"	Chloroplast				"g12065.t1;g12065.t1;g12065.t1;g12065.t1"		
+Cre12.g487100	GMM:29.1.10	"protein.aa activation.methionine-tRNA ligase"	Chloroplast	"GO:0006418;GO:0005524;GO:0004812;GO:0000166"	"tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"	TSM2	"TSM2;Cre12.g487100.t1.1;g12247.t1;TSM2;Cre12.g487100.t1.1;g12247.t1"	"TSM2;TSM2"	"Putative organellar methionyl-tRNA synthetase;Putative organellar methionyl-tRNA synthetase"
+Cre12.g526000				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g550152			"Secretory pathway"				g13546.t1		
+Cre12.g486000			"Secretory pathway"				"Cre12.g486000.t1.1;g12277.t1;Cre12.g486000.t1.1;g12277.t1;g12277.t1;Cre12.g486000.t1.1;g12277.t1;Cre12.g486000.t1.1;g12277.t1;Cre12.g486000.t1.1"		
+Cre12.g540700			Chloroplast				"g13762.t2;g13762.t2;g13762.t2"		
+Cre12.g543450	GMM:29.5.11.4.3.4	protein.degradation.ubiquitin.E3.SCF.RBX		GO:0008270	"zinc ion binding"	RBX1	"Cre12.g543450.t1.1;RBX1;g13700.t1"	RBX1	"Orthologous to RBX1 E3 ubiquitin ligaase in Dunaliella salina which is involved in flagellar disassembly"
+Cre12.g500350	GMM:29.4	"protein.postranslational modification"		GO:0016787	"hydrolase activity"		"PPP38;g12569.t1;Cre12.g500350.t1.1"		
+Cre12.g485400			"Secretory pathway"				g12045.t1		
+Cre12.g505000							"Cre12.g505000.t1.1;g12468.t1"		
+Cre12.g499800							"g12582.t1;Cre12.g499800.t1.1"	ASA10	"Mitochondrial ATP synthase associated protein 10"
+Cre12.g511902									
+Cre12.g507800			"Secretory pathway"				"g12402.t1;Cre12.g507800.t1.1"		"Target of CRR1"
+Cre12.g538350	GMM:33.99	development.unspecified	"Secretory pathway"	"GO:0016226;GO:0008199"	"iron-sulfur cluster assembly;ferric iron binding"	FTX1	"g13236.t1;FTX1"	FTX1	"Mitochondrial precursor (FRDA1); Regulation of iron entry and cysteine desulfurase activity"
+Cre12.g492851	"GMM:26.3;GMM:10.6.2"	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Mitochondrion	"GO:0005975;GO:0004553"	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	EBM7	"EBM7;g12094.t1;g12094.t1;EBM7;g12094.t1;EBM7"		
+Cre12.g490850	GMM:29.3.1	protein.targeting.nucleus		"GO:0008536;GO:0006886"	"Ran GTPase binding;intracellular protein transport"		g12168.t1		
+Cre12.g549650			Mitochondrion				"g13555.t1;Cre12.g549650.t1.1"		
+Cre12.g561150			"Secretory pathway"				"g13294.t2;g13294.t2;g13294.t2"		
+Cre12.g559800	GMM:26.9	"misc.glutathione S transferases"					"Cre12.g559800.t1.1;g13323.t1;GST10;Cre12.g559800.t1.1;g13323.t1;GST10"		"Glutathione S-transferase, membrane-associated (may be microsomal);Glutathione S-transferase, membrane-associated (may be microsomal)"
+Cre12.g507200			Mitochondrion	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g12418.t1;g12418.t1;g12418.t1"		
+Cre12.g519000	GMM:13.1.6.5.3	"amino acid metabolism.synthesis.aromatic aa.tryptophan.phosphoribosyanthranilate isomerase"	Chloroplast	"GO:0006568;GO:0004640"	"tryptophan metabolic process;phosphoribosylanthranilate isomerase activity"	ASB2	"PAI1;g12795.t1;ASB2;PAI1;ASB2;g12795.t1"	"PAI1;PAI1"	"Phosphoribosylanthranilate isomerase with orthology to three PAI genes in Arabidopsis;Phosphoribosylanthranilate isomerase with orthology to three PAI genes in Arabidopsis"
+Cre12.g496650	"GMM:11.8.1;GMM:11.2.2"	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids;lipid metabolism.FA desaturation.a hydroxylase"	Mitochondrion	"GO:0055114;GO:0016491;GO:0006633;GO:0005506"	"oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding"		"g12652.t1;Cre12.g496650.t1.1;Cre12.g496650.t1.1;g12652.t1;g12652.t1;Cre12.g496650.t1.1"		
+Cre12.g551001			Chloroplast						
+Cre12.g519401			"Secretory pathway"						
+Cre12.g486750			Chloroplast				"g12256.t1;Cre12.g486750.t1.1"		
+Cre12.g497101			Mitochondrion				"Cre12.g497050.t1.3;g12644.t1;g12644.t1;Cre12.g497050.t1.3"		
+Cre12.g522550	"GMM:31.6.1.3.1.1;GMM:31.1"	"cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.kinesin-2 subunits;cell.organisation"		"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	FLA8	"Cre12.g522550.t1.1;KIN2-1;FLA8;g12868.t1"	FLA8	"Kinesin heavy chain, kinesin-2 (KRP85/95) family; probable subunit of kinesin-II, the anterograde motor for intraflagellar transport"
+Cre12.g545300							"g13653.t1;Cre12.g545300.t1.1;Cre12.g545300.t1.1;g13653.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g483600							"g12004.t1;Cre12.g483600.t1.1;g12004.t1;Cre12.g483600.t1.1"		
+Cre12.g559600									
+Cre12.g495959			Chloroplast						
+Cre12.g485300			"Secretory pathway"			CSV6	"CSV6;g12043.t1"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre12.g498800							"g12609.t1;g12609.t1;g12609.t1;g12609.t1;g12609.t1"		
+Cre12.g527150			Mitochondrion				"g12987.t1;g12987.t1"		
+Cre12.g541904			"Secretory pathway"	GO:0003677	"DNA binding"		"Cre12.g541904.t1.1;g13734.t1;g13734.t1;Cre12.g541904.t1.1"		
+Cre12.g539203									
+Cre12.g552450							"g13489.t1;Cre12.g552450.t1.1"		
+Cre12.g501600			Chloroplast	"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"BLZ8;Cre12.g501600.t1.1;g12544.t1;g12544.t1;Cre12.g501600.t1.1;BLZ8;BLZ8;Cre12.g501600.t1.1;g12544.t1;Cre12.g501600.t1.1;BLZ8;g12544.t1"		"Basic-leucine zipper (bZIP) transcription factor; may bind cAMP response element; null-allele mutant was isolated (PMID 29743196);Basic-leucine zipper (bZIP) transcription factor; may bind cAMP response element; null-allele mutant was isolated (PMID 29743196);Basic-leucine zipper (bZIP) transcription factor; may bind cAMP response element; null-allele mutant was isolated (PMID 29743196);Basic-leucine zipper (bZIP) transcription factor; may bind cAMP response element; null-allele mutant was isolated (PMID 29743196)"
+Cre12.g504650	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR15	"HTR15;HTR28;g12475.t1;Cre12.g504650.t1.1"	HTR15	"replication linked H3; histone gene cluster XV (type 34BA)"
+Cre12.g490600							"g12173.t1;Cre12.g490600.t1.1;Cre12.g490600.t1.1;g12173.t1"		
+Cre12.g494750	GMM:29.2.1.1.1.1.20	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S20"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723"	"translation;ribosome;intracellular;structural constituent of ribosome;RNA binding"	PRPS20	"g12116.t1;Cre12.g494750.t1.1;g12116.t1;Cre12.g494750.t1.1"	"PRPS20;PRPS20"	"imported to chloroplast; Chloroplast small ribosomal subunit protein S20; component psaA trans-splicing sub complex II;imported to chloroplast; Chloroplast small ribosomal subunit protein S20; component psaA trans-splicing sub complex II"
+Cre12.g546600			"Secretory pathway"			FEA2	g13623.t1	FEA2	"Expression induced by Fe deficiency; secreted/ glycosylated; FEA proteins are lost to the medium in cell-wall less mutants, which makes them more sensitive to Fe deficiency; Cis-acting regulatory elements were characterized [PMID: 19351705]; High-CO2 inducible"
+Cre12.g555950	GMM:31.6.1.4.2.1	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species"		"GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777"	"dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity"	DHC11	"g13413.t1;Cre12.g555950.t1.1;DHC11"	DHC11	"Novel minor type dynein (monomeric); has not been identified in Chlamydomonas flagella in mass spec proteomic study by Yagi et al. [PMID: 19351714]; homologs found exclusively at the flagellar basal portion"
+Cre12.g516100				"GO:0016021;GO:0005789"	"integral component of membrane;endoplasmic reticulum membrane"		"g12731.t1;Cre12.g516100.t1.1"		
+Cre12.g553250	"GMM:4.2.4;GMM:4.1.4"	"glycolysis.plastid branch.phosphofructokinase (PFK);glycolysis.cytosolic branch.phosphofructokinase (PFK)"	Chloroplast	"GO:0006096;GO:0003872"	"glycolytic process;6-phosphofructokinase activity"	PFK2	"Cre12.g553250.t1.1;g13472.t1;g13472.t1;Cre12.g553250.t1.1;Cre12.g553250.t1.1;g13472.t1;g13472.t1;Cre12.g553250.t1.1"	"PFK2;PFK2;PFK2;PFK2"	"Phosphofructokinase family protein (EC 2.7.1.11 or 2.7.1.90), probably plastid targeted;Phosphofructokinase family protein (EC 2.7.1.11 or 2.7.1.90), probably plastid targeted;Phosphofructokinase family protein (EC 2.7.1.11 or 2.7.1.90), probably plastid targeted;Phosphofructokinase family protein (EC 2.7.1.11 or 2.7.1.90), probably plastid targeted"
+Cre12.g533600							"DeSI-6;g13126.t1;g13126.t1;DeSI-6;DeSI-6;g13126.t1"	"DESI6;DESI6;DESI6"	"deSUMOlyating isopeptidase;deSUMOlyating isopeptidase;deSUMOlyating isopeptidase"
+Cre12.g537450	GMM:9.7	"mitochondrial electron transport / ATP synthesis.cytochrome c oxidase"	Mitochondrion			COX13	"g13216.t1;Cre12.g537450.t1.1;COX13"	COX13	"Cytochrome c oxidase COX13 (CoxVIa) subunit (12 kDa); (= human/yeast COX6a subunit); not essential for cytochrome c oxidase activity but may modulate activity in response to ATP"
+Cre12.g535476			Mitochondrion						
+Cre12.g498350						SRE1	"SRS7;RBM25;g12618.t1;SRS7;g12618.t1;RBM25"	"SRE1;SRE1"	"Putative mRNA splicing factor, similar to human RNA binding motif protein 25, arginine/serine-rich 16 (Suppressor of white-apricot homolog 2) (Clk4-associating SR-related protein);Putative mRNA splicing factor, similar to human RNA binding motif protein 25, arginine/serine-rich 16 (Suppressor of white-apricot homolog 2) (Clk4-associating SR-related protein)"
+Cre12.g513500	GMM:28.2	DNA.repair				XAB2	"g12677.t1;XAB2;Cre12.g513500.t1.1"	XAB2	"Involved in transcription-coupled DNA repair. Contains TPR and HAT repeats [PMID: 10944529]"
+Cre12.g532650							"g13105.t1;Cre12.g532650.t1.1"		
+Cre12.g549250			Chloroplast	"GO:0016567;GO:0004842"	"protein ubiquitination;ubiquitin-protein transferase activity"		"g13563.t1;g13563.t1"		
+Cre12.g525600			Chloroplast				"g12934.t1;g12934.t1;g12934.t1"		
+Cre12.g540900			"Secretory pathway"				"Cre12.g540900.t1.1;g13758.t2"		
+Cre12.g487050			"Secretory pathway"				"g12249.t1;g12249.t1;g12249.t1;g12249.t1;g12249.t1;g12249.t1"		
+Cre12.g544112									
+Cre12.g558300	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g13364.t1		
+Cre12.g538850	GMM:31.6.1.11	cell.motility.eukaryotes.other					"g13248.t1;g13248.t1;g13248.t1;g13248.t1;g13248.t1;g13248.t1"		
+Cre12.g544150	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"	Chloroplast	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN20-2	"CYN7;CYN20-2;TLP2;NSG1;Cre12.g544150.t1.1;g13679.t1"	CYN20B	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to AtCYP20-2 (TLP2); possibly directed to chloroplast thylakoid lumen; linked to CYN20-6 and CYN13"
+Cre12.g535201			Mitochondrion				"g13165.t1;Cre12.g535200.t1.3"		
+Cre12.g497700	"GMM:26.11.1;GMM:26.11;GMM:16.8.3"	"misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols"		"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"	SNE8	"Cre12.g497700.t1.1;g12631.t1;SNE8;SNE8;g12631.t1;Cre12.g497700.t1.1"		"Cinnamoyl-CoA reductase/flavanone 4-reductase, a NAD-dependent epimerase/dehydratase. Related to Dihydrokaempferol 4-reductase (DFR); related to plant haem peroxidase that are aldehyde oxidases, flavonol/cinnamyl alcohol reductases;Cinnamoyl-CoA reductase/flavanone 4-reductase, a NAD-dependent epimerase/dehydratase. Related to Dihydrokaempferol 4-reductase (DFR); related to plant haem peroxidase that are aldehyde oxidases, flavonol/cinnamyl alcohol reductases"
+Cre12.g501351			"Secretory pathway"				"g12550.t1;Cre12.g501300.t1.2"		
+Cre12.g542950			Mitochondrion	GO:0005643	"nuclear pore"	CGL137	"CGL137;g13710.t1;CGL137;g13710.t1;g13710.t1;CGL137;CGL137;g13710.t1"	"NUP54;NUP54;NUP54;NUP54"	"54 kDa Nuclear Pore Complex Protein, conserved in green lineage;54 kDa Nuclear Pore Complex Protein, conserved in green lineage;54 kDa Nuclear Pore Complex Protein, conserved in green lineage;54 kDa Nuclear Pore Complex Protein, conserved in green lineage"
+Cre12.g551050							"Cre12.g551050.t1.1;g13524.t1"		
+Cre12.g523832							g12899.t1		
+Cre12.g513000				"GO:0016020;GO:0008378;GO:0006486"	"membrane;galactosyltransferase activity;protein glycosylation"	GTR17	"g12668.t1;GTR17"		"glycosyl transferase, family 31"
+Cre12.g509750	"GMM:29.5;GMM:29.3.2"	"protein.degradation;protein.targeting.mitochondria"	Mitochondrion			MPPA2	"QCR2;g12356.t1;Cre12.g509750.t1.1;MPPA2;Cre12.g509750.t1.1;MPPA2;g12356.t1;QCR2;MPPA2;Cre12.g509750.t1.1;QCR2;g12356.t1"	"QCR2;QCR2;QCR2"	"Mitochondrial processing peptidase, alpha subunit; Also Core II subunit of mitochondrial Complex III (ubiquinol:cytochrome c oxidoreductase) (QCR2); identified in proteomic survey of mitochondrial membranes;;Mitochondrial processing peptidase, alpha subunit; Also Core II subunit of mitochondrial Complex III (ubiquinol:cytochrome c oxidoreductase) (QCR2); identified in proteomic survey of mitochondrial membranes;;Mitochondrial processing peptidase, alpha subunit; Also Core II subunit of mitochondrial Complex III (ubiquinol:cytochrome c oxidoreductase) (QCR2); identified in proteomic survey of mitochondrial membranes;"
+Cre12.g510950							"g12329.t1;Cre12.g510950.t1.1;g12329.t1;Cre12.g510950.t1.1;g12329.t1;Cre12.g510950.t1.1;Cre12.g510950.t1.1;g12329.t1;g12329.t1;Cre12.g510950.t1.1;g12329.t1;Cre12.g510950.t1.1"		
+Cre12.g524900			"Secretory pathway"				"g12921.t1;g12921.t1;g12921.t1"		
+Cre12.g505700	GMM:27.2	RNA.transcription		"GO:0006352;GO:0003677"	"DNA-templated transcription, initiation;DNA binding"		"GTF5;Cre12.g505700.t1.1;g12453.t1"		"ChromDB GTF341; global transcription factor; TATA sequence-binding protein 2, TBP-2, similar to yeast SPT15"
+Cre12.g545700							g13642.t1		
+Cre12.g503600	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	"protein binding"		"Cre12.g503600.t1.1;g12497.t1"		
+Cre12.g531900			Chloroplast	GO:0010181	"FMN binding"	FLVA	"FLVA;g13088.t1;Cre12.g531900.t1.1;Cre12.g531900.t1.1;FLVA;g13088.t1"	"FLVA1;FLVA1"	"Functions as a hetero-dimer with FLVB1 to reoxidize PSI acceptors and protect PSI against photoinhibition during transient/fluctuating illumination;Functions as a hetero-dimer with FLVB1 to reoxidize PSI acceptors and protect PSI against photoinhibition during transient/fluctuating illumination"
+Cre12.g510900	"GMM:29.6.2.5;GMM:29.5.5"	"protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease"	Mitochondrion	"GO:0070011;GO:0016887;GO:0009376;GO:0005737;GO:0005524"	"peptidase activity, acting on L-amino acid peptides;ATPase activity;HslUV protease complex;cytoplasm;ATP binding"	HSLU1	"g12330.t1;HUV1;CLPY1;Cre12.g510900.t1.1"	HSLU1	"Similar to eubacterial ClpY (HslU), ATP-dependent subunit of the HslUV protease; probably directed to the mitochondrion; null-allele mutant was isolated (PMID 29743196)"
+Cre12.g484450			Mitochondrion				"g12025.t1;g12025.t1"		
+Cre12.g549300	"GMM:34.19.2;GMM:34.19.1"	"transport.major intrinsic proteins.TIP;transport.major intrinsic proteins.PIP"		"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	MIP1	"MIP1;Cre12.g549300.t1.1;g13562.t1;g13562.t1;MIP1;Cre12.g549300.t1.1"	"MIP1;MIP1"	"related to plant tonoplast TIP and aquaporins, major intrinsic protein; possible glycerol transport activity;related to plant tonoplast TIP and aquaporins, major intrinsic protein; possible glycerol transport activity"
+Cre12.g485500	GMM:29.5.5	"protein.degradation.serine protease"	Mitochondrion	"GO:0070008;GO:0008236;GO:0006508;GO:0004252"	"serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity"		g12050.t1		
+Cre12.g486100	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast			CLPP5	"g12275.t1;Cre12.g486100.t1.1;g12275.t1;Cre12.g486100.t1.1;g12275.t1;Cre12.g486100.t1.1;g12275.t1;Cre12.g486100.t1.1"	"CLPP5;CLPP5;CLPP5;CLPP5"	
+Cre12.g533650			Mitochondrion	GO:0016021	"integral component of membrane"		"Cre12.g533650.t1.1;g13127.t1"		
+Cre12.g541777	"GMM:35.1.13;GMM:27.3.69"	"not assigned.no ontology.SET domain-containing protein;RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion	GO:0005515	"protein binding"	CGL95	"g13787.t1;Cre27.g774300.t1.1;Cre27.g774300.t1.1;g13787.t1"	"CGL95;CGL95"	
+Cre12.g486400	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	Chloroplast				"Cre12.g486400.t1.1;g12266.t1;g12266.t1;Cre12.g486400.t1.1"		
+Cre12.g517700	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"				NYC1	"g12766.t1;SDR21;Cre12.g517700.t1.1;Cre12.g517700.t1.1;g12766.t1;SDR21"	"NYC1;NYC1"	"CPLD25, conserved expressed protein of the short-chain dehydrogenase/reductase family; Non-Yellow Coloring 1, PMID: 17416733; null-allele passenger mutation was isolated (PMID 29743196);CPLD25, conserved expressed protein of the short-chain dehydrogenase/reductase family; Non-Yellow Coloring 1, PMID: 17416733; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre12.g549700				GO:0003723	"RNA binding"		"Cre12.g549700.t1.1;g13554.t1;Cre12.g549700.t1.1;g13554.t1"		
+Cre12.g507600							"Cre12.g507600.t1.1;g12406.t1"		
+Cre12.g527000	"GMM:30.3;GMM:29.4.1;GMM:29.4"	"signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005509;GO:0004672"	"protein phosphorylation;calcium ion binding;protein kinase activity"		"Cre12.g527000.t1.1;g12984.t1"	CDPK14	"Identified as CrCDPK14 in [PMID: 23936117]"
+Cre12.g508250	GMM:29.5.11	protein.degradation.ubiquitin		"GO:0036459;GO:0016579"	"thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination"		"g12390.t1;g12390.t1;g12390.t1"		
+Cre12.g485800	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	"GO:0006508;GO:0005524;GO:0004222"	"proteolysis;ATP binding;metalloendopeptidase activity"	FTSH1	"FHL1;g12281.t1;Cre12.g485800.t1.1;FHL1;g12281.t1;Cre12.g485800.t1.1;Cre12.g485800.t1.1;g12281.t1;FHL1;Cre12.g485800.t1.1;g12281.t1;FHL1;FHL1;Cre12.g485800.t1.1;g12281.t1;Cre12.g485800.t1.1;g12281.t1;FHL1;FHL1;g12281.t1;Cre12.g485800.t1.1;FHL1;Cre12.g485800.t1.1;g12281.t1"	"FTSH1;FTSH1;FTSH1;FTSH1;FTSH1;FTSH1;FTSH1;FTSH1"	"FtsH protease 1, type A; Chloroplast-targeted; Membrane-bound metalloprotease (M41) with AAA domain; Ortholog of Arabidopsis FtsH5=Var1 and FtsH1;;FtsH protease 1, type A; Chloroplast-targeted; Membrane-bound metalloprotease (M41) with AAA domain; Ortholog of Arabidopsis FtsH5=Var1 and FtsH1;;FtsH protease 1, type A; Chloroplast-targeted; Membrane-bound metalloprotease (M41) with AAA domain; Ortholog of Arabidopsis FtsH5=Var1 and FtsH1;;FtsH protease 1, type A; Chloroplast-targeted; Membrane-bound metalloprotease (M41) with AAA domain; Ortholog of Arabidopsis FtsH5=Var1 and FtsH1;;FtsH protease 1, type A; Chloroplast-targeted; Membrane-bound metalloprotease (M41) with AAA domain; Ortholog of Arabidopsis FtsH5=Var1 and FtsH1;;FtsH protease 1, type A; Chloroplast-targeted; Membrane-bound metalloprotease (M41) with AAA domain; Ortholog of Arabidopsis FtsH5=Var1 and FtsH1;;FtsH protease 1, type A; Chloroplast-targeted; Membrane-bound metalloprotease (M41) with AAA domain; Ortholog of Arabidopsis FtsH5=Var1 and FtsH1;;FtsH protease 1, type A; Chloroplast-targeted; Membrane-bound metalloprotease (M41) with AAA domain; Ortholog of Arabidopsis FtsH5=Var1 and FtsH1;"
+Cre12.g484200	GMM:16.1.1.10	"secondary metabolism.isoprenoids.non-mevalonate pathway.geranylgeranyl pyrophosphate synthase"	Chloroplast	GO:0008299	"isoprenoid biosynthetic process"	GGPS	"GGPS;PPS2;g12018.t1;Cre12.g484200.t1.1;GGPS1;GGPS;PPS2;g12018.t1;Cre12.g484200.t1.1;GGPS1"	"GGPS1;GGPS1"	"polyprenyl synthetase (geranylgeranyl diphosphate synthase) (GGPPS); Low-CO2 inducible gene LCI14 revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119];polyprenyl synthetase (geranylgeranyl diphosphate synthase) (GGPPS); Low-CO2 inducible gene LCI14 revealed by cDNA array analyses; regulated by CCM1 [PMID: 15235119]"
+Cre12.g530400	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	IRT1	"IRT1;Cre12.g530400.t1.1;CrZIP13;ZIP11;g13056.t1;g13056.t1;ZIP11;CrZIP13;Cre12.g530400.t1.1;IRT1"	"IRT1;IRT1"	"Similarity to ZIP GufA-like subfamily; expression induced specifically during Fe deficiency; Physically linked to IRT2;Similarity to ZIP GufA-like subfamily; expression induced specifically during Fe deficiency; Physically linked to IRT2"
+Cre12.g523650	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion	GO:0005515	"protein binding"	HLM19	"Cre12.g523650.t1.1;g12894.t1;HLM19"		
+Cre12.g551650			"Secretory pathway"				"Cre12.g551650.t1.1;g13510.t1"		
+Cre12.g488450	GMM:10.5.2	"cell wall.cell wall proteins.proline rich proteins"	"Secretory pathway"			VSP3	"g12216.t1;VSP3"	VSP3	"Extracellular matrix protein (vegetative cell wall protein) similar to ISG (Volvox carteri) [PMID: 1600938], both are glycoproteins with a hydroxyproline-rich (HR) domain. [PMID: 8000007]; contains Glucan-b1,3-glucosidase domain"
+Cre12.g546250	GMM:29.3.4.1	"protein.targeting.secretory pathway.ER"		"GO:0048500;GO:0045900;GO:0008312;GO:0006614"	"signal recognition particle;negative regulation of translational elongation;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane"	SRP9	"Cre12.g546250.t1.1;g13630.t1;SRP9"	SRP9	"Expressed Protein. Similar to the SRP9 subunit of the Signal Recognition Particle. Involved in ER protein translocation."
+Cre12.g490200	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre12.g490200.t1.1;g12181.t1;Cre12.g490200.t1.1;g12181.t1;g12181.t1;Cre12.g490200.t1.1"		
+Cre12.g529000			Chloroplast				"g13026.t1;Cre12.g529000.t1.1"		
+Cre12.g550553			Mitochondrion				g13535.t1		
+Cre12.g561550	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524"	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	CDS1	"Cre12.g561550.t1.1;CDS1;g13286.t1;CDS1;Cre12.g561550.t1.1;g13286.t1;g13286.t1;Cre12.g561550.t1.1;CDS1;g13286.t1;Cre12.g561550.t1.1;CDS1;g13286.t1;CDS1;Cre12.g561550.t1.1;g13286.t1;CDS1;Cre12.g561550.t1.1;Cre12.g561550.t1.1;CDS1;g13286.t1"		"Half-size ABC transporter [AAQ19847], related to mitochondrial A. thaliana ATM3, yeast ATM1, human ABC7, and vacuolar S. pombe HMT1. Protein localized in the mitochondria and involved in cadmium detoxification in C. reinhardtii;Half-size ABC transporter [AAQ19847], related to mitochondrial A. thaliana ATM3, yeast ATM1, human ABC7, and vacuolar S. pombe HMT1. Protein localized in the mitochondria and involved in cadmium detoxification in C. reinhardtii;Half-size ABC transporter [AAQ19847], related to mitochondrial A. thaliana ATM3, yeast ATM1, human ABC7, and vacuolar S. pombe HMT1. Protein localized in the mitochondria and involved in cadmium detoxification in C. reinhardtii;Half-size ABC transporter [AAQ19847], related to mitochondrial A. thaliana ATM3, yeast ATM1, human ABC7, and vacuolar S. pombe HMT1. Protein localized in the mitochondria and involved in cadmium detoxification in C. reinhardtii;Half-size ABC transporter [AAQ19847], related to mitochondrial A. thaliana ATM3, yeast ATM1, human ABC7, and vacuolar S. pombe HMT1. Protein localized in the mitochondria and involved in cadmium detoxification in C. reinhardtii;Half-size ABC transporter [AAQ19847], related to mitochondrial A. thaliana ATM3, yeast ATM1, human ABC7, and vacuolar S. pombe HMT1. Protein localized in the mitochondria and involved in cadmium detoxification in C. reinhardtii;Half-size ABC transporter [AAQ19847], related to mitochondrial A. thaliana ATM3, yeast ATM1, human ABC7, and vacuolar S. pombe HMT1. Protein localized in the mitochondria and involved in cadmium detoxification in C. reinhardtii"
+Cre12.g514750	GMM:8.1.2	"TCA / organic transformation.TCA.CS"	Mitochondrion	GO:0046912	"transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer"	CIS1	"g12702.t1;Cre12.g514750.t1.1;g12702.t1;Cre12.g514750.t1.1;Cre12.g514750.t1.1;g12702.t1"	"CIS1;CIS1;CIS1"	"Citrate synthase (EC 2.3.3.1), mitochondrial form; similarity to carrot citrate synthase mitochondrial precursor (GenBank O8433);Citrate synthase (EC 2.3.3.1), mitochondrial form; similarity to carrot citrate synthase mitochondrial precursor (GenBank O8433);Citrate synthase (EC 2.3.3.1), mitochondrial form; similarity to carrot citrate synthase mitochondrial precursor (GenBank O8433)"
+Cre12.g537050							"Cre12.g537050.t1.1;g13206.t1"	NUOA3	"NADH:ubiquinone oxidoreductase (Complex I) subunit, mitochondrial; [= NDUFA3 subunit] Ortholog to NDUFA3 in Homo sapiens;"
+Cre12.g550600				GO:0016021	"integral component of membrane"		g13533.t1		
+Cre12.g555378							"Cre27.g775650.t1.2;g13819.t1;Cre27.g775650.t1.1"		
+Cre12.g511952									
+Cre12.g534650	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g13149.t1;g13149.t1"		
+Cre12.g545619	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING							
+Cre12.g544700	"GMM:35.1.12;GMM:27.4"	"not assigned.no ontology.pumilio/Puf RNA-binding domain-containing protein;RNA.RNA binding"		GO:0003723	"RNA binding"	PUF3	"g13667.t1;PUF3;PUF3;g13667.t1;PUF3;g13667.t1"	"PUF3;PUF3;PUF3"	"contains pumilio-family RNA binding domains (PUF). Puf protein family thought to repress gene expression by affecting mRNA translation or stability.;contains pumilio-family RNA binding domains (PUF). Puf protein family thought to repress gene expression by affecting mRNA translation or stability.;contains pumilio-family RNA binding domains (PUF). Puf protein family thought to repress gene expression by affecting mRNA translation or stability."
+Cre12.g489450			Chloroplast				"g12196.t1;g12196.t1;g12196.t1;g12196.t1;g12196.t1;g12196.t1"		
+Cre12.g541450							"Cre12.g541450.t1.1;g13745.t1"		
+Cre12.g500950	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast			CLPP4	"g12557.t1;Cre12.g500950.t1.1"	CLPP4	"ts-lethal mutant was isolated (PMID 29743196)"
+Cre12.g487652			Chloroplast						
+Cre12.g512788			Chloroplast						
+Cre12.g500750						CSB45			
+Cre12.g554700	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"		"GO:0016192;GO:0016021"	"vesicle-mediated transport;integral component of membrane"	SEC22	"Cre12.g554700.t1.1;g13440.t1"	SEC22	"Expressed Protein. Similar to SEC22 R-SNAREs, involved in ER/Golgi trafficking."
+Cre12.g513200	GMM:4.1.13	"glycolysis.cytosolic branch.enolase"		"GO:0006096;GO:0004634;GO:0000287;GO:0000015"	"glycolytic process;phosphopyruvate hydratase activity;magnesium ion binding;phosphopyruvate hydratase complex"	PGH1	"ENO;PGH1;Cre12.g513200.t1.1;g12671.t1;g12671.t1;Cre12.g513200.t1.1;PGH1;ENO;g12671.t1;Cre12.g513200.t1.1;PGH1;ENO;ENO;PGH1;g12671.t1;Cre12.g513200.t1.1;Cre12.g513200.t1.1;g12671.t1;ENO;PGH1;ENO;PGH1;Cre12.g513200.t1.1;g12671.t1;Cre12.g513200.t1.1;g12671.t1;PGH1;ENO;Cre12.g513200.t1.1;g12671.t1;PGH1;ENO;PGH1;ENO;g12671.t1;Cre12.g513200.t1.1"	"ENO1;ENO1;ENO1;ENO1;ENO1;ENO1;ENO1;ENO1;ENO1"	"Phosphoenolpyruvate hydratase; 2-phosphoglycerate dehydratase; EC 4.2.1.11 [GI:18143, Dumont et al. (1993) Plant Sci. 89, 55-67]; product localization unsure: an N-terminal extension also found in Dunaliella and At1g74030 potentially targets it to an organelle, especially if cDNA is extended >6 nt upstream; found in the flagellar proteome [PMID: 15998802] and associated with central pair projection C1b (PMID: 16030251).;Phosphoenolpyruvate hydratase; 2-phosphoglycerate dehydratase; EC 4.2.1.11 [GI:18143, Dumont et al. (1993) Plant Sci. 89, 55-67]; product localization unsure: an N-terminal extension also found in Dunaliella and At1g74030 potentially targets it to an organelle, especially if cDNA is extended >6 nt upstream; found in the flagellar proteome [PMID: 15998802] and associated with central pair projection C1b (PMID: 16030251).;Phosphoenolpyruvate hydratase; 2-phosphoglycerate dehydratase; EC 4.2.1.11 [GI:18143, Dumont et al. (1993) Plant Sci. 89, 55-67]; product localization unsure: an N-terminal extension also found in Dunaliella and At1g74030 potentially targets it to an organelle, especially if cDNA is extended >6 nt upstream; found in the flagellar proteome [PMID: 15998802] and associated with central pair projection C1b (PMID: 16030251).;Phosphoenolpyruvate hydratase; 2-phosphoglycerate dehydratase; EC 4.2.1.11 [GI:18143, Dumont et al. (1993) Plant Sci. 89, 55-67]; product localization unsure: an N-terminal extension also found in Dunaliella and At1g74030 potentially targets it to an organelle, especially if cDNA is extended >6 nt upstream; found in the flagellar proteome [PMID: 15998802] and associated with central pair projection C1b (PMID: 16030251).;Phosphoenolpyruvate hydratase; 2-phosphoglycerate dehydratase; EC 4.2.1.11 [GI:18143, Dumont et al. (1993) Plant Sci. 89, 55-67]; product localization unsure: an N-terminal extension also found in Dunaliella and At1g74030 potentially targets it to an organelle, especially if cDNA is extended >6 nt upstream; found in the flagellar proteome [PMID: 15998802] and associated with central pair projection C1b (PMID: 16030251).;Phosphoenolpyruvate hydratase; 2-phosphoglycerate dehydratase; EC 4.2.1.11 [GI:18143, Dumont et al. (1993) Plant Sci. 89, 55-67]; product localization unsure: an N-terminal extension also found in Dunaliella and At1g74030 potentially targets it to an organelle, especially if cDNA is extended >6 nt upstream; found in the flagellar proteome [PMID: 15998802] and associated with central pair projection C1b (PMID: 16030251).;Phosphoenolpyruvate hydratase; 2-phosphoglycerate dehydratase; EC 4.2.1.11 [GI:18143, Dumont et al. (1993) Plant Sci. 89, 55-67]; product localization unsure: an N-terminal extension also found in Dunaliella and At1g74030 potentially targets it to an organelle, especially if cDNA is extended >6 nt upstream; found in the flagellar proteome [PMID: 15998802] and associated with central pair projection C1b (PMID: 16030251).;Phosphoenolpyruvate hydratase; 2-phosphoglycerate dehydratase; EC 4.2.1.11 [GI:18143, Dumont et al. (1993) Plant Sci. 89, 55-67]; product localization unsure: an N-terminal extension also found in Dunaliella and At1g74030 potentially targets it to an organelle, especially if cDNA is extended >6 nt upstream; found in the flagellar proteome [PMID: 15998802] and associated with central pair projection C1b (PMID: 16030251).;Phosphoenolpyruvate hydratase; 2-phosphoglycerate dehydratase; EC 4.2.1.11 [GI:18143, Dumont et al. (1993) Plant Sci. 89, 55-67]; product localization unsure: an N-terminal extension also found in Dunaliella and At1g74030 potentially targets it to an organelle, especially if cDNA is extended >6 nt upstream; found in the flagellar proteome [PMID: 15998802] and associated with central pair projection C1b (PMID: 16030251)."
+Cre12.g537700			Mitochondrion				"g13223.t1;Cre12.g537700.t1.1"		
+Cre12.g493903			"Secretory pathway"			CSC7	"CSC7;g12074.t2"		"function unknown; homologs in Gonium, not Volvox"
+Cre12.g543000							g13709.t1		
+Cre12.g545602			Mitochondrion				g13796.t1		
+Cre12.g555450	GMM:3.4.2	"minor CHO metabolism.myo-inositol.InsP kinases"	Mitochondrion	GO:0008440	"inositol-1,4,5-trisphosphate 3-kinase activity"	PMK	"PMK;IMPK;Cre12.g555450.t1.1;g13423.t1;IPK"		"converts 1,3,4,6-InsP4 to 1,3,4,5,6-InsP5; Similar to Inositol Hexaphosphate Kinase H"
+Cre12.g484950			Mitochondrion				"g12035.t1;g12035.t1"		
+Cre12.g547350						CYG31	"g13606.t1;CYG31"		"C-terminal domain similar to membrane guanylyl cyclase OlGC1 [Oryzias latipes]"
+Cre12.g487000			Mitochondrion			CSV8	"CSV8;g12250.t1"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre12.g494550	GMM:27.4	"RNA.RNA binding"				RNP10	"g12057.t2;RNP10;g12057.t2;RNP10;g12057.t2;RNP10;RNP10;g12057.t2"		"putative RNA-binding protein; contains RNA-binding region RNP-1 (SPL6);putative RNA-binding protein; contains RNA-binding region RNP-1 (SPL6);putative RNA-binding protein; contains RNA-binding region RNP-1 (SPL6);putative RNA-binding protein; contains RNA-binding region RNP-1 (SPL6)"
+Cre12.g506550							g12438.t1		
+Cre12.g542400			Mitochondrion				g13724.t1		
+Cre12.g486900	GMM:12.4	N-metabolism.misc		"GO:0055114;GO:0050660;GO:0017150;GO:0008033"	"oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing"		"g12252.t1;Cre12.g486900.t1.1"		
+Cre12.g503950	"GMM:34.99;GMM:29.3.4.99"	"transport.misc;protein.targeting.secretory pathway.unspecified"					"g12490.t1;Cre12.g503950.t1.1;g12490.t1;Cre12.g503950.t1.1"		
+Cre12.g503800	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Chloroplast	GO:0005515	"protein binding"		"g12493.t1;RMT5;g12493.t1;RMT5"		"SET domain-containing methyltransferase; Similar to At1g143 F7A19.12, F16A14.25; putative ribulose-1,5 bisphosphate carboxylase/oxygenase large subunit N-methyltransferase [EC:2.1.1.127]. ChromoDB SDG3415;SET domain-containing methyltransferase; Similar to At1g143 F7A19.12, F16A14.25; putative ribulose-1,5 bisphosphate carboxylase/oxygenase large subunit N-methyltransferase [EC:2.1.1.127]. ChromoDB SDG3415"
+Cre12.g534550	"GMM:30.11;GMM:28.2"	"signalling.light;DNA.repair"	"Secretory pathway"			PHR4	"g13146.t1;PHR4;g13146.t1;PHR4"	"PHR4;PHR4"	"Similar to the photolyase/blue-light receptor (PHR2) in Arabidopsis;Similar to the photolyase/blue-light receptor (PHR2) in Arabidopsis"
+Cre12.g516851			Mitochondrion				"g12748.t1;Cre12.g516841.t1.2"		
+Cre12.g539800			Mitochondrion				"g13779.t1;Cre12.g539800.t1.1"		
+Cre12.g502450	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG8	"ELG8;g12522.t1;ELG8;g12522.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre12.g506000	"GMM:31.6.1.4.2;GMM:31.6.1.4.1"	"cell.motility.eukaryotes.axonemal dyneins.inner arm;cell.motility.eukaryotes.axonemal dyneins.outer arm"				DIC2	"Cre12.g506000.t1.1;IC70;ODA-IC2;IC69;ODA6;IC2;g12447.t1;ODA6;IC2;IC69;ODA-IC2;IC70;Cre12.g506000.t1.1;g12447.t1;IC69;ODA6;IC2;Cre12.g506000.t1.1;ODA-IC2;IC70;g12447.t1;g12447.t1;Cre12.g506000.t1.1;IC2;ODA6;ODA-IC2;IC70;IC69;g12447.t1;ODA6;IC2;ODA-IC2;IC69;IC70;Cre12.g506000.t1.1"	"DIC2;DIC2;DIC2;DIC2;DIC2"	"IC2 component of outer arm dynein; WD repeat protein. Null mutations block ODA assembly;IC2 component of outer arm dynein; WD repeat protein. Null mutations block ODA assembly;IC2 component of outer arm dynein; WD repeat protein. Null mutations block ODA assembly;IC2 component of outer arm dynein; WD repeat protein. Null mutations block ODA assembly;IC2 component of outer arm dynein; WD repeat protein. Null mutations block ODA assembly"
+Cre12.g541851			Chloroplast	"GO:0019478;GO:0016788;GO:0005737"	"D-amino acid catabolic process;hydrolase activity, acting on ester bonds;cytoplasm"		"Cre12.g541840.t1.2;g13736.t1"		
+Cre12.g515650	GMM:29.2.3	protein.synthesis.initiation		"GO:0005852;GO:0005737;GO:0003743"	"eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity"	EIF3K	"Cre12.g515650.t1.1;g12721.t1;EIF3K;g12721.t1;Cre12.g515650.t1.1;EIF3K"	"EIF3K;EIF3K"	"putative Eukaryotic translation initiation factor 3 subunit 11 (eIF-3 p25) (eIF3k); null-allele mutant was isolated (PMID 29743196);putative Eukaryotic translation initiation factor 3 subunit 11 (eIF-3 p25) (eIF3k); null-allele mutant was isolated (PMID 29743196)"
+Cre12.g522900			Chloroplast			LYR4	"LYR4;g12877.t1;Cre12.g522900.t1.1"		"Proteins in this family have been identified as a component of the higher eukaryotic NADH complex"
+Cre12.g499205			Mitochondrion				g12599.t2		
+Cre12.g535800			Mitochondrion				g13178.t1		
+Cre12.g529700						FAP401	"FAP401;Cre12.g529700.t1.1;g13041.t1"		"Found in C.reinhardtii and Volvox but not strongly conserved elsewhere"
+Cre12.g523340			Chloroplast				"g12889.t2;RPN1B"	OST1B	"Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1A; similar to ribophorin I, an essential subunit of oligosaccharyltransferase (OST), a glycosyl transferase which is also known as dolichyl-diphosphooligosaccharide--protein glycosyltransferase [EC 2.4.1.119]; catalyses the transfer of an oligosaccharide from dolichol pyrophosphate to selected asparagine residues of nascent polypeptides; Co-orthologous along with Cre12.g523300 with two Ribophorin genes in Arabidopsis thaliana (AT1G7640"
+Cre12.g540550			"Secretory pathway"						
+Cre12.g554528			Mitochondrion			PPR10	"g13817.t1;PPR10;Cre27.g775550.t1.2;Cre27.g775550.t1.1"	PPR10	
+Cre12.g498100	GMM:29.2.3	protein.synthesis.initiation		"GO:0005852;GO:0005737;GO:0005515;GO:0003743"	"eukaryotic translation initiation factor 3 complex;cytoplasm;protein binding;translation initiation factor activity"	EIF3E	"Cre12.g498100.t1.1;EIF3E;g12623.t1;g12623.t1;EIF3E;Cre12.g498100.t1.1"	"EIF3E;EIF3E"	"putative eIF3e eukaryotic translation initiation factor 3, subunit 6 (48kD);putative eIF3e eukaryotic translation initiation factor 3, subunit 6 (48kD)"
+Cre12.g533150			"Secretory pathway"				g13116.t1		
+Cre12.g515900	"GMM:31.3;GMM:28.2"	"cell.cycle;DNA.repair"	Mitochondrion			TOPBP1	"Cre12.g515900.t1.1;DIV21;g12726.t1;g12726.t1;DIV21;Cre12.g515900.t1.1;Cre12.g515900.t1.1;g12726.t1;DIV21"	"TOPBP1;TOPBP1;TOPBP1"	"ts-lethal mutations block DNA replication;ts-lethal mutations block DNA replication;ts-lethal mutations block DNA replication"
+Cre12.g502678			Chloroplast						
+Cre12.g531283			Mitochondrion						
+Cre12.g495450			Mitochondrion				g12130.t1		
+Cre12.g560950	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast	"GO:0016020;GO:0015979;GO:0009522"	"membrane;photosynthesis;photosystem I"	PSAG	"Cre12.g560950.t1.1;PSAG;g13299.t1"	PSAG1	"Chloroplast precursor"
+Cre12.g551502			Mitochondrion				"g13515.t1;Cre12.g551446.t1.2"		
+Cre12.g541250	"GMM:34.4;GMM:1.5.3"	"transport.nitrate;PS.carbon concentrating mechanism.algal"	Chloroplast	"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"	NAR1.5	"g13749.t1;Cre12.g541250.t1.1;NAR1.5;NAR1.5;Cre12.g541250.t1.1;g13749.t1;Cre12.g541250.t1.1;NAR1.5;g13749.t1;Cre12.g541250.t1.1;NAR1.5;g13749.t1"	"NAR1E;NAR1E;NAR1E;NAR1E"	"belongs to the family of formate/nitrite transporters; possibly chloroplastic [PMID: 11912227; accession AY612641];belongs to the family of formate/nitrite transporters; possibly chloroplastic [PMID: 11912227; accession AY612641];belongs to the family of formate/nitrite transporters; possibly chloroplastic [PMID: 11912227; accession AY612641];belongs to the family of formate/nitrite transporters; possibly chloroplastic [PMID: 11912227; accession AY612641]"
+Cre12.g558400			Chloroplast	"GO:0008616;GO:0008479;GO:0006400"	"queuosine biosynthetic process;queuine tRNA-ribosyltransferase activity;tRNA modification"		"g13361.t1;TRR2;TRR2;g13361.t1;g13361.t1;TRR2"	"TRR2;TRR2;TRR2"	"modifies tRNAs for Asn, Asp, His, and Tyr with hypermodified base, queuine, at position 34 (the first/wobble posiition of the anticodon). Possibly chloroplastic;modifies tRNAs for Asn, Asp, His, and Tyr with hypermodified base, queuine, at position 34 (the first/wobble posiition of the anticodon). Possibly chloroplastic;modifies tRNAs for Asn, Asp, His, and Tyr with hypermodified base, queuine, at position 34 (the first/wobble posiition of the anticodon). Possibly chloroplastic"
+Cre12.g522850	"GMM:29.2.3;GMM:28.1;GMM:27.1.2"	"protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL55	"Cre12.g522850.t1.1;HEL55;g12876.t1"		
+Cre12.g560900	GMM:16.1.4	"secondary metabolism.isoprenoids.carotenoids"	Chloroplast			AOF7	"g13300.t1;Cre12.g560900.t1.1;AOF7;g13300.t1;Cre12.g560900.t1.1;AOF7"	"CPLD35;CPLD35"	"Conserved in the plant lineage and Diatoms; strong similarity to oxidoreductase in Arabidopsis. Q9SF45. ACCESSION NP_187569. Arabidopsis protein is predicted to be chloroplast targeted.;Conserved in the plant lineage and Diatoms; strong similarity to oxidoreductase in Arabidopsis. Q9SF45. ACCESSION NP_187569. Arabidopsis protein is predicted to be chloroplast targeted."
+Cre12.g534900									
+Cre12.g526210									
+Cre12.g484550			Mitochondrion				"g12027.t1;Cre12.g484550.t1.1"		
+Cre12.g510500			"Secretory pathway"				"g12339.t1;g12339.t1;g12339.t1;g12339.t1;g12339.t1"		
+Cre12.g519500	GMM:34.21	transport.calcium	Chloroplast	"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	CAX1	"CAX1;VCX1;g12804.t1;Cre12.g519500.t1.1"	CAX1	"Ca2+/Na+/possibly Co2+ transporter; Confers Ca2+, Na+, and Co2+ tolerance in yeast; Ca2+/H+ and Na+/H+ exchange activity observed using vacuolar-enriched membrane vesicles; Related to fungi and plants Ca2+/H+ antiporters (CAX); related to yeast VCX1 (or Manganese resistance 1); One of three paralogs in C.reinhardtii (Cre09.g409750, Cre12.g519500, Cre16.g649466); Co-orthologous with three CAX genes in Arabidopsis thaliana (AT1G55720.1, AT1G55730.1, AT3G13320.1)"
+Cre12.g552952									
+Cre12.g531200			Mitochondrion	"GO:0055114;GO:0016491;GO:0005507"	"oxidation-reduction process;oxidoreductase activity;copper ion binding"	FOX2	"g13074.t1;g13074.t1;g13074.t1"	"FOX2;FOX2;FOX2"	"Similarity to FOX1, but lacks N-terminal membrane anchor; protein abundance increases after prolonged Fe deficiency;;Similarity to FOX1, but lacks N-terminal membrane anchor; protein abundance increases after prolonged Fe deficiency;;Similarity to FOX1, but lacks N-terminal membrane anchor; protein abundance increases after prolonged Fe deficiency;"
+Cre12.g506900							"Cre12.g506900.t1.1;g12431.t1"		
+Cre12.g514950			Mitochondrion	"GO:0043139;GO:0003697"	"5'-3' DNA helicase activity;single-stranded DNA binding"	CGLD17	"g12706.t1;HEL53"	CGLD17	"conserved protein related to Arabidopsis protein with Toprim domain"
+Cre12.g487950			"Secretory pathway"				"g12228.t1;g12228.t1"		
+Cre12.g552550							g13487.t1		
+Cre12.g546900			Chloroplast				"g13616.t2;g13616.t2"		
+Cre12.g490300	GMM:21.6	"redox.dismutases and catalases"	"Secretory pathway"	"GO:0055114;GO:0046872;GO:0006801;GO:0004784"	"oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity"	MSD4	"g12179.t1;Cre12.g490300.t1.1"	MSD4	"Expression is up-regulated severalfold in Mn-deficient cells"
+Cre12.g504200	GMM:29.2.1.2.1.23	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S23"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS23	"Cre12.g504200.t1.1;g12485.t1;Cre12.g504200.t1.1;g12485.t1"	"RPS23;RPS23"	"Cytosolic 40S small ribosomal subunit protein S23;Cytosolic 40S small ribosomal subunit protein S23"
+Cre12.g549950				"GO:0016192;GO:0016021;GO:0006810"	"vesicle-mediated transport;integral component of membrane;transport"		"g13549.t1;Cre12.g549950.t1.1"		"SFT2-like protein that is conserved protein with four putative transmembrane helices, that may be involved in vesicular transport in later Golgi compartments"
+Cre12.g539150									
+Cre12.g517500							"g12761.t1;g12761.t1;g12761.t1;g12761.t1"		
+Cre12.g558526			Mitochondrion				"g13358.t1;g13358.t1"		
+Cre12.g519100	"GMM:16.99;GMM:11.1.1.2.1"	"secondary metabolism.unspecified;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.alpha carboxyltransferase"	Chloroplast			ACC1	"ACX2;g12797.t1;Cre12.g519100.t1.1"	ACC1	"Alpha-carboxyltransferase subunit of multimeric plastid enzyme"
+Cre12.g501950			"Secretory pathway"	"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"		"g12534.t1;PPP39;g12534.t1;PPP39;PPP39;g12534.t1;PPP39;g12534.t1"		
+Cre12.g556653							"g13822.t1;Cre27.g775800.t1.1"		
+Cre12.g548800			Chloroplast				g13573.t1		
+Cre12.g507900							"g12399.t1;g12399.t1"		
+Cre12.g517900	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	"GO:0017038;GO:0016020;GO:0005524"	"protein import;membrane;ATP binding"	SECA1	"g12770.t1;SCA1;SCA1;g12770.t1;g12770.t1;SCA1;SCA1;g12770.t1;SCA1;g12770.t1;SCA1;g12770.t1;SCA1;g12770.t1;g12770.t1;SCA1;g12770.t1;SCA1;SCA1;g12770.t1"	"SECA1;SECA1;SECA1;SECA1;SECA1;SECA1;SECA1;SECA1;SECA1;SECA1"	"SecA protein associated with import of proteins into chloroplast. Strong homology to SecA;SecA protein associated with import of proteins into chloroplast. Strong homology to SecA;SecA protein associated with import of proteins into chloroplast. Strong homology to SecA;SecA protein associated with import of proteins into chloroplast. Strong homology to SecA;SecA protein associated with import of proteins into chloroplast. Strong homology to SecA;SecA protein associated with import of proteins into chloroplast. Strong homology to SecA;SecA protein associated with import of proteins into chloroplast. Strong homology to SecA;SecA protein associated with import of proteins into chloroplast. Strong homology to SecA;SecA protein associated with import of proteins into chloroplast. Strong homology to SecA;SecA protein associated with import of proteins into chloroplast. Strong homology to SecA"
+Cre12.g528300			Mitochondrion				"g13010.t1;g13010.t1;g13010.t1"		
+Cre12.g536550	"GMM:31.6.1.4.2;GMM:31.6.1.4.1"	"cell.motility.eukaryotes.axonemal dyneins.inner arm;cell.motility.eukaryotes.axonemal dyneins.outer arm"		GO:0005515	"protein binding"	DIC1	"ODA-IC1;ODA9;g13194.t1;Cre12.g536550.t1.1;IC78"	DIC1	"IC1 component of outer arm dynein; WD repeat protein"
+Cre12.g544950							"Cre12.g544950.t1.1;g13660.t1"		
+Cre12.g558650	GMM:29.2.3	protein.synthesis.initiation		GO:0044237	"cellular metabolic process"	EIF2BD	"EIF2BD;g13355.t1;EIF2B;g13355.t1;EIF2BD;EIF2B;g13355.t1;EIF2BD;EIF2B"	"EIF2BD;EIF2BD;EIF2BD"	"putative Eukaryotic translation initiation factor 2B subunit 4 (EIF-2B GDP-GTP EXCHANGE FACTOR);putative Eukaryotic translation initiation factor 2B subunit 4 (EIF-2B GDP-GTP EXCHANGE FACTOR);putative Eukaryotic translation initiation factor 2B subunit 4 (EIF-2B GDP-GTP EXCHANGE FACTOR)"
+Cre12.g557350				"GO:0055114;GO:0051537;GO:0016491"	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"		"g13382.t1;Cre12.g557350.t1.1;FAO9;g13382.t1;Cre12.g557350.t1.1;FAO9"		"FAD-dependent oxidoreductase, contains a Rieske [2Fe-2S] iron-sulphur domain; possible sarcosine oxidase or plastoquinol-plastocyanin reductase;FAD-dependent oxidoreductase, contains a Rieske [2Fe-2S] iron-sulphur domain; possible sarcosine oxidase or plastoquinol-plastocyanin reductase"
+Cre12.g494252			Mitochondrion				g12064.t1		
+Cre12.g498900	GMM:29.2.1.2.1.7	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S7"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS7	"g12607.t1;Cre12.g498900.t1.1;g12607.t1;Cre12.g498900.t1.1"	"RPS7;RPS7"	"Cytosolic 40S small ribosomal subunit protein S7;Cytosolic 40S small ribosomal subunit protein S7"
+Cre12.g520072									
+Cre12.g491950									
+Cre12.g546550	GMM:15.2	"metal handling.binding, chelation and storage"	"Secretory pathway"			FEA1	"g13624.t1;g13624.t1"	"FEA1;FEA1"	"Expression induced by Fe deficiency; secreted/ glycosylated; FEA proteins are lost to the medium in cell-wall less mutants, which makes them more sensitive to Fe deficiency; Complements Arabidopsis thaliana irt1 mutant and yeast ftr1 and fet3 fet4 mutants; Increases Fe content in A. thaliana and cassava roots; High-CO2 inducible;Expression induced by Fe deficiency; secreted/ glycosylated; FEA proteins are lost to the medium in cell-wall less mutants, which makes them more sensitive to Fe deficiency; Complements Arabidopsis thaliana irt1 mutant and yeast ftr1 and fet3 fet4 mutants; Increases Fe content in A. thaliana and cassava roots; High-CO2 inducible"
+Cre12.g534850			Mitochondrion				"g13153.t1;Cre12.g534850.t1.1"		
+Cre12.g545150			Mitochondrion				"g13656.t1;g13656.t1;g13656.t1;g13656.t1;g13656.t1"		
+Cre12.g556450				"GO:0016592;GO:0006357;GO:0001104"	"mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity"		"g13403.t1;g13403.t1"		
+Cre12.g523900									
+Cre12.g546950							"g13615.t1;g13615.t1;g13615.t1"		
+Cre12.g553600	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Chloroplast	GO:0005515	"protein binding"		g13462.t1		
+Cre12.g484050	GMM:29.2.1.2.2.36	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L36"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL36	"g12015.t1;Cre12.g484050.t1.1"	RPL36	"Cytosolic 60S large ribosomal subunit protein L36"
+Cre12.g485600	"GMM:30.1;GMM:29.4.1;GMM:29.4"	"signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification"	Chloroplast	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g12052.t1;Cre12.g485600.t1.1;CKIN2.13"	SNRK2M	"Mediates abiotic stress responses"
+Cre12.g517350	GMM:27.3.99	"RNA.regulation of transcription.unclassified"				LSD1	"Cre12.g517350.t1.1;g12758.t1"	LSD1	"Zinc-finger protein LSD1; Orthologous to LSD1 in Arabidopsis; AtLSD1 monitors a superoxide-dependent signal and negatively regulates a plant cell death pathway in response to signals emanating from cells undergoing pathogen-induced hypersensitive cell death [PMID: 9054508]"
+Cre12.g499902			Mitochondrion						
+Cre12.g556950							"Cre12.g556950.t1.1;g13389.t1;g13389.t1;Cre12.g556950.t1.1"		
+Cre12.g526339				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g523150	GMM:29.6.1	"protein.folding.prefoldin and trigger factor"	Mitochondrion			PFD5	"PFD5;g12883.t1;Cre12.g523150.t1.1"	PFD5	"alpha-type subunit of molecular chaperone Prefoldin (PMID: 11599560); KE2 Family protein; contains two coiled-coil domain separated by a beta-sheet; stabilizes polypeptide chains prior to folding within CCT chaperonin, in particular tubulin"
+Cre12.g551350			"Secretory pathway"			LAO2	"Cre12.g551350.t1.1;g13517.t1;g13517.t1;Cre12.g551350.t1.1"	"LAO2;LAO2"	"L-amino acid oxidase, accessory subunit M[beta]; induced by nitrogen starvation; gene is next to divergently-transcribed LAO1 coding for oxidase subunit M[alpha]; associates with it in the heavy form of the periplasmic L-aminoacid oxidase; experimentally-determined mature N-terminal sequence :QLAFLDY...; is heavyly O-glycosylated; contains a P-rich region and 6 repeats (actually an almost perfect duplication of a three-repeat element) of the YjgF_YER057c_UK114_like_3 domain; this domain is found in RidA, a;L-amino acid oxidase, accessory subunit M[beta]; induced by nitrogen starvation; gene is next to divergently-transcribed LAO1 coding for oxidase subunit M[alpha]; associates with it in the heavy form of the periplasmic L-aminoacid oxidase; experimentally-determined mature N-terminal sequence :QLAFLDY...; is heavyly O-glycosylated; contains a P-rich region and 6 repeats (actually an almost perfect duplication of a three-repeat element) of the YjgF_YER057c_UK114_like_3 domain; this domain is found in RidA, a"
+Cre12.g497450							"Cre12.g497450.t1.1;g12636.t1"	FAP412	"Found in the flagellar proteome"
+Cre12.g526603			Chloroplast	"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g515250						ROC7	"g12712.t1;ROC7;g12712.t1;ROC7"	"ROC7;ROC7"	"Circadian rhythm related protein of unknown function;Circadian rhythm related protein of unknown function"
+Cre12.g529600	GMM:27.2	RNA.transcription		"GO:0008270;GO:0006351;GO:0005634;GO:0003899;GO:0003677"	"zinc ion binding;transcription, DNA-templated;nucleus;DNA-directed RNA polymerase activity;DNA binding"	RPA1	"g13039.t1;Cre12.g529600.t1.1;RPA1"	RPA1	
+Cre12.g487450							"g12239.t1;g12239.t1"		
+Cre12.g529950	GMM:29.2.3	protein.synthesis.initiation		"GO:0005515;GO:0003723"	"protein binding;RNA binding"	EIF4G1	"Cre12.g529950.t1.1;EIF4G;EIF4G1;g13047.t1"	EIF4G1	"putative eukaryotic initiation factor 4, eIF4;"
+Cre12.g491952	GMM:30.2.12	"signalling.receptor kinases.leucine rich repeat XII"	"Secretory pathway"				g12152.t2		
+Cre12.g529550	GMM:29.4	"protein.postranslational modification"				ALK1	"CALK1;Cre12.g529550.t1.1;CALK;g13038.t1;ALK1;ALK1;Cre12.g529550.t1.1;CALK1;CALK;g13038.t1;CALK1;Cre12.g529550.t1.1;CALK;g13038.t1;ALK1;CALK;CALK1;Cre12.g529550.t1.1;g13038.t1;ALK1;ALK1;CALK;Cre12.g529550.t1.1;CALK1;g13038.t1;ALK1;g13038.t1;CALK1;Cre12.g529550.t1.1;CALK;g13038.t1;Cre12.g529550.t1.1;CALK1;CALK;ALK1"	"ALK1;ALK1;ALK1;ALK1;ALK1;ALK1;ALK1"	"Serine/threonine protein kinase; formerly known as CALK (Chlamydomonas Aurora-Like Kinase [gi:9716372]; Regulates chromosome segregation and cytokinesis in mammals;Serine/threonine protein kinase; formerly known as CALK (Chlamydomonas Aurora-Like Kinase [gi:9716372]; Regulates chromosome segregation and cytokinesis in mammals;Serine/threonine protein kinase; formerly known as CALK (Chlamydomonas Aurora-Like Kinase [gi:9716372]; Regulates chromosome segregation and cytokinesis in mammals;Serine/threonine protein kinase; formerly known as CALK (Chlamydomonas Aurora-Like Kinase [gi:9716372]; Regulates chromosome segregation and cytokinesis in mammals;Serine/threonine protein kinase; formerly known as CALK (Chlamydomonas Aurora-Like Kinase [gi:9716372]; Regulates chromosome segregation and cytokinesis in mammals;Serine/threonine protein kinase; formerly known as CALK (Chlamydomonas Aurora-Like Kinase [gi:9716372]; Regulates chromosome segregation and cytokinesis in mammals;Serine/threonine protein kinase; formerly known as CALK (Chlamydomonas Aurora-Like Kinase [gi:9716372]; Regulates chromosome segregation and cytokinesis in mammals"
+Cre12.g535100	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g13163.t1;Cre12.g535100.t1.1"		
+Cre12.g517000	"GMM:30.2.20;GMM:3.6;GMM:29.4.1;GMM:29.4"	"signalling.receptor kinases.wheat LRK10 like;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	MAPKKK7	"MAPKKK7;g12751.t1;MAPKKK7;g12751.t1;MAPKKK7;g12751.t1;MAPKKK7;g12751.t1"		"MAP3K7;MAP3K7;MAP3K7;MAP3K7"
+Cre12.g544401							g13675.t1		
+Cre12.g527350							"Cre12.g527350.t1.1;g12991.t1"		
+Cre12.g543800			Mitochondrion				"Cre12.g543800.t1.1;g13693.t1"		
+Cre12.g522200							"Cre12.g522200.t1.1;g12861.t1"		
+Cre12.g509150			Mitochondrion				g12369.t1		
+Cre12.g507005			Chloroplast				g12428.t1		
+Cre12.g523850	"GMM:9.5;GMM:29.3.2"	"mitochondrial electron transport / ATP synthesis.cytochrome c reductase;protein.targeting.mitochondria"	Mitochondrion			MPPB	"MPPB;Cre12.g523850.t1.1;g12900.t1;g12900.t1;MPPB;Cre12.g523850.t1.1;g12900.t1;Cre12.g523850.t1.1;MPPB"	"QCR1;QCR1;QCR1"	"Core I subunit of mitochondrial Complex III (ubiquinol:cytochrome c oxidoreductase); The mitochondrial processing peptidase beta subunit; putative mitochondrial processing peptidase, beta subunit (MPPB), identified in proteomic survey of mitochondrial membranes;Core I subunit of mitochondrial Complex III (ubiquinol:cytochrome c oxidoreductase); The mitochondrial processing peptidase beta subunit; putative mitochondrial processing peptidase, beta subunit (MPPB), identified in proteomic survey of mitochondrial membranes;Core I subunit of mitochondrial Complex III (ubiquinol:cytochrome c oxidoreductase); The mitochondrial processing peptidase beta subunit; putative mitochondrial processing peptidase, beta subunit (MPPB), identified in proteomic survey of mitochondrial membranes"
+Cre12.g556802	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Chloroplast	"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"				
+Cre12.g521350	GMM:29.3.4.4	"protein.targeting.secretory pathway.plasma membrane"		"GO:0016192;GO:0006904"	"vesicle-mediated transport;vesicle docking involved in exocytosis"	SLY1	"Cre12.g521350.t1.1;g12844.t1;SLY1"	SLY1	"Expressed Protein. SM (Sec1 family) protein, binds to SNAREs in the ER Golgi system"
+Cre12.g483500	GMM:35.1.19	"not assigned.no ontology.C2 domain-containing protein"					"g12002.t1;g12002.t1;g12002.t1;g12002.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g526750	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"	RBM8	"RMB8;g12979.t1;RBM8A;Cre12.g526750.t1.1;RBM8"	RBM8A	"also known as Y14; forms with MAGOH a stable heretodimer which interacts with RNA-bound EIF4A3; predominantly nuclear though present in cytoplasm; the EJC remains associated with spliced mRNAs until the first round of translation"
+Cre12.g495250	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Chloroplast			FAP31	"FAL15;g12126.t1"	FAP31	
+Cre12.g485250			"Secretory pathway"			CSV5	"CSV5;g12041.t1;CSV5;g12041.t1"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre12.g542200							"g13728.t1;g13728.t1;g13728.t1"		
+Cre12.g495957									
+Cre12.g534200			Chloroplast				g13138.t1		
+Cre12.g490050	"GMM:34.2;GMM:34.11"	"transport.sugars;transport.NDP-sugars at the ER"	Chloroplast				"g12184.t1;GMT1;Cre12.g490050.t1.1;TPT18;TPT19;TPT19;GMT1;Cre12.g490050.t1.1;TPT18;g12184.t1"		"homologous to Arabidopsis GONST1 (GDP-mannose Golgi transporter, vanadate-resistance protein) and GONST2;homologous to Arabidopsis GONST1 (GDP-mannose Golgi transporter, vanadate-resistance protein) and GONST2"
+Cre12.g532050	"GMM:29.4.1.59;GMM:29.4.1.57;GMM:29.4;GMM:20.1"	"protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification;stress.biotic"		"GO:0016567;GO:0006468;GO:0005524;GO:0004842;GO:0004672"	"protein ubiquitination;protein phosphorylation;ATP binding;ubiquitin-protein transferase activity;protein kinase activity"		"Cre12.g532050.t1.1;g13091.t1;Cre12.g532050.t1.1;g13091.t1;g13091.t1;Cre12.g532050.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g555000			"Secretory pathway"				"g13433.t1;g13433.t1"		
+Cre12.g489200	"GMM:33.99;GMM:33.2"	"development.unspecified;development.late embryogenesis abundant"	"Secretory pathway"				"g12201.t1;g12201.t1;g12201.t1"		
+Cre12.g492504									
+Cre12.g495050			"Secretory pathway"			OPR51	"Cre12.g495050.t1.1;g12122.t1;Cre12.g495050.t1.1;g12122.t1"	"OPR51;OPR51"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre12.g521050							"g12837.t1;mL119;Cre12.g521050.t1.1"	MRPL119	"Not a repeat protein; precisely located at the exit of the peptide channel, where it interacts with uL22m, uL24m, uL29m and bL32m and the L6 fragment (Walz et al 2021); forms contact with the inner membrane and thus a functional analog of mL45 and Mba1."
+Cre12.g489002			Chloroplast				g12208.t1		
+Cre12.g544650							g13669.t1		
+Cre12.g512790									
+Cre12.g558000	GMM:29.2.1.99.1.6	"protein.synthesis.ribosomal protein.unknown.small subunit.S6"		"GO:0019843;GO:0006412;GO:0005840;GO:0003735"	"rRNA binding;translation;ribosome;structural constituent of ribosome"	MRPS6	"bS6m;g13370.t1;MRPS6;MRPS6;bS6m;g13370.t1"	"MRPS6;MRPS6"	
+Cre12.g505100			Mitochondrion	"GO:0009411;GO:0006289;GO:0004519"	"response to UV;nucleotide-excision repair;endonuclease activity"		g12466.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g528550	GMM:17.3.1.1.1	"hormone metabolism.brassinosteroid.synthesis-degradation.BRs.DET2"	"Secretory pathway"				"g13015.t1;SRD1;g13015.t1;SRD1"		"Similar to steroid 5-alpha-reductase;Similar to steroid 5-alpha-reductase"
+Cre12.g560750			Mitochondrion	"GO:0006355;GO:0005739;GO:0003690"	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"		g13303.t1		
+Cre12.g500200	GMM:26.13	"misc.acid and other phosphatases"	"Secretory pathway"	GO:0016787	"hydrolase activity"	MPA2	"MPA2;g12572.t1"		
+Cre12.g504450			Mitochondrion				"g12479.t1;Cre12.g504450.t1.1"		
+Cre12.g556050	GMM:29.2.1.1.1.2.9	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L9"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	PRPL9	"Cre12.g556050.t1.1;g13411.t1;Cre12.g556050.t1.1;g13411.t1;g13411.t1;Cre12.g556050.t1.1"	"PRPL9;PRPL9;PRPL9"	"imported to chloroplast; Chloroplast large ribosomal subunit protein L9;imported to chloroplast; Chloroplast large ribosomal subunit protein L9;imported to chloroplast; Chloroplast large ribosomal subunit protein L9"
+Cre12.g514300				"GO:0016021;GO:0005783"	"integral component of membrane;endoplasmic reticulum"		"Cre12.g514300.t1.1;g12693.t1;g12693.t1;Cre12.g514300.t1.1"		
+Cre12.g533201			"Secretory pathway"				g13117.t1		
+Cre12.g496850			Mitochondrion				"g12648.t1;g12648.t1;g12648.t1"		
+Cre12.g512200	"GMM:34.99;GMM:34.2;GMM:34.16"	"transport.misc;transport.sugars;transport.ABC transporters and multidrug resistance systems"		"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	MFT26	"g12302.t1;MFT26;g12302.t1;MFT26"		"Major facilitator superfamily anti-transporter;Major facilitator superfamily anti-transporter"
+Cre12.g560200	GMM:26.24	"misc.GCN5-related N-acetyltransferase"		GO:0008080	"N-acetyltransferase activity"	NAT2	"Cre12.g560200.t1.1;NAT2;g13315.t1"		"Related to GCN5, a histone acetyltransferase"
+Cre12.g498200						FAP128	"Cre12.g498200.t1.1;g12621.t1"	FAP128	"Flagellar Associated Protein, found in the flagellar proteome"
+Cre12.g493854			"Secretory pathway"						
+Cre12.g512650							"g12293.t1;g12293.t1;g12293.t1"		
+Cre12.g490950			Chloroplast				"Cre12.g490950.t1.1;g12165.t2"		
+Cre12.g522950	GMM:31.2.5	cell.division.plastid	Chloroplast			MIND1	"g12878.t1;Cre12.g522950.t1.1;Cre12.g522950.t1.1;g12878.t1;Cre12.g522950.t1.1;g12878.t1;Cre12.g522950.t1.1;g12878.t1"	"MIND1;MIND1;MIND1;MIND1"	"Putative chloroplast septum site-determining protein MinD. Chloroplast-encoded in other Chlorophyte algae.;Putative chloroplast septum site-determining protein MinD. Chloroplast-encoded in other Chlorophyte algae.;Putative chloroplast septum site-determining protein MinD. Chloroplast-encoded in other Chlorophyte algae.;Putative chloroplast septum site-determining protein MinD. Chloroplast-encoded in other Chlorophyte algae."
+Cre12.g510650	GMM:1.3.7	"PS.calvin cycle.FBPase"	Chloroplast	"GO:0042578;GO:0042132;GO:0005975"	"phosphoric ester hydrolase activity;fructose 1,6-bisphosphate 1-phosphatase activity;carbohydrate metabolic process"	FBP2	"g12336.t1;FBP1;Cre12.g510650.t1.1;g12336.t1;FBP1;Cre12.g510650.t1.1;Cre12.g510650.t1.1;g12336.t1;FBP1;Cre12.g510650.t1.1;g12336.t1;FBP1;Cre12.g510650.t1.1;g12336.t1;FBP1"	"FBP2;FBP2;FBP2;FBP2;FBP2"	"Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme"
+Cre12.g536412			Mitochondrion				"g13190.t1;Cre12.g536412.t1.1;Cre12.g536412.t1.1;g13190.t1"		
+Cre12.g518550	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP54	"C1d-HC1;g12786.t1"	FAP54	"Found in the flagellar proteome [PMID: 15998802]; Identified in the flagellar basal body proteome [PMID: 15137946]; Upregulated by deflagellation; Together with FAP221, FAP46, FAP74, C1d-87 and calmodulin, form a single complex in the C1d projection; HC1 of C1d projection on central pair"
+Cre12.g523600							"g12893.t1;g12893.t1"		
+Cre12.g560350	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	CNK2	"g13312.t2;CNK2;g13312.t2;CNK2;CNK2;g13312.t2"	"CNK2;CNK2;CNK2"	"Named for Chlamydomonas NimA related kinase homolog 2 [gi:34334393]; Found in the flagellar proteome;Named for Chlamydomonas NimA related kinase homolog 2 [gi:34334393]; Found in the flagellar proteome;Named for Chlamydomonas NimA related kinase homolog 2 [gi:34334393]; Found in the flagellar proteome"
+Cre12.g508300						CGL144	g12388.t1	CGL144	
+Cre12.g557300				"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"BLZ10;g13383.t1;BLZ10;g13383.t1;g13383.t1;BLZ10;g13383.t1;BLZ10"		"Basic-leucine zipper (bZIP) transcription factor, probably responds to cAMP;Basic-leucine zipper (bZIP) transcription factor, probably responds to cAMP;Basic-leucine zipper (bZIP) transcription factor, probably responds to cAMP;Basic-leucine zipper (bZIP) transcription factor, probably responds to cAMP"
+Cre12.g540800			Mitochondrion				"Cre12.g540800.t1.1;g13760.t1"		
+Cre12.g538100	GMM:26.9	"misc.glutathione S transferases"		GO:0005515	"protein binding"		"GST9;g13231.t1;Cre12.g538100.t1.1"		
+Cre12.g555500				"GO:0009236;GO:0008939"	"cobalamin biosynthetic process;nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity"		"g13422.t1;Cre12.g555500.t1.1"		
+Cre12.g535700	"GMM:29.6.2.3;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat"	Chloroplast			HSP70D	"HSP70D;g13176.t1"	HSP70D	"HSP70D is one of 9 genes encoding HSP7-like proteins in Chlamydomonas; it is more similar to chloroplast than to mitochondrial HSP7s and contains an N-terminal extension, thus might be chloroplast-targeted;"
+Cre12.g518500							g12785.t1		
+Cre12.g530250							"g13053.t1;g13053.t1;g13053.t1;g13053.t1;g13053.t1"		
+Cre12.g515550	GMM:29.3.4.3	"protein.targeting.secretory pathway.vacuole"		"GO:0016192;GO:0006904"	"vesicle-mediated transport;vesicle docking involved in exocytosis"	VPS33	"VPS33;Cre12.g515550.t1.1;g12719.t1;VPS33;Cre12.g515550.t1.1;g12719.t1;Cre12.g515550.t1.1;g12719.t1;VPS33;g12719.t1;Cre12.g515550.t1.1;VPS33"	"VPS33;VPS33;VPS33;VPS33"	"Expressed Protein. SM (Sec1 family) protein, binds SNAREs in the Vacuolar system; part of the VPS-C complex controlling vacuolar targeting;Expressed Protein. SM (Sec1 family) protein, binds SNAREs in the Vacuolar system; part of the VPS-C complex controlling vacuolar targeting;Expressed Protein. SM (Sec1 family) protein, binds SNAREs in the Vacuolar system; part of the VPS-C complex controlling vacuolar targeting;Expressed Protein. SM (Sec1 family) protein, binds SNAREs in the Vacuolar system; part of the VPS-C complex controlling vacuolar targeting"
+Cre12.g548901			Mitochondrion						
+Cre12.g494650			"Secretory pathway"			CSV10	"CSV10;g12055.t1"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre12.g552200	GMM:2.2.2.2	"major CHO metabolism.degradation.starch.starch phosphorylase"	Chloroplast	"GO:0008184;GO:0005975"	"glycogen phosphorylase activity;carbohydrate metabolic process"	STA4	"PHO3;g13494.t1;PHOB;Cre12.g552200.t1.1;STA4"	PHOB1	"Identified as STA4 in a screen for starchless mutants"
+Cre12.g527250			Chloroplast				"g12989.t1;Cre12.g527250.t1.1;Cre12.g527250.t1.1;g12989.t1"		
+Cre12.g492750			Chloroplast	GO:2001070	"starch binding"		"g12095.t1;g12095.t1;g12095.t1"		
+Cre12.g499500	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	SAC3	"SAC3;g12589.t1;CKIN2.2;SNRK2.2"	SNRK2B	"Sulfur acclimation protein 3, Snf1-like serine/threonine kinase; positive and negative regulator of sulfur deficiency responses; NCBI accessions AF100162 (mRNA) and AAC98509 (protein); Mediates abiotic stress responses"
+Cre12.g501900	"GMM:3.5;GMM:2.2.1.3.2"	"minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.cell wall"	Mitochondrion			FFT2	"FFT2;g12535.t1;Cre12.g501900.t1.1;FFT2;Cre12.g501900.t1.1;g12535.t1"		"Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase;Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase"
+Cre12.g520900							"Cre12.g520900.t1.1;g12834.t1"		
+Cre12.g507556							g12408.t1		
+Cre12.g510250						VTC1	"VTC1;g12344.t1;Cre12.g510250.t1.1;VTC1;g12344.t1;Cre12.g510250.t1.1"	"VTC1;VTC1"	"Expressed Protein. Similar to Vacuolar Transport Chaperone.;Expressed Protein. Similar to Vacuolar Transport Chaperone."
+Cre12.g544250							"g13677.t1;Cre12.g544250.t1.1"		
+Cre12.g488800			Mitochondrion				"g12210.t1;g12210.t1"		
+Cre12.g488050	"GMM:3.5;GMM:2.2.1.3.2"	"minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.cell wall"				FFT5	"g12226.t1;FFT5;Cre12.g488050.t1.1;Cre12.g488050.t1.1;FFT5;g12226.t1;FFT5;Cre12.g488050.t1.1;g12226.t1;FFT5;Cre12.g488050.t1.1;g12226.t1"		"Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase;Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase;Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase;Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase"
+Cre12.g491050	GMM:23.5.4	"nucleotide metabolism.deoxynucleotide metabolism.ribonucleoside-diphosphate reductase"	Chloroplast	"GO:0055114;GO:0009186"	"oxidation-reduction process;deoxyribonucleoside diphosphate metabolic process"	RIR2	"NSG2;Cre12.g491050.t1.1;g12163.t1;RIR2A;DIV17;Cre12.g491050.t1.1;g12163.t1;NSG2;DIV17;RIR2A"	"RIR2;RIR2"	"Ribonucleotide reductase (RNR), small subunit. Previously annotated as RIR2A. Identified by Abe et al. 24 [PMID: 15459796] as NSG2, a gene expressed during nitrogen-starved gametogenesis. ts-lethal mutations block DNA replication (PMID 25336509);Ribonucleotide reductase (RNR), small subunit. Previously annotated as RIR2A. Identified by Abe et al. 24 [PMID: 15459796] as NSG2, a gene expressed during nitrogen-starved gametogenesis. ts-lethal mutations block DNA replication (PMID 25336509)"
+Cre12.g552700	GMM:31.6.1.11	cell.motility.eukaryotes.other	"Secretory pathway"	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"		g13484.t1		
+Cre12.g548955									
+Cre12.g540200	"GMM:29.2.3;GMM:27.1.2;GMM:27.1;GMM:17.5.3"	"protein.synthesis.initiation;RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL58	"HEL58;g13772.t1;Cre12.g540200.t1.1"		
+Cre12.g553000							"Cre12.g553000.t1.1;g13477.t1;g13477.t1;Cre12.g553000.t1.1"		
+Cre12.g531500						DRC3	"FAP134;g13080.t1;Cre12.g531500.t1.1"	DRC3	"Flagellar Associated Protein 134, found in the flagellar proteome; Upregulated by deflagellation;"
+Cre12.g524550							g12914.t1		
+Cre12.g534302							"g13141.t1;Cre12.g534302.t1.1;Cre12.g534302.t1.1;g13141.t1;g13141.t1;Cre12.g534302.t1.1;g13141.t1;Cre12.g534302.t1.1;g13141.t1;Cre12.g534302.t1.1"		
+Cre12.g545600				GO:0046872	"metal ion binding"		g13647.t1		
+Cre12.g532800			"Secretory pathway"				"Cre12.g532800.t1.1;g13108.t1"		
+Cre12.g488200			Chloroplast						
+Cre12.g497800			Chloroplast				"g12629.t1;g12629.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g508644	GMM:27.3.22	"RNA.regulation of transcription.homeobox transcription factor family (HB)"	"Secretory pathway"	"GO:0006355;GO:0003677"	"regulation of transcription, DNA-templated;DNA binding"	HDG1	"HDG1;g12383.t1;HDG1;g12383.t1"	"HDG1;HDG1"	"gamete-specific. Described by Lee et al. 28 [PMID: 1851927];gamete-specific. Described by Lee et al. 28 [PMID: 1851927]"
+Cre12.g488400	GMM:29.5.9	"protein.degradation.AAA type"	"Secretory pathway"	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"g12217.t1;g12217.t1"	"KATL5;KATL5"	
+Cre12.g527650			"Secretory pathway"				g12997.t1		
+Cre12.g558200			Chloroplast				"g13366.t1;g13366.t1;g13366.t1;g13366.t1;g13366.t1;g13366.t1"		
+Cre12.g488000	"GMM:3.5;GMM:2.2.1.3.3;GMM:2.2.1.3.2"	"minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.vacuolar;major CHO metabolism.degradation.sucrose.invertases.cell wall"	Chloroplast			FFT4	"Cre12.g488000.t1.1;g12227.t1;FFT4;g12227.t1;FFT4;Cre12.g488000.t1.1;FFT4;g12227.t1;Cre12.g488000.t1.1;Cre12.g488000.t1.1;g12227.t1;FFT4"		"Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase;Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase;Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase;Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase"
+Cre12.g561101	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"				ELG42	"ELG42;g13296.t1;g13296.t1;ELG42"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre12.g511100	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion				"g12326.t1;g12326.t1;g12326.t1"		
+Cre12.g526201				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g526559				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g12974.t1		
+Cre12.g544114	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"	Chloroplast	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN20-6			
+Cre12.g503850	"GMM:29.4;GMM:29.3.4.99"	"protein.postranslational modification;protein.targeting.secretory pathway.unspecified"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	ARL12	"ARL12;ARLP2;g12492.t1;ARL12;ARLP2;g12492.t1;ARL12;ARLP2;g12492.t1;g12492.t1;ARLP2;ARL12"		"Hypothetical conserved protein. Similar to Arl2-type of small GTPase, but is greatly longer and not typical of ARLs, splicing is speculative. Previously annotated as ARLP2 in GenBank;Hypothetical conserved protein. Similar to Arl2-type of small GTPase, but is greatly longer and not typical of ARLs, splicing is speculative. Previously annotated as ARLP2 in GenBank;Hypothetical conserved protein. Similar to Arl2-type of small GTPase, but is greatly longer and not typical of ARLs, splicing is speculative. Previously annotated as ARLP2 in GenBank;Hypothetical conserved protein. Similar to Arl2-type of small GTPase, but is greatly longer and not typical of ARLs, splicing is speculative. Previously annotated as ARLP2 in GenBank"
+Cre12.g551852			Mitochondrion				g13505.t1		
+Cre12.g505300							"Cre12.g505300.t1.1;g12461.t1;g12461.t1;Cre12.g505300.t1.1;Cre12.g505300.t1.1;g12461.t1"		
+Cre12.g539204			Mitochondrion						
+Cre12.g549800	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	CSK5	"Cre12.g549800.t1.1;g13552.t1;CSK5"		"ts-lethal mutant was isolated (PMID 29743196)"
+Cre12.g511550									
+Cre12.g520050			"Secretory pathway"				"g12814.t1;Cre12.g520050.t1.1;Cre12.g520050.t1.1;g12814.t1"		
+Cre12.g554150			Chloroplast	GO:0008270	"zinc ion binding"		"g13450.t1;Cre12.g554150.t1.1"		
+Cre12.g504750	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA16	"HTA43;Cre12.g504750.t1.1;g12473.t1"	HTA16	"replication linked H2A; histone gene cluster XVI (type 43AB)"
+Cre12.g508642									
+Cre12.g525650	"GMM:30.1.1;GMM:30.1"	"signalling.in sugar and nutrient physiology.misc;signalling.in sugar and nutrient physiology"				SUFS1	"g12935.t1;Cre12.g525650.t1.1;CSD4;SUFS;Cre12.g525650.t1.1;g12935.t1;CSD4;SUFS;g12935.t1;Cre12.g525650.t1.1;SUFS;CSD4;Cre12.g525650.t1.1;g12935.t1;SUFS;CSD4;Cre12.g525650.t1.1;g12935.t1;CSD4;SUFS"	"SUFS1;SUFS1;SUFS1;SUFS1;SUFS1"	"Cysteine desulfurase involved in iron-sulfur cluster biogenesis under oxidative stress and Fe limitation; likely localized to plastid, SufS/NifS homology; Related to iscS; involved in thiamine and molybdopterin biosynthesis; related to cyanobacterial type cysteine desulfurase or selenocysteine lyase;Cysteine desulfurase involved in iron-sulfur cluster biogenesis under oxidative stress and Fe limitation; likely localized to plastid, SufS/NifS homology; Related to iscS; involved in thiamine and molybdopterin biosynthesis; related to cyanobacterial type cysteine desulfurase or selenocysteine lyase;Cysteine desulfurase involved in iron-sulfur cluster biogenesis under oxidative stress and Fe limitation; likely localized to plastid, SufS/NifS homology; Related to iscS; involved in thiamine and molybdopterin biosynthesis; related to cyanobacterial type cysteine desulfurase or selenocysteine lyase;Cysteine desulfurase involved in iron-sulfur cluster biogenesis under oxidative stress and Fe limitation; likely localized to plastid, SufS/NifS homology; Related to iscS; involved in thiamine and molybdopterin biosynthesis; related to cyanobacterial type cysteine desulfurase or selenocysteine lyase;Cysteine desulfurase involved in iron-sulfur cluster biogenesis under oxidative stress and Fe limitation; likely localized to plastid, SufS/NifS homology; Related to iscS; involved in thiamine and molybdopterin biosynthesis; related to cyanobacterial type cysteine desulfurase or selenocysteine lyase"
+Cre12.g543052				GO:0071949	"FAD binding"		"Cre27.g774400.t1.2;g13790.t1;Cre27.g774400.t1.1;Cre27.g774400.t1.2;g13790.t1;Cre27.g774400.t1.1;g13790.t1;Cre27.g774400.t1.2;Cre27.g774400.t1.1"		
+Cre12.g536950									
+Cre12.g554350							"g13446.t1;Cre12.g554350.t1.1"		
+Cre12.g529500	"GMM:29.2.6;GMM:29.2.2.3.3;GMM:27.3.67"	"protein.synthesis.ribosomal RNA;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases;RNA.regulation of transcription.putative transcription regulator"		"GO:0032259;GO:0031167;GO:0008649;GO:0008168;GO:0006364;GO:0005634;GO:0001510"	"methylation;rRNA methylation;rRNA methyltransferase activity;methyltransferase activity;rRNA processing;nucleus;RNA methylation"		"Cre12.g529500.t1.1;RRM11;g13037.t1"	RRM11	"in the RrmJ/FtsJ family involved in 5S ribosome biogenesis"
+Cre12.g496450	"GMM:28.99;GMM:27.1.19"	"DNA.unspecified;RNA.processing.ribonucleases"	Chloroplast	"GO:0003723;GO:0000178"	"RNA binding;exosome (RNase complex)"	RRP4	"Cre12.g496450.t1.1;RRP4;g12655.t1"	RRP4	"Homologue of S. cerevisiae Rrp4, which is a core component of the exosome, a complex of multiple 3'-5' exoribonucleases involved in RNA processing and RNA degradation"
+Cre12.g545250				GO:0055114	"oxidation-reduction process"		g13654.t1		
+Cre12.g513650						FAP342	"g12680.t1;Cre12.g513650.t1.1"	FAP342	
+Cre12.g486478									
+Cre12.g486702			Mitochondrion				g12258.t1		
+Cre12.g511250							"g12323.t1;Cre12.g511250.t1.1;g12323.t1;Cre12.g511250.t1.1"		
+Cre12.g508200	GMM:27.4	"RNA.RNA binding"					"g12392.t1;Cre12.g508200.t1.1"		
+Cre12.g551977						PHC74	"g13811.t1;PHC74;Cre27.g775250.t1.1;g13811.t1;PHC74;Cre27.g775250.t1.1"		
+Cre12.g558050							"g13369.t1;Cre12.g558050.t1.1"		
+Cre12.g546100	GMM:31.1	cell.organisation	Chloroplast	"GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777"	"microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity"	FAP125	"KIN14-2;g13633.t2;g13633.t2;KIN14-2;KIN14-2;g13633.t2"	"FAP125;FAP125;FAP125"	"Found in the flagellar proteome; kinesin-14 (C-terminal motor) family; Similar to Kinesin KIF17;;Found in the flagellar proteome; kinesin-14 (C-terminal motor) family; Similar to Kinesin KIF17;;Found in the flagellar proteome; kinesin-14 (C-terminal motor) family; Similar to Kinesin KIF17;"
+Cre12.g550501									
+Cre12.g483720			Chloroplast	"GO:0006260;GO:0003697"	"DNA replication;single-stranded DNA binding"		"g12007.t1;Cre12.g483720.t1.1"		
+Cre12.g536750			Mitochondrion				"Cre12.g536750.t1.1;g13199.t1"		
+Cre12.g504100			Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PHX20	"g12487.t1;NFU2;PHX20;PFH20"		"Putative prolyl 4-hydroxylase similar to EGg Laying defective family member (egl-9) in C. elegans involved in hypoxia response"
+Cre12.g534600	GMM:29.3.2	protein.targeting.mitochondria		"GO:0045040;GO:0005742"	"protein import into mitochondrial outer membrane;mitochondrial outer membrane translocase complex"	TOM20	"Cre12.g534600.t1.1;g13148.t1"	TOM20	"This protein is unique to the plant and algal lineage, no ortholog in yeast;"
+Cre12.g500150	"GMM:5.10;GMM:5.1;GMM:16.4.2.1"	"fermentation.aldehyde dehydrogenase;fermentation.LDH;secondary metabolism.N misc.betaine.betaine-aldehyde dehydrogenase"	Mitochondrion	"GO:0055114;GO:0016491;GO:0008152"	"oxidation-reduction process;oxidoreductase activity;metabolic process"	ALD5	"ALDH2E1;g12573.t1;ALD5"	ALDH2	"Family 2 aldehyde dehydrogenase"
+Cre12.g509700							"g12357.t1;g12357.t1"		
+Cre12.g554929			Chloroplast				"Cre12.g554929.t1.1;g13435.t1"		
+Cre12.g525950	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g12943.t1;Cre12.g525950.t1.1;Cre12.g525950.t1.1;g12943.t1;g12943.t1;Cre12.g525950.t1.1"		
+Cre12.g508900	"GMM:30.6;GMM:3.6;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	MAPK6	"Cre12.g508900.t1.1;g12374.t1;MAPK6;MAPK6;g12374.t1;Cre12.g508900.t1.1;Cre12.g508900.t1.1;MAPK6;g12374.t1"		"Downstream kinase in the canonical MAP kinase pathway;Downstream kinase in the canonical MAP kinase pathway;Downstream kinase in the canonical MAP kinase pathway"
+Cre12.g537500	"GMM:30.4;GMM:3.4"	"signalling.phosphinositides;minor CHO metabolism.myo-inositol"		GO:0042578	"phosphoric ester hydrolase activity"		g13217.t1		
+Cre12.g490450			Chloroplast				"g12176.t1;g12176.t1"		
+Cre12.g486550							"g12261.t1;Cre12.g486550.t1.1;Cre12.g486550.t1.1;g12261.t1"		
+Cre12.g550702	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF13	"Cre27.g775100.t1.2;g13808.t1;Cre27.g775100.t1.1;TEF13"	TEF13	"Protein with unknown function, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]"
+Cre12.g559054									
+Cre12.g521336									
+Cre12.g492950	GMM:23.5.4	"nucleotide metabolism.deoxynucleotide metabolism.ribonucleoside-diphosphate reductase"		"GO:0055114;GO:0006260;GO:0005524;GO:0004748"	"oxidation-reduction process;DNA replication;ATP binding;ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor"	RIR1	"NSG5;Cre12.g492950.t1.1;DIV15;g12091.t1"	RIR1	"Ribonucleotide reductase (RNR), large subunit, class I; (NSG5) [PMID: 15459796]. Acclimation to changing CO2 concentrations and light intensities was studied by Yamano et al. 28 [PMID: 18322145]. Identified by Abe et al. 24 [PMID: 15459796] as NSG5.ts-lethal mutations block DNA replication (PMID 25336509)"
+Cre12.g521750							"g12852.t1;Cre12.g521750.t1.1"	NUP133	"133 kDa Nuclear Pore Complex Protein"
+Cre12.g545800						ROC55	"ROC55;g13639.t1;ROC11;ROC11;g13639.t1;ROC55"	"ROC55;ROC55"	"Circadian clock related leucine-rich repeat protein of unknown function;Circadian clock related leucine-rich repeat protein of unknown function"
+Cre12.g497400	GMM:27.2	RNA.transcription		"GO:0006383;GO:0005666;GO:0003899;GO:0003677"	"transcription from RNA polymerase III promoter;DNA-directed RNA polymerase III complex;DNA-directed RNA polymerase activity;DNA binding"	CGL119	"g12637.t1;Cre12.g497400.t1.1"	CGL119	"Conserved in the Green Lineage"
+Cre12.g516550				GO:0016757	"transferase activity, transferring glycosyl groups"	GTR16	"GTR16;Cre12.g516550.t1.1;g12741.t1;BMT1;BMT1;Cre12.g516550.t1.1;GTR16;g12741.t1;Cre12.g516550.t1.1;GTR16;g12741.t1;BMT1"		"Glycosyl transferase, possibly a beta-1,4-mannosyltransferase; Orthologous to AT1G16570 in Arabidopsis thaliana;Glycosyl transferase, possibly a beta-1,4-mannosyltransferase; Orthologous to AT1G16570 in Arabidopsis thaliana;Glycosyl transferase, possibly a beta-1,4-mannosyltransferase; Orthologous to AT1G16570 in Arabidopsis thaliana"
+Cre12.g540351						SELW2	SELENOW2	SELW2	"Selenocysteine in position 16; see XP_001693902.1; linked to SELW1"
+Cre12.g548051							"Cre12.g548033.t1.2;g13591.t1"		
+Cre12.g533800	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN22	"g13130.t1;Cre12.g533800.t1.1"	CYN22	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; cytosolic; similar to AtCYP22"
+Cre12.g487700			"Secretory pathway"				"Cre12.g487700.t1.1;g12233.t1;Cre12.g487700.t1.1;g12233.t1;g12233.t1;Cre12.g487700.t1.1;Cre12.g487700.t1.1;g12233.t1"		"Amidated at C-terminus by peptidylglycine alpha-amidating monooxygenase;Amidated at C-terminus by peptidylglycine alpha-amidating monooxygenase;Amidated at C-terminus by peptidylglycine alpha-amidating monooxygenase;Amidated at C-terminus by peptidylglycine alpha-amidating monooxygenase"
+Cre12.g543350	"GMM:5.3;GMM:26.11"	"fermentation.ADH;misc.alcohol dehydrogenases"		"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	FDH2	"g13702.t3;FDH2;FDH1"	GSNOR2	"One of two tandem paralogs of GSNOR (Cre12.g543350, Cre12.g543400);"
+Cre12.g517750			Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g12767.t1;g12767.t1"		
+Cre12.g558700	GMM:23.4.10	"nucleotide metabolism.phosphotransfer and pyrophosphatases.nucleoside diphosphate kinase"		"GO:0006241;GO:0006228;GO:0006183;GO:0006165;GO:0004550"	"CTP biosynthetic process;UTP biosynthetic process;GTP biosynthetic process;nucleoside diphosphate phosphorylation;nucleoside diphosphate kinase activity"	FAP67	"Cre12.g558700.t1.1;g13354.t1"	FAP67	"Found in the flagellar proteome [PMID: 15998802]; in basal body proteome as BUG5 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 15738400]; Similar to Nucleoside Diphosphate Kinase. Mouse mutation has situs inversus and hydrocephaly"
+Cre12.g559950	"GMM:9.99;GMM:26.30"	"mitochondrial electron transport / ATP synthesis.unspecified;misc.other Ferredoxins and Rieske domain"	Mitochondrion	"GO:0051536;GO:0009055"	"iron-sulfur cluster binding;electron carrier activity"	MFDX	" ADX1;MFDX;g13320.t1;Cre12.g559950.t1.1"	MFDX1	"Possibly mitochondrial;Orthologous to AtMFDX1 in Arabidopsis thaliana"
+Cre12.g522350	"GMM:29.1.13;GMM:29.1"	"protein.aa activation.tryptophan-tRNA ligase;protein.aa activation"		"GO:0006436;GO:0006418;GO:0005737;GO:0005524;GO:0004830;GO:0004812;GO:0000166"	"tryptophanyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;tryptophan-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding"	TSW1	"Cre12.g522350.t1.1;TSW1;g12864.t1;Cre12.g522350.t1.1;g12864.t1;TSW1;TSW1;g12864.t1;Cre12.g522350.t1.1"	"TSW1;TSW1;TSW1"	
+Cre12.g497100							"Cre12.g497100.t1.1;g12643.t1;Cre12.g497100.t1.1;g12643.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g485150	"GMM:4.2.8;GMM:4.1.8"	"glycolysis.plastid branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH);glycolysis.cytosolic branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH)"	Chloroplast	"GO:0055114;GO:0016620"	"oxidation-reduction process;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor"	GAP1	"Cre12.g485150.t1.1;g12039.t1;GAP1;GAP1a"	GAPC1	"GAP-Cp; Chloroplast isoform of glycolytic GAPDH; From the eukaryotic class of GAP dehydrogenase proteins"
+Cre12.g500500	GMM:17.3.1.2.2	"hormone metabolism.brassinosteroid.synthesis-degradation.sterols.SMT2"		"GO:0008168;GO:0008152;GO:0006694"	"methyltransferase activity;metabolic process;steroid biosynthetic process"	SMT1	"g12566.t1;SMT2;SMT1;STM1"	SMT1	
+Cre12.g542300	GMM:1.2.7	"PS.photorespiration.glycerate kinase"	Chloroplast			GLYK1	"g13726.t1;Cre12.g542300.t1.1;GLYK;GYK1"	GLYK1	"related to D-glycerate 3-kinase (GLYK) [PMID: 15980259]"
+Cre12.g493050				"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"		"Cre12.g493050.t1.1;g12089.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g546650	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC23	"UBC23;Cre12.g546650.t1.1;g13622.t1"	UBC23	"E2 Ubiquitin conjugating enzyme, subclass V"
+Cre12.g541950			Mitochondrion				"g13733.t1;Cre12.g541950.t1.1;g13733.t1;Cre12.g541950.t1.1;Cre12.g541950.t1.1;g13733.t1;Cre12.g541950.t1.1;g13733.t1"		
+Cre12.g535150			Mitochondrion				g13164.t1		
+Cre12.g485550	GMM:13.2.4.4	"amino acid metabolism.degradation.branched chain group.leucine"	Mitochondrion	GO:0003824	"catalytic activity"		"Cre12.g485550.t1.1;g12051.t1;Cre12.g485550.t1.1;g12051.t1"		
+Cre12.g492450	GMM:28.1	"DNA.synthesis/chromatin structure"		GO:0004386	"helicase activity"		"Cre12.g492450.t1.1;g12102.t1;SPL18;Cre12.g492450.t1.1;SPL18;g12102.t1"		"ATP-dependent RNA helicase, with homology to Ostreococcus tauri mRNA splicing factor;ATP-dependent RNA helicase, with homology to Ostreococcus tauri mRNA splicing factor"
+Cre12.g506300	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR18	"g12443.t1;Cre12.g506300.t1.1;HTR18"	HTR18	"replication linked H3; histone gene cluster XVIII (type 43AB)"
+Cre12.g515750	"GMM:34.7;GMM:34.2"	"transport.phosphate;transport.sugars"		"GO:0055085;GO:0016021"	"transmembrane transport;integral component of membrane"	NTP5	"PHT4-5;g12724.t1;NTP5;g12724.t1;NTP5;PHT4-5;PHT4-5;NTP5;g12724.t1"	"PHT4E;PHT4E;PHT4E"	
+Cre12.g493550				"GO:0006412;GO:0005840;GO:0005622;GO:0005515;GO:0003735"	"translation;ribosome;intracellular;protein binding;structural constituent of ribosome"	THK3	"THK3;Cre12.g493550.t1.1;g12079.t1"	THK3	
+Cre12.g539207									
+Cre12.g494900	GMM:29.4	"protein.postranslational modification"		GO:0016787	"hydrolase activity"		"Cre12.g494900.t1.1;PPP37;g12119.t1"		PP2A-c4
+Cre12.g550300	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g13542.t1		
+Cre12.g519700	GMM:33.99	development.unspecified	Chloroplast	GO:0005525	"GTP binding"				
+Cre12.g496250			Mitochondrion				g12661.t1		
+Cre12.g504300			Mitochondrion				g12482.t1		
+Cre12.g505600	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB17	"g12455.t1;Cre12.g505600.t1.1;HTB17"	HTB17	"replication linked H2B; histone gene cluster XVII (type 43AB)"
+Cre12.g520400	GMM:29.2.1.1.3.2.4	"protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L4"	Mitochondrion	"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	MRPL4	"Cre12.g520400.t1.1;MRPL4;g12823.t1;uL4m;MRPL4;Cre12.g520400.t1.1;uL4m;g12823.t1"	"MRPL4;MRPL4"	
+Cre12.g561400			"Secretory pathway"				"Cre12.g561400.t1.1;g13289.t1;Cre12.g561400.t1.1;g13289.t1"		
+Cre12.g533850			"Secretory pathway"				g13131.t1		
+Cre12.g489550							"g12194.t1;g12194.t1;g12194.t1;g12194.t1;g12194.t1;g12194.t1"		
+Cre12.g531750			"Secretory pathway"				"Cre12.g531750.t1.1;GT90-23;GT90F23;g13085.t1"		
+Cre12.g485276			"Secretory pathway"						
+Cre12.g491600	GMM:34.7	transport.phosphate	"Secretory pathway"	"GO:0016020;GO:0006817;GO:0005315"	"membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity"	PTB1	"PTB1;g12153.t1;PTB1;g12153.t1;PTB1;g12153.t1;PTB1;g12153.t1;PTB1;g12153.t1"	"PTB1;PTB1;PTB1;PTB1;PTB1"	"Phosphate transporter [gi:21218056], similar to yeast Pho89, Neurospora PHO4 probable Na+/Pi symporter. Knockout confers arsenate resistance [PMID: 12826625];Phosphate transporter [gi:21218056], similar to yeast Pho89, Neurospora PHO4 probable Na+/Pi symporter. Knockout confers arsenate resistance [PMID: 12826625];Phosphate transporter [gi:21218056], similar to yeast Pho89, Neurospora PHO4 probable Na+/Pi symporter. Knockout confers arsenate resistance [PMID: 12826625];Phosphate transporter [gi:21218056], similar to yeast Pho89, Neurospora PHO4 probable Na+/Pi symporter. Knockout confers arsenate resistance [PMID: 12826625];Phosphate transporter [gi:21218056], similar to yeast Pho89, Neurospora PHO4 probable Na+/Pi symporter. Knockout confers arsenate resistance [PMID: 12826625]"
+Cre12.g499200			Chloroplast				"g12597.t1;Cre12.g499200.t1.1;g12597.t1;Cre12.g499200.t1.1"		
+Cre12.g486050				"GO:0008270;GO:0005515;GO:0003676"	"zinc ion binding;protein binding;nucleic acid binding"		"Cre12.g486050.t1.1;g12276.t1"		
+Cre12.g549450	GMM:13.2.6.2	"amino acid metabolism.degradation.aromatic aa.tyrosine"		"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"Cre12.g549450.t1.1;g13559.t1;g13559.t1;Cre12.g549450.t1.1"		
+Cre12.g503200							"g12506.t1;Cre12.g503200.t1.1"		
+Cre12.g547651			Mitochondrion				"g13601.t3;Cre12.g547550.t2.1;g13601.t3;Cre12.g547550.t2.1;g13601.t3;Cre12.g547550.t2.1;g13601.t3;Cre12.g547550.t2.1;Cre12.g547550.t2.1;g13601.t3"		
+Cre12.g549500			Chloroplast				"Cre12.g549500.t1.1;g13558.t1"		
+Cre12.g513550	GMM:29.5.11.2	protein.degradation.ubiquitin.E1	Mitochondrion				"Cre12.g513550.t1.1;g12678.t1"		
+Cre12.g495953				"GO:0016020;GO:0006817;GO:0005315"	"membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity"		g12143.t1		
+Cre12.g547734			"Secretory pathway"				"Cre12.g547734.t1.1;g13598.t1"		
+Cre12.g560550	GMM:13.2.3.4	"amino acid metabolism.degradation.aspartate family.methionine"	Chloroplast	"GO:0016742;GO:0009058"	"hydroxymethyl-, formyl- and related transferase activity;biosynthetic process"	MTF1	"MTF1;g13308.t1"	MTF1	"Putative methionyl-tRNA formyltransferase (methionyl-tRNA transformylase [MTF]). Probably localised in the chloroplast rather than the mitochondrion."
+Cre12.g551127			Mitochondrion				"g13809.t1;Cre27.g775150.t1.1"		
+Cre12.g523050	GMM:30.4.1	"signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase"	Mitochondrion	"GO:0046488;GO:0016307;GO:0005524"	"phosphatidylinositol metabolic process;phosphatidylinositol phosphate kinase activity;ATP binding"	CCT11	"g12881.t1;CCT11;GEX204"	CCT11	"Putative T-complex protein 1 component, probably a 1-phosphatidylinositol-3-phosphate 5-kinase or 1-phosphatidylinositol-4-phosphate 5-kinase; ts-lethal mutant was isolated (PMID 29743196)"
+Cre12.g504550	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB15	"Cre12.g504550.t1.1;HTB15;g12477.t1"	HTB15	"replication linked H2B; histone gene cluster XV (type 34BA)"
+Cre12.g532327	GMM:29.5.7	protein.degradation.metalloprotease				APG10	"Cre12.g532327.t1.1;g13098.t1"		
+Cre12.g515150							"Cre12.g515150.t1.1;g12710.t1"		
+Cre12.g536150							g13185.t1		
+Cre12.g539121									
+Cre12.g510450				"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS28	"g12340.t1;Cre12.g510450.t1.1"	RPS28	"Cytosolic 40S small ribosomal subunit protein S28"
+Cre12.g529100	"GMM:34.1.1.2;GMM:34.1.1"	"transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit C;transport.p- and v-ATPases.H+-transporting two-sector ATPase"		"GO:0033177;GO:0015991;GO:0015078"	"proton-transporting two-sector ATPase complex, proton-transporting domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVL2	"ATPvL2;g13028.t1;Cre12.g529100.t1.1"	ATPVL2	"Putative vacuolar proton-ATPase 16 kDa proteolipid; Vacuolar membrane ATPase,V0 sector, subunit c"
+Cre12.g556400	"GMM:28.1.3;GMM:27.3.16"	"DNA.synthesis/chromatin structure.histone;RNA.regulation of transcription.CCAAT box binding factor family, HAP5"					g13404.t1		
+Cre12.g501150						MLT2	"Cre12.g501150.t1.1;g12553.t1"	MLT2	"low-complexity protein required for proper eyespot localization; mutant shows numerous eyspeots, sometimes in posterior half of the cell, and lacks MLT1; MLT2 is linked to MLT1"
+Cre12.g551353			"Secretory pathway"			LAO1			
+Cre12.g505450	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO17	"HFO17;Cre12.g505450.t1.1;g12458.t1"	HFO17	"replication linked H4; histone gene cluster XVII (type 43AB)"
+Cre12.g556550							"g13401.t1;g13401.t1;g13401.t1"		
+Cre12.g526010				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"		g12946.t1		
+Cre12.g512550							"g12295.t1;Cre12.g512550.t1.1"		
+Cre12.g525802	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre12.g503250			"Secretory pathway"				"g12505.t1;Cre12.g503250.t1.1"		
+Cre12.g529150	GMM:29.4	"protein.postranslational modification"		"GO:0006470;GO:0004722;GO:0003824"	"protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity"	FAP314	"Cre12.g529150.t1.1;PP2C1;g13029.t1;PPP40"	FAP314	"Protein phosphatase 2C homolog 1; serine/threonine protein phosphatase; found in the flagellar proteome [PMID: 15998802]; similar to protein phosphatase 2C epsilon"
+Cre12.g519600			"Secretory pathway"				g12806.t1		
+Cre12.g494052			Mitochondrion						
+Cre12.g532151	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"	GO:0016020	membrane	ERM7	"g13093.t1;ERM7"		"transmembrane protein with a DUF221 domain of unknown function; this domain is present in many eukaryotes, in particular in Arabidopsis ERD4 (early response to dehydration)"
+Cre12.g509250	GMM:21.1	redox.thioredoxin	Mitochondrion	GO:0045454	"cell redox homeostasis"	EYE2	"EYE2;g12367.t1"	EYE2	"Thioredoxin superfamily protein required for eyespot assembly; contains a LysM domain; the conserved thioredoxin active site cys residues are not required for eyespot assembly, suggestive of a chaperonin-type function; PMID: 11454753; Genbank entry AF233430"
+Cre12.g539208			"Secretory pathway"				g13275.t1		
+Cre12.g498700			Chloroplast			CPLD13	"g12611.t1;Cre12.g498700.t1.1"	CPLD13	
+Cre12.g512600	GMM:29.2.1.2.2.18	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L18"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL18	"Cre12.g512600.t1.1;g12294.t1;Cre12.g512600.t1.1;g12294.t1;g12294.t1;Cre12.g512600.t1.1;g12294.t1;Cre12.g512600.t1.1"	"RPL18;RPL18;RPL18;RPL18"	"Cytosolic 60S large ribosomal subunit protein L18;Cytosolic 60S large ribosomal subunit protein L18;Cytosolic 60S large ribosomal subunit protein L18;Cytosolic 60S large ribosomal subunit protein L18"
+Cre12.g551100							"Cre12.g551100.t1.1;g13523.t1"		
+Cre12.g553052			"Secretory pathway"						
+Cre12.g557078			"Secretory pathway"	"GO:0055114;GO:0016715;GO:0005507;GO:0004497"	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;copper ion binding;monooxygenase activity"		"g13823.t1;Cre27.g775850.t1.1;Cre27.g775850.t1.2"		
+Cre12.g490100	"GMM:34.2;GMM:34.11"	"transport.sugars;transport.NDP-sugars at the ER"					"TPT19;Cre12.g490100.t1.1;GMT2;g12183.t1"	TPT2	"homologous to Arabidopsis GONST1 (GDP-mannose Golgi transporter, vanadate-resistance protein) and GONST2; this is the longer isoform, possibly with a different localization"
+Cre12.g514900	GMM:29.3.2	protein.targeting.mitochondria		GO:0045039	"protein import into mitochondrial inner membrane"	TIM10	"Cre12.g514900.t1.1;g12705.t1"	TIM10	"Mitochondrial import inner membrane translocase subunit of 10 kDa"
+Cre12.g484375									
+Cre12.g530700	GMM:28.1.3	"DNA.synthesis/chromatin structure.histone"		"GO:0006352;GO:0005669"	"DNA-templated transcription, initiation;transcription factor TFIID complex"		"Cre12.g530700.t1.1;g13062.t1;g13062.t1;Cre12.g530700.t1.1;Cre12.g530700.t1.1;g13062.t1;g13062.t1;Cre12.g530700.t1.1;Cre12.g530700.t1.1;g13062.t1;g13062.t1;Cre12.g530700.t1.1"		
+Cre12.g484650							"g12029.t1;g12029.t1"		
+Cre12.g537226			"Secretory pathway"						
+Cre12.g534915									
+Cre12.g539141									
+Cre12.g557850	GMM:24.1	"biodegradation of xenobiotics.hydroxyacylglutathione hydrolase"	"Secretory pathway"	GO:0005515	"protein binding"		g13373.t1		
+Cre12.g557600	GMM:23.4.1	"nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase"		"GO:0019205;GO:0006139;GO:0005524;GO:0004017"	"nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding;adenylate kinase activity"	ADK4	"g13378.t1;ADK4"		"single domain adenylate kinase"
+Cre12.g560902									
+Cre12.g553300	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"Cre12.g553300.t1.1;g13470.t1"		
+Cre12.g547000			Chloroplast	GO:0002949	"tRNA threonylcarbamoyladenosine modification"		"Cre12.g547000.t1.1;g13613.t1"		
+Cre12.g510034	GMM:35.1.27	"not assigned.no ontology.tetratricopeptide repeat (TPR)"	Mitochondrion				g12350.t1		
+Cre12.g557800			Mitochondrion	GO:0003677	"DNA binding"		"g13374.t1;Cre12.g557800.t1.1;Cre12.g557800.t1.1;g13374.t1"		
+Cre12.g521150	GMM:27.3.8	"RNA.regulation of transcription.C2C2(Zn) DOF zinc finger family"		"GO:0006355;GO:0003677"	"regulation of transcription, DNA-templated;DNA binding"	CGL19	"g12839.t1;Cre12.g521150.t1.1;Cre12.g521150.t1.1;g12839.t1;g12839.t1;Cre12.g521150.t1.1;g12839.t1;Cre12.g521150.t1.1"	"CGL19;CGL19;CGL19;CGL19"	"Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre12.g543550			Mitochondrion				g13698.t1		
+Cre12.g506600			Chloroplast			LPN1	"Cre12.g506600.t1.1;LPN1;PAH1;g12437.t1;Cre12.g506600.t1.1;g12437.t1;PAH1;LPN1"		"Possesses conserved N-terminal Lipin/Ned1/Smp2 (LNS2) domain; Previously identified as Lipin family protein;Possesses conserved N-terminal Lipin/Ned1/Smp2 (LNS2) domain; Previously identified as Lipin family protein"
+Cre12.g527850			"Secretory pathway"	GO:0043565	"sequence-specific DNA binding"		"g13001.t1;TRA1;TRA1;g13001.t1;TRA1;g13001.t1;g13001.t1;TRA1;TRA1;g13001.t1;TRA1;g13001.t1;g13001.t1;TRA1"	"TRA1;TRA1;TRA1;TRA1;TRA1;TRA1;TRA1"	"RNA and ssDNA-binding protein of unknown function, necessary for stabilization of the Trax protein [PMID: 17028328];RNA and ssDNA-binding protein of unknown function, necessary for stabilization of the Trax protein [PMID: 17028328];RNA and ssDNA-binding protein of unknown function, necessary for stabilization of the Trax protein [PMID: 17028328];RNA and ssDNA-binding protein of unknown function, necessary for stabilization of the Trax protein [PMID: 17028328];RNA and ssDNA-binding protein of unknown function, necessary for stabilization of the Trax protein [PMID: 17028328];RNA and ssDNA-binding protein of unknown function, necessary for stabilization of the Trax protein [PMID: 17028328];RNA and ssDNA-binding protein of unknown function, necessary for stabilization of the Trax protein [PMID: 17028328]"
+Cre12.g543900			Chloroplast	"GO:0006470;GO:0004725"	"protein dephosphorylation;protein tyrosine phosphatase activity"	PTP6	"g13691.t1;PTP6;g13691.t1;PTP6;g13691.t1;PTP6"		
+Cre12.g528850	GMM:31.6.1.4.1	"cell.motility.eukaryotes.axonemal dyneins.outer arm"		GO:0045454	"cell redox homeostasis"	DLX1	"g13022.t1;ODA-LC3;DLC3"	DLX1	"LC3 component of outer arm dynein; thioredoxin homolog; 16 kDa"
+Cre12.g556750	GMM:26.22	"misc.short chain dehydrogenase/reductase (SDR)"	Chloroplast	"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"		"SDR22;g13397.t1;TIC32;TIC32-1;TIC32;TIC32-1;SDR22;g13397.t1"		
+Cre12.g550650	GMM:29.2.1	"protein.synthesis.ribosomal protein"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	MRPL14	"uL14m;g13532.t1;MRPL14;Cre12.g550650.t1.1"	MRPL14	
+Cre12.g485200	GMM:3.3	"minor CHO metabolism.sugar alcohols"		GO:0005515	"protein binding"		g12040.t1		
+Cre12.g559400	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	"Secretory pathway"	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE12	"PDE12;g13336.t1;PDE12;g13336.t1"		"Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus. Long protein with C-terminal phosphodiesterase domain"
+Cre12.g492151			Mitochondrion				g12109.t1		
+Cre12.g537950			Chloroplast				"g13228.t1;g13228.t1;g13228.t1"		
+Cre12.g553850			Chloroplast			TUL1	"TUL1;g13456.t1"	TUL1	"Contains conserved tubulin site"
+Cre12.g536776									
+Cre12.g512450			"Secretory pathway"				"g12297.t2;g12297.t2;g12297.t2;g12297.t2"		
+Cre12.g541650							"Cre12.g541650.t1.1;g13741.t2;Cre12.g541650.t1.1;g13741.t2"		
+Cre12.g547250			Chloroplast				"g13608.t1;Cre12.g547250.t1.1;g13608.t1;Cre12.g547250.t1.1"		
+Cre12.g526800	GMM:7.1.3	"OPP.oxidative PP.6-phosphogluconate dehydrogenase"	Chloroplast	"GO:0055114;GO:0050661;GO:0006098;GO:0004616"	"oxidation-reduction process;NADP binding;pentose-phosphate shunt;phosphogluconate dehydrogenase (decarboxylating) activity"	GND1	"Cre12.g526800.t1.1;g12980.t1;GND1;Cre12.g526800.t1.1;g12980.t1;GND1;Cre12.g526800.t1.1;g12980.t1;GND1"		"6-phosphogluconate dehydrogenase, decarboxylating (EC 1.1.1.44); GI:18644674; probably plastidic based on N-terminal extension & similarity to GI:13936693;6-phosphogluconate dehydrogenase, decarboxylating (EC 1.1.1.44); GI:18644674; probably plastidic based on N-terminal extension & similarity to GI:13936693;6-phosphogluconate dehydrogenase, decarboxylating (EC 1.1.1.44); GI:18644674; probably plastidic based on N-terminal extension & similarity to GI:13936693"
+Cre12.g531450						HPAT3	"HPAT3;Cre12.g531450.t1.1;g13079.t1;g13079.t1;HPAT3;Cre12.g531450.t1.1"		"Shares a common domain with HPAT1 and HPAT2;Shares a common domain with HPAT1 and HPAT2"
+Cre12.g551900							"Cre12.g551900.t1.1;g13503.t1"		
+Cre12.g559850				GO:0005515	"protein binding"		g13322.t1		
+Cre12.g512202			Chloroplast						
+Cre12.g497500	"GMM:26.11.1;GMM:26.11;GMM:16.8.3"	"misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols"		"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"	SNE7	"Cre12.g497500.t1.1;g12635.t1;SNE7"		"Cinnamoyl-CoA reductase/flavanone 4-reductase, a NAD-dependent epimerase/dehydratase. Related to Dihydrokaempferol 4-reductase (DFR); related to plant haem peroxidase that are aldehyde oxidases, flavonol/cinnamyl alcohol reductases"
+Cre12.g503100			"Secretory pathway"				"g12508.t1;g12508.t1;g12508.t1"		
+Cre12.g550450							"Cre12.g550450.t1.1;g13539.t1;g13539.t1;Cre12.g550450.t1.1;Cre12.g550450.t1.1;g13539.t1"		
+Cre12.g512750	"GMM:33.99;GMM:30.5;GMM:3.5;GMM:27.1"	"development.unspecified;signalling.G-proteins;minor CHO metabolism.others;RNA.processing"		GO:0005515	"protein binding"	TEF20	"TEF20;g12291.t2;TEF20;g12291.t2;g12291.t2;TEF20"	"TEF20;TEF20;TEF20"	"Notchless-like WD40 repeat-containing protein, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];Notchless-like WD40 repeat-containing protein, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018];Notchless-like WD40 repeat-containing protein, chloroplast location proposed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]"
+Cre12.g509600	GMM:23.5.3	"nucleotide metabolism.deoxynucleotide metabolism.cytosine deaminase"	"Secretory pathway"	GO:0008270	"zinc ion binding"	CDD2	"g12359.t1;CDD2;g12359.t1;CDD2"	"CDD2;CDD2"	
+Cre12.g495955							g12145.t1		
+Cre12.g503350							"g12503.t1;Cre12.g503350.t1.1"		
+Cre12.g500650	GMM:27.1.19	RNA.processing.ribonucleases	Chloroplast			RNB2	"g12563.t1;Cre12.g500650.t1.1"	RNB2	"RNase II, probably belongs to nucleo-cytosolic exosome complex; RNase B family protein, 3'-5' exoribonuclease, dis3-like, RNB, Rrp44, ribonuclease II"
+Cre12.g537581	GMM:23.1.2.9	"nucleotide metabolism.synthesis.purine.AICAR transformylase and IMP synthase"	Chloroplast	"GO:0006164;GO:0004643;GO:0003937"	"purine nucleotide biosynthetic process;phosphoribosylaminoimidazolecarboxamide formyltransferase activity;IMP cyclohydrolase activity"		"g13219.t1;Cre65.g793400.t1.1;Cre65.g793400.t1.2;g13219.t1;Cre65.g793400.t1.2;Cre65.g793400.t1.1;g13219.t1;Cre65.g793400.t1.1;Cre65.g793400.t1.2;Cre65.g793400.t1.1;Cre65.g793400.t1.2;g13219.t1;Cre65.g793400.t1.2;Cre65.g793400.t1.1;g13219.t1"		
+Cre12.g484000	GMM:11.1.1.2.2	"lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.beta carboxyltransferase"	Chloroplast			BCX1	"g12014.t1;Cre12.g484000.t1.1;ACX1;Cre12.g484000.t1.1;ACX1;g12014.t1;g12014.t1;Cre12.g484000.t1.1;ACX1"	"BCX1;BCX1;BCX1"	"Acetyl-CoA carboxylase beta-carboxyltransferase subunit of plastidic multimeric ACCase;Acetyl-CoA carboxylase beta-carboxyltransferase subunit of plastidic multimeric ACCase;Acetyl-CoA carboxylase beta-carboxyltransferase subunit of plastidic multimeric ACCase"
+Cre12.g537850			Chloroplast			CCB2	"g13226.t1;Cre12.g537850.t1.1"	CCB2	"involved in heme c covalent linkage to cytochrome b6. Conserved among organisms performing oxygenic photosynthesis. The protein is localized to the chloroplast and homologous to CCB4. PMID: 17535914"
+Cre12.g523700			Chloroplast				"g12895.t1;Cre12.g523700.t1.1"		
+Cre12.g537641			"Secretory pathway"				"Cre65.g793300.t1.2;LAT1;g13221.t1;Cre65.g793300.t1.1"	LPT1	"Involved in the recycling of MGDG in the chloroplast and maintains lipid homeostasis"
+Cre12.g525850									
+Cre12.g497950							"g12626.t1;Cre12.g497950.t1.1;Cre12.g497950.t1.1;g12626.t1;g12626.t1;Cre12.g497950.t1.1"		
+Cre12.g535019	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	"Secretory pathway"				"g13161.t1;Cre12.g535019.t1.1;Cre12.g535019.t1.1;g13161.t1;Cre12.g535019.t1.1;g13161.t1;Cre12.g535019.t1.1;g13161.t1"		
+Cre12.g555600			Mitochondrion				"g13420.t1;g13420.t1"		
+Cre12.g496100						FAP149	"Cre12.g496100.t1.1;g12664.t1;g12664.t1;Cre12.g496100.t1.1"	"FAP149;FAP149"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre12.g488152			"Secretory pathway"						
+Cre12.g495750									
+Cre12.g504850	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO16	"Cre12.g504850.t1.1;HFO16;g12471.t1"	HFO16	"replication linked H4; histone gene cluster XVI (type 43AB)"
+Cre12.g534100	"GMM:33.99;GMM:27.3.7"	"development.unspecified;RNA.regulation of transcription.C2C2(Zn) Constans-like zinc finger family (CO-like)"	"Secretory pathway"	GO:0005515	"protein binding"	CON2	"g13136.t1;CON2;COL;CON2;COL;g13136.t1"	"CON2;CON2"	"CONSTANS-like protein that may be involved in circadian rhythms;CONSTANS-like protein that may be involved in circadian rhythms"
+Cre12.g499150							"g12601.t1;g12601.t1;g12601.t1;g12601.t1"		
+Cre12.g558850			Mitochondrion				"Cre12.g558850.t1.1;g13351.t1"		
+Cre12.g535600			Mitochondrion			DNJ17	"DNJ17;g13174.t1"		"DnaJ-like protein, probably cytosolic; contains N-terminal J-domain (pfam226); no homology to other proteins in protein database"
+Cre12.g500600				GO:0070072	"vacuolar proton-transporting V-type ATPase complex assembly"	VMA21	"g12564.t1;Cre12.g500600.t1.1;VMA21"	VMA21	"VMA21 is localised in the ER where it is needed as an accessory factor for assembly of the V component of the vacuolar ATPase"
+Cre12.g502250	GMM:31.1	cell.organisation	Chloroplast			PLAP4	"g12526.t1;PLP4;Cre12.g502250.t1.1"	PLAP4	"PAP-fibrillin family protein"
+Cre12.g509000	"GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	MAPK3	"g12372.t1;MAPK3;g12372.t1;MAPK3"	"MAPK3;MAPK3"	"Mitogen-Activated Protein Kinase Homolog 3; downstream kinase in the canonical MAP kinase pathway; regulated Fe-deficiency responsive genes.;Mitogen-Activated Protein Kinase Homolog 3; downstream kinase in the canonical MAP kinase pathway; regulated Fe-deficiency responsive genes."
+Cre12.g499050	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB44			
+Cre12.g521550	GMM:30.4.1	"signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase"	Mitochondrion				g12848.t1		
+Cre12.g508100							g12394.t1		
+Cre12.g542569	"GMM:30.1;GMM:3.1;GMM:27.3.99"	"signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family;RNA.regulation of transcription.unclassified"		"GO:0016020;GO:0004970"	"membrane;ionotropic glutamate receptor activity"		"Cre12.g542569.t1.1;g13719.t2;g13719.t2;Cre12.g542569.t1.1"		
+Cre12.g494050	"GMM:29.2.2;GMM:29.2.1.2.2.9"	"protein.synthesis.ribosome biogenesis;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L9"		"GO:0019843;GO:0006412;GO:0005840;GO:0003735"	"rRNA binding;translation;ribosome;structural constituent of ribosome"	RPL9	"g12068.t1;Cre12.g494050.t1.1;Cre12.g494050.t1.1;g12068.t1;Cre12.g494050.t1.1;g12068.t1"	"RPL9;RPL9;RPL9"	"Cytosolic 60S large ribosomal subunit protein L9;Cytosolic 60S large ribosomal subunit protein L9;Cytosolic 60S large ribosomal subunit protein L9"
+Cre12.g518700	GMM:27.1.1	RNA.processing.splicing	"Secretory pathway"				"g12788.t1;g12788.t1"		
+Cre12.g554850	GMM:21.1	redox.thioredoxin		"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRXH1	"g13437.t1;TRXh2;TRXh2a;Cre12.g554850.t1.1;TRX7"	TRXH2	"There are three splicing variants differing on 3' end, one containing an intron in the 3'UTR. The sequenced cDNA (AY184797) derived from strain C9 (obtained from Kazusa DNA research institute) shows 2 amino acid substitutions in the protein sequence compared to AY184797, one of which alters the active site from WCGPC to WCGAC."
+Cre12.g499350	"GMM:30.3;GMM:3.3"	"signalling.calcium;minor CHO metabolism.sugar alcohols"	Mitochondrion	GO:0005509	"calcium ion binding"	EFH7	"Cre12.g499350.t1.1;EFH7;g12593.t1;Cre12.g499350.t1.1;EFH7;g12593.t1"		
+Cre12.g538500							"g13241.t1;g13241.t1"		
+Cre12.g531050	GMM:34.5	transport.ammonium	Chloroplast			RAA3	"g13071.t1;OPR67"	RAA3	"a highly degenerated OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein carrying a C-terminal RAP domain; necessary for trans-splicing of psaA mRNA;component psaA trans-splicing sub complex I"
+Cre12.g547727			Chloroplast				"g13801.t1;Cre27.g774850.t1.1"		
+Cre12.g549050	GMM:16.4.1	"secondary metabolism.N misc.alkaloid-like"	"Secretory pathway"	"GO:0016844;GO:0009058"	"strictosidine synthase activity;biosynthetic process"	STR1	"STR1;Cre12.g549050.t1.1;g13567.t1;Cre12.g549050.t1.1;g13567.t1;STR1;STR1;g13567.t1;Cre12.g549050.t1.1"		"Homologue of plant, animal and bacterial strictosidine synthases [PMID: 10777701], which converts tryptamine and secaloganin into strictosidine, the precursor of monoterpenoid indole alkaloids;Homologue of plant, animal and bacterial strictosidine synthases [PMID: 10777701], which converts tryptamine and secaloganin into strictosidine, the precursor of monoterpenoid indole alkaloids;Homologue of plant, animal and bacterial strictosidine synthases [PMID: 10777701], which converts tryptamine and secaloganin into strictosidine, the precursor of monoterpenoid indole alkaloids"
+Cre12.g509950			"Secretory pathway"				g12352.t1		
+Cre12.g541200			"Secretory pathway"	"GO:0016020;GO:0006810;GO:0005215"	"membrane;transport;transporter activity"		"g13752.t1;Cre12.g541200.t1.1"		"Multiple intron splicing variants; May encode a NAR1 (formate/nitrite transporter) homolog; Highly similar to nearby NAR1E, but smaller;"
+Cre12.g490891	GMM:29.3.1	protein.targeting.nucleus					"Cre12.g490891.t1.1;g12167.t1"		
+Cre12.g561350							"g13290.t1;g13290.t1;g13290.t1"		
+Cre12.g554050							g13452.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g553400			"Mitochondrion;Chloroplast"				"g13468.t2;TET1"	CMD1	"converts 5-methylcytosine (5mC) to 5-glyceryl-methylcytosines (5gmC) using vitamin C (not 2-oxoglutarate) as a co-substrate; Fe-dependent dioxygenase; mutant shows hypermethylation and is light-sensitive due to downregulation of LHCSR3; part of the DNA-1_cRei transposon"
+Cre12.g538300	"GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4"	"cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	LF5	"FAP247;g13235.t1;g13235.t1;FAP247"	"LF5;LF5"	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]; SSA1; identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA); Similar to MAPK3;Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]; SSA1; identified by comparative genomics as being present only in organisms having cilia, including non-motile cilia; may have role in sensing, structure and/or assembly (SSA); Similar to MAPK3"
+Cre12.g495951	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"	Chloroplast	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN20-3	"CYN8;ROC4;CYN20-3;g12141.t2;Cre12.g496000;Cre12.g496000.t2.1;ROC4;CYN20-3;g12141.t2;CYN8;Cre12.g496000;Cre12.g496000.t2.1;CYN20-3;ROC4;g12141.t2;Cre12.g496000;CYN8;Cre12.g496000.t2.1;Cre12.g496000.t2.1;CYN8;g12141.t2;Cre12.g496000;ROC4;CYN20-3;CYN8;Cre12.g496000;Cre12.g496000.t2.1;CYN20-3;ROC4;g12141.t2"	"CYN20C;CYN20C;CYN20C;CYN20C;CYN20C"	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to ROC4 (AtCYP2-3) which binds thioredoxin m; probably directed to chloroplast stroma (by homology);Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to ROC4 (AtCYP2-3) which binds thioredoxin m; probably directed to chloroplast stroma (by homology);Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to ROC4 (AtCYP2-3) which binds thioredoxin m; probably directed to chloroplast stroma (by homology);Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to ROC4 (AtCYP2-3) which binds thioredoxin m; probably directed to chloroplast stroma (by homology);Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to ROC4 (AtCYP2-3) which binds thioredoxin m; probably directed to chloroplast stroma (by homology)"
+Cre12.g511800							"g12313.t1;g12313.t1"		
+Cre12.g539205									
+Cre12.g548550							g13579.t1		
+Cre12.g559050							"Cre12.g559050.t1.1;g13343.t1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre12.g536850			Mitochondrion				g13202.t1		
+Cre12.g544111						CSB49			
+Cre12.g517681			Chloroplast				"g12765.t1;Cre12.g517681.t1.1"		
+Cre12.g539000	"GMM:33.99;GMM:31.2;GMM:11.3.6"	"development.unspecified;cell.division;lipid metabolism.phospholipid synthesis.choline-phosphate cytidylyltransferase"	"Secretory pathway"	"GO:0009058;GO:0003824"	"biosynthetic process;catalytic activity"	ECT1	"Cre12.g539000.t1.1;g13251.t1;Cre12.g539000.t1.1;g13251.t1"	"ECT1;ECT1"	"CDP-Ethanolamine synthase involved in Kennedy pathway for phosphatidylethanolamine biosynthesis; regulatory enzyme in the CDP-ethanolamine pathway of phosphatidylethanolamine (PE) biosynthesis [PMID: 15147238]; CTP:ethanolamine cytidylyltransferase;CDP-Ethanolamine synthase involved in Kennedy pathway for phosphatidylethanolamine biosynthesis; regulatory enzyme in the CDP-ethanolamine pathway of phosphatidylethanolamine (PE) biosynthesis [PMID: 15147238]; CTP:ethanolamine cytidylyltransferase"
+Cre12.g520750							"g12830.t1;g12830.t1"		
+Cre12.g554200	"GMM:31.4;GMM:29.3.4.2"	"cell.vesicle transport;protein.targeting.secretory pathway.golgi"	Mitochondrion			VTI4	"VTI4;g13449.t1;MEMB1;VTI4;MEMB1;g13449.t1"	"VTI4;VTI4"	"Expressed Protein. Similar to MEMB1/GS35/Bos1p Qb-SNAREs, involved in ER/Golgi trafficking.;Expressed Protein. Similar to MEMB1/GS35/Bos1p Qb-SNAREs, involved in ER/Golgi trafficking."
+Cre12.g520173			Chloroplast				"Cre12.g520173.t1.1;g12818.t1;Cre12.g520173.t1.1;g12818.t1"		
+Cre12.g496402									
+Cre12.g484700							"Cre12.g484700.t1.1;g12030.t1"	NUOA7	"Putative NADH:ubiquinone oxidoreductase (Complex I) precursor, mitochondrial; Ortholog to NDUFA7 in Homo sapiens;"
+Cre12.g516650	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"STK6;STPK6;g12743.t1;STK6;STPK6;g12743.t1;g12743.t1;STPK6;STK6;STK6;STPK6;g12743.t1;STK6;STPK6;g12743.t1;STK6;STPK6;g12743.t1;g12743.t1;STPK6;STK6"		"Serine/Threonine Protein Kinase Homolog 6, putative;Serine/Threonine Protein Kinase Homolog 6, putative;Serine/Threonine Protein Kinase Homolog 6, putative;Serine/Threonine Protein Kinase Homolog 6, putative;Serine/Threonine Protein Kinase Homolog 6, putative;Serine/Threonine Protein Kinase Homolog 6, putative;Serine/Threonine Protein Kinase Homolog 6, putative"
+Cre12.g524000	GMM:2.1.1.1	"major CHO metabolism.synthesis.sucrose.SPS"	Mitochondrion	"GO:0016157;GO:0005985"	"sucrose synthase activity;sucrose metabolic process"	SUC1	"g12903.t1;SUC1;Cre12.g524000.t1.1;GTR7"		
+Cre12.g521250				"GO:0052689;GO:0006482"	"carboxylic ester hydrolase activity;protein demethylation"	PPE1	"g12841.t1;Cre12.g521250.t1.1;PPE1"	PPE1	"Putative mitochondrial ribosomal protein Ppe1"
+Cre12.g495350	"GMM:31.6.1.2;GMM:31.6.1.1"	"cell.motility.eukaryotes.deflagellation;cell.motility.eukaryotes.basal bodies"				POC12	"POC12;g12128.t1;POC12;g12128.t1;g12128.t1;POC12"	"POC12;POC12;POC12"	"Found in basal body proteome; FABP protein similar to human protein FLJ20345; Human homolog encoded by gene MKS1 defective in Meckel syndrome;Found in basal body proteome; FABP protein similar to human protein FLJ20345; Human homolog encoded by gene MKS1 defective in Meckel syndrome;Found in basal body proteome; FABP protein similar to human protein FLJ20345; Human homolog encoded by gene MKS1 defective in Meckel syndrome"
+Cre12.g502750	GMM:29.6.1	"protein.folding.prefoldin and trigger factor"		"GO:0051082;GO:0016272;GO:0006457"	"unfolded protein binding;prefoldin complex;protein folding"	PFD6	"PFD6;g12515.t1;Cre12.g502750.t1.1"	PFD6	"alpha-type subunit of molecular chaperone Prefoldin (PMID: 11599560); has two coiled-coil domains separated by a beta-sheet; stabilizes polypeptide chains prior to folding within CCT chaperonin, in particular tubulin"
+Cre12.g487800							"g12231.t1;g12231.t1;g12231.t1;g12231.t1"		
+Cre12.g530800			Mitochondrion				g13064.t1		
+Cre12.g556913			Chloroplast						
+Cre12.g548651			Mitochondrion				"g13578.t1;Cre12.g548600.t1.3"		
+Cre12.g515450	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC22	"g12717.t1;UBC22"	UBC22	"E2 Ubiquitin conjugating enzyme, subclass III"
+Cre12.g520650	"GMM:31.1;GMM:29.5.11.4.3.2;GMM:27.3.31"	"cell.organisation;protein.degradation.ubiquitin.E3.SCF.FBOX;RNA.regulation of transcription.TUB transcription factor family"				TLP1	"g12828.t1;Cre12.g520650.t1.1;Cre12.g520650.t1.1;g12828.t1"	"TLP1;TLP1"	
+Cre12.g549100			Chloroplast			UAF3	"g13566.t4;UAF3;SPL10"	UAF3	"Similar to U2AF large subunit; RNA-binding region RNP-1 (RNA recognition motif)"
+Cre12.g513950	"GMM:34.16;GMM:29.8"	"transport.ABC transporters and multidrug resistance systems;protein.assembly and cofactor ligation"	Chloroplast	GO:0016226	"iron-sulfur cluster assembly"	SUFD	"g12687.t1;SUF4;SUFD;Cre12.g513950.t1.1"	SUFD1	"putative ABC transporter involved in Fe-S cluster assembly, permease protein, homologous Arabidopsis protein Nap6 localized to plastid"
+Cre12.g507050							"Cre12.g507050.t1.1;g12422.t1"		
+Cre12.g499601			Mitochondrion						
+Cre12.g560100			Mitochondrion				g13317.t1		
+Cre12.g533400							g13121.t1		
+Cre12.g489300			"Secretory pathway"				"g12199.t1;g12199.t1;g12199.t1;g12199.t1;g12199.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g538200	GMM:3.5	"minor CHO metabolism.others"		"GO:0005525;GO:0005515"	"GTP binding;protein binding"		"Cre12.g538200.t1.1;g13233.t1;Cre12.g538200.t1.1;g13233.t1"		
+Cre12.g517300			"Secretory pathway"				"g12757.t1;g12757.t1;g12757.t1"		
+Cre12.g529400	GMM:29.2.1.2.1.27	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS27E1	"g13035.t1;Cre12.g529400.t1.1;RPS27e1;RPS27-A;RPS27-A;RPS27e1;Cre12.g529400.t1.1;g13035.t1"	"RPS27E1;RPS27E1"	"Cytosolic 40S small ribosomal subunit protein S27, isoform A;Cytosolic 40S small ribosomal subunit protein S27, isoform A"
+Cre12.g530876									
+Cre12.g485632						CSB41			
+Cre12.g496350			"Secretory pathway"	"GO:0016020;GO:0008158"	"membrane;hedgehog receptor activity"	SSD2	"SSD2;Cre12.g496350.t1.1;g12658.t1;SSD2;Cre12.g496350.t1.1;g12658.t1"	"SSD2;SSD2"	"Contains a sterol sensing 5-transmembrane domain similar to those in SCAP, Patched, NPC1 and HMGR;Contains a sterol sensing 5-transmembrane domain similar to those in SCAP, Patched, NPC1 and HMGR"
+Cre12.g545000	GMM:31.1	cell.organisation				ARP7	"Cre12.g545000.t1.1;g13659.t1;ARP7"	ARP7	"ChromDB ARP3402; similar to the Arabidopsis ARP7 protein which is localized predominantly to the nucleus during interphase; may be involved in chromatin remodeling"
+Cre12.g499900	GMM:26.27	"misc.calcineurin-like phosphoesterase family protein"				VPS29	"Cre12.g499900.t1.1;VPS29;g12579.t1"	VPS29	"Expressed Protein. Similar to VPS29, a component of Retromer Coat complex involved in endosomal to Golgi trafficking."
+Cre12.g557252							"g13385.t1;g13385.t1;g13385.t1"		
+Cre12.g502200	"GMM:29.2.3;GMM:27.3.38"	"protein.synthesis.initiation;RNA.regulation of transcription.AT-rich interaction domain containing transcription factor family"		"GO:0016779;GO:0009058;GO:0005515"	"nucleotidyltransferase activity;biosynthetic process;protein binding"		"Cre12.g502200.t1.1;g12528.t1"		
+Cre12.g502000	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP253	"Cre12.g502000.t1.1;FAP253;g12533.t1;g12533.t1;FAP253;Cre12.g502000.t1.1"	"FAP253;FAP253"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre12.g559200			Mitochondrion				g13340.t1		
+Cre12.g507559	GMM:20.2.1	stress.abiotic.heat	Mitochondrion	"GO:0051259;GO:0051087;GO:0006457"	"protein oligomerization;chaperone binding;protein folding"	HSC20B	"g12411.t1;HSC20B;Cre22.g765550.t1.1;HSC20"	HSC20	"Similar to Arabidopsis At5g06410, the putative homologue of yeast Jac1p and E. coli HscB, co-chaperone involved in iron-sulfur cluster assembly; Likely localized to mitochondria; In previous assembly (v5.6), there were two copies of this gene (Cre11.g467718, Cre12.g507559). Cre11.g467718 (HSP20A) was likely due to an assembly error that has been corrected in v6.1"
+Cre12.g501700							g12541.t1		
+Cre12.g545401			"Secretory pathway"				g13652.t1		
+Cre12.g529376			Chloroplast						
+Cre12.g496900			Chloroplast	"GO:0004519;GO:0003676"	"endonuclease activity;nucleic acid binding"		"g12647.t1;g12647.t1"		
+Cre12.g483650	"GMM:29.4;GMM:1.1.30"	"protein.postranslational modification;PS.lightreaction.state transition"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre12.g483650.t1.1;g12005.t1;Cre12.g483650.t1.1;g12005.t1;g12005.t1;Cre12.g483650.t1.1;Cre12.g483650.t1.1;g12005.t1;g12005.t1;Cre12.g483650.t1.1"	"STL1;STL1;STL1;STL1;STL1"	"Putative ortholog of STN8 in vascular plants;Putative ortholog of STN8 in vascular plants;Putative ortholog of STN8 in vascular plants;Putative ortholog of STN8 in vascular plants;Putative ortholog of STN8 in vascular plants"
+Cre12.g494300			Chloroplast				"Cre12.g494300.t1.1;g12062.t1"		
+Cre12.g484350	GMM:29.4	"protein.postranslational modification"					"g12021.t1;CKIN beta-gamma;g12021.t1;CKIN beta-gamma;g12021.t1;CKIN beta-gamma;CKIN beta-gamma;g12021.t1;g12021.t1;CKIN beta-gamma;CKIN beta-gamma;g12021.t1;CKIN beta-gamma;g12021.t1;CKIN beta-gamma;g12021.t1;g12021.t1;CKIN beta-gamma"	"SNRKBG1;SNRKBG1;SNRKBG1;SNRKBG1;SNRKBG1;SNRKBG1;SNRKBG1;SNRKBG1;SNRKBG1"	"Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses;Mediates abiotic stress responses"
+Cre12.g497200	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP216	"Cre12.g497200.t1.1;g12641.t1;g12641.t1;Cre12.g497200.t1.1"	"FAP216;FAP216"	"Found in the flagellar proteome;Found in the flagellar proteome"
+Cre12.g506650							"g12436.t2;Cre12.g506650.t1.1;g12436.t2;Cre12.g506650.t1.1"		
+Cre12.g483900			Mitochondrion	"GO:0008324;GO:0006812"	"cation transmembrane transporter activity;cation transport"		"g12011.t2;g12011.t2;g12011.t2;g12011.t2;g12011.t2;g12011.t2;g12011.t2"		
+Cre12.g559250	"GMM:31.6.1.1;GMM:30.7;GMM:3.7"	"cell.motility.eukaryotes.basal bodies;signalling.14-3-3 proteins;minor CHO metabolism.sugar kinases"		GO:0019904	"protein domain specific binding"	FTT1	"g13339.t1;FTT1;Cre12.g559250.t1.1;g13339.t1;FTT1;Cre12.g559250.t1.1"	"POC14;POC14"	"Found in basal body proteome; 14-3-3 epsilon-like protein found in human centrosome; Also found in the flagellar proteome;Found in basal body proteome; 14-3-3 epsilon-like protein found in human centrosome; Also found in the flagellar proteome"
+Cre12.g520300			"Secretory pathway"				"g12821.t1;Cre12.g520300.t1.1;Cre12.g520300.t1.1;g12821.t1;Cre12.g520300.t1.1;g12821.t1;g12821.t1;Cre12.g520300.t1.1"		
+Cre12.g543902	GMM:3.3	"minor CHO metabolism.sugar alcohols"		"GO:0016857;GO:0016773;GO:0005975"	"racemase and epimerase activity, acting on carbohydrates and derivatives;phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process"		"g13792.t1;Cre27.g774500.t1.1;g13792.t1;Cre27.g774500.t1.1;Cre27.g774500.t1.1;g13792.t1"		
+Cre12.g535400			"Secretory pathway"				"g13169.t1;g13169.t1;g13169.t1;g13169.t1"		
+Cre12.g487150	GMM:26.13	"misc.acid and other phosphatases"	Chloroplast			PGM20	"g12246.t1;PGM20"		
+Cre12.g548450			"Secretory pathway"				"g13581.t1;GT90-24;GT90F24"		
+Cre12.g531651							"Cre12.g531650.t1.2;g13083.t1"		
+Cre12.g526240				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"		g12966.t1		
+Cre12.g504000	GMM:28.1	"DNA.synthesis/chromatin structure"	Chloroplast				"g12489.t1;g12489.t1"		
+Cre12.g544050	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g13688.t1;g13688.t1"		
+Cre12.g493650							"g12077.t1;Cre12.g493650.t1.1"		
+Cre12.g546750							g13620.t1		
+Cre12.g514400	"GMM:27.3.26;GMM:27.3.25"	"RNA.regulation of transcription.MYB-related transcription factor family;RNA.regulation of transcription.MYB domain transcription factor family"					"g12695.t2;Cre12.g514400.t1.1;g12695.t2;Cre12.g514400.t1.1;g12695.t2;Cre12.g514400.t1.1"		
+Cre12.g491500	GMM:29.5.11.2	protein.degradation.ubiquitin.E1		"GO:0045116;GO:0019781;GO:0016881;GO:0008641;GO:0005524"	"protein neddylation;NEDD8 activating enzyme activity;acid-amino acid ligase activity;small protein activating enzyme activity;ATP binding"	UBC1	"UBC1;g12155.t1;Cre12.g491500.t1.1;UBA2"	UBA3	
+Cre12.g528926									
+Cre12.g555200			Chloroplast				"g13428.t1;g13428.t1;g13428.t1"		
+Cre12.g553800							"g13457.t1;g13457.t1;g13457.t1"		
+Cre12.g491400	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	Chloroplast	GO:0005515	"protein binding"		"g12157.t1;Cre12.g491400.t1.1"		
+Cre12.g541400							"Cre12.g541400.t1.1;g13746.t1"		
+Cre12.g532900	GMM:31.1	cell.organisation		GO:0005515	"protein binding"		"g13111.t1;Cre12.g532900.t1.1"		
+Cre12.g526950	"GMM:27.3.99;GMM:27.3.51"	"RNA.regulation of transcription.unclassified;RNA.regulation of transcription.general transcription, TBP-binding protein"		"GO:0006355;GO:0005634;GO:0005515"	"regulation of transcription, DNA-templated;nucleus;protein binding"		g12983.t1		"Transcription initiation factor TFIID, subunit TAF5, ChromDB TAFV341; contains WD4 domain. Putative homolog of Saccharomyces cerevisiae TAF5 which is the 9 kDa subunit of TFIID and SAGA complexes. Yeast TAF5 is involved in RNA polymerase II transcripti"
+Cre12.g510050	GMM:19.12	"tetrapyrrole synthesis.magnesium-protoporphyrin IX monomethyl ester (oxidative) cyclase"	Chloroplast	"GO:0055114;GO:0046872;GO:0016491"	"oxidation-reduction process;metal ion binding;oxidoreductase activity"	CTH1	"g12349.t1;Cre12.g510050.t1.1;CTH1;CTH1A;CTH1B;g12349.t1;CTH1B;CTH1A;CTH1;Cre12.g510050.t1.1"	"CHL27B;CHL27B"	"Copper target homolog 1 protein, chloroplast precursor, functional variant produced under copper and/or oxygen sufficient conditions [GI:1565866; PMID: 119113; PMID: 1467313]; Mg-protoporphyrin IX monomethyl ester (oxidative) cyclase, aerobic oxidative cyclase; orthologous to Rubrivax gelatinosus aerobic oxidative cyclase [PMID: 11790744; PMID: 14617630]; Target of CRR1;Copper target homolog 1 protein, chloroplast precursor, functional variant produced under copper and/or oxygen sufficient conditions [GI:1565866; PMID: 119113; PMID: 1467313]; Mg-protoporphyrin IX monomethyl ester (oxidative) cyclase, aerobic oxidative cyclase; orthologous to Rubrivax gelatinosus aerobic oxidative cyclase [PMID: 11790744; PMID: 14617630]; Target of CRR1"
+Cre12.g523026	GMM:27.3.12	"RNA.regulation of transcription.C3H zinc finger family"							
+Cre12.g485850			Chloroplast			CPLD64	"g12280.t1;Cre12.g485850.t1.1"	CPLD64	
+Cre12.g498600	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	"GTP binding"	EEF1A1	"g12613.t1;EEF1;Cre12.g498600.t1.1;EEF1A1"	EEF1A1	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]"
+Cre12.g560650							g13306.t1		
+Cre12.g551801			"Secretory pathway"	"GO:0048278;GO:0006887;GO:0005737"	"vesicle docking;exocytosis;cytoplasm"		"Cre12.g551750.t1.3;g13507.t1;Cre12.g551750.t1.3;g13507.t1;g13507.t1;Cre12.g551750.t1.3"		
+Cre12.g492500							"g12100.t1;g12100.t1;g12100.t1"		
+Cre12.g510752									
+Cre12.g508350			Mitochondrion			TPR2	"g12387.t1;Cre12.g508350.t1.1;TPR2"	TPR11	"TPR protein, strong similarity to rice protein BAB93301 and cyanobacterial proteins; Mitochondrial targeting predicted by multiple programs; Orthologous to AT3G05625 In Arabidopsis thaliana; Previously annotated as TPR2, but changed to avoid confusion with Cre01.g032500"
+Cre12.g549600							g13556.t1		
+Cre12.g488750			Chloroplast				"Cre12.g488750.t1.1;g12211.t1;g12211.t1;Cre12.g488750.t1.1;g12211.t1;Cre12.g488750.t1.1;g12211.t1;Cre12.g488750.t1.1"		
+Cre12.g516200	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	"GTP binding"	EFG2	"Cre12.g516200.t1.1;g12733.t1;g12733.t1;Cre12.g516200.t1.1;Cre12.g516200.t1.1;g12733.t1;Cre12.g516200.t1.1;g12733.t1"	"EFG2;EFG2;EFG2;EFG2"	"Putative cytosolic elongation factor 2 (EF-2), EF-TU; found in the flagellar proteome;Putative cytosolic elongation factor 2 (EF-2), EF-TU; found in the flagellar proteome;Putative cytosolic elongation factor 2 (EF-2), EF-TU; found in the flagellar proteome;Putative cytosolic elongation factor 2 (EF-2), EF-TU; found in the flagellar proteome"
+Cre12.g507750	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g12403.t3;g12403.t3;g12403.t3;g12403.t3;g12403.t3"		
+Cre12.g487400							"g12240.t1;Cre12.g487400.t1.1"		
+Cre12.g548350			Mitochondrion				"Cre12.g548350.t1.1;g13584.t1;g13584.t1;Cre12.g548350.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g515950			Chloroplast				"g12728.t1;Cre12.g515950.t1.1;Cre12.g515950.t1.1;g12728.t1;g12728.t1;Cre12.g515950.t1.1;Cre12.g515950.t1.1;g12728.t1"		
+Cre12.g542650			Mitochondrion	GO:0005515	"protein binding"		g13716.t2		
+Cre12.g501400						CSB46			
+Cre12.g512850									
+Cre12.g493100							g12088.t1		
+Cre12.g557700	GMM:24.1	"biodegradation of xenobiotics.hydroxyacylglutathione hydrolase"		"GO:0019243;GO:0004416"	"methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione;hydroxyacylglutathione hydrolase activity"		"g13376.t1;Cre12.g557700.t1.1;g13376.t1;Cre12.g557700.t1.1;Cre12.g557700.t1.1;g13376.t1;Cre12.g557700.t1.1;g13376.t1;g13376.t1;Cre12.g557700.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre12.g492600	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			FAP346	"Cre12.g492600.t1.1;FAS3;g12098.t1;g12098.t1;FAS3;Cre12.g492600.t1.1"	"FAP346;FAP346"	"similar to fasciclin/TGFbeta-induced protein/Volvox CAM (algal-CAM) [PMID: 7925267]; contains 3 FAS1 (BIgH3) domains, involved in cell recognition; probably extracellular, GPI-anchored (by homology);similar to fasciclin/TGFbeta-induced protein/Volvox CAM (algal-CAM) [PMID: 7925267]; contains 3 FAS1 (BIgH3) domains, involved in cell recognition; probably extracellular, GPI-anchored (by homology)"
+Cre12.g493700	"GMM:26.7;GMM:17.1.1.1.1"	"misc.oxidases - copper, flavone etc;hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase"	Chloroplast	GO:0071949	"FAD binding"	ZXE2	"g12076.t1;ZXE2;Cre12.g493700.t1.1"		"Possible FAD-dependent monooxygenase"
+Cre12.g544109				GO:0003676	"nucleic acid binding"				
+Cre12.g510200			Mitochondrion				"Cre12.g510200.t1.1;BLZ9;g12346.t1"		"Basic-leucine zipper (bZIP) transcription factor"
+Cre12.g555152			"Secretory pathway"						
+Cre12.g495650				GO:0005515	"protein binding"		"Cre12.g495650.t1.1;g12134.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g485050	GMM:8.3	"TCA / organic transformation.carbonic anhydrases"	Chloroplast	"GO:0008270;GO:0004089"	"zinc ion binding;carbonate dehydratase activity"	CAH6	"CAH6;Cre12.g485050.t1.1;g12037.t1"	CAH6	"Chloroplast stroma carbonic anhydrase"
+Cre12.g511350							"g12321.t1;g12321.t1;g12321.t1"		
+Cre12.g525200	"GMM:29.2.2.3.1;GMM:27.3.67"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;RNA.regulation of transcription.putative transcription regulator"				NOP56	"g12927.t1;Cre12.g525200.t1.1;NOP56;NOP56;Cre12.g525200.t1.1;g12927.t1"	"NOP56;NOP56"	"Structural Component of C/D snoRNPs. Required for pre-Ribosomal RNA processing and snoRNA guided pre-rRNA methylation;Structural Component of C/D snoRNPs. Required for pre-Ribosomal RNA processing and snoRNA guided pre-rRNA methylation"
+Cre12.g489152			Mitochondrion						
+Cre12.g489250							"Cre12.g489250.t1.1;g12200.t1;Cre12.g489250.t1.1;g12200.t1"		
+Cre12.g526650	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre12.g526650.t1.1;g12976.t1"		
+Cre12.g510350	GMM:26.16	misc.myrosinases-lectin-jacalin	Chloroplast						
+Cre12.g526427			Chloroplast						
+Cre12.g527950			"Secretory pathway"	"GO:0030259;GO:0016758;GO:0005975"	"lipid glycosylation;transferase activity, transferring hexosyl groups;carbohydrate metabolic process"		"g13003.t1;g13003.t1"		"belongs to glycosyl transferase family;belongs to glycosyl transferase family"
+Cre12.g546877							"g13799.t2;Cre27.g774768.t2.1;Cre27.g774768.t2.1;g13799.t2;Cre27.g774768.t2.1;g13799.t2"		
+Cre12.g556100				GO:0005515	"protein binding"	SPAG1	"Cre12.g556100.t1.1;DNAAF13;g13410.t1"	SPAG1	"Dynein assembly factor; Ortholog of SPAG1 in humans, which causes primary ciliary dyskinesia;"
+Cre12.g516400	"GMM:27.4;GMM:27.3.99"	"RNA.RNA binding;RNA.regulation of transcription.unclassified"					"g12738.t2;Cre12.g516400.t1.1;SPL24;Cre12.g516400.t1.1;SPL24;g12738.t2"		"YT521-B-like family splicing factor. The YTH family has been shown to selectively remove transcripts of meiosis-specific genes expressed in mitotic cells and may be involved in suppressing gene regulation during gametogenesis;YT521-B-like family splicing factor. The YTH family has been shown to selectively remove transcripts of meiosis-specific genes expressed in mitotic cells and may be involved in suppressing gene regulation during gametogenesis"
+Cre12.g496150	GMM:29.5	protein.degradation	Chloroplast	GO:0005524	"ATP binding"		"Cre12.g496150.t1.1;g12663.t1;g12663.t1;Cre12.g496150.t1.1;g12663.t1;Cre12.g496150.t1.1;Cre12.g496150.t1.1;g12663.t1;Cre12.g496150.t1.1;g12663.t1"		
+Cre12.g492250			Mitochondrion			TRZ3	"g12106.t1;TRZ3;g12106.t1;TRZ3;TRZ3;g12106.t1"		"sequence similarity with prokaryotic RNase Z enzymes, though it is not known whether this gene product possesses the catalytic region of RNase Z;sequence similarity with prokaryotic RNase Z enzymes, though it is not known whether this gene product possesses the catalytic region of RNase Z;sequence similarity with prokaryotic RNase Z enzymes, though it is not known whether this gene product possesses the catalytic region of RNase Z"
+Cre12.g514500	GMM:29.2.1.2.1.11	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S11"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS11	"g12697.t1;Cre12.g514500.t1.1;g12697.t1;Cre12.g514500.t1.1"	"RPS11;RPS11"	"Cytosolic 40S small ribosomal subunit protein S11;Cytosolic 40S small ribosomal subunit protein S11"
+Cre12.g552050			Chloroplast				g13498.t1		
+Cre12.g526051			"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre12.g550000							g13548.t1		
+Cre12.g555850							"g13415.t1;DeSI-1"	DESI1	"deSUMOlyating isopeptidase"
+Cre12.g511200	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"				NUOS5	"Cre12.g511200.t1.1;g12324.t1"	NUOS5	"NADH:ubiquinone oxidoreductase subunit PFFD-like protein, (Complex I PFFD subunit), mitochondrial [= NDUFS5 subunit]; gb AAQ98888; Ortholog of NDUFS5 in Homo sapiens;"
+Cre12.g522450	GMM:29.3.4.99	"protein.targeting.secretory pathway.unspecified"	"Secretory pathway"			SEC31	"Cre12.g522450.t1.1;g12866.t1;g12866.t1;Cre12.g522450.t1.1"	"SEC31;SEC31"	"Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec13/31 sub-complex.;Expressed Protein. Component of COP-II vesicle coat complex involved in ER-to-Golgi transport. Part of Sec13/31 sub-complex."
+Cre12.g553100			Mitochondrion				"g13474.t1;g13474.t1;g13474.t1"		
+Cre12.g521800			Mitochondrion				"Cre12.g521800.t1.1;g12853.t1"		
+Cre12.g542050			Chloroplast				"g13731.t1;Cre12.g542050.t1.1"		
+Cre12.g493350							g12083.t1		
+Cre12.g501703			"Secretory pathway"				"Cre12.g501650.t1.3;g12543.t1"		
+Cre12.g539650	GMM:26.16	misc.myrosinases-lectin-jacalin	"Secretory pathway"	GO:0055114	"oxidation-reduction process"		"g13782.t1;g13782.t1;g13782.t1;g13782.t1"		
+Cre12.g550400	GMM:21.4	redox.glutaredoxins		"GO:0045454;GO:0015035;GO:0009055"	"cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity"	GRX2	"g13540.t1;Cre12.g550400.t1.1"	GRX2	"Glutaredoxin 2, CPYC type glutaredoxin, probably cytosolic. PMID: 16328797"
+Cre12.g542550			"Secretory pathway"	GO:0008270	"zinc ion binding"		"g13720.t1;g13720.t1;g13720.t1"		
+Cre12.g501750							"g12538.t1;g12538.t1"		"null-allele passenger mutation was isolated (PMID 29743196);null-allele passenger mutation was isolated (PMID 29743196)"
+Cre12.g541050			"Secretory pathway"				"g13755.t1;Cre12.g541050.t1.1"		
+Cre12.g527550							"Cre12.g527550.t1.1;g12995.t1"		
+Cre12.g545750	GMM:29.4.1	"protein.postranslational modification.kinase"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g13640.t1;Cre12.g545750.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g559555	GMM:11.8.10	"lipid metabolism.exotics (steroids, squalene etc).phosphatidylcholine-sterol O-acyltransferase"	Mitochondrion	"GO:0008374;GO:0006629"	"O-acyltransferase activity;lipid metabolic process"		"g13334.t1;g13334.t1"		
+Cre12.g554450			Mitochondrion				"g13444.t1;g13444.t1;g13444.t1"		
+Cre12.g504250	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g12484.t1;g12484.t1;g12484.t1;g12484.t1;g12484.t1;g12484.t1"		
+Cre12.g536350							"Cre12.g536350.t1.1;g13189.t1;g13189.t1;Cre12.g536350.t1.1;g13189.t1;Cre12.g536350.t1.1;Cre12.g536350.t1.1;g13189.t1"		
+Cre12.g486209	GMM:20.2.1	stress.abiotic.heat					"g12274.t1;g12274.t1;g12274.t1"		
+Cre12.g485438				"GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723"	"DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance"				
+Cre12.g545500							"g13649.t1;g13649.t1;g13649.t1"		
+Cre12.g525000				GO:0055114	"oxidation-reduction process"		"Cre12.g525000.t1.1;g12923.t1"		
+Cre12.g547150							"Cre12.g547150.t1.1;g13610.t1"		
+Cre12.g544600			"Secretory pathway"				"g13670.t1;Cre12.g544600.t1.1"		
+Cre12.g514050	GMM:12.2.1.1	"N-metabolism.ammonia metabolism.glutamate synthase.ferredoxin dependent"	Chloroplast	"GO:0055114;GO:0016638;GO:0016491;GO:0015930;GO:0008152;GO:0006807;GO:0006537"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-NH2 group of donors;oxidoreductase activity;glutamate synthase activity;metabolic process;nitrogen compound metabolic process;glutamate biosynthetic process"	GSF1	"Cre12.g514050.t1.1;GSF1;g12689.t1"	GSF1	"Glutamate synthase, ferredoxin-dependent; also known as CRFG3 (genbank id ; AF135592), could be chloroplast targeted"
+Cre12.g493950	GMM:29.2.1.1.1.1.13	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S13"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723"	"translation;ribosome;intracellular;structural constituent of ribosome;RNA binding"	PRPS13	"g12071.t1;Cre12.g493950.t1.1;g12071.t1;Cre12.g493950.t1.1"	"PRPS13;PRPS13"	"imported to chloroplast; Chloroplast small ribosomal subunit S13;imported to chloroplast; Chloroplast small ribosomal subunit S13"
+Cre12.g550750			Mitochondrion				"EMI5;Cre12.g550750.t1.1;g13530.t1;g13530.t1;Cre12.g550750.t1.1;EMI5"	"SDHAF2;SDHAF2"	"Assembly factor for Succinate dehydrogenase, mitochondrial; Related to SDHAF2 in Homo sapiens;;Assembly factor for Succinate dehydrogenase, mitochondrial; Related to SDHAF2 in Homo sapiens;"
+Cre12.g534945			"Secretory pathway"				g13158.t1		
+Cre12.g518000	GMM:29.3.3	protein.targeting.chloroplast		"GO:0017038;GO:0016020;GO:0005524"	"protein import;membrane;ATP binding"	SECA2	"g12775.t2;SCA2;g12775.t2;SCA2;g12775.t2;SCA2;g12775.t2;SCA2"	"SECA2;SECA2;SECA2;SECA2"	"SecA protein associated with import of proteins into chloroplast. Strong homology to SecA;SecA protein associated with import of proteins into chloroplast. Strong homology to SecA;SecA protein associated with import of proteins into chloroplast. Strong homology to SecA;SecA protein associated with import of proteins into chloroplast. Strong homology to SecA"
+Cre12.g523400							g12890.t1		
+Cre12.g538550			Mitochondrion				"g13242.t1;Cre12.g538550.t1.1;Cre12.g538550.t1.1;g13242.t1;g13242.t1;Cre12.g538550.t1.1;Cre12.g538550.t1.1;g13242.t1;Cre12.g538550.t1.1;g13242.t1"		
+Cre12.g507002			"Secretory pathway"				"Cre12.g507002.t1.1;g12424.t1"		
+Cre12.g518900	GMM:3.5	"minor CHO metabolism.others"	Chloroplast				"AKR9;g12793.t1;Cre12.g518900.t1.1;Cre12.g518900.t1.1;AKR9;g12793.t1"		"Aldo/keto reductase with possible alcohol dehydrogenase activity;Aldo/keto reductase with possible alcohol dehydrogenase activity"
+Cre12.g540350	GMM:27.3.99	"RNA.regulation of transcription.unclassified"	"Secretory pathway"	"GO:0030014;GO:0006402"	"CCR4-NOT complex;mRNA catabolic process"	RCD2	"Cre12.g540350.t1.1;g13769.t1;RCD2"		"similar to Rcd1-like proteins, which are involved in cell differentiation/sexual development; highly conserved among eukaryotes; retinoic acid-induced cell differentiation; control of sexual development"
+Cre12.g551200			Chloroplast	GO:2001070	"starch binding"		"g13521.t1;Cre12.g551200.t1.1;Cre12.g551200.t1.1;g13521.t1"		
+Cre12.g551550			Chloroplast	"GO:0008270;GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0003676;GO:0000723"	"zinc ion binding;DNA repair;ATP binding;helicase activity;DNA helicase activity;nucleic acid binding;telomere maintenance"		g13512.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g528450	GMM:13.2.1.2	"amino acid metabolism.degradation.central amino acid metabolism.aspartate"	Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	ASO1	"Cre12.g528450.t1.1;ASO1;g13013.t1"	LASPO1	"Putative L-aspartate oxidase (EC 1.4.3.16); similarity to rice L-aspartate oxidase (GenBank XP_464033) and Arabidopsis AT5G14760; Target-P predicts organelle targeting sequence"
+Cre12.g509450			"Secretory pathway"				"g12363.t1;g12363.t1;g12363.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g517050						FAP117	"Cre12.g517050.t1.1;g12752.t1"	FAP117	"Flagellar Associated Protein, found in the flagellar proteome"
+Cre12.g489001	GMM:29.4	"protein.postranslational modification"							
+Cre12.g548391			Chloroplast						
+Cre12.g505950	"GMM:34.9;GMM:29.3.99"	"transport.metabolite transporters at the mitochondrial membrane;protein.targeting.unknown"	Mitochondrion	"GO:0015031;GO:0005744;GO:0005743"	"protein transport;mitochondrial inner membrane presequence translocase complex;mitochondrial inner membrane"	TIM50	"Cre12.g505950.t1.1;g12448.t1"	TIM50	"Subunit of 50 kDa of the mitochondrial import inner membrane translocase."
+Cre12.g551950			Chloroplast			CGL38	"CGL38;LTD;Cre12.g551950.t1.1;g13502.t1;g13502.t1;LTD;Cre12.g551950.t1.1;CGL38"	"LTD1;LTD1"	"Conserved in the Green Lineage; deletion mutants have no functional LHCI, a function in LHCP delivery and PSI assembly was postulated;Conserved in the Green Lineage; deletion mutants have no functional LHCI, a function in LHCP delivery and PSI assembly was postulated"
+Cre12.g506850							"g12432.t1;Cre12.g506850.t1.1"		
+Cre12.g489900	"GMM:30.1.1;GMM:23.1.2"	"signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG54	"g12187.t1;CYG54;g12187.t1;CYG54"		"Protein with domain similar to isoform A [Drosophila melanogaster];Protein with domain similar to isoform A [Drosophila melanogaster]"
+Cre12.g540500	GMM:31.1	cell.organisation		"GO:0016559;GO:0005779"	"peroxisome fission;integral component of peroxisomal membrane"	CGL108	"g13765.t1;Cre12.g540500.t1.1"	CGL108	"ts-lethal mutant was isolated (PMID 29743196)"
+Cre12.g524300	GMM:35.1.27	"not assigned.no ontology.tetratricopeptide repeat (TPR)"	Chloroplast			CGL71	"g12909.t1;CGL71;Cre12.g524300.t1.1"	PYG7	"Conserved TPR repeat protein related to Arabidoddpsis Pale yellow green7 and Cyanobacterial YCF37"
+Cre12.g523300	GMM:29.7	protein.glycosylation	"Secretory pathway"	"GO:0016021;GO:0006486;GO:0005783;GO:0004579"	"integral component of membrane;protein glycosylation;endoplasmic reticulum;dolichyl-diphosphooligosaccharide-protein glycotransferase activity"	GTR22	"RPN1A;Cre12.g523300.t1.1;GTR22;g12887.t1;RPN1A;Cre12.g523300.t1.1;GTR22;g12887.t1"	"OST1A;OST1A"	"Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1A; similar to ribophorin I, an essential subunit of oligosaccharyltransferase (OST), a glycosyl transferase which is also known as dolichyl-diphosphooligosaccharide--protein glycosyltransferase [EC 2.4.1.119]; catalyses the transfer of an oligosaccharide from dolichol pyrophosphate to selected asparagine residues of nascent polypeptides; Co-orthologous along with Cre12.g523340 with two Ribophorin genes in Arabidopsis thaliana (AT1G7640;Dolichyl-diphosphooligosaccharide--protein glycosyltransferase subunit 1A; similar to ribophorin I, an essential subunit of oligosaccharyltransferase (OST), a glycosyl transferase which is also known as dolichyl-diphosphooligosaccharide--protein glycosyltransferase [EC 2.4.1.119]; catalyses the transfer of an oligosaccharide from dolichol pyrophosphate to selected asparagine residues of nascent polypeptides; Co-orthologous along with Cre12.g523340 with two Ribophorin genes in Arabidopsis thaliana (AT1G7640"
+Cre12.g531350			Mitochondrion			CGL62	"g13077.t1;g13077.t1"	"CGL62;CGL62"	"Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre12.g502901	"GMM:30.2.12;GMM:30.2.11"	"signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI"	Mitochondrion				"g12513.t1;Cre12.g502850.t1.3;g12513.t1;Cre12.g502850.t1.3"		
+Cre12.g512250	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0008408;GO:0006139;GO:0005622;GO:0003676"	"3'-5' exonuclease activity;nucleobase-containing compound metabolic process;intracellular;nucleic acid binding"	RRP7	"g12301.t1;RRP6b;RRP7"	RRP7	"Contains Helicase/RNase D C-terminal (HRDC) domain/ Polymyositis/scleroderma autoantigen-related; similar to exosome components; may cooperate with MUT68 in degradation of miRNAs and siRNAs [PMID: 2142471]"
+Cre12.g526150			"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre12.g518107	"GMM:31.6.1.10;GMM:27.3.67"	"cell.motility.eukaryotes.flagellar associated proteins;RNA.regulation of transcription.putative transcription regulator"					"g12778.t1;Cre12.g518107.t1.1"		
+Cre12.g528650			Chloroplast				"g13018.t1;Cre12.g528650.t1.1"		
+Cre12.g500715	GMM:11.1.9	"lipid metabolism.FA synthesis and FA elongation.long chain fatty acid CoA ligase"	Chloroplast	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"		"Cre12.g500715.t1.1;g12561.t1"		
+Cre12.g498050	"GMM:27.1.3.4;GMM:27.1"	"RNA.processing.3' end processing.CPSF73a;RNA.processing"				CPS3	"CPS3;g12624.t1;Cre12.g498050.t1.1;CPS3;g12624.t1;Cre12.g498050.t1.1"		"(CPSF subunit 3); (CPSF 73 kDa subunit)involved in maturation of 3' end of mRNA; contains an RNA-metabolising metallo-beta-lactamase domain;(CPSF subunit 3); (CPSF 73 kDa subunit)involved in maturation of 3' end of mRNA; contains an RNA-metabolising metallo-beta-lactamase domain"
+Cre12.g541300	"GMM:33.99;GMM:31.1;GMM:29.5.9"	"development.unspecified;cell.organisation;protein.degradation.AAA type"	Mitochondrion	GO:0005524	"ATP binding"		"g13748.t1;Cre12.g541300.t1.1;Cre12.g541300.t1.1;g13748.t1"	"KATL4;KATL4"	
+Cre12.g539100	"GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL57	"HEL57;g13254.t1;HEL57;g13254.t1;g13254.t1;HEL57"		"Most similar to At1g3197; contains stretches of 1 and 9 His residues;Most similar to At1g3197; contains stretches of 1 and 9 His residues;Most similar to At1g3197; contains stretches of 1 and 9 His residues"
+Cre12.g484800	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g12032.t1;g12032.t1"		
+Cre12.g545100			Mitochondrion				g13657.t1		
+Cre12.g489850	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"STPK10;g12188.t1;STK10;Cre12.g489850.t1.1;STK10;STPK10;Cre12.g489850.t1.1;g12188.t1;Cre12.g489850.t1.1;g12188.t1;STPK10;STK10"		"Serine/Threonine Protein Kinase Homolog 10;Serine/Threonine Protein Kinase Homolog 10;Serine/Threonine Protein Kinase Homolog 10"
+Cre12.g519950	"GMM:31.6.1.6.2;GMM:23.4.1"	"cell.motility.eukaryotes.central pair.C1b;nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase"		"GO:0019205;GO:0006508;GO:0006139;GO:0005622;GO:0005524;GO:0004198"	"nucleobase-containing compound kinase activity;proteolysis;nucleobase-containing compound metabolic process;intracellular;ATP binding;calcium-dependent cysteine-type endopeptidase activity"	FAP42	"g12812.t1;C1b-350;GUK3"	FAP42	"Found in the flagellar proteome; Adenylate/guanylate kinase-like Flagellar Associated Protein 42; Contains N-terminal calpain cysteine endopeptidase domain; null-allele mutant was isolated; C1b-350 component of C1b projection on central pair"
+Cre12.g527700	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG19	"CYG19;g12998.t1;CYG19;g12998.t1;g12998.t1;CYG19;CYG19;g12998.t1"		"Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens; null-allele passenger mutation was isolated (PMID 29743196);Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens; null-allele passenger mutation was isolated (PMID 29743196);Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens; null-allele passenger mutation was isolated (PMID 29743196);Probable domain of larger protein similar to guanylate cyclase 1 (GCYB2) from Homo sapiens; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre12.g527400	GMM:4.1.12	"glycolysis.cytosolic branch.phosphoglycerate mutase"		"GO:0046872;GO:0046537;GO:0003824"	"metal ion binding;2,3-bisphosphoglycerate-independent phosphoglycerate mutase activity;catalytic activity"	PGM9	"PGM9;g12992.t1"		
+Cre12.g541252									
+Cre12.g550500							"g13536.t1;Cre12.g550500.t1.1"		
+Cre12.g493750	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"				"Cre12.g493750.t1.1;g12075.t1"		
+Cre12.g509350			Chloroplast			FAP238	"FAP238;g12365.t1;Cre12.g509350.t1.1"	FAP238	"Flagellar Associated Protein, found in the flagellar proteome"
+Cre12.g513852							"g12685.t1;g12685.t1;g12685.t1"		
+Cre12.g559704			Mitochondrion						
+Cre12.g556300	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				CFAP300	"g13406.t1;Cre12.g556300.t1.1;CFAP300;C11orf70;FBB5"	FBB5	"Conserved protein found in ciliated organisms; mutations in human ortholog C11orf70 cause PCD with combined loss of Outer and Inner Dynein arms; identified in the flagellar and basal body proteome [PMID: 15137946]; upregulated by deflagellation; a soluble, mainly cytoplasmic protein, with flagellar localization dependent on IFT"
+Cre12.g551503			Mitochondrion				g13516.t1		
+Cre12.g556650	"GMM:31.2;GMM:29.5.11.4.4"	"cell.division;protein.degradation.ubiquitin.E3.APC"		"GO:0031145;GO:0030071;GO:0005680"	"anaphase-promoting complex-dependent proteasomal ubiquitin-dependent protein catabolic process;regulation of mitotic metaphase/anaphase transition;anaphase-promoting complex"	APC4	"Cre12.g556650.t1.1;DIV77;g13399.t1"	APC4	"ts-lethal mutants were isolated (PMID 29743196)"
+Cre12.g528400	"GMM:29.5.11.4.2;GMM:27.3.11"	"protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.C2H2 zinc finger family"					"g13012.t1;g13012.t1;g13012.t1;g13012.t1;g13012.t1;g13012.t1"		
+Cre12.g497300	"GMM:3.3;GMM:1.1.40"	"minor CHO metabolism.sugar alcohols;PS.lightreaction.cyclic electron flow-chlororespiration"	Chloroplast			CAS1	"TEF2;CAS;g12639.t2;Cre12.g497300.t1.1;Cre12.g497300.t1.1;TEF2;CAS;g12639.t2"	"CAS1;CAS1"	"Present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]. CAS is required for the expression of HLA3 and LCIA which are cooperatively associated with bicarbonate uptake for CO2-concentraing mechanism [PMID:24549931, 27791081]; CAS localization displays a mesh-like structure in the chloroplast under high-CO2 conditions, but CAS gathers inside the pyrenoid as a distinct wheel-like structure at 2 h after transfer to low-CO2 condition, and then localized to the;Present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]. CAS is required for the expression of HLA3 and LCIA which are cooperatively associated with bicarbonate uptake for CO2-concentraing mechanism [PMID:24549931, 27791081]; CAS localization displays a mesh-like structure in the chloroplast under high-CO2 conditions, but CAS gathers inside the pyrenoid as a distinct wheel-like structure at 2 h after transfer to low-CO2 condition, and then localized to the"
+Cre12.g497750	GMM:3.2.2	"minor CHO metabolism.trehalose.TPP"	Mitochondrion	"GO:0005992;GO:0003824"	"trehalose biosynthetic process;catalytic activity"	TPS2	"g12630.t1;TPS2;Cre12.g497750.t1.1;g12630.t1;Cre12.g497750.t1.1;TPS2"	"TSPP1;TSPP1"	"Belongs to the haloacid dehalogenase superfamily of proteins and contains the characteristic DXDX(T/V) active site motif, in which the initial Asp residue forms a phospho-acyl intermediate during catalysis;;Belongs to the haloacid dehalogenase superfamily of proteins and contains the characteristic DXDX(T/V) active site motif, in which the initial Asp residue forms a phospho-acyl intermediate during catalysis;"
+Cre12.g506500	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR19	"g12439.t1;HTR35;Cre12.g506500.t1.1"	HTR19	"Replication linked H3; histone gene cluster XIX (type 43)"
+Cre12.g550800	"GMM:28.2;GMM:28.1"	"DNA.repair;DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0006281;GO:0003684"	"DNA repair;damaged DNA binding"	REV1	"g13529.t2;REV1"	REV1	"Homologous to eukaryotic Rev1; UV-revertible gene 1 product; constitutes the complex with translesion DNA polymerase, Polz; nuclear; functions in translesion synthesis (TLS) of damaged DNA."
+Cre12.g543650			Mitochondrion				"g13696.t1;g13696.t1"		
+Cre12.g546500			"Secretory pathway"	GO:0016021	"integral component of membrane"	TEF22	"TEF22;Cre12.g546500.t1.1;g13625.t1;Cre12.g546500.t1.1;g13625.t1;TEF22;g13625.t1;Cre12.g546500.t1.1;TEF22"	"TEF22;TEF22;TEF22"	"Protein with unknown function, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]; null-allele mutant was isolated (PMID 29743196);Protein with unknown function, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]; null-allele mutant was isolated (PMID 29743196);Protein with unknown function, mitochondrial localization assumed; present in thylakoid-enriched fraction based on mass spectrometric peptide identification [PMID: 17078018]; null-allele mutant was isolated (PMID 29743196)"
+Cre12.g533950	GMM:34.12	transport.metal	Mitochondrion			COT1	"COT1;g13133.t1"		
+Cre12.g514100				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g12690.t1;g12690.t1;g12690.t1;g12690.t1;g12690.t1"		
+Cre12.g503650			Mitochondrion				"g12496.t1;SMM40;Cre12.g503650.t1.1"		
+Cre12.g489700	"GMM:13.1.2.3.21;GMM:13.1.2.3"	"amino acid metabolism.synthesis.glutamate family.arginine.ornithine carbamoyltransferase;amino acid metabolism.synthesis.glutamate family.arginine"	Chloroplast	"GO:0016743;GO:0016597;GO:0006520"	"carboxyl- or carbamoyltransferase activity;amino acid binding;cellular amino acid metabolic process"	OTC1	"OTC1;Cre12.g489700.t1.1;g12191.t1"	OTC1	"Ornithine carbamoyltransferase (OTC) (ARG3 in yeast); chloroplast-targeted; arg4 (LG-XII/XIII) is probably a mutant in this gene; note however that arg4 is not rescued by citrulline, whereas an OTC mutant should"
+Cre12.g495000							g12121.t1		
+Cre12.g491300			Chloroplast						
+Cre12.g499450							g12591.t1		
+Cre12.g517925			Mitochondrion						
+Cre12.g528050			Chloroplast				"g13005.t1;Cre12.g528050.t1.1;Cre12.g528050.t1.1;g13005.t1"		
+Cre12.g505900			"Secretory pathway"				"g12449.t1;g12449.t1"		
+Cre12.g507004			"Secretory pathway"						
+Cre12.g521500							g12847.t1		
+Cre12.g538376			Mitochondrion				g13237.t1		
+Cre12.g506851	"GMM:29.4;GMM:29.3.4.99"	"protein.postranslational modification;protein.targeting.secretory pathway.unspecified"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	BBS3A	"Cre12.g506800.t1.3;g12433.t1;BBS3A"	BBS3A	"Hypothetical conserved protein. Similar to ARF-like small GTPases, similar to BBS3, an Arf-like gene in Chlamydomonas that is homologous to the causative gene of Bardet-Biedl syndrome 3 in humans"
+Cre12.g522250	GMM:26.17	misc.dynamin					"g12862.t1;Cre12.g522250.t1.1;Cre12.g522250.t1.1;g12862.t1"		
+Cre12.g513254	GMM:28.2	DNA.repair					"g12672.t1;Cre12.g513254.t1.1;Cre12.g513254.t1.1;g12672.t1;Cre12.g513254.t1.1;g12672.t1;g12672.t1;Cre12.g513254.t1.1;Cre12.g513254.t1.1;g12672.t1"		
+Cre12.g517200							"g12755.t1;Cre12.g517200.t1.1"		
+Cre12.g484150	"GMM:26.13;GMM:15.2"	"misc.acid and other phosphatases;metal handling.binding, chelation and storage"					"g12017.t2;g12017.t2;g12017.t2"		
+Cre12.g558800							"g13352.t1;g13352.t1;g13352.t1"		
+Cre12.g544662			"Secretory pathway"				"Cre12.g544662.t1.1;g13668.t1"		
+Cre12.g524150	GMM:28.2	DNA.repair		"GO:0006281;GO:0003684"	"DNA repair;damaged DNA binding"	POLH2	"g12906.t1;POLI2;POLH2"	POLH2	"Homologous to eukaryotic DNA polymerase eta; Xeroderma pigmentosum complementation group Variant (XPV); Rad30; Chlamydomonas has at least two homologues of Rad30; null-allele mutant was isolated (PMID 29743196)"
+Cre12.g485418							"g12046.t1;g12046.t1;g12046.t1;g12046.t1;g12046.t1"		
+Cre12.g515100			Mitochondrion						
+Cre12.g546633			Mitochondrion						
+Cre12.g545400							"Cre12.g545400.t1.1;g13651.t1"		
+Cre12.g496700	GMM:21.1	redox.thioredoxin	Chloroplast	"GO:0045454;GO:0015035;GO:0006662"	"cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process"	TRX17	"TRX17;Cre12.g496700.t1.1;g12651.t1;TRL3"		"Unusual thioredoxin (not f-type) exhibiting homology with f-type thioredoxins but contains an unusual active site HCKPC (classically thioredoxins contain a WCGPC or WCPPC active site). The N-terminal extension might represent a transit peptide."
+Cre12.g539076			Mitochondrion						
+Cre12.g559750	"GMM:20.2.99;GMM:20.1.7;GMM:20.1;GMM:2.1"	"stress.abiotic.unspecified;stress.biotic.PR-proteins;stress.biotic;major CHO metabolism.synthesis"	"Secretory pathway"			PRL2	"Cre12.g559750.t1.1;g13324.t1;PRL2"		"CAP (Cysteine-rich secretory proteins, Antigen 5, and Pathogenesis-related 1 protein) superfamily protein"
+Cre12.g557950	"GMM:29.9;GMM:20.2.1"	"protein.co-chaperones;stress.abiotic.heat"	Cytosol			DNJ27	"Cre12.g557950.t1.1;g13371.t1;DNJ27;DNJ27;g13371.t1;Cre12.g557950.t1.1"		"DnaJ-like protein, presumably cytosolic since homolog in Arabidopsis (Q9C58) is weakly predicted by TargetP to be cytosolic; contains N-terminal J-domain (pfam226);DnaJ-like protein, presumably cytosolic since homolog in Arabidopsis (Q9C58) is weakly predicted by TargetP to be cytosolic; contains N-terminal J-domain (pfam226)"
+Cre12.g508000	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast.Membrane.Inner			TIC40	"TIC40;g12396.t1;g12396.t1;TIC40;TIC40;g12396.t1;TIC40;g12396.t1;g12396.t1;TIC40;TIC40;g12396.t1;g12396.t1;TIC40"		"Partial similarity to TIC40 in Arabidopsis thaliana is limited to C-terminal domain;Partial similarity to TIC40 in Arabidopsis thaliana is limited to C-terminal domain;Partial similarity to TIC40 in Arabidopsis thaliana is limited to C-terminal domain;Partial similarity to TIC40 in Arabidopsis thaliana is limited to C-terminal domain;Partial similarity to TIC40 in Arabidopsis thaliana is limited to C-terminal domain;Partial similarity to TIC40 in Arabidopsis thaliana is limited to C-terminal domain;Partial similarity to TIC40 in Arabidopsis thaliana is limited to C-terminal domain"
+Cre12.g493200			Mitochondrion				g12086.t1		
+Cre12.g539181									
+Cre12.g500250							"Cre12.g500250.t1.1;g12571.t1"		
+Cre12.g503050			"Secretory pathway"				g12509.t1		
+Cre12.g507450	GMM:31.4	"cell.vesicle transport"		GO:0005515	"protein binding"	SYP4	"g12413.t1;Cre12.g507450.t1.1;SYP4;g12413.t1;SYP4;Cre12.g507450.t1.1"	"SYP4;SYP4"	"Involved in Trans-Golgi Network trafficking; belongs to Syntaxin16/Syx16/Tlg2/Syp4-family, (Qa.III.a);Involved in Trans-Golgi Network trafficking; belongs to Syntaxin16/Syx16/Tlg2/Syp4-family, (Qa.III.a)"
+Cre12.g524700						HAD4	"HAD4;Cre12.g524700.t1.1;g12917.t1;HAD4;Cre12.g524700.t1.1;g12917.t1"		
+Cre12.g518200	"GMM:21.1.1;GMM:21.1"	"redox.thioredoxin.PDIL;redox.thioredoxin"	"Secretory pathway"	GO:0045454	"cell redox homeostasis"	DNJ3	"DNJ3;g12780.t1;PDI1;DNJ3;g12780.t1;PDI1"		"Fusion protein containing a DnaJ domain (N-Ter) and a PDI domain (C-Ter), also present in other organisms. Similar to the ER resident ERdj5 protein from mammals.;Fusion protein containing a DnaJ domain (N-Ter) and a PDI domain (C-Ter), also present in other organisms. Similar to the ER resident ERdj5 protein from mammals."
+Cre12.g494150			Chloroplast				"g12066.t1;Cre12.g494150.t1.1"		
+Cre12.g518750	GMM:27.1.1	RNA.processing.splicing	"Secretory pathway"				g12789.t1		
+Cre12.g513350			"Secretory pathway"				"g12674.t1;g12674.t1;g12674.t1;g12674.t1"		
+Cre12.g515400							"g12715.t1;g12715.t1;g12715.t1"		
+Cre12.g495138			"Secretory pathway"				g12125.t1		
+Cre12.g517550	GMM:27.1	RNA.processing					"RRM10;g12762.t1"	RRM10	"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre12.g483550	"GMM:29.5.3;GMM:29.3.4.3"	"protein.degradation.cysteine protease;protein.targeting.secretory pathway.vacuole"	Mitochondrion	"GO:0008233;GO:0006508"	"peptidase activity;proteolysis"	VPE1	"Cre12.g483550.t1.1;VPE1;g12003.t1;Cre12.g483550.t1.1;VPE1;g12003.t1;VPE1;g12003.t1;Cre12.g483550.t1.1;VPE1;g12003.t1;Cre12.g483550.t1.1;Cre12.g483550.t1.1;VPE1;g12003.t1"	"VPE1;VPE1;VPE1;VPE1;VPE1"	"A vacuole-targeted cysteine protease (clan CD of the C13 family) that has substrate specificity toward Asn and Asp residues (asparaginyl endopeptidase); most closely related to vegetative-type plant VPEs (maize NP1); plant orthologues are involved in maturation of vacuolar proteins, and possibly in programmed cell death [PMID: 16043487]; the C-terminal propeptide of the Cr enzyme appears longer than in plants and not conserved there is a gap in the alignment with other VPE, near the C-terminus, but no exon;A vacuole-targeted cysteine protease (clan CD of the C13 family) that has substrate specificity toward Asn and Asp residues (asparaginyl endopeptidase); most closely related to vegetative-type plant VPEs (maize NP1); plant orthologues are involved in maturation of vacuolar proteins, and possibly in programmed cell death [PMID: 16043487]; the C-terminal propeptide of the Cr enzyme appears longer than in plants and not conserved there is a gap in the alignment with other VPE, near the C-terminus, but no exon;A vacuole-targeted cysteine protease (clan CD of the C13 family) that has substrate specificity toward Asn and Asp residues (asparaginyl endopeptidase); most closely related to vegetative-type plant VPEs (maize NP1); plant orthologues are involved in maturation of vacuolar proteins, and possibly in programmed cell death [PMID: 16043487]; the C-terminal propeptide of the Cr enzyme appears longer than in plants and not conserved there is a gap in the alignment with other VPE, near the C-terminus, but no exon;A vacuole-targeted cysteine protease (clan CD of the C13 family) that has substrate specificity toward Asn and Asp residues (asparaginyl endopeptidase); most closely related to vegetative-type plant VPEs (maize NP1); plant orthologues are involved in maturation of vacuolar proteins, and possibly in programmed cell death [PMID: 16043487]; the C-terminal propeptide of the Cr enzyme appears longer than in plants and not conserved there is a gap in the alignment with other VPE, near the C-terminus, but no exon;A vacuole-targeted cysteine protease (clan CD of the C13 family) that has substrate specificity toward Asn and Asp residues (asparaginyl endopeptidase); most closely related to vegetative-type plant VPEs (maize NP1); plant orthologues are involved in maturation of vacuolar proteins, and possibly in programmed cell death [PMID: 16043487]; the C-terminal propeptide of the Cr enzyme appears longer than in plants and not conserved there is a gap in the alignment with other VPE, near the C-terminus, but no exon"
+Cre12.g550250	GMM:27.3.17	"RNA.regulation of transcription.CPP(Zn) CPP1-related transcription factor family"	"Secretory pathway"				"g13543.t1;Cre12.g550250.t1.1"		
+Cre12.g546000			Mitochondrion			MRPL54	"g13635.t1;MRPL54;mL54;Cre12.g546000.t1.1"	MRPL54	
+Cre12.g540502			"Secretory pathway"						
+Cre12.g547800	"GMM:26.11.1;GMM:26.11;GMM:16.8.3"	"misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols"		"GO:0055114;GO:0016616;GO:0006694;GO:0003854"	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	SNE15	"SNE15;g13596.t1"		"Putative cinnamoyl-CoA reductase/flavanone 4-reductase, an NAD dependent epimerase/dehydratase. Also in the 3-beta hydroxysteroid dehydrogenase/isomerase family"
+Cre12.g499300	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"	Chloroplast	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE31	"PDE31;Cre12.g499300.t1.1;g12595.t1;Cre12.g499300.t1.1;g12595.t1;PDE31;PDE31;Cre12.g499300.t1.1;g12595.t1"		
+Cre12.g485350							"g12044.t2;Cre12.g485350.t1.1;g12044.t2;Cre12.g485350.t1.1;g12044.t2;Cre12.g485350.t1.1;g12044.t2;Cre12.g485350.t1.1;Cre12.g485350.t1.1;g12044.t2;Cre12.g485350.t1.1;g12044.t2;g12044.t2;Cre12.g485350.t1.1;Cre12.g485350.t1.1;g12044.t2"		
+Cre12.g485950	GMM:27.3.57	"RNA.regulation of transcription.JUMONJI family"	"Secretory pathway"				"g12278.t1;Cre12.g485950.t1.1;g12278.t1;Cre12.g485950.t1.1"		
+Cre12.g522700			"Secretory pathway"				"g12873.t1;Cre12.g522700.t1.1"		
+Cre12.g558450	GMM:22.1.6	"polyamine metabolism.synthesis.spermidine synthase"				SPD1	"SPD1;g13360.t1;Cre12.g558450.t1.1;Cre12.g558450.t1.1;g13360.t1;SPD1;Cre12.g558450.t1.1;g13360.t1;SPD1"	"SPD1;SPD1;SPD1"	"involved in polyamine biosynthesis; converts putrescine to spermidine by addition of an aminopropyl group derived from decarboxylated S-adenosyl Met;involved in polyamine biosynthesis; converts putrescine to spermidine by addition of an aminopropyl group derived from decarboxylated S-adenosyl Met;involved in polyamine biosynthesis; converts putrescine to spermidine by addition of an aminopropyl group derived from decarboxylated S-adenosyl Met"
+Cre12.g532300			Chloroplast			ATG10	"ATG10;g13096.t1;APG10"		"Conserved E2-like conjugating enzyme; mediates formation of the Atg12-Atg5 conjugate, which is a critical step in autophagy"
+Cre12.g483850							"Cre12.g483850.t1.1;g12010.t1"		
+Cre12.g508700	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"		"GO:0016021;GO:0015012;GO:0006024"	"integral component of membrane;heparan sulfate proteoglycan biosynthetic process;glycosaminoglycan biosynthetic process"	ELG2	"g12379.t1;Cre12.g508700.t1.1;ELG2"		"belongs to the family of exostosin-like glycosyltransferases"
+Cre12.g519350	"GMM:31.3;GMM:31.2"	"cell.cycle;cell.division"		GO:0016020	membrane	PHB2	"PHB2;g12801.t1;Cre12.g519350.t1.1;Cre12.g519350.t1.1;g12801.t1;PHB2;PHB2;g12801.t1;Cre12.g519350.t1.1"	"PHB2;PHB2;PHB2"	
+Cre12.g545550			Chloroplast				"Cre12.g545550.t1.1;g13648.t1"		
+Cre12.g505151									
+Cre12.g495600							g12133.t1		
+Cre12.g499650							"Cre12.g499650.t1.1;g12585.t1;Cre12.g499650.t1.1;g12585.t1"		
+Cre12.g511900	GMM:1.3.11	"PS.calvin cycle.RPE"	Chloroplast	"GO:0016857;GO:0005975"	"racemase and epimerase activity, acting on carbohydrates and derivatives;carbohydrate metabolic process"	RPE1	"RPE1;Cre12.g511900.t1.1;g12310.t1;g12310.t1;Cre12.g511900.t1.1;RPE1"	"RPE1;RPE1"	"Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme"
+Cre12.g498300			Chloroplast				"g12619.t1;Cre12.g498300.t1.1"		
+Cre12.g518950	"GMM:4.1.12;GMM:26.13"	"glycolysis.cytosolic branch.phosphoglycerate mutase;misc.acid and other phosphatases"				PGM13	"g12794.t1;Cre12.g518950.t1.1;PGM13;Cre12.g518950.t1.1;PGM13;g12794.t1"		
+Cre12.g487402						CSB43			
+Cre12.g549400			Chloroplast				g13560.t1		
+Cre12.g532100							"g13092.t1;Cre12.g532100.t1.1"	CTAP3	"Copurifies with both Tic20 and Tic214 and may be part of the chloroplast translocon"
+Cre12.g544850							"g13663.t1;Cre12.g544850.t1.1"		
+Cre12.g522500			Mitochondrion				"g12867.t1;g12867.t1"		
+Cre12.g485750						CGL128	g12282.t1	CGL128	
+Cre12.g545177	GMM:31.2	cell.division	Mitochondrion	GO:0006412	translation		"g13795.t1;Cre27.g774650.t1.1;Cre27.g774650.t1.1;g13795.t1;g13795.t1;Cre27.g774650.t1.1"		
+Cre12.g500900	GMM:27.3.67	"RNA.regulation of transcription.putative transcription regulator"		"GO:0031668;GO:0019789;GO:0016925;GO:0016049;GO:0008270;GO:0005634;GO:0005515"	"cellular response to extracellular stimulus;SUMO transferase activity;protein sumoylation;cell growth;zinc ion binding;nucleus;protein binding"		"g12558.t1;PIAS1"	SIZ1	"E3 SUMO ligase"
+Cre12.g556905	GMM:28.2	DNA.repair	Chloroplast				"Cre12.g556905.t1.1;g13390.t1"		
+Cre12.g542800	GMM:27.2	RNA.transcription		"GO:0032549;GO:0006351;GO:0003899;GO:0003677"	"ribonucleoside binding;transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPC2	"Cre12.g542800.t1.1;g13713.t1;RPC2;Cre12.g542800.t1.1;g13713.t1;RPC2;Cre12.g542800.t1.1;RPC2;g13713.t1;RPC2;g13713.t1;Cre12.g542800.t1.1;g13713.t1;RPC2;Cre12.g542800.t1.1;RPC2;g13713.t1;Cre12.g542800.t1.1;Cre12.g542800.t1.1;RPC2;g13713.t1"	"RPC2;RPC2;RPC2;RPC2;RPC2;RPC2;RPC2"	
+Cre12.g507150							"g12419.t1;Cre12.g507150.t1.1;g12419.t1;Cre12.g507150.t1.1;Cre12.g507150.t1.1;g12419.t1;g12419.t1;Cre12.g507150.t1.1"		
+Cre12.g543100	GMM:29.2.3	protein.synthesis.initiation		"GO:0031515;GO:0030488"	"tRNA (m1A) methyltransferase complex;tRNA methylation"		"Cre12.g543100.t1.1;g13707.t1;Cre12.g543100.t1.1;g13707.t1;Cre12.g543100.t1.1;g13707.t1"		
+Cre12.g486800									
+Cre12.g525350			"Secretory pathway"				"PTK15;g12929.t1;PTK15;g12929.t1;PTK15;g12929.t1"		
+Cre12.g501550			Chloroplast				"g12545.t1;Cre12.g501550.t1.1"		
+Cre12.g502950	GMM:35.1.14	"not assigned.no ontology.S RNA-binding domain-containing protein"		GO:0003723	"RNA binding"	CPL15	"g12511.t1;g12511.t1;g12511.t1"	"CPL15;CPL15;CPL15"	"Conserved in the Plant Lineage;Conserved in the Plant Lineage;Conserved in the Plant Lineage"
+Cre12.g540950			Chloroplast				g13757.t1		
+Cre12.g499000							"g12605.t1;Cre12.g499000.t1.1"		
+Cre12.g527050	"GMM:34.99;GMM:29.3.4.99;GMM:28.99"	"transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified"					"g12985.t1;Cre12.g527050.t1.1;Cre12.g527050.t1.1;g12985.t1"		
+Cre12.g561602							g13285.t1		
+Cre12.g556600	GMM:4.1.9	"glycolysis.cytosolic branch.non-phosphorylating glyceraldehyde 3-phosphate dehydrogenase (NPGAP-DH)"		"GO:0055114;GO:0016491;GO:0008152"	"oxidation-reduction process;oxidoreductase activity;metabolic process"	GAPN1	"Cre12.g556600.t1.1;GAP4;g13400.t1"	GAPN1	"Glyceraldehyde 3-phosphate dehydrogenase, nonphosphorylating, NADP-dependent (EC 1.2.1.9), probably cytosolic; based on similarity to GAPN from Nicotiana plumbaginifolia (Swissprot P93338)"
+Cre12.g551501							"g13514.t1;Cre12.g551451.t1.1"		
+Cre12.g537350			"Secretory pathway"			NZP1	g13213.t1	NZP1	
+Cre12.g510750			Mitochondrion				"g12333.t1;GEX6;GEX6;g12333.t1;g12333.t1;GEX6"		"MED27 homology. ts lethal mutations isolated (PMID 25336509);MED27 homology. ts lethal mutations isolated (PMID 25336509);MED27 homology. ts lethal mutations isolated (PMID 25336509)"
+Cre12.g530050	"GMM:3.4.5;GMM:28.1"	"minor CHO metabolism.myo-inositol.inositol phosphatase;DNA.synthesis/chromatin structure"	Mitochondrion				"g13049.t1;Cre12.g530050.t1.1;IPP7;IPP7;g13049.t1;Cre12.g530050.t1.1;Cre12.g530050.t1.1;g13049.t1;IPP7;Cre12.g530050.t1.1;IPP7;g13049.t1;IPP7;g13049.t1;Cre12.g530050.t1.1;IPP7;g13049.t1;Cre12.g530050.t1.1"		"Expressed Protein. Conserved protein similar to inositol polyphosphate phosphatase class of proteins. Contains WD4 repeat domains. May be a phosphoinositide 5-phosphatase or inositol-polyphosphate 5-phosphatase;Expressed Protein. Conserved protein similar to inositol polyphosphate phosphatase class of proteins. Contains WD4 repeat domains. May be a phosphoinositide 5-phosphatase or inositol-polyphosphate 5-phosphatase;Expressed Protein. Conserved protein similar to inositol polyphosphate phosphatase class of proteins. Contains WD4 repeat domains. May be a phosphoinositide 5-phosphatase or inositol-polyphosphate 5-phosphatase;Expressed Protein. Conserved protein similar to inositol polyphosphate phosphatase class of proteins. Contains WD4 repeat domains. May be a phosphoinositide 5-phosphatase or inositol-polyphosphate 5-phosphatase;Expressed Protein. Conserved protein similar to inositol polyphosphate phosphatase class of proteins. Contains WD4 repeat domains. May be a phosphoinositide 5-phosphatase or inositol-polyphosphate 5-phosphatase;Expressed Protein. Conserved protein similar to inositol polyphosphate phosphatase class of proteins. Contains WD4 repeat domains. May be a phosphoinositide 5-phosphatase or inositol-polyphosphate 5-phosphatase"
+Cre12.g561300			Chloroplast	GO:0005815	"microtubule organizing center"		g13291.t2		
+Cre12.g549200							"g13564.t1;g13564.t1"		
+Cre12.g559550			Chloroplast				"g13331.t1;Cre12.g559550.t1.1"		
+Cre12.g537900							g13227.t1		
+Cre12.g516300						CGL154	g12735.t1	CGL154	
+Cre12.g488351			"Secretory pathway"				"g12219.t1;g12219.t1"		
+Cre12.g544113			Mitochondrion	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"				
+Cre12.g533550	"GMM:4.3.14;GMM:4.2.14;GMM:4.1.14;GMM:11.1.30"	"glycolysis.unclear/dually targeted.pyruvate kinase (PK);glycolysis.plastid branch.pyruvate kinase (PK);glycolysis.cytosolic branch.pyruvate kinase (PK);lipid metabolism.FA synthesis and FA elongation.pyruvate kinase"		"GO:0030955;GO:0006096;GO:0004743;GO:0000287"	"potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding"	PYK1	g13125.t1	PYK1	"EC 2.7.1.40; catalyses the final step in glycolysis, which is the conversion of phosphoenolpyruvate to pyruvate with concomitant phosphorylation of ADP to ATP; Target-P predicts weak organelle targeting, but probably cytosolic based on similarity to plant cytosolic pyruvate kinases;"
+Cre12.g555050	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0004518;GO:0003677"	"nuclease activity;DNA binding"	MUS81	"g13432.t1;CJE1"	MUS81	"homolog of yeast and human MUS81; contains an ERCC4 domain"
+Cre12.g525450							g12931.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g512400				"GO:0008134;GO:0006355;GO:0005524"	"transcription factor binding;regulation of transcription, DNA-templated;ATP binding"		"g12298.t1;g12298.t1;g12298.t1;g12298.t1"		"Target of CRR1;Target of CRR1;Target of CRR1;Target of CRR1"
+Cre12.g492350							"Cre12.g492350.t1.1;g12104.t1;g12104.t1;Cre12.g492350.t1.1"		
+Cre12.g503400	"GMM:27.1.1;GMM:27.1"	"RNA.processing.splicing;RNA.processing"				PRP38	"Cre12.g503400.t1.1;g12502.t1;PRP38;Cre12.g503400.t1.1;g12502.t1;PRP38"		"similar to pre-mRNA splicing factor PRP38 family protein;similar to pre-mRNA splicing factor PRP38 family protein"
+Cre12.g537400	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g13215.t1;g13215.t1"		
+Cre12.g555300			Mitochondrion				"g13426.t1;g13426.t1;g13426.t1;g13426.t1"		
+Cre12.g545703			Chloroplast						
+Cre12.g526383				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g484500	GMM:31.1	cell.organisation					"g12026.t1;Cre12.g484500.t1.1"		
+Cre12.g505650							"g12454.t1;Cre12.g505650.t1.1;Cre12.g505650.t1.1;g12454.t1;Cre12.g505650.t1.1;g12454.t1"		
+Cre12.g542750							"g13714.t1;g13714.t1;g13714.t1"		
+Cre12.g520700							"g12829.t1;Cre12.g520700.t1.1"		
+Cre12.g505800	"GMM:30.99;GMM:27.3.67"	"signalling.unspecified;RNA.regulation of transcription.putative transcription regulator"		"GO:0055085;GO:0016020"	"transmembrane transport;membrane"	MSC6	"MSCL2;CAM16;MSC6;g12451.t1;MSCL2;g12451.t1;MSC6;CAM16;MSCL2;CAM16;MSC6;g12451.t1"		"protein of unknown function with mechanosensitive ion channel (MSC) like domain;protein of unknown function with mechanosensitive ion channel (MSC) like domain;protein of unknown function with mechanosensitive ion channel (MSC) like domain"
+Cre12.g500050				GO:0005515	"protein binding"		"g12575.t1;Cre12.g500050.t1.1"		
+Cre12.g517850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	"zinc ion binding"		g12769.t1		
+Cre12.g521000			Chloroplast				g12836.t1		
+Cre12.g553700				GO:0015035	"protein disulfide oxidoreductase activity"	PDO2	"PDO2;Cre12.g553700.t1.1;g13459.t1"	PDO2	
+Cre12.g507650	"GMM:29.9;GMM:29.6.2.6;GMM:20.2.1"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat"	Chloroplast	"GO:0051082;GO:0031072"	"unfolded protein binding;heat shock protein binding"	CDJ1	"g12405.t1;Cre12.g507650.t1.1"	CDJ1	"Class I J-domain protein, involved in protein refolding in the chloroplast by HSP70B; Is part of a multichaperone complex containing HSP70B, CGE1 and HSP90C; Predicted to be targeted to the chloroplast and found in chloroplast protein fractions;"
+Cre12.g527800	"GMM:31.6.1.4.1;GMM:31.1"	"cell.motility.eukaryotes.axonemal dyneins.outer arm;cell.organisation"		"GO:0007017;GO:0005875"	"microtubule-based process;microtubule associated complex"	DLL3	"DNAL4;LC10;ODA-LC10;MOT24;g13000.t1;DLC10;DLC10;ODA-LC10;DNAL4;MOT24;LC10;g13000.t1"	"DLL3;DLL3"	"LC10 component of outer arm dynein, also known as DNAL4 in other organisms; LC8 homolog.;LC10 component of outer arm dynein, also known as DNAL4 in other organisms; LC8 homolog."
+Cre12.g486450			Chloroplast				"g12265.t1;Cre12.g486450.t1.1;g12265.t1;Cre12.g486450.t1.1"		
+Cre12.g507333									
+Cre12.g559150	GMM:29.5	protein.degradation	Chloroplast	GO:0030163	"protein catabolic process"	CLPS2	"g13341.t1;Cre12.g559150.t1.1"	CLPS2	"Probably chloroplastic; homologous to E. coli ClpS [PMID: 11931773] and to At1g68660 [PMID: 12576022], but not to the plant-specific ClpT subunits of the ClpP complex (initially called ClpS; PMID: 14593120)"
+Cre12.g551250	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre12.g551250.t1.1;g13520.t1;Cre12.g551250.t1.1;g13520.t1"	"FLS1;FLS1"	"A CDK-like kinase that functions in the disassembly of distal cilium and controls phosphorylation of aurora-like kinase ALK1 (Cre12.g529550) and Kinesin 13 KIN13A (Cre09.g386700);A CDK-like kinase that functions in the disassembly of distal cilium and controls phosphorylation of aurora-like kinase ALK1 (Cre12.g529550) and Kinesin 13 KIN13A (Cre09.g386700)"
+Cre12.g530900	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"		"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g13067.t1;Cre12.g530900.t1.1;Cre12.g530900.t1.1;g13067.t1;Cre12.g530900.t1.1;g13067.t1;g13067.t1;Cre12.g530900.t1.1;g13067.t1;Cre12.g530900.t1.1;Cre12.g530900.t1.1;g13067.t1;Cre12.g530900.t1.1;g13067.t1;g13067.t1;Cre12.g530900.t1.1;Cre12.g530900.t1.1;g13067.t1;Cre12.g530900.t1.1;g13067.t1"		
+Cre12.g535050	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Mitochondrion	"GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity"		"g13162.t1;g13162.t1"		
+Cre12.g508500	GMM:29.5.7	protein.degradation.metalloprotease	"Secretory pathway"				"Cre12.g508500.t1.1;g12385.t1"		
+Cre12.g532500	GMM:34.14	"transport.unspecified cations"	Chloroplast	GO:0016020	membrane		"Cre12.g532500.t1.1;g13102.t1"		
+Cre12.g517976									
+Cre12.g548650						BBS4	"BBS4;g13577.t1;g13577.t1;BBS4"	"BBS4;BBS4"	"Flagellar protein, peripheral BBsome component; interacts with the centriolar satellite protein PCM1 and recruits the entire BBSome complex to the centrosome;Flagellar protein, peripheral BBsome component; interacts with the centriolar satellite protein PCM1 and recruits the entire BBSome complex to the centrosome"
+Cre12.g539201			"Secretory pathway"						
+Cre12.g491951			"Secretory pathway"				g12151.t2		
+Cre12.g502400			"Secretory pathway"				"Cre12.g502400.t1.1;g12523.t1"		
+Cre12.g514550			Chloroplast				"g12698.t1;g12698.t1"		
+Cre12.g486851			Chloroplast				"g12253.t1;Cre12.g486851.t1.1"		
+Cre12.g520600	GMM:29.2.1.99.1.6	"protein.synthesis.ribosomal protein.unknown.small subunit.S6"	Chloroplast	"GO:0019843;GO:0006412;GO:0005840;GO:0003735"	"rRNA binding;translation;ribosome;structural constituent of ribosome"	PRPS6	"Cre12.g520600.t1.1;g12827.t1"	PRPS6	"imported to chloroplast; Chloroplast Small Ribosomal Subunit Protein S6"
+Cre12.g511750						FAP105	"g12314.t1;Cre12.g511750.t1.1"	FAP105	"Found in the flagellar proteome"
+Cre12.g490800	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		g12169.t1		
+Cre12.g510550	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"	Chloroplast	GO:0005515	"protein binding"		"Cre12.g510550.t1.1;g12338.t1;g12338.t1;Cre12.g510550.t1.1"		
+Cre12.g490250	"GMM:31.1.1.2;GMM:31.1"	"cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"					"Cre12.g490250.t1.1;g12180.t1;g12180.t1;Cre12.g490250.t1.1"		
+Cre12.g546850	GMM:27.3.6	"RNA.regulation of transcription.basic helix-loop-helix family (bHLH)"	Mitochondrion	GO:0016021	"integral component of membrane"		"Cre12.g546850.t1.1;g13617.t1"		
+Cre12.g526701	GMM:34.14	"transport.unspecified cations"	"Secretory pathway"	"GO:0055085;GO:0016021;GO:0015299;GO:0006812"	"transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport"	RBL9	"g12978.t1;Cre12.g526701.t1.1"		
+Cre12.g542500	GMM:27.2	RNA.transcription	Mitochondrion	"GO:0006355;GO:0005739;GO:0003690"	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	MOC1	"g13722.t1;MOC1;Cre12.g542500.t1.1"	STM6	"Putative mitochondrial transcription termination factor; contains two possible mTerf-domains; mutated in state transition deficient stm6 strain; mutation affects expression of nad1 by allowing antisense transcription"
+Cre12.g519150	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		"GO:0016567;GO:0005515;GO:0004842"	"protein ubiquitination;protein binding;ubiquitin-protein transferase activity"		"g12798.t1;Cre12.g519150.t1.1;g12798.t1;Cre12.g519150.t1.1;Cre12.g519150.t1.1;g12798.t1;g12798.t1;Cre12.g519150.t1.1;g12798.t1;Cre12.g519150.t1.1;Cre12.g519150.t1.1;g12798.t1"		
+Cre12.g553500			Mitochondrion			ANK15	"ANK15;g13466.t1"		"protein of unknown function with ankyrin repeats"
+Cre12.g555750			"Secretory pathway"			CPK7	"g13417.t1;CPK7;Cre12.g555750.t1.1"		
+Cre12.g558550	GMM:28.2	DNA.repair	Chloroplast			CPLD60	"g13357.t1;Cre12.g558550.t1.1"	CPLD60	"Conserved in the Plant Lineage and Diatoms"
+Cre12.g541800	GMM:29.5	protein.degradation	Chloroplast	"GO:0070008;GO:0008236;GO:0006508;GO:0004252"	"serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity"		"Cre12.g541800.t1.1;g13737.t1"		
+Cre12.g544750			Chloroplast				g13666.t1		
+Cre12.g488752							"g12212.t1;g12212.t1"		
+Cre12.g525100	GMM:31.2	cell.division				SMC6B	"Cre12.g525100.t1.1;g12925.t1;g12925.t1;Cre12.g525100.t1.1;g12925.t1;Cre12.g525100.t1.1;Cre12.g525100.t1.1;g12925.t1"	"SMC6B;SMC6B;SMC6B;SMC6B"	"Structural maintenance of chromosomes-like protein similar to Rad18.;Structural maintenance of chromosomes-like protein similar to Rad18.;Structural maintenance of chromosomes-like protein similar to Rad18.;Structural maintenance of chromosomes-like protein similar to Rad18."
+Cre12.g501702							g12542.t1		
+Cre12.g554750				GO:0005515	"protein binding"		"g13439.t1;Cre12.g554750.t1.1"		
+Cre12.g538650	"GMM:19.30;GMM:19.3"	"tetrapyrrole synthesis.urogen III methylase;tetrapyrrole synthesis.GSA"	Mitochondrion	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	HEM4	"g13244.t1;SUMT3;HEM4;COBA"	UPM3	"Putative uroporphyrin III methyltransferase or synthase (part). [=HEMD; COBA; CYSG]."
+Cre12.g556000			"Secretory pathway"			ECP88	"Cre12.g556000.t1.1;g13412.t1;ECP88"	ECP88	"extracellular polypeptide Ecp88; induced by sulfur starvation; PMID: 11598240"
+Cre12.g495900			Mitochondrion				"g12139.t1;g12139.t1;g12139.t1"		
+Cre12.g535900	"GMM:29.4;GMM:29.3.4.99"	"protein.postranslational modification;protein.targeting.secretory pathway.unspecified"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	ARL1	"ARL1;g13180.t1"		"Expressed Protein. Arl1-type GTPase, involved in vesicle trafficking in the late secretory system. Called ARFE group in Arabidopsis."
+Cre12.g542350	GMM:20	stress		GO:0006950	"response to stress"		"g13725.t1;Cre12.g542350.t1.1"		
+Cre12.g522000			"Mitochondrion;Chloroplast"				g12857.t1		
+Cre12.g526200			Chloroplast						
+Cre12.g498450	"GMM:31.2;GMM:27.3.99;GMM:20.2.5"	"cell.division;RNA.regulation of transcription.unclassified;stress.abiotic.light"					"Cre12.g498450.t1.1;g12616.t1;Cre12.g498450.t1.1;g12616.t1"		
+Cre12.g532600	GMM:3.5	"minor CHO metabolism.others"	Chloroplast			CGL44	g13104.t1	CGL44	"Conserved in the Green Lineage; null-allele mutant was isolated (PMID 29743196)"
+Cre12.g541600			Chloroplast				"g13742.t1;Cre12.g541600.t1.1"		
+Cre12.g531950	GMM:34.15	transport.potassium		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"		"g13089.t1;g13089.t1"		
+Cre12.g537200	GMM:8.1.5	"TCA / organic transformation.TCA.2-oxoglutarate dehydrogenase"	Mitochondrion	"GO:0055114;GO:0030976;GO:0016624;GO:0008152;GO:0006099;GO:0004591"	"oxidation-reduction process;thiamine pyrophosphate binding;oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor;metabolic process;tricarboxylic acid cycle;oxoglutarate dehydrogenase (succinyl-transferring) activity"	OGD1	"g13209.t1;OGD1;Cre12.g537200.t1.1"	OGD1	"Probable 2-oxoglutarate dehydrogenase (alpha-ketoglutarate dehydrogenase) E1 subunit (EC 1.2.4.2); mitochondrial location predicted by Target-P"
+Cre12.g504150	GMM:29.8	"protein.assembly and cofactor ligation"	Mitochondrion	"GO:0051536;GO:0016226;GO:0005506"	"iron-sulfur cluster binding;iron-sulfur cluster assembly;iron ion binding"	NFU2	"Cre12.g504150.t1.1;NFU2;g12486.t1;NIFU2;g12486.t1;NIFU2;Cre12.g504150.t1.1;NFU2"	"NFU2;NFU2"	"pfam01106, NifU-like domain; COG0694, Thioredoxin-like proteins and domains; similar to human HIRA-interacting protein 5 (CGI-33); possibly targeted to mitochondria;pfam01106, NifU-like domain; COG0694, Thioredoxin-like proteins and domains; similar to human HIRA-interacting protein 5 (CGI-33); possibly targeted to mitochondria"
+Cre12.g526388									
+Cre12.g536251							"g13187.t1;Cre12.g536250.t1.2"		
+Cre12.g544551									
+Cre12.g509800	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP286	"g12355.t1;Cre12.g509800.t1.1"	FAP286	"Flagellar Associated Coiled-Coil Protein; Found in the flagellar proteome; Transcript upregulated during flagellar regeneration"
+Cre12.g544200	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"	Mitochondrion	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN13	"g13678.t1;CYN13;CYN20-4"	CYN20D	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; similar to AtCYP20-2 (TLP2); possibly directed to chloroplast thylakoid lumen; most similar to fungal cyclophilinslinked to CYN20-6 and CYN20-2"
+Cre12.g530150			Mitochondrion				"g13051.t1;Cre12.g530150.t1.1"		
+Cre12.g528950	GMM:27.4	"RNA.RNA binding"		GO:0003723	"RNA binding"	PUF1	"g13025.t1;PUF1"	PUF1	"Puf protein: contains pumilio-family RNA binding domains (PUF). Puf protein family thought to repress gene expression by affecting mRNA translation or stability."
+Cre12.g520800							"Cre12.g520800.t1.1;g12831.t1"		
+Cre12.g537750	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"					"g13224.t1;Cre12.g537750.t1.1;g13224.t1;Cre12.g537750.t1.1"		
+Cre12.g512050				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g12306.t1;g12306.t1"		
+Cre12.g532850			"Secretory pathway"	"GO:0016020;GO:0004970"	"membrane;ionotropic glutamate receptor activity"	PHR3	"g13109.t1;PHR3"	PHR3	
+Cre12.g560700	"GMM:29.9;GMM:29.6.2.6"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones"	Mitochondrion			CDJ6	"CDJ6;g13304.t1"	MDJ1B	"DnaJ-like protein; probably targeted to mitochondria as judged from similarity with Mdj1p from yeast; likely to interact with HSP70C in mitochondrial protein folding; Targeting predictions are ambiguous between mitochondria and chloroplasts"
+Cre12.g515600			"Secretory pathway"				"g12720.t1;g12720.t1"		
+Cre12.g551700							"Cre12.g551700.t1.1;g13509.t1;g13509.t1;Cre12.g551700.t1.1;g13509.t1;Cre12.g551700.t1.1;Cre12.g551700.t1.1;g13509.t1"		
+Cre12.g528150			"Secretory pathway"			OST3	"Cre12.g528150.t1.1;g13007.t1"	OST3	"Oligosaccharyltransferase complex, subunit DC2, OST3/OST6 family; Part of a complex of an ER transmembrane proteins that transfers core oligosaccharide from dolichol carrier to Asn-X-Ser/Thr motifs;"
+Cre12.g520150	GMM:27.1.2	"RNA.processing.RNA helicase"		"GO:0005524;GO:0004386;GO:0003676"	"ATP binding;helicase activity;nucleic acid binding"		"SPL23;g12817.t1;SPLH3"		"DEAH-box ATPase, putative RNA helicase, homologue of S. cerevisiae mRNA splicing helicases Prp2, Prp16, Prp22 and Prp43 which are required at different steps of the spliceosome cycle."
+Cre12.g558353			"Secretory pathway"				"Cre27.g776000.t1.1;Cre27.g776000.t1.2;g13826.t1"		
+Cre12.g513750	GMM:21.4	redox.glutaredoxins		"GO:0045454;GO:0015035;GO:0009055"	"cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity"	GRX1	"g12683.t1;g12683.t1"	"GRX1;GRX1"	"Glutaredoxin 1, CPYC type, probably cytosolic;Glutaredoxin 1, CPYC type, probably cytosolic"
+Cre12.g548577							"Cre27.g774950.t1.1;g13803.t1"		
+Cre12.g531700	GMM:23.2	"nucleotide metabolism.degradation"	Mitochondrion	"GO:0032264;GO:0019239;GO:0003876"	"IMP salvage;deaminase activity;AMP deaminase activity"		"ADA;ADA3;g13084.t1;ADA3;ADA;g13084.t1;ADA3;ADA;g13084.t1;ADA;ADA3;g13084.t1;g13084.t1;ADA3;ADA"		
+Cre12.g502650							g12518.t1		
+Cre12.g548300			"Secretory pathway"				"Cre12.g548300.t1.1;g13585.t1"	TMEM107	"Ortholog of TMEM107 in humans; Human TMEM107 encodes a transmembrane protein and component of the primary cilia transition zone that regulates ciliogenesis and ciliary protein composition"
+Cre12.g530450	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"				"g13057.t1;g13057.t1;g13057.t1;g13057.t1"		"gene MRPS23, Cre12.g530500, for mitochondrial ribosomal protein S23 lies downstream of this gene on the other strand, truncated by sequence gap;gene MRPS23, Cre12.g530500, for mitochondrial ribosomal protein S23 lies downstream of this gene on the other strand, truncated by sequence gap;gene MRPS23, Cre12.g530500, for mitochondrial ribosomal protein S23 lies downstream of this gene on the other strand, truncated by sequence gap;gene MRPS23, Cre12.g530500, for mitochondrial ribosomal protein S23 lies downstream of this gene on the other strand, truncated by sequence gap"
+Cre12.g492954			Mitochondrion				g12113.t1		
+Cre12.g552827	GMM:29.5.7	protein.degradation.metalloprotease				umm15	"Cre27.g775350.t1.2;g13813.t1;Cre27.g775350.t1.1"		
+Cre12.g490350	GMM:16.1.1.6	"secondary metabolism.isoprenoids.non-mevalonate pathway.HDS"		"GO:0055114;GO:0046429;GO:0016114"	"oxidation-reduction process;4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase activity;terpenoid biosynthetic process"	HDS1	"HDS1;g12178.t1;HDS1;g12178.t1"	"HDS1;HDS1"	"1-hydroxy-2-methyl-2-(E)-butenyl 4-diphosphate synthase (4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase), chloroplast precursor; (ispG) (gcpE) [PMID: 15849308];1-hydroxy-2-methyl-2-(E)-butenyl 4-diphosphate synthase (4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase), chloroplast precursor; (ispG) (gcpE) [PMID: 15849308]"
+Cre12.g540100									
+Cre12.g523500	"GMM:9.1.2;GMM:29.5"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;protein.degradation"	"Secretory pathway"			DER1	"g12891.t1;Cre12.g523500.t1.1;g12891.t1;Cre12.g523500.t1.1"	"DER1;DER1"	
+Cre12.g532350	GMM:29.5.7	protein.degradation.metalloprotease		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	CAV8	"CAV8;g13099.t1;g13099.t1;CAV8;g13099.t1;CAV8"	"CAV8;CAV8;CAV8"	"E2-like enzyme mediating Apg12p conjugation; facilitates MAP-LC3 modification (PMID:12890687); end of first intron conserved in Volvox, possible regulatory or non-coding function; null-allele passenger mutation was isolated (PMID 29743196);E2-like enzyme mediating Apg12p conjugation; facilitates MAP-LC3 modification (PMID:12890687); end of first intron conserved in Volvox, possible regulatory or non-coding function; null-allele passenger mutation was isolated (PMID 29743196);E2-like enzyme mediating Apg12p conjugation; facilitates MAP-LC3 modification (PMID:12890687); end of first intron conserved in Volvox, possible regulatory or non-coding function; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre12.g540450							"g13767.t1;Cre12.g540450.t1.1"		
+Cre12.g536600	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				FAP78	"g13195.t1;g13195.t1"	"FAP78;FAP78"	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802];Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]"
+Cre12.g524600			"Secretory pathway"				"g12915.t1;Cre12.g524600.t1.1"		
+Cre12.g507001							"Cre12.g507001.t1.1;g12425.t1"		
+Cre12.g520100	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG66	"g12816.t1;CYG66;g12816.t1;CYG66;CYG66;g12816.t1;CYG66;g12816.t1"		
+Cre12.g526471									
+Cre12.g523250	"GMM:34.99;GMM:34.16"	"transport.misc;transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"		"g12885.t1;MAE15"		
+Cre12.g496302							g12660.t1		
+Cre12.g498150							"Cre12.g498150.t1.1;g12622.t1;Cre12.g498150.t1.1;g12622.t1"		
+Cre12.g536450			Chloroplast				"g13192.t2;Cre12.g536450.t1.1"		
+Cre12.g506050	GMM:27.1.3.8	"RNA.processing.3' end processing.CstF77"		"GO:0006397;GO:0005634"	"mRNA processing;nucleus"		"g12446.t1;g12446.t1"		
+Cre12.g531250			Mitochondrion	GO:0071949	"FAD binding"		"g13075.t1;g13075.t1;g13075.t1"		
+Cre12.g495100	"GMM:27.3.26;GMM:27.3.25;GMM:27.3.20"	"RNA.regulation of transcription.MYB-related transcription factor family;RNA.regulation of transcription.MYB domain transcription factor family;RNA.regulation of transcription.G2-like transcription factor family (GARP)"				PSR1	"Cre12.g495100.t1.1;g12123.t1;Cre12.g495100.t1.1;g12123.t1;Cre12.g495100.t1.1;g12123.t1;Cre12.g495100.t1.1;g12123.t1"	"PSR1;PSR1;PSR1;PSR1"	"Multi-nutrient-responsive transcription regulator;Multi-nutrient-responsive transcription regulator;Multi-nutrient-responsive transcription regulator;Multi-nutrient-responsive transcription regulator"
+Cre12.g524250			Chloroplast				"Cre12.g524250.t1.1;g12908.t1;Cre12.g524250.t1.1;g12908.t1"		
+Cre12.g547700	"GMM:27.3.3;GMM:17.5.2"	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0006464	"cellular protein modification process"	TTL14	"g13599.t1;TTL14;Cre12.g547700.t1.1"	TTL14	
+Cre12.g558600							"g13356.t1;Cre12.g558600.t1.1;g13356.t1;Cre12.g558600.t1.1"		
+Cre12.g487900	GMM:21.99	redox.misc		"GO:0051536;GO:0009055"	"iron-sulfur cluster binding;electron carrier activity"	FDX9	"g12229.t1;FDX9;Cre12.g487900.t1.1;FDX9;g12229.t1;Cre12.g487900.t1.1;Cre12.g487900.t1.1;FDX9;g12229.t1"	"FDX9;FDX9;FDX9"	
+Cre12.g484600	GMM:27.3.46	"RNA.regulation of transcription.DNA methyltransferases"	Chloroplast			DMC6	"DMC6;g12028.t1;Cre12.g484600.t1.1;g12028.t1;Cre12.g484600.t1.1;DMC6;DMC6;g12028.t1;Cre12.g484600.t1.1"		"A putative DNA methyltransferase similar to the mammalian DNMT2 methyltransferases, ChromDB DMT345. Possibly a tRNA (cytosine-5)-methyltransferase.;A putative DNA methyltransferase similar to the mammalian DNMT2 methyltransferases, ChromDB DMT345. Possibly a tRNA (cytosine-5)-methyltransferase.;A putative DNA methyltransferase similar to the mammalian DNMT2 methyltransferases, ChromDB DMT345. Possibly a tRNA (cytosine-5)-methyltransferase."
+Cre12.g495958									
+Cre12.g557400	GMM:28.2	DNA.repair		"GO:0006289;GO:0005634;GO:0003684;GO:0003677"	"nucleotide-excision repair;nucleus;damaged DNA binding;DNA binding"		"g13381.t1;Cre12.g557400.t1.1"		
+Cre12.g559300			Chloroplast			ARM1	"g13338.t1;ARM1;Cre12.g559300.t1.1;ARM1;g13338.t1;Cre12.g559300.t1.1"		"Protein of unknown function, containing armadillo repeat; identified by comparative genomics as being present only in organisms having motile (MOT) cilia;;Protein of unknown function, containing armadillo repeat; identified by comparative genomics as being present only in organisms having motile (MOT) cilia;"
+Cre12.g519450	GMM:11.6	"lipid metabolism.lipid transfer proteins etc"		"GO:0051861;GO:0046836;GO:0017089;GO:0005737"	"glycolipid binding;glycolipid transport;glycolipid transporter activity;cytoplasm"		g12803.t1		
+Cre12.g526500				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"		g12961.t1		
+Cre12.g534876									
+Cre12.g550150									
+Cre12.g497150							"Cre12.g497150.t1.1;g12642.t1"		
+Cre12.g554103			Mitochondrion	GO:0005515	"protein binding"	CGL74	"CGL74;Cre27.g775500.t1.2;Cre27.g775500.t1.1;g13816.t1;Cre27.g775500.t1.1;g13816.t1;Cre27.g775500.t1.2;CGL74"	"CGL74;CGL74"	
+Cre12.g515000			Mitochondrion				g12707.t1		
+Cre12.g537671	"GMM:28.1;GMM:27.3.44"	"DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors"		"GO:0008270;GO:0005524"	"zinc ion binding;ATP binding"		"g13222.t1;Cre65.g793250.t1.1;Cre65.g793250.t1.2"		
+Cre12.g503900			Chloroplast				"Cre12.g503900.t1.1;g12491.t1"		
+Cre12.g518800			"Secretory pathway"				"Cre12.g518800.t1.1;g12791.t1;Cre12.g518800.t1.1;g12791.t1;g12791.t1;Cre12.g518800.t1.1"		
+Cre12.g519050			Chloroplast				"g12796.t1;g12796.t1"		
+Cre12.g495500			Chloroplast				g12131.t1		
+Cre12.g553650				GO:0015035	"protein disulfide oxidoreductase activity"		g13461.t2		
+Cre12.g507350							"g12415.t1;Cre12.g507350.t1.1;g12415.t1;Cre12.g507350.t1.1;Cre12.g507350.t1.1;g12415.t1"		
+Cre12.g524350				"GO:0030896;GO:0006281;GO:0000077"	"checkpoint clamp complex;DNA repair;DNA damage checkpoint"	HUS1	g12910.t1	HUS1	"Forms a sliding clamp complex with Rad9 and Rad1 that mediates repair at sites of DNA damage."
+Cre12.g501800							"g12537.t1;Cre12.g501800.t1.1"		
+Cre12.g539209			Mitochondrion						
+Cre12.g519750			Mitochondrion						
+Cre12.g552500			Chloroplast				"g13488.t1;Cre12.g552500.t1.1"		
+Cre12.g533100			"Secretory pathway"				"g13115.t1;g13115.t1"		
+Cre12.g530100						CGL83	"Cre12.g530100.t1.1;g13050.t1;Cre12.g530100.t1.1;g13050.t1"	"CGL83;CGL83"	
+Cre12.g489650			Mitochondrion				"g12192.t1;g12192.t1;g12192.t1"		
+Cre12.g493500	GMM:13.1.5.2.41	"amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.sarcosine oxidase"	Chloroplast	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	SOX1	"g12080.t1;SOX1;Cre12.g493500.t1.1"	SOX1	
+Cre12.g548201							"Cre12.g548150.t1.2;g13588.t1;g13588.t1;Cre12.g548150.t1.2"		
+Cre12.g493450							"g12081.t1;g12081.t1"		
+Cre12.g531600			"Secretory pathway"				"Cre12.g531600.t1.1;g13082.t1;EIF5Bd"		"IF5 family member"
+Cre12.g548750									
+Cre12.g523200	GMM:33.99	development.unspecified		GO:0005515	"protein binding"	NURF55	"g12884.t1;g12884.t1"	"NURF55;NURF55"	"Nucleosome remodeling factor, ChromDB NFC3401; a member of the nucleosome/chromatin assembly factor group C (RBP4/7 homolog); highly similar to human RbBp48 (Retinoblastoma binding protein) - a WD-40 protein found in several chromatin regulatory complexes. Similar to Drosophila Caf1 (Chromatin assembly factor 1 p55 subunit) (Nucleosome-remodeling factor 55 kDa subunit) (NURF-55);Nucleosome remodeling factor, ChromDB NFC3401; a member of the nucleosome/chromatin assembly factor group C (RBP4/7 homolog); highly similar to human RbBp48 (Retinoblastoma binding protein) - a WD-40 protein found in several chromatin regulatory complexes. Similar to Drosophila Caf1 (Chromatin assembly factor 1 p55 subunit) (Nucleosome-remodeling factor 55 kDa subunit) (NURF-55)"
+Cre12.g551352								LAO1	"L-amino acid oxidase, catalytic subunit M[alpha]; a flavoprotein binding FAD, heavyly O-glycosylated; induced by nitrogen starvation; gene is next to divergently-transcribed LAO2 coding for accessory subunit M[beta], an imine/enamine oxidase completing the conversion of L-aminoacids to ammonium"
+Cre12.g547351			Mitochondrion	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"		"g13605.t1;Cre12.g547351.t1.1;Cre12.g547351.t1.1;g13605.t1;Cre12.g547351.t1.1;g13605.t1;Cre12.g547351.t1.1;g13605.t1;Cre12.g547351.t1.1;g13605.t1;g13605.t1;Cre12.g547351.t1.1;Cre12.g547351.t1.1;g13605.t1"		
+Cre12.g547302			"Secretory pathway"				"g13800.t1;Cre27.g774800.t1.1;g13800.t1;Cre27.g774800.t1.1"		
+Cre12.g507909			Mitochondrion				"Cre12.g507909.t1.1;g12398.t1;Cre12.g507909.t1.1;g12398.t1;g12398.t1;Cre12.g507909.t1.1"		
+Cre12.g561000	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"	Chloroplast	"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN28	g13298.t1	CYN28	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type [PMID: 15051864, PMID:15047905]"
+Cre12.g550468			Mitochondrion						
+Cre12.g516950	GMM:31.6.1.1	"cell.motility.eukaryotes.basal bodies"				SAS6	"Cre12.g516950.t1.1;SAS6;g12750.t1"	BLD12	"Found in basal body proteome as BLD12; Basal body cartwheel protein that establishes the 9-fold symmetry of the centriole; Mutant is deficient in establishing 9-fold symetry and lacks flagella (bald phenotype) when grown under normal conditions; NCBI accession number BAF94334; Related to SAS-6 in humans"
+Cre12.g531150							"g13073.t1;XYI1;XYI1;g13073.t1"		
+Cre12.g509550	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"		"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE5	"PDE5;g12361.t1;g12361.t1;PDE5;PDE5;g12361.t1"		"Metal dependent hydrolase similar to cAMP dependent cyclic phosphodiesterase from Canis XP_852383.1;Metal dependent hydrolase similar to cAMP dependent cyclic phosphodiesterase from Canis XP_852383.1;Metal dependent hydrolase similar to cAMP dependent cyclic phosphodiesterase from Canis XP_852383.1"
+Cre12.g500400							"g12568.t1;Cre12.g500400.t1.1"		
+Cre12.g497900			"Secretory pathway"				"g12627.t1;g12627.t1"		
+Cre12.g507558			Chloroplast	"GO:0016810;GO:0006807"	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"		"Cre22.g765600.t1.1;Cre22.g765600.t1.2;g12410.t1"		
+Cre12.g534151	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006281;GO:0004518"	"DNA repair;nuclease activity"		"EEP9;g13137.t1;Cre12.g534150.t1.3;g13137.t1;EEP9;Cre12.g534150.t1.3;EEP9;g13137.t1;Cre12.g534150.t1.3;g13137.t1;EEP9;Cre12.g534150.t1.3"		"Exodeoxyribonuclease III;Exodeoxyribonuclease III;Exodeoxyribonuclease III;Exodeoxyribonuclease III"
+Cre12.g489050	"GMM:11.3.3;GMM:11.3"	"lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase;lipid metabolism.phospholipid synthesis"				PCT2	"Cre12.g489050.t1.1;g12205.t1;PCT2;CDS2"	PCT2	"Phosphatidate cytidylyltransferase (CDP-diglyceride synthetase)"
+Cre12.g507007			Mitochondrion						
+Cre12.g544952							g13661.t1		
+Cre12.g511640			"Secretory pathway"	"GO:0006506;GO:0005789"	"GPI anchor biosynthetic process;endoplasmic reticulum membrane"	PIGX	"g12317.t1;PIGX"	PIGX1	
+Cre12.g517451	GMM:29.5	protein.degradation		"GO:0006508;GO:0004197"	"proteolysis;cysteine-type endopeptidase activity"		"Cre12.g517450.t1.3;g12760.t1"		
+Cre12.g529725			"Secretory pathway"				g13042.t1		
+Cre12.g521650	GMM:11.7	"lipid metabolism.unassigned"	Chloroplast	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"		"g12850.t1;Cre12.g521650.t1.1"		
+Cre12.g532867							"g13110.t1;g13110.t1"		
+Cre12.g560300	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g13313.t3;Cre12.g560300.t1.1;Cre12.g560300.t1.1;g13313.t3;g13313.t3;Cre12.g560300.t1.1;Cre12.g560300.t1.1;g13313.t3;Cre12.g560300.t1.1;g13313.t3"		
+Cre12.g526295				"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre12.g522800							"Cre12.g522800.t1.1;g12875.t1"		
+Cre12.g492850			"Secretory pathway"				"g12093.t1;g12093.t1;g12093.t1"	"POC19;POC19;POC19"	"Identified by mass spectrometry analysis of Chlamydomonas centrioles;Identified by mass spectrometry analysis of Chlamydomonas centrioles;Identified by mass spectrometry analysis of Chlamydomonas centrioles"
+Cre12.g490000	GMM:29.2.3	protein.synthesis.initiation		"GO:0005850;GO:0003743;GO:0003723;GO:0003676"	"eukaryotic translation initiation factor 2 complex;translation initiation factor activity;RNA binding;nucleic acid binding"	EIF2A	"EIF2Ab;EIF2A-2;Cre12.g490000.t1.1;EIF2A;g12185.t1;EIF2Ab;EIF2A-2;Cre12.g490000.t1.1;g12185.t1;EIF2A;EIF2A-2;EIF2Ab;g12185.t1;EIF2A;Cre12.g490000.t1.1"	"EIF2A;EIF2A;EIF2A"	"putative eukaryotic translation initiation factor 2 alpha-subunit-like; eIF2;putative eukaryotic translation initiation factor 2 alpha-subunit-like; eIF2;putative eukaryotic translation initiation factor 2 alpha-subunit-like; eIF2"
+Cre12.g492152									
+Cre12.g515301			Mitochondrion				g12713.t1		
+Cre12.g521400				"GO:0009236;GO:0003824"	"cobalamin biosynthetic process;catalytic activity"		"g12845.t1;Cre12.g521400.t1.1"		
+Cre12.g483476			Mitochondrion						
+Cre12.g557500			"Secretory pathway"	"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"		"g13379.t1;g13379.t1;g13379.t1;g13379.t1;g13379.t1"		
+Cre12.g514250	GMM:27.3.57	"RNA.regulation of transcription.JUMONJI family"		"GO:0055114;GO:0016706;GO:0005515;GO:0003677"	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors;protein binding;DNA binding"	HLM17	"Cre12.g514250.t1.1;HLM17;g12692.t1;HLM17;Cre12.g514250.t1.1;g12692.t1;g12692.t1;Cre12.g514250.t1.1;HLM17;g12692.t1;Cre12.g514250.t1.1;HLM17;HLM17;g12692.t1;Cre12.g514250.t1.1;HLM17;Cre12.g514250.t1.1;g12692.t1;g12692.t1;HLM17;Cre12.g514250.t1.1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g560400	GMM:27.4	"RNA.RNA binding"	Chloroplast	GO:0003723	"RNA binding"	DNJ16	"DNJ16;g13311.t1;g13311.t1;DNJ16;DNJ16;g13311.t1;DNJ16;g13311.t1"		"DnaJ-like protein; contains N-terminal K homology RNA-binding domain, type I (cd15) and C-terminal J-domain (pfam226);DnaJ-like protein; contains N-terminal K homology RNA-binding domain, type I (cd15) and C-terminal J-domain (pfam226);DnaJ-like protein; contains N-terminal K homology RNA-binding domain, type I (cd15) and C-terminal J-domain (pfam226);DnaJ-like protein; contains N-terminal K homology RNA-binding domain, type I (cd15) and C-terminal J-domain (pfam226)"
+Cre12.g525550				GO:0016787	"hydrolase activity"	MPA10	"MPA10;Cre12.g525550.t1.1;g12933.t1"		
+Cre12.g530000	"GMM:30.6;GMM:3.6"	"signalling.MAP kinases;minor CHO metabolism.callose"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre12.g530000.t1.1;g13048.t1;g13048.t1;Cre12.g530000.t1.1;g13048.t1;Cre12.g530000.t1.1"		
+Cre12.g489150						SHD1	"g12202.t1;SHD1;Cre12.g489150.t1.1;Cre12.g489150.t1.1;SHD1;g12202.t1;Cre12.g489150.t1.1;SHD1;g12202.t1"	"SHD1;SHD1;SHD1"	"SH2-domain protein, SH2 domains bind phosphotyrosine residues and function in protein tyrosine kinase signalling (PMID: 15680235);SH2-domain protein, SH2 domains bind phosphotyrosine residues and function in protein tyrosine kinase signalling (PMID: 15680235);SH2-domain protein, SH2 domains bind phosphotyrosine residues and function in protein tyrosine kinase signalling (PMID: 15680235)"
+Cre12.g529250							"g13031.t1;g13031.t1;g13031.t1;g13031.t1;g13031.t1"		
+Cre12.g508853						BPL2	"Cre12.g508800.t1.3;g12377.t1;BPL2;BPL2;g12377.t1;Cre12.g508800.t1.3"	"BPL2;BPL2"	"Biotin apo-protein ligase; biotin-[methylcrotonoyl-CoA-carboxylase] ligase;Biotin apo-protein ligase; biotin-[methylcrotonoyl-CoA-carboxylase] ligase"
+Cre12.g529200			Mitochondrion				g13030.t1		
+Cre12.g522626			Mitochondrion						
+Cre12.g542627			Mitochondrion						
+Cre12.g552850	GMM:13.2.5.2	"amino acid metabolism.degradation.serine-glycine-cysteine group.glycine"	Mitochondrion			CGL77	"CGL77;g13481.t1;g13481.t1;CGL77"	"CGL77;CGL77"	"Conserved protein with unknown function, aminomethyl transferase motif;Conserved protein with unknown function, aminomethyl transferase motif"
+Cre12.g522100	"GMM:34.99;GMM:29.3.4.99"	"transport.misc;protein.targeting.secretory pathway.unspecified"					g12859.t1		
+Cre12.g518100							"FAL16;g12777.t1"		
+Cre12.g505200	"GMM:29.2.3;GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2"	"protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"		"GO:0005524;GO:0003676"	"ATP binding;nucleic acid binding"	HEL51	"HEL51;g12463.t1;Cre12.g505200.t1.1"		
+Cre12.g538450	"GMM:26.1;GMM:11.3"	"misc.misc2;lipid metabolism.phospholipid synthesis"	"Secretory pathway"	"GO:0016780;GO:0016020;GO:0008654"	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	EPT1	"EPT1;Cre12.g538450.t1.1;g13239.t1"	EPT1	"CDP-Etn:DAG Ethanolamine phosphotransferase in Kennedy pathway for PtdEtn biosynthesis"
+Cre12.g528600						CSB47	"CSB47;TNP31;g13016.t1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre12.g543050							"Cre12.g543050.t1.1;g13708.t1"		
+Cre12.g543302	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"		"g13705.t1;Cre12.g543250.t1.3"		
+Cre12.g495300	"GMM:13.1.7.4;GMM:13.1.7.3"	"amino acid metabolism.synthesis.histidine.bifunctional phosphoribosyl-ATP pyrophosphatase / phosphoribosyl-AMP cyclohydrolase;amino acid metabolism.synthesis.histidine.phosphoribosyl-AMP cyclohydrolase"	Chloroplast	GO:0000105	"histidine biosynthetic process"	HIS6	"HIS6;g12127.t1;Cre12.g495300.t1.1"	HIS6	"1-(5-phosphoribosyl)-5-[(5- phosphoribosylamino)methylideneamino]imidazole-4-carboxamide isomerase (EC 5.3.1.16); phosphoribosylformimino-5-aminoimidazole carboxamide ribonucleotide (ProFAR) isomerase; predicted plastid targeting by Target-P; histidine biosynthesis enzyme"
+Cre12.g485478							"Cre12.g485480.t1.1;g12049.t1"		
+Cre12.g487250	"GMM:27.3.99;GMM:20.1;GMM:2.1"	"RNA.regulation of transcription.unclassified;stress.biotic;major CHO metabolism.synthesis"	Mitochondrion				"Cre12.g487250.t1.1;g12244.t1"		
+Cre12.g507250	"GMM:31.2;GMM:27.1.19"	"cell.division;RNA.processing.ribonucleases"					g12417.t1		
+Cre12.g538492			Mitochondrion				"g13240.t1;Cre12.g538492.t1.1"		
+Cre12.g545950	"GMM:30.2.23;GMM:29.4.1.57;GMM:29.4.1.56;GMM:29.4.1;GMM:29.4"	"signalling.receptor kinases.RKF3 like;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VI;protein.postranslational modification.kinase;protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	MAPKKK9	"MAPKKK9;g13636.t1;MAPKKK9;g13636.t1;g13636.t1;MAPKKK9"		"MAP3K9;MAP3K9;MAP3K9"
+Cre12.g527300	GMM:28.1	"DNA.synthesis/chromatin structure"		GO:0005524	"ATP binding"	RFC5	"Cre12.g527300.t1.1;RFC5;g12990.t1"	RFC5	"Homologous to eukaryotic RFC5 (DNA replication factor C complex subunit 5); accessory protein of DNA polymerase"
+Cre12.g510600	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre12.g510600.t1.1;STPK11;STK11;g12337.t1;STPK11;Cre12.g510600.t1.1;STK11;g12337.t1;g12337.t1;Cre12.g510600.t1.1;STPK11;STK11;g12337.t1;STPK11;Cre12.g510600.t1.1;STK11"		"Serine/Threonine Protein Kinase Homolog 11;Serine/Threonine Protein Kinase Homolog 11;Serine/Threonine Protein Kinase Homolog 11;Serine/Threonine Protein Kinase Homolog 11"
+Cre12.g530950	GMM:33.1	"development.storage proteins"		GO:0006629	"lipid metabolic process"	TGL18	"TGL18;g13069.t1;TGL18;g13069.t1"		
+Cre12.g492400									
+Cre12.g531850			Chloroplast				"Cre12.g531850.t1.1;g13087.t1;Cre12.g531850.t1.1;g13087.t1;Cre12.g531850.t1.1;g13087.t1;g13087.t1;Cre12.g531850.t1.1"		
+Cre12.g555650			Chloroplast				g13419.t1		
+Cre12.g498850	GMM:29.5.3	"protein.degradation.cysteine protease"	"Secretory pathway"	"GO:0008234;GO:0006508"	"cysteine-type peptidase activity;proteolysis"	CEP12	"Cre12.g498850.t1.1;g12608.t1;CEP12"		"Cysteine-type endopeptidase, papain type"
+Cre12.g510252			Mitochondrion				g12345.t1		
+Cre12.g541352	"GMM:11.9.2.1;GMM:11.9.2"	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase;lipid metabolism.lipid degradation.lipases"	"Secretory pathway"	GO:0006629	"lipid metabolic process"	LIP1	"LIP1;g13786.t1;Cre27.g774250.t1.1;LIP1;g13786.t1;Cre27.g774250.t1.1;Cre27.g774250.t1.1;LIP1;g13786.t1;Cre27.g774250.t1.1;g13786.t1;LIP1;Cre27.g774250.t1.1;LIP1;g13786.t1;g13786.t1;Cre27.g774250.t1.1;LIP1;Cre27.g774250.t1.1;g13786.t1;LIP1"		
+Cre12.g488550							"g12214.t1;FKM8;Cre12.g488550.t1.1;FKM8;g12214.t1;Cre12.g488550.t1.1;Cre12.g488550.t1.1;FKM8;g12214.t1;g12214.t1;FKM8;Cre12.g488550.t1.1;Cre12.g488550.t1.1;FKM8;g12214.t1;g12214.t1;FKM8;Cre12.g488550.t1.1;FKM8;g12214.t1;Cre12.g488550.t1.1;Cre12.g488550.t1.1;FKM8;g12214.t1"		"FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces;FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces"
+Cre12.g524850			Mitochondrion				"g12920.t4;g12920.t4;g12920.t4;g12920.t4"		
+Cre12.g501050	GMM:27.1	RNA.processing				ALD6	"Cre12.g501050.t1.1;ALD6;g12555.t1;ALDH25;Cre12.g501050.t1.1;ALDH25;g12555.t1;ALD6"		
+Cre12.g508233			"Secretory pathway"						
+Cre12.g544300							g13676.t2		
+Cre12.g494800						DII1	"g12117.t1;IDA4;DII1;p28IDA4;IDA-IC28"	DII1	"p28 component of inner arm dyneins"
+Cre12.g561500			Chloroplast				"g13287.t1;Cre12.g561500.t1.1;g13287.t1;Cre12.g561500.t1.1"		
+Cre12.g499100	GMM:29.3.4.2	"protein.targeting.secretory pathway.golgi"		"GO:0005515;GO:0000042"	"protein binding;protein targeting to Golgi"		g12603.t1		
+Cre12.g497000						FAP14	"Cre12.g497000.t1.1;g12645.t1"	FAP14	"Conserved uncharacterized Flagellar Associated Protein; similar to Human / Mouse HEAT - like repeat containing protein; found in the flagellar proteome"
+Cre12.g512350			Mitochondrion				"g12299.t1;Cre12.g512350.t1.1"		
+Cre12.g486700						FAP271	g12257.t1	FAP271	"Flagellar Associated Protein; found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre12.g541850							"g13735.t1;Cre12.g541850.t1.1"		
+Cre12.g504600	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO15	"Cre12.g504600.t1.1;g12476.t1;HFO15"	HFO15	"replication linked H4; histone gene cluster XV (type 34BA)"
+Cre12.g555951	GMM:23.5.3	"nucleotide metabolism.deoxynucleotide metabolism.cytosine deaminase"		GO:0008270	"zinc ion binding"	RFD1	"PYRD1;g13414.t1;Cre12.g555900.t1.2;RFD1"		"Possible bifunctional enzyme of 5-amino-6-(5-phosphoribosylamino)uracil reductase and diaminohydroxyphosphoribosylaminopyrimidine deaminase; Possible cytosine/CMP/dCMP deaminase; Orthologous to AT4G20960, which is known to be a monofunctional pyrimidine deaminase;"
+Cre12.g545704									
+Cre12.g527100	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	"Secretory pathway"	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"		"g12986.t2;g12986.t2;g12986.t2;g12986.t2;g12986.t2;g12986.t2"		
+Cre12.g511000			Mitochondrion				g12328.t1		
+Cre12.g496500			"Secretory pathway"			PHC70	"PHC70;g12654.t1"		
+Cre12.g501250							"g12551.t1;g12551.t1"		
+Cre12.g524950	"GMM:33.99;GMM:3.5"	"development.unspecified;minor CHO metabolism.others"	Mitochondrion	GO:0005525	"GTP binding"		"ENGB;g12922.t1"	ENGB1	
+Cre12.g516800	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g12747.t1;g12747.t1;g12747.t1;g12747.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g559700			Chloroplast				"g13325.t2;g13325.t2"		
+Cre12.g521600							"g12849.t1;EEP7"		"Related to TRAF and TNF receptor associated protein"
+Cre12.g556800			Mitochondrion						
+Cre12.g508643			Chloroplast						
+Cre12.g530600	GMM:12.2.2	"N-metabolism.ammonia metabolism.glutamine synthetase"	Chloroplast	"GO:0006807;GO:0006542;GO:0004356"	"nitrogen compound metabolic process;glutamine biosynthetic process;glutamate-ammonia ligase activity"	GLN3	"g13060.t1;g13060.t1;g13060.t1;g13060.t1;g13060.t1;g13060.t1"	"GLN3;GLN3;GLN3;GLN3;GLN3;GLN3"	"Glutamine synthetase (EC 6.3.1.2), plastid precursor (Glutamate-ammonia ligase); Arranged head-to-head with another glutamine synthetase gene, GLN2; GLN2 & GLN3 are very nearly identical at the predicted aa level, and also nearly identical in the coding sequence at the nucleotide level;Glutamine synthetase (EC 6.3.1.2), plastid precursor (Glutamate-ammonia ligase); Arranged head-to-head with another glutamine synthetase gene, GLN2; GLN2 & GLN3 are very nearly identical at the predicted aa level, and also nearly identical in the coding sequence at the nucleotide level;Glutamine synthetase (EC 6.3.1.2), plastid precursor (Glutamate-ammonia ligase); Arranged head-to-head with another glutamine synthetase gene, GLN2; GLN2 & GLN3 are very nearly identical at the predicted aa level, and also nearly identical in the coding sequence at the nucleotide level;Glutamine synthetase (EC 6.3.1.2), plastid precursor (Glutamate-ammonia ligase); Arranged head-to-head with another glutamine synthetase gene, GLN2; GLN2 & GLN3 are very nearly identical at the predicted aa level, and also nearly identical in the coding sequence at the nucleotide level;Glutamine synthetase (EC 6.3.1.2), plastid precursor (Glutamate-ammonia ligase); Arranged head-to-head with another glutamine synthetase gene, GLN2; GLN2 & GLN3 are very nearly identical at the predicted aa level, and also nearly identical in the coding sequence at the nucleotide level;Glutamine synthetase (EC 6.3.1.2), plastid precursor (Glutamate-ammonia ligase); Arranged head-to-head with another glutamine synthetase gene, GLN2; GLN2 & GLN3 are very nearly identical at the predicted aa level, and also nearly identical in the coding sequence at the nucleotide level"
+Cre12.g488173			Chloroplast				"g12222.t1;Cre12.g488173.t1.1;g12222.t1;Cre12.g488173.t1.1;Cre12.g488173.t1.1;g12222.t1"		
+Cre12.g516717			"Secretory pathway"						
+Cre12.g513450	GMM:31.1	cell.organisation	Mitochondrion	"GO:0007017;GO:0005874;GO:0003924"	"microtubule-based process;microtubule;GTPase activity"	TUH1	"TUH1;TUH;g12676.t1;Cre12.g513450.t1.1;g12676.t1;Cre12.g513450.t1.1;TUH1;TUH"	"TUH1;TUH1"	"similar to zeta-tubulin from Paramecium [gi:9501681];similar to zeta-tubulin from Paramecium [gi:9501681]"
+Cre12.g484100	GMM:27.2	RNA.transcription				RPC19	"Cre12.g484100.t1.1;RPC19;g12016.t1"	RPC19	"putative DNA-directed RNA polymerase subunit, common to RNA polymerases I and III; Rpc19"
+Cre12.g525990			Chloroplast			HCS5	HCS5		
+Cre12.g504400			Mitochondrion				"g12480.t1;Cre12.g504400.t1.1"		
+Cre12.g526111				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g533700	GMM:27.3.69	"RNA.regulation of transcription.SET-domain transcriptional regulator family"		"GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity"	cya12	"g13128.t1;CYA12;CYA12;g13128.t1;g13128.t1;CYA12;CYA12;g13128.t1;g13128.t1;CYA12"		"Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade; null-allele passenger mutation was isolated (PMID 29743196);Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade; null-allele passenger mutation was isolated (PMID 29743196);Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade; null-allele passenger mutation was isolated (PMID 29743196);Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade; null-allele passenger mutation was isolated (PMID 29743196);Contains a periplasmic binding protein-like II domain and bacterial extracellular solute-binding (family 1) domain and a Class III nucleotidyl cyclase domain; may be involved in solute transport and early steps of a signal transduction cascade; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre12.g554250			Chloroplast	"GO:0070569;GO:0008152"	"uridylyltransferase activity;metabolic process"	LPB1	"g13448.t1;g13448.t1;g13448.t1;g13448.t1"	"LPB1;LPB1;LPB1;LPB1"	"gi 63095241 gb AY946347.1; Low Photochemical Bleaching 1 protein, required for survival in Pi-deficiency. Contains a domain similar to nucleotide-diphospho-sugar transferases;;gi 63095241 gb AY946347.1; Low Photochemical Bleaching 1 protein, required for survival in Pi-deficiency. Contains a domain similar to nucleotide-diphospho-sugar transferases;;gi 63095241 gb AY946347.1; Low Photochemical Bleaching 1 protein, required for survival in Pi-deficiency. Contains a domain similar to nucleotide-diphospho-sugar transferases;;gi 63095241 gb AY946347.1; Low Photochemical Bleaching 1 protein, required for survival in Pi-deficiency. Contains a domain similar to nucleotide-diphospho-sugar transferases;"
+Cre12.g511050	"GMM:31.6.1.5.2;GMM:20.2.1"	"cell.motility.eukaryotes.radial spoke.stalk;stress.abiotic.heat"				RSP16	"g12327.t1;Cre12.g511050.t1.1"	RSP16	"A structural HSP40 (DnaJ) in the radial spoke stalk [PMID: 16507594, PMID: 15563613; GI:56404248]"
+Cre12.g542900	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g13711.t1;g13711.t1;g13711.t1;g13711.t1;g13711.t1"		
+Cre12.g541500							"g13744.t1;g13744.t1;g13744.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g499750	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		g12583.t1		
+Cre12.g532700							g13106.t1		
+Cre12.g549350			Chloroplast				"g13561.t1;Cre12.g549350.t1.1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g528250						FAP379	"g13009.t1;g13009.t1;g13009.t1"	"FAP379;FAP379;FAP379"	"null-allele mutant was isolated (PMID 29743196; Found in Cr and Volvox but not strongly conserved elsewhere;null-allele mutant was isolated (PMID 29743196; Found in Cr and Volvox but not strongly conserved elsewhere;null-allele mutant was isolated (PMID 29743196; Found in Cr and Volvox but not strongly conserved elsewhere"
+Cre12.g537100	"GMM:29.1.9;GMM:29.1"	"protein.aa activation.valine-tRNA ligase;protein.aa activation"		"GO:0006438;GO:0006418;GO:0005524;GO:0004832;GO:0004812;GO:0000166"	"valyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;ATP binding;valine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding"	TSV2	"g13207.t1;Cre12.g537100.t1.1;TSV;g13207.t1;TSV;Cre12.g537100.t1.1"	"TSV2;TSV2"	
+Cre12.g555400			Chloroplast			CGLD32	"g13424.t1;Cre12.g555400.t1.1;Cre12.g555400.t1.1;g13424.t1"	"CGLD32;CGLD32"	
+Cre12.g552005	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion						
+Cre12.g550550	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"	"Secretory pathway"	"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG48	"CYG48;g13534.t1"		"similar to guanylate cyclase 1, soluble, beta 2 [Homo sapiens]"
+Cre12.g513600	"GMM:29.5.11.2;GMM:29.4"	"protein.degradation.ubiquitin.E1;protein.postranslational modification"		GO:0005515	"protein binding"		"Cre12.g513600.t1.1;SGTA;g12679.t1;g12679.t1;SGTA;Cre12.g513600.t1.1;g12679.t1;SGTA;Cre12.g513600.t1.1"	"SGTA1;SGTA1;SGTA1"	"Co-chaperone of cytosolic HSP70 and HSP90; involved in NOD-like receptor maturation in plants and kinetochore assembly in yeast; Sgt1 in yeast;Co-chaperone of cytosolic HSP70 and HSP90; involved in NOD-like receptor maturation in plants and kinetochore assembly in yeast; Sgt1 in yeast;Co-chaperone of cytosolic HSP70 and HSP90; involved in NOD-like receptor maturation in plants and kinetochore assembly in yeast; Sgt1 in yeast"
+Cre12.g513150	GMM:29.3.2	protein.targeting.mitochondria				MIA40	"Cre12.g513150.t1.1;MIA40;g12670.t1"		"GenBank: EDO96731.1, which maps to this gene locus, was identified as the Chlamydomonos ortholog of MIA40 in [PMID: 18493047], however that is likely incorrect; Cre03.g144827 has since been identified as the C.reinhardtii MIA40"
+Cre12.g559000	GMM:27.1	RNA.processing	"Secretory pathway"				"g13347.t1;g13347.t1"		
+Cre12.g530350	GMM:34.12	transport.metal	"Secretory pathway"	"GO:0055085;GO:0046873;GO:0030001;GO:0016020"	"transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane"	IRT2	"IRT2;CrZIP12;g13055.t1;ZIP10;IRT2;CrZIP12;g13055.t1;ZIP10"	"IRT2;IRT2"	"Similarity to ZIP GufA-like subfamily; expression induced specifically during Fe deficiency; Physically linked to IRT1; Target of CRR1;Similarity to ZIP GufA-like subfamily; expression induced specifically during Fe deficiency; Physically linked to IRT1; Target of CRR1"
+Cre12.g554953	GMM:9.3	"mitochondrial electron transport / ATP synthesis.electron transfer flavoprotein"		GO:0009055	"electron carrier activity"	ETF2	"Cre27.g775600.t1.2;Cre27.g775600.t1.1;g13818.t1;ETF2"	ETFB1	"Putative electron transfer flavoprotein beta-subunit, mitochondrial; the electron transfer flavoprotein serves as a specific electron acceptor for several dehydrogenases, including five acyl-CoA dehydrogenases, glutaryl-CoA and sarcosine dehydrogenase; Orthologous to Arabidopsis ETFbeta"
+Cre12.g547300	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		g13607.t1		"Target of CRR1"
+Cre12.g519850			Mitochondrion				"g12810.t1;Cre12.g519850.t1.1;Cre12.g519850.t1.1;g12810.t1"		
+Cre12.g489400	GMM:34.7	transport.phosphate	"Secretory pathway"	"GO:0016020;GO:0006817;GO:0005315"	"membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity"	PTB7	"Cre12.g489400.t1.1;PTB7;g12197.t1"	PTB7	"Putative phosphate transporter, similar to yeast Pho89, Neurospora PHO4 probable Na+/Pi symporters;"
+Cre12.g486950			"Secretory pathway"			CSV7	"CSV7;g12251.t1;CSV7;g12251.t1;CSV7;g12251.t1"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre12.g501403	GMM:3.3	"minor CHO metabolism.sugar alcohols"	"Secretory pathway"	"GO:0016021;GO:0006952"	"integral component of membrane;defense response"	MLO2	"g12547.t1;Cre12.g501403.t1.1;MLO2;Cre12.g501403.t1.1;MLO2;g12547.t1;Cre12.g501403.t1.1;MLO2;g12547.t1;g12547.t1;MLO2;Cre12.g501403.t1.1;g12547.t1;MLO2;Cre12.g501403.t1.1;g12547.t1;MLO2;Cre12.g501403.t1.1;g12547.t1;Cre12.g501403.t1.1;MLO2"		"Integral membrane protein, plant GCPR-like Mlo family; contains a C-terminal EF-hand domain pair;Integral membrane protein, plant GCPR-like Mlo family; contains a C-terminal EF-hand domain pair;Integral membrane protein, plant GCPR-like Mlo family; contains a C-terminal EF-hand domain pair;Integral membrane protein, plant GCPR-like Mlo family; contains a C-terminal EF-hand domain pair;Integral membrane protein, plant GCPR-like Mlo family; contains a C-terminal EF-hand domain pair;Integral membrane protein, plant GCPR-like Mlo family; contains a C-terminal EF-hand domain pair;Integral membrane protein, plant GCPR-like Mlo family; contains a C-terminal EF-hand domain pair"
+Cre12.g514800			Chloroplast	GO:0005737	cytoplasm		g12703.t1		
+Cre12.g503550	GMM:16.1.1.5	"secondary metabolism.isoprenoids.non-mevalonate pathway.MCS"	Chloroplast	"GO:0016114;GO:0008685"	"terpenoid biosynthetic process;2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase activity"	MEC1	"MECPS1;g12498.t1;Cre12.g503550.t1.1;MEC1;MCS;MEC1;MCS;Cre12.g503550.t1.1;g12498.t1;MECPS1"	"MEC1;MEC1"	"2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase, chloroplast precursor (MECDP-synthase) (MECPS) (ispF) (ygbB);2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase, chloroplast precursor (MECDP-synthase) (MECPS) (ispF) (ygbB)"
+Cre12.g484300							"g12020.t1;Cre12.g484300.t1.1"		
+Cre12.g516350	"GMM:29.8;GMM:19.99"	"protein.assembly and cofactor ligation;tetrapyrrole synthesis.unspecified"	"Secretory pathway"	"GO:0016021;GO:0004659"	"integral component of membrane;prenyltransferase activity"	COX10	"Cre12.g516350.t1.1;COX10;g12737.t1;Cre12.g516350.t1.1;g12737.t1;COX10"	"COX10;COX10"	"Cytochrome c oxidase assembly protein cox10, putative heme A:farnesyltransferase;Cytochrome c oxidase assembly protein cox10, putative heme A:farnesyltransferase"
+Cre12.g504050			"Secretory pathway"	"GO:0016021;GO:0005783"	"integral component of membrane;endoplasmic reticulum"	LAG2	"LAG2;g12488.t1;g12488.t1;LAG2;LAG2;g12488.t1"	"LAG2;LAG2;LAG2"	"Related to longevity assurance protein; TRAM, LAG1 and CLN8 domain homology; possibly involved in ceramide synthesis;Related to longevity assurance protein; TRAM, LAG1 and CLN8 domain homology; possibly involved in ceramide synthesis;Related to longevity assurance protein; TRAM, LAG1 and CLN8 domain homology; possibly involved in ceramide synthesis"
+Cre12.g490700				GO:0005515	"protein binding"	MIN1	"g12171.t1;Cre12.g490700.t1.1"	MIN1	"mini-eyespot protein required for eyespot assembly and organization; min1 mutant cells contain mini eyespots and do not phototax; MIN1 protein contains predicted C2, transmembrane, and LysM domains and is potentially membrane-associated; to date, the MIN1 domain structure is unique; Genbank entry AY452057"
+Cre12.g538801							g13247.t1		
+Cre12.g507550			Chloroplast			OPR3	g12407.t2	OPR3	"A very degenerate OPR protein; conserved in Chlorophyceae"
+Cre12.g503500			"Secretory pathway"	GO:0016020	membrane		"GLG1;g12500.t1"		"Acclimation to changing CO2 concentrations and light intensities was studied by Yamano et al. 28 [PMID: 18322145]"
+Cre12.g499301			"Secretory pathway"				g12283.t1		
+Cre12.g503750						FMO14	"FMO14;g12494.t1"		"Flavin-containing monooxygenase,possibly a salicylate 1-monooxygenase"
+Cre12.g490150	"GMM:28.99;GMM:28.1"	"DNA.unspecified;DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0043140;GO:0006281;GO:0006260;GO:0005622;GO:0005524;GO:0003676"	"ATP-dependent 3'-5' DNA helicase activity;DNA repair;DNA replication;intracellular;ATP binding;nucleic acid binding"	HEL48	"g12182.t1;HEL48"		"DEAD/DEAH box helicase, similar to RECQ. Contains HRDC domain"
+Cre12.g511950	"GMM:30.2.12;GMM:30.2.11;GMM:29.4.1"	"signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;protein.postranslational modification.kinase"	"Secretory pathway"				"Cre12.g511950.t1.1;g12308.t1"		
+Cre12.g520500	GMM:29.2.1.2.2.80	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.P0"		"GO:0042254;GO:0005622"	"ribosome biogenesis;intracellular"	RPP0	"g12825.t1;RPP0;g12825.t1;RPP0"	"RPLP0;RPLP0"	"Cytosolic 80S acidic ribosomal protein P0; Cytosolic 60S large ribosomal subunit protein P0;Cytosolic 80S acidic ribosomal protein P0; Cytosolic 60S large ribosomal subunit protein P0"
+Cre12.g501000	GMM:34.8	"transport.metabolite transporters at the envelope membrane"	"Secretory pathway"	GO:0055085	"transmembrane transport"		"g12556.t1;PPT1;TPT22;TPT20"		
+Cre12.g529050			Mitochondrion				"g13027.t1;Cre12.g529050.t1.1;g13027.t1;Cre12.g529050.t1.1"		
+Cre12.g520950	GMM:31.6.1.4.2	"cell.motility.eukaryotes.axonemal dyneins.inner arm"		GO:0005515	"protein binding"	DIC4	"IDA-IC138;DIC4;BOP5;g12835.t1;IC138;BOP5;DIC4;IDA-IC138;IC138;g12835.t1;IC138;g12835.t1;IDA-IC138;BOP5;DIC4;IDA-IC138;DIC4;BOP5;IC138;g12835.t1;g12835.t1;IC138;DIC4;BOP5;IDA-IC138;g12835.t1;IC138;DIC4;BOP5;IDA-IC138"	"IC138;IC138;IC138;IC138;IC138;IC138"	"IC138 intermediate chain of I1/f dynein; a WD-repeat dynein intermediate chain required for light chain assembly and regulation of flagellar bending PMID:15469982;IC138 intermediate chain of I1/f dynein; a WD-repeat dynein intermediate chain required for light chain assembly and regulation of flagellar bending PMID:15469982;IC138 intermediate chain of I1/f dynein; a WD-repeat dynein intermediate chain required for light chain assembly and regulation of flagellar bending PMID:15469982;IC138 intermediate chain of I1/f dynein; a WD-repeat dynein intermediate chain required for light chain assembly and regulation of flagellar bending PMID:15469982;IC138 intermediate chain of I1/f dynein; a WD-repeat dynein intermediate chain required for light chain assembly and regulation of flagellar bending PMID:15469982;IC138 intermediate chain of I1/f dynein; a WD-repeat dynein intermediate chain required for light chain assembly and regulation of flagellar bending PMID:15469982"
+Cre12.g535250			Mitochondrion				"g13166.t1;g13166.t1"		
+Cre12.g502500	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG34	"ELG34;Cre12.g502500.t1.1;g12521.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre12.g536000	"GMM:34.99;GMM:34.1;GMM:27.3.35"	"transport.misc;transport.p- and v-ATPases;RNA.regulation of transcription.bZIP transcription factor family"		"GO:0046872;GO:0016021;GO:0015914;GO:0005524;GO:0004012;GO:0000287;GO:0000166"	"metal ion binding;integral component of membrane;phospholipid transport;ATP binding;phospholipid-translocating ATPase activity;magnesium ion binding;nucleotide binding"	ALA2	"g13182.t1;Cre12.g536000.t1.1;ALA2;Cre12.g536000.t1.1;ALA2;g13182.t1;g13182.t1;Cre12.g536000.t1.1;ALA2;ALA2;Cre12.g536000.t1.1;g13182.t1;ALA2;g13182.t1;Cre12.g536000.t1.1"	"ALA2;ALA2;ALA2;ALA2;ALA2"	"Phospholipid-translocating P-type ATPase, flippase; Adjacent to ALA1 (Cre12.g536050);;Phospholipid-translocating P-type ATPase, flippase; Adjacent to ALA1 (Cre12.g536050);;Phospholipid-translocating P-type ATPase, flippase; Adjacent to ALA1 (Cre12.g536050);;Phospholipid-translocating P-type ATPase, flippase; Adjacent to ALA1 (Cre12.g536050);;Phospholipid-translocating P-type ATPase, flippase; Adjacent to ALA1 (Cre12.g536050);"
+Cre12.g518400			Mitochondrion				"Cre12.g518400.t1.1;g12783.t1;Cre12.g518400.t1.1;g12783.t1"		
+Cre12.g484900						FAP83	"Cre12.g484900.t1.1;g12034.t1;Cre12.g484900.t1.1;g12034.t1;Cre12.g484900.t1.1;g12034.t1;Cre12.g484900.t1.1;g12034.t1"	"FAP83;FAP83;FAP83;FAP83"	"Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802];Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802];Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802];Flagellar Associated Protein, found in the flagellar proteome [PMID: 15998802]"
+Cre12.g499550			Chloroplast				"g12588.t1;Cre12.g499550.t1.1"		
+Cre12.g496550							"g12653.t1;Cre12.g496550.t1.1"		
+Cre12.g547900	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"				MCP27	"Cre12.g547900.t1.1;g13594.t1;MCP27;MCP27;g13594.t1;Cre12.g547900.t1.1;Cre12.g547900.t1.1;g13594.t1;MCP27"		
+Cre12.g558350							"g13362.t1;Cre12.g558350.t1.1;Cre12.g558350.t1.1;g13362.t1"		
+Cre12.g552100			Chloroplast				"g13496.t1;g13496.t1"		
+Cre12.g535500							"g13172.t1;Cre12.g535500.t1.1"		
+Cre12.g554051	"GMM:30.2.8.1;GMM:30.2.20;GMM:30.2.19;GMM:30.2.10;GMM:30.2.1;GMM:29.4"	"signalling.receptor kinases.leucine rich repeat VIII.type 1;signalling.receptor kinases.wheat LRK10 like;signalling.receptor kinases.legume-lectin;signalling.receptor kinases.leucine rich repeat X;signalling.receptor kinases.leucine rich repeat I;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"Cre12.g554000.t1.2;g13453.t1"		
+Cre12.g494500	"GMM:31.3;GMM:31.2;GMM:29.4.1;GMM:29.4"	"cell.cycle;cell.division;protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	LF2	"CDKI1;Cre12.g494500.t1.1;LF2;g12058.t1;CDKI1;Cre12.g494500.t1.1;LF2;g12058.t1"	"LF2;LF2"	"Chlamydomonas specific; PDVVVRE motif; Novel CDK subfamily; also known as LF2 for Long Flagella mutant 2; protein plays a role in flagellar length and is found predominantly, if not exclusively, in the cell body in punctate structures;Chlamydomonas specific; PDVVVRE motif; Novel CDK subfamily; also known as LF2 for Long Flagella mutant 2; protein plays a role in flagellar length and is found predominantly, if not exclusively, in the cell body in punctate structures"
+Cre12.g516050				GO:0005515	"protein binding"		"g12730.t1;Cre12.g516050.t1.1"		
+Cre12.g546027			"Secretory pathway"				"g13797.t1;Cre27.g774700.t1.1;g13797.t1;Cre27.g774700.t1.1"		
+Cre12.g558900	GMM:1.1.3	"PS.lightreaction.cytochrome b6/f"	Chloroplast			PETO	"PETO;Cre12.g558900.t1.1;g13350.t1;PETO;Cre12.g558900.t1.1;g13350.t1"	"PETO1;PETO1"	"Initially described as Cytochrome b6f complex subunit V, but not present in the purified complex; involved in cyclic electron tranfer; chloroplast precursor; ortholog in Volvox is germline-specific and a putative target of RegA repression;Initially described as Cytochrome b6f complex subunit V, but not present in the purified complex; involved in cyclic electron tranfer; chloroplast precursor; ortholog in Volvox is germline-specific and a putative target of RegA repression"
+Cre12.g488500	GMM:20.2.1	stress.abiotic.heat	Chloroplast			ARC6	"Cre12.g488500.t1.1;g12215.t1"	ARC6	"ARC6 (ACCUMULATION AND REPLICATION OF CHLOROPLASTS 6); heat shock protein binding / unfolded protein binding -COG484, DnaJ, DnaJ-class molecular chaperone with C-terminal Zn finger domain [Posttranslational modification, protein turnover, chaperones]"
+Cre12.g549427			Mitochondrion				"g13805.t1;Cre27.g774981.t1.2;Cre27.g774981.t1.1;Cre27.g774981.t1.2;g13805.t1;Cre27.g774981.t1.1"		
+Cre12.g507850			Chloroplast				g12401.t1		
+Cre12.g515700			Chloroplast				"Cre12.g515700.t1.1;g12722.t1"		
+Cre12.g558250				"GO:0016192;GO:0016021"	"vesicle-mediated transport;integral component of membrane"	SNR7	"g13365.t1;SNR7;TML1;SNR7;TML1;g13365.t1"		"Hypothetical Conserved Protein. Similar to At5g05570/Tomosyn, proteins that contain a C-terminal R-SNARE domain, but acts as regulator of SNARE assembly rather than as part of a SNARE complex.;Hypothetical Conserved Protein. Similar to At5g05570/Tomosyn, proteins that contain a C-terminal R-SNARE domain, but acts as regulator of SNARE assembly rather than as part of a SNARE complex."
+Cre12.g561200						COPZ2	"g13293.t1;COPZ2"	COPZ2	"Expressed Protein. Zeta2-COP Subunit of COP-I complex involved in vesicle trafficking."
+Cre12.g509100						FAP307	"Cre12.g509100.t1.1;g12370.t1"	FAP307	
+Cre12.g490650			Mitochondrion				"Cre12.g490650.t1.1;g12172.t1"		
+Cre12.g544115									
+Cre12.g534400							g13143.t1		
+Cre12.g505550	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA17	"HTA17;HTA28;Cre12.g505550.t1.1;g12456.t1"	HTA17	"replication linked H2A; histone gene cluster XVII (type 43AB)"
+Cre12.g514650	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Chloroplast			CNK6	"Cre12.g514650.t1.1;CNK6;g12700.t1"	CNK6	"NimA-related protein kinase homolog 6 [gi:34334401, PMID: 15068267]; ts-lethal mutant arrests at S/M (PMID 29743196); null-allele mutant was isolated (PMID 29743196)"
+Cre12.g555001			Mitochondrion				"g13434.t1;Cre12.g554950.t1.3;g13434.t1;Cre12.g554950.t1.3"		
+Cre12.g548700			Chloroplast				"g13575.t1;Cre12.g548700.t1.1"		
+Cre12.g510850			Chloroplast			CGL73	"g12331.t1;Cre12.g510850.t1.1"	CGL73	"Conserved in the Green Lineage"
+Cre12.g520200			Chloroplast			CPL8	"PPO5;g12819.t1;g12819.t1;PPO5"	"CPL8;CPL8"	"Pyridoxamine 5'-phosphate oxidase-like protein, but enzymatic activity is unproven;Pyridoxamine 5'-phosphate oxidase-like protein, but enzymatic activity is unproven"
+Cre12.g539750							"Cre12.g539750.t1.1;g13780.t1"		
+Cre12.g487500			Chloroplast			NYE1	"g12238.t1;CGL61; SGR1;g12238.t1; SGR1;CGL61"	"NYE1;NYE1"	"similarity to senescence-inducible chloroplast stay-green protein 1 [Lycopersicon esculentum] and Arabidopsis NYE1/NYE2 and SGRL which convert chlorophyll a to pheophytin a as the first step of Chl degradation; like SGRL, lacks the Cys-rich C-terminal domain found in NYE1/2;similarity to senescence-inducible chloroplast stay-green protein 1 [Lycopersicon esculentum] and Arabidopsis NYE1/NYE2 and SGRL which convert chlorophyll a to pheophytin a as the first step of Chl degradation; like SGRL, lacks the Cys-rich C-terminal domain found in NYE1/2"
+Cre12.g540051			"Secretory pathway"				"g13776.t1;TMEM70"		"Putative assembly factor for ATP synthase"
+Cre12.g553552			Mitochondrion						
+Cre12.g500450	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion			TPD1	"TPD1;g12567.t1"	TPD1	"Cleaves 2',5'-phosphodiester bond linking adenosines of the 5'-triphosphorylated oligoadenylates. Part of the ?2-5A? system involved in anti-viral defense in metazoans"
+Cre12.g487600	"GMM:27.1.3.3;GMM:27.1"	"RNA.processing.3' end processing.CPSF100;RNA.processing"		"GO:0006379;GO:0006378;GO:0005847"	"mRNA cleavage;mRNA polyadenylation;mRNA cleavage and polyadenylation specificity factor complex"	CPS2	"g12236.t1;CPS2;CPS2;g12236.t1"		"(CPSF subunit 2); involved in maturation of 3' end of mRNA; contains an RNA-metabolising metallo-beta-lactamase domain;(CPSF subunit 2); involved in maturation of 3' end of mRNA; contains an RNA-metabolising metallo-beta-lactamase domain"
+Cre12.g546150	GMM:1.1.3	"PS.lightreaction.cytochrome b6/f"	Chloroplast	GO:0009512	"cytochrome b6f complex"	PETM	"g13632.t1;PETM;Cre12.g546150.t1.1"	PETM1	"Small subunit of plastoquinol-plastocyanin oxido-reductase, chloroplast precursor; GI:2493687; PMID: 8631873, PMID: 8616155, PMID: 7493968"
+Cre12.g546700	GMM:27.4	"RNA.RNA binding"		GO:0003676	"nucleic acid binding"		"g13621.t1;g13621.t1;g13621.t1"		
+Cre12.g527918							"g13002.t1;Cre12.g527918.t1.1;Cre12.g527918.t1.1;g13002.t1"		
+Cre12.g532950				"GO:0016020;GO:0004970"	"membrane;ionotropic glutamate receptor activity"		"Cre12.g532950.t1.1;g13112.t1"		
+Cre12.g514350							"g12694.t1;Cre12.g514350.t1.1"		
+Cre12.g550277	GMM:34.14	"transport.unspecified cations"				MRS2	"MRS2;Cre27.g775050.t1.1;g13807.t1;Cre27.g775050.t1.1;MRS2;g13807.t1"	"MRS2;MRS2"	"Mg2+ transporter protein, CorA-like and putative mitochondrial splicing factor, membrane protein;Mg2+ transporter protein, CorA-like and putative mitochondrial splicing factor, membrane protein"
+Cre12.g511850	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0004672"	"protein phosphorylation;protein kinase activity"	GSK3	"Cre12.g511850.t1.1;GSK3;g12312.t1;Cre12.g511850.t1.1;g12312.t1;GSK3;GSK3;g12312.t1;Cre12.g511850.t1.1;GSK3;g12312.t1;Cre12.g511850.t1.1;g12312.t1;GSK3;Cre12.g511850.t1.1;Cre12.g511850.t1.1;g12312.t1;GSK3"	"GSK3;GSK3;GSK3;GSK3;GSK3;GSK3"	"Glycogen Synthase Kinase 3 [PMID: 15470259]; Shaggy Kinase; Zeste White Kinase-3; Housekeeping kinase involved in cytoskeletal regulation; gene regulation; kinesin regulation in mammals;Glycogen Synthase Kinase 3 [PMID: 15470259]; Shaggy Kinase; Zeste White Kinase-3; Housekeeping kinase involved in cytoskeletal regulation; gene regulation; kinesin regulation in mammals;Glycogen Synthase Kinase 3 [PMID: 15470259]; Shaggy Kinase; Zeste White Kinase-3; Housekeeping kinase involved in cytoskeletal regulation; gene regulation; kinesin regulation in mammals;Glycogen Synthase Kinase 3 [PMID: 15470259]; Shaggy Kinase; Zeste White Kinase-3; Housekeeping kinase involved in cytoskeletal regulation; gene regulation; kinesin regulation in mammals;Glycogen Synthase Kinase 3 [PMID: 15470259]; Shaggy Kinase; Zeste White Kinase-3; Housekeeping kinase involved in cytoskeletal regulation; gene regulation; kinesin regulation in mammals;Glycogen Synthase Kinase 3 [PMID: 15470259]; Shaggy Kinase; Zeste White Kinase-3; Housekeeping kinase involved in cytoskeletal regulation; gene regulation; kinesin regulation in mammals"
+Cre12.g531800	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Mitochondrion			FAP7	"g13086.t1;g13086.t1"	"FAP7;FAP7"	"Flagellar Associated Protein, found in the flagellar proteome;;Flagellar Associated Protein, found in the flagellar proteome;"
+Cre12.g506250	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA18	"HTA18;g12444.t1;Cre12.g506250.t1.1"	HTA18	"replication linked H2A; histone gene cluster XVIII (type 43AB)"
+Cre12.g533900									
+Cre12.g522300			"Secretory pathway"				"g12863.t1;g12863.t1"		
+Cre12.g491200			"Secretory pathway"				"g12160.t1;g12160.t1"		
+Cre12.g552950							"g13478.t1;g13478.t1"		
+Cre12.g522650							g12872.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g515901			Chloroplast				"Cre12.g515901.t1.1;g12727.t1;Cre12.g515901.t1.1;g12727.t1;g12727.t1;Cre12.g515901.t1.1"		
+Cre12.g538400	GMM:27.2	RNA.transcription		"GO:0006351;GO:0003899"	"transcription, DNA-templated;DNA-directed RNA polymerase activity"	RPB4	"Cre12.g538400.t1.1;RPB4;RPB7B;g13238.t1;Cre12.g538400.t1.1;RPB4;RPB7B;g13238.t1;g13238.t1;RPB7B;RPB4;Cre12.g538400.t1.1;RPB4;Cre12.g538400.t1.1;g13238.t1;RPB7B;g13238.t1;RPB7B;RPB4;Cre12.g538400.t1.1"	"RPB4;RPB4;RPB4;RPB4;RPB4"	"N-terminal portion similar to yeast RNB7 (DNA-directed RNA polymerase subunit), 19 kDa subunit;N-terminal portion similar to yeast RNB7 (DNA-directed RNA polymerase subunit), 19 kDa subunit;N-terminal portion similar to yeast RNB7 (DNA-directed RNA polymerase subunit), 19 kDa subunit;N-terminal portion similar to yeast RNB7 (DNA-directed RNA polymerase subunit), 19 kDa subunit;N-terminal portion similar to yeast RNB7 (DNA-directed RNA polymerase subunit), 19 kDa subunit"
+Cre12.g520450						SGT1	"g12824.t2;SGT1;SGT1;g12824.t2"		
+Cre12.g547650							"g13600.t1;Cre12.g547650.t1.1"		
+Cre12.g534700	GMM:29.6.3.1	"protein.folding.immunophilins (IMM).FKBPs"	"Secretory pathway"	GO:0006457	"protein folding"	FKB19	"g13150.t1;Cre12.g534700.t1.1;g13150.t1;Cre12.g534700.t1.1;Cre12.g534700.t1.1;g13150.t1"	"FKB19;FKB19;FKB19"	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); probably directed to thylakoid lumen (homology to AtFKBP19 and bipartite cTP with RR motif);FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); probably directed to thylakoid lumen (homology to AtFKBP19 and bipartite cTP with RR motif);FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); probably directed to thylakoid lumen (homology to AtFKBP19 and bipartite cTP with RR motif)"
+Cre12.g495401	GMM:29.4	"protein.postranslational modification"	Chloroplast				"Cre12.g495400.t1.3;g12129.t1;POC12"		
+Cre12.g493150	GMM:1.1.1.3	"PS.lightreaction.photosystem II.biogenesis"	Chloroplast.Stroma.Thylakoid.Membrane			VKE1	"CPLD41;Cre12.g493150.t1.1;VKE1;g12087.t1;CPLD41;g12087.t1;VKE1;Cre12.g493150.t1.1"	"LTO1;LTO1"	"Conserved expressed membrane protein; Arabidopsis homolog predicted to be plastid targeted; Conserved in the Plant Lineage and Diatoms; Similar to Vitamin K epoxide reductase;Conserved expressed membrane protein; Arabidopsis homolog predicted to be plastid targeted; Conserved in the Plant Lineage and Diatoms; Similar to Vitamin K epoxide reductase"
+Cre12.g486208			Mitochondrion				"Cre12.g486200.t1.3;g12273.t1;g12273.t1;Cre12.g486200.t1.3"		
+Cre12.g539206			Mitochondrion						
+Cre12.g499950				"GO:0016788;GO:0006886;GO:0006505"	"hydrolase activity, acting on ester bonds;intracellular protein transport;GPI anchor metabolic process"	CPL18	"g12578.t1;g12578.t1"	"CPL18;CPL18"	"Conserved in the Plant Lineage;Conserved in the Plant Lineage"
+Cre12.g557750	GMM:11.4	"lipid metabolism.TAG synthesis"	"Secretory pathway"	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	DGTT1	g13375.t1	DGTT1	
+Cre12.g499204							g12598.t1		
+Cre12.g501100	"GMM:27.1.21;GMM:27.1"	"RNA.processing.siRNA methyltransferase;RNA.processing"	Mitochondrion	"GO:0008173;GO:0006396"	"RNA methyltransferase activity;RNA processing"		"Cre12.g501100.t1.1;TRM2A;g12554.t1;TMU3"	TMU3	"tRNA methyltransferase, catalyzes the transfer of a methyl group from S-adenosylmethionine to position 5 of the uridine residue at position 54 of tRNAs"
+Cre12.g532400									
+Cre12.g514850	"GMM:29.6.2.4;GMM:20.2.1"	"protein.folding.chaperones and co-chaperones.HSP90s;stress.abiotic.heat"	Chloroplast.Stroma	"GO:0051082;GO:0006950;GO:0006457;GO:0005524"	"unfolded protein binding;response to stress;protein folding;ATP binding"	HSP90C	"g12704.t1;Cre12.g514850.t1.1"	HSP90C	"HSP90C is one of 3 HSP90 genes in Chlamydomonas; HSP90C is localized to the chloroplast; it is inducible by heat shock and light, forms dimers and interacts with plastidic HSP70B; it exhibits weak ATPase activity, which is inhibited by radicicol; PMID: 16143837 and 15995001"
+Cre12.g506200	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB18	"g12445.t1;Cre12.g506200.t1.1"	HTB18	"replication linked H2B; histone gene cluster XVIII (type 43AB)"
+Cre12.g487300	GMM:3.3	"minor CHO metabolism.sugar alcohols"				CSB42	"g12243.t1;TNP30;Cre12.g487300.t1.1"	CSB42	"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre12.g523100	GMM:34.1	"transport.p- and v-ATPases"		"GO:0016021;GO:0015693;GO:0015095"	"integral component of membrane;magnesium ion transport;magnesium ion transmembrane transporter activity"		"g12882.t1;g12882.t1;g12882.t1;g12882.t1"		
+Cre12.g510400	GMM:29.8	"protein.assembly and cofactor ligation"	Chloroplast			CPLD30	"g12341.t1;RBD4;g12341.t1;RBD4"	"CPLD30;CPLD30"	"Putative rubredoxin-like protein. Conserved expressed thylakoid localized protein with rubredoxin cluster; strong similarity to unknown protein [Oryza sativa (japonica cultivar-group). AP554.3 Gene designation P577B11.138. Contains rubredoxin-type ir;Putative rubredoxin-like protein. Conserved expressed thylakoid localized protein with rubredoxin cluster; strong similarity to unknown protein [Oryza sativa (japonica cultivar-group). AP554.3 Gene designation P577B11.138. Contains rubredoxin-type ir"
+Cre12.g532314			"Secretory pathway"				"Cre12.g532314.t1.1;g13097.t1;Cre12.g532314.t1.1;g13097.t1"		
+Cre12.g559703							g13327.t1		
+Cre12.g497250				"GO:0005813;GO:0000922"	"centrosome;spindle pole"		"g12640.t1;g12640.t1;g12640.t1"	"CEP95;CEP95;CEP95"	"Found in the basal body proteome as Cep95;Found in the basal body proteome as Cep95;Found in the basal body proteome as Cep95"
+Cre12.g533750	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT	Mitochondrion	GO:0004842	"ubiquitin-protein transferase activity"		"g13129.t1;g13129.t1;g13129.t1;g13129.t1"		
+Cre12.g536100						FAP126	"g13184.t1;Cre12.g536100.t1.1"	FAP126	"Flagellar Associated Protein; found in the flagellar proteome; in basal body proteome as BUG16 [PMID: 15964273]. Transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre12.g526250	"GMM:29.4.1;GMM:29.4"	"protein.postranslational modification.kinase;protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre12.g545650			Chloroplast				"Cre12.g545650.t1.1;g13644.t1"		
+Cre12.g539700			Mitochondrion				"g13781.t1;Cre12.g539700.t1.1"		
+Cre12.g523950			"Secretory pathway"	GO:0016021	"integral component of membrane"		"g12902.t1;Cre12.g523950.t1.1"		
+Cre12.g516150			Mitochondrion	GO:0008080	"N-acetyltransferase activity"		"Cre12.g516150.t1.1;g12732.t1;NAT27;NAT27;g12732.t1;Cre12.g516150.t1.1;Cre12.g516150.t1.1;g12732.t1;NAT27"		"Related to GCN5;Related to GCN5;Related to GCN5"
+Cre12.g542000	GMM:27.3.34	"RNA.regulation of transcription.orphan family"		"GO:0019478;GO:0016788;GO:0005737"	"D-amino acid catabolic process;hydrolase activity, acting on ester bonds;cytoplasm"		g13732.t1		
+Cre12.g489500							g12195.t1		
+Cre12.g505150			Mitochondrion			OPR52	"g12464.t1;g12464.t1;g12464.t1"	"OPR52;OPR52;OPR52"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre12.g547750			Mitochondrion	"GO:0097056;GO:0016785;GO:0016740"	"selenocysteinyl-tRNA(Sec) biosynthetic process;transferase activity, transferring selenium-containing groups;transferase activity"	SPCS	"SPCS;g13597.t1;Cre12.g547750.t1.1;SCS1;Cre12.g547750.t1.1;g13597.t1;SPCS;SCS1"	"SPCS1;SPCS1"	"O-phophoseryl_selenocysteyl synthase; synthesizes Selenocysteine-tRNA(Sec) from O-phosphoseryl-tRNA(Sec)and senelophosphate; O-phosphoseryl-tRNA(Sec) selenium transferase (Sec synthase) (Selenocysteinyl-tRNA(Sec) synthase) (Sep-tRNA:Sec-tRNA synthase) (SepSecS) (UGA suppressor tRNA-associated protein) (tRNA(Ser/Sec)-associated antigenic protein) (SLA/LP autoantigen) (Soluble liver antigen) (SLA) (Liver-pancreas antigen) (LP) (SLA-p35);O-phophoseryl_selenocysteyl synthase; synthesizes Selenocysteine-tRNA(Sec) from O-phosphoseryl-tRNA(Sec)and senelophosphate; O-phosphoseryl-tRNA(Sec) selenium transferase (Sec synthase) (Selenocysteinyl-tRNA(Sec) synthase) (Sep-tRNA:Sec-tRNA synthase) (SepSecS) (UGA suppressor tRNA-associated protein) (tRNA(Ser/Sec)-associated antigenic protein) (SLA/LP autoantigen) (Soluble liver antigen) (SLA) (Liver-pancreas antigen) (LP) (SLA-p35)"
+Cre12.g560250			Mitochondrion				"Cre12.g560250.t1.1;g13314.t1"		
+Cre12.g496200	GMM:34.99	transport.misc					"XPO2;g12662.t1;Cre12.g496200.t1.1;XPO2;g12662.t1;Cre12.g496200.t1.1"	"XPO2;XPO2"	"Exportin-1/Importin-beta-like protein probably involved in tRNA export out of the nucleus;Exportin-1/Importin-beta-like protein probably involved in tRNA export out of the nucleus"
+Cre12.g519550			Mitochondrion			OPR53	"g12805.t1;g12805.t1"	"OPR53;OPR53"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre12.g553550							"Cre12.g553550.t1.1;g13463.t1"		
+Cre12.g499850	GMM:29.4	"protein.postranslational modification"				CNK7	"CNK7;g12581.t1;g12581.t1;CNK7"	"CNK7;CNK7"	"similar to serine/threonine-protein kinase Nek7 [Homo sapiens];similar to serine/threonine-protein kinase Nek7 [Homo sapiens]"
+Cre12.g540400	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		"GO:0030014;GO:0006402"	"CCR4-NOT complex;mRNA catabolic process"	RCD1	"RCD1;g13768.t1;Cre12.g540400.t1.1"		"similar to Rcd1-like proteins, which are involved in cell differentiation/sexual development; highly conserved among eukaryotes; retinoic acid-induced cell differentiation; control of sexual development"
+Cre12.g526030				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g490750			Chloroplast				g12170.t1		
+Cre12.g555803	GMM:9.2.2	"mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external"		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	NDA6	"g13820.t1;NDA6;Cre27.g775700.t1.1;NDA6;Cre27.g775700.t1.1;g13820.t1;g13820.t1;Cre27.g775700.t1.1;NDA6"	"NDA6;NDA6;NDA6"	"NADH:quinone reductase (non-electrogenic);NADH:quinone reductase (non-electrogenic);NADH:quinone reductase (non-electrogenic)"
+Cre12.g507872			Chloroplast				g12400.t1		
+Cre12.g548200							"g13587.t1;g13587.t1;g13587.t1"		
+Cre12.g541150			Chloroplast				g13753.t1		
+Cre12.g504500	"GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"	Chloroplast	GO:0003677	"DNA binding"	HTA15	"HTA16;Cre12.g504500.t1.1;HTA15;g12478.t1"	HTA15	"replication linked H2A; histone gene cluster XV (type 34BA)"
+Cre12.g555800	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"STPK2;STK2;g13416.t1;Cre12.g555800.t1.1;STPK2;STK2;Cre12.g555800.t1.1;g13416.t1;STK2;STPK2;g13416.t1;Cre12.g555800.t1.1;STK2;STPK2;g13416.t1;Cre12.g555800.t1.1"		"Serine/Threonine Protein Kinase Homolog 2, putative;Serine/Threonine Protein Kinase Homolog 2, putative;Serine/Threonine Protein Kinase Homolog 2, putative;Serine/Threonine Protein Kinase Homolog 2, putative"
+Cre12.g527600			Mitochondrion	GO:0005515	"protein binding"		"g12996.t1;g12996.t1"		
+Cre12.g548500	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"				"Cre12.g548500.t1.1;g13580.t1;g13580.t1;Cre12.g548500.t1.1"		
+Cre12.g553750	"GMM:27.4;GMM:27.1.1"	"RNA.RNA binding;RNA.processing.splicing"		"GO:0045131;GO:0003723;GO:0003676;GO:0000398"	"pre-mRNA branch point binding;RNA binding;nucleic acid binding;mRNA splicing, via spliceosome"		"SPL26;g13458.t1"		"Putative splicing factor, zinc finger-containing"
+Cre12.g541100	GMM:29.5.3	"protein.degradation.cysteine protease"				OTU7	"OTU7;g13754.t1;Cre12.g541100.t1.1;Cre12.g541100.t1.1;OTU7;g13754.t1;OTU7;g13754.t1;Cre12.g541100.t1.1"		"Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila.;Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila.;Conserved expressed organelle-targeted protein. Family is comprised of a group of predicted cysteine proteases, homologous to the Ovarian Tumour (OTU) gene in Drosophila."
+Cre12.g528750	GMM:29.2.1.2.2.12	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L12"		"GO:0006412;GO:0005840;GO:0003735"	"translation;ribosome;structural constituent of ribosome"	RPL12	"Cre12.g528750.t1.1;g13020.t1;g13020.t1;Cre12.g528750.t1.1"	"RPL12;RPL12"	"Cytosolic 60S large ribosomal subunit protein L12;Cytosolic 60S large ribosomal subunit protein L12"
+Cre12.g552400			Mitochondrion				g13490.t1		
+Cre12.g556500			Chloroplast				"g13402.t1;Cre12.g556500.t1.1"		
+Cre12.g536301							g13188.t1		
+Cre12.g486252									
+Cre12.g560800	GMM:17.2.1	"hormone metabolism.auxin.synthesis-degradation"	"Secretory pathway"	"GO:0016787;GO:0008152"	"hydrolase activity;metabolic process"		"g13302.t1;Cre12.g560800.t1.1;Cre12.g560800.t1.1;g13302.t1;g13302.t1;Cre12.g560800.t1.1;Cre12.g560800.t1.1;g13302.t1"		
+Cre12.g501450	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	"Secretory pathway"	"GO:0008270;GO:0005515"	"zinc ion binding;protein binding"	SDIR1	"Cre12.g501450.t1.1;g12546.t1"	SDIR1	"contains a TM and C-terminal RING domain, involved in abscisic acid signaling in plants"
+Cre12.g525050	GMM:31.2	cell.division				SMC6A	"g12924.t1;g12924.t1"	"SMC6A;SMC6A"	"Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation.;Subunit of the condensin complex, which reorganizes chromosomes during cell division; coiled-coil protein of the SMC family involved in chromosome condensation and segregation."
+Cre12.g494850	GMM:23.4.1	"nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase"	Chloroplast	"GO:0019205;GO:0006139;GO:0005524"	"nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding"	ADK3	"Cre12.g494850.t1.1;g12118.t1;ADK3;Cre12.g494850.t1.1;g12118.t1;ADK3;ADK3;g12118.t1;Cre12.g494850.t1.1"	"ADK3;ADK3;ADK3"	"Adenylate kinase; probably chloroplast-targeted (by homology to KADD_ARATH); contains a C-terminal domain with two Cys residues, homologous to that found in CP12 linking GAPDH and PRK;Adenylate kinase; probably chloroplast-targeted (by homology to KADD_ARATH); contains a C-terminal domain with two Cys residues, homologous to that found in CP12 linking GAPDH and PRK;Adenylate kinase; probably chloroplast-targeted (by homology to KADD_ARATH); contains a C-terminal domain with two Cys residues, homologous to that found in CP12 linking GAPDH and PRK"
+Cre12.g551201			"Secretory pathway"	GO:0008080	"N-acetyltransferase activity"		"NAT28;g13522.t1"		"Related to GCN5"
+Cre12.g504950	GMM:23.2	"nucleotide metabolism.degradation"				UOX1	"g12469.t1;Cre12.g504950.t1.1;UO;UOX;UO;g12469.t1;Cre12.g504950.t1.1;UOX"	"UOX1;UOX1"	"uricase; urate oxidase II (UO) [AF195795; PMID: 11469597];uricase; urate oxidase II (UO) [AF195795; PMID: 11469597]"
+Cre12.g541350			Chloroplast				g13747.t1		
+Cre12.g529651	GMM:29.2.1.2.2.57	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7A"				RPL7A	"g13040.t1;Cre12.g529650.t1.2;Cre12.g529650.t1.2;g13040.t1;g13040.t1;Cre12.g529650.t1.2;g13040.t1;Cre12.g529650.t1.2"	"RPL7A;RPL7A;RPL7A;RPL7A"	"Cytosolic 60S large ribosomal subunit protein L7a;Cytosolic 60S large ribosomal subunit protein L7a;Cytosolic 60S large ribosomal subunit protein L7a;Cytosolic 60S large ribosomal subunit protein L7a"
+Cre12.g484400			"Secretory pathway"				"FKM7;g12024.t1"		"FkbM is required for a specific methylation in the biosynthesis of the immunosuppressant FK56 in Streptomyces"
+Cre12.g528800							"g13021.t1;g13021.t1;g13021.t1;g13021.t1"		
+Cre12.g554550							"g13443.t1;Cre12.g554550.t1.1"		
+Cre12.g494000	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"		GO:0005515	"protein binding"	CGL82	"Cre12.g494000.t1.1;g12070.t1;Cre12.g494000.t1.1;g12070.t1;Cre12.g494000.t1.1;g12070.t1"	"CGL82;CGL82;CGL82"	"Conserved in the Green Lineage; null-allele mutant was isolated (PMID 29743196);Conserved in the Green Lineage; null-allele mutant was isolated (PMID 29743196);Conserved in the Green Lineage; null-allele mutant was isolated (PMID 29743196)"
+Cre12.g561450			Chloroplast	"GO:0051536;GO:0003824"	"iron-sulfur cluster binding;catalytic activity"		"g13288.t1;Cre12.g561450.t1.1;Cre12.g561450.t1.1;g13288.t1;g13288.t1;Cre12.g561450.t1.1"		
+Cre12.g530650	GMM:12.2.2	"N-metabolism.ammonia metabolism.glutamine synthetase"	Chloroplast	"GO:0006807;GO:0006542;GO:0004356"	"nitrogen compound metabolic process;glutamine biosynthetic process;glutamate-ammonia ligase activity"	GLN2	g13061.t1	GLN2	"Glutamine synthetase (EC 6.3.1.2), chloroplast precursor (Glutamate--ammonia ligase) (GS2), CO2-responsive gene; identical to GLNA2_CHLRE cDNA [SwissProt Q42689), PMID: 8938407]; arranged head-to-head with another glutamine synthetase gene. GLN3; GLN2 & GLN3 are very nearly identical at the predicted aa level, and also nearly identical in the coding sequence at the nucleotide level"
+Cre12.g503300	GMM:23.1.2.6	"nucleotide metabolism.synthesis.purine.AIR carboxylase"	Chloroplast	GO:0006189	"'de novo' IMP biosynthetic process"		"Cre12.g503300.t1.1;g12504.t1"		
+Cre12.g518450				GO:0003677	"DNA binding"		"g12784.t1;Cre12.g518450.t1.1"		
+Cre12.g498750	GMM:11.9.2.1	"lipid metabolism.lipid degradation.lipases.triacylglycerol lipase"	"Secretory pathway"	GO:0006629	"lipid metabolic process"	LIP2	"LIP2;g12610.t1;LIPG2;LIPG2;g12610.t1;LIP2;LIP2;LIPG2;g12610.t1"		"related to gastric ligase;related to gastric ligase;related to gastric ligase"
+Cre12.g540850			"Secretory pathway"				g13759.t1		
+Cre12.g550700	GMM:23.1.2.3	"nucleotide metabolism.synthesis.purine.GAR transformylase"	Chloroplast	"GO:0016742;GO:0009058"	"hydroxymethyl-, formyl- and related transferase activity;biosynthetic process"		"g13531.t1;Cre12.g550700.t1.1"		
+Cre12.g534930									
+Cre12.g550350			Mitochondrion				"Cre12.g550350.t1.1;g13541.t1"		
+Cre12.g542250	"GMM:31.1.1.2;GMM:31.1"	"cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"		"GO:0007017;GO:0005874;GO:0003924"	"microtubule-based process;microtubule;GTPase activity"	TUB1	"g13727.t1;RSP19;g13727.t1;RSP19;g13727.t1;RSP19"	"TUB1;TUB1;TUB1"	"GI:167458; major constituent of microtubules [PMID: 3460413, PMID: 6098820]; it binds one mole of GTP that is hydrolyzed and alters dynamic instability of the microtubule cytoskeleton;GI:167458; major constituent of microtubules [PMID: 3460413, PMID: 6098820]; it binds one mole of GTP that is hydrolyzed and alters dynamic instability of the microtubule cytoskeleton;GI:167458; major constituent of microtubules [PMID: 3460413, PMID: 6098820]; it binds one mole of GTP that is hydrolyzed and alters dynamic instability of the microtubule cytoskeleton"
+Cre12.g492550			Chloroplast				"g12099.t1;g12099.t1;g12099.t1;g12099.t1"		
+Cre12.g539161									
+Cre12.g532200	GMM:33.99	development.unspecified					"g13094.t1;AOA2;AOA2;g13094.t1;g13094.t1;AOA2;AOA2;g13094.t1;AOA2;g13094.t1"		
+Cre12.g556228	GMM:9.2.2	"mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external"		"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	NDA7	"NDA7;Cre27.g775750.t1.1;g13821.t1"	NDA7	"NADH:quinone reductase (non-electrogenic)"
+Cre12.g498400			Chloroplast				"g12617.t1;g12617.t1;g12617.t1;g12617.t1"		
+Cre12.g559450				GO:0005515	"protein binding"		"g13335.t1;g13335.t1;g13335.t1;g13335.t1;g13335.t1;g13335.t1;g13335.t1"		
+Cre12.g547001			Mitochondrion				"Cre12.g546976.t1.2;g13614.t1"		
+Cre12.g544400	"GMM:30.6;GMM:29.4.1;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification"					"Cre12.g544400.t1.1;g13674.t1;STK"		
+Cre12.g543850				"GO:0016592;GO:0006357;GO:0001104"	"mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity"		g13692.t1		
+Cre12.g538000						EZY5	"Cre12.g538000.t1.1;g13229.t1;EZY5"	EZY5	"Early zygote expressed protein of unknown function activated upon fus mating [PMID: 18487630]"
+Cre12.g542202			Chloroplast				"g13788.t1;Cre27.g774350.t1.1;Cre27.g774350.t1.1;g13788.t1;Cre27.g774350.t1.1;g13788.t1"		
+Cre12.g552001			Chloroplast	"GO:0006508;GO:0004222"	"proteolysis;metalloendopeptidase activity"		"g13499.t1;Cre12.g552001.t1.1;g13499.t1;Cre12.g552001.t1.1;g13499.t1;Cre12.g552001.t1.1"		
+Cre12.g553302									
+Cre12.g537550			Mitochondrion				g13218.t1		
+Cre12.g521100							"g12838.t1;g12838.t1"	"POB5;POB5"	"Found in basal body proteome;Found in basal body proteome"
+Cre12.g529850	GMM:34.99	transport.misc					"g13045.t1;g13045.t1"		
+Cre12.g534050				"GO:0009395;GO:0004620"	"phospholipid catabolic process;phospholipase activity"	FAP366	"Cre12.g534050.t1.1;g13135.t1;g13135.t1;Cre12.g534050.t1.1"	"FAP366;FAP366"	"Similar to Phospholipase A2;Similar to Phospholipase A2"
+Cre12.g518650	GMM:11.8.4	"lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"				BSD1	"BHSD1;BSD1;Cre12.g518650.t1.1;g12787.t1;g12787.t1;Cre12.g518650.t1.1;BHSD1;BSD1"		"related to NAD(P)-dependent steroid dehydrogenase;related to NAD(P)-dependent steroid dehydrogenase"
+Cre12.g552250			Mitochondrion				g13493.t1		
+Cre12.g536500			Chloroplast			CGL10	"Cre12.g536500.t1.1;g13193.t1;Cre12.g536500.t1.1;g13193.t1"	"CGL10;CGL10"	
+Cre12.g488100	GMM:27.1	RNA.processing				UPF3	"g12225.t1;Cre12.g488100.t1.1;UPF3;UPF3;g12225.t1;Cre12.g488100.t1.1;Cre12.g488100.t1.1;g12225.t1;UPF3"	"UPF3;UPF3;UPF3"	"putative ortholog of Saccharomyces cerevisiae Upf3 and Caenorhabditis elegans SMG-4; interacts with UPF2;putative ortholog of Saccharomyces cerevisiae Upf3 and Caenorhabditis elegans SMG-4; interacts with UPF2;putative ortholog of Saccharomyces cerevisiae Upf3 and Caenorhabditis elegans SMG-4; interacts with UPF2"
+Cre12.g540050			Chloroplast				"g13775.t1;Cre12.g540050.t1.1;Cre12.g540050.t1.1;g13775.t1"		
+Cre12.g486250	"GMM:29.4;GMM:29.3.4.99"	"protein.postranslational modification;protein.targeting.secretory pathway.unspecified"		"GO:0007264;GO:0005525"	"small GTPase mediated signal transduction;GTP binding"	FAP333	"ARL6;Cre12.g486250.t1.1;g12270.t1;ARFA1A"	FAP333	"Similar to Arf1 ADP-ribosylation factor 1; member of the ARF-type of small GTPases, identical in sequence to ARL7 on scaffold 25, but this one is on chr12"
+Cre12.g557900	GMM:17.3.1.2.5	"hormone metabolism.brassinosteroid.synthesis-degradation.sterols.HYD1"		"GO:0047750;GO:0016125;GO:0016021"	"cholestenol delta-isomerase activity;sterol metabolic process;integral component of membrane"	CDI1	"HYD1;g13372.t1;Cre12.g557900.t1.1;CDI1;CDI1;Cre12.g557900.t1.1;g13372.t1;HYD1"	"CDI1;CDI1"	"Probable 3-beta-hydroxysteroid-delta(8),delta(7)-isomerase (EC 5.3.3.5) (C-8,7 sterol isomerase) (Cholesterol delta-isomerase) (Delta8-delta7 sterol isomerase) (D8-D7 sterol isomerase) (EBP); Orthologous to Arabidopsis AtHYD1;Probable 3-beta-hydroxysteroid-delta(8),delta(7)-isomerase (EC 5.3.3.5) (C-8,7 sterol isomerase) (Cholesterol delta-isomerase) (Delta8-delta7 sterol isomerase) (D8-D7 sterol isomerase) (EBP); Orthologous to Arabidopsis AtHYD1"
+Cre12.g494600			"Secretory pathway"				"Cre12.g494600.t1.1;g12056.t1"		
+Cre12.g504700	"GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone"		"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTB16	"HTB18;g12474.t1;HTB16;Cre12.g504700.t1.1;HTB28"	HTB16	"replication linked H2B; histone gene cluster XVI (type 43BA)"
+Cre12.g529450	GMM:26.17	misc.dynamin				DRP5	"DRP5A;Cre12.g529450.t1.1;g13036.t1;DRP5;Cre12.g529450.t1.1;DRP5A;DRP5;g13036.t1;Cre12.g529450.t1.1;DRP5A;DRP5;g13036.t1;DRP5A;Cre12.g529450.t1.1;g13036.t1;DRP5"		"Similar to Arabidopsis DRP5A;Similar to Arabidopsis DRP5A;Similar to Arabidopsis DRP5A;Similar to Arabidopsis DRP5A"
+Cre12.g561050	GMM:26.2	"misc.UDP glucosyl and glucoronyl transferases"	"Secretory pathway"			ELG18	"ELG19;g13297.t1;ELG18;ELG19;g13297.t1;ELG18;ELG19;ELG18;g13297.t1"		"putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family;putative terminal arabinosyl transferase on HRGP, GT47 family"
+Cre12.g497653	"GMM:26.11.1;GMM:26.11;GMM:16.8.3"	"misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols"		"GO:0050662;GO:0003824"	"coenzyme binding;catalytic activity"	SNE13	"SNE13;Cre12.g497550.t1.3;NED1;g12634.t1"		"an NAD dependent epimerase/dehydratase with flavanone 4-reductase activity"
+Cre12.g552851	GMM:17.6.2	"hormone metabolism.gibberelin.signal transduction"				OGT1	"g13482.t1;OGT1"	OGT1	"Sequence similarity to O-linked N-acetylglucosamine transferase (OGT) from Arabidopsis (AAL6196); null-allele mutant was isolated (PMID 29743196)"
+Cre12.g535450							"g13170.t2;g13170.t2"		
+Cre12.g540750							"g13761.t1;g13761.t1;g13761.t1"		
+Cre12.g542150							"Cre12.g542150.t1.1;g13729.t1"		
+Cre12.g515500			"Secretory pathway"				"g12718.t1;g12718.t1;g12718.t1;g12718.t1"		
+Cre12.g538050							"Cre12.g538050.t1.1;g13230.t1;Cre12.g538050.t1.1;g13230.t1"		
+Cre12.g491100				"GO:0016491;GO:0008152"	"oxidoreductase activity;metabolic process"				
+Cre12.g520850	GMM:27.3.99	"RNA.regulation of transcription.unclassified"		"GO:0016592;GO:0006355;GO:0001104"	"mediator complex;regulation of transcription, DNA-templated;RNA polymerase II transcription cofactor activity"		"g12833.t1;Cre12.g520850.t1.1"		
+Cre12.g508150	"GMM:28.1;GMM:27.3.44"	"DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors"		"GO:0043044;GO:0031491;GO:0016818;GO:0016787;GO:0006338;GO:0005634;GO:0005524;GO:0003677;GO:0003676"	"ATP-dependent chromatin remodeling;nucleosome binding;hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;hydrolase activity;chromatin remodeling;nucleus;ATP binding;DNA binding;nucleic acid binding"		"g12393.t1;Cre12.g508150.t1.1;SRH21"		"SNF2-related helicase, ISW1/2 class, ChromDB CHR344"
+Cre12.g493404	GMM:34.7	transport.phosphate	"Secretory pathway"	"GO:0016020;GO:0006817;GO:0005315"	"membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity"		"PTBx;Cre86.g796650.t1.1;g12114.t1"	PTB13	"Unlike the other 12 PTB proteins in C.reinhardtii, this one lacks the large hydrophilic loop between the seventh and eighth TMD;"
+Cre12.g533351	GMM:20.2.1	stress.abiotic.heat	Chloroplast	"GO:0016887;GO:0005524"	"ATPase activity;ATP binding"	CLPB5	g13120.t1	CLPB5	"predicted chloroplastic by Predalgo"
+Cre12.g553350	GMM:1.5.3	"PS.carbon concentrating mechanism.algal"				LCI6			
+Cre12.g550153			Chloroplast						
+Cre12.g553253			Chloroplast	"GO:0006260;GO:0003896"	"DNA replication;DNA primase activity"		"Cre27.g775400.t1.1;g13814.t1"		
+Cre12.g513100							"g12669.t1;Cre12.g513100.t1.1;Cre12.g513100.t1.1;g12669.t1;Cre12.g513100.t1.1;g12669.t1"		
+Cre12.g533250	GMM:29.5.11.5	"protein.degradation.ubiquitin.ubiquitin protease"	Mitochondrion	"GO:0036459;GO:0016579"	"thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination"		g13118.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g526264				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"		g12957.t1		
+Cre12.g524500	"GMM:27.3.69;GMM:1.3.13"	"RNA.regulation of transcription.SET-domain transcriptional regulator family;PS.calvin cycle.rubisco interacting"				RMT2	"Cre12.g524500.t1.1;RMT2;g12913.t1;Cre12.g524500.t1.1;RMT2;g12913.t1"		"SET domain-containing methyltransferase; Similar to At1g143 F7A19.12, F16A14.25; putative ribulose-1,5 bisphosphate carboxylase/oxygenase large subunit N-methyltransferase [EC:2.1.1.127], but the protein is missing active site residues;SET domain-containing methyltransferase; Similar to At1g143 F7A19.12, F16A14.25; putative ribulose-1,5 bisphosphate carboxylase/oxygenase large subunit N-methyltransferase [EC:2.1.1.127], but the protein is missing active site residues"
+Cre12.g518772	GMM:27.1.1	RNA.processing.splicing		GO:0003676	"nucleic acid binding"		"Cre12.g518772.t1.1;g12790.t1"		
+Cre12.g499400	"GMM:31.3.1;GMM:29.6.3.2"	"cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins"		"GO:0006457;GO:0003755;GO:0000413"	"protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization"	CYN18-2	"CYN2;Cre12.g499400.t1.1;CYN18-2;g12592.t1"	CYN18B	"Peptidyl-prolyl cis-trans isomerase (rotamase), cyclophilin type; cytosolic; similar to AtCYP18-2 and AtCYP19-2"
+Cre12.g538900							"g13249.t1;Cre12.g538900.t1.1"		
+Cre12.g503150			Chloroplast	"GO:0043139;GO:0003697"	"5'-3' DNA helicase activity;single-stranded DNA binding"		"g12507.t1;g12507.t1;g12507.t1"		
+Cre12.g517400	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"	"Secretory pathway"	GO:0005525	"GTP binding"	RAB5	"Cre12.g517400.t1.1;g12759.t1;RAB5;RABF1"	RAB5	"Similar to the RabF/Rab5 type of small GTPase, involved in vesicle trafficking in the endosomal system; Found in the flagellar proteome [PMID: 15998802]; Similar to mammalian Rab5; Class II in PMID: 8756593;"
+Cre12.g525700	GMM:9.6	"mitochondrial electron transport / ATP synthesis.cytochrome c"		"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"	HCS1	"HCS1;g12936.t1;Cre12.g525700.t1.1"	HCS1	"holocytochrome c synthase, also named CCHL [yeast, PMID: 14514677]"
+Cre12.g552750							"Cre12.g552750.t1.1;g13483.t1"		
+Cre12.g515200	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"				DRC6	"Cre12.g515200.t1.1;g12711.t1;FAP169;FAP169;g12711.t1;Cre12.g515200.t1.1;FAP169;g12711.t1;Cre12.g515200.t1.1"	"DRC6;DRC6;DRC6"	"Flagellar Associated Protein 169, found in the flagellar proteome;;Flagellar Associated Protein 169, found in the flagellar proteome;;Flagellar Associated Protein 169, found in the flagellar proteome;"
+Cre12.g483950	"GMM:8.1.9;GMM:6.3"	"TCA / organic transformation.TCA.malate DH;gluconeogenesis / glyoxylate cycle.malate dehydrogenase"	Chloroplast	"GO:0055114;GO:0019752;GO:0016616;GO:0006694;GO:0003854"	"oxidation-reduction process;carboxylic acid metabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	MDN4	"MDH4;MDN4;g12013.t1;Cre12.g483950.t1.1;MDH4;MDN4;g12013.t1;Cre12.g483950.t1.1"	"MDH4;MDH4"	"mitochondrial malate dehydrogenase, NAD-dependent;mitochondrial malate dehydrogenase, NAD-dependent"
+Cre12.g507000			Mitochondrion			FFT6	"FFT6;g12426.t1"		"Catalyzes fructosyl transfer between fructan molecules to elongate the fructan chain. Similar to proteins of the glycoside hydrolase family 32, in particular the vacuolar acid invertase. Possible fructan beta-fructosidase"
+Cre12.g549000	GMM:1.5	"PS.carbon concentrating mechanism"	"Secretory pathway"			PHC4	"Cre12.g549000.t1.1;g13568.t1;PHC4"	PHC4	"Pherophorin-C4 (PHC4) [PMID: 16367971; Genbank entry DQ196110]; extracellular matrix protein (cell wall protein); belongs to the large pherophorin-family, a family of glycoproteins with a central hydroxyproline-rich (HR) domain"
+Cre12.g540150			"Secretory pathway"				g13773.t2		
+Cre12.g526450	GMM:29.4	"protein.postranslational modification"	"Secretory pathway"	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"				
+Cre12.g497850			Chloroplast				"g12628.t1;Cre12.g497850.t1.1"		
+Cre12.g524800							g12919.t1		
+Cre12.g516450	GMM:9.1.1.5	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I.carbonic anhydrase"	Mitochondrion			CAG1	"CAG1;Cre12.g516450.t1.1;g12739.t1;CAG1;g12739.t1;Cre12.g516450.t1.1"	"CAG1;CAG1"	"NADH:ubiquinone oxidoreductase (Complex I) subunit; putative carbonic anhydrase (gamma-type) identical to AAS48195 (mitochondrial complex I subunit); Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP1);NADH:ubiquinone oxidoreductase (Complex I) subunit; putative carbonic anhydrase (gamma-type) identical to AAS48195 (mitochondrial complex I subunit); Arabidopsis homologs erroneously described as ferripyochelin-binding proteins (FBP1)"
+Cre12.g551800	GMM:23.3.3	"nucleotide metabolism.salvage.NUDIX hydrolases"		GO:0016787	"hydrolase activity"		"Cre12.g551800.t1.1;g13506.t1"		
+Cre12.g499600						CSD5	"g12586.t1;CSD5;SUFS2;g12586.t1;SUFS2;CSD5;CSD5;SUFS2;g12586.t1;g12586.t1;CSD5;SUFS2;SUFS2;CSD5;g12586.t1"		"Sequence similarity to group-II cysteine desulfurase, but conserved active site is lacking.;Sequence similarity to group-II cysteine desulfurase, but conserved active site is lacking.;Sequence similarity to group-II cysteine desulfurase, but conserved active site is lacking.;Sequence similarity to group-II cysteine desulfurase, but conserved active site is lacking.;Sequence similarity to group-II cysteine desulfurase, but conserved active site is lacking."
+Cre12.g555550	"GMM:31.1.1.1.3;GMM:31.1"	"cell.organisation.cytoskeleton.actin.actin binding;cell.organisation"		GO:0003779	"actin binding"		"Cre12.g555550.t1.1;g13421.t1"		
+Cre12.g549750	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	FAP4	"Cre12.g549750.t1.1;CK1;g13553.t1;CSK1;Cre12.g549750.t1.1;CK1;g13553.t1;CSK1"	"FAP4;FAP4"	"Ser-/Thr-kinase domain; homology to casein kinase 1 of higher plants and animals where it is involved in phosphorylation of components of the circadian clock; found in the flagellar proteome [PMID: 15998802];Ser-/Thr-kinase domain; homology to casein kinase 1 of higher plants and animals where it is involved in phosphorylation of components of the circadian clock; found in the flagellar proteome [PMID: 15998802]"
+Cre12.g502550			Chloroplast				g12520.t1		
+Cre12.g548152	GMM:34.9	"transport.metabolite transporters at the mitochondrial membrane"					"Cre27.g774900.t1.1;g13802.t1;Cre27.g774900.t1.1;g13802.t1;Cre27.g774900.t1.1;g13802.t1"		
+Cre12.g486551				"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	PHX19	"g12262.t1;PFH19;Cre12.g486500.t1.3;PHX19"		"Prolyl hydroxylase, possibly a prolyl-3-hydroxylase related to LEPRE1, a leucine proline-enriched proteoglycan (leprecan) 1 gene, mutations in which are implicated in osteogenesis imperfecta"
+Cre12.g538950							"g13250.t1;Cre12.g538950.t1.1"		
+Cre12.g483800			Mitochondrion				"CPY;g12009.t1;CPY;g12009.t1;g12009.t1;CPY;CPY;g12009.t1;g12009.t1;CPY;g12009.t1;CPY;g12009.t1;CPY;CPY;g12009.t1"		
+Cre12.g554116			Mitochondrion				g13281.t1		
+Cre12.g509200							"g12368.t1;Cre12.g509200.t1.1;g12368.t1;Cre12.g509200.t1.1"		
+Cre12.g557250	GMM:26.17	misc.dynamin					"g13384.t1;Cre12.g557250.t1.1;g13384.t1;Cre12.g557250.t1.1"		
+Cre12.g485000						FAP182	"g12036.t1;g12036.t1"	"FAP182;FAP182"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre12.g520000	GMM:31.1	cell.organisation	Mitochondrion	GO:0005515	"protein binding"		"g12813.t1;g12813.t1;g12813.t1;g12813.t1"		
+Cre12.g521300							"Cre12.g521300.t1.1;g12842.t1"	POB14	"Found in basal body proteome"
+Cre12.g494250			Mitochondrion				"g12063.t1;Cre12.g494250.t1.1"		
+Cre12.g518050	GMM:31.6.1.10	"cell.motility.eukaryotes.flagellar associated proteins"	Mitochondrion			FAP261	"Cre12.g518050.t1.1;g12776.t1;Cre12.g518050.t1.1;g12776.t1"	"FAP261;FAP261"	"Flagellar Associated Protein, found in the flagellar proteome;Flagellar Associated Protein, found in the flagellar proteome"
+Cre12.g508850			Chloroplast	GO:0005515	"protein binding"		"g12375.t1;GST8;g12375.t1;GST8;g12375.t1;GST8"	"GST8;GST8;GST8"	"Likely mitochondrial; One of two paralogs (Cre11.g467690, Cre12.g508850);;Likely mitochondrial; One of two paralogs (Cre11.g467690, Cre12.g508850);;Likely mitochondrial; One of two paralogs (Cre11.g467690, Cre12.g508850);"
+Cre12.g554400			Mitochondrion				g13445.t1		
+Cre12.g557000	GMM:29.5.2	protein.degradation.autophagy	Chloroplast	"GO:0005737;GO:0000045"	"cytoplasm;autophagosome assembly"	ATG12	"Cre12.g557000.t1.1;g13388.t1;APG12;Cre12.g557000.t1.1;APG12;g13388.t1"	"ATG12;ATG12"	"Ubiquitin-like modifier involved in autophagy; conjugated to Atg5 to form a complex involved in Atg8 lipidation; Atg5-Atg12 conjugate enhances E2 activity of Atg3 by rearranging its catalytic site, also forms a complex with Atg16; the Atg5-Atg12/Atg16 complex binds to membranes and is essential for autophagosome formation;Ubiquitin-like modifier involved in autophagy; conjugated to Atg5 to form a complex involved in Atg8 lipidation; Atg5-Atg12 conjugate enhances E2 activity of Atg3 by rearranging its catalytic site, also forms a complex with Atg16; the Atg5-Atg12/Atg16 complex binds to membranes and is essential for autophagosome formation"
+Cre12.g521700	GMM:2.1.2.2	"major CHO metabolism.synthesis.starch.starch synthase"	Chloroplast			SSS6	"g12851.t1;Cre12.g521700.t1.1;SSS6;SSS6;g12851.t1;Cre12.g521700.t1.1"	"SSS1A;SSS1A"	"ADP-glucose alpha-1,4 glucane alpha-4-glucanotransferase;ADP-glucose alpha-1,4 glucane alpha-4-glucanotransferase"
+Cre12.g558150							"Cre12.g558150.t1.1;g13367.t1"		
+Cre12.g516500	GMM:29.5.11.4.3.3	protein.degradation.ubiquitin.E3.SCF.cullin	Mitochondrion	"GO:0031625;GO:0006511"	"ubiquitin protein ligase binding;ubiquitin-dependent protein catabolic process"	CUL2	"g12740.t1;CUL2;g12740.t1;CUL2;CUL2;g12740.t1"	"CUL4;CUL4;CUL4"	"Cullin; Origninally annotated as CUL2, but has orthology to AtCUL4 in Arabidopsis thaliana;;Cullin; Origninally annotated as CUL2, but has orthology to AtCUL4 in Arabidopsis thaliana;;Cullin; Origninally annotated as CUL2, but has orthology to AtCUL4 in Arabidopsis thaliana;"
+Cre12.g505350	"GMM:34.21;GMM:30.3;GMM:3.3"	"transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols"		"GO:0046872;GO:0000166"	"metal ion binding;nucleotide binding"	FAP10	"Cre12.g505350.t1.1;g12460.t1;ACA2;ACA2;g12460.t1;Cre12.g505350.t1.1;g12460.t1;ACA2;Cre12.g505350.t1.1;g12460.t1;ACA2;Cre12.g505350.t1.1"	"FAP10;FAP10;FAP10;FAP10"	"Similar to membrane Ca2+Transporting ATPase;Similar to membrane Ca2+Transporting ATPase;Similar to membrane Ca2+Transporting ATPase;Similar to membrane Ca2+Transporting ATPase"
+Cre12.g502251			Chloroplast				"g12527.t1;Cre12.g502227.t1.2;g12527.t1;Cre12.g502227.t1.2"		
+Cre12.g542600			Chloroplast				"g13717.t1;Cre12.g542600.t1.1;g13717.t1;Cre12.g542600.t1.1"		
+Cre12.g530550	"GMM:11.8.1;GMM:11.3.5"	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids;lipid metabolism.phospholipid synthesis.diacylglycerol kinase"		GO:0016301	"kinase activity"	KDG2	"g13059.t1;KDG2;KDG2;g13059.t1"		"similar to sphingosine kinase type 2 from Bos taurus XP_612394.2;similar to sphingosine kinase type 2 from Bos taurus XP_612394.2"
+Cre12.g543477			Mitochondrion				g13791.t1		
+Cre12.g508650			"Secretory pathway"				g12380.t1		
+Cre12.g526091									
+Cre12.g511300			Mitochondrion				"g12322.t1;g12322.t1"		
+Cre12.g559053						CSB50	"CSB50;g13344.t1"		"CSB family member have highly similar sequences and show various degrees of N-terminal truncation; C-terminal part similar to transposase DNA-binding domain; is probably part of a (truncated) repeat element"
+Cre12.g504350	"GMM:11.9.2.2;GMM:11.9.2"	"lipid metabolism.lipid degradation.lipases.acylglycerol lipase;lipid metabolism.lipid degradation.lipases"							
+Cre12.g537000			"Secretory pathway"	GO:0004872	"receptor activity"		"Cre12.g537000.t1.1;g13205.t1"		"Target of CRR1"
+Cre12.g534500			"Secretory pathway"	"GO:0007029;GO:0005789"	"endoplasmic reticulum organization;endoplasmic reticulum membrane"		g13145.t1		
+Cre12.g486481			"Secretory pathway"						
+Cre12.g516900			Chloroplast	GO:0005515	"protein binding"		g12749.t1		
+Cre12.g489000				"GO:0043565;GO:0006355;GO:0003700"	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"		"g12206.t1;g12206.t1;g12206.t1"		
+Cre12.g526850	"GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2"	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase"		"GO:0016787;GO:0005524;GO:0003677"	"hydrolase activity;ATP binding;DNA binding"	HEL56	"Cre12.g526850.t1.1;HEL56;g12981.t1;Cre12.g526850.t1.1;g12981.t1;HEL56;Cre12.g526850.t1.1;HEL56;g12981.t1"		
+Cre12.g541750	GMM:16.1.4	"secondary metabolism.isoprenoids.carotenoids"	Mitochondrion	"GO:0055114;GO:0016491"	"oxidation-reduction process;oxidoreductase activity"	ZPD1	"g13738.t1;ZPD1;g13738.t1;ZPD1;ZPD1;g13738.t1"	"ZPD1;ZPD1;ZPD1"	
+Cre12.g489350							g12198.t1		
+Cre12.g553900	GMM:34.15	transport.potassium		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	CNG2	"g13455.t1;CNG2;g13455.t1;CNG2"	"CNG2;CNG2"	"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g491000	GMM:29.3.1	protein.targeting.nucleus	"Secretory pathway"	GO:0016757	"transferase activity, transferring glycosyl groups"		"g12164.t1;Cre12.g491000.t1.1;g12164.t1;Cre12.g491000.t1.1;Cre12.g491000.t1.1;g12164.t1"		
+Cre12.g486300	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast	"GO:0015979;GO:0009538;GO:0009522"	"photosynthesis;photosystem I reaction center;photosystem I"	PSAL	"Cre12.g486300.t1.1;PSAL;g12269.t1"	PSAL1	"Chloroplast precursor; subunit XI"
+Cre12.g549850	GMM:29.1	"protein.aa activation"		"GO:0009452;GO:0008168;GO:0001510"	"7-methylguanosine RNA capping;methyltransferase activity;RNA methylation"		g13551.t1		
+Cre12.g543301			Mitochondrion			CSV11	"g13704.t1;CSV11;Cre12.g543258.t1.2;Cre12.g543258.t1.2;CSV11;g13704.t1;g13704.t1;CSV11;Cre12.g543258.t1.2;CSV11;Cre12.g543258.t1.2;g13704.t1;Cre12.g543258.t1.2;CSV11;g13704.t1"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown;Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown"
+Cre12.g506450	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO19	"g12440.t1;HFO35;Cre12.g506450.t1.1"	HFO19	"Replication linked H4; histone gene cluster XIX (type 43)"
+Cre12.g483750							"Cre12.g483750.t1.1;g12008.t1"		
+Cre12.g535851	GMM:29.2.1.2.2.8	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L8"	Chloroplast	"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL8	"g13179.t1;g13179.t1"	"RPL8;RPL8"	"Cytosolic 60S large ribosomal subunit protein L8;Cytosolic 60S large ribosomal subunit protein L8"
+Cre12.g548000	GMM:29.2.2.3.1	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs"	Mitochondrion				"Cre12.g548000.t1.1;g13592.t1;Cre12.g548000.t1.1;g13592.t1;g13592.t1;Cre12.g548000.t1.1;Cre12.g548000.t1.1;g13592.t1"		
+Cre12.g505850	"GMM:29.9;GMM:29.6.2.6;GMM:29.6"	"protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding"	Chloroplast	"GO:0006457;GO:0005737"	"protein folding;cytoplasm"	CPN23	"Cre12.g505850.t1.1;g12450.t1;CPN23;g12450.t1;Cre12.g505850.t1.1;CPN23"	"CPN23;CPN23"	"Co-chaperonin assisting the CPN60 chaperonin in protein folding; homologous to bacterial GroES; contains two cpn10 domains; located in the chloroplast, where two Cpn20 form with Cpn10 and Cpn23 a tetramer with seven cpn10 domains; heptamers of Cpn10-like co-chaperonins bind to one of the two Cpn60 heptameric rings and trigger ATP hydrolysis; also found in association with the ClpPR complex;Co-chaperonin assisting the CPN60 chaperonin in protein folding; homologous to bacterial GroES; contains two cpn10 domains; located in the chloroplast, where two Cpn20 form with Cpn10 and Cpn23 a tetramer with seven cpn10 domains; heptamers of Cpn10-like co-chaperonins bind to one of the two Cpn60 heptameric rings and trigger ATP hydrolysis; also found in association with the ClpPR complex"
+Cre12.g519300	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF9	"g12800.t1;Cre12.g519300.t1.1;Cre12.g519300.t1.1;g12800.t1"	"TEF9;TEF9"	
+Cre12.g502700							"g12516.t1;Cre12.g502700.t1.1;Cre12.g502700.t1.1;g12516.t1;Cre12.g502700.t1.1;g12516.t1"		
+Cre12.g558750				"GO:0015934;GO:0006412;GO:0003735"	"large ribosomal subunit;translation;structural constituent of ribosome"		"Cre12.g558750.t1.1;g13353.t1;bL32m"	MRPL32	
+Cre12.g507051	"GMM:3.5;GMM:2.2.1.3.3;GMM:2.2.1.3.2"	"minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.vacuolar;major CHO metabolism.degradation.sucrose.invertases.cell wall"	Chloroplast				"Cre12.g507029.t1.2;g12423.t1"		
+Cre12.g555150	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"				NUOB10	"Cre12.g555150.t1.1;g13429.t1"	NUOB10	"Mitochondrial Complex I 17.8 kDa subunit precursor, homolog to bovine PDSW (PDSW/NDUFB10/NUO12.3); marked by amc5 mutation; Ortholog to NDUFB10 in Homo sapiens;"
+Cre12.g517250			Chloroplast				"g12756.t1;g12756.t1;g12756.t1"		
+Cre12.g496400							"g12656.t1;g12656.t1;g12656.t1;g12656.t1;g12656.t1"		
+Cre12.g556912			Chloroplast						
+Cre12.g545850	GMM:20.2.1	stress.abiotic.heat				FAP363	"Cre12.g545850.t1.1;g13638.t1;Cre12.g545850.t1.1;g13638.t1"	"FAP363;FAP363"	"C-terminus Similar to HSP70;C-terminus Similar to HSP70"
+Cre12.g543500						FAP364	"g13699.t1;Cre12.g543500.t1.1"	FAP364	"Found in Cr and Volvox but not strongly conserved elsewhere"
+Cre12.g543300			Mitochondrion				"g13703.t1;g13703.t1;g13703.t1;g13703.t1;g13703.t1"		
+Cre12.g508852			Chloroplast	"GO:0006464;GO:0004077"	"cellular protein modification process;biotin-[acetyl-CoA-carboxylase] ligase activity"		g12376.t1		
+Cre12.g517650							"g12764.t1;g12764.t1;g12764.t1;g12764.t1"		
+Cre12.g495952			Chloroplast						
+Cre12.g500550	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion				"Cre12.g500550.t1.1;g12565.t1"		
+Cre12.g507500							g12412.t1		
+Cre12.g521851							g12854.t1		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g524650	GMM:27.3.55	"RNA.regulation of transcription.HDA"	Mitochondrion	GO:0070403	"NAD+ binding"	HDA18	"HDA18;SRTB;g12916.t2;Cre12.g524650.t1.1"	SRTB1	"ChromDB SRT3401; Homologous to yeast SIR2 protein; similar to classes II sirtuins"
+Cre12.g525970				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g560150	"GMM:30.5;GMM:3.5"	"signalling.G-proteins;minor CHO metabolism.others"		GO:0005525	"GTP binding"	FAP353	"RAB1;RABD1;Cre12.g560150.t1.1;g13316.t1"	FAP353	"Similar to RabD/Rab1-type GTPases. Identical to YPTC1 [gi 2500073 sp Q39571 YPT1_CHLRE]. Found in the flagellar proteome [PMID: 15998802]; Class I in [PMID: 8756593]"
+Cre12.g511600							"g12318.t1;g12318.t1;g12318.t1;g12318.t1"		
+Cre12.g546200			Chloroplast	"GO:0016021;GO:0006508;GO:0004252"	"integral component of membrane;proteolysis;serine-type endopeptidase activity"	RBL5	"RBL5;g13631.t1;Cre12.g546200.t1.1"		"similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579); possibly organelle-targeted; lacks the catalytic Ser and conserved Asn, and hence probably inactive as a protease"
+Cre12.g490451			Mitochondrion				"Cre12.g490400.t1.3;g12177.t1"		
+Cre12.g495956							"g12146.t1;Cre42.g787252.t1.2;Cre42.g787252.t1.1;Cre42.g787252.t1.2;Cre42.g787252.t1.1;g12146.t1"		
+Cre12.g510751									
+Cre12.g539850							g13778.t2		
+Cre12.g520250				"GO:0016593;GO:0016570;GO:0006368"	"Cdc73/Paf1 complex;histone modification;transcription elongation from RNA polymerase II promoter"	PAF1	"g12820.t1;PAF1;Cre12.g520250.t1.1;PAF1;Cre12.g520250.t1.1;g12820.t1"	"PAF1;PAF1"	"RNA polymerase II-associated regulator (ChromoDB PAFA341); The PAF1 complex regulates cleavage and polyadenylation of mRNA, governs polyA site selection, controls the export of nascent transcripts, chromatin structure by promoting several cotranscriptional histone modifications; can be recruited to genes by transcriptional activators and through interactions with the Pol II elongation machinery; can function to maintain promoter-proximal pausing of Pol II or to promote release from pausing, depending upon;RNA polymerase II-associated regulator (ChromoDB PAFA341); The PAF1 complex regulates cleavage and polyadenylation of mRNA, governs polyA site selection, controls the export of nascent transcripts, chromatin structure by promoting several cotranscriptional histone modifications; can be recruited to genes by transcriptional activators and through interactions with the Pol II elongation machinery; can function to maintain promoter-proximal pausing of Pol II or to promote release from pausing, depending upon"
+Cre12.g509650	GMM:16.1.4.2	"secondary metabolism.isoprenoids.carotenoids.phytoene dehydrogenase"	Chloroplast			PDS1	"g12358.t1;PDS;Cre12.g509650.t1.1;g12358.t1;PDS;Cre12.g509650.t1.1;PDS;Cre12.g509650.t1.1;g12358.t1"	"PDS1;PDS1;PDS1"	"Phytoene desaturase (zeta-carotene-forming), chloroplast precursor [PMID:15579683], [PMID:22912689];Phytoene desaturase (zeta-carotene-forming), chloroplast precursor [PMID:15579683], [PMID:22912689];Phytoene desaturase (zeta-carotene-forming), chloroplast precursor [PMID:15579683], [PMID:22912689]"
+Cre12.g506700							"SMM41;g12435.t1;Cre12.g506700.t1.1"		
+Cre12.g506350	"GMM:28.1.3.2.4;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone"				HFO18	"HFO18;g12442.t1;Cre12.g506350.t1.1"	HFO18	"replication linked H4; histone gene cluster XVIII (type 43AB)"
+Cre12.g560600	GMM:18	"Co-factor and vitamine metabolism"		"GO:0008152;GO:0006741;GO:0003951"	"metabolic process;NADP biosynthetic process;NAD+ kinase activity"		"g13307.t1;g13307.t1"		
+Cre12.g515850	"GMM:28.1;GMM:27.3.67"	"DNA.synthesis/chromatin structure;RNA.regulation of transcription.putative transcription regulator"		"GO:0030896;GO:0030337;GO:0006275;GO:0003677;GO:0000077"	"checkpoint clamp complex;DNA polymerase processivity factor activity;regulation of DNA replication;DNA binding;DNA damage checkpoint"	PCN1	"Cre12.g515850.t1.1;PCN1;g12725.t1;g12725.t1;PCN1;Cre12.g515850.t1.1"	"PCN1;PCN1"	"Proliferating Cell Nuclear Antigen (PCNA) homolog;Proliferating Cell Nuclear Antigen (PCNA) homolog"
+Cre12.g489153	GMM:29.2.1.2.2.31	"protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L31"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPL31	"Cre12.g489100.t1.3;g12204.t1;g12204.t1;Cre12.g489100.t1.3;g12204.t1;Cre12.g489100.t1.3;Cre12.g489100.t1.3;g12204.t1;g12204.t1;Cre12.g489100.t1.3;g12204.t1;Cre12.g489100.t1.3"	"RPL31;RPL31;RPL31;RPL31;RPL31;RPL31"	"Cytosolic 60S large ribosomal subunit protein L31;Cytosolic 60S large ribosomal subunit protein L31;Cytosolic 60S large ribosomal subunit protein L31;Cytosolic 60S large ribosomal subunit protein L31;Cytosolic 60S large ribosomal subunit protein L31;Cytosolic 60S large ribosomal subunit protein L31"
+Cre12.g487650							g12234.t1		
+Cre12.g519651			Mitochondrion				g12807.t1		
+Cre12.g491450			Mitochondrion				g12156.t1		
+Cre12.g520350	GMM:13.2.2.2	"amino acid metabolism.degradation.glutamate family.proline"	Mitochondrion	"GO:0055114;GO:0016491;GO:0008152"	"oxidation-reduction process;oxidoreductase activity;metabolic process"	ALD1	"ALDH12A1;ALD1;g12822.t1;Cre12.g520350.t1.1;ALD1;ALDH12A1;Cre12.g520350.t1.1;g12822.t1;ALD1;ALDH12A1;Cre12.g520350.t1.1;g12822.t1"	"ALDH12;ALDH12;ALDH12"	"Family 12 aldehyde dehydrogenase;Family 12 aldehyde dehydrogenase;Family 12 aldehyde dehydrogenase"
+Cre12.g528500			Chloroplast	GO:0016787	"hydrolase activity"		"MTH1;Cre12.g528500.t1.1;NUDT1;g13014.t1"		"NUDIX domain with slight homology to human NUDT1"
+Cre12.g552402			Mitochondrion				"Cre27.g775300.t1.1;g13812.t1;Cre27.g775300.t1.1;g13812.t1;Cre27.g775300.t1.1;g13812.t1"		
+Cre12.g534800	"GMM:25;GMM:13.2.5.2;GMM:1.2.4.1"	"C1-metabolism;amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;PS.photorespiration.glycine cleavage.P subunit"	Mitochondrion	"GO:0055114;GO:0006546;GO:0004375"	"oxidation-reduction process;glycine catabolic process;glycine dehydrogenase (decarboxylating) activity"	GCSP	"g13152.t1;GCSP"	GCSP1	"Glycine dehydrogenase (decarboxylating). P protein subunit of the glycine cleavage system"
+Cre12.g532250							"g13095.t1;g13095.t1;g13095.t1"		
+Cre12.g551802				"GO:0048278;GO:0006887;GO:0005737"	"vesicle docking;exocytosis;cytoplasm"				
+Cre12.g555250	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"				NUOB14	"Cre12.g555250.t1.1;g13427.t1"	NUOB14	"NADH:ubiquinone oxidoreductase Complex I) subunit, homolog to bovine B14. gi 35188009 gb AAQ84469.1 [=NDUFA6]; Ortholog to NDUFA6 in Homo sapiens;"
+Cre12.g516000							"g12729.t1;g12729.t1"		
+Cre12.g544800							"g13664.t1;Cre12.g544800.t1.1"		
+Cre12.g492503			Chloroplast						
+Cre12.g549900			Chloroplast				"g13550.t1;g13550.t1;g13550.t1"		
+Cre12.g535350							"g13168.t1;Cre12.g535350.t1.1"		
+Cre12.g502179			Mitochondrion				"g12529.t1;g12529.t1;g12529.t1;g12529.t1;g12529.t1;g12529.t1;g12529.t1"		
+Cre12.g554650				"GO:0005515;GO:0000228"	"protein binding;nuclear chromosome"	REC8	"Cre12.g554650.t1.1;g13441.t1"	REC8	"RAD21 homolog; forms with SMC1, SMC3 and SCC3/SA/STAG the cohesin complex that holds siter chromatids together during S phase, allowing repair by homologous recombination; closest to Arabidopsis SYN1/DIF1, meiotic isoform"
+Cre12.g546050	GMM:16.1.1.2	"secondary metabolism.isoprenoids.non-mevalonate pathway.DXR"	Chloroplast	"GO:0070402;GO:0055114;GO:0046872;GO:0030604;GO:0008299;GO:0005515"	"NADPH binding;oxidation-reduction process;metal ion binding;1-deoxy-D-xylulose-5-phosphate reductoisomerase activity;isoprenoid biosynthetic process;protein binding"	DXR1	"g13634.t1;DXR1;DXR;Cre12.g546050.t1.1"	DXR1	"1-deoxy-D-xylulose 5-phosphate reductoisomerase (DXP reductoisomerase) (1-deoxyxylulose-5-phosphate reductoisomerase) (ispC) (yaeM), chloroplast precursor"
+Cre12.g543950							"g13690.t2;Cre12.g543950.t1.1"		
+Cre12.g544100							"g13680.t1;g13680.t1"		
+Cre12.g551600			"Secretory pathway"				"g13511.t1;Cre12.g551600.t1.1"		
+Cre12.g484250	"GMM:31.6.1.4.2.1;GMM:31.6.1.4.2"	"cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.inner arm"		"GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777"	"dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity"	DHC1	"ROC34;IA1-DHC1alpha;IDA1;g12019.t1;PF9;PF9;g12019.t1;IDA1;IA1-DHC1alpha;ROC34;PF9;g12019.t1;IDA1;ROC34;IA1-DHC1alpha;IDA1;g12019.t1;PF9;IA1-DHC1alpha;ROC34;IA1-DHC1alpha;ROC34;IDA1;g12019.t1;PF9"	"DHC1;DHC1;DHC1;DHC1;DHC1"	"Flagellar inner arm dynein 1 heavy chain alpha (dynein heavy chain 1, dynein fa; one heavy chain of a two-headed type dynein; other chain is DHC1, dynein fb) (subspecies f)(DHC1-alpha)(Pf9); DHC1 in PMID: 9247642; identified in Chlamydomonas flagella in; null-allele mutant was isolated [PMID 29743196]; Matsuo et al.'s (2008) roc34 (rhythm of chloroplast 34) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];Flagellar inner arm dynein 1 heavy chain alpha (dynein heavy chain 1, dynein fa; one heavy chain of a two-headed type dynein; other chain is DHC1, dynein fb) (subspecies f)(DHC1-alpha)(Pf9); DHC1 in PMID: 9247642; identified in Chlamydomonas flagella in; null-allele mutant was isolated [PMID 29743196]; Matsuo et al.'s (2008) roc34 (rhythm of chloroplast 34) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];Flagellar inner arm dynein 1 heavy chain alpha (dynein heavy chain 1, dynein fa; one heavy chain of a two-headed type dynein; other chain is DHC1, dynein fb) (subspecies f)(DHC1-alpha)(Pf9); DHC1 in PMID: 9247642; identified in Chlamydomonas flagella in; null-allele mutant was isolated [PMID 29743196]; Matsuo et al.'s (2008) roc34 (rhythm of chloroplast 34) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];Flagellar inner arm dynein 1 heavy chain alpha (dynein heavy chain 1, dynein fa; one heavy chain of a two-headed type dynein; other chain is DHC1, dynein fb) (subspecies f)(DHC1-alpha)(Pf9); DHC1 in PMID: 9247642; identified in Chlamydomonas flagella in; null-allele mutant was isolated [PMID 29743196]; Matsuo et al.'s (2008) roc34 (rhythm of chloroplast 34) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618];Flagellar inner arm dynein 1 heavy chain alpha (dynein heavy chain 1, dynein fa; one heavy chain of a two-headed type dynein; other chain is DHC1, dynein fb) (subspecies f)(DHC1-alpha)(Pf9); DHC1 in PMID: 9247642; identified in Chlamydomonas flagella in; null-allele mutant was isolated [PMID 29743196]; Matsuo et al.'s (2008) roc34 (rhythm of chloroplast 34) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618]"
+Cre12.g493600			"Secretory pathway"				"g12078.t1;g12078.t1"		
+Cre12.g536683									
+Cre12.g516250			Mitochondrion				"Cre12.g516250.t1.1;g12734.t1"		
+Cre12.g540076	GMM:27.3.52	"RNA.regulation of transcription.global transcription factor group"					"CDC68;Cre27.g774150.t1.1;g13783.t1;CDC68;g13783.t1;Cre27.g774150.t1.1;g13783.t1;Cre27.g774150.t1.1;CDC68"		"ts-lethal mutants arrest at G1 (PMID 29743196);ts-lethal mutants arrest at G1 (PMID 29743196);ts-lethal mutants arrest at G1 (PMID 29743196)"
+Cre12.g498650	GMM:29.4	"protein.postranslational modification"				ALK3	"ALK3;g12612.t1;Cre12.g498650.t1.1;g12612.t1;Cre12.g498650.t1.1;ALK3"	"ALK3;ALK3"	
+Cre12.g522400	GMM:27.3.25	"RNA.regulation of transcription.MYB domain transcription factor family"					"g12865.t1;g12865.t1;g12865.t1"		
+Cre12.g547100			Chloroplast	"GO:0008168;GO:0008152"	"methyltransferase activity;metabolic process"	CGL2	"SMM43;g13611.t1;SMM43;g13611.t1"	"CGL2;CGL2"	"Conserved in the Green Lineage;Conserved in the Green Lineage"
+Cre12.g491550			Mitochondrion				"g12154.t1;Cre12.g491550.t1.1;g12154.t1;Cre12.g491550.t1.1"		
+Cre12.g549002							g13804.t1		
+Cre12.g549550	"GMM:31.6.1.5.2;GMM:31.1.1.2;GMM:31.1"	"cell.motility.eukaryotes.radial spoke.stalk;cell.organisation.cytoskeleton.mikrotubuli;cell.organisation"		"GO:0007017;GO:0005874;GO:0003924"	"microtubule-based process;microtubule;GTPase activity"	TUB2	"g13557.t1;RSP19;Cre12.g549550.t1.1"	TUB2	"GI:167458; major constituent of microtubules [PMID: 3460413, PMID: 6098820]; it binds one mole of GTP that is hydrolyzed and alters dynamic instability of the microtubule cytoskeleton; ts-lethal mutant block at S/M (PMID 29743196)"
+Cre12.g544000	"GMM:31.6.1.5.2;GMM:3.5"	"cell.motility.eukaryotes.radial spoke.stalk;minor CHO metabolism.others"				RSP5	"Cre12.g544000.t1.1;g13689.t1;g13689.t1;Cre12.g544000.t1.1"	"RSP5;RSP5"	"A subunit in the radial spoke stalk, putative aldo/keto reductase [PMID: 16507594; GI:83284709;A subunit in the radial spoke stalk, putative aldo/keto reductase [PMID: 16507594; GI:83284709"
+Cre12.g492900							"g12092.t1;g12092.t1"		
+Cre12.g528700	"GMM:13.1.6.5.5;GMM:13.1.6.5"	"amino acid metabolism.synthesis.aromatic aa.tryptophan.tryptophan synthase;amino acid metabolism.synthesis.aromatic aa.tryptophan"	Chloroplast	"GO:0006568;GO:0004834"	"tryptophan metabolic process;tryptophan synthase activity"	TRPA1	"WSN1;Cre12.g528700.t1.1;TSA;WSA1;g13019.t1;TSA1;TSA1;g13019.t1;WSA1;Cre12.g528700.t1.1;TSA;WSN1"	"TRPA1;TRPA1"	
+Cre12.g507006			Mitochondrion						
+Cre12.g487200	GMM:33.99	development.unspecified		GO:0005515	"protein binding"		"g12245.t1;g12245.t1"		
+Cre12.g542700						FAP373	"g13715.t1;Cre12.g542700.t1.1;Cre12.g542700.t1.1;g13715.t1"	"FAP373;FAP373"	"Found in Cr and Volvox but not strongly conserved elsewhere;Found in Cr and Volvox but not strongly conserved elsewhere"
+Cre12.g526700			Chloroplast	"GO:0016021;GO:0006508;GO:0004252"	"integral component of membrane;proteolysis;serine-type endopeptidase activity"	RBL9	"RBL9;g12977.t1"		"similar to rhomboid intramembrane serine proteases, involved in signaling, mitochondrial morphogenesis and apoptosis (PMID: 17114579); possibly organelle-targeted"
+Cre12.g534000							g13134.t1		
+Cre12.g540650	GMM:34.16	"transport.ABC transporters and multidrug resistance systems"	Chloroplast	"GO:0016887;GO:0016020;GO:0005524"	"ATPase activity;membrane;ATP binding"		"g13763.t1;Cre12.g540650.t1.1;g13763.t1;Cre12.g540650.t1.1;g13763.t1;Cre12.g540650.t1.1;Cre12.g540650.t1.1;g13763.t1;Cre12.g540650.t1.1;g13763.t1"		
+Cre12.g528100				"GO:0008270;GO:0006508;GO:0004181"	"zinc ion binding;proteolysis;metallocarboxypeptidase activity"		"CPZ;g13006.t1;g13006.t1;CPZ;g13006.t1;CPZ;CPZ;g13006.t1"		
+Cre12.g557650							"g13377.t1;g13377.t1;g13377.t1;g13377.t1"		
+Cre12.g556250	GMM:31.2	cell.division		GO:0005525	"GTP binding"		"SEP1;Cre12.g556250.t1.1;g13407.t1;Cre12.g556250.t1.1;g13407.t1;SEP1"		"Homolog of septin molecules used in cytokinesis;Homolog of septin molecules used in cytokinesis"
+Cre12.g499250	GMM:30.1.1	"signalling.in sugar and nutrient physiology.misc"		"GO:0007165;GO:0004114"	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE10	"g12596.t1;PDE10;PDE10;g12596.t1;PDE10;g12596.t1;g12596.t1;PDE10;PDE10;g12596.t1;g12596.t1;PDE10"		"Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus;Similar to calcium/calmodulin-dependent 3',5'-cyclic nucleotide phosphodiesterase IB from Rattus norvegicus"
+Cre12.g502150							"Cre12.g502150.t1.1;g12530.t1"		
+Cre12.g505050			Chloroplast	GO:0005515	"protein binding"		"g12467.t1;Cre12.g505050.t1.1"		
+Cre12.g550900			Chloroplast	"GO:0016020;GO:0008158"	"membrane;hedgehog receptor activity"	SSD3	"Cre12.g550900.t1.1;SSD3;g13527.t1"	SSD3	"sterol sensing domain protein similar to Arabidopsis protein and similar to Niemann-Pick disease protein"
+Cre12.g548400	GMM:1.1.1.1	"PS.lightreaction.photosystem II.LHC-II"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCBM2	"Cre12.g548400.t1.1;g13582.t1"	LHCBM2	"Encoding a light-harvesting antenna protein for PS2. This gene was reported under the name of LhcII-3 in PMID: 11522911"
+Cre12.g546452			Chloroplast				"g13798.t1;GT90-45;GT90F45;Cre27.g774750.t1.1;Cre27.g774750.t1.1;GT90F45;GT90-45;g13798.t1;GT90F45;Cre27.g774750.t1.1;g13798.t1;GT90-45"		
+Cre12.g501200	GMM:29.5.11.4.3.1	protein.degradation.ubiquitin.E3.SCF.SKP		GO:0006511	"ubiquitin-dependent protein catabolic process"	SKP1	"SKP1;ROC80;Cre12.g501200.t1.1;g12552.t1"	SKP1	"Similar to Skp1; Matsuo et al.'s (2008) roc80 (rhythm of chloroplast 80) circadian bioluminescence rhythm mutant locus maps here [PMID: 18334618]"
+Cre12.g508450			"Secretory pathway"				g12386.t1		
+Cre12.g488850	GMM:31.4	"cell.vesicle transport"		"GO:0030131;GO:0030117;GO:0016192;GO:0006886"	"clathrin adaptor complex;membrane coat;vesicle-mediated transport;intracellular protein transport"	AP2A1	"AP2A1;g12209.t2"	AP2A1	"Hypothetical Conserved Protein. Alpha-Adaptin. Clathrin Adaptor Complex Large Subunit, putative member of AP-2 complex"
+Cre12.g499451				GO:0003676	"nucleic acid binding"		"g12590.t1;Cre12.g499451.t1.1"		
+Cre12.g556700			Mitochondrion				"g13398.t1;Cre12.g556700.t1.1"		
+Cre12.g551000							"Cre12.g551000.t1.1;g13525.t1;g13525.t1;Cre12.g551000.t1.1"		
+Cre12.g514000			"Secretory pathway"	"GO:0016021;GO:0005783"	"integral component of membrane;endoplasmic reticulum"	LAG1	"g12688.t1;Cre12.g514000.t1.1;LAG1"	LAG1	"related to longevity assurance protein; TRAM, LAG1 and CLN8 domain homology; possibly involved in ceramide synthesis"
+Cre12.g488250	GMM:17.2.2	"hormone metabolism.auxin.signal transduction"					"g12220.t1;Cre12.g488250.t1.1;g12220.t1;Cre12.g488250.t1.1"		
+Cre12.g525150			Mitochondrion				"Cre12.g525150.t1.1;g12926.t1"		
+Cre12.g510150	GMM:27.3.12	"RNA.regulation of transcription.C3H zinc finger family"		GO:0005515	"protein binding"		"g12347.t1;Cre12.g510150.t1.1"		
+Cre12.g525776			Mitochondrion	"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g545752			"Secretory pathway"				g13641.t1		
+Cre12.g492200	"GMM:27.3.63;GMM:27.3.22;GMM:20.1"	"RNA.regulation of transcription.PHD finger transcription factor;RNA.regulation of transcription.homeobox transcription factor family (HB);stress.biotic"		GO:0005515	"protein binding"		"Cre12.g492200.t1.1;g12107.t1;Cre12.g492200.t1.1;g12107.t1;Cre12.g492200.t1.1;g12107.t1;g12107.t1;Cre12.g492200.t1.1"		
+Cre12.g492150			"Secretory pathway"				"g12108.t1;Cre12.g492150.t1.1"		
+Cre12.g548100	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	"ubiquitin-protein transferase activity"	UBC7	"UBC7;g13589.t1;UBC7;g13589.t1"		"putative ubiquitin-protein ligase (E3, HECT domain), weakly Similar to E3 ubiquitin ligase Smurf2;putative ubiquitin-protein ligase (E3, HECT domain), weakly Similar to E3 ubiquitin ligase Smurf2"
+Cre12.g526068									
+Cre12.g495701			Mitochondrion	"GO:0016020;GO:0005044"	"membrane;scavenger receptor activity"		g12135.t1		
+Cre12.g487101			Mitochondrion			CSV9	"CSV9;g12248.t1"		"Belongs to a family of 14 genes, sometimes found in pairs or clusters, with homologs only in Gonium; function unknown; null-allele passenger mutation was isolated (PMID 29743196)"
+Cre12.g493900							g12072.t1		
+Cre12.g547050			"Secretory pathway"				"Cre12.g547050.t1.1;g13612.t1"		
+Cre12.g526230				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g493300	GMM:34.99	transport.misc					"g12084.t1;Cre12.g493300.t1.1"		
+Cre12.g530750			"Secretory pathway"				"g13063.t1;g13063.t1"		
+Cre12.g489800			Mitochondrion	GO:0000062	"fatty-acyl-CoA binding"		"g12189.t1;Cre12.g489800.t1.1"		
+Cre12.g527200			Mitochondrion				"g12988.t1;Cre12.g527200.t1.1;Cre12.g527200.t1.1;g12988.t1"		
+Cre12.g511150	GMM:11.5.2	"lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)"		"GO:0055114;GO:0009331;GO:0008677;GO:0006072;GO:0005975;GO:0004367"	"oxidation-reduction process;glycerol-3-phosphate dehydrogenase complex;2-dehydropantoate 2-reductase activity;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity"	GPD1	"Cre12.g511150.t1.1;g12325.t1"	GPD1	"Interconverts dihydroxyacetone phosphate and glycerol-3-phosphate. Possibly involved in G-3-P production for glycerolipid biosynthesis, by homology to an uncharacterized Arabidopsis protein"
+Cre12.g548950	GMM:1.1.1.1	"PS.lightreaction.photosystem II.LHC-II"	Chloroplast	"GO:0016020;GO:0009765"	"membrane;photosynthesis, light harvesting"	LHCBM7	"Cre12.g548950.t1.1;g13570.t1"	LHCBM7	
+Cre12.g510000			Chloroplast				"g12351.t1;Cre12.g510000.t1.1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre12.g510300	"GMM:29.5.11.3;GMM:29.5.11"	"protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin"	Chloroplast	"GO:0034450;GO:0016567;GO:0006511;GO:0000151"	"ubiquitin-ubiquitin ligase activity;protein ubiquitination;ubiquitin-dependent protein catabolic process;ubiquitin ligase complex"	UBC21	"UBC21;g12343.t1;UBC21;g12343.t1;g12343.t1;UBC21;g12343.t1;UBC21;UBC21;g12343.t1;UBC21;g12343.t1;g12343.t1;UBC21;UBC21;g12343.t1"	"UBC21;UBC21;UBC21;UBC21;UBC21;UBC21;UBC21;UBC21"	
+Cre12.g548900				GO:0005515	"protein binding"	ROC23	"ROC112;ROC23;g13571.t1"		"Protein of unknown function with PH-domains; Matsuo et al.'s (2008) roc23 (rhythm of chloroplast 23) and roc112 circadian bioluminescence rhythm mutant loci map here [PMID: 18334618]"
+Cre12.g505500	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR17	"g12457.t1;HTR17;Cre12.g505500.t1.1"	HTR17	"replication linked H3; histone gene cluster XVII (type 43AB)"
+Cre12.g557503				"GO:0007165;GO:0005515"	"signal transduction;protein binding"		"Cre27.g775900.t1.1;g13824.t2;g13824.t2;Cre27.g775900.t1.1"		
+Cre12.g555700	GMM:29.9	protein.co-chaperones	Chloroplast			DNJ15	"g13418.t1;DNJ15;DNJ15;g13418.t1"		"DnaJ-like protein; perhaps targeted to chloroplast, since it contains N-terminal extension which is predicted by ChloroP to be chloroplast transit peptide; no similarity to other proteins in protein database; contains N-terminal J-domain (pfam226);DnaJ-like protein; perhaps targeted to chloroplast, since it contains N-terminal extension which is predicted by ChloroP to be chloroplast transit peptide; no similarity to other proteins in protein database; contains N-terminal J-domain (pfam226)"
+Cre12.g534961			"Secretory pathway"						
+Cre12.g518002	GMM:29.3.3	protein.targeting.chloroplast							
+Cre12.g528000			Mitochondrion			FAP303	"g13004.t1;CKINgamma;CKING1;Cre12.g528000.t1.1;Cre12.g528000.t1.1;CKING1;CKINgamma;g13004.t1"	"FAP303;FAP303"	"Flagellar Associated Protein 303; Regulatory gamma subunit;Flagellar Associated Protein 303; Regulatory gamma subunit"
+Cre12.g494350	GMM:28.99	DNA.unspecified	"Secretory pathway"	GO:0016021	"integral component of membrane"		"Cre12.g494350.t1.1;g12061.t1;g12061.t1;Cre12.g494350.t1.1"	"EMP70;EMP70"	"Nonaspanin;Nonaspanin"
+Cre12.g523816									
+Cre12.g528900	GMM:29.2.2	"protein.synthesis.ribosome biogenesis"				RBG1	"RBG1;g13023.t1;RBG1;g13023.t1"	"RBG1;RBG1"	"NIP7 (nuclear import 7) homolog;NIP7 (nuclear import 7) homolog"
+Cre12.g559554									
+Cre12.g541000			"Secretory pathway"				"g13756.t1;Cre12.g541000.t1.1"		
+Cre12.g483926									
+Cre12.g524400	GMM:31.1	cell.organisation	Chloroplast	"GO:0051014;GO:0030036;GO:0007010;GO:0003779"	"actin filament severing;actin cytoskeleton organization;cytoskeleton organization;actin binding"		"Cre12.g524400.t1.1;g12911.t1;g12911.t1;Cre12.g524400.t1.1;Cre12.g524400.t1.1;g12911.t1"		
+Cre12.g536200							"g13186.t1;g13186.t1;g13186.t1;g13186.t1;g13186.t1;g13186.t1"		
+Cre12.g542100	"GMM:29.5.30;GMM:29.5"	"protein.degradation.prolyl protease;protein.degradation"	Chloroplast	"GO:0070008;GO:0008236;GO:0006508;GO:0004252"	"serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity"		"g13730.t1;Cre12.g542100.t1.1;Cre12.g542100.t1.1;g13730.t1"		
+Cre12.g535950	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion	"GO:0055114;GO:0051536;GO:0016651;GO:0016491"	"oxidation-reduction process;iron-sulfur cluster binding;oxidoreductase activity, acting on NAD(P)H;oxidoreductase activity"	NUOS1	"Cre12.g535950.t1.1;g13181.t1"	NUOS1	"NADH:ubiquinone oxidoreductase (Complex I 78 kDa subunit), mitochondrial; Ortholog of NDUFS1 in Homo sapiens; gi 34485506 gb AAQ73136.1;"
+Cre12.g553050							"g13475.t1;Cre12.g553050.t1.1"	NUP53	"53 kDa Nuclear Pore Complex Protein"
+Cre12.g558950							"g13349.t1;g13349.t1;g13349.t1;g13349.t1"		
+Cre12.g518851							"g12792.t1;Cre12.g518850.t1.3"		
+Cre12.g538600			"Secretory pathway"	GO:0005515	"protein binding"		"Cre12.g538600.t1.1;g13243.t1;g13243.t1;Cre12.g538600.t1.1"		
+Cre12.g512000			"Secretory pathway"	GO:0016020	membrane		"g12307.t1;g12307.t1"		
+Cre12.g492650			"Secretory pathway"			FAS2	"g12097.t1;FAS2;Cre12.g492650.t1.1;Cre12.g492650.t1.1;FAS2;g12097.t1;g12097.t1;Cre12.g492650.t1.1;FAS2"	"FAS2;FAS2;FAS2"	"similar to periostin/fasciclin/TGFbeta-induced protein; contains 4 FAS1 (BIgH3) domains, involved in cell recognition; probably extracellular, GPI-anchored (by homology);similar to periostin/fasciclin/TGFbeta-induced protein; contains 4 FAS1 (BIgH3) domains, involved in cell recognition; probably extracellular, GPI-anchored (by homology);similar to periostin/fasciclin/TGFbeta-induced protein; contains 4 FAS1 (BIgH3) domains, involved in cell recognition; probably extracellular, GPI-anchored (by homology)"
+Cre12.g497650						THY28	"Cre12.g497650.t1.1;g12632.t1;THY28"		"related to thymocyte nuclear protein, DUF589"
+Cre12.g485458									
+Cre12.g552650	GMM:27.1	RNA.processing				PAP8	"PAP8;Cre12.g552650.t1.1;g13485.t1"	PAP8	"Non-canonical poly(A) polymerase (ncPAP) with PAP/25A core domain; conserved in green algae; predicted organelle-targeted"
+Cre12.g547200	"GMM:30.6;GMM:29.4"	"signalling.MAP kinases;protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	PTK6			
+Cre12.g488350	GMM:17.1.1.1.10	"hormone metabolism.abscisic acid.synthesis-degradation.synthesis.9-cis-epoxycarotenoid dioxygenase"	Chloroplast				"g12218.t1;g12218.t1;g12218.t1"		
+Cre12.g546350	"GMM:34.99;GMM:34.10;GMM:34.1"	"transport.misc;transport.nucleotides;transport.p- and v-ATPases"		"GO:0016021;GO:0015693;GO:0015095"	"integral component of membrane;magnesium ion transport;magnesium ion transmembrane transporter activity"		"GEX157;Cre12.g546350.t1.1;g13628.t1;g13628.t1;Cre12.g546350.t1.1;GEX157"		"ts-lethal mutant has a fragile cell membrane when poked with a needle at restrictive temperature (PMID 29743196);ts-lethal mutant has a fragile cell membrane when poked with a needle at restrictive temperature (PMID 29743196)"
+Cre12.g523000				GO:0046872	"metal ion binding"		g12879.t1		
+Cre12.g556803							"g13396.t2;Cre12.g556800.t1.3"		
+Cre12.g512100	GMM:28.1	"DNA.synthesis/chromatin structure"	Mitochondrion	"GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723"	"DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance"	PIF1	"PIF1;g12305.t1"	PIF1	"similar to animal PIF1/RRM3 DNA helicase"
+Cre12.g536800			Chloroplast			CGL52	"Cre12.g536800.t1.1;g13201.t1"	CGL52	
+Cre12.g512700			Chloroplast	GO:0006367	"transcription initiation from RNA polymerase II promoter"		"Cre12.g512700.t1.1;g12292.t1"		"null-allele mutant was isolated (PMID 29743196)"
+Cre12.g525827									
+Cre12.g504800	"GMM:28.1.3.2.3;GMM:28.1.3"	"DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone"	Chloroplast	"GO:0003677;GO:0000786"	"DNA binding;nucleosome"	HTR16	"HTR16;g12472.t1;Cre12.g504800.t1.1"	HTR16	"replication linked H3; histone gene cluster XVI (type 43AB)"
+Cre12.g537611			"Secretory pathway"				"g13220.t1;Cre65.g793350.t1.1"		
+Cre12.g547500			Chloroplast				"g13602.t1;Cre12.g547500.t1.1"		
+Cre12.g551850	"GMM:26.1;GMM:19.99;GMM:16.2"	"misc.misc2;tetrapyrrole synthesis.unspecified;secondary metabolism.phenylpropanoids"		"GO:0055114;GO:0016491;GO:0010181"	"oxidation-reduction process;oxidoreductase activity;FMN binding"	NFR1	"NFR1;Cre12.g551850.t1.1;g13504.t1;g13504.t1;NFR1;Cre12.g551850.t1.1"	"NFR1;NFR1"	"NADPH-dependent flavin reductase. The human ortholog NR1 (genbank ; AF199509) was shown to contain FMN FAD and NADPH cofactors [PMID: 10625700]. The C. elegans ortholog Fre1 (genbank ; AY079165) was proposed to participate in responses to DNA damage, heat shock and other stresses [PMID: 12871939];NADPH-dependent flavin reductase. The human ortholog NR1 (genbank ; AF199509) was shown to contain FMN FAD and NADPH cofactors [PMID: 10625700]. The C. elegans ortholog Fre1 (genbank ; AY079165) was proposed to participate in responses to DNA damage, heat shock and other stresses [PMID: 12871939]"
+Cre12.g535750	GMM:22.1.5	"polyamine metabolism.synthesis.N-carbamoylputrescine amidohydrolase"		"GO:0016810;GO:0006807"	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	CPA1	"CPA1;g13177.t1"	CPA1	"highly similar to plant N-carbamoylputrescine amidase (amidohydrolase), last step in the agmatinase pathway of polyamine (putrescine) biosynthesis"
+Cre12.g534980									
+Cre12.g530300	"GMM:29.6.3.1;GMM:29.6"	"protein.folding.immunophilins (IMM).FKBPs;protein.folding"	Chloroplast	GO:0006457	"protein folding"	FKB16-3	"FKB16-3;g13054.t1;Cre12.g530300.t1.1;FKB6"	FKB16C	"FKBP-type peptidyl-prolyl cis-trans isomerase (EC 5.2.1.8) (PPIase) (Rotamase) (Immunophilin); probably directed to thylakoid lumen (homology to AtFKBP16-3 and bipartite cTP with RR motif)"
+Cre12.g530850			"Secretory pathway;Chloroplast"				"g13065.t2;g13065.t2;g13065.t2;g13065.t2;g13065.t2;g13065.t2;g13065.t2;g13065.t2;g13065.t2;g13065.t2;g13065.t2"		
+Cre12.g508302									
+Cre12.g499152									
+Cre12.g494100	GMM:27.1.1	RNA.processing.splicing					"SPL19;g12067.t1;SPL19;g12067.t1;g12067.t1;SPL19;SPL19;g12067.t1;g12067.t1;SPL19;SPL19;g12067.t1"		"Splicing factor 3B subunit 1-related protein;Splicing factor 3B subunit 1-related protein;Splicing factor 3B subunit 1-related protein;Splicing factor 3B subunit 1-related protein;Splicing factor 3B subunit 1-related protein;Splicing factor 3B subunit 1-related protein"
+Cre12.g523750							g12896.t1		
+Cre12.g488150							"g12223.t1;g12223.t1;g12223.t1"		
+Cre12.g561100				GO:0008270	"zinc ion binding"		"g13295.t1;g13295.t1;g13295.t1;g13295.t1;g13295.t1;g13295.t1"		
+Cre12.g544550	GMM:29.4	"protein.postranslational modification"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g13671.t1;g13671.t1;g13671.t1"		
+Cre12.g500700			Mitochondrion			LCL2	"LCL2;g12562.t1"	LCL2	
+Cre12.g559900			Chloroplast				g13321.t1		
+Cre12.g486350	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g12267.t1;STPK3;STK3"		"Serine/Threonine Protein Kinase Homolog 3, putative"
+Cre12.g508050				GO:0003677	"DNA binding"		"Cre12.g508050.t1.1;g12395.t1;Cre12.g508050.t1.1;g12395.t1;g12395.t1;Cre12.g508050.t1.1;Cre12.g508050.t1.1;g12395.t1;g12395.t1;Cre12.g508050.t1.1;Cre12.g508050.t1.1;g12395.t1;Cre12.g508050.t1.1;g12395.t1;g12395.t1;Cre12.g508050.t1.1;g12395.t1;Cre12.g508050.t1.1"		
+Cre12.g522150	GMM:31.6.1.6.3	"cell.motility.eukaryotes.central pair.C1"				FAP194	g12860.t1	FAP194	"Found in the flagellar proteome; Armadillo-repeat protein, similar to PF16;"
+Cre12.g509300			Chloroplast				"g12366.t1;Cre12.g509300.t1.1;g12366.t1;Cre12.g509300.t1.1"		
+Cre12.g495954			Mitochondrion						
+Cre12.g542601						CSB48			
+Cre12.g496800							"Cre12.g496800.t1.1;g12649.t1"	NDUFAF3	"Assembly facator for NADH:ubiquinone oxidoreductase (Complex I), mitochondrial; Ortholog to NDUFAF3 in Homo sapiens;"
+Cre12.g531000	GMM:34.5	transport.ammonium	"Secretory pathway"	"GO:0072488;GO:0016020;GO:0015696;GO:0008519"	"ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity"	AMT8	"g13070.t2;AMT8;AMT8;g13070.t2;g13070.t2;AMT8"	"AMT1H;AMT1H;AMT1H"	"belongs to AMT1 family (Amt1;8); corresponds to AY548754; null-allele mutant was isolated;belongs to AMT1 family (Amt1;8); corresponds to AY548754; null-allele mutant was isolated;belongs to AMT1 family (Amt1;8); corresponds to AY548754; null-allele mutant was isolated"
+Cre12.g529800							g13044.t2		
+Cre12.g553450	GMM:34.15	transport.potassium		"GO:0055085;GO:0016020;GO:0006811;GO:0005216"	"transmembrane transport;membrane;ion transport;ion channel activity"	CNG1	"CNG1;g13467.t1;g13467.t1;CNG1"	"CNG1;CNG1"	
+Cre12.g498500	GMM:29.5.5	"protein.degradation.serine protease"	Mitochondrion	"GO:0006508;GO:0005515;GO:0004252"	"proteolysis;protein binding;serine-type endopeptidase activity"	DEG1C	"DEG1C;DEG11;g12615.t1;Cre12.g498500.t1.1;Cre12.g498500.t1.1;g12615.t1;DEG1C;DEG11;DEG11;DEG1C;g12615.t1;Cre12.g498500.t1.1"	"DEG1C;DEG1C;DEG1C"	"DegP-type protease, in the stroma and at the stromal side of the thylakoid lumen; one PDZ domain; similar to At DegP1; plays a role as effector in the chloroplast unfolded protein response;DegP-type protease, in the stroma and at the stromal side of the thylakoid lumen; one PDZ domain; similar to At DegP1; plays a role as effector in the chloroplast unfolded protein response;DegP-type protease, in the stroma and at the stromal side of the thylakoid lumen; one PDZ domain; similar to At DegP1; plays a role as effector in the chloroplast unfolded protein response"
+Cre12.g537250			"Secretory pathway"				"Cre12.g537250.t1.1;g13211.t1;g13211.t1;Cre12.g537250.t1.1;g13211.t1;Cre12.g537250.t1.1"		
+Cre12.g495800			Chloroplast				g12137.t1		
+Cre12.g556150	GMM:29.5	protein.degradation		GO:0016020	membrane	CGL100	"g13409.t1;Cre12.g556150.t1.1"	CGL100	"Conserved in the Green Lineage"
+Cre12.g554800	GMM:1.3.12	"PS.calvin cycle.PRK"	Chloroplast	"GO:0016301;GO:0008152;GO:0005524"	"kinase activity;metabolic process;ATP binding"	PRK1	"Cre12.g554800.t1.1;g13438.t1;Cre12.g554800.t1.1;g13438.t1"	"PRK1;PRK1"	"Calvin-Benson-Bassham cycle enzyme;Calvin-Benson-Bassham cycle enzyme"
+Cre12.g503700			Mitochondrion				"Cre12.g503700.t1.1;g12495.t1"		
+Cre12.g552006							"g13501.t2;g13501.t2"		
+Cre12.g502800	"GMM:33.99;GMM:31.3"	"development.unspecified;cell.cycle"		GO:0005515	"protein binding"		"Cre12.g502800.t1.1;g12514.t1;Cre12.g502800.t1.1;g12514.t1"		
+Cre12.g548050	GMM:23.1.2	"nucleotide metabolism.synthesis.purine"		"GO:0035556;GO:0016849;GO:0009190"	"intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process"	CYG32	"CYG32;g13590.t1"		"similar to guanylyl cyclase receptor [Bactrocera dorsalis]"
+Cre12.g541700						OPR54	"g13740.t1;Cre12.g541700.t1.1;g13740.t1;Cre12.g541700.t1.1"	"OPR54;OPR54"	"OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein;OctotricoPeptide (octotricoPeptide) Repeat (OPR) Protein"
+Cre12.g512500			Chloroplast	"GO:0048478;GO:0007049;GO:0006974;GO:0005634"	"replication fork protection;cell cycle;cellular response to DNA damage stimulus;nucleus"		"g12296.t1;g12296.t1"		
+Cre12.g546770			Mitochondrion	GO:0016021	"integral component of membrane"		"g13619.t1;Cre12.g546770.t1.1;g13619.t1;Cre12.g546770.t1.1;Cre12.g546770.t1.1;g13619.t1"		
+Cre12.g523320			Mitochondrion						
+Cre12.g505250				GO:0005509	"calcium ion binding"	FAP288	"g12462.t1;Cre12.g505250.t1.1"	FAP288	"EF hand-containing Flagellar Associated Protein, found in the flagellar proteome; transcript upregulated during flagellar regeneration [PMID: 157384]"
+Cre12.g534576									
+Cre12.g539050			Chloroplast				"g13252.t1;g13252.t1;g13252.t1"		
+Cre12.g550200							"SMM44;Cre12.g550200.t1.1;g13544.t1"		"null-allele passenger mutation was isolated (PMID 29743196)"
+Cre12.g486600	"GMM:34.8;GMM:2.2.2.6"	"transport.metabolite transporters at the envelope membrane;major CHO metabolism.degradation.starch.transporter"	Chloroplast			MEX1	"Cre12.g486600.t1.1;g12260.t1;Cre12.g486600.t1.1;g12260.t1"	"MEX1;MEX1"	"Conserved expressed protein related to maltose exporter; maltose excess protein MEX;Conserved expressed protein related to maltose exporter; maltose excess protein MEX"
+Cre12.g559100							"Cre12.g559100.t1.1;g13342.t1"		
+Cre12.g496300			Chloroplast				"g12659.t1;g12659.t1"		
+Cre12.g558100	"GMM:31.3;GMM:26.6"	"cell.cycle;misc.O-methyl transferases"		"GO:0008168;GO:0006479"	"methyltransferase activity;protein methylation"	PRMT2	"Cre12.g558100.t1.1;PRM2;PRMT2;g13368.t1"	PRMT10	"Protein arginine N-methyltransferase, ChromDB PRMT3402; Incorrectly called PRMT2, but is orthologous to PRMT10 (plant type I PRMTs) in rice and Arabidopsis;"
+Cre12.g502300							"g12525.t1;Cre12.g502300.t1.1"		
+Cre12.g521200	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0006260;GO:0005663;GO:0005524;GO:0003689"	"DNA replication;DNA replication factor C complex;ATP binding;DNA clamp loader activity"	RFC1	"g12840.t1;Cre12.g521200.t1.1;RFC1;g12840.t1;Cre12.g521200.t1.1;RFC1"	"RFC1;RFC1"	"Homologous to eukaryotic RFC1 (DNA replication factor C complex subunit 1); accessory protein of DNA polymerase.;Homologous to eukaryotic RFC1 (DNA replication factor C complex subunit 1); accessory protein of DNA polymerase."
+Cre12.g552300			"Secretory pathway"			CTL3	"g13492.t1;CTL3;Cre12.g552300.t1.1;CTL3;g13492.t1;Cre12.g552300.t1.1"		"Contains a pherophorin domain and a C-terminal C-type lectin domain responsible for carbohydrate binding activity;Contains a pherophorin domain and a C-terminal C-type lectin domain responsible for carbohydrate binding activity"
+Cre12.g493000	GMM:34.15	transport.potassium	"Secretory pathway"	"GO:0055085;GO:0016021;GO:0015299;GO:0006812"	"transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport"		"g12090.t1;Cre12.g493000.t1.1;g12090.t1;Cre12.g493000.t1.1;Cre12.g493000.t1.1;g12090.t1;g12090.t1;Cre12.g493000.t1.1;Cre12.g493000.t1.1;g12090.t1;Cre12.g493000.t1.1;g12090.t1;g12090.t1;Cre12.g493000.t1.1"		
+Cre12.g509001	"GMM:30.6;GMM:3.6"	"signalling.MAP kinases;minor CHO metabolism.callose"		"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"	RPK2	"g12373.t1;RPK2"	RPK2	"has putative dual MAPKK activity"
+Cre12.g526071				"GO:0005739;GO:0004408"	"mitochondrion;holocytochrome-c synthase activity"				
+Cre12.g490550							g12174.t1		
+Cre12.g514450	GMM:27.1.1	RNA.processing.splicing		GO:0005634	nucleus		"SPL20;Cre12.g514450.t1.1;g12696.t1"		"Putative nuclear pre-mRNA splicing factor, proline-rich. Related to component of splicing factor 3b"
+Cre12.g496950	GMM:29.5.7	protein.degradation.metalloprotease		"GO:0016787;GO:0008152;GO:0005515"	"hydrolase activity;metabolic process;protein binding"		"g12646.t1;g12646.t1;g12646.t1"		
+Cre12.g516600	GMM:29.4	"protein.postranslational modification"	Mitochondrion	"GO:0006468;GO:0005524;GO:0004672"	"protein phosphorylation;ATP binding;protein kinase activity"		"g12742.t1;STK25;STK25;g12742.t1;STK25;g12742.t1"		"Serine/Threonine Protein Kinase Homolog 6, putative;Serine/Threonine Protein Kinase Homolog 6, putative;Serine/Threonine Protein Kinase Homolog 6, putative"
+Cre12.g538250			Chloroplast				g13234.t1		
+Cre12.g499352									
+Cre12.g536900	"GMM:31.1;GMM:27.2"	"cell.organisation;RNA.transcription"					g13203.t1		"Contains PF02492, CobW nucleotide-binding domain;"
+Cre12.g513700			Chloroplast			HEL52	"g12681.t1;HEL52;HEL52;g12681.t1"		
+Cre12.g498250	GMM:29.2.1.2.1.17	"protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S17"		"GO:0006412;GO:0005840;GO:0005622;GO:0003735"	"translation;ribosome;intracellular;structural constituent of ribosome"	RPS17	"g12620.t1;Cre12.g498250.t1.1;g12620.t1;Cre12.g498250.t1.1"	"RPS17;RPS17"	"Cytosolic 40S small ribosomal subunit protein S17;Cytosolic 40S small ribosomal subunit protein S17"
+Cre12.g496750	"GMM:9.1.2;GMM:9.1.1"	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion			NUO8	"Cre12.g496750.t1.1;g12650.t1"	NUO8	"NADH:ubiquinone oxidoreductase (Complex I) subunit 8; homolog to bovine TYKY. gi 34328786 gb AAQ63697.1; Ortholog of NDUFS8 in Homo sapiens"
+Cre12.g501350			"Secretory pathway"				"Cre12.g501350.t1.1;g12549.t1"		
+Cre12.g546400	GMM:31.6.1.4.2	"cell.motility.eukaryotes.axonemal dyneins.inner arm"				DLR2	"DLC7b;DLR2;Cre12.g546400.t1.1;DCL7B;g13627.t1"	LC7B	"Found in Outer Arm Dynein, Cytoplasmic Dynein 1b, and Innner Arm Dynein I1/f; member LC7/Roadblock family; members of this family of proteins are associated with both flagellar outer arm dynein and Drosophila and rat brain cytoplasmic dynein. LC7b interacts with IC138, DC2, LC3"
+Cre12.g533450							"g13123.t1;Cre12.g533450.t1.1;g13123.t1;Cre12.g533450.t1.1;g13123.t1;Cre12.g533450.t1.1"		
+Cre12.g524050							"g12904.t1;g12904.t1"		
+Cre12.g538150	GMM:34.18	"transport.unspecified anions"		"GO:0034715;GO:0034709;GO:0006884;GO:0006821;GO:0005886;GO:0005829;GO:0000387"	"pICln-Sm protein complex;methylosome;cell volume homeostasis;chloride transport;plasma membrane;cytosol;spliceosomal snRNP assembly"		"Cre12.g538150.t1.1;g13232.t1"		
+Cre12.g513900			"Secretory pathway"				"g12686.t1;g12686.t1"		
+Cre12.g507100									
+Cre12.g533050	"GMM:30.5;GMM:3.5;GMM:29.2.2.1"	"signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.export from nucleus"		GO:0005525	"GTP binding"		"g13114.t1;Cre12.g533050.t1.1"		
+Cre12.g547850							"g13595.t1;Cre12.g547850.t1.1"		
+Cre12.g509900							"g12353.t1;g12353.t1;g12353.t1;g12353.t1"		
+Cre12.g549150							"g13565.t1;g13565.t1;g13565.t1;g13565.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g533426			"Secretory pathway"						
+Cre12.g502050							"g12532.t1;Cre12.g502050.t1.1"		
+Cre12.g536716									
+Cre12.g524100	"GMM:29.2.3;GMM:27.4"	"protein.synthesis.initiation;RNA.RNA binding"		"GO:0051028;GO:0045292;GO:0016070;GO:0005846;GO:0000339"	"mRNA transport;mRNA cis splicing, via spliceosome;RNA metabolic process;nuclear cap binding complex;RNA cap binding"	CBP80	"g12905.t1;Cre12.g524100.t1.1;CBP80;ABH1"	CBP80	"best chlamy 3.0 hit for the possible human CBP80 ortholog: Large subunit of the nuclear mRNA cap-binding protein complex, interacts with Npl3p to carry nuclear poly(A)+ mRNA to cytoplasm also involved in nuclear mRNA degradation and telomere maintenance; orthologous to Sto1p [Saccharomyces cerevisiae]. Homology to nr_b_b_8515771 mRNA cap-binding protein (ABH1) Arabidopsis thaliana"
+Cre12.g529350			Chloroplast				"SMM42;g13033.t1;g13033.t1;SMM42;SMM42;g13033.t1"		"null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196);null-allele mutant was isolated (PMID 29743196)"
+Cre12.g540250						SELW1	"SELW1;g13771.t1;SELENOW1;Cre12.g540250.t1.1;Cre12.g540250.t1.1;SELENOW1;g13771.t1;SELW1"	"SELW1;SELW1"	"Selenocysteine in position 14; INFERNAL locates SECIS element at 6739286-6739358; gene is linked to SELW2;Selenocysteine in position 14; INFERNAL locates SECIS element at 6739286-6739358; gene is linked to SELW2"
+Cre12.g485100						FAP326	"g12038.t1;Cre12.g485100.t1.1"	FAP326	
+Cre12.g507400	GMM:11.1.9	"lipid metabolism.FA synthesis and FA elongation.long chain fatty acid CoA ligase"	Mitochondrion	"GO:0008152;GO:0003824"	"metabolic process;catalytic activity"	CGL105	"Cre12.g507400.t1.1;CGL105;g12414.t1"	LCS3	"Long-chain acyl-CoA synthetase; Conserved in the green lineage"
+Cre12.g521950			"Secretory pathway"				g12856.t1		
+Cre12.g536425							"g13191.t1;Cre12.g536425.t1.1;Cre12.g536425.t1.1;g13191.t1"		
+Cre12.g560050	GMM:20.2.3	stress.abiotic.drought/salt	"Secretory pathway"	GO:0016020	membrane	ERM12			
+Cre12.g525900	GMM:29.4	"protein.postranslational modification"	Mitochondrion						
+Cre12.g532750	GMM:28.1	"DNA.synthesis/chromatin structure"		"GO:0008270;GO:0006281;GO:0004518"	"zinc ion binding;DNA repair;nuclease activity"		"g13107.t1;EEP8"		
+Cre12.g483700	GMM:1.1.1.3	"PS.lightreaction.photosystem II.biogenesis"	Chloroplast	"GO:0006260;GO:0003697"	"DNA replication;single-stranded DNA binding"	RB38	"RB38;RBP40;g12006.t2;RB38;RBP40;g12006.t2;RB38;RBP40;g12006.t2"	"RB38;RB38;RB38"	"RNA-binding protein of 38 kDa, OSB/PTAC9 homolog; targeted to chloroplast; homology to DUF731 proteins of unknown function found in plants; has been reported to bind the psbA mRNA, or to the psbD mRNA in association with NAC2;RNA-binding protein of 38 kDa, OSB/PTAC9 homolog; targeted to chloroplast; homology to DUF731 proteins of unknown function found in plants; has been reported to bind the psbA mRNA, or to the psbD mRNA in association with NAC2;RNA-binding protein of 38 kDa, OSB/PTAC9 homolog; targeted to chloroplast; homology to DUF731 proteins of unknown function found in plants; has been reported to bind the psbA mRNA, or to the psbD mRNA in association with NAC2"
+Cre12.g499700	GMM:34.99	transport.misc	Mitochondrion	"GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855"	"transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport"	MFT3	"g12584.t1;MAE3;MFT3;MAE3;MFT3;g12584.t1"		"Putative MATE efflux family protein. Previously annotated as MFT3;Putative MATE efflux family protein. Previously annotated as MFT3"
+Cre12.g517150	"GMM:14.2;GMM:1.1.1.2"	"S-assimilation.APR;PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast	"GO:0045454;GO:0008152;GO:0003824"	"cell redox homeostasis;metabolic process;catalytic activity"	MET16	"g12754.t1;APR1;MET16"	APSR1	"Iinvolved in sulfate assimilation; 3'-phosphoadenylsulfate reductase, APS reductase; not a PAPS reductase, based on presence of motifs described in PMID: 12072441"
+Cre12.g501752							"g12540.t2;g12540.t2;g12540.t2;g12540.t2;g12540.t2;g12540.t2;g12540.t2;g12540.t2;g12540.t2;g12540.t2;g12540.t2;g12540.t2;g12540.t2;g12540.t2;g12540.t2;g12540.t2"		
+Cre12.g543400	"GMM:5.3;GMM:26.11;GMM:25.1"	"fermentation.ADH;misc.alcohol dehydrogenases;C1-metabolism.glycine hydroxymethyltransferase"		"GO:0055114;GO:0016491;GO:0008270"	"oxidation-reduction process;oxidoreductase activity;zinc ion binding"	FDH1	"FDH1;Cre12.g543400.t1.1;g13701.t1"	GSNOR1	"Found in the flagellar proteome [PMID: 15998802]; One of two tandem paralogs of GSNOR (Cre12.g543350, Cre12.g543400);"
+Cre12.g533300			Chloroplast	GO:0003676	"nucleic acid binding"	SRE2	"Cre12.g533300.t1.1;g13119.t1"	SRE2	"RNA binding protein"
+Cre12.g507557			Chloroplast						
+Cre12.g557100	GMM:29.4	"protein.postranslational modification"	Chloroplast	"GO:0006464;GO:0004719"	"cellular protein modification process;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity"		"Cre12.g557100.t1.1;g13386.t1"		
+Cre12.g515426	GMM:26.16	misc.myrosinases-lectin-jacalin	"Secretory pathway"						
+Cre12.g490141			Mitochondrion						
+Cre47.g761097			"Secretory pathway"						
+Cre-1.g2717034	GMM:1.1.4	"PS.lightreaction.ATP synthase"	Chloroplast			atpB			
+Cre-1.g2716995			Chloroplast			psbL			
+Cre-1.g2716992			Chloroplast			rpoB-2			
+Cre-1.g2716994	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast			psbF			
+Cre-1.g2717015	GMM:29.5.5	"protein.degradation.serine protease"	Chloroplast			clpP			
+Cre-2.g801494			Mitochondrion			nad4			
+Cre-1.g2717009	GMM:1.1.2.3	"PS.lightreaction.photosystem I.biogenesis"	Chloroplast			ycf4			
+Cre-1.g2716966	GMM:19.14	"tetrapyrrole synthesis.protochlorophyllide reductase"	Chloroplast			chlB			
+Cre-1.g2717046	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast			psaC			
+Cre-1.g2717012	GMM:29.2.1.1.1.2.20	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L20"	Chloroplast			rpl20			
+Cre-1.g2717058	GMM:29.2.1.1.1.2.14	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L14"	Chloroplast			rpl14			
+Cre-1.g2716962			Chloroplast			ORF2971			
+Cre-1.g2716961	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast			psbD			
+Cre-1.g2717004			Chloroplast			rpoA			
+Cre-1.g2717038	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast			psaB			
+Cre-1.g2717030	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast			psbH			
+Cre-1.g2716976			Chloroplast			psbZ			
+Cre-1.g2717050			Chloroplast			rpoC1a			
+Cre-1.g2716955	GMM:29.2.1.1.1.1.4	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S4"	Chloroplast			rps4			
+Cre-1.g2716973	GMM:29.2.1.1.1.1.7	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S7"	Chloroplast			rps7			
+Cre-1.g2717031	GMM:1.1.1.3	"PS.lightreaction.photosystem II.biogenesis"	Chloroplast			psbN			
+Cre-2.g801492	GMM:9.1.1	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I"	Mitochondrion			nad5			
+Cre-1.g2717056	GMM:29.2.1.1.1.1.19	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S19"	Chloroplast			rps19			
+Cre-1.g2717054	GMM:29.2.1.1.1.2.23	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L23"	Chloroplast			rpl23			
+Cre-1.g2716987	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast			psbA			
+Cre-1.g2717040	GMM:1.3.1	"PS.calvin cycle.rubisco large subunit"	Chloroplast			rbcL			
+Cre-1.g000030			Chloroplast			ORF140b			
+Cre-1.g2717055	GMM:29.2.1.1.1.2.2	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L2"	Chloroplast			rpl2			
+Cre-1.g2716958	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast			psaJ			
+Cre-1.g2717049			Chloroplast			rpoC1b			
+Cre-1.g2716996			Chloroplast			petG			
+Cre-1.g2716990	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast			psbE			
+Cre-1.g2717007	GMM:29.2.1.1.1.1.18	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S18"	Chloroplast			rps18			
+Cre-1.g000010			Chloroplast			ORF140a			
+Cre-1.g2717053			Chloroplast			rpl36			
+Cre-1.g2716960			Chloroplast			psbJ			
+Cre-1.g2716979	GMM:29.2.4	protein.synthesis.elongation	Chloroplast			tufA			
+Cre-1.g000005			Chloroplast			ORF271			
+Cre-2.g801495			Mitochondrion			cox1			
+Cre-1.g2717005	GMM:29.2.1.1.1.1.2	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S2"	Chloroplast			rps2			
+Cre-1.g000035			Chloroplast			ORF1995			
+Cre-2.g801499			Mitochondrion			nad1			
+Cre-1.g2716971			Chloroplast			ycf12			
+Cre-1.g2716959	GMM:1.1.4	"PS.lightreaction.ATP synthase"	Chloroplast			atpI			
+Cre-1.g000045			Chloroplast			ORF58			
+Cre-2.g801500			Mitochondrion			nad6			
+Cre-1.g2717021	GMM:1.1.3	"PS.lightreaction.cytochrome b6/f"	Chloroplast			petD			
+Cre-2.g801489			Mitochondrion			rtl			
+Cre-1.g2716978			Chloroplast			psbK			
+Cre-1.g2716997	GMM:29.2.1.1.1.1.3	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S3"	Chloroplast			rps3			
+Cre-1.g2717044			Chloroplast			atpH			
+Cre-1.g2717010	GMM:29.2.1.1.1.1.9	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S9"	Chloroplast			rps9			
+Cre-1.g2717047			Chloroplast			petL			
+Cre-1.g2717052	GMM:19.14	"tetrapyrrole synthesis.protochlorophyllide reductase"	Chloroplast			chlL			
+Cre-1.g2717042			Chloroplast			psbI			
+Cre-1.g2716986	GMM:19.14	"tetrapyrrole synthesis.protochlorophyllide reductase"	Chloroplast			chlN			
+Cre-1.g2717002	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast			psbB			
+Cre-1.g2717006	GMM:29.2.1.1.1.1.2	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S2"	Chloroplast			rps2			
+Cre-2.g801484			Mitochondrion			cob			
+Cre-1.g2717027			Chloroplast			ccsA			
+Cre-1.g2716952	GMM:29.2.1.1.1.1.8	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S8"	Chloroplast			rps8			
+Cre-1.g000020			Chloroplast			ORF59			
+Cre-1.g2717041	GMM:1.1.4	"PS.lightreaction.ATP synthase"	Chloroplast			atpA			
+Cre-2.g801491			Mitochondrion			nad2			
+Cre-1.g2717036	GMM:29.2.1.1.1.1.12	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S12"	Chloroplast			rps12			
+Cre-1.g2717000	GMM:1.1.2.2	"PS.lightreaction.photosystem I.PSI polypeptide subunits"	Chloroplast			psaA			
+Cre-1.g2716989	GMM:1.1.3	"PS.lightreaction.cytochrome b6/f"	Chloroplast			petA			
+Cre-1.g2716998	GMM:27.2	RNA.transcription	Chloroplast			rpoC2			
+Cre-1.g2717008	GMM:1.1.2.3	"PS.lightreaction.photosystem I.biogenesis"	Chloroplast			ycf3			
+Cre-1.g2716972	GMM:1.1.4	"PS.lightreaction.ATP synthase"	Chloroplast			atpE			
+Cre-1.g2716993			Chloroplast			rpoB-1			
+Cre-1.g2716983	GMM:1.1.4	"PS.lightreaction.ATP synthase"	Chloroplast			atpF			
+Cre-1.g2716974	GMM:29.2.1.1.1.1.14	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S14"	Chloroplast			rps14			
+Cre-1.g2717057			Chloroplast			rpl16			
+Cre-1.g2717043			Chloroplast			cemA			
+Cre-1.g2717001	GMM:29.2.1.1.1.1.11	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S11"	Chloroplast			rps11			
+Cre-1.g000015			Chloroplast			ORF112			
+Cre-1.g000025			Chloroplast			ORF50			
+Cre-1.g2716975			Chloroplast			psbM			
+Cre-1.g2717032			Chloroplast			psbT			
+Cre-1.g2717059	GMM:29.2.1.1.1.2.5	"protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L5"	Chloroplast			rpl5			
+Cre-1.g2717017	GMM:1.1.3	"PS.lightreaction.cytochrome b6/f"	Chloroplast			petB			
+Cre-1.g2716963	GMM:1.1.1.2	"PS.lightreaction.photosystem II.PSII polypeptide subunits"	Chloroplast			psbC			
diff --git a/workflows/EvalTurboID/scripts/chlamy_jgi55_legacy.txt b/workflows/EvalTurboID/scripts/chlamy_jgi55_legacy.txt
new file mode 100644
index 0000000000000000000000000000000000000000..65cc017d67ceeb36a79ef811afaa31aca42867f5
--- /dev/null
+++ b/workflows/EvalTurboID/scripts/chlamy_jgi55_legacy.txt
@@ -0,0 +1,17829 @@
+Identifier	MapMan	MapManDescription	Localization	GO	GODescription	Synonym
+"FAToolSnapshot 20201128; Genome version:jgi_v5.5; (c) 2020 Technische Universitaet Kaiserlautern - CSB TM, BV"						
+Cre38.g759997						
+Cre08.g363350						
+Cre08.g379050	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre08.g364751						
+Cre08.g372000			Chloroplast			
+Cre08.g378150	GMM:7.1.1	OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)	Chloroplast	GO:0055114;GO:0050661;GO:0006006;GO:0004345	oxidation-reduction process;NADP binding;glucose metabolic process;glucose-6-phosphate dehydrogenase activity	GLD2
+Cre08.g358567			Mitochondrion			
+Cre08.g373352						
+Cre08.g360700						
+Cre08.g374850	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			
+Cre08.g358459						
+Cre08.g361063						
+Cre08.g367700				GO:0016021	integral component of membrane	
+Cre08.g375200	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	
+Cre08.g368550						
+Cre08.g383450			Mitochondrion			
+Cre08.g378601			Chloroplast			
+Cre08.g371200			Mitochondrion			
+Cre08.g384850						
+Cre08.g361925			Chloroplast			
+Cre08.g367000						
+Cre08.g373436			Mitochondrion			
+Cre08.g358534	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre08.g370250			Mitochondrion			
+Cre08.g358582			Chloroplast			
+Cre08.g363283			Chloroplast			
+Cre08.g362400	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase	Chloroplast			
+Cre08.g382350	GMM:34.8	transport.metabolite transporters at the envelope membrane				EZY14
+Cre08.g369600	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	MFT2
+Cre08.g376650			Secretory pathway	GO:0008146	sulfotransferase activity	CSR5
+Cre08.g366550						
+Cre08.g384355			Mitochondrion			
+Cre08.g359051						
+Cre08.g378100			Chloroplast			
+Cre08.g359800						
+Cre08.g382476			Mitochondrion			
+Cre08.g371533						
+Cre08.g366650						
+Cre08.g377800						
+Cre08.g370116			Mitochondrion			
+Cre08.g375676						
+Cre08.g374100			Mitochondrion			
+Cre08.g371500			Secretory pathway			
+Cre08.g383702	GMM:29.5.11.3;GMM:29.5.11	protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin	Mitochondrion			
+Cre08.g365851	GMM:17.1.1	hormone metabolism.abscisic acid.synthesis-degradation	Chloroplast			
+Cre08.g383250						
+Cre08.g369300	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH16
+Cre08.g379400			Mitochondrion			
+Cre08.g380452				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre08.g360250	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	DUR3B
+Cre08.g366450	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
+Cre08.g362900	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP4
+Cre08.g366950						
+Cre08.g373358						
+Cre08.g358540			Chloroplast			
+Cre08.g373361						
+Cre08.g365300	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP359
+Cre08.g363600	GMM:34.8	transport.metabolite transporters at the envelope membrane				
+Cre08.g375800			Mitochondrion			
+Cre08.g369451	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre08.g385850	GMM:31.3;GMM:29.4	cell.cycle;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDKC1
+Cre08.g375650	GMM:29.4	protein.postranslational modification				
+Cre08.g382530			Chloroplast			
+Cre08.g368450			Secretory pathway	GO:0016021;GO:0008250;GO:0006487	integral component of membrane;oligosaccharyltransferase complex;protein N-linked glycosylation	
+Cre08.g374750			Chloroplast			
+Cre08.g360200	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	DUR3A
+Cre08.g360950			Chloroplast			
+Cre08.g381250						
+Cre08.g373450			Chloroplast	GO:0043169;GO:0005975;GO:0004553;GO:0003824	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	SBE4
+Cre08.g373347			Secretory pathway			
+Cre08.g364800	GMM:23.1.2.4	nucleotide metabolism.synthesis.purine.FGAR amidotransferase	Chloroplast			
+Cre08.g364351						
+Cre08.g374436	GMM:3.5	minor CHO metabolism.others	Mitochondrion			
+Cre08.g364650	GMM:29.1.10;GMM:27.4	protein.aa activation.methionine-tRNA ligase;RNA.RNA binding	Chloroplast	GO:0006450;GO:0000049	regulation of translational fidelity;tRNA binding	
+Cre08.g379950	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast			PFH17
+Cre08.g385750	GMM:13.1.6.1.5	amino acid metabolism.synthesis.aromatic aa.chorismate.shikimate kinase	Mitochondrion			CHK1
+Cre08.g359500				GO:0008716;GO:0005737;GO:0005515	D-alanine-D-alanine ligase activity;cytoplasm;protein binding	
+Cre08.g381483						
+Cre08.g361700			Chloroplast			
+Cre08.g377150			Mitochondrion	GO:0003824	catalytic activity	
+Cre08.g360564	GMM:20.2.3	stress.abiotic.drought/salt		GO:0016020	membrane	ERM3
+Cre08.g358556	GMM:29.2.1	protein.synthesis.ribosomal protein		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS29
+Cre08.g382825						
+Cre08.g385900			Secretory pathway			
+Cre08.g378450						
+Cre08.g376200						
+Cre08.g358544			Chloroplast			
+Cre08.g378250						
+Cre08.g368700	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
+Cre08.g371350						
+Cre08.g379650			Mitochondrion			TIC20
+Cre08.g368950	GMM:18.5;GMM:13.1.6.1.2	Co-factor and vitamine metabolism.folate and vitamine K;amino acid metabolism.synthesis.aromatic aa.chorismate.3-dehydroquinate synthase	Chloroplast			DHQS
+Cre08.g381450			Mitochondrion			OPR35
+Cre08.g358563	GMM:27.1	RNA.processing		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
+Cre08.g359100						
+Cre08.g363267						
+Cre08.g383800			Secretory pathway			
+Cre08.g374150						
+Cre08.g373350	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
+Cre08.g359550						
+Cre08.g382605						
+Cre08.g379800	GMM:27.3.66	RNA.regulation of transcription.pseudo ARR transcription factor family		GO:0004866	endopeptidase inhibitor activity	
+Cre08.g368176						
+Cre08.g368400	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0055114;GO:0045454;GO:0016491;GO:0004791	oxidation-reduction process;cell redox homeostasis;oxidoreductase activity;thioredoxin-disulfide reductase activity	NTR1
+Cre08.g383300			Chloroplast	GO:0016020	membrane	
+Cre08.g371450	GMM:31.4;GMM:29.3.4.99	cell.vesicle transport;protein.targeting.secretory pathway.unspecified				COPZ1
+Cre08.g364450	GMM:13.2.2.1	amino acid metabolism.degradation.glutamate family.glutamine		GO:0008080	N-acetyltransferase activity	NAT1
+Cre08.g377650						
+Cre08.g376700	GMM:28.1;GMM:27.1	DNA.synthesis/chromatin structure;RNA.processing		GO:0008138;GO:0006470;GO:0006397;GO:0006370;GO:0004484	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation;mRNA processing;7-methylguanosine mRNA capping;mRNA guanylyltransferase activity	MRCE1
+Cre08.g371150						
+Cre08.g371400	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	zinc ion binding	CPL16
+Cre08.g366750			Mitochondrion			
+Cre08.g366150			Mitochondrion			ATG16
+Cre08.g384800			Chloroplast			
+Cre08.g364700	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre08.g370200	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	
+Cre08.g358541	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor	Chloroplast			
+Cre08.g364400	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	GO:0006355;GO:0003700	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre08.g367550	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP291
+Cre08.g358700			Secretory pathway			
+Cre08.g358565			Chloroplast			
+Cre08.g385550						
+Cre08.g373000						
+Cre08.g373650						
+Cre08.g371566			Chloroplast			
+Cre08.g379200			Chloroplast			CPLD18
+Cre08.g362350	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase	Secretory pathway			
+Cre08.g384100	GMM:16.1	secondary metabolism.isoprenoids				
+Cre08.g383200						
+Cre08.g358350	GMM:1.1.4.1	PS.lightreaction.ATP synthase.alpha subunit	Chloroplast			TDA1
+Cre08.g376150				GO:0017183	peptidyl-diphthamide biosynthetic process from peptidyl-histidine	CGL150
+Cre08.g369800	GMM:29.2.3.1	protein.synthesis.initiation.deoxyhypusine synthase		GO:0008612	peptidyl-lysine modification to peptidyl-hypusine	DHS2
+Cre08.g383850			Mitochondrion			
+Cre08.g372150			Mitochondrion			
+Cre08.g377500			Mitochondrion			
+Cre08.g381750			Chloroplast			
+Cre08.g379100			Secretory pathway	GO:0003723	RNA binding	
+Cre08.g367900			Secretory pathway			
+Cre08.g376550	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm				DLR1
+Cre08.g385500	GMM:2.2.2.1.1;GMM:2.2.2.1	major CHO metabolism.degradation.starch.starch cleavage.alpha amylase;major CHO metabolism.degradation.starch.starch cleavage		GO:0043169;GO:0005975;GO:0005509;GO:0004556;GO:0003824	cation binding;carbohydrate metabolic process;calcium ion binding;alpha-amylase activity;catalytic activity	AMA1
+Cre08.g369200	GMM:29.4	protein.postranslational modification	Secretory pathway			
+Cre08.g359400			Mitochondrion			
+Cre08.g368500	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre08.g362682			Mitochondrion			
+Cre08.g375900	GMM:29.2.3	protein.synthesis.initiation				EIF2X
+Cre08.g385450			Mitochondrion	GO:0016787	hydrolase activity	
+Cre08.g377200	GMM:28.99;GMM:28.1;GMM:27.3.63;GMM:27.3.44	DNA.unspecified;DNA.synthesis/chromatin structure;RNA.regulation of transcription.PHD finger transcription factor;RNA.regulation of transcription.chromatin remodeling factors		GO:0005515	protein binding	
+Cre08.g373376						
+Cre08.g380950						
+Cre08.g374600			Secretory pathway			
+Cre08.g358545						
+Cre08.g368900	GMM:29.1.7	protein.aa activation.alanine-tRNA ligase	Chloroplast	GO:0043039;GO:0016876;GO:0006419;GO:0005524;GO:0004813;GO:0003676;GO:0000166	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;alanyl-tRNA aminoacylation;ATP binding;alanine-tRNA ligase activity;nucleic acid binding;nucleotide binding"	TSA2
+Cre08.g373370						
+Cre08.g373354						
+Cre08.g365825	GMM:16.1.4.10	secondary metabolism.isoprenoids.carotenoids.carotenoid cleavage dioxygenase	Chloroplast			
+Cre08.g373344						
+Cre08.g369400						
+Cre08.g380500						
+Cre08.g381650			Mitochondrion			
+Cre08.g377300			Mitochondrion	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
+Cre08.g376050						
+Cre08.g379600	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre08.g361900						
+Cre08.g366874			Chloroplast			
+Cre08.g378550	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOP4
+Cre08.g367150	GMM:34.99	transport.misc	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT23
+Cre08.g373369			Mitochondrion			
+Cre08.g366400	GMM:28.2	DNA.repair		GO:0043161;GO:0006289;GO:0005515;GO:0003684	proteasome-mediated ubiquitin-dependent protein catabolic process;nucleotide-excision repair;protein binding;damaged DNA binding	RAD23
+Cre08.g358575	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	TRP7
+Cre08.g385050	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPK2
+Cre08.g361950			Chloroplast			FAP153
+Cre08.g358561						
+Cre08.g365664			Chloroplast			
+Cre08.g381200						
+Cre08.g372500	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases				
+Cre08.g375500	GMM:3.5;GMM:26.26	minor CHO metabolism.others;misc.aminotransferases		GO:1901137;GO:0030246;GO:0005975;GO:0004360	carbohydrate derivative biosynthetic process;carbohydrate binding;carbohydrate metabolic process;glutamine-fructose-6-phosphate transaminase (isomerizing) activity	ATF1
+Cre08.g382800	GMM:30.3;GMM:29.4.1;GMM:29.4	signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005509;GO:0004672	protein phosphorylation;calcium ion binding;protein kinase activity	
+Cre08.g368750			Secretory pathway			
+Cre08.g373349			Chloroplast			
+Cre08.g381400						
+Cre08.g358527						
+Cre08.g358554				GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	
+Cre08.g361750						
+Cre08.g361400	GMM:27.3.17	RNA.regulation of transcription.CPP(Zn) CPP1-related transcription factor family				
+Cre08.g385300	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	HLM14
+Cre08.g364775						
+Cre08.g358553						
+Cre08.g373100	GMM:16.1.4.7	secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Chloroplast	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP97C3
+Cre08.g371801						
+Cre08.g374300	GMM:33.99	development.unspecified				CGL115
+Cre08.g374200	GMM:31.2;GMM:3.6;GMM:29.4.1;GMM:29.4	cell.division;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre08.g360600	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM4
+Cre08.g360750			Chloroplast			
+Cre08.g370850	GMM:29.5.11.3;GMM:29.5	protein.degradation.ubiquitin.E2;protein.degradation				UBC18
+Cre08.g358547						
+Cre08.g378200	GMM:18	Co-factor and vitamine metabolism		GO:0055114;GO:0016638;GO:0010181;GO:0004733	"oxidation-reduction process;oxidoreductase activity, acting on the CH-NH2 group of donors;FMN binding;pyridoxamine-phosphate oxidase activity"	
+Cre08.g381000			Mitochondrion			
+Cre08.g369250						FAP400
+Cre08.g383550				GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre08.g365720			Chloroplast			
+Cre08.g362300	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase				
+Cre08.g362800						
+Cre08.g376250						
+Cre08.g371600						
+Cre08.g369000			Chloroplast			
+Cre08.g358555	GMM:27.3.55	RNA.regulation of transcription.HDA	Chloroplast			
+Cre08.g382515	GMM:33.99	development.unspecified		GO:0005515	protein binding	
+Cre08.g372400	GMM:29.5.11.3;GMM:29.5.11	protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin				UBC19
+Cre08.g377700	GMM:29.5.5	protein.degradation.serine protease		GO:0006508;GO:0004176	proteolysis;ATP-dependent peptidase activity	
+Cre08.g361650	GMM:29.5.11	protein.degradation.ubiquitin	Secretory pathway			
+Cre08.g373764						
+Cre08.g379750			Mitochondrion			
+Cre08.g385200	GMM:27.1	RNA.processing		GO:0005681;GO:0000398	"spliceosomal complex;mRNA splicing, via spliceosome"	SMP3
+Cre08.g362150	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified				FAP361
+Cre08.g383900			Mitochondrion			
+Cre08.g373375						
+Cre08.g374550			Mitochondrion			FDX12
+Cre08.g382750	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	Secretory pathway			
+Cre08.g376720	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion;Chloroplast	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP7
+Cre08.g378650						CGl131
+Cre08.g358200				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre08.g358570			Chloroplast			MCP23
+Cre08.g369500			Secretory pathway			
+Cre08.g370450	GMM:29.9;GMM:29.6.2.6;GMM:29.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding	Mitochondrion	GO:0051087;GO:0042803;GO:0006457;GO:0000774	chaperone binding;protein homodimerization activity;protein folding;adenyl-nucleotide exchange factor activity	MGE1
+Cre08.g358529						
+Cre08.g384750	GMM:2.2.2.1.1;GMM:2.2.2.1	major CHO metabolism.degradation.starch.starch cleavage.alpha amylase;major CHO metabolism.degradation.starch.starch cleavage	Chloroplast	GO:0043169;GO:0005975;GO:0005509;GO:0004556;GO:0003824	cation binding;carbohydrate metabolic process;calcium ion binding;alpha-amylase activity;catalytic activity	AMA3
+Cre08.g382545						
+Cre08.g367950						FAP323
+Cre08.g358569	GMM:29.4	protein.postranslational modification	Secretory pathway			
+Cre08.g373428			Mitochondrion			
+Cre08.g366300			Chloroplast			
+Cre08.g362650	GMM:31.6.1.3.2.1	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A				IFT140
+Cre08.g382575			Chloroplast			
+Cre08.g358535						
+Cre08.g373583			Mitochondrion	GO:0051205;GO:0016021	protein insertion into membrane;integral component of membrane	ALB3.4
+Cre08.g372650			Secretory pathway			
+Cre08.g367350			Chloroplast			
+Cre08.g365103			Secretory pathway			FAP319
+Cre08.g358522	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP5
+Cre08.g373407						
+Cre08.g379576				GO:0003677	DNA binding	
+Cre08.g359450						
+Cre08.g374900	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				
+Cre08.g373362						
+Cre08.g380350						
+Cre08.g378351						
+Cre08.g367800	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases		GO:0016787	hydrolase activity	NDH2
+Cre08.g375550				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre08.g363800						
+Cre08.g373300	GMM:30.6;GMM:3.6;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPKKK1
+Cre08.g368800						
+Cre08.g365027						
+Cre08.g361984	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified				
+Cre08.g378000						
+Cre08.g368350						
+Cre08.g362450	GMM:2.2.2.1.1;GMM:2.2.2.1	major CHO metabolism.degradation.starch.starch cleavage.alpha amylase;major CHO metabolism.degradation.starch.starch cleavage	Chloroplast	GO:0043169;GO:0005975;GO:0005509;GO:0004556;GO:0003824	cation binding;carbohydrate metabolic process;calcium ion binding;alpha-amylase activity;catalytic activity	AMA2
+Cre08.g385675						
+Cre08.g359567			Mitochondrion			
+Cre08.g373373						
+Cre08.g363650			Mitochondrion			
+Cre08.g358650			Secretory pathway	GO:0016020	membrane	
+Cre08.g369950			Secretory pathway			
+Cre08.g381983						
+Cre08.g384200	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525;GO:0003924	GTP binding;GTPase activity	
+Cre08.g382250						
+Cre08.g374250	GMM:31.6.1.9	cell.motility.eukaryotes.flagellar adhesion and gamete fusion	Secretory pathway			SAG1
+Cre08.g383350						
+Cre08.g358542						
+Cre08.g378500						
+Cre08.g377251			Mitochondrion			
+Cre08.g370500			Chloroplast	GO:0006750;GO:0003839	glutathione biosynthetic process;gamma-glutamylcyclotransferase activity	
+Cre08.g359850			Chloroplast			FBB11
+Cre08.g368150	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre08.g361300			Mitochondrion	GO:0016021;GO:0008146	integral component of membrane;sulfotransferase activity	
+Cre08.g365692	GMM:14.3	S-assimilation.sulfite redox	Chloroplast	GO:0055114;GO:0051536;GO:0020037;GO:0016491	oxidation-reduction process;iron-sulfur cluster binding;heme binding;oxidoreductase activity	SIR4
+Cre08.g358500			Chloroplast			
+Cre08.g368300			Secretory pathway	GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL43
+Cre08.g385800						
+Cre08.g367050			Mitochondrion			
+Cre08.g358568			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre08.g359600	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			CSE22
+Cre08.g382716	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	protein binding	UBQ3
+Cre08.g370300						
+Cre08.g383950	GMM:16.1	secondary metabolism.isoprenoids				
+Cre08.g358450						
+Cre08.g358250	GMM:35.1.5;GMM:1.1.3.5	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;PS.lightreaction.cytochrome b6/f.biogenesis	Chloroplast			MCA1
+Cre08.g386050	GMM:29.5.11	protein.degradation.ubiquitin	Chloroplast			
+Cre08.g373346			Secretory pathway			
+Cre08.g360300	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre08.g372050						
+Cre08.g372350	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP188
+Cre08.g385350	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre08.g358528	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP157
+Cre08.g373341						
+Cre08.g384650			Chloroplast			
+Cre08.g378700						
+Cre08.g361250			Chloroplast	GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre08.g373374						
+Cre08.g362950			Secretory pathway			
+Cre08.g376000						
+Cre08.g366676						
+Cre08.g384950	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre08.g363300			Mitochondrion	GO:0009116;GO:0003824	nucleoside metabolic process;catalytic activity	
+Cre08.g366101	GMM:31.1	cell.organisation				
+Cre08.g373400						CSU6
+Cre08.g365900	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCSR1
+Cre08.g380700			Secretory pathway			
+Cre08.g362250	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase				
+Cre08.g362776			Chloroplast			
+Cre08.g373840			Chloroplast			
+Cre08.g363700				GO:0005515	protein binding	
+Cre08.g382400			Mitochondrion			
+Cre08.g384700	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				DMA3
+Cre08.g381850			Secretory pathway			
+Cre08.g365150	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP320
+Cre08.g373726						
+Cre08.g379550	GMM:34.7;GMM:34.2	transport.phosphate;transport.sugars	Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	PHT4
+Cre08.g360350			Chloroplast			ADI1
+Cre08.g365200	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP321
+Cre08.g361350						
+Cre08.g368850			Secretory pathway			
+Cre08.g370350						
+Cre08.g361000			Secretory pathway	GO:0016021;GO:0006810;GO:0005524;GO:0005471	integral component of membrane;transport;ATP binding;ATP:ADP antiporter activity	
+Cre08.g363837	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0006260;GO:0003887;GO:0003677	DNA replication;DNA-directed DNA polymerase activity;DNA binding	POLG1X
+Cre08.g370401	GMM:31.3;GMM:31.2	cell.cycle;cell.division	Chloroplast			CYCB1
+Cre08.g360500	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM2
+Cre08.g364501						
+Cre08.g373802			Chloroplast			
+Cre08.g367400	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCSR3.2
+Cre08.g358600						
+Cre08.g386000						
+Cre08.g379900	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	
+Cre08.g376740	GMM:29.5.3	protein.degradation.cysteine protease				
+Cre08.g382560	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG39
+Cre08.g373359			Secretory pathway			
+Cre08.g384150			Chloroplast			
+Cre08.g362000			Chloroplast			FAP72
+Cre08.g377950			Chloroplast			
+Cre08.g383500						
+Cre08.g380400	GMM:31.2	cell.division		GO:0007094	mitotic spindle assembly checkpoint	MAD2
+Cre08.g373050	GMM:26.1;GMM:11.1.1.1	misc.misc2;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.homomeric enzyme	Mitochondrion	GO:0006633;GO:0005524;GO:0003989	fatty acid biosynthetic process;ATP binding;acetyl-CoA carboxylase activity	BCC3
+Cre08.g361200			Chloroplast			ODA10
+Cre08.g381516	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre08.g358576	GMM:34.14	transport.unspecified cations				
+Cre08.g381900	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre08.g379175			Secretory pathway			
+Cre08.g359900	GMM:29.4	protein.postranslational modification				
+Cre08.g358543			Secretory pathway	GO:0015074;GO:0005515	DNA integration;protein binding	
+Cre08.g365065						FAP318
+Cre08.g379850	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre08.g381702	GMM:8.2.99;GMM:16.4.2;GMM:13.1.1.1.3	TCA / organic transformation.other organic acid transformations.misc;secondary metabolism.N misc.betaine;amino acid metabolism.synthesis.central amino acid metabolism.GABA.SSADH	Mitochondrion	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	
+Cre08.g359300			Secretory pathway	GO:0016787;GO:0009166	hydrolase activity;nucleotide catabolic process	PHO1
+Cre08.g379350	GMM:34.8	transport.metabolite transporters at the envelope membrane	Chloroplast			TPT1
+Cre08.g382590	GMM:31.1	cell.organisation		GO:0035267;GO:0031011;GO:0006355;GO:0006338;GO:0006281	"NuA4 histone acetyltransferase complex;Ino80 complex;regulation of transcription, DNA-templated;chromatin remodeling;DNA repair"	
+Cre08.g367650	GMM:33.99;GMM:30.5;GMM:27.3.70	development.unspecified;signalling.G-proteins;RNA.regulation of transcription.silencing group		GO:0005515	protein binding	MUT11
+Cre08.g358536			Mitochondrion	GO:0008716;GO:0005737	D-alanine-D-alanine ligase activity;cytoplasm	
+Cre08.g359950			Secretory pathway			
+Cre08.g373367						
+Cre08.g377400			Chloroplast			
+Cre08.g365141			Secretory pathway			CSE6
+Cre08.g379187			Secretory pathway			
+Cre08.g368100						
+Cre08.g363383						
+Cre08.g375751			Chloroplast			
+Cre08.g373343						
+Cre08.g360900	GMM:29.2.1.99.1.19;GMM:29.2.1.2.1.15	protein.synthesis.ribosomal protein.unknown.small subunit.S19;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S15		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPS15
+Cre08.g363750				GO:0005509	calcium ion binding	
+Cre08.g376350	GMM:27.3.70	RNA.regulation of transcription.silencing group		GO:0006333;GO:0005634	chromatin assembly or disassembly;nucleus	ASF1
+Cre08.g375850						
+Cre08.g358578			Secretory pathway			
+Cre08.g381100						
+Cre08.g358537			Chloroplast			
+Cre08.g369700			Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre08.g374400				GO:0005515	protein binding	
+Cre08.g384628			Secretory pathway			
+Cre08.g362036			Secretory pathway			
+Cre08.g374650	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species				DII3
+Cre08.g369150	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems	Chloroplast			
+Cre08.g373500			Chloroplast			
+Cre08.g363950			Secretory pathway	GO:0016788;GO:0006886;GO:0006505	"hydrolase activity, acting on ester bonds;intracellular protein transport;GPI anchor metabolic process"	
+Cre08.g383650						
+Cre08.g361551	GMM:29.5.11	protein.degradation.ubiquitin				
+Cre08.g362700	GMM:29.5;GMM:13.1.3.4.12	protein.degradation;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase	Secretory pathway	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm30
+Cre08.g381300						
+Cre08.g358572	GMM:34.14	transport.unspecified cations		GO:0016021;GO:0006952	integral component of membrane;defense response	
+Cre08.g385600	GMM:29.4	protein.postranslational modification				
+Cre08.g360400	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM1
+Cre08.g371700						
+Cre08.g365500						
+Cre08.g358850			Secretory pathway			FAP386
+Cre08.g373878			Mitochondrion			
+Cre08.g382200						
+Cre08.g358524			Chloroplast			
+Cre08.g362750				GO:0046872;GO:0016787;GO:0003676	metal ion binding;hydrolase activity;nucleic acid binding	
+Cre08.g363100			Secretory pathway	GO:0008061;GO:0006030;GO:0005576	chitin binding;chitin metabolic process;extracellular region	
+Cre08.g360050	GMM:13.2.4.4;GMM:11.1.1.2.4	amino acid metabolism.degradation.branched chain group.leucine;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.biotin carboxylase				DUR1
+Cre08.g359650						
+Cre08.g358557						
+Cre08.g360550			Mitochondrion	GO:0005507	copper ion binding	ERM3
+Cre08.g378300						
+Cre08.g372850				GO:0008270	zinc ion binding	
+Cre08.g373688			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre08.g358560						
+Cre08.g372300			Mitochondrion	GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre08.g366800						
+Cre08.g358300						
+Cre08.g373225			Chloroplast			
+Cre08.g384285						
+Cre08.g365100	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP242
+Cre08.g376800	GMM:29.2.3;GMM:11.9.4.2	protein.synthesis.initiation;lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH	Mitochondrion			
+Cre08.g362076						
+Cre08.g367876						
+Cre08.g366600			Mitochondrion			
+Cre08.g369976			Chloroplast			
+Cre08.g372200			Secretory pathway			
+Cre08.g363450			Chloroplast			
+Cre08.g370083			Mitochondrion			
+Cre08.g373421			Secretory pathway;Chloroplast			
+Cre08.g358616	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	FAP398
+Cre08.g364550	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	
+Cre08.g373365						
+Cre08.g363874	GMM:2.2.2.3	major CHO metabolism.degradation.starch.glucan water dikinase	Mitochondrion			
+Cre08.g370950						
+Cre08.g367200	GMM:33.99;GMM:31.4	development.unspecified;cell.vesicle transport				VPS52
+Cre08.g371957	GMM:33.99;GMM:31.99	development.unspecified;cell.unspecified		GO:0031931;GO:0031929	TORC1 complex;TOR signaling	RAPTOR
+Cre08.g371840			Mitochondrion			
+Cre08.g380800						
+Cre08.g373353			Chloroplast			
+Cre08.g382689	GMM:33.99;GMM:29.5.11.1;GMM:29.5.11;GMM:29.2.1.2.2.40;GMM:29.2.1.2.1.27;GMM:29.1	development.unspecified;protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27;protein.aa activation		GO:0005515	protein binding	UBQ4
+Cre08.g358531				GO:0016021	integral component of membrane	
+Cre08.g372900	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies		GO:0005515	protein binding	VFL1
+Cre08.g369900	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre08.g368050			Chloroplast	GO:0006281;GO:0003824	DNA repair;catalytic activity	
+Cre08.g360100				GO:0016884	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor"	DUR2
+Cre08.g361600	GMM:29.5.11	protein.degradation.ubiquitin	Secretory pathway			
+Cre08.g383000	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Chloroplast	GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre08.g382500	GMM:29.2.1.99.1.25;GMM:29.2.1.2.1.25	protein.synthesis.ribosomal protein.unknown.small subunit.S25;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S25				RPS25
+Cre08.g365000			Mitochondrion	GO:0006950;GO:0005516	response to stress;calmodulin binding	
+Cre08.g373345						
+Cre08.g374700						FAP244
+Cre08.g378750						
+Cre08.g369550						
+Cre08.g359350	GMM:13.2.4.4;GMM:11.1.1.2.4;GMM:11.1.1	amino acid metabolism.degradation.branched chain group.leucine;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.biotin carboxylase;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation	Chloroplast			CARB1
+Cre08.g377550						
+Cre08.g364950						FAP317
+Cre08.g380650			Secretory pathway			
+Cre08.g375084	GMM:27.1.1	RNA.processing.splicing		GO:0006397;GO:0003676	mRNA processing;nucleic acid binding	
+Cre08.g379450	GMM:26.3	"misc.gluco-, galacto- and mannosidases"		GO:0009341;GO:0005975;GO:0004565;GO:0004553	"beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity;hydrolase activity, hydrolyzing O-glycosyl compounds"	
+Cre08.g376300			Chloroplast			
+Cre08.g380201	GMM:13.1.6.1.10	amino acid metabolism.synthesis.aromatic aa.chorismate.3-dehydroquinate dehydratase/shikimate dehydrogenase	Mitochondrion	GO:0055114;GO:0004764;GO:0003855	oxidation-reduction process;shikimate 3-dehydrogenase (NADP+) activity;3-dehydroquinate dehydratase activity	SHKD1
+Cre08.g358583			Secretory pathway			
+Cre08.g373368						
+Cre08.g358523			Mitochondrion			
+Cre08.g358577	GMM:34.14	transport.unspecified cations		GO:0005515	protein binding	
+Cre08.g360001						
+Cre08.g371650			Chloroplast	GO:0015031;GO:0008565	protein transport;protein transporter activity	TATB
+Cre08.g385700	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0006886	intracellular protein transport	SNAPG1
+Cre08.g373342						
+Cre08.g372800	GMM:27.1.1	RNA.processing.splicing		GO:0005634;GO:0003676	nucleus;nucleic acid binding	
+Cre08.g380000						UMM7
+Cre08.g377350	GMM:23.4.3;GMM:23.4.2;GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.uridylate kinase;nucleotide metabolism.phosphotransfer and pyrophosphatases.guanylate kinase;nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase		GO:0005515	protein binding	FAP180
+Cre08.g365550						
+Cre08.g362050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			FAP49
+Cre08.g358558						
+Cre08.g358538	GMM:16.1.4.5	secondary metabolism.isoprenoids.carotenoids.lycopene beta cyclase	Chloroplast	GO:0016705;GO:0016117	"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;carotenoid biosynthetic process"	
+Cre08.g364000	GMM:33.99;GMM:3.5;GMM:29.2.2.3.4	development.unspecified;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins		GO:0005515	protein binding	
+Cre08.g358571	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	cyg70
+Cre08.g359700	GMM:18.11	Co-factor and vitamine metabolism.lipoic acid	Mitochondrion	GO:0051539;GO:0051536;GO:0016992;GO:0009107;GO:0003824	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;lipoate synthase activity;lipoate biosynthetic process;catalytic activity"	LAS1
+Cre08.g369050			Secretory pathway			
+Cre08.g373357						
+Cre08.g375350	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre08.g381950	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	TAR1
+Cre08.g374350						
+Cre08.g381050	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP8
+Cre08.g382900			Chloroplast			
+Cre08.g358530			Mitochondrion			OPR113
+Cre08.g381600			Mitochondrion			
+Cre08.g364250	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0016480	negative regulation of transcription from RNA polymerase III promoter	
+Cre08.g368250						
+Cre08.g384000	GMM:26.10;GMM:26.1;GMM:17.3.1.1.5	misc.cytochrome P450;misc.misc2;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.metabolic regulation	Mitochondrion	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP771A1
+Cre08.g362500			Chloroplast	GO:0007076;GO:0000796	mitotic chromosome condensation;condensin complex	
+Cre08.g358546						
+Cre08.g372450	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBQ
+Cre08.g375450	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Mitochondrion	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre08.g365450						
+Cre08.g367850						
+Cre08.g382950			Mitochondrion			
+Cre08.g358900	GMM:23.3.1.2	nucleotide metabolism.salvage.phosphoribosyltransferases.hypoxanthine-guanine phosphoribosyltransferase (HPRT)	Chloroplast	GO:0009116	nucleoside metabolic process	
+Cre08.g371250						
+Cre08.g363367						
+Cre08.g362200	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase				
+Cre08.g373550				GO:0016787	hydrolase activity	
+Cre08.g385100						EFH5
+Cre08.g385250						
+Cre08.g373916	GMM:27.1.19	RNA.processing.ribonucleases		GO:0004527;GO:0003676	exonuclease activity;nucleic acid binding	
+Cre08.g359200	GMM:31.2;GMM:20.2.5	cell.division;stress.abiotic.light				
+Cre08.g360801			Chloroplast			
+Cre08.g363150				GO:0008061;GO:0006030;GO:0005576	chitin binding;chitin metabolic process;extracellular region	
+Cre08.g360444						
+Cre08.g365050			Secretory pathway			FAP409
+Cre08.g369850	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
+Cre08.g358549						
+Cre08.g384900	GMM:30.6;GMM:3.6;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	FAP356
+Cre08.g370550			Mitochondrion	GO:0055114;GO:0050660;GO:0016491;GO:0003824	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;catalytic activity	
+Cre08.g370900			Secretory pathway			
+Cre08.g376850						
+Cre08.g367750			Secretory pathway			
+Cre08.g369100			Secretory pathway			
+Cre08.g366579						
+Cre08.g360850			Mitochondrion	GO:0005524	ATP binding	
+Cre08.g361100	GMM:18.1;GMM:18	Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism	Secretory pathway	GO:0005515	protein binding	
+Cre08.g372716			Mitochondrion			
+Cre08.g377600			Secretory pathway	GO:0010508	positive regulation of autophagy	ATG14
+Cre08.g373356	GMM:29.4	protein.postranslational modification	Chloroplast			
+Cre08.g373363						
+Cre08.g373414			Secretory pathway			
+Cre08.g373250	GMM:29.5.11.20;GMM:29.5	protein.degradation.ubiquitin.proteasom;protein.degradation		GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA2
+Cre08.g380763			Secretory pathway			
+Cre08.g378850	GMM:23.1.3	nucleotide metabolism.synthesis.PRS-PP	Chloroplast	GO:0009165;GO:0004749;GO:0000287	nucleotide biosynthetic process;ribose phosphate diphosphokinase activity;magnesium ion binding	RPPK1
+Cre08.g358521						
+Cre08.g371918			Chloroplast			
+Cre08.g358326			Chloroplast			
+Cre08.g382700	GMM:29.5.11.1;GMM:29.5.11;GMM:29.2.1.2.2.40;GMM:29.2.1.2.1.27;GMM:29.1	protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27;protein.aa activation	Secretory pathway	GO:0005515	protein binding	UBQ3
+Cre08.g366350						
+Cre08.g368650			Secretory pathway			
+Cre08.g381550			Chloroplast			
+Cre08.g377850			Secretory pathway			
+Cre08.g384600			Mitochondrion			
+Cre08.g368026			Mitochondrion			
+Cre08.g373351			Secretory pathway			
+Cre08.g363250						
+Cre08.g380300	GMM:29.4	protein.postranslational modification		GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress"	MSRA3
+Cre08.g362019	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			FAP408
+Cre08.g375400	GMM:31.6.1.9;GMM:27.3.22	cell.motility.eukaryotes.flagellar adhesion and gamete fusion;RNA.regulation of transcription.homeobox transcription factor family (HB)	Mitochondrion	GO:0006355;GO:0003677	"regulation of transcription, DNA-templated;DNA binding"	GSM1
+Cre08.g383050			Secretory pathway			
+Cre08.g364989			Mitochondrion			
+Cre08.g364600						
+Cre08.g386100	GMM:26.1	misc.misc2				CYP744A5P
+Cre08.g364931	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP316
+Cre08.g358100						
+Cre08.g380600	GMM:29.4;GMM:27.1.1	protein.postranslational modification;RNA.processing.splicing		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre08.g384250	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre08.g363400			Mitochondrion			
+Cre08.g382300	GMM:29.8	protein.assembly and cofactor ligation	Chloroplast			CCB4
+Cre08.g372950	GMM:16.1.1.7	secondary metabolism.isoprenoids.non-mevalonate pathway.HDR	Chloroplast	GO:0051745;GO:0050992;GO:0046872;GO:0019288	"4-hydroxy-3-methylbut-2-en-1-yl diphosphate reductase activity;dimethylallyl diphosphate biosynthetic process;metal ion binding;isopentenyl diphosphate biosynthetic process, methylerythritol 4-phosphate pathway"	IDS1
+Cre08.g369720	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
+Cre08.g375050			Chloroplast			FAP86
+Cre08.g378800	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre08.g365950	GMM:26.5;GMM:11.7	misc.acyl transferases;lipid metabolism.unassigned	Chloroplast	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
+Cre08.g366200			Mitochondrion			
+Cre08.g367300	GMM:27.3.52	RNA.regulation of transcription.global transcription factor group		GO:0005515	protein binding	
+Cre08.g384320			Mitochondrion			
+Cre08.g370000			Chloroplast			
+Cre08.g373200	GMM:30.99	signalling.unspecified				
+Cre08.g365400	GMM:29.2.1.1.1.2.31	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L31	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL31
+Cre08.g364200	GMM:29.4	protein.postranslational modification				
+Cre08.g374950			Chloroplast			
+Cre08.g358562	GMM:29.9;GMM:29.6.2.6;GMM:29.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding	Chloroplast	GO:0006457;GO:0005737	protein folding;cytoplasm	CPN20
+Cre08.g364050						
+Cre08.g377450	GMM:29.3.1	protein.targeting.nucleus		GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	
+Cre08.g371052	GMM:29.4;GMM:27.3.12	protein.postranslational modification;RNA.regulation of transcription.C3H zinc finger family	Mitochondrion	GO:0046872;GO:0006468;GO:0006397;GO:0004672;GO:0004540	metal ion binding;protein phosphorylation;mRNA processing;protein kinase activity;ribonuclease activity	IRE1:5frag
+Cre08.g373360						
+Cre08.g385951						
+Cre08.g369350						
+Cre08.g360450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre08.g364862	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005515;GO:0004672	protein phosphorylation;protein binding;protein kinase activity	
+Cre08.g367600	GMM:13.1.5.3.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.OASTL				OASTL1
+Cre08.g365204			Secretory pathway			CSE9
+Cre08.g365600	GMM:18.2.2;GMM:18	Co-factor and vitamine metabolism.thiamine.hydroxymethylpyrimidine kinase;Co-factor and vitamine metabolism		GO:0009228;GO:0004789	thiamine biosynthetic process;thiamine-phosphate diphosphorylase activity	
+Cre08.g364726			Chloroplast			
+Cre08.g379163			Mitochondrion			
+Cre08.g372750						
+Cre08.g373372						
+Cre08.g378417			Secretory pathway			
+Cre08.g383150	GMM:27.3.70	RNA.regulation of transcription.silencing group		GO:0008080	N-acetyltransferase activity	NAT5
+Cre08.g375301			Chloroplast			
+Cre08.g381800				GO:0016787;GO:0008299;GO:0004452	hydrolase activity;isoprenoid biosynthetic process;isopentenyl-diphosphate delta-isomerase activity	
+Cre08.g371879						
+Cre08.g372100	GMM:29.6.2.3;GMM:29.6;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;protein.folding;stress.abiotic.heat	Cytosol			HSP70A
+Cre08.g375700	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			smm31
+Cre08.g376950			Secretory pathway			MMP14
+Cre08.g382620	GMM:33.99;GMM:30.5;GMM:27.3.51	"development.unspecified;signalling.G-proteins;RNA.regulation of transcription.general transcription, TBP-binding protein"	Mitochondrion	GO:0005515	protein binding	
+Cre08.g380550	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Mitochondrion	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre08.g358539				GO:0051087;GO:0001671	chaperone binding;ATPase activator activity	
+Cre08.g370050			Mitochondrion			
+Cre08.g382100						
+Cre08.g376500			Chloroplast	GO:0016799;GO:0008270;GO:0006289;GO:0003906;GO:0003684	"hydrolase activity, hydrolyzing N-glycosyl compounds;zinc ion binding;nucleotide-excision repair;DNA-(apurinic or apyrimidinic site) lyase activity;damaged DNA binding"	
+Cre08.g368200			Chloroplast			
+Cre08.g373355			Mitochondrion			
+Cre08.g369683						
+Cre08.g369740	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway			MRP6
+Cre08.g370650	GMM:7.1.2	OPP.oxidative PP.6-phosphogluconolactonase	Chloroplast	GO:0005975	carbohydrate metabolic process	PGL2
+Cre08.g384050						
+Cre08.g358526	GMM:34.99;GMM:34.9;GMM:34.8	transport.misc;transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane	Chloroplast	GO:0016021;GO:0006810;GO:0005524;GO:0005471	integral component of membrane;transport;ATP binding;ATP:ADP antiporter activity	AAA1
+Cre08.g361850			Chloroplast			
+Cre08.g361450			Secretory pathway			
+Cre08.g373364			Secretory pathway			
+Cre08.g379150			Secretory pathway			
+Cre08.g366850						
+Cre08.g358150			Chloroplast			
+Cre08.g378900	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0055114;GO:0008137	oxidation-reduction process;NADH dehydrogenase (ubiquinone) activity	NUO3
+Cre08.g385400	GMM:13.2.3.1.1	amino acid metabolism.degradation.aspartate family.asparagine.L-asparaginase	Mitochondrion	GO:0006520	cellular amino acid metabolic process	
+Cre08.g363200			Chloroplast			
+Cre08.g380151			Mitochondrion	GO:0005515	protein binding	
+Cre08.g363050						
+Cre08.g376450						CPLD36
+Cre08.g371800	GMM:28.2	DNA.repair				
+Cre08.g377050			Secretory pathway			
+Cre08.g358581						
+Cre08.g382450						
+Cre08.g376100	GMM:3.4.5	minor CHO metabolism.myo-inositol.inositol phosphatase		GO:0046854	phosphatidylinositol phosphorylation	
+Cre08.g370150			Chloroplast			
+Cre08.g372550	GMM:31.2;GMM:29.4.1;GMM:29.4	cell.division;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CDKB1
+Cre08.g359250			Secretory pathway			
+Cre08.g366900						
+Cre08.g375950			Chloroplast	GO:0005515	protein binding	EXR1
+Cre08.g368000			Chloroplast			
+Cre08.g377900				GO:0032775;GO:0009007;GO:0003677	DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding	
+Cre08.g384550			Chloroplast			
+Cre08.g373150						
+Cre08.g370700			Secretory pathway			
+Cre08.g366700			Chloroplast			
+Cre08.g367100						
+Cre08.g358564						FAP344
+Cre08.g358950			Mitochondrion			
+Cre08.g379500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre08.g365800			Mitochondrion	GO:0008171	O-methyltransferase activity	
+Cre08.g375000	GMM:29.4	protein.postranslational modification		GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	
+Cre08.g366000				GO:0016020	membrane	
+Cre08.g359166						
+Cre08.g358751			Mitochondrion			ZMYND10
+Cre08.g361500				GO:0005763	mitochondrial small ribosomal subunit	
+Cre08.g383400	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR11
+Cre08.g366250			Mitochondrion			
+Cre08.g385000				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre08.g358800	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre08.g379000						
+Cre08.g376400			Mitochondrion			
+Cre08.g379300						
+Cre08.g382650	GMM:29.3.4.2	protein.targeting.secretory pathway.golgi		GO:0030173;GO:0006891	integral component of Golgi membrane;intra-Golgi vesicle-mediated transport	UBQ4
+Cre08.g364100			Secretory pathway			
+Cre08.g378050	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOP5
+Cre08.g381350						
+Cre08.g382050			Mitochondrion			
+Cre08.g380250	GMM:1.3.4	PS.calvin cycle.GAP	Chloroplast			CP12
+Cre08.g375250	GMM:29.2.1.99.1.19	protein.synthesis.ribosomal protein.unknown.small subunit.S19		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPS19
+Cre08.g375600	GMM:29.5	protein.degradation				
+Cre08.g373348			Chloroplast			
+Cre08.g358552			Mitochondrion			
+Cre08.g362600						
+Cre08.g364151						
+Cre08.g364300	GMM:20.1.7.6.1;GMM:20.1.7.6	stress.biotic.PR-proteins.PR6 (proteinase inhibitors).trypsin inhibitor;stress.biotic.PR-proteins.PR6 (proteinase inhibitors)				FAP29
+Cre08.g365750	GMM:28.2	DNA.repair				
+Cre08.g368600	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre08.g384390	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	POLQ2
+Cre08.g370601	GMM:29.2.2.3.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs	Mitochondrion	GO:0034457;GO:0006364;GO:0005732;GO:0005634	Mpp10 complex;rRNA processing;small nucleolar ribonucleoprotein complex;nucleus	
+Cre08.g385950						
+Cre08.g378400						
+Cre08.g365351			Mitochondrion			
+Cre08.g360650			Chloroplast			
+Cre08.g373371			Chloroplast			
+Cre08.g374050	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0003887;GO:0003677	DNA replication;DNA-directed DNA polymerase activity;DNA binding	POLD2
+Cre08.g367250			Chloroplast			FAP176
+Cre08.g358559			Chloroplast			
+Cre08.g383101						FAP324
+Cre08.g362550						VPS37
+Cre08.g377750			Mitochondrion			
+Cre08.g358525	GMM:21.2.2;GMM:21.2	redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione	Chloroplast	GO:0055114;GO:0006979;GO:0004602	oxidation-reduction process;response to oxidative stress;glutathione peroxidase activity	
+Cre08.g385650	GMM:31.3;GMM:29.4	cell.cycle;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre08.g369650			Secretory pathway			
+Cre08.g383750			Chloroplast			
+Cre08.g382150						
+Cre08.g373377			Chloroplast			
+Cre08.g359750	GMM:29.2.1.2.1.9	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S9		GO:0019843;GO:0005622;GO:0003723	rRNA binding;intracellular;RNA binding	RPS9
+Cre08.g371751			Mitochondrion			
+Cre08.g361800				GO:0006359	regulation of transcription from RNA polymerase III promoter	RPC31
+Cre08.g377100	GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase	Mitochondrion	GO:0019205;GO:0006139;GO:0005524	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding	ADK6
+Cre08.g376900						
+Cre08.g375801			Mitochondrion			
+Cre08.g363500	GMM:29.4	protein.postranslational modification	Secretory pathway			
+Cre08.g379700	GMM:10.1;GMM:1.1	cell wall.precursor synthesis;PS.lightreaction		GO:0071704;GO:0016868;GO:0005975	"organic substance metabolic process;intramolecular transferase activity, phosphotransferases;carbohydrate metabolic process"	PHM1
+Cre08.g361150			Secretory pathway			
+Cre08.g377000						
+Cre08.g358548			Secretory pathway			
+Cre08.g374450						
+Cre08.g381150						
+Cre08.g362100	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified				FAP154
+Cre08.g359133						
+Cre08.g358532			Mitochondrion	GO:0043565;GO:0008270;GO:0006355;GO:0003700;GO:0003682	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding;chromatin binding"	
+Cre08.g373366						
+Cre08.g369667			Chloroplast			
+Cre08.g372250	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre08.g358580	GMM:23.1.1.1	nucleotide metabolism.synthesis.pyrimidine.carbamoyl phosphate synthetase	Chloroplast			CMP1
+Cre08.g371000						
+Cre08.g358126			Chloroplast			
+Cre08.g383600			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR21
+Cre08.g358579	GMM:21.1	redox.thioredoxin	Secretory pathway			
+Cre08.g374000						
+Cre08.g361050	GMM:18.1;GMM:18	Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism	Mitochondrion	GO:0006777	Mo-molybdopterin cofactor biosynthetic process	CNX3
+Cre08.g366500	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
+Cre08.g363000			Secretory pathway			
+Cre08.g362850						
+Cre08.g370750			Secretory pathway			
+Cre08.g385150						
+Cre08.g358400	GMM:34.1	transport.p- and v-ATPases		GO:0016021;GO:0015693;GO:0015095	integral component of membrane;magnesium ion transport;magnesium ion transmembrane transporter activity	
+Cre08.g358574			Secretory pathway			
+Cre08.g382850						LYR2
+Cre08.g372600						
+Cre08.g367500	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCSR3.1
+Cre08.g358573	GMM:34.14	transport.unspecified cations	Mitochondrion			
+Cre08.g365632	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre08.g366050	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases		GO:0016787	hydrolase activity	
+Cre08.g374800				GO:0005515	protein binding	
+Cre08.g374926			Mitochondrion			
+Cre08.g360150			Mitochondrion			
+Cre08.g364850			Secretory pathway			
+Cre08.g381075						
+Cre08.g384500			Mitochondrion			
+Cre08.g368226						
+Cre08.g375150						
+Cre08.g371301			Secretory pathway			
+Cre08.g384864	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0005515	protein binding	
+Cre08.g359000	GMM:28.2	DNA.repair	Mitochondrion			
+Cre08.g380100			Mitochondrion			
+Cre08.g378950	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre08.g365205			Secretory pathway			FAP322
+Cre08.g380850						
+Cre45.g760847			Secretory pathway	GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	
+Cre45.g760897						
+Cre45.g760797			Chloroplast			
+Cre23.g754647			Chloroplast			
+Cre23.g754297						
+Cre23.g754847			Secretory pathway			
+Cre23.g754597						
+Cre23.g754397						
+Cre23.g754697						
+Cre23.g755047						
+Cre23.g754947						
+Cre23.g754747						
+Cre23.g754997						
+Cre23.g754497						
+Cre23.g754347						
+Cre23.g754897			Chloroplast			
+Cre23.g754547				GO:0005515	protein binding	
+Cre23.g754447						
+Cre23.g754797						
+Cre07.g334200	GMM:29.2.3;GMM:28.1;GMM:27.1.2;GMM:27.1	protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase;RNA.processing		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL38
+Cre07.g315000			Secretory pathway			CSG6
+Cre07.g325748	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0016787;GO:0003824	hydrolase activity;catalytic activity	
+Cre07.g319452			Secretory pathway			PHC73
+Cre07.g346525						
+Cre07.g319300	GMM:2.2.2.3	major CHO metabolism.degradation.starch.glucan water dikinase	Chloroplast	GO:0016310;GO:0016301;GO:0005524	phosphorylation;kinase activity;ATP binding	GWD1
+Cre07.g330276			Chloroplast			
+Cre07.g324700						
+Cre07.g342850	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0036158;GO:0036157	outer dynein arm assembly;outer dynein arm	DCC3
+Cre07.g341650						
+Cre07.g355800						
+Cre07.g325050	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG15
+Cre07.g341251	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g341000			Chloroplast			
+Cre07.g352213						
+Cre07.g343150						
+Cre07.g348951			Mitochondrion			
+Cre07.g315326						
+Cre07.g312750				GO:0003723;GO:0000178	RNA binding;exosome (RNase complex)	CSL4
+Cre07.g345031						
+Cre07.g356550			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre07.g325740	GMM:34.7	transport.phosphate		GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB3
+Cre07.g347050	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP7
+Cre07.g353550	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0003743	translational initiation;translation initiation factor activity	SUI1B
+Cre07.g347650			Mitochondrion			
+Cre07.g325756			Secretory pathway			
+Cre07.g338800	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion			CGL125
+Cre07.g329250			Mitochondrion			
+Cre07.g354800			Secretory pathway			
+Cre07.g338451	GMM:6	gluconeogenesis / glyoxylate cycle		GO:0042132;GO:0006094;GO:0006071	"fructose 1,6-bisphosphate 1-phosphatase activity;gluconeogenesis;glycerol metabolic process"	FBP1
+Cre07.g334776						
+Cre07.g327250			Mitochondrion			
+Cre07.g351700						
+Cre07.g353250			Mitochondrion			
+Cre07.g321650	GMM:31.3	cell.cycle		GO:0019901;GO:0006355;GO:0000079	"protein kinase binding;regulation of transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	CYCL1
+Cre07.g323350			Mitochondrion			
+Cre07.g356050			Chloroplast			
+Cre07.g326626			Secretory pathway			
+Cre07.g334100	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others	Secretory pathway	GO:0032012;GO:0005086	regulation of ARF protein signal transduction;ARF guanyl-nucleotide exchange factor activity	GNOM
+Cre07.g325850						MAW8
+Cre07.g333711						
+Cre07.g328350	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase				FAP207
+Cre07.g324932	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g353600	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP7
+Cre07.g329450			Chloroplast			
+Cre07.g321050	GMM:13.1.3.1.1	amino acid metabolism.synthesis.aspartate family.asparagine.asparagine synthetase		GO:0006529;GO:0004066	asparagine biosynthetic process;asparagine synthase (glutamine-hydrolyzing) activity	
+Cre07.g323300						
+Cre07.g313122			Mitochondrion	GO:0008236;GO:0006508	serine-type peptidase activity;proteolysis	
+Cre07.g318400			Chloroplast			
+Cre07.g345950			Mitochondrion			
+Cre07.g348500			Mitochondrion			
+Cre07.g316900			Mitochondrion			
+Cre07.g327333			Mitochondrion			
+Cre07.g347400				GO:0003676	nucleic acid binding	
+Cre07.g340050	GMM:30.5;GMM:3.5;GMM:29.2.2	signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis		GO:0005730;GO:0005525	nucleolus;GTP binding	
+Cre07.g331250			Chloroplast			
+Cre07.g347950	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others	Secretory pathway	GO:0005515	protein binding	
+Cre07.g314550				GO:0008176;GO:0006400	tRNA (guanine-N7-)-methyltransferase activity;tRNA modification	
+Cre07.g357486						
+Cre07.g321951	GMM:34.12	transport.metal		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NRAMP2
+Cre07.g333350			Chloroplast			
+Cre07.g318000				GO:0016020;GO:0006897	membrane;endocytosis	
+Cre07.g325745			Chloroplast			
+Cre07.g326800	GMM:29.4	protein.postranslational modification		GO:0016787;GO:0005515	hydrolase activity;protein binding	
+Cre07.g316350						CSG1
+Cre07.g344600	GMM:13.1.5.1.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase	Chloroplast	GO:0055114;GO:0051287;GO:0016616;GO:0008152	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process"	PGD1
+Cre07.g333781						
+Cre07.g312300			Chloroplast			
+Cre07.g328250	GMM:35.1.12	not assigned.no ontology.pumilio/Puf RNA-binding domain-containing protein	Mitochondrion	GO:0003723	RNA binding	
+Cre07.g335950	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
+Cre07.g313302	GMM:27.2	RNA.transcription		GO:0046983;GO:0006351;GO:0003899	"protein dimerization activity;transcription, DNA-templated;DNA-directed RNA polymerase activity"	
+Cre07.g357300			Chloroplast			
+Cre07.g318702	GMM:27.1	RNA.processing		GO:0005515	protein binding	
+Cre07.g319600	GMM:16.7;GMM:16.1;GMM:11.1.11;GMM:11.1.10	secondary metabolism.wax;secondary metabolism.isoprenoids;lipid metabolism.FA synthesis and FA elongation.fatty acid elongase;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase		GO:0016747;GO:0016020;GO:0008610;GO:0006633	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;lipid biosynthetic process;fatty acid biosynthetic process"	FAE3
+Cre07.g338150	GMM:33.99;GMM:31.2;GMM:27.4	development.unspecified;cell.division;RNA.RNA binding	Mitochondrion	GO:0003676	nucleic acid binding	RNP1
+Cre07.g339100	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g357850	GMM:29.2.1.2.2.22	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L22		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL22
+Cre07.g333150						
+Cre07.g352976						
+Cre07.g355700			Mitochondrion	GO:0003676	nucleic acid binding	
+Cre07.g330750			Secretory pathway			PHC43
+Cre07.g357750	GMM:33.99	development.unspecified	Secretory pathway	GO:0016020	membrane	
+Cre07.g325650						
+Cre07.g319550			Mitochondrion			
+Cre07.g328600	GMM:29.5.11.4.99;GMM:29.5.11;GMM:27.3.67	protein.degradation.ubiquitin.E3.unspecified;protein.degradation.ubiquitin;RNA.regulation of transcription.putative transcription regulator		GO:0005515	protein binding	
+Cre07.g340400	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP17
+Cre07.g313206			Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
+Cre07.g337150	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005524	ATP binding	RFC2
+Cre07.g337650	GMM:8.1.1.1	TCA / organic transformation.TCA.pyruvate DH.E1	Mitochondrion	GO:0016624;GO:0008152	"oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor;metabolic process"	PDC1
+Cre07.g349850				GO:0005515	protein binding	
+Cre07.g330850	GMM:34.8	transport.metabolite transporters at the envelope membrane	Mitochondrion			
+Cre07.g346200	GMM:35;GMM:11.9.3.2	not assigned;lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase				
+Cre07.g325728						
+Cre07.g354400	GMM:26.10;GMM:26.1;GMM:17.2.2;GMM:16.8.3.3;GMM:16.1.4.7	misc.cytochrome P450;misc.misc2;hormone metabolism.auxin.signal transduction;secondary metabolism.flavonoids.dihydroflavonols.flavonoid 3'-monooxygenase;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Mitochondrion	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743B2
+Cre07.g325721	GMM:23.1.2	nucleotide metabolism.synthesis.purine				cyg69
+Cre07.g340600			Chloroplast			MCP21
+Cre07.g339200			Chloroplast			
+Cre07.g356600						
+Cre07.g332150						
+Cre07.g317201			Chloroplast			
+Cre07.g349050			Chloroplast	GO:0005515;GO:0003723	protein binding;RNA binding	
+Cre07.g348400			Chloroplast			
+Cre07.g351100				GO:0019825	oxygen binding	
+Cre07.g325714			Chloroplast			
+Cre07.g327000						
+Cre07.g356200			Chloroplast			
+Cre07.g341553	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre07.g353200	GMM:30.5	signalling.G-proteins	Secretory pathway	GO:0005525	GTP binding	
+Cre07.g344200						
+Cre07.g331900	GMM:29.2.1.2.1.13	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S13		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS13
+Cre07.g354000			Secretory pathway			
+Cre07.g323150			Secretory pathway			TEH4
+Cre07.g316100						
+Cre07.g343300	GMM:3.3	minor CHO metabolism.sugar alcohols				
+Cre07.g338550			Secretory pathway	GO:0005515	protein binding	
+Cre07.g336100						
+Cre07.g345600			Mitochondrion			
+Cre07.g350300			Mitochondrion			
+Cre07.g331450						
+Cre07.g319000						
+Cre07.g319226			Secretory pathway			
+Cre07.g350000	GMM:11.9.2	lipid metabolism.lipid degradation.lipases		GO:0006629	lipid metabolic process	TGL14
+Cre07.g343466			Secretory pathway			
+Cre07.g345300	GMM:4.1.1;GMM:26.2;GMM:10.1;GMM:1.1	glycolysis.cytosolic branch.UGPase;misc.UDP glucosyl and glucoronyl transferases;cell wall.precursor synthesis;PS.lightreaction	Mitochondrion	GO:0070569;GO:0008152	uridylyltransferase activity;metabolic process	UAP1
+Cre07.g329767			Chloroplast			
+Cre07.g329950						
+Cre07.g349450						
+Cre07.g350500	GMM:29.1.9;GMM:29.1	protein.aa activation.valine-tRNA ligase;protein.aa activation	Mitochondrion	GO:0006438;GO:0006418;GO:0005737;GO:0005524;GO:0004832;GO:0004812;GO:0000166	valyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;valine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	TSV1
+Cre07.g322800						
+Cre07.g317800				GO:0006904;GO:0000145	vesicle docking involved in exocytosis;exocyst	
+Cre07.g351150	GMM:31.6.1.2;GMM:29.4	cell.motility.eukaryotes.deflagellation;protein.postranslational modification				FA2
+Cre07.g357550						
+Cre07.g329783						
+Cre07.g325755			Chloroplast			
+Cre07.g349152	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)		GO:0046983	protein dimerization activity	
+Cre07.g326200						
+Cre07.g334650	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0046872	metal ion binding	
+Cre07.g321750			Secretory pathway			
+Cre07.g342200						IFT70
+Cre07.g339450						
+Cre07.g340700	GMM:33.99	development.unspecified	Secretory pathway			
+Cre07.g348700				GO:0006396	RNA processing	
+Cre07.g345150				GO:0071929;GO:0019799;GO:0005874	alpha-tubulin acetylation;tubulin N-acetyltransferase activity;microtubule	
+Cre07.g352450	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast			
+Cre07.g343626						
+Cre07.g346950						
+Cre07.g319350	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g340200	GMM:1.1.99.1;GMM:1.1.40	PS.lightreaction.unspecified.TEF;PS.lightreaction.cyclic electron flow-chlororespiration	Chloroplast			PGRL1
+Cre07.g333900	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOA8
+Cre07.g352750	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	MRS3
+Cre07.g327850			Mitochondrion			
+Cre07.g341750			Chloroplast			
+Cre07.g325700	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
+Cre07.g344771			Secretory pathway			
+Cre07.g351600	GMM:27.1.2	RNA.processing.RNA helicase	Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL40
+Cre07.g330350			Chloroplast			OPR115
+Cre07.g353837						
+Cre07.g350600	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway			CSG7
+Cre07.g338665	GMM:28.2	DNA.repair	Chloroplast			
+Cre07.g325725	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Mitochondrion			
+Cre07.g325734	GMM:23.4.10	nucleotide metabolism.phosphotransfer and pyrophosphatases.nucleoside diphosphate kinase	Chloroplast	GO:0006241;GO:0006228;GO:0006183;GO:0006165;GO:0004550	CTP biosynthetic process;UTP biosynthetic process;GTP biosynthetic process;nucleoside diphosphate phosphorylation;nucleoside diphosphate kinase activity	FAP340
+Cre07.g326600	GMM:21.1.1;GMM:21.1	redox.thioredoxin.PDIL;redox.thioredoxin		GO:0045454	cell redox homeostasis	PDI6
+Cre07.g316150			Secretory pathway			
+Cre07.g313650			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre07.g322450	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	hlm13
+Cre07.g314200						
+Cre07.g313900			Mitochondrion			
+Cre07.g317550			Mitochondrion			
+Cre07.g346450			Mitochondrion			
+Cre07.g330400				GO:0008076;GO:0006813;GO:0005249	voltage-gated potassium channel complex;potassium ion transport;voltage-gated potassium channel activity	KCN1
+Cre07.g353350	GMM:27.2	RNA.transcription		GO:0006352	"DNA-templated transcription, initiation"	
+Cre07.g336500			Mitochondrion			OPR114
+Cre07.g322050			Mitochondrion			
+Cre07.g339750	GMM:19.20;GMM:19.2	tetrapyrrole synthesis.ferrochelatase;tetrapyrrole synthesis.glu-tRNA reductase	Chloroplast	GO:0006783;GO:0004325	heme biosynthetic process;ferrochelatase activity	HEM2
+Cre07.g342402			Mitochondrion			
+Cre07.g333500						
+Cre07.g327200			Secretory pathway			
+Cre07.g322500	GMM:29.2.1.99.2.19	protein.synthesis.ribosomal protein.unknown.large subunit.L19	Mitochondrion	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL19
+Cre07.g325709			Mitochondrion			
+Cre07.g342100						
+Cre07.g333950	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole		GO:0016192;GO:0006904	vesicle-mediated transport;vesicle docking involved in exocytosis	VPS45
+Cre07.g314650	GMM:28.2	DNA.repair	Chloroplast	GO:0009432;GO:0006281;GO:0005524;GO:0003697	SOS response;DNA repair;ATP binding;single-stranded DNA binding	RECA
+Cre07.g331750						
+Cre07.g324100				GO:0055114	oxidation-reduction process	
+Cre07.g344550	GMM:13.1.5.1.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase	Chloroplast	GO:0055114;GO:0051287;GO:0016616;GO:0008152	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process"	
+Cre07.g328200	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP6
+Cre07.g318600	GMM:29.6.2.1	protein.folding.chaperones and co-chaperones.small HSPs				HSP22H
+Cre07.g314700			Mitochondrion	GO:0006281	DNA repair	
+Cre07.g335850			Mitochondrion			
+Cre07.g316526	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase	Mitochondrion			
+Cre07.g335050	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway			
+Cre07.g337300	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	STD1
+Cre07.g325737	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				
+Cre07.g329500	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0005515;GO:0004252	proteolysis;protein binding;serine-type endopeptidase activity	SUB1
+Cre07.g315400			Mitochondrion	GO:0005525	GTP binding	NOA2
+Cre07.g332901						
+Cre07.g356970						
+Cre07.g338900	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0003676	nucleic acid binding	
+Cre07.g319900	GMM:28.99	DNA.unspecified		GO:0003723;GO:0000178	RNA binding;exosome (RNase complex)	RRP40
+Cre07.g338350			Chloroplast			CPLD50
+Cre07.g343050						
+Cre07.g315650						
+Cre07.g335900	GMM:29.5	protein.degradation	Secretory pathway			
+Cre07.g357350	GMM:30.1	signalling.in sugar and nutrient physiology	Chloroplast	GO:0030234;GO:0006808	enzyme regulator activity;regulation of nitrogen utilization	GLB1
+Cre07.g357900	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0051082;GO:0006457;GO:0005783;GO:0005509	unfolded protein binding;protein folding;endoplasmic reticulum;calcium ion binding	
+Cre07.g336600	GMM:29.7.3;GMM:26.3	"protein.glycosylation.mannosyl-oligosaccharide alpha-1,2-mannosidase;misc.gluco-, galacto- and mannosidases"	Secretory pathway	GO:0016020;GO:0005509;GO:0004571	"membrane;calcium ion binding;mannosyl-oligosaccharide 1,2-alpha-mannosidase activity"	MAN1
+Cre07.g334851	GMM:29.6.2.6	protein.folding.chaperones and co-chaperones.co-chaperones	Mitochondrion	GO:0008270	zinc ion binding	HEP1
+Cre07.g320100			Mitochondrion			
+Cre07.g324350			Mitochondrion			
+Cre07.g353000	GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4	cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g349950	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0051090;GO:0006352;GO:0005634	"regulation of sequence-specific DNA binding transcription factor activity;DNA-templated transcription, initiation;nucleus"	
+Cre07.g337900			Chloroplast			
+Cre07.g312817			Secretory pathway			
+Cre07.g320400			Chloroplast			ELIP4
+Cre07.g351300	GMM:29.1	protein.aa activation				
+Cre07.g344150						
+Cre07.g328750						
+Cre07.g345700			Chloroplast			COQ10
+Cre07.g320900			Mitochondrion			
+Cre07.g354301	GMM:26.23	misc.rhodanese	Chloroplast			RDP1
+Cre07.g342450	GMM:28.1;GMM:27.1.19	DNA.synthesis/chromatin structure;RNA.processing.ribonucleases				
+Cre07.g334575			Mitochondrion			
+Cre07.g331114			Chloroplast			
+Cre07.g319050						
+Cre07.g349750			Secretory pathway			
+Cre07.g343534	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
+Cre07.g356400	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				POC7
+Cre07.g326300						
+Cre07.g325300			Chloroplast			
+Cre07.g322350	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g339550						FBB13
+Cre07.g355150	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZRT5
+Cre07.g329882	GMM:34.15;GMM:29.4	transport.potassium;protein.postranslational modification		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	VGK1
+Cre07.g325723	GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase	Secretory pathway	GO:0019205;GO:0006139;GO:0005524	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding	ADK1
+Cre07.g353700						
+Cre07.g332800						
+Cre07.g334550	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast			PSAO
+Cre07.g343900			Chloroplast			
+Cre07.g357576						
+Cre07.g356700						
+Cre07.g316800						
+Cre07.g327400	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0055114;GO:0008137	oxidation-reduction process;NADH dehydrogenase (ubiquinone) activity	NUO9
+Cre07.g341555	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast			
+Cre07.g347500						OPR31
+Cre07.g323650						
+Cre07.g344260						
+Cre07.g318350	GMM:34.99	transport.misc				CGL64
+Cre07.g354050						
+Cre07.g320950	GMM:27.3.2	RNA.regulation of transcription.alfin-like		GO:0042393;GO:0006355	"histone binding;regulation of transcription, DNA-templated"	
+Cre07.g347200						
+Cre07.g321850	GMM:29.9;GMM:29.6.2.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones		GO:0051087;GO:0001671	chaperone binding;ATPase activator activity	AHA1
+Cre07.g317300	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPKKKK1
+Cre07.g349119			Mitochondrion			
+Cre07.g326900						
+Cre07.g321350						
+Cre07.g332550	GMM:29.5	protein.degradation	Secretory pathway	GO:0016021;GO:0004190	integral component of membrane;aspartic-type endopeptidase activity	PSL1
+Cre07.g347100	GMM:3.5	minor CHO metabolism.others		GO:0016853;GO:0005975	isomerase activity;carbohydrate metabolic process	
+Cre07.g323800						
+Cre07.g354650						
+Cre07.g313050			Mitochondrion			
+Cre07.g351550				GO:0005515	protein binding	
+Cre07.g325724	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004725	protein dephosphorylation;protein tyrosine phosphatase activity	PTP1
+Cre07.g326050	GMM:31.1	cell.organisation	Mitochondrion	GO:0008017;GO:0007018;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;ATP binding;microtubule motor activity	KIL8
+Cre07.g337700						
+Cre07.g355050			Mitochondrion			
+Cre07.g330050				GO:0046872	metal ion binding	
+Cre07.g312050			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre07.g343500	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			
+Cre07.g339104	GMM:34.16;GMM:29.4	transport.ABC transporters and multidrug resistance systems;protein.postranslational modification	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre07.g351350	GMM:23.1.2	nucleotide metabolism.synthesis.purine				CSG8
+Cre07.g348800	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases	Chloroplast			TAB1
+Cre07.g339600						
+Cre07.g354551						FAP65
+Cre07.g334950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g353300	GMM:34.9;GMM:34.17	transport.metabolite transporters at the mitochondrial membrane;transport.peroxisomes	Secretory pathway			MCP22
+Cre07.g350200			Secretory pathway			
+Cre07.g346050	GMM:19.12	tetrapyrrole synthesis.magnesium-protoporphyrin IX monomethyl ester (oxidative) cyclase	Chloroplast	GO:0055114;GO:0046872;GO:0016491	oxidation-reduction process;metal ion binding;oxidoreductase activity	CRD1
+Cre07.g342950			Secretory pathway			
+Cre07.g346917			Mitochondrion			
+Cre07.g353650				GO:0005515	protein binding	
+Cre07.g317400			Secretory pathway			
+Cre07.g332950	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Chloroplast			SFA1
+Cre07.g312002						
+Cre07.g314800						
+Cre07.g349540	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g318551	GMM:30.2.4;GMM:30.2.13;GMM:30.2.12;GMM:30.2.11;GMM:20.1.7;GMM:17.3.2.1	signalling.receptor kinases.leucine rich repeat IV;signalling.receptor kinases.leucine rich repeat XIII;signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;stress.biotic.PR-proteins;hormone metabolism.brassinosteroid.signal transduction.BRI	Secretory pathway	GO:0035556;GO:0016849;GO:0009190;GO:0005515	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;protein binding	
+Cre07.g317850				GO:0036064	ciliary basal body	FBB10
+Cre07.g352350	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion	GO:0006508;GO:0005524;GO:0004222	proteolysis;ATP binding;metalloendopeptidase activity	FHL3
+Cre07.g329700	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	RPT2
+Cre07.g330950	GMM:31.4;GMM:29.3.4.99	cell.vesicle transport;protein.targeting.secretory pathway.unspecified		GO:0015031;GO:0008565	protein transport;protein transporter activity	AP4S4
+Cre07.g351900	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g316450						
+Cre07.g327700	GMM:31.1;GMM:27.3.99	cell.organisation;RNA.regulation of transcription.unclassified	Chloroplast	GO:0008270	zinc ion binding	
+Cre07.g317450			Chloroplast			
+Cre07.g321250						
+Cre07.g316650	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g344500						
+Cre07.g328800			Chloroplast	GO:0005515	protein binding	NSG13
+Cre07.g312833			Secretory pathway			
+Cre07.g352850	GMM:29.2.1.1.4.2	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit	Chloroplast	GO:0015934;GO:0006412;GO:0003735	large ribosomal subunit;translation;structural constituent of ribosome	PRPL32
+Cre07.g337125						
+Cre07.g331100						PHC11
+Cre07.g347600			Mitochondrion	GO:0006310;GO:0006281;GO:0005524	DNA recombination;DNA repair;ATP binding	
+Cre07.g339350	GMM:16.1.1	secondary metabolism.isoprenoids.non-mevalonate pathway		GO:0018342;GO:0008318	protein prenylation;protein prenyltransferase activity	
+Cre07.g338050	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion			ASA3
+Cre07.g335350	GMM:35;GMM:27.3.99;GMM:16.4.1;GMM:13.2.6.2	not assigned;RNA.regulation of transcription.unclassified;secondary metabolism.N misc.alkaloid-like;amino acid metabolism.degradation.aromatic aa.tyrosine	Secretory pathway			
+Cre07.g341952						
+Cre07.g333050			Secretory pathway			
+Cre07.g326010						
+Cre07.g342800			Chloroplast			CGL16
+Cre07.g343700	GMM:8.1.5;GMM:8.1.1.2	TCA / organic transformation.TCA.2-oxoglutarate dehydrogenase;TCA / organic transformation.TCA.pyruvate DH.E2	Mitochondrion	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	OGD2
+Cre07.g331500	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			CLPR3
+Cre07.g350700						
+Cre07.g336200	GMM:29.5.11.5;GMM:29.5.11	protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin		GO:0005515	protein binding	
+Cre07.g339500			Secretory pathway			
+Cre07.g355433			Chloroplast			
+Cre07.g353100				GO:0005525	GTP binding	
+Cre07.g325760			Secretory pathway			MAW10
+Cre07.g319340	GMM:2.2.2.3	major CHO metabolism.degradation.starch.glucan water dikinase		GO:0016310;GO:0016301;GO:0005524	phosphorylation;kinase activity;ATP binding	
+Cre07.g356750				GO:0016020	membrane	
+Cre07.g357950				GO:0005515	protein binding	
+Cre07.g322400			Secretory pathway			
+Cre07.g345750			Mitochondrion	GO:0008080	N-acetyltransferase activity	
+Cre07.g312650			Chloroplast			
+Cre07.g344850	GMM:33.99;GMM:27.1	development.unspecified;RNA.processing		GO:0030145;GO:0016787;GO:0003723	manganese ion binding;hydrolase activity;RNA binding	
+Cre07.g334250	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
+Cre07.g348600			Chloroplast	GO:0016020;GO:0006810	membrane;transport	SULP1
+Cre07.g334400						EXN10
+Cre07.g324000			Mitochondrion			
+Cre07.g314000			Chloroplast			
+Cre07.g344050	GMM:33.99;GMM:29.2.2.3.4	development.unspecified;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins		GO:0032040;GO:0006364;GO:0005515	small-subunit processome;rRNA processing;protein binding	
+Cre07.g353400			Secretory pathway			
+Cre07.g353450	GMM:2.2.1.3;GMM:16.2.1.3;GMM:11.1.8	major CHO metabolism.degradation.sucrose.invertases;secondary metabolism.phenylpropanoids.lignin biosynthesis.4CL;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase		GO:0008152;GO:0003824	metabolic process;catalytic activity	ACS3
+Cre07.g325716	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006310;GO:0006281;GO:0005524;GO:0003910;GO:0003677	DNA recombination;DNA repair;ATP binding;DNA ligase (ATP) activity;DNA binding	DNL1
+Cre07.g357200	GMM:3.5;GMM:10.1.4	minor CHO metabolism.others;cell wall.precursor synthesis.UGD		GO:0055114;GO:0051287;GO:0016616;GO:0003979	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;UDP-glucose 6-dehydrogenase activity"	UGD1
+Cre07.g339700	GMM:34.16;GMM:29.8	transport.ABC transporters and multidrug resistance systems;protein.assembly and cofactor ligation	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	SUFC
+Cre07.g341350						
+Cre07.g342050	GMM:31.4	cell.vesicle transport				VTI3
+Cre07.g330000	GMM:17.4.2	hormone metabolism.cytokinin.signal transduction	Mitochondrion			
+Cre07.g356316			Mitochondrion			
+Cre07.g343650	GMM:3.3	minor CHO metabolism.sugar alcohols				
+Cre07.g312580						
+Cre07.g313400			Mitochondrion			
+Cre07.g315750	GMM:26.8;GMM:16.4.1;GMM:11.1.4;GMM:1.1.99.1	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;secondary metabolism.N misc.alkaloid-like;lipid metabolism.FA synthesis and FA elongation.ACP oxoacyl reductase;PS.lightreaction.unspecified.TEF"	Chloroplast			TEF16
+Cre07.g325200			Secretory pathway			
+Cre07.g349100	GMM:27.1.2	RNA.processing.RNA helicase	Secretory pathway	GO:0004386	helicase activity	HEL39
+Cre07.g325752			Mitochondrion			
+Cre07.g343101						
+Cre07.g318200				GO:0005515	protein binding	CGLD34
+Cre07.g326550			Mitochondrion			
+Cre07.g354200	GMM:4.2.8;GMM:4.1.8;GMM:1.3.4	glycolysis.plastid branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH);glycolysis.cytosolic branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH);PS.calvin cycle.GAP		GO:0055114;GO:0016620	"oxidation-reduction process;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor"	GAP2
+Cre07.g329150	GMM:27.1.2;GMM:27.1	RNA.processing.RNA helicase;RNA.processing	Secretory pathway	GO:0005524;GO:0004386;GO:0003676	ATP binding;helicase activity;nucleic acid binding	
+Cre07.g329861			Mitochondrion			
+Cre07.g332066			Mitochondrion			
+Cre07.g319950			Chloroplast			
+Cre07.g345200						
+Cre07.g325710			Chloroplast			
+Cre07.g330550			Mitochondrion			
+Cre07.g350550				GO:0006281;GO:0004518	DNA repair;nuclease activity	
+Cre07.g349300	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase	Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL41
+Cre07.g337800	GMM:29.2.1	protein.synthesis.ribosomal protein	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS17
+Cre07.g329050	GMM:34.3	transport.amino acids		GO:0016020;GO:0015171;GO:0003333	membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport	AOC5
+Cre07.g355600	GMM:21.1	redox.thioredoxin		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NTR3
+Cre07.g325731				GO:0016021	integral component of membrane	
+Cre07.g332450				GO:0009228	thiamine biosynthetic process	
+Cre07.g324211			Secretory pathway;Chloroplast			
+Cre07.g324450						
+Cre07.g346300			Secretory pathway			
+Cre07.g342000	GMM:29.4	protein.postranslational modification		GO:0006464;GO:0005515;GO:0004719	cellular protein modification process;protein binding;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	
+Cre07.g337450			Secretory pathway			CGL75
+Cre07.g325751						FAP258
+Cre07.g357400						
+Cre07.g322250	GMM:18.1;GMM:18	Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism		GO:0006777	Mo-molybdopterin cofactor biosynthetic process	CNX6
+Cre07.g346550	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g319200			Mitochondrion			
+Cre07.g322600			Chloroplast			
+Cre07.g320350	GMM:30.99;GMM:29.9;GMM:20.2.1	signalling.unspecified;protein.co-chaperones;stress.abiotic.heat	Chloroplast			CDJ5
+Cre07.g332700	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g335800						TWI1
+Cre07.g328150	GMM:21.1.1;GMM:21.1	redox.thioredoxin.PDIL;redox.thioredoxin	Secretory pathway	GO:0045454	cell redox homeostasis	PDI4
+Cre07.g337000	GMM:27.3.99	RNA.regulation of transcription.unclassified				CSD3
+Cre07.g351000			Mitochondrion	GO:0005515	protein binding	
+Cre07.g320500			Secretory pathway			OPR29
+Cre07.g327550			Chloroplast			
+Cre07.g347300				GO:0003676	nucleic acid binding	
+Cre07.g355950						
+Cre07.g349650			Secretory pathway			
+Cre07.g356850				GO:0006950	response to stress	
+Cre07.g319150				GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	PTP4
+Cre07.g348010			Chloroplast			
+Cre07.g322950	GMM:20.2.5	stress.abiotic.light	Chloroplast	GO:0008152;GO:0006741;GO:0003951	metabolic process;NADP biosynthetic process;NAD+ kinase activity	NADK1
+Cre07.g317601			Chloroplast			
+Cre07.g325736	GMM:31.1	cell.organisation	Chloroplast			
+Cre07.g342550	GMM:28.1;GMM:26.6;GMM:13.1.3.4.12	DNA.synthesis/chromatin structure;misc.O-methyl transferases;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase	Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm28
+Cre07.g351050				GO:0015031;GO:0006464	protein transport;cellular protein modification process	VPS23
+Cre07.g346650						
+Cre07.g316400	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			
+Cre07.g319500	GMM:15.2	"metal handling.binding, chelation and storage"	Mitochondrion	GO:0046938;GO:0046872;GO:0016756;GO:0010038	phytochelatin biosynthetic process;metal ion binding;glutathione gamma-glutamylcysteinyltransferase activity;response to metal ion	
+Cre07.g325550	GMM:11.3.5	lipid metabolism.phospholipid synthesis.diacylglycerol kinase		GO:0016301;GO:0007205;GO:0004143	kinase activity;protein kinase C-activating G-protein coupled receptor signaling pathway;diacylglycerol kinase activity	KDG3
+Cre07.g314866	GMM:26.3;GMM:10.6.2	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Mitochondrion			EBM4
+Cre07.g335700			Chloroplast			
+Cre07.g314351	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	
+Cre07.g336450			Chloroplast			
+Cre07.g324550	GMM:25;GMM:13.1.5.1.1	C1-metabolism;amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase	Chloroplast	GO:0055114;GO:0051287;GO:0016616;GO:0008152;GO:0004616	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process;phosphogluconate dehydrogenase (decarboxylating) activity"	LDH1
+Cre07.g339250	GMM:27.3.67;GMM:27.1	RNA.regulation of transcription.putative transcription regulator;RNA.processing				
+Cre07.g317000						
+Cre07.g330150						
+Cre07.g340350	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion			ASA1
+Cre07.g357033			Secretory pathway			
+Cre07.g323850	GMM:26.13	misc.acid and other phosphatases				
+Cre07.g314450			Chloroplast			CGL33B
+Cre07.g346850						
+Cre07.g321150	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383	intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity	CYG15
+Cre07.g332350						
+Cre07.g341550	GMM:29.6.2.6;GMM:29.6	protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding				P23
+Cre07.g315900	GMM:34.99;GMM:29.3.4	transport.misc;protein.targeting.secretory pathway		GO:0016021;GO:0006810	integral component of membrane;transport	
+Cre07.g345850						
+Cre07.g343567			Secretory pathway			
+Cre07.g327950			Secretory pathway			MAW9
+Cre07.g335250						
+Cre07.g352950						
+Cre07.g354500	GMM:27.3.23;GMM:20.2.1	RNA.regulation of transcription.heat-shock transcription factor family (HSF);stress.abiotic.heat		GO:0043565;GO:0006355;GO:0005634;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding"	HSF2
+Cre07.g318950			Mitochondrion	GO:0005515	protein binding	
+Cre07.g312250				GO:0005524;GO:0004003;GO:0003677	ATP binding;ATP-dependent DNA helicase activity;DNA binding	
+Cre07.g339926			Chloroplast			
+Cre07.g334025			Chloroplast			
+Cre07.g337950			Mitochondrion			
+Cre07.g340300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g325730						
+Cre07.g344702						
+Cre07.g324222			Secretory pathway			
+Cre07.g348550	GMM:11.9.2	lipid metabolism.lipid degradation.lipases		GO:0006629	lipid metabolic process	TGL13
+Cre07.g315150	GMM:29.8;GMM:1.1.1.3	protein.assembly and cofactor ligation;PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane	GO:0005506	iron ion binding	RBD1
+Cre07.g357450						
+Cre07.g337200			Mitochondrion			
+Cre07.g333450	GMM:11.8.3	"lipid metabolism.exotics (steroids, squalene etc).UDP-glucose:sterol glucosyltransferase"	Secretory pathway	GO:0030259;GO:0016758;GO:0008152;GO:0005975	"lipid glycosylation;transferase activity, transferring hexosyl groups;metabolic process;carbohydrate metabolic process"	
+Cre07.g353230	GMM:3.5	minor CHO metabolism.others	Mitochondrion			
+Cre07.g313164	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	
+Cre07.g325754	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g354450	GMM:26.1;GMM:17.2.2;GMM:16.1.4.7	misc.misc2;hormone metabolism.auxin.signal transduction;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Mitochondrion	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743B3
+Cre07.g317626						
+Cre07.g355200	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005634;GO:0000808	DNA replication;nucleus;origin recognition complex	ORC5
+Cre07.g327650						
+Cre07.g325743	GMM:34.21;GMM:21.4	transport.calcium;redox.glutaredoxins		GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	GRX3
+Cre07.g333605			Chloroplast			
+Cre07.g336700			Secretory pathway			
+Cre07.g318800	GMM:29.6.2.1;GMM:20.2.1	protein.folding.chaperones and co-chaperones.small HSPs;stress.abiotic.heat	Cytosol			HSP22A
+Cre07.g323550			Chloroplast	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS8
+Cre07.g358050			Secretory pathway	GO:0005515	protein binding	
+Cre07.g344350	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0016020;GO:0008236;GO:0006508	membrane;serine-type peptidase activity;proteolysis	TPP1
+Cre07.g336350	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre07.g331350						
+Cre07.g341900						
+Cre07.g345100			Mitochondrion			
+Cre07.g350850						
+Cre07.g335600	GMM:34.4;GMM:1.5.3	transport.nitrate;PS.carbon concentrating mechanism.algal		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NAR1.4
+Cre07.g325742						
+Cre07.g314676						
+Cre07.g344950	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA9
+Cre07.g352000			Secretory pathway			
+Cre07.g313750			Secretory pathway			
+Cre07.g353900						
+Cre07.g318450	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Chloroplast	GO:0006886;GO:0005784	intracellular protein transport;Sec61 translocon complex	SEC61B
+Cre07.g340900	GMM:13.2.3.5.1;GMM:13.2.3.5	amino acid metabolism.degradation.aspartate family.lysine.lysine decarboxylase;amino acid metabolism.degradation.aspartate family.lysine	Chloroplast			
+Cre07.g357650				GO:0016568;GO:0005634	chromatin modification;nucleus	
+Cre07.g344000			Chloroplast			
+Cre07.g325759	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g349900			Mitochondrion			
+Cre07.g345524						
+Cre07.g346698			Secretory pathway			PHC75
+Cre07.g350626			Mitochondrion			
+Cre07.g325980						
+Cre07.g336000			Mitochondrion	GO:0016787	hydrolase activity	
+Cre07.g329350						
+Cre07.g318250	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	HLM12
+Cre07.g320700	GMM:30.1.1;GMM:23.1.2	signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine		GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383	intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity	CYG11
+Cre07.g317100						
+Cre07.g327150	GMM:29.5.11.4.3.2;GMM:27.3.57	protein.degradation.ubiquitin.E3.SCF.FBOX;RNA.regulation of transcription.JUMONJI family				
+Cre07.g325718	GMM:29.3.1	protein.targeting.nucleus				
+Cre07.g325712	GMM:29.2.1.2.2.24	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L24		GO:0042254	ribosome biogenesis	
+Cre07.g322100	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin				UBQ5
+Cre07.g320200	GMM:26.16	misc.myrosinases-lectin-jacalin				
+Cre07.g338650			Mitochondrion			CSC3
+Cre07.g352600	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				
+Cre07.g329300			Chloroplast	GO:0055085;GO:0016020	transmembrane transport;membrane	MSC1
+Cre07.g342650	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
+Cre07.g341153						
+Cre07.g349500	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0005515	protein binding	
+Cre07.g355350	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0055114	oxidation-reduction process	
+Cre07.g325101			Mitochondrion			
+Cre07.g327226						
+Cre07.g332750						
+Cre07.g326100			Chloroplast			
+Cre07.g341250			Chloroplast			
+Cre07.g343400			Chloroplast			
+Cre07.g319701			Chloroplast	GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre07.g330650			Chloroplast	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
+Cre07.g343789						
+Cre07.g319850	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g341552			Chloroplast			
+Cre07.g344400	GMM:13.1.5.1.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase	Chloroplast	GO:0055114;GO:0051287;GO:0016616;GO:0008152;GO:0004616	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process;phosphogluconate dehydrogenase (decarboxylating) activity"	
+Cre07.g350100	GMM:33.99	development.unspecified	Mitochondrion	GO:0006355	"regulation of transcription, DNA-templated"	
+Cre07.g350950			Chloroplast			
+Cre07.g348900						DNJ19
+Cre07.g354850			Mitochondrion			
+Cre07.g328900	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CDPK9
+Cre07.g355850			Chloroplast			
+Cre07.g356250	GMM:26.10;GMM:17.3.1.1.5	misc.cytochrome P450;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.metabolic regulation	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP741A1
+Cre07.g355500			Secretory pathway			
+Cre07.g350450				GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre07.g328050			Secretory pathway			
+Cre07.g356950			Chloroplast			
+Cre07.g349200						
+Cre07.g332025			Chloroplast			
+Cre07.g345400						FAP70
+Cre07.g339876			Chloroplast			
+Cre07.g340000						
+Cre07.g347850	GMM:28.1.3	DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0051726;GO:0034729;GO:0031151;GO:0018024	regulation of cell cycle;histone H3-K79 methylation;histone methyltransferase activity (H3-K79 specific);histone-lysine N-methyltransferase activity	
+Cre07.g328500				GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS17
+Cre07.g316992	GMM:34.99;GMM:34.1;GMM:27.3.35	transport.misc;transport.p- and v-ATPases;RNA.regulation of transcription.bZIP transcription factor family	Secretory pathway;Chloroplast	GO:0046872;GO:0016021;GO:0015914;GO:0005524;GO:0004012;GO:0000287;GO:0000166	metal ion binding;integral component of membrane;phospholipid transport;ATP binding;phospholipid-translocating ATPase activity;magnesium ion binding;nucleotide binding	
+Cre07.g347000	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g327450	GMM:29.9	protein.co-chaperones	Chloroplast			DNJ34
+Cre07.g342352				GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	
+Cre07.g314100	GMM:29.2.1.2.2.99	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.unknown				
+Cre07.g348300			Secretory pathway			
+Cre07.g347800						
+Cre07.g320600			Mitochondrion			
+Cre07.g356980			Chloroplast			
+Cre07.g351400				GO:0006260;GO:0005634	DNA replication;nucleus	MCM10
+Cre07.g329217						
+Cre07.g316000	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion	GO:0006810;GO:0005622	transport;intracellular	
+Cre07.g337582						
+Cre07.g326700						
+Cre07.g350350						FAP217
+Cre07.g339050	GMM:31.1.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.actin.actin depolymerizing factors;cell.organisation		GO:0030042;GO:0015629;GO:0005622;GO:0003779	actin filament depolymerization;actin cytoskeleton;intracellular;actin binding	NSG11
+Cre07.g313500						
+Cre07.g325450						
+Cre07.g326450	GMM:17.2.2	hormone metabolism.auxin.signal transduction		GO:0035091	phosphatidylinositol binding	VPS5B
+Cre07.g331600			Secretory pathway			
+Cre07.g324800	GMM:26.11.1;GMM:26.11;GMM:16.8.3.1;GMM:16.8.3	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols.dihydroflavonol 4-reductase;secondary metabolism.flavonoids.dihydroflavonols		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SNE6
+Cre07.g319001			Mitochondrion			
+Cre07.g325950	GMM:18.8	Co-factor and vitamine metabolism.ubiquinone				ZSP1
+Cre07.g332600	GMM:29.5	protein.degradation	Mitochondrion			
+Cre07.g315250						CSG5
+Cre07.g333100			Secretory pathway			
+Cre07.g339400				GO:0055114	oxidation-reduction process	
+Cre07.g320250						
+Cre07.g328300			Secretory pathway			
+Cre07.g326250			Secretory pathway			
+Cre07.g331200			Mitochondrion			
+Cre07.g335400	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre07.g325600	GMM:21.4	redox.glutaredoxins	Mitochondrion	GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	GRX5
+Cre07.g337914			Mitochondrion			
+Cre07.g332275	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)				
+Cre07.g337676			Mitochondrion			
+Cre07.g355650	GMM:34.5	transport.ammonium		GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	AMT6
+Cre07.g317250	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis	Secretory pathway	GO:0019028;GO:0008061;GO:0006030;GO:0005975;GO:0005576;GO:0004553	"viral capsid;chitin binding;chitin metabolic process;carbohydrate metabolic process;extracellular region;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI5
+Cre07.g332786	GMM:29.5.4;GMM:29.5	protein.degradation.aspartate protease;protein.degradation	Secretory pathway	GO:0016021;GO:0004190	integral component of membrane;aspartic-type endopeptidase activity	PSL2
+Cre07.g324300			Secretory pathway			
+Cre07.g328226						
+Cre07.g329800			Mitochondrion			HSFL
+Cre07.g336800						
+Cre07.g331962			Chloroplast			
+Cre07.g345550			Chloroplast			
+Cre07.g322376			Chloroplast			
+Cre07.g328550	GMM:29.3.4.3;GMM:14.1	protein.targeting.secretory pathway.vacuole;S-assimilation.APS				VPS18
+Cre07.g316850	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0006260;GO:0005524;GO:0003677	DNA replication;ATP binding;DNA binding	MCM4
+Cre07.g323500						
+Cre07.g354075			Chloroplast			
+Cre07.g340750						EXN11
+Cre07.g336550			Chloroplast			
+Cre07.g330450	GMM:29.2.1.1.1.2.24	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L24		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL24
+Cre07.g338250	GMM:29.1.40;GMM:29.1.15	protein.aa activation.bifunctional aminoacyl-tRNA synthetase;protein.aa activation.proline-tRNA ligase	Secretory pathway	GO:0002161	aminoacyl-tRNA editing activity	
+Cre07.g330800			Mitochondrion			OPR30
+Cre07.g324650						
+Cre07.g322750						
+Cre07.g315500						
+Cre07.g354700			Chloroplast			CSC4
+Cre07.g351500						
+Cre07.g350050			Secretory pathway			
+Cre07.g337850	GMM:34.99	transport.misc		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
+Cre07.g318300						
+Cre07.g330700				GO:0005515	protein binding	FAP91
+Cre07.g345001			Chloroplast			
+Cre07.g353150				GO:0005525	GTP binding	
+Cre07.g325720			Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre07.g325715	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion			
+Cre07.g329000	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			CPLD47
+Cre07.g353950	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure		GO:0006281;GO:0004518	DNA repair;nuclease activity	
+Cre07.g313850	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others		GO:0005515	protein binding	
+Cre07.g356900			Secretory pathway			
+Cre07.g354350	GMM:26.1;GMM:16.1.4.7	misc.misc2;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743B1
+Cre07.g319002			Secretory pathway			
+Cre07.g331401			Chloroplast			
+Cre07.g323200						
+Cre07.g342150	GMM:19.2	tetrapyrrole synthesis.glu-tRNA reductase	Chloroplast	GO:0055114;GO:0050661;GO:0033014;GO:0008883	oxidation-reduction process;NADP binding;tetrapyrrole biosynthetic process;glutamyl-tRNA reductase activity	HEMA1
+Cre07.g340650			Secretory pathway			CGL149
+Cre07.g326950	GMM:29.1.10;GMM:29.1;GMM:27.4	protein.aa activation.methionine-tRNA ligase;protein.aa activation;RNA.RNA binding		GO:0000049	tRNA binding	
+Cre07.g350451	GMM:33.99	development.unspecified		GO:0005515	protein binding	
+Cre07.g323900	GMM:26.13	misc.acid and other phosphatases				
+Cre07.g336950	GMM:2.2.2.2	major CHO metabolism.degradation.starch.starch phosphorylase	Chloroplast	GO:0008184;GO:0005975	glycogen phosphorylase activity;carbohydrate metabolic process	PHO2
+Cre07.g338950						
+Cre07.g351650						FAP20
+Cre07.g313185	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899	"transcription, DNA-templated;DNA-directed RNA polymerase activity"	
+Cre07.g346933			Mitochondrion			
+Cre07.g352300	GMM:27.1	RNA.processing	Chloroplast	GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
+Cre07.g352500						
+Cre07.g315350	GMM:30.5;GMM:3.5;GMM:29.5.7	signalling.G-proteins;minor CHO metabolism.others;protein.degradation.metalloprotease	Chloroplast			
+Cre07.g355750				GO:0005515	protein binding	
+Cre07.g325747						
+Cre07.g330300	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre07.g320800			Mitochondrion	GO:0005634	nucleus	
+Cre07.g357800	GMM:29.8	protein.assembly and cofactor ligation	Chloroplast			CCDA1
+Cre07.g321600			Secretory pathway			
+Cre07.g321400	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway	GO:0016021	integral component of membrane	MAW6
+Cre07.g347700				GO:0000184	"nuclear-transcribed mRNA catabolic process, nonsense-mediated decay"	
+Cre07.g348650	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG65
+Cre07.g313000			Secretory pathway	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
+Cre07.g344800	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB33
+Cre07.g349000	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g325757						
+Cre07.g341154						
+Cre07.g342750				GO:0016491	oxidoreductase activity	
+Cre07.g334750	GMM:29.4;GMM:26.13	protein.postranslational modification;misc.acid and other phosphatases	Chloroplast	GO:0003824	catalytic activity	
+Cre07.g312701	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast			
+Cre07.g314950	GMM:27.3.50	RNA.regulation of transcription.general transcription		GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPC34
+Cre07.g354750			Chloroplast			
+Cre07.g325741	GMM:34.7	transport.phosphate		GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB2
+Cre07.g327900			Secretory pathway			
+Cre07.g339950						
+Cre07.g323750			Mitochondrion	GO:0008897;GO:0000287	holo-[acyl-carrier-protein] synthase activity;magnesium ion binding	
+Cre07.g335200	GMM:29.2.4	protein.synthesis.elongation	Chloroplast	GO:0005525	GTP binding	EFG12
+Cre07.g328450						
+Cre07.g327079	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0010181	FMN binding	
+Cre07.g338300			Mitochondrion	GO:0005515	protein binding	FBB14
+Cre07.g319320	GMM:17.5.1	hormone metabolism.ethylene.synthesis-degradation	Chloroplast			
+Cre07.g349167						
+Cre07.g325812			Secretory pathway			MAW1
+Cre07.g313600						CGL33A
+Cre07.g329476			Chloroplast			
+Cre07.g342350	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE14
+Cre07.g346250			Mitochondrion			
+Cre07.g346350						
+Cre07.g321000	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190;GO:0005515	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;protein binding	CYG14
+Cre07.g356150	GMM:29.5	protein.degradation	Secretory pathway	GO:0071586;GO:0008233;GO:0006508;GO:0004222	CAAX-box protein processing;peptidase activity;proteolysis;metalloendopeptidase activity	
+Cre07.g342920	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation		GO:0030145;GO:0004177	manganese ion binding;aminopeptidase activity	
+Cre07.g325026	GMM:26.1	misc.misc2				
+Cre07.g346750			Chloroplast	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS14
+Cre07.g312350	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006269;GO:0003896	"DNA replication, synthesis of RNA primer;DNA primase activity"	POLA4
+Cre07.g323326			Mitochondrion			
+Cre07.g331700			Secretory pathway			
+Cre07.g325350	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN10-1
+Cre07.g344634						
+Cre07.g327300			Mitochondrion			
+Cre07.g318750	GMM:23.1.2.5	nucleotide metabolism.synthesis.purine.AIR synthase	Chloroplast			PURM
+Cre07.g355250	GMM:31.2;GMM:29.4.1;GMM:29.4	cell.division;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	WEE1
+Cre07.g356450			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre07.g334150			Mitochondrion	GO:0005515	protein binding	
+Cre07.g317950			Chloroplast			
+Cre07.g351950	GMM:34.12	transport.metal		GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZRT1
+Cre07.g344300						
+Cre07.g348200	GMM:2.1.1.2	major CHO metabolism.synthesis.sucrose.SPP	Secretory pathway			SPH3
+Cre07.g333816	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre07.g333570			Chloroplast			
+Cre07.g340100	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0008270	zinc ion binding	MOT13
+Cre07.g357500			Mitochondrion			
+Cre07.g314751						
+Cre07.g348450	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g351750	GMM:29.2.2.3.99	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc				
+Cre07.g313250	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre07.g346418	GMM:27.3.27	RNA.regulation of transcription.NAC domain transcription factor family				
+Cre07.g318426						
+Cre07.g356650			Chloroplast			
+Cre07.g320050	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK1
+Cre07.g345650			Chloroplast			
+Cre07.g357600						
+Cre07.g313950			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre07.g349966	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				
+Cre07.g317350			Chloroplast			
+Cre07.g319100	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Mitochondrion	GO:0005515	protein binding	TEF18
+Cre07.g346150						
+Cre07.g343850	GMM:35.1.3	not assigned.no ontology.armadillo/beta-catenin repeat family protein				
+Cre07.g334600						CGL20
+Cre07.g356350	GMM:16.1.1.1	secondary metabolism.isoprenoids.non-mevalonate pathway.DXS	Chloroplast	GO:0016114;GO:0008661;GO:0008152;GO:0003824	terpenoid biosynthetic process;1-deoxy-D-xylulose-5-phosphate synthase activity;metabolic process;catalytic activity	DXS1
+Cre07.g327317			Chloroplast			
+Cre07.g320850	GMM:26.3	"misc.gluco-, galacto- and mannosidases"		GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
+Cre07.g325717			Chloroplast			
+Cre07.g331850						
+Cre07.g317438						
+Cre07.g326350	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
+Cre07.g312900	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	
+Cre07.g312500	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Secretory pathway			
+Cre07.g355100	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZIP1
+Cre07.g324400	GMM:29.5;GMM:27.3.71	protein.degradation;RNA.regulation of transcription.SNF7		GO:0007034	vacuolar transport	VPS24
+Cre07.g351825	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK12
+Cre07.g328700			Secretory pathway			
+Cre07.g341554	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
+Cre07.g347450			Mitochondrion			
+Cre07.g318850	GMM:29.6.2.1	protein.folding.chaperones and co-chaperones.small HSPs				HSP22B
+Cre07.g312400	GMM:11.3.5	lipid metabolism.phospholipid synthesis.diacylglycerol kinase		GO:0016301;GO:0007205;GO:0004143	kinase activity;protein kinase C-activating G-protein coupled receptor signaling pathway;diacylglycerol kinase activity	KDG1
+Cre07.g334450			Chloroplast			
+Cre07.g332650			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NCT1
+Cre07.g315050	GMM:29.5	protein.degradation		GO:0008242;GO:0006541;GO:0003824	omega peptidase activity;glutamine metabolic process;catalytic activity	GGH1
+Cre07.g325762				GO:0005524;GO:0005515	ATP binding;protein binding	DRC11
+Cre07.g344172						
+Cre07.g347150						
+Cre07.g354150						MFT22
+Cre07.g318050	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family		GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre07.g344250						CSG9
+Cre07.g329750						
+Cre07.g341925			Mitochondrion			
+Cre07.g350900						
+Cre07.g352800			Mitochondrion			
+Cre07.g321300			Chloroplast			
+Cre07.g344186						
+Cre07.g326833			Secretory pathway			
+Cre07.g337750	GMM:26.3;GMM:10.6.2	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"		GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	EBM5
+Cre07.g342552	GMM:28.1	DNA.synthesis/chromatin structure				
+Cre07.g342551			Chloroplast			
+Cre07.g351200						
+Cre07.g338700	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion			
+Cre07.g331150	GMM:26.7;GMM:20.2.3	"misc.oxidases - copper, flavone etc;stress.abiotic.drought/salt"	Mitochondrion	GO:0055114;GO:0020037;GO:0016491;GO:0006979;GO:0005507;GO:0004601	oxidation-reduction process;heme binding;oxidoreductase activity;response to oxidative stress;copper ion binding;peroxidase activity	
+Cre07.g349800			Mitochondrion			
+Cre07.g329900	GMM:17.4.2	hormone metabolism.cytokinin.signal transduction	Secretory pathway	GO:0035556;GO:0016849;GO:0016020;GO:0009190;GO:0007165;GO:0005515;GO:0000160;GO:0000155	intracellular signal transduction;phosphorus-oxygen lyase activity;membrane;cyclic nucleotide biosynthetic process;signal transduction;protein binding;phosphorelay signal transduction system;phosphorelay sensor kinase activity	COP8
+Cre07.g340550						
+Cre07.g325250			Secretory pathway			
+Cre07.g315100						
+Cre07.g341700	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g330900						
+Cre07.g332500						AXT2
+Cre07.g345450						
+Cre07.g325722				GO:0006355;GO:0003713;GO:0003677	"regulation of transcription, DNA-templated;transcription coactivator activity;DNA binding"	
+Cre07.g348750			Mitochondrion	GO:0016020	membrane	
+Cre07.g317750	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway			
+Cre07.g320450			Chloroplast			
+Cre07.g338750						
+Cre07.g322850			Chloroplast			
+Cre07.g358001				GO:0005509	calcium ion binding	
+Cre07.g325726			Secretory pathway			
+Cre07.g343200						
+Cre07.g335451						
+Cre07.g325733			Mitochondrion			
+Cre07.g322884			Secretory pathway	GO:0016758;GO:0008152	"transferase activity, transferring hexosyl groups;metabolic process"	
+Cre07.g341800	GMM:28.1.3	DNA.synthesis/chromatin structure.histone				CGL107
+Cre07.g329233						
+Cre07.g327800	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre07.g357876						
+Cre07.g321700	GMM:3.3;GMM:27.3.69;GMM:26.11	minor CHO metabolism.sugar alcohols;RNA.regulation of transcription.SET-domain transcriptional regulator family;misc.alcohol dehydrogenases		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH3
+Cre07.g347550			Mitochondrion	GO:0005524	ATP binding	
+Cre07.g334700						
+Cre07.g317500			Mitochondrion			
+Cre07.g344900			Chloroplast			
+Cre07.g347980	GMM:35.1.1	not assigned.no ontology.ABC1 family protein				
+Cre07.g318651	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0005515	protein binding	AOF4
+Cre07.g312100				GO:0007049	cell cycle	
+Cre07.g349400						
+Cre07.g349137						
+Cre07.g348350			Mitochondrion			PWR8
+Cre07.g356101						
+Cre07.g346900			Secretory pathway			
+Cre07.g316725			Chloroplast			
+Cre07.g325749						
+Cre07.g315432						CSG3
+Cre07.g335500	GMM:27.3.99;GMM:16.4.1;GMM:13.2.6.2	RNA.regulation of transcription.unclassified;secondary metabolism.N misc.alkaloid-like;amino acid metabolism.degradation.aromatic aa.tyrosine	Chloroplast			
+Cre07.g343433	GMM:8.1.5;GMM:8.1.1.2	TCA / organic transformation.TCA.2-oxoglutarate dehydrogenase;TCA / organic transformation.TCA.pyruvate DH.E2		GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	OGD4
+Cre07.g352250				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	HEL42
+Cre07.g314250						
+Cre07.g342900			Mitochondrion			
+Cre07.g332100	GMM:26.7;GMM:20.2.3	"misc.oxidases - copper, flavone etc;stress.abiotic.drought/salt"	Secretory pathway	GO:0055114;GO:0020037;GO:0016491;GO:0006979;GO:0005507;GO:0004601	oxidation-reduction process;heme binding;oxidoreductase activity;response to oxidative stress;copper ion binding;peroxidase activity	
+Cre07.g320150	GMM:29.9;GMM:29.6.2.6;GMM:20.2.1	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat	EndoplasmicReticulum			ERJ1
+Cre07.g332250				GO:0046983	protein dimerization activity	
+Cre07.g340450			Secretory pathway	GO:0005515	protein binding	PKHD1
+Cre07.g334800	GMM:26.30;GMM:21.99;GMM:1.1.5.2	misc.other Ferredoxins and Rieske domain;redox.misc;PS.lightreaction.other electron carrier (ox/red).ferredoxin	Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX4
+Cre07.g336150						
+Cre07.g323100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g342400						
+Cre07.g357100			Mitochondrion			
+Cre07.g313350			Secretory pathway			
+Cre07.g328400	GMM:30.5;GMM:3.5;GMM:27.4	signalling.G-proteins;minor CHO metabolism.others;RNA.RNA binding		GO:0008270;GO:0003676	zinc ion binding;nucleic acid binding	
+Cre07.g316550						
+Cre07.g352075			Chloroplast			
+Cre07.g323400						
+Cre07.g335100			Secretory pathway			
+Cre07.g325738	GMM:27.3.28	RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre07.g329550						VFL5
+Cre07.g333675			Mitochondrion			
+Cre07.g325746	GMM:29.2.1.2.2.38	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L38		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL38
+Cre07.g336900			Chloroplast			
+Cre07.g325739	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g337250						
+Cre07.g312800				GO:0008270	zinc ion binding	
+Cre07.g331475			Chloroplast	GO:0008080	N-acetyltransferase activity	
+Cre07.g336650	GMM:28.2	DNA.repair		GO:0006298;GO:0005524	mismatch repair;ATP binding	MLH3
+Cre07.g341050						
+Cre07.g332851						SELM2
+Cre07.g353050						
+Cre07.g331800	GMM:3.5;GMM:23.3.2.1	minor CHO metabolism.others;nucleotide metabolism.salvage.nucleoside kinases.adenosine kinase				CGL79
+Cre07.g338100						
+Cre07.g316200						
+Cre07.g312550			Chloroplast			
+Cre07.g319650	GMM:30.99	signalling.unspecified	Chloroplast	GO:0006355	"regulation of transcription, DNA-templated"	FXL4
+Cre07.g315600			Chloroplast	GO:0055114	oxidation-reduction process	
+Cre07.g333746			Mitochondrion	GO:0005515	protein binding	
+Cre07.g314833			Mitochondrion			
+Cre07.g330500			Chloroplast			
+Cre07.g350652						
+Cre07.g346672			Secretory pathway			
+Cre07.g354250	GMM:4.1.11;GMM:1.3.3	glycolysis.cytosolic branch.3-phosphoglycerate kinase (PGK);PS.calvin cycle.phosphoglycerate kinase		GO:0006096;GO:0004618	glycolytic process;phosphoglycerate kinase activity	PGK2
+Cre07.g326750						
+Cre07.g357157			Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
+Cre07.g327100			Chloroplast			
+Cre07.g339633	GMM:29.9	protein.co-chaperones	Cytosol			DNJ20
+Cre07.g327350			Chloroplast			CDPK8
+Cre07.g325711						
+Cre07.g345050	GMM:33.99;GMM:33.3;GMM:27.3.28	development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre07.g326500						
+Cre07.g335226			Secretory pathway			
+Cre07.g325744			Secretory pathway			
+Cre07.g314300			Mitochondrion			
+Cre07.g315700	GMM:29.6.3.1;GMM:29.6	protein.folding.immunophilins (IMM).FKBPs;protein.folding	Chloroplast	GO:0006457	protein folding	FKB16-1
+Cre07.g341150			Chloroplast			
+Cre07.g324866	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g312950						HEL32
+Cre07.g329400						
+Cre07.g350867			Mitochondrion	GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre07.g327600						
+Cre07.g325753			Secretory pathway			
+Cre07.g331050	GMM:27.3.42	RNA.regulation of transcription.bromodomain proteins		GO:0005515	protein binding	
+Cre07.g329650						
+Cre07.g350976						
+Cre07.g348100						
+Cre07.g349350			Mitochondrion			
+Cre07.g343933	GMM:26.3;GMM:10.6.2	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Chloroplast	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	EBM6
+Cre07.g342052						
+Cre07.g313700	GMM:29.1.17	protein.aa activation.glutamate-tRNA ligase	Chloroplast	GO:0043039;GO:0016876;GO:0005524	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;ATP binding"	TSE2
+Cre07.g319800			Mitochondrion			
+Cre07.g333400	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			MMP23
+Cre07.g322300	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure		GO:0016818;GO:0008026;GO:0006139;GO:0005524;GO:0004003;GO:0003677;GO:0003676	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;ATP-dependent helicase activity;nucleobase-containing compound metabolic process;ATP binding;ATP-dependent DNA helicase activity;DNA binding;nucleic acid binding"	XPD4
+Cre07.g329600			Mitochondrion			
+Cre07.g325735						
+Cre07.g355400	GMM:31.2;GMM:29.4.1;GMM:29.4	cell.division;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDKH1
+Cre07.g334350			Chloroplast			
+Cre07.g323050						PEN2
+Cre07.g322550	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP240
+Cre07.g345350	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
+Cre07.g329277						
+Cre07.g352550	GMM:26.23	misc.rhodanese				RDP3
+Cre07.g324150						
+Cre07.g344450						
+Cre07.g325729			Chloroplast			
+Cre07.g341556			Secretory pathway			
+Cre07.g337100			Chloroplast			
+Cre07.g342600			Mitochondrion			
+Cre07.g323700			Chloroplast			
+Cre07.g314050			Secretory pathway			
+Cre07.g347250				GO:0048024;GO:0005634	"regulation of mRNA splicing, via spliceosome;nucleus"	FIP37B
+Cre07.g329100						
+Cre07.g356000						
+Cre07.g347750			Secretory pathway			
+Cre07.g340150			Mitochondrion;Chloroplast			
+Cre07.g337516			Chloroplast			
+Cre07.g357150			Mitochondrion			CYP24
+Cre07.g323000	GMM:27.3.18	RNA.regulation of transcription.E2F/DP transcription factor family		GO:0007049;GO:0006355;GO:0005667;GO:0003700	"cell cycle;regulation of transcription, DNA-templated;transcription factor complex;transcription factor activity, sequence-specific DNA binding"	DP1
+Cre07.g352150			Mitochondrion;Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre07.g327976						
+Cre07.g346317			Secretory pathway			
+Cre07.g339554			Chloroplast	GO:0016021;GO:0008521	integral component of membrane;acetyl-CoA transporter activity	
+Cre07.g348040	GMM:34.3	transport.amino acids		GO:0016020;GO:0015171;GO:0003333	membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport	
+Cre07.g313450			Chloroplast			
+Cre07.g325732						OPR109
+Cre07.g356800			Mitochondrion			OPR33
+Cre07.g332084						
+Cre07.g328075			Mitochondrion			
+Cre07.g320550	GMM:16.7;GMM:11.1.10	secondary metabolism.wax;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase		GO:0016747;GO:0016020;GO:0006633	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;fatty acid biosynthetic process"	FAE4
+Cre07.g349700	GMM:30.11	signalling.light	Chloroplast			
+Cre07.g325150	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase	Mitochondrion	GO:0006629	lipid metabolic process	TGL12
+Cre07.g346100	GMM:28.2	DNA.repair		GO:0006281;GO:0004519	DNA repair;endonuclease activity	
+Cre07.g344100				GO:0008168;GO:0006479	methyltransferase activity;protein methylation	
+Cre07.g318209	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
+Cre07.g355550			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre07.g356283						
+Cre07.g348250						
+Cre07.g321800						
+Cre07.g322000	GMM:13.1.5.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine	Secretory pathway			CSD2
+Cre07.g317864						
+Cre07.g331550	GMM:13.1.5.1.2	amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoserine aminotransferase	Chloroplast			PST1
+Cre07.g331000			Chloroplast			
+Cre07.g326400				GO:0016020	membrane	
+Cre07.g353325			Mitochondrion			
+Cre07.g334900			Chloroplast			
+Cre07.g346000			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre07.g349600	GMM:18.7	Co-factor and vitamine metabolism.iron-sulphur clusters	Mitochondrion			ISCA2
+Cre07.g330100	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020;GO:0006486;GO:0004576	membrane;protein glycosylation;oligosaccharyl transferase activity	GTR25
+Cre07.g320093			Secretory pathway			
+Cre07.g321200	GMM:35.1.13;GMM:27.3.69	not assigned.no ontology.SET domain-containing protein;RNA.regulation of transcription.SET-domain transcriptional regulator family				
+Cre07.g337400			Chloroplast			
+Cre07.g335000			Secretory pathway			
+Cre07.g328850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CNK8
+Cre07.g340850	GMM:26.10;GMM:26.1;GMM:17.3.1.1.5;GMM:17.2.2;GMM:16.1.4.7	misc.cytochrome P450;misc.misc2;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.metabolic regulation;hormone metabolism.auxin.signal transduction;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743A2
+Cre07.g316600	GMM:29.4	protein.postranslational modification		GO:0008138;GO:0006470;GO:0005856;GO:0005515	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation;cytoskeleton;protein binding	MKP5
+Cre07.g324500						MMP22
+Cre07.g323890			Mitochondrion			
+Cre07.g319400	GMM:17.5.1	hormone metabolism.ethylene.synthesis-degradation				
+Cre07.g319250			Chloroplast			
+Cre07.g338000	GMM:28.1	DNA.synthesis/chromatin structure		GO:0042555;GO:0006270;GO:0006260;GO:0005634;GO:0005524;GO:0003678;GO:0003677	MCM complex;DNA replication initiation;DNA replication;nucleus;ATP binding;DNA helicase activity;DNA binding	MCM2
+Cre07.g314500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g314400	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0005524;GO:0004003;GO:0003677	ATP binding;ATP-dependent DNA helicase activity;DNA binding	
+Cre07.g327750	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	TRP3
+Cre07.g333850						
+Cre07.g355900			Mitochondrion			
+Cre07.g332400			Mitochondrion			
+Cre07.g351800			Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK12
+Cre07.g315200	GMM:34.12	transport.metal	Secretory pathway	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	RET1
+Cre07.g338850	GMM:28.2	DNA.repair				
+Cre07.g325758			Secretory pathway			
+Cre07.g335550			Mitochondrion			
+Cre07.g336300						
+Cre07.g341950			Mitochondrion			
+Cre07.g337050	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0016558;GO:0008270;GO:0007031;GO:0005779;GO:0005515	protein import into peroxisome matrix;zinc ion binding;peroxisome organization;integral component of peroxisomal membrane;protein binding	
+Cre07.g354600						
+Cre07.g317421			Mitochondrion			
+Cre07.g325761	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
+Cre07.g354100	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases		GO:0051536;GO:0008080;GO:0003824	iron-sulfur cluster binding;N-acetyltransferase activity;catalytic activity	HAT4
+Cre07.g357700			Chloroplast			
+Cre07.g345000						
+Cre07.g313143			Chloroplast			
+Cre07.g316500			Secretory pathway			
+Cre07.g336750						
+Cre07.g322650			Mitochondrion			
+Cre07.g312150				GO:0016787;GO:0005524;GO:0004003;GO:0003677	hydrolase activity;ATP binding;ATP-dependent DNA helicase activity;DNA binding	
+Cre07.g341850	GMM:29.2.3	protein.synthesis.initiation	Chloroplast	GO:0005525	GTP binding	INFB
+Cre07.g353500	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	GO:0006355;GO:0003700	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	CGLD5A
+Cre07.g319330			Mitochondrion			
+Cre07.g335300	GMM:11.1.3	lipid metabolism.FA synthesis and FA elongation.ketoacyl ACP synthase	Chloroplast			KAS2
+Cre07.g345800						
+Cre07.g345500			Chloroplast			
+Cre07.g353750	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP10
+Cre07.g336250			Mitochondrion			
+Cre07.g312600			Mitochondrion			
+Cre07.g324050	GMM:29.5.11.4.5.1	protein.degradation.ubiquitin.E3.BTB/POZ Cullin3.Cullin3		GO:0031625;GO:0006511	ubiquitin protein ligase binding;ubiquitin-dependent protein catabolic process	CUL1
+Cre07.g327050			Chloroplast			
+Cre07.g336050			Secretory pathway			
+Cre07.g342250	GMM:29.6.1;GMM:29.6	protein.folding.prefoldin and trigger factor;protein.folding		GO:0051082;GO:0016272;GO:0006457	unfolded protein binding;prefoldin complex;protein folding	PFD2
+Cre07.g320750	GMM:30.1.1;GMM:23.1.2	signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine		GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383	intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity	CYG12
+Cre07.g325500	GMM:19.10;GMM:19.1	tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase	Chloroplast	GO:0016851;GO:0009058	magnesium chelatase activity;biosynthetic process	CHLH1
+Cre07.g322176	GMM:27.2	RNA.transcription		GO:0032549;GO:0006351;GO:0005634;GO:0003899;GO:0003677	"ribonucleoside binding;transcription, DNA-templated;nucleus;DNA-directed RNA polymerase activity;DNA binding"	
+Cre07.g337350						
+Cre07.g347350			Secretory pathway	GO:0048024;GO:0005634	"regulation of mRNA splicing, via spliceosome;nucleus"	FIP37A
+Cre07.g315450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway			CSG2
+Cre07.g352251	GMM:29.2.2.3.5	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases		GO:0004386	helicase activity	
+Cre07.g317908	GMM:28.2	DNA.repair	Mitochondrion			
+Cre07.g312850			Secretory pathway			
+Cre07.g339000						
+Cre07.g313800						CGL138
+Cre07.g319750	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL35
+Cre07.g341551						
+Cre07.g330600	GMM:23.2	nucleotide metabolism.degradation	Secretory pathway	GO:0016787	hydrolase activity	
+Cre07.g321550				GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre07.g317150						MKP7
+Cre07.g341100			Chloroplast			
+Cre07.g352650						
+Cre07.g335150	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre07.g348850	GMM:29.2.1.1.1.2.2	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L2	Mitochondrion	GO:0016740;GO:0015934;GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723	transferase activity;large ribosomal subunit;translation;ribosome;intracellular;structural constituent of ribosome;RNA binding	MRPL2
+Cre07.g349520				GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
+Cre07.g342700	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway			
+Cre07.g320000						
+Cre07.g326150	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family				
+Cre07.g356960						
+Cre07.g325000	GMM:26.10;GMM:17.1.1.2.1	misc.cytochrome P450;hormone metabolism.abscisic acid.synthesis-degradation.degradation.8-hydroxylase	Chloroplast	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP738A1
+Cre07.g329200	GMM:27.1.2	RNA.processing.RNA helicase				
+Cre07.g318276						
+Cre07.g325713				GO:0006355;GO:0005634;GO:0003677;GO:0003676	"regulation of transcription, DNA-templated;nucleus;DNA binding;nucleic acid binding"	
+Cre07.g341300	GMM:33.99;GMM:30.11	development.unspecified;signalling.light		GO:0005634	nucleus	XAP5
+Cre07.g355300						
+Cre07.g325727	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems				
+Cre07.g333252	GMM:2.2.2.3	major CHO metabolism.degradation.starch.glucan water dikinase				
+Cre07.g356500			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre07.g343800				GO:0005515	protein binding	
+Cre07.g345250						
+Cre07.g327500						
+Cre07.g350926						
+Cre07.g324750			Chloroplast			
+Cre07.g325400	GMM:16.5.1.1.1.5;GMM:13.1.4.4.3	secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.methylthioalkylmalate dehydrogenase (MAM-DH);amino acid metabolism.synthesis.branched chain group.leucine specific.3-isopropylmalate dehydrogenase	Chloroplast	GO:0055114;GO:0051287;GO:0016616;GO:0000287	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;magnesium ion binding"	LEU3
+Cre07.g339850	GMM:30.2.8.2;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 2;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g324200	GMM:11.8	"lipid metabolism.exotics (steroids, squalene etc)"				BTA1
+Cre07.g343333	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0016787;GO:0005524;GO:0004003;GO:0003677	hydrolase activity;ATP binding;ATP-dependent DNA helicase activity;DNA binding	
+Cre07.g326650						
+Cre07.g349250			Secretory pathway			
+Cre07.g343250	GMM:3.3	minor CHO metabolism.sugar alcohols				
+Cre07.g320300			Secretory pathway			
+Cre07.g347900						
+Cre07.g315950						
+Cre07.g333535	GMM:29.5.7	protein.degradation.metalloprotease		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV9
+Cre07.g351450	GMM:29.4.1	protein.postranslational modification.kinase	Chloroplast	GO:0007094	mitotic spindle assembly checkpoint	
+Cre07.g313550			Chloroplast			
+Cre07.g314900	GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL34
+Cre07.g320650			Secretory pathway	GO:0006506;GO:0004584	GPI anchor biosynthetic process;dolichyl-phosphate-mannose-glycolipid alpha-mannosyltransferase activity	PIGV
+Cre07.g337933						
+Cre07.g350400	GMM:31.3.1;GMM:26.23	cell.cycle.peptidylprolyl isomerase;misc.rhodanese	Secretory pathway			PIN3
+Cre07.g315850				GO:0055114	oxidation-reduction process	
+Cre07.g346800			Chloroplast			
+Cre07.g328000			Secretory pathway			
+Cre07.g317576			Secretory pathway			
+Cre07.g338602	GMM:28.2	DNA.repair		GO:0006281;GO:0003684	DNA repair;damaged DNA binding	POLH1
+Cre07.g314150	GMM:16.1.4.3;GMM:16.1.4	secondary metabolism.isoprenoids.carotenoids.zeta-carotene desaturase;secondary metabolism.isoprenoids.carotenoids	Chloroplast			ZDS1
+Cre07.g338500			Secretory pathway			
+Cre07.g346600			Chloroplast			
+Cre07.g332050						
+Cre07.g316050	GMM:29.9;GMM:1.1.99	protein.co-chaperones;PS.lightreaction.unspecified	Chloroplast			CDJ2
+Cre07.g318500	GMM:16.7;GMM:11.1.10	secondary metabolism.wax;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase		GO:0016747;GO:0016020;GO:0006633	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;fatty acid biosynthetic process"	
+Cre07.g332300	GMM:2.2.2.3	major CHO metabolism.degradation.starch.glucan water dikinase	Chloroplast	GO:0016310;GO:0016301;GO:0005524	phosphorylation;kinase activity;ATP binding	GWD2
+Cre07.g338400	GMM:35.1.40	not assigned.no ontology.glycine rich proteins				
+Cre07.g341600	GMM:29.9;GMM:29.6.2.6;GMM:29.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding	Chloroplast	GO:0051087;GO:0042803;GO:0006457;GO:0000774	chaperone binding;protein homodimerization activity;protein folding;adenyl-nucleotide exchange factor activity	CGE1b;CGE1
+Cre07.g333000	GMM:29.5.3	protein.degradation.cysteine protease		GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP4
+Cre07.g335750	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B	Mitochondrion	GO:0005515	protein binding	IFT88
+Cre07.g339150	GMM:29.6.2.2;GMM:29.6;GMM:1.3.13	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding;PS.calvin cycle.rubisco interacting	Chloroplast.Stroma	GO:0005524	ATP binding	CPN60B2
+Cre07.g352900	GMM:31.2	cell.division		GO:0005515	protein binding	
+Cre07.g331650						
+Cre07.g317050	GMM:29.5.11.1;GMM:29.5.11;GMM:29.2.1.2.2.40;GMM:29.2.1.2.1.27;GMM:29.1	protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27;protein.aa activation	Chloroplast	GO:0005515	protein binding	UBQ6
+Cre07.g324233			Chloroplast			
+Cre07.g322900	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	
+Cre07.g315300	GMM:23.1.2	nucleotide metabolism.synthesis.purine				CSG4
+Cre07.g354976			Chloroplast			
+Cre07.g354550			Mitochondrion			
+Cre07.g346500	GMM:29.4	protein.postranslational modification	Mitochondrion			
+Cre07.g346400						
+Cre07.g313100						
+Cre07.g328950						
+Cre07.g314600	GMM:7.2.4;GMM:1.3.10	OPP.non-reductive PP.ribose 5-phosphate isomerase;PS.calvin cycle.Rib5P Isomerase	Chloroplast	GO:0009052;GO:0004751	"pentose-phosphate shunt, non-oxidative branch;ribose-5-phosphate isomerase activity"	RPI2
+Cre07.g321900						
+Cre07.g323250			Mitochondrion			
+Cre07.g318900						DNJ2
+Cre07.g339900	GMM:30.2.20;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.wheat LRK10 like;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK5
+Cre07.g336850						
+Cre07.g325719						
+Cre07.g317650				GO:0016758;GO:0008152	"transferase activity, transferring hexosyl groups;metabolic process"	
+Cre07.g357000			Chloroplast			
+Cre07.g354900						
+Cre07.g351850	GMM:29.4	protein.postranslational modification		GO:0008080	N-acetyltransferase activity	
+Cre07.g348150			Chloroplast			
+Cre07.g327687						
+Cre07.g343750			Chloroplast			
+Cre07.g324600	GMM:31.4	cell.vesicle transport		GO:0015031;GO:0008565	protein transport;protein transporter activity	AP2S2
+Cre07.g353850			Mitochondrion			
+Cre07.g340250	GMM:30.2.8.2;GMM:30.2.20;GMM:29.4.1.57;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 2;signalling.receptor kinases.wheat LRK10 like;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre07.g329850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	KCN5
+Cre07.g355466	GMM:28.2;GMM:28.1;GMM:27.3.34	DNA.repair;DNA.synthesis/chromatin structure;RNA.regulation of transcription.orphan family	Mitochondrion			AGE2
+Cre07.g315550			Mitochondrion	GO:0005524	ATP binding	
+Cre07.g336400			Mitochondrion			
+Cre07.g319310						
+Cre07.g323450	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre07.g353555				GO:0046983	protein dimerization activity	
+Cre07.g350800			Mitochondrion			
+Cre07.g350750	GMM:1.1.40	PS.lightreaction.cyclic electron flow-chlororespiration		GO:0055114;GO:0009916	oxidation-reduction process;alternative oxidase activity	PTOX1
+Cre07.g321100				GO:0016773;GO:0005975	"phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process"	
+Cre07.g322700						
+Cre07.g331300	GMM:2.1.2.1	major CHO metabolism.synthesis.starch.AGPase	Chloroplast	GO:0016779;GO:0009058	nucleotidyltransferase activity;biosynthetic process	AGP3
+Cre07.g338200				GO:0005515	protein binding	
+Cre07.g323950	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PHX23
+Cre07.g357250			Secretory pathway			
+Cre07.g333640			Secretory pathway			
+Cre07.g334300	GMM:33.99;GMM:3.5;GMM:1.1.1.1	development.unspecified;minor CHO metabolism.others;PS.lightreaction.photosystem II.LHC-II		GO:0055085;GO:0016020;GO:0006811;GO:0005515;GO:0005216	transmembrane transport;membrane;ion transport;protein binding;ion channel activity	TRP6
+Cre07.g352400	GMM:3.4.1;GMM:28.1	minor CHO metabolism.myo-inositol.poly-phosphatases;DNA.synthesis/chromatin structure				
+Cre07.g343600	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
+Cre07.g340950			Chloroplast			AXL4
+Cre07.g350250			Secretory pathway			
+Cre07.g344668			Secretory pathway	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre07.g339300	GMM:29.6.2.6	protein.folding.chaperones and co-chaperones.co-chaperones	Chloroplast	GO:0008270	zinc ion binding	HEP3
+Cre07.g330200	GMM:31.6.1.5.1	cell.motility.eukaryotes.radial spoke.head	Secretory pathway			RSP9
+Cre07.g323600			Chloroplast			
+Cre07.g330250	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0015979;GO:0009538;GO:0009522	photosynthesis;photosystem I reaction center;photosystem I	PSAH
+Cre07.g335650			Secretory pathway			
+Cre07.g345900	GMM:27.1.19	RNA.processing.ribonucleases		GO:0016891;GO:0006396;GO:0005524;GO:0004525;GO:0003723;GO:0003676	"endoribonuclease activity, producing 5'-phosphomonoesters;RNA processing;ATP binding;ribonuclease III activity;RNA binding;nucleic acid binding"	DCL3
+Cre11.g481250			Chloroplast			
+Cre11.g482400						
+Cre11.g480100			Chloroplast			
+Cre11.g467550	GMM:23.1.1.3	nucleotide metabolism.synthesis.pyrimidine.dihydroorotase	Chloroplast	GO:0019856;GO:0016787;GO:0004151	pyrimidine nucleobase biosynthetic process;hydrolase activity;dihydroorotase activity	
+Cre11.g467608	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP12
+Cre11.g467728				GO:0004519;GO:0003676	endonuclease activity;nucleic acid binding	
+Cre11.g475450			Secretory pathway	GO:0008242;GO:0005515	omega peptidase activity;protein binding	
+Cre11.g477800						HDA10
+Cre11.g467634	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g478750	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs	Secretory pathway	GO:0006457	protein folding	FKB15-2
+Cre11.g467682			Chloroplast			
+Cre11.g467560						DYX1C1
+Cre11.g478450			Secretory pathway			
+Cre11.g467717	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Chloroplast	GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	
+Cre11.g467624			Mitochondrion			
+Cre11.g481050	GMM:27.3.53	RNA.regulation of transcription.high mobility group family (HMG)				
+Cre11.g480050				GO:0005515	protein binding	EXN14
+Cre11.g467541						
+Cre11.g480132			Secretory pathway			
+Cre11.g467743				GO:0008270	zinc ion binding	
+Cre11.g479050	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs	Secretory pathway	GO:0006457	protein folding	FKB15-1
+Cre11.g467778	GMM:23.3.1.3	nucleotide metabolism.salvage.phosphoribosyltransferases.uracil phosphoribosyltransferase (UPP)	Chloroplast			
+Cre11.g481450	GMM:1.1.4.9;GMM:1.1.4	PS.lightreaction.ATP synthase.subunit B (ATPX);PS.lightreaction.ATP synthase	Chloroplast	GO:0045263;GO:0015986;GO:0015078	"proton-transporting ATP synthase complex, coupling factor F(o);ATP synthesis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPG
+Cre11.g467642	GMM:2.1	major CHO metabolism.synthesis	Secretory pathway			
+Cre11.g467572			Secretory pathway			
+Cre11.g478350			Secretory pathway			
+Cre11.g467737			Chloroplast			
+Cre11.g475950	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	HLM16
+Cre11.g478050			Secretory pathway			
+Cre11.g467706	GMM:27.3.55	RNA.regulation of transcription.HDA	Mitochondrion			
+Cre11.g469300			Mitochondrion			
+Cre11.g480750				GO:0016787	hydrolase activity	
+Cre11.g469224			Chloroplast	GO:0016791	phosphatase activity	
+Cre11.g468359			Secretory pathway			GAS31
+Cre11.g467544	GMM:16.1.2.7	secondary metabolism.isoprenoids.mevalonate pathway.isopentenyl pyrophosphate:dimethyllallyl pyrophosphate isomerase		GO:0016787;GO:0008299;GO:0004452	hydrolase activity;isoprenoid biosynthetic process;isopentenyl-diphosphate delta-isomerase activity	IDI1
+Cre11.g467656			Secretory pathway			
+Cre11.g480502						
+Cre11.g481093						
+Cre11.g467551			Secretory pathway			
+Cre11.g467616			Chloroplast			IFT56
+Cre11.g483400	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG10
+Cre11.g467738			Mitochondrion	GO:0016021	integral component of membrane	
+Cre11.g467582						FAP306
+Cre11.g467786			Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
+Cre11.g481833						
+Cre11.g482250			Secretory pathway			
+Cre11.g479750	GMM:29.3.4.99;GMM:29.3.3	protein.targeting.secretory pathway.unspecified;protein.targeting.chloroplast	Chloroplast	GO:0048500;GO:0008312;GO:0006614;GO:0005525;GO:0003924	signal recognition particle;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane;GTP binding;GTPase activity	SRP54L
+Cre11.g475100				GO:0008080	N-acetyltransferase activity	
+Cre11.g468850						FAP152
+Cre11.g467725			Secretory pathway			
+Cre11.g467677			Secretory pathway	GO:0016021;GO:0004252	integral component of membrane;serine-type endopeptidase activity	
+Cre11.g467537						PPR12
+Cre11.g467581	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre11.g482626						
+Cre11.g478456			Secretory pathway			
+Cre11.g476950			Secretory pathway			
+Cre11.g467648	GMM:29.5	protein.degradation	Chloroplast	GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL3
+Cre11.g467730			Chloroplast			
+Cre11.g467702			Chloroplast			
+Cre11.g480700				GO:0055114	oxidation-reduction process	
+Cre11.g469000						FAP107
+Cre11.g477625	GMM:19.10;GMM:19.1	tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase	Chloroplast	GO:0016851;GO:0009058	magnesium chelatase activity;biosynthetic process	CHLH2
+Cre11.g480150	GMM:29.2.1.2.1.14	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S14		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPS14
+Cre11.g467693			Chloroplast			
+Cre11.g478700	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs	Secretory pathway	GO:0006457	protein folding	FKB15-4
+Cre11.g468650	GMM:16.1	secondary metabolism.isoprenoids				
+Cre11.g467775			Chloroplast			
+Cre11.g467640						
+Cre11.g474900			Chloroplast			
+Cre11.g478300				GO:0032259;GO:0008168	methylation;methyltransferase activity	SOM4
+Cre11.g480060	GMM:28.99	DNA.unspecified				
+Cre11.g467579	GMM:28.2	DNA.repair				CSC6
+Cre11.g479150			Mitochondrion			
+Cre11.g467696			Secretory pathway			
+Cre11.g467900			Secretory pathway			
+Cre11.g483033	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast			
+Cre11.g482900	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAB20
+Cre11.g467744						
+Cre11.g467652			Mitochondrion			
+Cre11.g467718	GMM:20.2.1;GMM:15.2	"stress.abiotic.heat;metal handling.binding, chelation and storage"	Mitochondrion	GO:0051259;GO:0051087;GO:0006457	protein oligomerization;chaperone binding;protein folding	HSC20A
+Cre11.g467571						
+Cre11.g467713	GMM:29.4	protein.postranslational modification				
+Cre11.g481500	GMM:13.1.7.5;GMM:13.1.7.4;GMM:13.1.7	amino acid metabolism.synthesis.histidine.phosphoribosylformimino-5-aminoimidazole carboxamide ribotide isomerase (BBM II);amino acid metabolism.synthesis.histidine.bifunctional phosphoribosyl-ATP pyrophosphatase / phosphoribosyl-AMP cyclohydrolase;amino acid metabolism.synthesis.histidine	Chloroplast	GO:0000105	histidine biosynthetic process	HIS7
+Cre11.g476400	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure	Mitochondrion	GO:0006284	base-excision repair	MAG1
+Cre11.g479100			Chloroplast			
+Cre11.g483150						
+Cre11.g467591	GMM:28.2	DNA.repair		GO:0003676	nucleic acid binding	
+Cre11.g468900						FAP404
+Cre11.g467588	GMM:30.2.24;GMM:29.4	signalling.receptor kinases.S-locus glycoprotein like;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g467794						
+Cre11.g467752						
+Cre11.g467565						
+Cre11.g475700						
+Cre11.g467615			Secretory pathway	GO:0005509	calcium ion binding	
+Cre11.g467670			Secretory pathway			
+Cre11.g482001	GMM:31.1	cell.organisation	Mitochondrion			FAP208
+Cre11.g468368			Mitochondrion			
+Cre11.g467758						
+Cre11.g467736						
+Cre11.g468356			Mitochondrion	GO:0006606	protein import into nucleus	
+Cre11.g467602						
+Cre11.g467621						CSU7
+Cre11.g467627	GMM:17.6.1.4;GMM:17.3.1.1.2	hormone metabolism.gibberelin.synthesis-degradation.ent-kaurenoic acid hydroxylase/oxygenase;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.DWF4	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
+Cre11.g476050	GMM:31.6.1.4.2.1;GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC15
+Cre11.g475050						
+Cre11.g482600			Mitochondrion			
+Cre11.g478650			Secretory pathway			
+Cre11.g467705	GMM:34.1	transport.p- and v-ATPases		GO:0033179;GO:0015991;GO:0015078	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	
+Cre11.g476900						
+Cre11.g467561						FAP222
+Cre11.g467641			Mitochondrion			
+Cre11.g467720	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre11.g469150			Chloroplast			
+Cre11.g477700						
+Cre11.g479700						DFO1
+Cre11.g468250			Chloroplast			
+Cre11.g467664			Secretory pathway			
+Cre11.g467753	GMM:19.21	tetrapyrrole synthesis.heme oxygenase		GO:0055114;GO:0006788;GO:0004392	oxidation-reduction process;heme oxidation;heme oxygenase (decyclizing) activity	HMO2
+Cre11.g467594	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
+Cre11.g467542			Mitochondrion			
+Cre11.g481082			Secretory pathway			
+Cre11.g480250	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Chloroplast	GO:0006629	lipid metabolic process	
+Cre11.g467635	GMM:31.6.1.11	cell.motility.eukaryotes.other				MOT22
+Cre11.g467583	GMM:29.4	protein.postranslational modification				
+Cre11.g469800						
+Cre11.g467701			Mitochondrion			
+Cre11.g479650	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0016567;GO:0005515;GO:0004842	protein ubiquitination;protein binding;ubiquitin-protein transferase activity	
+Cre11.g467710			Secretory pathway			VSP1
+Cre11.g475300						
+Cre11.g474850	GMM:29.1.30	protein.aa activation.pseudouridylate synthase		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS17
+Cre11.g482850			Chloroplast	GO:0060236;GO:0032147;GO:0005874;GO:0005819	regulation of mitotic spindle organization;activation of protein kinase activity;microtubule;spindle	
+Cre11.g467654	GMM:27.1.2	RNA.processing.RNA helicase		GO:0004386	helicase activity	
+Cre11.g475750			Secretory pathway			
+Cre11.g467531						
+Cre11.g469187			Chloroplast			
+Cre11.g468600			Mitochondrion			
+Cre11.g478600			Chloroplast			
+Cre11.g468800			Chloroplast			PHC71
+Cre11.g475200						
+Cre11.g467590	GMM:29.4	protein.postranslational modification	Chloroplast			
+Cre11.g474700						
+Cre11.g467653			Secretory pathway			
+Cre11.g475000	GMM:31.6.1.3.2.1	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A				IFT121
+Cre11.g481700	GMM:27.1.1	RNA.processing.splicing		GO:0006396;GO:0003723	RNA processing;RNA binding	
+Cre11.g467792						
+Cre11.g467708						
+Cre11.g467617	GMM:7.1.3	OPP.oxidative PP.6-phosphogluconate dehydrogenase		GO:0051287	NAD binding	LCI19
+Cre11.g467678	GMM:31.9;GMM:23.1.2;GMM:17.4.2	cell.eyespot;nucleotide metabolism.synthesis.purine;hormone metabolism.cytokinin.signal transduction	Chloroplast	GO:0035556;GO:0016849;GO:0016020;GO:0009190;GO:0007165;GO:0000160;GO:0000155	intracellular signal transduction;phosphorus-oxygen lyase activity;membrane;cyclic nucleotide biosynthetic process;signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	COP6
+Cre11.g467699	GMM:33.99;GMM:31.4;GMM:31.2;GMM:29.3.4.99;GMM:29.3.4	development.unspecified;cell.vesicle transport;cell.division;protein.targeting.secretory pathway.unspecified;protein.targeting.secretory pathway		GO:0016192;GO:0006904	vesicle-mediated transport;vesicle docking involved in exocytosis	SEC1
+Cre11.g469750			Secretory pathway			
+Cre11.g467644	GMM:29.6.2.5;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP100s;stress.abiotic.heat	Cytosol	GO:0019538;GO:0016887;GO:0005524	protein metabolic process;ATPase activity;ATP binding	CLPB1
+Cre11.g481951			Chloroplast			
+Cre11.g477900			Secretory pathway			
+Cre11.g468063			Chloroplast			
+Cre11.g479350						
+Cre11.g479200				GO:0016192;GO:0006904	vesicle-mediated transport;vesicle docking involved in exocytosis	
+Cre11.g467618			Mitochondrion			
+Cre11.g482101			Secretory pathway			
+Cre11.g480400	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC39
+Cre11.g467800			Secretory pathway			
+Cre11.g483450			Mitochondrion			
+Cre11.g482676						
+Cre11.g467756	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP5
+Cre11.g467796						
+Cre11.g467524				GO:0016787	hydrolase activity	
+Cre11.g467732			Mitochondrion			
+Cre11.g467665				GO:0005515	protein binding	
+Cre11.g476550	GMM:11.8.7	"lipid metabolism.exotics (steroids, squalene etc).trans-2-enoyl-CoA reductase (NADPH)"		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH11
+Cre11.g480600						
+Cre11.g475500			Mitochondrion			
+Cre11.g478025						
+Cre11.g467553	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0005525	GTP binding	
+Cre11.g467788			Secretory pathway			
+Cre11.g481350						
+Cre11.g476250	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre11.g476700	GMM:26.13	misc.acid and other phosphatases	Secretory pathway	GO:0016787	hydrolase activity	MPA9
+Cre11.g469375						
+Cre11.g467622	GMM:17.2.3	hormone metabolism.auxin.induced-regulated-responsive-activated				
+Cre11.g467773			Chloroplast			
+Cre11.g478850			Chloroplast			
+Cre11.g467704						
+Cre11.g467687			Mitochondrion			
+Cre11.g477150						
+Cre11.g467609	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	
+Cre11.g467668	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOB22
+Cre11.g481115			Chloroplast			
+Cre11.g467584	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g476850	GMM:31.6.1.7	cell.motility.eukaryotes.dynein regulatory complex (DRC)		GO:0048870;GO:0031514	cell motility;motile cilium	DRC4
+Cre11.g467529			Chloroplast			
+Cre11.g467663			Mitochondrion	GO:0005515	protein binding	
+Cre11.g467760						
+Cre11.g482483	GMM:28.99	DNA.unspecified		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
+Cre11.g468365						
+Cre11.g467680	GMM:28.1	DNA.synthesis/chromatin structure				
+Cre11.g476000						
+Cre11.g467757						
+Cre11.g476750	GMM:7.3;GMM:1.1.5.3	OPP.electron transfer;PS.lightreaction.other electron carrier (ox/red).ferredoxin reductase	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	FNR1
+Cre11.g477250						
+Cre11.g467692			Chloroplast			
+Cre11.g467532						
+Cre11.g467655	GMM:29.5.5;GMM:29.3.4.99;GMM:29.3.2	protein.degradation.serine protease;protein.targeting.secretory pathway.unspecified;protein.targeting.mitochondria	Mitochondrion	GO:0016020;GO:0008236;GO:0006508	membrane;serine-type peptidase activity;proteolysis	IMP1
+Cre11.g467731			Mitochondrion			
+Cre11.g467715						
+Cre11.g467528	GMM:34.21	transport.calcium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV4
+Cre11.g479383			Secretory pathway			
+Cre11.g482841			Chloroplast			
+Cre11.g467595	GMM:35.1.19;GMM:3.3	not assigned.no ontology.C2 domain-containing protein;minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
+Cre11.g476650	GMM:2.2.2.9;GMM:2.1.2.4	major CHO metabolism.degradation.starch.limit dextrinase/pullulanase;major CHO metabolism.synthesis.starch.debranching	Chloroplast	GO:0030246;GO:0005975;GO:0004553;GO:0003824	"carbohydrate binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	PUL1
+Cre11.g467578	GMM:29.2.1.2.2.28	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L28		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL28
+Cre11.g477950	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification	Secretory pathway			
+Cre11.g467525				GO:0005515	protein binding	
+Cre11.g475150	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins				
+Cre11.g467707	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion	GO:0046961;GO:0046933;GO:0045261;GO:0015986	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;proton-transporting ATP synthase complex, catalytic core F(1);ATP synthesis coupled proton transport"	ATP4
+Cre11.g479250	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Secretory pathway			
+Cre11.g467626	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g481400	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g480000			Chloroplast	GO:0005515	protein binding	
+Cre11.g482450						
+Cre11.g467793						
+Cre11.g467742			Mitochondrion	GO:0008270	zinc ion binding	
+Cre11.g469600	GMM:27.3.55	RNA.regulation of transcription.HDA				HDA9
+Cre11.g467629	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified	Mitochondrion			
+Cre11.g481104				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g467530			Chloroplast			
+Cre11.g467780			Secretory pathway			
+Cre11.g467643						
+Cre11.g467552	GMM:4.2.4	glycolysis.plastid branch.phosphofructokinase (PFK)	Mitochondrion	GO:0006096;GO:0003872	glycolytic process;6-phosphofructokinase activity	
+Cre11.g479600	GMM:34.21;GMM:34.12	transport.calcium;transport.metal	Secretory pathway	GO:0055085;GO:0016021;GO:0007154	transmembrane transport;integral component of membrane;cell communication	CAX6
+Cre11.g478800						
+Cre11.g476800	GMM:29.2.1.1.3.2.15	protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L15	Mitochondrion	GO:0015934;GO:0006412;GO:0003735	large ribosomal subunit;translation;structural constituent of ribosome	MRPL15
+Cre11.g467785	GMM:27.3.55	RNA.regulation of transcription.HDA				
+Cre11.g467639						
+Cre11.g467632			Secretory pathway			
+Cre11.g467703						
+Cre11.g467689	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast	GO:0055114;GO:0051537;GO:0042651;GO:0016679;GO:0016491;GO:0009496	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;thylakoid membrane;oxidoreductase activity, acting on diphenols and related substances as donors;oxidoreductase activity;plastoquinol--plastocyanin reductase activity"	PETC
+Cre11.g474750			Secretory pathway	GO:0016757;GO:0016021	"transferase activity, transferring glycosyl groups;integral component of membrane"	
+Cre11.g467600						
+Cre11.g479950	GMM:34.2	transport.sugars	Secretory pathway			CGL7
+Cre11.g467500						
+Cre11.g478000			Chloroplast			
+Cre11.g469350			Mitochondrion	GO:0006464	cellular protein modification process	TTL12
+Cre11.g482650			Mitochondrion			EZY3
+Cre11.g468362						
+Cre11.g467722						
+Cre11.g467675			Chloroplast			
+Cre11.g478240	GMM:30.11.1	signalling.light.COP9 signalosome		GO:0005515	protein binding	
+Cre11.g467850	GMM:11.3	lipid metabolism.phospholipid synthesis		GO:0016746;GO:0008152;GO:0006644	"transferase activity, transferring acyl groups;metabolic process;phospholipid metabolic process"	PGA6
+Cre11.g483100	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g467769			Chloroplast			
+Cre11.g474800	GMM:19.3;GMM:13.2.2.3;GMM:13.1.2.2.10	tetrapyrrole synthesis.GSA;amino acid metabolism.degradation.glutamate family.arginine;amino acid metabolism.synthesis.glutamate family.proline.ornithine aminotransferase	Mitochondrion	GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	OTA1
+Cre11.g467548			Secretory pathway			
+Cre11.g467716			Chloroplast			
+Cre11.g467776			Mitochondrion			
+Cre11.g480900						
+Cre11.g467538	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX8
+Cre11.g475800			Mitochondrion			
+Cre11.g481375						
+Cre11.g476200				GO:0046872	metal ion binding	
+Cre11.g483351			Secretory pathway			PHC44
+Cre11.g480725			Chloroplast			
+Cre11.g467540	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX7
+Cre11.g476500	GMM:29.3.3	protein.targeting.chloroplast	Mitochondrion	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	
+Cre11.g475550						UMM10
+Cre11.g468200			Secretory pathway			
+Cre11.g477100						FAP97
+Cre11.g479300	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Chloroplast	GO:0046872;GO:0005524	metal ion binding;ATP binding	
+Cre11.g467661						
+Cre11.g467768	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family				
+Cre11.g467734						
+Cre11.g467563			Mitochondrion			
+Cre11.g469033			Mitochondrion			
+Cre11.g467576						
+Cre11.g467662			Secretory pathway			
+Cre11.g482050						
+Cre11.g481650			Chloroplast			
+Cre11.g481866	GMM:31.1	cell.organisation	Secretory pathway			
+Cre11.g475400			Secretory pathway	GO:0005515	protein binding	
+Cre11.g468353			Chloroplast	GO:0008076;GO:0006813;GO:0005249	voltage-gated potassium channel complex;potassium ion transport;voltage-gated potassium channel activity	
+Cre11.g476300						
+Cre11.g467764	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase				
+Cre11.g467754	GMM:29.7	protein.glycosylation	Secretory pathway			
+Cre11.g478128	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre11.g467577	GMM:27.3.24	RNA.regulation of transcription.MADS box transcription factor family		GO:0046983;GO:0003677	protein dimerization activity;DNA binding	
+Cre11.g467555				GO:0005515	protein binding	
+Cre11.g467526	GMM:26.24	misc.GCN5-related N-acetyltransferase	Chloroplast	GO:0008080	N-acetyltransferase activity	
+Cre11.g467659				GO:0016592;GO:0006357;GO:0001104	mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity	
+Cre11.g467400			Chloroplast			
+Cre11.g467781	GMM:34.16;GMM:29.2.2.1	transport.ABC transporters and multidrug resistance systems;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0016887;GO:0005524	ATPase activity;ATP binding	FAP151
+Cre11.g482700			Chloroplast			
+Cre11.g467619			Chloroplast			
+Cre11.g467683			Secretory pathway			
+Cre11.g467539	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX6
+Cre11.g469450				GO:0005737;GO:0005634	cytoplasm;nucleus	CGL124
+Cre11.g467739				GO:0008017	microtubule binding	IFT54
+Cre11.g467586	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g467545						
+Cre11.g480451	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC42
+Cre11.g480800				GO:0032040	small-subunit processome	
+Cre11.g467638	GMM:2.1	major CHO metabolism.synthesis	Secretory pathway			
+Cre11.g475900	GMM:28.1	DNA.synthesis/chromatin structure				
+Cre11.g479900			Mitochondrion			
+Cre11.g467650	GMM:27.1	RNA.processing				
+Cre11.g467772	GMM:31.3	cell.cycle	Mitochondrion			CYCD1
+Cre11.g467593	GMM:35.1.19;GMM:3.3	not assigned.no ontology.C2 domain-containing protein;minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
+Cre11.g467598						
+Cre11.g467695						
+Cre11.g477200	GMM:16.8.5.1	secondary metabolism.flavonoids.isoflavonols.isoflavone reductase		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	IFR1
+Cre11.g468377	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005515	protein binding	
+Cre11.g472226	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre11.g468550	GMM:34.1	transport.p- and v-ATPases		GO:0016820;GO:0016471;GO:0015992	"hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;vacuolar proton-transporting V-type ATPase complex;proton transport"	ATPVG
+Cre11.g482750						
+Cre11.g467568	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre11.g468380						
+Cre11.g467610	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525;GO:0003924	GTP binding;GTPase activity	
+Cre11.g467547	GMM:29.1.18;GMM:29.1.17;GMM:19.1	protein.aa activation.glutamine-tRNA ligase;protein.aa activation.glutamate-tRNA ligase;tetrapyrrole synthesis.glu-tRNA synthetase	Secretory pathway	GO:0043039;GO:0016876;GO:0006418;GO:0005737;GO:0005524;GO:0004812;GO:0000166	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"	
+Cre11.g481126	GMM:21.99	redox.misc	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre11.g467690				GO:0005515	protein binding	
+Cre11.g467559						
+Cre11.g480300			Mitochondrion			
+Cre11.g468100	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE30
+Cre11.g478950	GMM:27.1.1	RNA.processing.splicing	Chloroplast	GO:0032040;GO:0006364	small-subunit processome;rRNA processing	
+Cre11.g467779	GMM:29.7.8;GMM:29.7.5	"protein.glycosylation.alpha-1,6-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase (GnTII);protein.glycosylation.alpha-1,3-mannosyl-glycoprotein 2-beta-N-acetylglucosaminyltransferase (GnTI)"	Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
+Cre11.g467790			Secretory pathway			
+Cre11.g467533	GMM:29.4	protein.postranslational modification	Chloroplast			
+Cre11.g467671			Secretory pathway			
+Cre11.g483301						
+Cre11.g467723	GMM:11.1.3	lipid metabolism.FA synthesis and FA elongation.ketoacyl ACP synthase	Chloroplast			KAS1
+Cre11.g468000			Secretory pathway			
+Cre11.g467676			Mitochondrion			
+Cre11.g476376			Chloroplast			FAP221
+Cre11.g467585				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g467685						
+Cre11.g479416	GMM:26.16	misc.myrosinases-lectin-jacalin				
+Cre11.g480950			Secretory pathway			
+Cre11.g467747			Chloroplast			
+Cre11.g467527	GMM:26.10;GMM:26.1	misc.cytochrome P450;misc.misc2		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
+Cre11.g467684						
+Cre11.g467673	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Mitochondrion	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE24
+Cre11.g467450				GO:0032259;GO:0008168	methylation;methyltransferase activity	SOM3
+Cre11.g467791						
+Cre11.g467721			Secretory pathway			
+Cre11.g478528			Mitochondrion			
+Cre11.g481750			Secretory pathway			GAS30
+Cre11.g475350			Mitochondrion	GO:0051536;GO:0016226;GO:0005737	iron-sulfur cluster binding;iron-sulfur cluster assembly;cytoplasm	
+Cre11.g467767	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I		GO:0016020;GO:0009055;GO:0008137	membrane;electron carrier activity;NADH dehydrogenase (ubiquinone) activity	NUO13
+Cre11.g467562						
+Cre11.g467628						
+Cre11.g467688	GMM:26.1;GMM:23.2;GMM:17.1.1.1.12;GMM:17.1.1	misc.misc2;nucleotide metabolism.degradation;hormone metabolism.abscisic acid.synthesis-degradation.synthesis.abscisic aldehyde oxidase;hormone metabolism.abscisic acid.synthesis-degradation		GO:0055114;GO:0051536;GO:0046872;GO:0016491;GO:0009055	oxidation-reduction process;iron-sulfur cluster binding;metal ion binding;oxidoreductase activity;electron carrier activity	
+Cre11.g474950	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Secretory pathway			
+Cre11.g479450			Secretory pathway			
+Cre11.g467620						
+Cre11.g467658			Chloroplast			
+Cre11.g467733						
+Cre11.g467782						
+Cre11.g469100			Chloroplast			
+Cre11.g467633	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast	GO:0051539;GO:0051536;GO:0009451;GO:0003824	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;RNA modification;catalytic activity"	
+Cre11.g475576						
+Cre11.g467575	GMM:29.6.2.5;GMM:29.5.5;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease;stress.abiotic.heat	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	CLPB4
+Cre11.g482200						FBB9
+Cre11.g468075						
+Cre11.g467611			Mitochondrion			
+Cre11.g469400	GMM:31.9	cell.eyespot		GO:0000160	phosphorelay signal transduction system	HKR4
+Cre11.g478156	GMM:31.4	cell.vesicle transport		GO:0030131;GO:0016192;GO:0006886	clathrin adaptor complex;vesicle-mediated transport;intracellular protein transport	AP1B1
+Cre11.g479850	GMM:31.3.1;GMM:31.3;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;cell.cycle;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0003676;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;nucleic acid binding;protein peptidyl-prolyl isomerization	CYN59
+Cre11.g467558						
+Cre11.g467554				GO:0016021;GO:0004252	integral component of membrane;serine-type endopeptidase activity	
+Cre11.g475850	GMM:29.6;GMM:1.1.2.3	protein.folding;PS.lightreaction.photosystem I.biogenesis	Chloroplast.Stroma.Thylakoid.Lumen			ZNJ1
+Cre11.g467569	GMM:1.1.4.7;GMM:1.1.4	PS.lightreaction.ATP synthase.delta chain;PS.lightreaction.ATP synthase	Chloroplast	GO:0046933;GO:0015986	"proton-transporting ATP synthase activity, rotational mechanism;ATP synthesis coupled proton transport"	ATPD
+Cre11.g467587						
+Cre11.g467771						
+Cre11.g474650						
+Cre11.g476100			Mitochondrion			MCD1
+Cre11.g478966	GMM:27.1.1	RNA.processing.splicing		GO:0032040;GO:0006364	small-subunit processome;rRNA processing	
+Cre11.g468383			Chloroplast			
+Cre11.g468500	GMM:26.13	misc.acid and other phosphatases	Secretory pathway	GO:0016787	hydrolase activity	MPA8
+Cre11.g467719			Mitochondrion			
+Cre11.g467787						
+Cre11.g482800	GMM:29.4.1	protein.postranslational modification.kinase	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre11.g480650	GMM:33.99;GMM:26.22	development.unspecified;misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre11.g467604						
+Cre11.g467741			Chloroplast			
+Cre11.g467570			Mitochondrion			
+Cre11.g477400	GMM:27.3.5;GMM:23.1.2	RNA.regulation of transcription.ARR;nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190;GO:0000160	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;phosphorelay signal transduction system	CYG43
+Cre11.g481313			Secretory pathway			
+Cre11.g467660	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG17
+Cre11.g467691			Secretory pathway			
+Cre11.g476325	GMM:4.1.15	glycolysis.cytosolic branch.phospho-enol-pyruvate carboxylase (PEPC)	Chloroplast	GO:0015977;GO:0008964;GO:0006099	carbon fixation;phosphoenolpyruvate carboxylase activity;tricarboxylic acid cycle	
+Cre11.g469650			Secretory pathway			
+Cre11.g477450	GMM:29.4.1	protein.postranslational modification.kinase		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre11.g467748			Mitochondrion			
+Cre11.g467774			Secretory pathway			
+Cre11.g467603			Chloroplast			
+Cre11.g480551						
+Cre11.g467724			Mitochondrion			
+Cre11.g467645						
+Cre11.g467669						
+Cre11.g467534						
+Cre11.g482550			Mitochondrion			
+Cre11.g467694			Chloroplast			
+Cre11.g467612	GMM:9.99	mitochondrial electron transport / ATP synthesis.unspecified	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre11.g467755	GMM:30.11;GMM:26.22	signalling.light;misc.short chain dehydrogenase/reductase (SDR)				
+Cre11.g467592	GMM:34.3	transport.amino acids		GO:0016020;GO:0015171;GO:0003333	membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport	
+Cre11.g476600			Secretory pathway	GO:0055114;GO:0050660;GO:0016491	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity	
+Cre11.g476450			Mitochondrion	GO:0008168	methyltransferase activity	
+Cre11.g483000	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g467697						
+Cre11.g479500	GMM:29.2.1.1.1.2.4	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L4	Chloroplast	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	PRPL4
+Cre11.g467566						
+Cre11.g482300	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	protein binding	FAP305
+Cre11.g467614			Secretory pathway			
+Cre11.g478184			Secretory pathway	GO:0046355;GO:0004567	mannan catabolic process;beta-mannosidase activity	
+Cre11.g467783						
+Cre11.g467636	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g467726			Mitochondrion	GO:0016021;GO:0006869;GO:0005319	integral component of membrane;lipid transport;lipid transporter activity	
+Cre11.g477000	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g467795	GMM:34.21	transport.calcium		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	
+Cre11.g467762						
+Cre11.g479800	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
+Cre11.g481550	GMM:27.2	RNA.transcription				
+Cre11.g467630	GMM:29.3.3;GMM:26.8	"protein.targeting.chloroplast;misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Chloroplast	GO:0016884	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor"	AMI2
+Cre11.g481800	GMM:27.3.17	RNA.regulation of transcription.CPP(Zn) CPP1-related transcription factor family				
+Cre11.g467789			Secretory pathway			
+Cre11.g477350						
+Cre11.g467729			Mitochondrion			
+Cre11.g467667			Secretory pathway			
+Cre11.g467674			Secretory pathway			
+Cre11.g468371			Chloroplast			
+Cre11.g467749			Chloroplast			
+Cre11.g477750			Secretory pathway			
+Cre11.g467557	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				
+Cre11.g467950			Mitochondrion			FAP383
+Cre11.g467745	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007020;GO:0005856;GO:0005815;GO:0000922;GO:0000226	microtubule nucleation;cytoskeleton;microtubule organizing center;spindle pole;microtubule cytoskeleton organization	GCP3
+Cre11.g467522			Secretory pathway			
+Cre11.g467646						
+Cre11.g476026			Mitochondrion			
+Cre11.g478982			Mitochondrion			
+Cre11.g467751	GMM:27.3.55	RNA.regulation of transcription.HDA				
+Cre11.g467714			Mitochondrion			
+Cre11.g468350			Mitochondrion			
+Cre11.g467777	GMM:23.3.1.3	nucleotide metabolism.salvage.phosphoribosyltransferases.uracil phosphoribosyltransferase (UPP)				
+Cre11.g467605						
+Cre11.g467711	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0017038;GO:0016020;GO:0005524	protein import;membrane;ATP binding	
+Cre11.g475600						FAP362
+Cre11.g468400			Chloroplast			
+Cre11.g467535	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Mitochondrion			MCP26
+Cre11.g483200			Mitochondrion			
+Cre11.g482150			Secretory pathway			
+Cre11.g467649			Mitochondrion	GO:0004672	protein kinase activity	OPR107
+Cre11.g467770	GMM:4.1.11;GMM:1.3.3	glycolysis.cytosolic branch.3-phosphoglycerate kinase (PGK);PS.calvin cycle.phosphoglycerate kinase	Chloroplast	GO:0006096;GO:0004618	glycolytic process;phosphoglycerate kinase activity	PGK1
+Cre11.g467763						
+Cre11.g467679			Mitochondrion			
+Cre11.g480116						
+Cre11.g467766				GO:0008452;GO:0006396	RNA ligase activity;RNA processing	
+Cre11.g467727			Secretory pathway	GO:0004519;GO:0003676	endonuclease activity;nucleic acid binding	
+Cre11.g468300	GMM:30.5;GMM:3.5;GMM:29.3.4.99	signalling.G-proteins;minor CHO metabolism.others;protein.targeting.secretory pathway.unspecified				SAR1
+Cre11.g468450	GMM:31.6.1.4.2.1;GMM:31.6.1.2;GMM:31.6.1.1;GMM:31.1;GMM:28.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.deflagellation;cell.motility.eukaryotes.basal bodies;cell.organisation;DNA.synthesis/chromatin structure				DLE2
+Cre11.g467574	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion			
+Cre11.g467750			Mitochondrion			
+Cre11.g481200	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH6
+Cre11.g477500			Chloroplast			
+Cre11.g467567	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin				UBQ1
+Cre11.g468700	GMM:18	Co-factor and vitamine metabolism	Chloroplast			CPLD65
+Cre11.g480200						
+Cre11.g467597	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre11.g467672	GMM:20.1.7;GMM:20.1;GMM:2.1	stress.biotic.PR-proteins;stress.biotic;major CHO metabolism.synthesis	Chloroplast			
+Cre11.g477050						
+Cre11.g469550			Chloroplast			
+Cre11.g467631	GMM:29.5.7	protein.degradation.metalloprotease		GO:0008270;GO:0006508;GO:0004181	zinc ion binding;proteolysis;metallocarboxypeptidase activity	CGL90
+Cre11.g477550			Chloroplast			
+Cre11.g467698			Chloroplast			
+Cre11.g482351						
+Cre11.g478400						
+Cre11.g477850	GMM:27.3.73;GMM:27.3.70	RNA.regulation of transcription.Zn-finger(CCHC);RNA.regulation of transcription.silencing group		GO:0035194;GO:0003712	posttranscriptional gene silencing by RNA;transcription cofactor activity	TXC1
+Cre11.g467613			Secretory pathway			
+Cre11.g480350	GMM:29.4	protein.postranslational modification		GO:0055114	oxidation-reduction process	
+Cre11.g476351			Mitochondrion			
+Cre11.g467549			Chloroplast			
+Cre11.g481900	GMM:27.1	RNA.processing				
+Cre11.g467607						
+Cre11.g467546	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway			
+Cre11.g467686						
+Cre11.g467784						
+Cre11.g481300			Chloroplast			
+Cre11.g478626			Secretory pathway			
+Cre11.g478212						
+Cre11.g477733						
+Cre11.g482952			Secretory pathway			
+Cre11.g467759			Chloroplast			
+Cre11.g467681				GO:0035091	phosphatidylinositol binding	
+Cre11.g475432						
+Cre11.g476150	GMM:26.1	misc.misc2	Secretory pathway			
+Cre11.g482276						
+Cre11.g467761						
+Cre11.g477300	GMM:29.4	protein.postranslational modification	Mitochondrion			FAP8
+Cre11.g479000	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG7
+Cre11.g467601	GMM:35.1.19;GMM:3.3	not assigned.no ontology.C2 domain-containing protein;minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
+Cre11.g467637	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification				
+Cre11.g467564				GO:0005525	GTP binding	ARL16
+Cre11.g467666			Secretory pathway			LCI13
+Cre11.g467735			Secretory pathway			
+Cre11.g467623			Chloroplast			
+Cre11.g481150						
+Cre11.g468374	GMM:16.1	secondary metabolism.isoprenoids				
+Cre11.g483250			Secretory pathway			PHC45
+Cre11.g467657			Secretory pathway			
+Cre11.g467573	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA3
+Cre11.g481000	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre11.g478100						
+Cre11.g467523			Mitochondrion			
+Cre11.g467556			Mitochondrion			
+Cre11.g480851			Secretory pathway			RRA3
+Cre11.g467589	GMM:30.2.24;GMM:29.4	signalling.receptor kinases.S-locus glycoprotein like;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g467596						
+Cre11.g468950	GMM:9.5	mitochondrial electron transport / ATP synthesis.cytochrome c reductase		GO:0006122;GO:0005750;GO:0005743	"mitochondrial electron transport, ubiquinol to cytochrome c;mitochondrial respiratory chain complex III;mitochondrial inner membrane"	QCR9
+Cre11.g475650			Chloroplast			
+Cre11.g467700	GMM:19.7	tetrapyrrole synthesis.uroporphyrinogen decarboxylase	Chloroplast	GO:0006779;GO:0004853	porphyrin-containing compound biosynthetic process;uroporphyrinogen decarboxylase activity	UROD1
+Cre11.g467651	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity	
+Cre11.g467536	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre11.g468050	GMM:27.3.99;GMM:1.1.99	RNA.regulation of transcription.unclassified;PS.lightreaction.unspecified	Chloroplast.Stroma			VIPP2
+Cre11.g467606						
+Cre11.g467580						FAP370
+Cre11.g467647	GMM:33.99;GMM:30.11.1	development.unspecified;signalling.light.COP9 signalosome		GO:0005515	protein binding	
+Cre11.g467746				GO:0005515	protein binding	
+Cre11.g479550						
+Cre11.g467765						
+Cre11.g467599	GMM:35.1.19;GMM:3.3	not assigned.no ontology.C2 domain-containing protein;minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
+Cre11.g467709			Secretory pathway			
+Cre11.g468750			Chloroplast			CPLD48
+Cre11.g480079	GMM:28.99	DNA.unspecified				
+Cre11.g467543			Secretory pathway			
+Cre11.g475626			Mitochondrion			
+Cre11.g469500	GMM:30.99	signalling.unspecified		GO:0006355	"regulation of transcription, DNA-templated"	
+Cre11.g467350	GMM:11.9.4.2	lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH	Chloroplast	GO:0055114;GO:0006635;GO:0005777;GO:0003997;GO:0003995	oxidation-reduction process;fatty acid beta-oxidation;peroxisome;acyl-CoA oxidase activity;acyl-CoA dehydrogenase activity	
+Cre11.g468150			Secretory pathway			
+Cre11.g467740			Chloroplast			
+Cre11.g481600			Secretory pathway			GAS28
+Cre11.g467712			Mitochondrion	GO:2001070	starch binding	
+Cre14.g625550						
+Cre14.g632775	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	protein binding	
+Cre14.g608400			Chloroplast			
+Cre14.g619613	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0006338;GO:0000228	chromatin remodeling;nuclear chromosome	
+Cre14.g626500				GO:0005515	protein binding	
+Cre14.g618400	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
+Cre14.g617800	GMM:9.1.2;GMM:34.99	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;transport.misc	Secretory pathway			
+Cre14.g616100	GMM:29.6.3.1;GMM:29.6	protein.folding.immunophilins (IMM).FKBPs;protein.folding		GO:0006457	protein folding	FKB53
+Cre14.g617550	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm				DLE3
+Cre14.g618200						
+Cre14.g617200	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase				RLS7
+Cre14.g631550			Chloroplast			
+Cre14.g619950						
+Cre14.g615100	GMM:29.4;GMM:27.3.67	protein.postranslational modification;RNA.regulation of transcription.putative transcription regulator		GO:0055114;GO:0033743;GO:0030091;GO:0016671;GO:0006979	"oxidation-reduction process;peptide-methionine (R)-S-oxide reductase activity;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;response to oxidative stress"	MSR1
+Cre14.g610501	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast			
+Cre14.g624800						
+Cre14.g617100	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	SRS9
+Cre14.g619200						
+Cre14.g611800			Secretory pathway			
+Cre14.g613250						
+Cre14.g628237	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre14.g621501			Mitochondrion;Chloroplast			
+Cre14.g622850	GMM:28.2	DNA.repair				RAD51
+Cre14.g613000			Secretory pathway			
+Cre14.g630000			Chloroplast			KIR2
+Cre14.g610700			Secretory pathway			PHC72
+Cre14.g631150			Mitochondrion	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP14
+Cre14.g627200						
+Cre14.g623439			Mitochondrion			
+Cre14.g608800	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast			
+Cre14.g621200			Chloroplast			
+Cre14.g627455			Mitochondrion			
+Cre14.g630763						
+Cre14.g633150			Chloroplast			OPR66
+Cre14.g633250						
+Cre14.g623176			Chloroplast			
+Cre14.g630376			Mitochondrion			
+Cre14.g633425			Chloroplast			
+Cre14.g628350	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	HSLV1
+Cre14.g628900			Mitochondrion			
+Cre14.g625300	GMM:34.99;GMM:34.21;GMM:34.14	transport.misc;transport.calcium;transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	CAX3
+Cre14.g632600						
+Cre14.g608452	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
+Cre14.g613750			Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre14.g616450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG46
+Cre14.g609950			Mitochondrion			
+Cre14.g627576	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Chloroplast	GO:0030286;GO:0016887;GO:0007018;GO:0005858;GO:0003777;GO:0001539	dynein complex;ATPase activity;microtubule-based movement;axonemal dynein complex;microtubule motor activity;cilium or flagellum-dependent cell motility	DHC7
+Cre14.g633100			Chloroplast	GO:0006351;GO:0003714	"transcription, DNA-templated;transcription corepressor activity"	
+Cre14.g610200						
+Cre14.g630550	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0005515	protein binding	DEG1B
+Cre14.g612800			Chloroplast			
+Cre14.g628650	GMM:8.2.10	TCA / organic transformation.other organic acid transformations.malic	Mitochondrion	GO:0055114;GO:0051287;GO:0004471	oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity	MME4
+Cre14.g614100	GMM:29.7;GMM:26.1	protein.glycosylation;misc.misc2	Secretory pathway	GO:0018279;GO:0005789	protein N-linked glycosylation via asparagine;endoplasmic reticulum membrane	GTR26
+Cre14.g621751	GMM:10.1.1.20	cell wall.precursor synthesis.NDP sugar pyrophosphorylase.multiple NDP-Sugars		GO:0070569;GO:0008152	uridylyltransferase activity;metabolic process	USP
+Cre14.g626100			Mitochondrion			
+Cre14.g610750	GMM:34.99	transport.misc	Secretory pathway	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
+Cre14.g614200	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				
+Cre14.g612633						PHC58
+Cre14.g609400	GMM:29.4	protein.postranslational modification	Chloroplast			
+Cre14.g614600			Secretory pathway			
+Cre14.g627750			Mitochondrion			
+Cre14.g613350	GMM:29.5.11	protein.degradation.ubiquitin		GO:0006511	ubiquitin-dependent protein catabolic process	
+Cre14.g611100						FAP27
+Cre14.g627000			Chloroplast			
+Cre14.g615200						
+Cre14.g615650			Secretory pathway			
+Cre14.g624950	GMM:31.6.1.4.2.1;GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.inner arm	Secretory pathway	GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC10
+Cre14.g619300	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN16
+Cre14.g632050	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
+Cre14.g619550	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA7
+Cre14.g632350	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			FAP138
+Cre14.g611400						
+Cre14.g632839						
+Cre14.g611051						
+Cre14.g620000			Mitochondrion			
+Cre14.g609030	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"		GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	
+Cre14.g625600						FHL10
+Cre14.g633400						PGA7
+Cre14.g616400			Chloroplast			
+Cre14.g618300						
+Cre14.g631148			Mitochondrion	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
+Cre14.g630200						FAP312
+Cre14.g631850				GO:0016791;GO:0008152	phosphatase activity;metabolic process	
+Cre14.g618820						CSB57
+Cre14.g627850	GMM:13.1.3.5.2	amino acid metabolism.synthesis.aspartate family.lysine.dihydrodipicolinate reductase	Chloroplast	GO:0055114;GO:0009089;GO:0008839	oxidation-reduction process;lysine biosynthetic process via diaminopimelate;4-hydroxy-tetrahydrodipicolinate reductase	
+Cre14.g632783	GMM:31.3	cell.cycle		GO:0070985;GO:0019901;GO:0016538;GO:0006355;GO:0006351;GO:0000079	"TFIIK complex;protein kinase binding;cyclin-dependent protein serine/threonine kinase regulator activity;regulation of transcription, DNA-templated;transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	
+Cre14.g618611						
+Cre14.g622951			Mitochondrion			
+Cre14.g626550						
+Cre14.g620600	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC2
+Cre14.g631500						
+Cre14.g622270			Mitochondrion			
+Cre14.g633904			Chloroplast			
+Cre14.g620702	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC24
+Cre14.g628200	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre14.g629464	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB58
+Cre14.g610663	GMM:27.1.19	RNA.processing.ribonucleases				
+Cre14.g625251			Secretory pathway			CSV12
+Cre14.g627350			Secretory pathway	GO:0016021	integral component of membrane	
+Cre14.g613600	GMM:20.2.1	stress.abiotic.heat				HSP70H
+Cre14.g631050			Mitochondrion			
+Cre14.g627444			Mitochondrion			
+Cre14.g623200	GMM:29.5	protein.degradation		GO:0006508;GO:0005622;GO:0004177	proteolysis;intracellular;aminopeptidase activity	LAP1
+Cre14.g614000			Chloroplast			CGL17
+Cre14.g608500				GO:0005737	cytoplasm	
+Cre14.g610550	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre14.g615450			Mitochondrion			
+Cre14.g622700	GMM:34.8	transport.metabolite transporters at the envelope membrane				
+Cre14.g620350	GMM:18.3.1;GMM:18.3;GMM:18	Co-factor and vitamine metabolism.riboflavin.GTP cyclohydrolase II;Co-factor and vitamine metabolism.riboflavin;Co-factor and vitamine metabolism	Mitochondrion	GO:0009231;GO:0008686;GO:0003935	"riboflavin biosynthetic process;3,4-dihydroxy-2-butanone-4-phosphate synthase activity;GTP cyclohydrolase II activity"	GCH3
+Cre14.g631100	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0016020;GO:0008234;GO:0006508;GO:0005044	membrane;cysteine-type peptidase activity;proteolysis;scavenger receptor activity	SRR29
+Cre14.g625625	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion	GO:0016887;GO:0006508;GO:0005524;GO:0004222	ATPase activity;proteolysis;ATP binding;metalloendopeptidase activity	FTSH11
+Cre14.g615224						
+Cre14.g629960	GMM:15.2	"metal handling.binding, chelation and storage"	Mitochondrion	GO:0046938;GO:0046872;GO:0016756;GO:0010038	phytochelatin biosynthetic process;metal ion binding;glutathione gamma-glutamylcysteinyltransferase activity;response to metal ion	
+Cre14.g627700			Mitochondrion			
+Cre14.g622650			Secretory pathway			
+Cre14.g614750			Chloroplast	GO:0008080	N-acetyltransferase activity	
+Cre14.g630847	GMM:7.2.2	OPP.non-reductive PP.transaldolase	Chloroplast	GO:0005975	carbohydrate metabolic process	TAL2
+Cre14.g608150			Mitochondrion			
+Cre14.g626300						
+Cre14.g627500			Mitochondrion			
+Cre14.g624850			Chloroplast			
+Cre14.g633200						
+Cre14.g630400	GMM:3.5;GMM:21.2.1.4	minor CHO metabolism.others;redox.ascorbate and glutathione.ascorbate.L-galactose dehydrogenase				
+Cre14.g613426			Mitochondrion			
+Cre14.g618750	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0005515	protein binding	FAP246
+Cre14.g631575			Chloroplast			
+Cre14.g628050			Mitochondrion			COG1
+Cre14.g633903			Mitochondrion			
+Cre14.g612976						
+Cre14.g618776	GMM:29.4	protein.postranslational modification	Mitochondrion			FAP246
+Cre14.g629102			Secretory pathway	GO:0008236;GO:0006508	serine-type peptidase activity;proteolysis	
+Cre14.g612700	GMM:29.5.11.4.3.2;GMM:11.1.13	protein.degradation.ubiquitin.E3.SCF.FBOX;lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein		GO:0005515	protein binding	DRC7
+Cre14.g623850						
+Cre14.g608950	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"				
+Cre14.g627488	GMM:19.1	tetrapyrrole synthesis.glu-tRNA synthetase		GO:0016884;GO:0016874	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor;ligase activity"	
+Cre14.g614151	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion			
+Cre14.g620951			Mitochondrion			
+Cre14.g629500						
+Cre14.g619100	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			CLPR1
+Cre14.g611450	GMM:31.1	cell.organisation	Chloroplast			PLAP7
+Cre14.g625750	GMM:29.3.3	protein.targeting.chloroplast				TIC22
+Cre14.g616376						
+Cre14.g613075						
+Cre14.g632000	GMM:29.9;GMM:29.6.2.6;GMM:29.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding	Mitochondrion	GO:0051087;GO:0042803;GO:0006457;GO:0000774	chaperone binding;protein homodimerization activity;protein folding;adenyl-nucleotide exchange factor activity	CGE2
+Cre14.g629840			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre14.g624600			Chloroplast			
+Cre14.g615634			Secretory pathway			
+Cre14.g614226			Mitochondrion			
+Cre14.g614650						
+Cre14.g625950	GMM:27.1	RNA.processing	Mitochondrion	GO:0016779;GO:0006396;GO:0003723	nucleotidyltransferase activity;RNA processing;RNA binding	PAP4
+Cre14.g623800	GMM:26.24	misc.GCN5-related N-acetyltransferase		GO:0008080	N-acetyltransferase activity	
+Cre14.g630787			Mitochondrion			
+Cre14.g629880	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0005515	protein binding	
+Cre14.g619750			Secretory pathway			
+Cre14.g608970	GMM:29.2.1.99.2.34	protein.synthesis.ribosomal protein.unknown.large subunit.L34	Mitochondrion	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL34A
+Cre14.g627300						
+Cre14.g608300			Mitochondrion			
+Cre14.g633901						
+Cre14.g629600						
+Cre14.g632847			Chloroplast			ELG44
+Cre14.g631600						
+Cre14.g618550			Secretory pathway			
+Cre14.g628150	GMM:27.1	RNA.processing				
+Cre14.g631451						
+Cre14.g630982						
+Cre14.g614350	GMM:30.9	signalling.lipids				
+Cre14.g626576			Mitochondrion			
+Cre14.g620076			Secretory pathway			
+Cre14.g609900	GMM:21.3	redox.heme	Secretory pathway	GO:0016021	integral component of membrane	
+Cre14.g624700			Mitochondrion			
+Cre14.g619250			Chloroplast			
+Cre14.g618500	GMM:28.2	DNA.repair	Chloroplast			
+Cre14.g630450						
+Cre14.g631000			Mitochondrion			
+Cre14.g624125						
+Cre14.g629150	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG4
+Cre14.g625150	GMM:4.3.12;GMM:4.1.12	glycolysis.unclear/dually targeted.phosphoglycerate mutase;glycolysis.cytosolic branch.phosphoglycerate mutase	Chloroplast			PGM8
+Cre14.g614250				GO:0072546;GO:0016021;GO:0005783	ER membrane protein complex;integral component of membrane;endoplasmic reticulum	
+Cre14.g627433			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre14.g634113						
+Cre14.g632823			Chloroplast			
+Cre14.g609350			Chloroplast			
+Cre14.g632759						
+Cre14.g630799			Mitochondrion			
+Cre14.g632550						
+Cre14.g624050			Chloroplast			
+Cre14.g618600	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP7
+Cre14.g611552	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	TGL22
+Cre14.g632100	GMM:28.2	DNA.repair				
+Cre14.g619400	GMM:29.5.5	protein.degradation.serine protease				
+Cre14.g612450	GMM:29.2.1.1.4.2;GMM:29.2.1.1.3.2.15;GMM:29.2.1.1.1.2.15	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L15;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L15	Chloroplast	GO:0015934;GO:0006412;GO:0003735	large ribosomal subunit;translation;structural constituent of ribosome	PRPL15
+Cre14.g630301			Mitochondrion	GO:0003723	RNA binding	
+Cre14.g627400			Mitochondrion			
+Cre14.g633000				GO:0055114;GO:0016972	oxidation-reduction process;thiol oxidase activity	ERV1
+Cre14.g633850			Mitochondrion			
+Cre14.g632750	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre14.g620217						
+Cre14.g634193						
+Cre14.g608093			Mitochondrion			
+Cre14.g632501			Secretory pathway			
+Cre14.g627050			Chloroplast			
+Cre14.g611484			Mitochondrion			
+Cre14.g624650			Chloroplast			
+Cre14.g624400			Mitochondrion			FAP99
+Cre14.g615250				GO:0045454	cell redox homeostasis	TRX18
+Cre14.g609700			Secretory pathway			
+Cre14.g627477			Chloroplast			
+Cre14.g614050	GMM:31.1	cell.organisation		GO:0008017;GO:0000910;GO:0000226	microtubule binding;cytokinesis;microtubule cytoskeleton organization	
+Cre14.g612900	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB56
+Cre14.g609050	GMM:29.2.1.99.2.34	protein.synthesis.ribosomal protein.unknown.large subunit.L34		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL34B
+Cre14.g628950						
+Cre14.g623350			Mitochondrion			
+Cre14.g626667			Mitochondrion			
+Cre14.g616900			Secretory pathway	GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0006810	integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;transport	SULP2
+Cre14.g630871	GMM:31.1;GMM:27.2	cell.organisation;RNA.transcription				
+Cre14.g621700	GMM:29.5.7	protein.degradation.metalloprotease				MMP31
+Cre14.g618700			Mitochondrion	GO:0006412	translation	MRPS7
+Cre14.g623600			Mitochondrion			
+Cre14.g628566			Chloroplast			
+Cre14.g622750	GMM:27.1.19	RNA.processing.ribonucleases	Mitochondrion			
+Cre14.g617750	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Mitochondrion	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE3
+Cre14.g608550						
+Cre14.g631750			Mitochondrion			
+Cre14.g613900	GMM:31.3	cell.cycle		GO:0019901;GO:0006355;GO:0000079	"protein kinase binding;regulation of transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	CYCT1
+Cre14.g633050			Mitochondrion			
+Cre14.g621000	GMM:31.3	cell.cycle		GO:0006396;GO:0005622	RNA processing;intracellular	
+Cre14.g630750	GMM:3.6;GMM:29.4.1	minor CHO metabolism.callose;protein.postranslational modification.kinase	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK10
+Cre14.g633900			Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre14.g627800	GMM:13.1.3.5.2;GMM:11.1.13	amino acid metabolism.synthesis.aspartate family.lysine.dihydrodipicolinate reductase;lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein		GO:0000062	fatty-acyl-CoA binding	
+Cre14.g609150			Chloroplast			
+Cre14.g618641						
+Cre14.g612350	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor		GO:0005515	protein binding	
+Cre14.g628800	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
+Cre14.g629550				GO:0003723	RNA binding	
+Cre14.g631145				GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
+Cre14.g608050			Secretory pathway			
+Cre14.g608990			Chloroplast			
+Cre14.g613100						
+Cre14.g614400	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0016818;GO:0008270;GO:0005524;GO:0005515;GO:0003676	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;zinc ion binding;ATP binding;protein binding;nucleic acid binding"	
+Cre14.g608900	GMM:30.11.1	signalling.light.COP9 signalosome	Chloroplast			
+Cre14.g630100	GMM:29.2.1.2.2.13	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L13		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL13
+Cre14.g617500	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP14
+Cre14.g631650						FAP406
+Cre14.g608600			Secretory pathway			
+Cre14.g616501						
+Cre14.g634100						
+Cre14.g620050			Mitochondrion			
+Cre14.g608350	GMM:30.11.1	signalling.light.COP9 signalosome	Chloroplast			
+Cre14.g612000	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre14.g629200						FAP98
+Cre14.g632831			Secretory pathway			
+Cre14.g623550			Chloroplast			
+Cre14.g614708						
+Cre14.g617700	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE2
+Cre14.g610100						
+Cre14.g627411						
+Cre14.g624201	GMM:21.1	redox.thioredoxin	Mitochondrion	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	
+Cre14.g613700						
+Cre14.g612850			Secretory pathway	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre14.g622900			Chloroplast			
+Cre14.g625650						
+Cre14.g626000				GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre14.g625100						
+Cre14.g619350			Mitochondrion	GO:0005524	ATP binding	
+Cre14.g624750			Secretory pathway			
+Cre14.g618450			Secretory pathway			
+Cre14.g630950	GMM:26.23	misc.rhodanese				
+Cre14.g615700			Chloroplast			
+Cre14.g626600			Secretory pathway			
+Cre14.g609850			Secretory pathway			
+Cre14.g629920	GMM:34.5	transport.ammonium		GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	
+Cre14.g628533	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG3
+Cre14.g613400	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies		GO:0005515	protein binding	POC16
+Cre14.g622480	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
+Cre14.g630600			Chloroplast			
+Cre14.g630050			Mitochondrion			
+Cre14.g615900	GMM:34.99	transport.misc		GO:0016021;GO:0006810	integral component of membrane;transport	FBT3
+Cre14.g616050			Mitochondrion			
+Cre14.g617950				GO:0005509	calcium ion binding	CAM18
+Cre14.g615300						
+Cre14.g630775			Mitochondrion			
+Cre14.g621050	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
+Cre14.g613950	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
+Cre14.g618050	GMM:31.1	cell.organisation	Chloroplast			PLAP3
+Cre14.g610250			Chloroplast			
+Cre14.g632400				GO:0005515	protein binding	SSA19
+Cre14.g616800						
+Cre14.g626750	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			
+Cre14.g630811						
+Cre14.g626250						
+Cre14.g632076						
+Cre14.g624350	GMM:16.1.3.5	secondary metabolism.isoprenoids.tocopherol biosynthesis.tocopherol methyltransferase	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	VTE6
+Cre14.g618800						
+Cre14.g623150						
+Cre14.g620300	GMM:13.1.6.5.1	amino acid metabolism.synthesis.aromatic aa.tryptophan.anthranilate synthase	Chloroplast	GO:0016787;GO:0006541	hydrolase activity;glutamine metabolic process	ASB1
+Cre14.g623403						
+Cre14.g616950	GMM:15	metal handling				SELT
+Cre14.g609750			Secretory pathway			
+Cre14.g612750			Mitochondrion			FAP197
+Cre14.g620200						
+Cre14.g634150						
+Cre14.g610647	GMM:31.1	cell.organisation	Mitochondrion	GO:0007010;GO:0003779	cytoskeleton organization;actin binding	
+Cre14.g611650	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast	GO:0055114;GO:0050660;GO:0016491	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity	ALO2
+Cre14.g614850						FAP33
+Cre14.g614300	GMM:23.1.2.30	nucleotide metabolism.synthesis.purine.IMP dehydrogenase		GO:0055114;GO:0006164;GO:0003938;GO:0003824	oxidation-reduction process;purine nucleotide biosynthetic process;IMP dehydrogenase activity;catalytic activity	
+Cre14.g627788			Mitochondrion			
+Cre14.g628100	GMM:27.4;GMM:27.1.1	RNA.RNA binding;RNA.processing.splicing				SPL7
+Cre14.g609650				GO:0048037	cofactor binding	
+Cre14.g610566			Mitochondrion	GO:0007010;GO:0003779	cytoskeleton organization;actin binding	
+Cre14.g627466			Chloroplast			
+Cre14.g615850						EFH8
+Cre14.g620652						
+Cre14.g609202	GMM:29.5.7	protein.degradation.metalloprotease		GO:0031012;GO:0016491;GO:0008270;GO:0008152;GO:0006508;GO:0004222	extracellular matrix;oxidoreductase activity;zinc ion binding;metabolic process;proteolysis;metalloendopeptidase activity	
+Cre14.g612400						
+Cre14.g611350						
+Cre14.g615550	GMM:29.4;GMM:11.9.2	protein.postranslational modification;lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	TGL19
+Cre14.g629241			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG25
+Cre14.g628850	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG26
+Cre14.g625000			Mitochondrion			
+Cre14.g618650						IQA1
+Cre14.g623700			Mitochondrion			OPR63
+Cre14.g616550			Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG50
+Cre14.g610631	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre14.g615800			Chloroplast			
+Cre14.g633700			Secretory pathway			
+Cre14.g622600			Mitochondrion			
+Cre14.g631950			Secretory pathway			
+Cre14.g621100			Secretory pathway			
+Cre14.g619500			Mitochondrion			
+Cre14.g621800			Secretory pathway			
+Cre14.g616000	GMM:26.23	misc.rhodanese				
+Cre14.g631701						
+Cre14.g613134						
+Cre14.g632807			Secretory pathway			
+Cre14.g620250						
+Cre14.g624476						
+Cre14.g611250	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				
+Cre14.g623100						
+Cre14.g618000				GO:0005509	calcium ion binding	EFH9
+Cre14.g634279						
+Cre14.g630907	GMM:29.5.2	protein.degradation.autophagy		GO:0006914;GO:0005737	autophagy;cytoplasm	ATG5
+Cre14.g617300	GMM:29.5.4	protein.degradation.aspartate protease	Chloroplast	GO:0016021;GO:0004190	integral component of membrane;aspartic-type endopeptidase activity	PSL3
+Cre14.g633626			Secretory pathway			
+Cre14.g610000						
+Cre14.g622000			Chloroplast			
+Cre14.g619825	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0006259;GO:0005694;GO:0005524;GO:0003824;GO:0003677;GO:0000737	"DNA metabolic process;chromosome;ATP binding;catalytic activity;DNA binding;DNA catabolic process, endonucleolytic"	
+Cre14.g620500	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	GO:0006355;GO:0003700	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre14.g627422						
+Cre14.g614950			Secretory pathway	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS2
+Cre14.g630650			Secretory pathway			
+Cre14.g609600			Mitochondrion			
+Cre14.g630150				GO:0016567;GO:0007165;GO:0006955;GO:0004842	protein ubiquitination;signal transduction;immune response;ubiquitin-protein transferase activity	
+Cre14.g613800						
+Cre14.g623926				GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre14.g632250	GMM:28.2	DNA.repair	Mitochondrion			
+Cre14.g625500	GMM:31.1	cell.organisation				FAP254
+Cre14.g623250			Secretory pathway			
+Cre14.g611700	GMM:31.1	cell.organisation	Chloroplast			PLAP8
+Cre14.g616750	GMM:29.3.5	protein.targeting.peroxisomes				PEX5
+Cre14.g629700	GMM:8.2.10	TCA / organic transformation.other organic acid transformations.malic	Chloroplast	GO:0055114;GO:0051287;GO:0004471	oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity	MME3
+Cre14.g632450			Secretory pathway	GO:0005515	protein binding	
+Cre14.g618979			Mitochondrion			
+Cre14.g608652						
+Cre14.g631900	GMM:29.5.5;GMM:27.1.19	protein.degradation.serine protease;RNA.processing.ribonucleases		GO:0016788	"hydrolase activity, acting on ester bonds"	
+Cre14.g628000	GMM:27.1	RNA.processing	Chloroplast	GO:0016740;GO:0008033;GO:0006529;GO:0004066	transferase activity;tRNA processing;asparagine biosynthetic process;asparagine synthase (glutamine-hydrolyzing) activity	
+Cre14.g615350				GO:0019825	oxygen binding	THB2
+Cre14.g633600			Mitochondrion			
+Cre14.g616976			Mitochondrion			
+Cre14.g632700	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre14.g626700	GMM:1.1.5.2	PS.lightreaction.other electron carrier (ox/red).ferredoxin	Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	PETF
+Cre14.g615150			Mitochondrion			
+Cre14.g633450			Chloroplast			
+Cre14.g630823			Mitochondrion			
+Cre14.g623050			Chloroplast			
+Cre14.g616700			Secretory pathway			
+Cre14.g613550						FAP203
+Cre14.g612250						FAP388
+Cre14.g632950	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				NOT1
+Cre14.g627150			Mitochondrion			
+Cre14.g621150			Chloroplast			
+Cre14.g626350						
+Cre14.g612150						PAP10
+Cre14.g625200				GO:0006367;GO:0005672	transcription initiation from RNA polymerase II promoter;transcription factor TFIIA complex	
+Cre14.g615950	GMM:34.16;GMM:29.2.2.1	transport.ABC transporters and multidrug resistance systems;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre14.g631400			Secretory pathway			
+Cre14.g616200	GMM:10.2	cell wall.cellulose synthesis	Secretory pathway	GO:0016758;GO:0016021;GO:0006506	"transferase activity, transferring hexosyl groups;integral component of membrane;GPI anchor biosynthetic process"	PIGM
+Cre14.g610582	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre14.g634000						
+Cre14.g624000						
+Cre14.g608788			Secretory pathway			
+Cre14.g617050			Secretory pathway			
+Cre14.g629283			Secretory pathway	GO:0006396;GO:0004000;GO:0003723	RNA processing;adenosine deaminase activity;RNA binding	
+Cre14.g611300			Secretory pathway	GO:0016020	membrane	COP3
+Cre14.g617650	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE1
+Cre14.g611950			Chloroplast			
+Cre14.g614800			Chloroplast			
+Cre14.g633650	GMM:27.1.1	RNA.processing.splicing		GO:0005634;GO:0000398	"nucleus;mRNA splicing, via spliceosome"	PRP6
+Cre14.g608275						
+Cre14.g613450			Secretory pathway			CGL87
+Cre14.g622100						
+Cre14.g614500				GO:0005515	protein binding	
+Cre14.g610900						
+Cre14.g633750	GMM:29.3.1	protein.targeting.nucleus	Secretory pathway			IPB2
+Cre14.g619700			Mitochondrion			
+Cre14.g615776						
+Cre14.g623650	GMM:16.2.1.10	secondary metabolism.phenylpropanoids.lignin biosynthesis.CAD	Chloroplast	GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH7
+Cre14.g633550			Mitochondrion			
+Cre14.g625225			Secretory pathway			
+Cre14.g621250	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			
+Cre14.g620800			Mitochondrion			
+Cre14.g623125			Secretory pathway			
+Cre14.g612950	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG17
+Cre14.g632860	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre14.g620100						
+Cre14.g622340			Secretory pathway			
+Cre14.g628702						
+Cre14.g624450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre14.g613150			Chloroplast			
+Cre14.g629650	GMM:34.12	transport.metal	Chloroplast			NIK1
+Cre14.g608250						
+Cre14.g617350			Mitochondrion			
+Cre14.g611750	GMM:33.99	development.unspecified	Mitochondrion	GO:0005515	protein binding	
+Cre14.g617250						FAP282
+Cre14.g630835						
+Cre14.g618926			Chloroplast			
+Cre14.g611200			Chloroplast	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
+Cre14.g632815						
+Cre14.g610950	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	PBD1
+Cre14.g621676						
+Cre14.g630500				GO:0006388;GO:0000213	"tRNA splicing, via endonucleolytic cleavage and ligation;tRNA-intron endonuclease activity"	TIE2
+Cre14.g622800	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Mitochondrion	GO:0006629	lipid metabolic process	
+Cre14.g623576						
+Cre14.g608100			Chloroplast			
+Cre14.g609800			Secretory pathway			
+Cre14.g617002			Mitochondrion			
+Cre14.g634236			Chloroplast			
+Cre14.g618950			Secretory pathway			
+Cre14.g632176			Secretory pathway			
+Cre14.g619450			Secretory pathway			
+Cre14.g610150			Mitochondrion			
+Cre14.g623300			Secretory pathway	GO:0051536;GO:0010181;GO:0003824	iron-sulfur cluster binding;FMN binding;catalytic activity	NCP1
+Cre14.g617900	GMM:29.2.1.2.2.35	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L35		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL35
+Cre14.g630700						
+Cre14.g625450	GMM:16.1.3.3	secondary metabolism.isoprenoids.tocopherol biosynthesis.MPBQ/MSBQ methyltransferase	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	VTE3
+Cre14.g632900						
+Cre14.g618150				GO:0008017;GO:0007010	microtubule binding;cytoskeleton organization	
+Cre14.g616151						
+Cre14.g615400				GO:0019825	oxygen binding	THB1
+Cre14.g610599						
+Cre14.g617600	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			DEG9
+Cre14.g612300						
+Cre14.g614900	GMM:29.1.18	protein.aa activation.glutamine-tRNA ligase		GO:0043039;GO:0016876;GO:0006425;GO:0006418;GO:0005737;GO:0005524;GO:0004819;GO:0004812;GO:0000166	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;glutaminyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;glutamine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding"	TSQ1
+Cre14.g621475						
+Cre14.g626400	GMM:26.10;GMM:26.1;GMM:17.2.2	misc.cytochrome P450;misc.misc2;hormone metabolism.auxin.signal transduction	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743C1
+Cre14.g611517	GMM:26.9	misc.glutathione S transferases				
+Cre14.g613850	GMM:31.2	cell.division				
+Cre14.g626433			Mitochondrion			
+Cre14.g633950			Secretory pathway			
+Cre14.g619850			Secretory pathway			
+Cre14.g616650			Secretory pathway			
+Cre14.g627100						
+Cre14.g629300	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease	Mitochondrion			
+Cre14.g608700			Mitochondrion	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	
+Cre14.g614450			Secretory pathway			
+Cre14.g612100	GMM:31.6.1.9;GMM:27.3.67	cell.motility.eukaryotes.flagellar adhesion and gamete fusion;RNA.regulation of transcription.putative transcription regulator				RWP3
+Cre14.g633789						
+Cre14.g609551						
+Cre14.g620750			Secretory pathway			
+Cre14.g631350						VSP7
+Cre14.g621850			Mitochondrion			
+Cre14.g610300						
+Cre14.g623000			Chloroplast			
+Cre14.g620233			Secretory pathway			
+Cre14.g628500			Chloroplast			CPLD66
+Cre14.g629000			Chloroplast			AXT1
+Cre14.g612500	GMM:29.4	protein.postranslational modification		GO:0042127;GO:0018343;GO:0005965;GO:0003824	regulation of cell proliferation;protein farnesylation;protein farnesyltransferase complex;catalytic activity	
+Cre14.g610850						
+Cre14.g621300	GMM:27.4	RNA.RNA binding		GO:0006376;GO:0005685;GO:0003729	mRNA splice site selection;U1 snRNP;mRNA binding	
+Cre14.g629400				GO:0005634	nucleus	
+Cre14.g610351			Mitochondrion			
+Cre14.g631800						
+Cre14.g626900	GMM:3.5;GMM:10.1.21	minor CHO metabolism.others;cell wall.precursor synthesis.phosphomannomutase		GO:0009298;GO:0005737;GO:0004615	GDP-mannose biosynthetic process;cytoplasm;phosphomannomutase activity	PMM
+Cre14.g628450	GMM:29.6.3.2	protein.folding.immunophilins (IMM).cyclophilins	Secretory pathway	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN48
+Cre14.g630250						CYCR1
+Cre14.g632791			Chloroplast			
+Cre14.g622150						
+Cre14.g611900						
+Cre14.g619050			Secretory pathway	GO:0016021;GO:0006950	integral component of membrane;response to stress	
+Cre14.g617850						
+Cre14.g615750			Chloroplast			CAM2
+Cre14.g609300			Chloroplast			
+Cre14.g621351	GMM:20.1.5	stress.biotic.regulation of transcription	Secretory pathway	GO:0015969	guanosine tetraphosphate metabolic process	
+Cre14.g621650	GMM:11.1.2	lipid metabolism.FA synthesis and FA elongation.acetyl CoA transacylase	Chloroplast			MCT1
+Cre14.g624900	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP171
+Cre14.g631300	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion			
+Cre14.g623900						
+Cre14.g618100						
+Cre14.g629429			Chloroplast			
+Cre14.g609100	GMM:30.11.1	signalling.light.COP9 signalosome				
+Cre14.g634365						
+Cre14.g627900	GMM:27.1.1	RNA.processing.splicing				
+Cre14.g617276			Mitochondrion			
+Cre14.g618860	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
+Cre14.g622410						
+Cre14.g628752						
+Cre14.g615600						
+Cre14.g615500	GMM:29.5.4;GMM:29.5	protein.degradation.aspartate protease;protein.degradation	Mitochondrion			
+Cre14.g631141			Chloroplast			
+Cre14.g618350			Secretory pathway			
+Cre14.g622075	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG28
+Cre14.g630895	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0071949	FAD binding	
+Cre14.g620400	GMM:29.5;GMM:29.3.4.99	protein.degradation;protein.targeting.secretory pathway.unspecified	Secretory pathway	GO:0016021;GO:0008233;GO:0006465;GO:0005787	integral component of membrane;peptidase activity;signal peptide processing;signal peptidase complex	SPC22
+Cre14.g626150			Mitochondrion			
+Cre14.g608850	GMM:33.99	development.unspecified	Mitochondrion			
+Cre14.g626466	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre14.g617400	GMM:29.6.2.1;GMM:20.2.1	protein.folding.chaperones and co-chaperones.small HSPs;stress.abiotic.heat	Chloroplast.Stroma			HSP22F
+Cre14.g627917				GO:0009058	biosynthetic process	
+Cre14.g616850				GO:0006950	response to stress	
+Cre14.g627251				GO:0016021	integral component of membrane	
+Cre14.g625400	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0016887;GO:0005524	ATPase activity;ATP binding	RPT1
+Cre14.g617150	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Secretory pathway			RLS4
+Cre14.g613652			Mitochondrion			
+Cre14.g615050	GMM:11.8.7	"lipid metabolism.exotics (steroids, squalene etc).trans-2-enoyl-CoA reductase (NADPH)"		GO:0016627;GO:0016021;GO:0006629;GO:0005737;GO:0005515	"oxidoreductase activity, acting on the CH-CH group of donors;integral component of membrane;lipid metabolic process;cytoplasm;protein binding"	
+Cre14.g616350			Secretory pathway			FAS4
+Cre14.g613200	GMM:31.1;GMM:27.2	cell.organisation;RNA.transcription	Chloroplast			
+Cre14.g612226						
+Cre14.g627726						
+Cre14.g633350			Secretory pathway			
+Cre14.g621450	GMM:29.2.1.2.2.5	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L5		GO:0008097;GO:0006412;GO:0005840;GO:0005622;GO:0003735	5S rRNA binding;translation;ribosome;intracellular;structural constituent of ribosome	RPL5
+Cre14.g619854	GMM:28.1;GMM:26.2	DNA.synthesis/chromatin structure;misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG35
+Cre14.g609926			Mitochondrion			
+Cre14.g629050			Secretory pathway	GO:0009055	electron carrier activity	
+Cre14.g630859	GMM:13.2.4.3	amino acid metabolism.degradation.branched chain group.valine	Chloroplast	GO:0055114;GO:0051287;GO:0004616	oxidation-reduction process;NAD binding;phosphogluconate dehydrogenase (decarboxylating) activity	HID1
+Cre14.g618631						
+Cre14.g616600	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion	GO:0009228;GO:0004789	thiamine biosynthetic process;thiamine-phosphate diphosphorylase activity	FZL
+Cre14.g615618						
+Cre14.g614667			Secretory pathway			
+Cre14.g613300			Secretory pathway			
+Cre14.g610400			Mitochondrion			
+Cre14.g632767	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006470;GO:0004725	protein dephosphorylation;protein tyrosine phosphatase activity	
+Cre14.g625802	GMM:29.5.11.4.99	protein.degradation.ubiquitin.E3.unspecified				
+Cre14.g624550			Chloroplast			
+Cre14.g609500			Mitochondrion			PWR5
+Cre14.g632626						
+Cre14.g622200						
+Cre14.g621400						
+Cre14.g616589	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion			CYG50
+Cre14.g632799			Secretory pathway			ZSP2A
+Cre14.g620900			Mitochondrion			
+Cre14.g610801						
+Cre14.g628400				GO:0043039;GO:0016876;GO:0005524	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;ATP binding"	TSA3
+Cre14.g619800						SPO11B
+Cre14.g622050			Secretory pathway			ELG28
+Cre14.g625050	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre14.g617826						
+Cre14.g621600			Mitochondrion	GO:0051225;GO:0031023	spindle assembly;microtubule organizing center organization	
+Cre14.g618250						
+Cre14.g615000	GMM:29.4;GMM:27.3.67	protein.postranslational modification;RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0055114;GO:0033743;GO:0030091;GO:0016671;GO:0006979	"oxidation-reduction process;peptide-methionine (R)-S-oxide reductase activity;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;response to oxidative stress"	
+Cre14.g619166	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CSK6
+Cre14.g617151	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase				
+Cre14.g625901			Mitochondrion	GO:0003723	RNA binding	
+Cre14.g622550			Mitochondrion	GO:0008641	small protein activating enzyme activity	
+Cre14.g629800			Mitochondrion			
+Cre14.g610615						
+Cre14.g623750			Secretory pathway			
+Cre14.g626800			Mitochondrion			OPR64
+Cre14.g631250			Mitochondrion			
+Cre14.g631200	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm	Mitochondrion			DII6
+Cre14.g634322						
+Cre14.g627650						FAP392
+Cre14.g628600			Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre14.g612200	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG16
+Cre14.g609250			Chloroplast			
+Cre14.g608200						
+Cre14.g611850	GMM:28.99	DNA.unspecified	Secretory pathway	GO:0016021	integral component of membrane	
+Cre14.g613050			Secretory pathway			
+Cre14.g626950				GO:0016779;GO:0009435;GO:0009058;GO:0003824	nucleotidyltransferase activity;NAD biosynthetic process;biosynthetic process;catalytic activity	NIC1
+Cre14.g610050				GO:0045892;GO:0005634	"negative regulation of transcription, DNA-templated;nucleus"	
+Cre14.g619650			Chloroplast			
+Cre14.g612426			Mitochondrion			
+Cre14.g618900				GO:0005515	protein binding	
+Cre14.g614076			Secretory pathway			
+Cre14.g611000	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
+Cre14.g619900	GMM:21.99	redox.misc		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PHX22
+Cre14.g623950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre14.g616250			Chloroplast			
+Cre14.g619133	GMM:8.1.7	TCA / organic transformation.TCA.succinate dehydrogenase	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	SDH1
+Cre14.g616301			Secretory pathway			
+Cre14.g609010			Secretory pathway			
+Cre14.g614550						MDB1
+Cre14.g633300			Secretory pathway			
+Cre14.g630350			Secretory pathway			
+Cre14.g625850	GMM:29.5.7	protein.degradation.metalloprotease				MMP32
+Cre14.g616826			Mitochondrion			
+Cre14.g621172			Chloroplast			
+Cre14.g617450	GMM:29.6.2.1;GMM:20.2.1	protein.folding.chaperones and co-chaperones.small HSPs;stress.abiotic.heat	Chloroplast.Stroma			HSP22E
+Cre14.g627950	GMM:17.3.1.1.1	hormone metabolism.brassinosteroid.synthesis-degradation.BRs.DET2		GO:0016627;GO:0016021;GO:0006629;GO:0005737	"oxidoreductase activity, acting on the CH-CH group of donors;integral component of membrane;lipid metabolic process;cytoplasm"	
+Cre14.g632300	GMM:27.3.55	RNA.regulation of transcription.HDA				HDA6
+Cre14.g620150	GMM:29.5	protein.degradation	Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	
+Cre14.g626634						
+Cre14.g609450						PWR4
+Cre14.g620450			Secretory pathway			
+Cre14.g630883	GMM:11.1.15	lipid metabolism.FA synthesis and FA elongation.ACP desaturase	Chloroplast	GO:0055114;GO:0045300;GO:0006631	oxidation-reduction process;acyl-[acyl-carrier-protein] desaturase activity;fatty acid metabolic process	
+Cre14.g626200	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH7
+Cre14.g610450	GMM:34.12	transport.metal	Chloroplast	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	
+Cre14.g611150	GMM:27.1	RNA.processing				
+Cre14.g629750	GMM:8.2.10	TCA / organic transformation.other organic acid transformations.malic		GO:0055114;GO:0051287;GO:0004471	oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity	MME2
+Cre14.g612567						
+Cre14.g619000			Mitochondrion			
+Cre14.g617027						
+Cre14.g608750			Mitochondrion			
+Cre14.g630125			Secretory pathway			
+Cre14.g624500	GMM:27.1.19	RNA.processing.ribonucleases	Chloroplast			RRP46
+Cre14.g625350	GMM:34.99;GMM:34.16	transport.misc;transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
+Cre14.g632650	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre14.g633500						
+Cre14.g622901			Chloroplast	GO:0005515	protein binding	
+Cre14.g620850	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)	Mitochondrion	GO:0046983	protein dimerization activity	NSG17
+Cre14.g618621			Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
+Cre14.g613501	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase				ZXE5
+Cre16.g684700						
+Cre16.g691500	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast			
+Cre16.g666302			Secretory pathway			
+Cre16.g655950	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	TRP2
+Cre16.g661850			Secretory pathway	GO:0006468;GO:0005516;GO:0004683	protein phosphorylation;calmodulin binding;calmodulin-dependent protein kinase activity	
+Cre16.g662450						
+Cre16.g659350	GMM:21.99;GMM:21.2;GMM:12.1.1	redox.misc;redox.ascorbate and glutathione;N-metabolism.nitrate metabolism.NR				CYB1
+Cre16.g655700			Mitochondrion			
+Cre16.g678885						
+Cre16.g683550	GMM:26.10;GMM:26.1;GMM:16.2	misc.cytochrome P450;misc.misc2;secondary metabolism.phenylpropanoids	Secretory pathway	GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	
+Cre16.g663050	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Secretory pathway	GO:0005525;GO:0003924	GTP binding;GTPase activity	
+Cre16.g665950	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005524;GO:0003677	DNA replication;ATP binding;DNA binding	MCM8
+Cre16.g661588			Chloroplast			OPR102
+Cre16.g651923	GMM:16.1.4.8	secondary metabolism.isoprenoids.carotenoids.carotenoid isomerase	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre16.g674178						
+Cre16.g656050			Secretory pathway			
+Cre16.g663776			Chloroplast			
+Cre16.g662800	GMM:33.99;GMM:27.1.1;GMM:27.1	development.unspecified;RNA.processing.splicing;RNA.processing		GO:0005515	protein binding	PRP4
+Cre16.g675400			Mitochondrion			
+Cre16.g676850	GMM:29.5	protein.degradation	Chloroplast	GO:0005524	ATP binding	
+Cre16.g684250			Chloroplast			
+Cre16.g686050			Secretory pathway			
+Cre16.g676050	GMM:31.1	cell.organisation		GO:0034314;GO:0007015;GO:0005885;GO:0005524	Arp2/3 complex-mediated actin nucleation;actin filament organization;Arp2/3 protein complex;ATP binding	ARP3
+Cre16.g693950	GMM:24	biodegradation of xenobiotics	Chloroplast			GOX20
+Cre16.g675851			Mitochondrion			
+Cre16.g652450						
+Cre16.g650250	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO25
+Cre16.g685501			Mitochondrion			
+Cre16.g669452			Chloroplast			
+Cre16.g674151						
+Cre16.g666400	GMM:31.2	cell.division				
+Cre16.g695700						
+Cre16.g681050						
+Cre16.g653450				GO:0005737;GO:0005515	cytoplasm;protein binding	
+Cre16.g651600						
+Cre16.g674964	GMM:30.5	signalling.G-proteins				
+Cre16.g673700	GMM:29.2.2	protein.synthesis.ribosome biogenesis	Chloroplast	GO:0042254;GO:0005634	ribosome biogenesis;nucleus	
+Cre16.g677920			Chloroplast			
+Cre16.g663350	GMM:29.6.2.5;GMM:29.5.5	protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease	Mitochondrion	GO:0051082;GO:0006457;GO:0005524	unfolded protein binding;protein folding;ATP binding	CLPX
+Cre16.g669127						
+Cre16.g649300			Secretory pathway			
+Cre16.g678700			Chloroplast			
+Cre16.g664950						
+Cre16.g684491			Secretory pathway			
+Cre16.g673169			Secretory pathway			
+Cre16.g692452						
+Cre16.g652100	GMM:34.12;GMM:29.5.7	transport.metal;protein.degradation.metalloprotease		GO:0008235;GO:0006508;GO:0004177	metalloexopeptidase activity;proteolysis;aminopeptidase activity	MAP2
+Cre16.g676533	GMM:27.3.66	RNA.regulation of transcription.pseudo ARR transcription factor family	Mitochondrion	GO:0004866	endopeptidase inhibitor activity	
+Cre16.g649050	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383	intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity	CYG38
+Cre16.g692340			Chloroplast			
+Cre16.g651400	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre16.g694250	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX	Secretory pathway	GO:0005515	protein binding	
+Cre16.g648300	GMM:34.7	transport.phosphate	Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	PHT6
+Cre16.g691150			Mitochondrion			
+Cre16.g670150						
+Cre16.g680100	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases		GO:0008168;GO:0006364;GO:0005737	methyltransferase activity;rRNA processing;cytoplasm	
+Cre16.g667750	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899;GO:0003676	"transcription, DNA-templated;DNA-directed RNA polymerase activity;nucleic acid binding"	RPB7
+Cre16.g668050			Mitochondrion			
+Cre16.g694203						PWR14
+Cre16.g684950			Chloroplast			
+Cre16.g679650	GMM:31.1	cell.organisation	Chloroplast			
+Cre16.g654550	GMM:35.1.17	not assigned.no ontology.transcription factor jumonji (jmjC) domain-containing protein				
+Cre16.g695100	GMM:13.2.4.4;GMM:11.9.4.2	amino acid metabolism.degradation.branched chain group.leucine;lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH	Mitochondrion	GO:0055114;GO:0050660;GO:0016627;GO:0008152;GO:0003995	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity, acting on the CH-CH group of donors;metabolic process;acyl-CoA dehydrogenase activity"	
+Cre16.g655000			Chloroplast			PWR11
+Cre16.g677738						
+Cre16.g670261				GO:0070772;GO:0043550;GO:0005515	PAS complex;regulation of lipid kinase activity;protein binding	
+Cre16.g690767			Chloroplast	GO:0055114;GO:0016491;GO:0006631;GO:0003857	oxidation-reduction process;oxidoreductase activity;fatty acid metabolic process;3-hydroxyacyl-CoA dehydrogenase activity	
+Cre16.g652800			Chloroplast			
+Cre16.g691900	GMM:29.1.30;GMM:29.1	protein.aa activation.pseudouridylate synthase;protein.aa activation		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS19
+Cre16.g679050	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor		GO:0005515	protein binding	
+Cre16.g654992	GMM:31.6.1.11	cell.motility.eukaryotes.other	Mitochondrion	GO:0008168;GO:0008033	methyltransferase activity;tRNA processing	SRR3
+Cre16.g653350			Mitochondrion	GO:0009245;GO:0008759	lipid A biosynthetic process;UDP-3-O-[3-hydroxymyristoyl] N-acetylglucosamine deacetylase activity	
+Cre16.g691450			Secretory pathway			
+Cre16.g671713			Chloroplast			
+Cre16.g686350			Chloroplast			
+Cre16.g686285	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
+Cre16.g660390			Secretory pathway	GO:0008146	sulfotransferase activity	CSR1
+Cre16.g672454						
+Cre16.g687400	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g667050						
+Cre16.g687750						
+Cre16.g647750						
+Cre16.g677250			Mitochondrion			TEH5
+Cre16.g691353			Mitochondrion			
+Cre16.g687350	GMM:11.9.4.2	lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH	Mitochondrion	GO:0055114;GO:0016627;GO:0006635;GO:0005777;GO:0003997;GO:0003995	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;fatty acid beta-oxidation;peroxisome;acyl-CoA oxidase activity;acyl-CoA dehydrogenase activity"	
+Cre16.g672397	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006470;GO:0004722	protein dephosphorylation;protein serine/threonine phosphatase activity	
+Cre16.g691755						
+Cre16.g655350						
+Cre16.g657900			Mitochondrion			
+Cre16.g655600						
+Cre16.g653300						
+Cre16.g683750			Chloroplast	GO:0016021	integral component of membrane	CGL67
+Cre16.g677500	GMM:14.15	S-assimilation.AKN		GO:0005524;GO:0004020;GO:0000103	ATP binding;adenylylsulfate kinase activity;sulfate assimilation	APK1
+Cre16.g680117	GMM:29.5.11.4.2;GMM:29.5	protein.degradation.ubiquitin.E3.RING;protein.degradation		GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre16.g668750			Mitochondrion			
+Cre16.g651250			Chloroplast			
+Cre16.g681500				GO:0016787	hydrolase activity	
+Cre16.g686650			Mitochondrion			
+Cre16.g689759			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre16.g648400			Chloroplast			
+Cre16.g682699						
+Cre16.g695150			Chloroplast			
+Cre16.g673393	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure	Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
+Cre16.g689550	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK8
+Cre16.g648000			Chloroplast			
+Cre16.g674739				GO:0016020	membrane	
+Cre16.g690100						FAP213
+Cre16.g658725						
+Cre16.g678549			Secretory pathway			
+Cre16.g647901			Mitochondrion			CSC8
+Cre16.g672753				GO:0007049;GO:0005634	cell cycle;nucleus	
+Cre16.g650000				GO:0050662;GO:0003824	coenzyme binding;catalytic activity	
+Cre16.g650650	GMM:13.2.4.1;GMM:13.1.1.3.11	amino acid metabolism.degradation.branched chain group.shared;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase		GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	AGT3
+Cre16.g653900			Secretory pathway			
+Cre16.g658750			Secretory pathway	GO:0016021	integral component of membrane	
+Cre16.g674851			Chloroplast			
+Cre16.g688100			Chloroplast			
+Cre16.g664550	GMM:25.1;GMM:25;GMM:1.2.5	C1-metabolism.glycine hydroxymethyltransferase;C1-metabolism;PS.photorespiration.serine hydroxymethyltransferase	Mitochondrion	GO:0016740	transferase activity	SHMT1
+Cre16.g680342	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP110
+Cre16.g656900			Mitochondrion			
+Cre16.g676650	GMM:31.4	cell.vesicle transport		GO:0030131;GO:0030117;GO:0016192;GO:0015031;GO:0008565;GO:0006886	clathrin adaptor complex;membrane coat;vesicle-mediated transport;protein transport;protein transporter activity;intracellular protein transport	AP1G1
+Cre16.g680450			Secretory pathway			
+Cre16.g685600						
+Cre16.g679350						
+Cre16.g681238	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast	GO:0005525	GTP binding	
+Cre16.g677317			Chloroplast			
+Cre16.g665900						
+Cre16.g683000			Secretory pathway			
+Cre16.g653800			Chloroplast			OPR101
+Cre16.g658526	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005525;GO:0005524	ATPase activity;GTP binding;ATP binding	
+Cre16.g682300	GMM:29.2.1.2.1.26	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S26	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS26
+Cre16.g671850						
+Cre16.g679500	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion			NUOB8
+Cre16.g676981						
+Cre16.g649400			Mitochondrion			CPLD16
+Cre16.g668450			Mitochondrion			
+Cre16.g656650			Chloroplast			
+Cre16.g682725	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0005515	protein binding	GST2
+Cre16.g664350	GMM:28.2	DNA.repair	Chloroplast			
+Cre16.g665400	GMM:27.1	RNA.processing		GO:0006396	RNA processing	SMP9
+Cre16.g653650						
+Cre16.g663000	GMM:21.3	redox.heme		GO:0019825	oxygen binding	prx
+Cre16.g683259	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP29
+Cre16.g685500	GMM:11.1.13	lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein	Secretory pathway	GO:0005515	protein binding	
+Cre16.g687100			Chloroplast			
+Cre16.g689311						
+Cre16.g688750	GMM:27.1	RNA.processing	Mitochondrion	GO:0005634	nucleus	
+Cre16.g692150			Secretory pathway			
+Cre16.g674550						
+Cre16.g686203			Secretory pathway			
+Cre16.g672400						
+Cre16.g676450						CPLD39
+Cre16.g678200	GMM:24.2;GMM:13.2.3.2	biodegradation of xenobiotics.lactoylglutathione lyase;amino acid metabolism.degradation.aspartate family.threonine				
+Cre16.g689766			Secretory pathway			
+Cre16.g693600	GMM:10.5.2	cell wall.cell wall proteins.proline rich proteins	Secretory pathway			FAP137
+Cre16.g653000						
+Cre16.g654750			Mitochondrion			
+Cre16.g683819				GO:0016491;GO:0008198;GO:0006725	oxidoreductase activity;ferrous iron binding;cellular aromatic compound metabolic process	
+Cre16.g668300						
+Cre16.g682001	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway			
+Cre16.g650950						
+Cre16.g687966	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			FAP5
+Cre16.g664650			Chloroplast			
+Cre16.g649600	GMM:35.1.12	not assigned.no ontology.pumilio/Puf RNA-binding domain-containing protein		GO:0003723	RNA binding	PUF4
+Cre16.g690300			Chloroplast			
+Cre16.g665650	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast	GO:0005525	GTP binding	
+Cre16.g691800			Chloroplast	GO:0010181	FMN binding	FLVB
+Cre16.g663280			Secretory pathway	GO:0051082;GO:0006457;GO:0005524	unfolded protein binding;protein folding;ATP binding	
+Cre16.g688950			Secretory pathway			
+Cre16.g680600			Chloroplast			
+Cre16.g677150			Mitochondrion			
+Cre16.g675188			Mitochondrion			
+Cre16.g690150	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway	GO:0016758;GO:0005789	"transferase activity, transferring hexosyl groups;endoplasmic reticulum membrane"	ALG6
+Cre16.g651801						
+Cre16.g653550						
+Cre16.g683900	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase	Secretory pathway	GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GDP2
+Cre16.g655850						
+Cre16.g674750			Mitochondrion	GO:0051726;GO:0005634	regulation of cell cycle;nucleus	
+Cre16.g675637	GMM:29.5.11.1;GMM:17.3.1.2.2	protein.degradation.ubiquitin.ubiquitin;hormone metabolism.brassinosteroid.synthesis-degradation.sterols.SMT2				SUM1
+Cre16.g658000						
+Cre16.g670550	GMM:28.2	DNA.repair		GO:0006281;GO:0004518	DNA repair;nuclease activity	
+Cre16.g660651						
+Cre16.g690902			Secretory pathway			
+Cre16.g671400	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS1
+Cre16.g661900	GMM:27.1.2	RNA.processing.RNA helicase	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL61
+Cre16.g695600	GMM:29.9;GMM:28.99	protein.co-chaperones;DNA.unspecified	Secretory pathway			DNJ10
+Cre16.g662000	GMM:27.1.2	RNA.processing.RNA helicase		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL62
+Cre16.g686700			Mitochondrion			
+Cre16.g691888	GMM:4.1.6	"glycolysis.cytosolic branch.fructose-2,6-bisphosphatase (Fru2,6BisPase)"	Mitochondrion	GO:0006003;GO:0005524;GO:0003824	"fructose 2,6-bisphosphate metabolic process;ATP binding;catalytic activity"	
+Cre16.g686002						
+Cre16.g680588	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family	Mitochondrion			
+Cre16.g660000			Chloroplast	GO:0016020	membrane	CPLD63
+Cre16.g649150			Mitochondrion			
+Cre16.g683400	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified	Mitochondrion			
+Cre16.g684350	GMM:7.1.3;GMM:13.1.1.1.4	OPP.oxidative PP.6-phosphogluconate dehydrogenase;amino acid metabolism.synthesis.central amino acid metabolism.GABA.gamma-hydroxybutyrate DH	Mitochondrion	GO:0055114;GO:0051287;GO:0004616	oxidation-reduction process;NAD binding;phosphogluconate dehydrogenase (decarboxylating) activity	
+Cre16.g669905	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre16.g663700			Chloroplast	GO:0004518	nuclease activity	
+Cre16.g690400	GMM:29.9	protein.co-chaperones	EndoplasmicReticulum			DNJ5
+Cre16.g665800	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase	Chloroplast			SSS4
+Cre16.g659050	GMM:18.5.2.8.1;GMM:18.5.2.1;GMM:18.5.2	"Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.2-phytyl-1,4-naphthoquinone methyltransferase.PHYLLO;Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.isochorismate synthase;Co-factor and vitamine metabolism.folate and vitamine K.vitamine K"	Chloroplast	GO:0030976	thiamine pyrophosphate binding	
+Cre16.g688638	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG33
+Cre16.g679550	GMM:29.5.5;GMM:20.1.7.6	protein.degradation.serine protease;stress.biotic.PR-proteins.PR6 (proteinase inhibitors)	Mitochondrion	GO:0005615	extracellular space	FAP277
+Cre16.g693202	GMM:29.5.11.3;GMM:14.3	protein.degradation.ubiquitin.E2;S-assimilation.sulfite redox	Chloroplast	GO:0055114;GO:0051536;GO:0020037;GO:0016491	oxidation-reduction process;iron-sulfur cluster binding;heme binding;oxidoreductase activity	SIR1
+Cre16.g674515	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm				DIC3
+Cre16.g654450			Mitochondrion			
+Cre16.g659000			Chloroplast			ATG13
+Cre16.g675602	GMM:34.3;GMM:34.2	transport.amino acids;transport.sugars	Secretory pathway			
+Cre16.g650625	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins	Chloroplast	GO:0070008;GO:0008236;GO:0006508;GO:0004252	serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity	MST1
+Cre16.g688975			Mitochondrion			
+Cre16.g664450	GMM:35.1.21	not assigned.no ontology.epsin N-terminal homology (ENTH) domain-containing protein				
+Cre16.g665100	GMM:34.21	transport.calcium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV3
+Cre16.g683450	GMM:2.1.2.1	major CHO metabolism.synthesis.starch.AGPase	Mitochondrion	GO:0016779;GO:0009058	nucleotidyltransferase activity;biosynthetic process	AGP2
+Cre16.g675973						
+Cre16.g670754	GMM:34.15	transport.potassium	Chloroplast			
+Cre16.g661650	GMM:27.3.3	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"	Mitochondrion			
+Cre16.g660900	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIL10
+Cre16.g694205			Chloroplast			
+Cre16.g680902	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			mmp16
+Cre16.g685250	GMM:29.5.1	protein.degradation.subtilases		GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB11
+Cre16.g669600			Mitochondrion			
+Cre16.g656200	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0005515	protein binding	
+Cre16.g647602	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0016787;GO:0008168;GO:0005524;GO:0003677	hydrolase activity;methyltransferase activity;ATP binding;DNA binding	
+Cre16.g649833				GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre16.g691756						
+Cre16.g663150	GMM:26.23	misc.rhodanese	Mitochondrion			
+Cre16.g662100			Chloroplast	GO:0003723	RNA binding	
+Cre16.g684850			Mitochondrion	GO:0008176;GO:0006400	tRNA (guanine-N7-)-methyltransferase activity;tRNA modification	
+Cre16.g668650						
+Cre16.g672273			Chloroplast			
+Cre16.g669125			Chloroplast	GO:0055114;GO:0046872;GO:0016491	oxidation-reduction process;metal ion binding;oxidoreductase activity	
+Cre16.g671900	GMM:31.3.1;GMM:27.3.48	cell.cycle.peptidylprolyl isomerase;RNA.regulation of transcription.FHA transcription factor		GO:0016853;GO:0005515	isomerase activity;protein binding	PIN4
+Cre16.g686500	GMM:26.13	misc.acid and other phosphatases		GO:0003993	acid phosphatase activity	
+Cre16.g671937						
+Cre16.g660331						
+Cre16.g669750						
+Cre16.g686200	GMM:3.2.1	minor CHO metabolism.trehalose.TPS		GO:0005992;GO:0003824	trehalose biosynthetic process;catalytic activity	TPS3
+Cre16.g684600	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Chloroplast	GO:0006893;GO:0000145	Golgi to plasma membrane transport;exocyst	SEC5
+Cre16.g663900	GMM:19.5	tetrapyrrole synthesis.porphobilinogen deaminase	Chloroplast	GO:0033014;GO:0004418	tetrapyrrole biosynthetic process;hydroxymethylbilane synthase activity	PBGD1
+Cre16.g655283						
+Cre16.g652400				GO:0005509	calcium ion binding	FAP183
+Cre16.g686750	GMM:34.7	transport.phosphate		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	PTA3
+Cre16.g688450						CFAP298
+Cre16.g680950						
+Cre16.g679893	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g678851	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP2
+Cre16.g691400			Mitochondrion			
+Cre16.g657600			Mitochondrion			
+Cre16.g659500			Secretory pathway			
+Cre16.g666200	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g668200	GMM:27.3.67;GMM:27.3.63	RNA.regulation of transcription.putative transcription regulator;RNA.regulation of transcription.PHD finger transcription factor		GO:0016568;GO:0005634;GO:0005515	chromatin modification;nucleus;protein binding	
+Cre16.g663600	GMM:34.7;GMM:34.2	transport.phosphate;transport.sugars		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	PHT7
+Cre16.g682350	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre16.g692000			Secretory pathway			
+Cre16.g690508			Mitochondrion			
+Cre16.g690800			Chloroplast			
+Cre16.g689300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g668850			Secretory pathway			MTA2
+Cre16.g687294			Chloroplast	GO:0051539;GO:0016992;GO:0015979;GO:0009107	"4 iron, 4 sulfur cluster binding;lipoate synthase activity;photosynthesis;lipoate biosynthetic process"	
+Cre16.g669500			Mitochondrion			
+Cre16.g690700			Chloroplast			
+Cre16.g654250						
+Cre16.g672250	GMM:26.13	misc.acid and other phosphatases	Secretory pathway	GO:0016787	hydrolase activity	MPA13
+Cre16.g680400			Chloroplast			
+Cre16.g673617	GMM:29.2.5	protein.synthesis.release		GO:0016149;GO:0006415;GO:0005737;GO:0003747	"translation release factor activity, codon specific;translational termination;cytoplasm;translation release factor activity"	PRF1
+Cre16.g655100	GMM:30.99	signalling.unspecified				
+Cre16.g674200			Chloroplast			
+Cre16.g695950	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Mitochondrion			MFL1
+Cre16.g677850			Chloroplast			
+Cre16.g686400			Chloroplast			
+Cre16.g649500						
+Cre16.g679051	GMM:26.1	misc.misc2				
+Cre16.g693500	GMM:10.5.2	cell wall.cell wall proteins.proline rich proteins	Chloroplast			FAP40
+Cre16.g684267						
+Cre16.g651850			Secretory pathway			
+Cre16.g680000	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion	GO:0046933;GO:0015986	"proton-transporting ATP synthase activity, rotational mechanism;ATP synthesis coupled proton transport"	ATP5
+Cre16.g674600			Chloroplast			
+Cre16.g692116				GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
+Cre16.g688900			Mitochondrion			CYG68
+Cre16.g658900	GMM:34.99	transport.misc				TRP10
+Cre16.g682150			Mitochondrion			
+Cre16.g682700						
+Cre16.g681600			Secretory pathway			CSV14
+Cre16.g673150	GMM:27.3.55	RNA.regulation of transcription.HDA				HDA14
+Cre16.g685400	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Mitochondrion			
+Cre16.g663551			Chloroplast			
+Cre16.g669525	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre16.g652000			Chloroplast			
+Cre16.g695851						
+Cre16.g649700	GMM:1.3.13	PS.calvin cycle.rubisco interacting	Chloroplast	GO:0005515	protein binding	
+Cre16.g662250			Secretory pathway			
+Cre16.g672350						
+Cre16.g661500			Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
+Cre16.g683437			Secretory pathway			
+Cre16.g673204			Mitochondrion	GO:0005509	calcium ion binding	
+Cre16.g667354						
+Cre16.g692250	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family		GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre16.g656466			Secretory pathway			
+Cre16.g667950			Secretory pathway			
+Cre16.g687301	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0005524;GO:0005515	ATP binding;protein binding	
+Cre16.g672833			Secretory pathway			
+Cre16.g689201			Chloroplast			
+Cre16.g673465						
+Cre16.g689983						
+Cre16.g678250			Chloroplast			
+Cre16.g670100	GMM:29.4	protein.postranslational modification	Chloroplast			
+Cre16.g685800						
+Cre16.g677050			Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre16.g655500			Secretory pathway			
+Cre16.g690500	GMM:29.2.2.3.1;GMM:29.2.1.2.2.1730;GMM:29.2.1.1.3.99	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7/L30/S12;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.unknown				NHP2
+Cre16.g672000			Mitochondrion			
+Cre16.g694850	GMM:13.1.2.3.2;GMM:13.1.2.3	amino acid metabolism.synthesis.glutamate family.arginine.acetylglutamate kinase;amino acid metabolism.synthesis.glutamate family.arginine	Chloroplast	GO:0006526;GO:0004358	arginine biosynthetic process;glutamate N-acetyltransferase activity	NGS1
+Cre16.g687742			Secretory pathway			
+Cre16.g680566	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre16.g681900	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0016020;GO:0015031	membrane;protein transport	SECY1
+Cre16.g673950			Secretory pathway			
+Cre16.g676757	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB8
+Cre16.g648100	GMM:31.1	cell.organisation		GO:0034314;GO:0030833;GO:0015629;GO:0005885;GO:0005515	Arp2/3 complex-mediated actin nucleation;regulation of actin filament polymerization;actin cytoskeleton;Arp2/3 protein complex;protein binding	
+Cre16.g667700						
+Cre16.g682475			Secretory pathway			
+Cre16.g680250			Secretory pathway			
+Cre16.g675600						
+Cre16.g679150						
+Cre16.g687650						ANK20
+Cre16.g692550	GMM:28.2	DNA.repair	Chloroplast	GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	MSH4
+Cre16.g695500			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre16.g676537			Chloroplast			
+Cre16.g662902	GMM:29.2.3	protein.synthesis.initiation		GO:0044237	cellular metabolic process	
+Cre16.g674900	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g653651			Secretory pathway			
+Cre16.g696000	GMM:3.5;GMM:26.2;GMM:10.1	minor CHO metabolism.others;misc.UDP glucosyl and glucoronyl transferases;cell wall.precursor synthesis	Secretory pathway	GO:0070569;GO:0008152	uridylyltransferase activity;metabolic process	
+Cre16.g690507			Mitochondrion			
+Cre16.g684500	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB62
+Cre16.g668250						
+Cre16.g691204						
+Cre16.g674291	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g648900			Mitochondrion			
+Cre16.g679333			Secretory pathway			
+Cre16.g648250						
+Cre16.g668502						
+Cre16.g684043			Mitochondrion	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	
+Cre16.g681690			Chloroplast			
+Cre16.g678101			Chloroplast			
+Cre16.g682800						
+Cre16.g680850			Chloroplast			MDA1
+Cre16.g690879			Secretory pathway	GO:0016020	membrane	FAP173
+Cre16.g692350	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g672700			Chloroplast			
+Cre16.g665550			Secretory pathway	GO:0051726	regulation of cell cycle	
+Cre16.g672750	GMM:27.4	RNA.RNA binding		GO:0003723	RNA binding	
+Cre16.g690900	GMM:29.5	protein.degradation	Mitochondrion	GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL8
+Cre16.g683793	GMM:33.99	development.unspecified		GO:0042254;GO:0005730	ribosome biogenesis;nucleolus	
+Cre16.g656500	GMM:34.99;GMM:34.1;GMM:27.3.35	transport.misc;transport.p- and v-ATPases;RNA.regulation of transcription.bZIP transcription factor family		GO:0046872;GO:0016021;GO:0015914;GO:0005524;GO:0004012;GO:0000287;GO:0000166	metal ion binding;integral component of membrane;phospholipid transport;ATP binding;phospholipid-translocating ATPase activity;magnesium ion binding;nucleotide binding	ALA3
+Cre16.g686850	GMM:34.7	transport.phosphate		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	PTA4
+Cre16.g693601	GMM:10.5.2	cell wall.cell wall proteins.proline rich proteins	Secretory pathway			ISG2
+Cre16.g669850	GMM:29.5	protein.degradation	Chloroplast			
+Cre16.g679221	GMM:31.1;GMM:27.3.39	cell.organisation;RNA.regulation of transcription.AtSR transcription factor family	Secretory pathway			ANK27
+Cre16.g653200						
+Cre16.g684603	GMM:27.1.20	RNA.processing.degradation dicer	Secretory pathway			
+Cre16.g684939	GMM:27.1.20	RNA.processing.degradation dicer	Secretory pathway			
+Cre16.g660550			Chloroplast			
+Cre16.g692004	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ21
+Cre16.g683953				GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre16.g662200			Mitochondrion			
+Cre16.g685150						
+Cre16.g693250			Mitochondrion			
+Cre16.g683035	GMM:29.5	protein.degradation	Mitochondrion			
+Cre16.g694204	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0016593;GO:0016570;GO:0006368	Cdc73/Paf1 complex;histone modification;transcription elongation from RNA polymerase II promoter	
+Cre16.g655900			Secretory pathway	GO:0032259;GO:0008168	methylation;methyltransferase activity	
+Cre16.g655150	GMM:1.1.99	PS.lightreaction.unspecified	Secretory pathway			
+Cre16.g693800				GO:0008270	zinc ion binding	
+Cre16.g683350						TEH6
+Cre16.g677650			Chloroplast			
+Cre16.g672200			Chloroplast	GO:0034453;GO:0008017;GO:0005813	microtubule anchoring;microtubule binding;centrosome	
+Cre16.g682251			Secretory pathway			
+Cre16.g658650	GMM:31.1.1.3.11;GMM:31.1	cell.organisation.cytoskeleton.Myosin.Class XI;cell.organisation		GO:0016459;GO:0005524;GO:0005515;GO:0003774	myosin complex;ATP binding;protein binding;motor activity	MYO1
+Cre16.g650050	GMM:26.23	misc.rhodanese	Chloroplast			
+Cre16.g689150	GMM:11.10.4	lipid metabolism.glycolipid synthesis.sulfolipid synthase	Chloroplast			SQD3
+Cre16.g677100			Secretory pathway			
+Cre16.g655200	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB6
+Cre16.g692650	GMM:3.5;GMM:10.5	minor CHO metabolism.others;cell wall.cell wall proteins				CGL4
+Cre16.g687854			Mitochondrion			
+Cre16.g685929						
+Cre16.g689650	GMM:31.1;GMM:29.5.2	cell.organisation;protein.degradation.autophagy		GO:0005737;GO:0000045	cytoplasm;autophagosome assembly	ATG8
+Cre16.g648500	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR23
+Cre16.g689199						
+Cre16.g651150						
+Cre16.g654100			Chloroplast			
+Cre16.g657200	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX17
+Cre16.g693850			Chloroplast			
+Cre16.g674650	GMM:18.13	Co-factor and vitamine metabolism.isochorismatase	Secretory pathway	GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre16.g669300			Mitochondrion			
+Cre16.g683950	GMM:29.3.4.99;GMM:29.3.4.1	protein.targeting.secretory pathway.unspecified;protein.targeting.secretory pathway.ER	Mitochondrion	GO:0006886;GO:0006614;GO:0005785;GO:0005525;GO:0005047;GO:0003924	intracellular protein transport;SRP-dependent cotranslational protein targeting to membrane;signal recognition particle receptor complex;GTP binding;signal recognition particle binding;GTPase activity	SRP1
+Cre16.g657350	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g674500	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
+Cre16.g678450			Mitochondrion			
+Cre16.g671000	GMM:9.2.3;GMM:9.2.1.3	mitochondrial electron transport / ATP synthesis.NADH-DH (type II).mitochondrial;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.mitochondrial	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NDA5
+Cre16.g653934						
+Cre16.g668837			Chloroplast			
+Cre16.g659600						
+Cre16.g695200						
+Cre16.g690250	GMM:29.1.30;GMM:23.5.2	protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase	Secretory pathway	GO:0009982;GO:0009451;GO:0006396;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA processing;RNA binding;pseudouridine synthesis	PUS18
+Cre16.g678400	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion			
+Cre16.g694403			Secretory pathway			
+Cre16.g682552	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG37
+Cre16.g679152						
+Cre16.g657050			Secretory pathway			
+Cre16.g649433						
+Cre16.g673553						
+Cre16.g673821	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g678100	GMM:29.3.4.99;GMM:29.3.4.3	protein.targeting.secretory pathway.unspecified;protein.targeting.secretory pathway.vacuole				VPS28
+Cre16.g691440				GO:0005515	protein binding	FAP43
+Cre16.g685389	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g667300						
+Cre16.g673550	GMM:29.2.3;GMM:13.99;GMM:13.1.3.4	protein.synthesis.initiation;amino acid metabolism.misc;amino acid metabolism.synthesis.aspartate family.methionine		GO:0044237	cellular metabolic process	CGLD36
+Cre16.g668600			Chloroplast			
+Cre16.g664050	GMM:20.1	stress.biotic				
+Cre16.g687070			Mitochondrion			
+Cre16.g661150			Chloroplast			CGL5
+Cre16.g664801	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Mitochondrion	GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL4
+Cre16.g682811			Mitochondrion			
+Cre16.g686173				GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	
+Cre16.g680678	GMM:27.1.19	RNA.processing.ribonucleases				TRZ2
+Cre16.g677429			Chloroplast			
+Cre16.g684100						
+Cre16.g676250			Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT28
+Cre16.g685901	GMM:29.3.1	protein.targeting.nucleus		GO:0008536;GO:0006886;GO:0005515	Ran GTPase binding;intracellular protein transport;protein binding	
+Cre16.g678094						
+Cre16.g692750						
+Cre16.g690000			Secretory pathway			HPAT2
+Cre16.g681200			Mitochondrion			
+Cre16.g688550	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0005515	protein binding	GSTS1
+Cre16.g658200			Mitochondrion			
+Cre16.g668950	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway	GO:0008270;GO:0006508;GO:0004181	zinc ion binding;proteolysis;metallocarboxypeptidase activity	
+Cre16.g676150	GMM:21.6	redox.dismutases and catalases	Secretory pathway	GO:0055114;GO:0046872;GO:0006801;GO:0004784	oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity	MSD3
+Cre16.g655430			Secretory pathway			
+Cre16.g689376	GMM:29.4	protein.postranslational modification				
+Cre16.g666250	GMM:34.99;GMM:34	transport.misc;transport	Secretory pathway			
+Cre16.g674050	GMM:26.1	misc.misc2		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH12
+Cre16.g679876	GMM:34.15	transport.potassium		GO:0051260	protein homooligomerization	
+Cre16.g650700	GMM:13.1.1.3.11	amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase	Mitochondrion			
+Cre16.g681351			Mitochondrion			
+Cre16.g661976						
+Cre16.g685700						
+Cre16.g674350			Secretory pathway	GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723	translation;ribosome;intracellular;structural constituent of ribosome;RNA binding	MRPS13
+Cre16.g671350	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS2
+Cre16.g669150	GMM:5.3	fermentation.ADH		GO:0055114;GO:0046872;GO:0016491	oxidation-reduction process;metal ion binding;oxidoreductase activity	ADH13
+Cre16.g652600			Mitochondrion			
+Cre16.g673057						
+Cre16.g657750			Mitochondrion			CCD2
+Cre16.g681251						
+Cre16.g675100			Mitochondrion	GO:0005515	protein binding	CPLD53
+Cre16.g690431				GO:0071949	FAD binding	
+Cre16.g661400						
+Cre16.g691552	GMM:9.2.2;GMM:9.2.1.4;GMM:9.2.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.internal matrix;mitochondrial electron transport / ATP synthesis.NADH-DH (type II).internal matrix	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NDA1
+Cre16.g680900	GMM:27.2	RNA.transcription	Chloroplast	GO:0006366;GO:0006351;GO:0005665;GO:0003899;GO:0003677	"transcription from RNA polymerase II promoter;transcription, DNA-templated;DNA-directed RNA polymerase II, core complex;DNA-directed RNA polymerase activity;DNA binding"	RPB1
+Cre16.g676600			Mitochondrion			
+Cre16.g681800			Secretory pathway	GO:0052726;GO:0052725;GO:0047325;GO:0032957;GO:0005622;GO:0005524;GO:0000287	"inositol-1,3,4-trisphosphate 5-kinase activity;inositol-1,3,4-trisphosphate 6-kinase activity;inositol tetrakisphosphate 1-kinase activity;inositol trisphosphate metabolic process;intracellular;ATP binding;magnesium ion binding"	
+Cre16.g688633	GMM:28.2	DNA.repair	Chloroplast			
+Cre16.g688414			Mitochondrion			
+Cre16.g694703				GO:0016020;GO:0008236;GO:0006508	membrane;serine-type peptidase activity;proteolysis	
+Cre16.g665250	GMM:1.1.99.1;GMM:1	PS.lightreaction.unspecified.TEF;PS	Chloroplast			TEF6
+Cre16.g650450						FAP219
+Cre16.g672609						
+Cre16.g686510			Mitochondrion;Chloroplast			
+Cre16.g654400			Mitochondrion			
+Cre16.g647500	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			NRX4
+Cre16.g686600						
+Cre16.g675749	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin				SUM2
+Cre16.g661050	GMM:29.2.1.2.2.34	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L34		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL34
+Cre16.g694207				GO:0055114	oxidation-reduction process	
+Cre16.g680150			Secretory pathway			
+Cre16.g670650			Secretory pathway			
+Cre16.g651450			Secretory pathway			
+Cre16.g671300				GO:0016021;GO:0015299;GO:0006812	integral component of membrane;solute:proton antiporter activity;cation transport	
+Cre16.g671600						
+Cre16.g688202			Chloroplast			
+Cre16.g683700				GO:0016021	integral component of membrane	
+Cre16.g675500	GMM:31.3.1;GMM:29.8;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.assembly and cofactor ligation;protein.folding.immunophilins (IMM).FKBPs	Chloroplast	GO:0006457	protein folding	FKB16-5
+Cre16.g675300	GMM:34.7;GMM:34.2	transport.phosphate;transport.sugars	Chloroplast	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	PHT8
+Cre16.g657450				GO:0016787	hydrolase activity	MPA12
+Cre16.g666050			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	CPLD49
+Cre16.g667769			Chloroplast			
+Cre16.g674890	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Secretory pathway	GO:0006355;GO:0003700	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	CGLD5B
+Cre16.g664700			Mitochondrion	GO:0016020	membrane	SHY1
+Cre16.g681100			Chloroplast			
+Cre16.g673050						
+Cre16.g666677			Mitochondrion			
+Cre16.g679557			Secretory pathway			FAS5
+Cre16.g673600	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g669350	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre16.g672600	GMM:29.6.1	protein.folding.prefoldin and trigger factor		GO:0005515	protein binding	Monad;WDR92
+Cre16.g694700						
+Cre16.g679400			Chloroplast			
+Cre16.g665050	GMM:34.21	transport.calcium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV2
+Cre16.g675200						
+Cre16.g648600			Secretory pathway			
+Cre16.g648800				GO:0005515	protein binding	
+Cre16.g692450			Chloroplast			
+Cre16.g684505			Secretory pathway			
+Cre16.g666602			Secretory pathway			
+Cre16.g681450			Mitochondrion			ANK6
+Cre16.g692100						
+Cre16.g659650	GMM:29.4	protein.postranslational modification				
+Cre16.g660750						CC2D2A
+Cre16.g661800						
+Cre16.g654900	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g667413						
+Cre16.g668400			Secretory pathway			
+Cre16.g668150			Secretory pathway			
+Cre16.g672850			Mitochondrion			
+Cre16.g662951	GMM:31.1;GMM:29.4	cell.organisation;protein.postranslational modification				
+Cre16.g692900						
+Cre16.g694942			Secretory pathway			
+Cre16.g694400	GMM:29.3.3	protein.targeting.chloroplast				TGD2
+Cre16.g686950	GMM:29.5.9	protein.degradation.AAA type		GO:0005524	ATP binding	CTF18
+Cre16.g678325			Mitochondrion			
+Cre16.g665850						FAP248
+Cre16.g682950	GMM:31.3	cell.cycle	Secretory pathway	GO:0030896;GO:0006281;GO:0000077;GO:0000075	checkpoint clamp complex;DNA repair;DNA damage checkpoint;cell cycle checkpoint	RAD9
+Cre16.g649950	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO24
+Cre16.g695300						
+Cre16.g671200						
+Cre16.g679750	GMM:26.1	misc.misc2		GO:0016787	hydrolase activity	
+Cre16.g676350	GMM:31.2	cell.division	Mitochondrion	GO:0005524	ATP binding	
+Cre16.g682026						
+Cre16.g672100						
+Cre16.g677989			Secretory pathway			
+Cre16.g680750			Chloroplast	GO:0005515	protein binding	
+Cre16.g662600	GMM:34.18	transport.unspecified anions	Chloroplast			LCI11C
+Cre16.g670950	GMM:1.1.5	PS.lightreaction.other electron carrier (ox/red)	Chloroplast	GO:0020037;GO:0009055	heme binding;electron carrier activity	CYC4
+Cre16.g685837			Secretory pathway			
+Cre16.g650350						
+Cre16.g680944	GMM:30.5;GMM:3.5;GMM:29.2.2.1	signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.export from nucleus	Chloroplast	GO:0005525	GTP binding	
+Cre16.g663876	GMM:31.2	cell.division	Mitochondrion			
+Cre16.g655800			Secretory pathway			
+Cre16.g661626						
+Cre16.g677750						
+Cre16.g680650			Mitochondrion			
+Cre16.g657100			Mitochondrion			
+Cre16.g670250						TOM6
+Cre16.g671329						DNJ4
+Cre16.g681354						
+Cre16.g672450						
+Cre16.g681350			Secretory pathway			
+Cre16.g685613			Mitochondrion	GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	
+Cre16.g653100			Mitochondrion			
+Cre16.g682050				GO:0098519	"nucleotide phosphatase activity, acting on free nucleotides"	
+Cre16.g676309	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g651100						
+Cre16.g685628						
+Cre16.g675650	GMM:13.2.4.3	amino acid metabolism.degradation.branched chain group.valine	Mitochondrion	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	ALD8
+Cre16.g673250	GMM:33.99;GMM:27.3.28	development.unspecified;RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	NRR1
+Cre16.g690350			Chloroplast			SNR6
+Cre16.g678550						
+Cre16.g658850	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				
+Cre16.g676197	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0042176;GO:0030234;GO:0000502	regulation of protein catabolic process;enzyme regulator activity;proteasome complex	RPN1
+Cre16.g691000	GMM:29.2.4	protein.synthesis.elongation	Chloroplast	GO:0043043;GO:0006414;GO:0005737;GO:0003746	peptide biosynthetic process;translational elongation;cytoplasm;translation elongation factor activity	EFP1
+Cre16.g671100	GMM:33.99;GMM:30.11.1	development.unspecified;signalling.light.COP9 signalosome		GO:0005515	protein binding	
+Cre16.g687850			Secretory pathway			
+Cre16.g678000			Chloroplast			CPL22
+Cre16.g647700			Chloroplast			
+Cre16.g660430						
+Cre16.g683250				GO:0016021	integral component of membrane	
+Cre16.g684750	GMM:3.5	minor CHO metabolism.others	Mitochondrion			
+Cre16.g687117			Secretory pathway	GO:0009976	tocopherol cyclase activity	
+Cre16.g677450	GMM:3.5	minor CHO metabolism.others	Chloroplast	GO:0016853;GO:0005975	isomerase activity;carbohydrate metabolic process	
+Cre16.g692902				GO:0005515	protein binding	
+Cre16.g683200						
+Cre16.g677950	GMM:26.7;GMM:20.2	"misc.oxidases - copper, flavone etc;stress.abiotic"		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	QOR1
+Cre16.g651650	GMM:29.1.5	protein.aa activation.isoleucine-tRNA ligase		GO:0006418;GO:0006355;GO:0005739;GO:0005524;GO:0004812;GO:0003690;GO:0000166	"tRNA aminoacylation for protein translation;regulation of transcription, DNA-templated;mitochondrion;ATP binding;aminoacyl-tRNA ligase activity;double-stranded DNA binding;nucleotide binding"	TSI2
+Cre16.g675525						
+Cre16.g661550			Chloroplast	GO:0009264;GO:0008253	deoxyribonucleotide catabolic process;5'-nucleotidase activity	
+Cre16.g685217			Mitochondrion	GO:0006913;GO:0005643	nucleocytoplasmic transport;nuclear pore	
+Cre16.g682600			Mitochondrion			
+Cre16.g668552			Secretory pathway			
+Cre16.g675000	GMM:19.6	tetrapyrrole synthesis.uroporphyrinogen III synthase		GO:0033014;GO:0004852	tetrapyrrole biosynthetic process;uroporphyrinogen-III synthase activity	HEMD1
+Cre16.g647800				GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre16.g686846			Chloroplast			
+Cre16.g658300			Chloroplast			
+Cre16.g658400	GMM:1.1.5.2	PS.lightreaction.other electron carrier (ox/red).ferredoxin	Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX2
+Cre16.g687630			Chloroplast			
+Cre16.g694200	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP15
+Cre16.g683483	GMM:28.2	DNA.repair	Mitochondrion			REX1
+Cre16.g693700	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC9
+Cre16.g677205	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway	GO:0004866	endopeptidase inhibitor activity	
+Cre16.g673852	GMM:4.1.15	glycolysis.cytosolic branch.phospho-enol-pyruvate carboxylase (PEPC)	Chloroplast	GO:0015977;GO:0008964;GO:0006099	carbon fixation;phosphoenolpyruvate carboxylase activity;tricarboxylic acid cycle	
+Cre16.g660225						
+Cre16.g652483			Mitochondrion			
+Cre16.g677000	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat				HSP70E
+Cre16.g694800			Chloroplast			
+Cre16.g687602			Mitochondrion			
+Cre16.g650800	GMM:29.3.2	protein.targeting.mitochondria				TIM13
+Cre16.g669050			Chloroplast			
+Cre16.g650900			Mitochondrion			
+Cre16.g684050			Mitochondrion			
+Cre16.g664150	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE18
+Cre16.g687950	GMM:9.3	mitochondrial electron transport / ATP synthesis.electron transfer flavoprotein	Mitochondrion			ETF1
+Cre16.g682850						
+Cre16.g676314	GMM:29.2.3	protein.synthesis.initiation		GO:0005852;GO:0005737;GO:0005515;GO:0003743	eukaryotic translation initiation factor 3 complex;cytoplasm;protein binding;translation initiation factor activity	EIF3H
+Cre16.g667850	GMM:23.5.5;GMM:23.5	nucleotide metabolism.deoxynucleotide metabolism.dUTP diphosphatase;nucleotide metabolism.deoxynucleotide metabolism		GO:0046080;GO:0016787	dUTP metabolic process;hydrolase activity	NSG10
+Cre16.g653750			Chloroplast			
+Cre16.g659150	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre16.g664250	GMM:13.1.5.3.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.OASTL	Secretory pathway			OASTL2
+Cre16.g662052	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
+Cre16.g667729						
+Cre16.g676700	GMM:3.5	minor CHO metabolism.others		GO:0007165	signal transduction	
+Cre16.g653400			Secretory pathway			
+Cre16.g667451			Chloroplast	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	TLP3
+Cre16.g669550	GMM:13.1.3.4.2;GMM:13.1.3.4	amino acid metabolism.synthesis.aspartate family.methionine.cystathionine beta-lyase;amino acid metabolism.synthesis.aspartate family.methionine		GO:0055114;GO:0030170;GO:0016491;GO:0008152	oxidation-reduction process;pyridoxal phosphate binding;oxidoreductase activity;metabolic process	METC
+Cre16.g696050						
+Cre16.g675900			Secretory pathway	GO:0003824	catalytic activity	OAD1
+Cre16.g656800			Secretory pathway			
+Cre16.g673450	GMM:30.2.17	signalling.receptor kinases.DUF 26		GO:0015074	DNA integration	
+Cre16.g691753			Chloroplast			
+Cre16.g670400			Chloroplast			
+Cre16.g670756						
+Cre16.g677800						
+Cre16.g679164						
+Cre16.g667150						
+Cre16.g684200			Secretory pathway;Chloroplast			
+Cre16.g656300	GMM:13.1.3.5.2	amino acid metabolism.synthesis.aspartate family.lysine.dihydrodipicolinate reductase		GO:0055114;GO:0009089;GO:0008839	oxidation-reduction process;lysine biosynthetic process via diaminopimelate;4-hydroxy-tetrahydrodipicolinate reductase	DPR1
+Cre16.g673953	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs		GO:0006457	protein folding	FKB16-7
+Cre16.g647550			Mitochondrion			HEL60
+Cre16.g693450			Secretory pathway			
+Cre16.g662550						SUM3
+Cre16.g685165						
+Cre16.g657800						CCD3
+Cre16.g694000	GMM:28.2	DNA.repair				
+Cre16.g661250				GO:0019825	oxygen binding	
+Cre16.g665328			Mitochondrion			
+Cre16.g691215						
+Cre16.g654500	GMM:29.5.11.20;GMM:29.2.3	protein.degradation.ubiquitin.proteasom;protein.synthesis.initiation	Chloroplast	GO:0005515	protein binding	EIF3F
+Cre16.g674450	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)		GO:0016021	integral component of membrane	
+Cre16.g652850	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				GTR4
+Cre16.g652300						CMA2
+Cre16.g676645						DRC8
+Cre16.g685100	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast			
+Cre16.g687050			Mitochondrion			
+Cre16.g688190	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion			
+Cre16.g695850						
+Cre16.g682200			Chloroplast			
+Cre16.g689050	GMM:11.9.4.2	lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH	Chloroplast	GO:0055114;GO:0006635;GO:0005777;GO:0003997;GO:0003995	oxidation-reduction process;fatty acid beta-oxidation;peroxisome;acyl-CoA oxidase activity;acyl-CoA dehydrogenase activity	
+Cre16.g671750	GMM:29.6.1	protein.folding.prefoldin and trigger factor		GO:0051082;GO:0016272;GO:0006457	unfolded protein binding;prefoldin complex;protein folding	PFD4
+Cre16.g659900			Chloroplast			
+Cre16.g683800						
+Cre16.g681550			Mitochondrion			CSV13
+Cre16.g689871	GMM:29.1.5	protein.aa activation.isoleucine-tRNA ligase	Mitochondrion	GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	
+Cre16.g647950			Mitochondrion			
+Cre16.g692200	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			MMP6
+Cre16.g671825			Chloroplast			
+Cre16.g689733			Secretory pathway			
+Cre16.g682587						
+Cre16.g678600			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre16.g666150	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0036158;GO:0036157	outer dynein arm assembly;outer dynein arm	DCC2
+Cre16.g688250			Chloroplast			
+Cre16.g688302			Chloroplast	GO:0004518	nuclease activity	
+Cre16.g660150	GMM:29.2.1.2.1.20	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S20		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	
+Cre16.g688200			Chloroplast			
+Cre16.g648050						
+Cre16.g655400	GMM:33.99	development.unspecified	Mitochondrion			
+Cre16.g661300				GO:0019825	oxygen binding	
+Cre16.g663500	GMM:29.5.11	protein.degradation.ubiquitin		GO:0008540;GO:0006511	"proteasome regulatory particle, base subcomplex;ubiquitin-dependent protein catabolic process"	RPN10
+Cre16.g682650			Mitochondrion			
+Cre16.g666576			Mitochondrion			
+Cre16.g648350	GMM:13.2.2.2	amino acid metabolism.degradation.glutamate family.proline	Mitochondrion	GO:0006562;GO:0004657	proline catabolic process;proline dehydrogenase activity	PDY2
+Cre16.g680300			Secretory pathway			
+Cre16.g657550	GMM:33.99	development.unspecified				
+Cre16.g657650						FAP35
+Cre16.g680230	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0016020;GO:0006886;GO:0006605	membrane;intracellular protein transport;protein targeting	SEC61G
+Cre16.g691754			Chloroplast			
+Cre16.g660024			Secretory pathway			
+Cre16.g671050						
+Cre16.g668700			Secretory pathway			
+Cre16.g685573	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0005515	protein binding	FAP214
+Cre16.g690050	GMM:9.6	mitochondrial electron transport / ATP synthesis.cytochrome c	Mitochondrion	GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	HCS2
+Cre16.g683050	GMM:33.99	development.unspecified	Chloroplast	GO:0046872;GO:0003723	metal ion binding;RNA binding	RNJ1
+Cre16.g685450	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC8
+Cre16.g685052						
+Cre16.g658775			Secretory pathway			
+Cre16.g691600			Mitochondrion			
+Cre16.g651300			Mitochondrion			
+Cre16.g676900	GMM:34.11;GMM:29.4	transport.NDP-sugars at the ER;protein.postranslational modification	Chloroplast	GO:0055085	transmembrane transport	
+Cre16.g679950	GMM:28.1	DNA.synthesis/chromatin structure				RFC3
+Cre16.g659700			Chloroplast			
+Cre16.g658450	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	
+Cre16.g685550	GMM:13.1.5.3.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.OASTL	Chloroplast			OASTL4
+Cre16.g681126			Secretory pathway			
+Cre16.g692300	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
+Cre16.g692500	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Secretory pathway	GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre16.g674950	GMM:16.1.4	secondary metabolism.isoprenoids.carotenoids	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre16.g679300			Chloroplast			CGL139
+Cre16.g695400						
+Cre16.g681657				GO:0005515	protein binding	
+Cre16.g667450	GMM:31.1;GMM:29.5.11.4.3.2;GMM:27.3.31	cell.organisation;protein.degradation.ubiquitin.E3.SCF.FBOX;RNA.regulation of transcription.TUB transcription factor family				TLP2
+Cre16.g681850	GMM:23.3.1.3	nucleotide metabolism.salvage.phosphoribosyltransferases.uracil phosphoribosyltransferase (UPP)				
+Cre16.g694208	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor	Mitochondrion			
+Cre16.g664251						
+Cre16.g656851						
+Cre16.g693750	GMM:27.3.65	RNA.regulation of transcription.polycomb group (PcG)	Mitochondrion	GO:0005515	protein binding	
+Cre16.g651900			Chloroplast			CRI1
+Cre16.g682000			Chloroplast			
+Cre16.g686622						
+Cre16.g665500			Mitochondrion			
+Cre16.g684861						
+Cre16.g688700	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	
+Cre16.g648288						
+Cre16.g686100	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre16.g691103						
+Cre16.g689647	GMM:33.99;GMM:32;GMM:29.2.3;GMM:27.3.36	"development.unspecified;micro RNA, natural antisense etc;protein.synthesis.initiation;RNA.regulation of transcription.argonaute transcription factor family"		GO:0005515;GO:0003676	protein binding;nucleic acid binding	AGO3
+Cre16.g683371	GMM:13.1.3.5.5	amino acid metabolism.synthesis.aspartate family.lysine.diaminopimelate decarboxylase		GO:0003824	catalytic activity	ODC2
+Cre16.g654800			Secretory pathway			
+Cre16.g671950	GMM:28	DNA	Chloroplast.Stroma			
+Cre16.g657964				GO:0016787	hydrolase activity	
+Cre16.g664301	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005524;GO:0003887;GO:0003677;GO:0003676	DNA replication;ATP binding;DNA-directed DNA polymerase activity;DNA binding;nucleic acid binding	POLQ1
+Cre16.g653850	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre16.g670000						
+Cre16.g651000	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0006260;GO:0005634;GO:0003677	DNA replication;nucleus;DNA binding	RFA3
+Cre16.g673505						
+Cre16.g664600	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOB16
+Cre16.g675750	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g653700	GMM:31.4	cell.vesicle transport	Mitochondrion			
+Cre16.g687406			Secretory pathway			
+Cre16.g662350	GMM:3.2.1	minor CHO metabolism.trehalose.TPS		GO:0005992;GO:0003824	trehalose biosynthetic process;catalytic activity	
+Cre16.g659300	GMM:21.2	redox.ascorbate and glutathione				CYB2
+Cre16.g666334	GMM:3.1.2.2	minor CHO metabolism.raffinose family.raffinose synthases.putative	Mitochondrion			
+Cre16.g666451			Mitochondrion			
+Cre16.g660350			Chloroplast	GO:0016788	"hydrolase activity, acting on ester bonds"	
+Cre16.g684400	GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g687652			Secretory pathway			
+Cre16.g674400			Secretory pathway			
+Cre16.g681051						
+Cre16.g673001			Chloroplast			LCI2
+Cre16.g691950	GMM:28.2	DNA.repair				
+Cre16.g675350	GMM:29.5.5;GMM:29.5.1	protein.degradation.serine protease;protein.degradation.subtilases	Mitochondrion	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
+Cre16.g683600						
+Cre16.g686000	GMM:27.1.1;GMM:27.1	RNA.processing.splicing;RNA.processing		GO:0006396;GO:0003723;GO:0003676	RNA processing;RNA binding;nucleic acid binding	
+Cre16.g663250						
+Cre16.g673100			Mitochondrion			
+Cre16.g674150			Chloroplast			
+Cre16.g656350						
+Cre16.g651550	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	MTT1
+Cre16.g656600	GMM:21.1	redox.thioredoxin		GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRX19
+Cre16.g678750						
+Cre16.g693900			Mitochondrion			PWR13
+Cre16.g649250			Secretory pathway			
+Cre16.g684650	GMM:31.1;GMM:27.2;GMM:15.2	"cell.organisation;RNA.transcription;metal handling.binding, chelation and storage"		GO:0005515	protein binding	
+Cre16.g669900						FAP399
+Cre16.g677900			Secretory pathway			
+Cre16.g694900						
+Cre16.g672721						
+Cre16.g649350			Mitochondrion			
+Cre16.g662750				GO:0019825	oxygen binding	
+Cre16.g650300	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR25
+Cre16.g670200	GMM:29.4	protein.postranslational modification				
+Cre16.g690130			Chloroplast			
+Cre16.g682100	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"				TDR1
+Cre16.g660850						
+Cre16.g652226						
+Cre16.g670750			Mitochondrion			
+Cre16.g694300						
+Cre16.g687450	GMM:34.15	transport.potassium	Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006813;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;potassium ion transport;cation transport	CPLD54
+Cre16.g680050	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				DRT2
+Cre16.g686789						
+Cre16.g648700	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre16.g651350			Secretory pathway	GO:0006914	autophagy	ATG17
+Cre16.g679700						
+Cre16.g667057						
+Cre16.g673650	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCB5
+Cre16.g681014			Mitochondrion			
+Cre16.g649800	GMM:35.1.5;GMM:33.99	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;development.unspecified	Mitochondrion	GO:0005634	nucleus	PPR3
+Cre16.g694500	GMM:29.9	protein.co-chaperones				DNJ37
+Cre16.g676000						
+Cre16.g653500			Mitochondrion			
+Cre16.g653338			Mitochondrion			
+Cre16.g655316						
+Cre16.g693203	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre16.g691200						
+Cre16.g686501			Secretory pathway			
+Cre16.g665750	GMM:27.1	RNA.processing	Mitochondrion	GO:0006396	RNA processing	RAA2
+Cre16.g695650						
+Cre16.g669126	GMM:5.3	fermentation.ADH	Chloroplast			ADH2
+Cre16.g695050	GMM:11.9.4.9	lipid metabolism.lipid degradation.beta-oxidation.multifunctional	Secretory pathway	GO:0055114;GO:0016491;GO:0006631;GO:0003857	oxidation-reduction process;oxidoreductase activity;fatty acid metabolic process;3-hydroxyacyl-CoA dehydrogenase activity	HCD1
+Cre16.g660700			Mitochondrion			
+Cre16.g680232	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family				
+Cre16.g654600			Secretory pathway			PHC56
+Cre16.g676670						
+Cre16.g680350						
+Cre16.g672500						
+Cre16.g659850			Chloroplast			CGL37
+Cre16.g676085						
+Cre16.g686641			Secretory pathway			
+Cre16.g679850	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG35
+Cre16.g649000	GMM:29.4.1.59;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g687182			Mitochondrion			
+Cre16.g652750	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO10
+Cre16.g649750			Mitochondrion			
+Cre16.g681700	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0022900;GO:0016651	"electron transport chain;oxidoreductase activity, acting on NAD(P)H"	NUOS4B
+Cre16.g667100	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX		GO:0005515	protein binding	LMR3
+Cre16.g695202						
+Cre16.g677382	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family	Chloroplast			
+Cre16.g682363			Mitochondrion			
+Cre16.g681353	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB61
+Cre16.g666627			Chloroplast			
+Cre16.g648451			Chloroplast			
+Cre16.g652350			Secretory pathway			
+Cre16.g654350	GMM:27.3.99	RNA.regulation of transcription.unclassified				SPL4
+Cre16.g688350			Chloroplast			
+Cre16.g690750	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0005515	protein binding	
+Cre16.g673729	GMM:29.9;GMM:29.6.2.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones	Chloroplast	GO:0006457;GO:0005737	protein folding;cytoplasm	CPN11
+Cre16.g689800						
+Cre16.g695800			Chloroplast	GO:2001070	starch binding	
+Cre16.g654050	GMM:1.5.3	PS.carbon concentrating mechanism.algal				
+Cre16.g669250			Chloroplast			
+Cre16.g655050						
+Cre16.g664850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g658926			Mitochondrion			
+Cre16.g663400			Chloroplast			LCI11A
+Cre16.g677550	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity	cya15
+Cre16.g669650	GMM:27.1.19	RNA.processing.ribonucleases	Chloroplast			
+Cre16.g689450						
+Cre16.g676100	GMM:28.2	DNA.repair				
+Cre16.g694202						
+Cre16.g662300	GMM:27.1	RNA.processing				SMP8
+Cre16.g689087						
+Cre16.g689851	GMM:30.2.12	signalling.receptor kinases.leucine rich repeat XII				
+Cre16.g689423				GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre16.g692228	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g668800			Secretory pathway			MTA4
+Cre16.g690702			Secretory pathway			
+Cre16.g677600				GO:0032259;GO:0008168	methylation;methyltransferase activity	SOM5
+Cre16.g689700	GMM:25;GMM:1.2.6	C1-metabolism;PS.photorespiration.hydroxypyruvate reductase	Chloroplast	GO:0055114;GO:0004616	oxidation-reduction process;phosphogluconate dehydrogenase (decarboxylating) activity	
+Cre16.g674852	GMM:31.6.1.9	cell.motility.eukaryotes.flagellar adhesion and gamete fusion	Secretory pathway			HAP2
+Cre16.g652150	GMM:4.1.6	"glycolysis.cytosolic branch.fructose-2,6-bisphosphatase (Fru2,6BisPase)"	Mitochondrion	GO:0006003;GO:0006000;GO:0005524;GO:0003873;GO:0003824	"fructose 2,6-bisphosphate metabolic process;fructose metabolic process;ATP binding;6-phosphofructo-2-kinase activity;catalytic activity"	
+Cre16.g688078						
+Cre16.g666500						BBS8
+Cre16.g672300	GMM:27.3.53	RNA.regulation of transcription.high mobility group family (HMG)	Chloroplast			
+Cre16.g668481			Mitochondrion			
+Cre16.g677093			Secretory pathway			
+Cre16.g650151	GMM:29.5.9	protein.degradation.AAA type	Mitochondrion	GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	
+Cre16.g673900	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPC3
+Cre16.g682369	GMM:34.12	transport.metal		GO:0046872;GO:0030001;GO:0000166	metal ion binding;metal ion transport;nucleotide binding	CTP1
+Cre16.g671650			Chloroplast			
+Cre16.g668350			Mitochondrion			
+Cre16.g649650				GO:0006950	response to stress	
+Cre16.g668125	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre16.g670151			Chloroplast			
+Cre16.g680500						EFH10
+Cre16.g656433	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB59
+Cre16.g674800			Chloroplast			
+Cre16.g684155	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
+Cre16.g680200			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre16.g661450	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTV3
+Cre16.g652050	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast	GO:0071949	FAD binding	ZXE3
+Cre16.g690506			Secretory pathway			
+Cre16.g666700						
+Cre16.g678300			Secretory pathway			
+Cre16.g667701			Secretory pathway			
+Cre16.g676400	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL63
+Cre16.g683081	GMM:21.2.2	redox.ascorbate and glutathione.glutathione				
+Cre16.g681352			Chloroplast			
+Cre16.g679200	GMM:29.5.11.20;GMM:29.3.5	protein.degradation.ubiquitin.proteasom;protein.targeting.peroxisomes	Chloroplast	GO:0042623;GO:0007031;GO:0006625;GO:0005778;GO:0005777;GO:0005524	"ATPase activity, coupled;peroxisome organization;protein targeting to peroxisome;peroxisomal membrane;peroxisome;ATP binding"	PEX1
+Cre16.g674152						
+Cre16.g692585	GMM:28.2	DNA.repair	Chloroplast			MSH4
+Cre16.g674602						
+Cre16.g663100	GMM:29.7	protein.glycosylation	Secretory pathway	GO:0016021;GO:0008963	integral component of membrane;phospho-N-acetylmuramoyl-pentapeptide-transferase activity	ALG7
+Cre16.g681750	GMM:34.21;GMM:30.3;GMM:3.3	transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	FAP381
+Cre16.g678997			Chloroplast	GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre16.g655550			Mitochondrion			
+Cre16.g652950				GO:0005515	protein binding	
+Cre16.g693650						
+Cre16.g655515						
+Cre16.g686202			Chloroplast			
+Cre16.g667353			Mitochondrion			
+Cre16.g648150	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
+Cre16.g683147			Mitochondrion			
+Cre16.g662852						
+Cre16.g666301				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS30
+Cre16.g661950						
+Cre16.g672453						
+Cre16.g660100			Chloroplast			
+Cre16.g691850	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase				COX90
+Cre16.g669123			Mitochondrion			
+Cre16.g665700						
+Cre16.g670850				GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
+Cre16.g681000						
+Cre16.g683707						
+Cre16.g675076			Chloroplast			
+Cre16.g694704			Chloroplast	GO:0005515	protein binding	
+Cre16.g678773	GMM:11.8.4	"lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	BSD2
+Cre16.g671450	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre16.g672041						
+Cre16.g679520			Mitochondrion			CSB60
+Cre16.g679600	GMM:27.1	RNA.processing				
+Cre16.g660601			Secretory pathway			
+Cre16.g678808	GMM:33.99;GMM:3.5;GMM:27.1	development.unspecified;minor CHO metabolism.others;RNA.processing		GO:0005515	protein binding	
+Cre16.g666000	GMM:29.3.1	protein.targeting.nucleus	Chloroplast			
+Cre16.g665450	GMM:34.21	transport.calcium		GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity	RYR1
+Cre16.g651750	GMM:29.1.5	protein.aa activation.isoleucine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	TSI
+Cre16.g687300			Chloroplast			CPLD61
+Cre16.g686061						
+Cre16.g690450	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase				FAP266
+Cre16.g656700	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN14A-2
+Cre16.g683850	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase	Mitochondrion	GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GDP1
+Cre16.g690095						
+Cre16.g677200						
+Cre16.g669549						
+Cre16.g656000			Secretory pathway			
+Cre16.g659400	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g651950			Secretory pathway			
+Cre16.g679450				GO:0032040	small-subunit processome	
+Cre16.g680550			Chloroplast			
+Cre16.g676800	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity	
+Cre16.g656100			Chloroplast			
+Cre16.g675630			Chloroplast			
+Cre16.g649100	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK13
+Cre16.g685950			Mitochondrion			
+Cre16.g683931			Mitochondrion			
+Cre16.g679781	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
+Cre16.g680131			Mitochondrion			
+Cre16.g682400						
+Cre16.g663200	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	FAP295
+Cre16.g673350			Chloroplast			
+Cre16.g690207	GMM:29.4	protein.postranslational modification				
+Cre16.g691352			Chloroplast			
+Cre16.g691776				GO:0006351	"transcription, DNA-templated"	
+Cre16.g688850	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	HPT2
+Cre16.g680790	GMM:29.4	protein.postranslational modification	Chloroplast			
+Cre16.g693200						
+Cre16.g678850	GMM:16.1.2.2	secondary metabolism.isoprenoids.mevalonate pathway.HMG-CoA synthase		GO:0008299;GO:0004421	isoprenoid biosynthetic process;hydroxymethylglutaryl-CoA synthase activity	
+Cre16.g684379			Chloroplast			
+Cre16.g658075				GO:0016787	hydrolase activity	
+Cre16.g658950			Chloroplast			
+Cre16.g665200			Chloroplast			
+Cre16.g691100						
+Cre16.g695550						
+Cre16.g650550	GMM:23.4.10	nucleotide metabolism.phosphotransfer and pyrophosphatases.nucleoside diphosphate kinase		GO:0006241;GO:0006228;GO:0006183;GO:0006165;GO:0004550	CTP biosynthetic process;UTP biosynthetic process;GTP biosynthetic process;nucleoside diphosphate phosphorylation;nucleoside diphosphate kinase activity	FAP103
+Cre16.g674250	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	SRS10
+Cre16.g667900	GMM:33.99;GMM:27.3.3	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"	Chloroplast	GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre16.g663800	GMM:34.8	transport.metabolite transporters at the envelope membrane	Chloroplast			CGL51
+Cre16.g657250	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX19
+Cre16.g659450			Secretory pathway			
+Cre16.g670500	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0006508;GO:0004176	proteolysis;ATP-dependent peptidase activity	
+Cre16.g654150						FAP63
+Cre16.g686552						
+Cre16.g686300			Chloroplast			
+Cre16.g664500	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified				BBS3
+Cre16.g658700						FAP376
+Cre16.g680005						
+Cre16.g675861	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin				
+Cre16.g683500	GMM:29.2.3;GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL64
+Cre16.g660300				GO:0055114	oxidation-reduction process	
+Cre16.g682138						
+Cre16.g684900			Chloroplast			
+Cre16.g688863				GO:0005515	protein binding	
+Cre16.g651200			Mitochondrion			
+Cre16.g649900	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR24
+Cre16.g663950	GMM:17.3.1.2.6	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.DWF7	Secretory pathway	GO:0055114;GO:0016491;GO:0006633;GO:0005506	oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding	ERG3
+Cre16.g653258	GMM:31.1	cell.organisation	Secretory pathway	GO:0005515	protein binding	
+Cre16.g688500			Mitochondrion			
+Cre16.g656950						
+Cre16.g657300	GMM:31.4;GMM:17.3.1.2.99	cell.vesicle transport;hormone metabolism.brassinosteroid.synthesis-degradation.sterols.other	Secretory pathway			CPI1
+Cre16.g650600			Secretory pathway			MST1
+Cre16.g684550	GMM:7.1.3	OPP.oxidative PP.6-phosphogluconate dehydrogenase		GO:0051287	NAD binding	
+Cre16.g678150			Secretory pathway			
+Cre16.g674627						
+Cre16.g660951			Chloroplast			
+Cre16.g685300			Secretory pathway			
+Cre16.g691439						CSB63
+Cre16.g694402			Mitochondrion			
+Cre16.g654700			Secretory pathway			PHC61
+Cre16.g676750			Chloroplast	GO:0005515	protein binding	
+Cre16.g650200	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP17
+Cre16.g670800				GO:0051082;GO:0015631;GO:0007021	unfolded protein binding;tubulin binding;tubulin complex assembly	TFC1
+Cre16.g668550	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0046872	metal ion binding	
+Cre16.g681250			Secretory pathway			
+Cre16.g686958						
+Cre16.g676200	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525;GO:0003924	GTP binding;GTPase activity	
+Cre16.g692751	GMM:21.1.1;GMM:21.1	redox.thioredoxin.PDIL;redox.thioredoxin	Secretory pathway	GO:0045454	cell redox homeostasis	PDI3
+Cre16.g647534	GMM:35.1.26;GMM:29.5.7	not assigned.no ontology.DC1 domain containing protein;protein.degradation.metalloprotease				NRX4
+Cre16.g676421	GMM:27.3.66	RNA.regulation of transcription.pseudo ARR transcription factor family		GO:0005515;GO:0000160	protein binding;phosphorelay signal transduction system	
+Cre16.g688050						
+Cre16.g671685			Secretory pathway	GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	
+Cre16.g685949						
+Cre16.g675150	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g687800	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK22
+Cre16.g684065			Mitochondrion			
+Cre16.g657000	GMM:27.2	RNA.transcription		GO:0006352;GO:0005634	"DNA-templated transcription, initiation;nucleus"	
+Cre16.g679669	GMM:16.1.1.3	secondary metabolism.isoprenoids.non-mevalonate pathway.CMS	Chloroplast			CMS1
+Cre16.g663650	GMM:33.99;GMM:31.4	development.unspecified;cell.vesicle transport	Chloroplast			TRS33
+Cre16.g668100			Chloroplast			
+Cre16.g676300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g655750						TEK1
+Cre16.g660050				GO:0016020	membrane	
+Cre16.g651700						
+Cre16.g686550			Mitochondrion			
+Cre16.g684800	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	protein binding	
+Cre16.g687200			Chloroplast			
+Cre16.g658150	GMM:29.4	protein.postranslational modification				
+Cre16.g692003						
+Cre16.g694750			Secretory pathway			
+Cre16.g694450	GMM:29.9	protein.co-chaperones	Chloroplast			DNJ36
+Cre16.g656150			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre16.g679151				GO:0005515	protein binding	
+Cre16.g650850						
+Cre16.g672800	GMM:3.5;GMM:10.1.1.1	minor CHO metabolism.others;cell wall.precursor synthesis.NDP sugar pyrophosphorylase.GDP mannose				GMP1
+Cre16.g689950				GO:0005515	protein binding	
+Cre16.g650750			Chloroplast			FAP268
+Cre16.g652650						
+Cre16.g650500			Chloroplast			
+Cre16.g674300	GMM:31.1;GMM:27.3.39	cell.organisation;RNA.regulation of transcription.AtSR transcription factor family	Chloroplast			FAP269
+Cre16.g664750				GO:0005515	protein binding	
+Cre16.g660800	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion			TIM44
+Cre16.g670050	GMM:31.4	cell.vesicle transport				
+Cre16.g673300			Chloroplast			
+Cre16.g653250						
+Cre16.g657850	GMM:29.9;GMM:29.3.4.1;GMM:20.2.1	protein.co-chaperones;protein.targeting.secretory pathway.ER;stress.abiotic.heat	EndoplasmicReticulum	GO:0031204;GO:0008565	"posttranslational protein targeting to membrane, translocation;protein transporter activity"	SEC63
+Cre16.g652700	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114	oxidation-reduction process	
+Cre16.g670652						
+Cre16.g676869	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g667550						
+Cre16.g685900	GMM:26.6	misc.O-methyl transferases		GO:0008168;GO:0008152;GO:0006479	methyltransferase activity;metabolic process;protein methylation	PRMT3
+Cre16.g652250			Secretory pathway			CMA3
+Cre16.g672497	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	
+Cre16.g665000						UMP1
+Cre16.g648950						
+Cre16.g688600			Secretory pathway	GO:0006281;GO:0004518	DNA repair;nuclease activity	
+Cre16.g661000	GMM:21.3	redox.heme				
+Cre16.g664000	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	HLM25
+Cre16.g654526						
+Cre16.g686398			Mitochondrion			
+Cre16.g684715	GMM:32;GMM:27.1.20;GMM:27.1.19	"micro RNA, natural antisense etc;RNA.processing.degradation dicer;RNA.processing.ribonucleases"	Mitochondrion	GO:0016891;GO:0006396;GO:0005524;GO:0004525;GO:0003723;GO:0003676	"endoribonuclease activity, producing 5'-phosphomonoesters;RNA processing;ATP binding;ribonuclease III activity;RNA binding;nucleic acid binding"	DCL2
+Cre16.g691750	GMM:26.1	misc.misc2		GO:0016811	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides"	AMI1
+Cre16.g675301	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005515	protein binding	
+Cre16.g690319				GO:0016021;GO:0006810;GO:0005337	integral component of membrane;transport;nucleoside transmembrane transporter activity	
+Cre16.g685053			Chloroplast			
+Cre16.g688901	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383	intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity	cyg68
+Cre16.g665300						
+Cre16.g673841			Secretory pathway			
+Cre16.g661350	GMM:1.3.13	PS.calvin cycle.rubisco interacting	Chloroplast			RMT1
+Cre16.g655450	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre16.g675413						
+Cre16.g691664			Mitochondrion			
+Cre16.g674000	GMM:33.99;GMM:29.5	development.unspecified;protein.degradation				wdr2
+Cre16.g666300	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g657700			Mitochondrion			
+Cre16.g656750			Mitochondrion			
+Cre16.g682450						
+Cre16.g685050	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast	GO:0005515	protein binding	LCI15
+Cre16.g675850	GMM:11.9.4.2	lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH		GO:0055114;GO:0050660;GO:0016627;GO:0008152;GO:0003995	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity, acting on the CH-CH group of donors;metabolic process;acyl-CoA dehydrogenase activity"	
+Cre16.g659550			Secretory pathway			
+Cre16.g679900	GMM:28.99;GMM:27.1.19	DNA.unspecified;RNA.processing.ribonucleases		GO:0004527;GO:0003676	exonuclease activity;nucleic acid binding	XRN3
+Cre16.g676500			Chloroplast			
+Cre16.g684450	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g651500	GMM:33.99;GMM:30.11.1	development.unspecified;signalling.light.COP9 signalosome				
+Cre16.g680800				GO:0005515	protein binding	CGL155
+Cre16.g671250	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	
+Cre16.g648200	GMM:26.10;GMM:26.1;GMM:17.2.2	misc.cytochrome P450;misc.misc2;hormone metabolism.auxin.signal transduction	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP744C1
+Cre16.g682750						
+Cre16.g688800						
+Cre16.g654850	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g675550	GMM:29.8;GMM:29.6.3.1;GMM:29.6	protein.assembly and cofactor ligation;protein.folding.immunophilins (IMM).FKBPs;protein.folding	Chloroplast	GO:0006457	protein folding	FKB16-2
+Cre16.g668900			Chloroplast	GO:0016021	integral component of membrane	MTA3
+Cre16.g681802	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005515;GO:0004672	protein phosphorylation;protein binding;protein kinase activity	
+Cre16.g693300			Secretory pathway			
+Cre16.g681301				GO:0005515	protein binding	MOT12
+Cre16.g649200			Chloroplast			
+Cre16.g669400						
+Cre16.g690991	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion;Chloroplast	GO:0006414;GO:0003746	translational elongation;translation elongation factor activity	
+Cre16.g685350			Chloroplast			
+Cre16.g679109			Chloroplast			YEE3
+Cre16.g685200	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre16.g653601				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL33
+Cre16.g666550	GMM:21.3	redox.heme	Chloroplast			SOUL3
+Cre16.g680454				GO:0005515	protein binding	
+Cre16.g692400	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases		GO:0016568;GO:0006355;GO:0005634	"chromatin modification;regulation of transcription, DNA-templated;nucleus"	
+Cre16.g669200						
+Cre16.g695900						
+Cre16.g648550	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO23
+Cre16.g659667			Mitochondrion			
+Cre16.g685750			Secretory pathway			
+Cre16.g674850						
+Cre16.g691350			Secretory pathway			
+Cre16.g673109	GMM:11.1.12	lipid metabolism.FA synthesis and FA elongation.ACP protein	Mitochondrion			ACP1
+Cre16.g691202						
+Cre16.g672150	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre16.g659100			Secretory pathway			
+Cre16.g691351						
+Cre16.g677702						
+Cre16.g688751			Mitochondrion			
+Cre16.g682250			Secretory pathway			
+Cre16.g662150	GMM:29.8;GMM:1.1.3.5	protein.assembly and cofactor ligation;PS.lightreaction.cytochrome b6/f.biogenesis	Chloroplast			CCB1
+Cre16.g686800	GMM:34.7	transport.phosphate		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	PTA2
+Cre16.g683954						
+Cre16.g668451			Secretory pathway			
+Cre16.g689100	GMM:29.1.30	protein.aa activation.pseudouridylate synthase		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS6
+Cre16.g678350			Mitochondrion			CAM19
+Cre16.g690950			Secretory pathway			
+Cre16.g667800						
+Cre16.g677700			Mitochondrion	GO:0017056;GO:0005643	structural constituent of nuclear pore;nuclear pore	
+Cre16.g661700			Secretory pathway			
+Cre16.g649550			Secretory pathway			
+Cre16.g695250			Secretory pathway			
+Cre16.g657979						
+Cre16.g677765	GMM:27.3.66	RNA.regulation of transcription.pseudo ARR transcription factor family	Secretory pathway	GO:0004866	endopeptidase inhibitor activity	
+Cre16.g664400						
+Cre16.g693819						PWR12
+Cre16.g675700						
+Cre16.g684000	GMM:29.5.7	protein.degradation.metalloprotease				
+Cre16.g655250			Secretory pathway			
+Cre16.g685725			Mitochondrion			
+Cre16.g658600						
+Cre16.g663450			Chloroplast			LCI11B
+Cre16.g672385	GMM:13.1.7.7;GMM:13.1.7	amino acid metabolism.synthesis.histidine.imidazoleglycerol-phosphate synthase (cyclase);amino acid metabolism.synthesis.histidine		GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	HIS5
+Cre16.g672650	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP14
+Cre16.g677001			Mitochondrion			
+Cre16.g669700						
+Cre16.g678213	GMM:29.4;GMM:11.9.1	protein.postranslational modification;lipid metabolism.lipid degradation.palmitoyl-protein hydrolase	Secretory pathway	GO:0098599;GO:0008474;GO:0002084	palmitoyl hydrolase activity;palmitoyl-(protein) hydrolase activity;protein depalmitoylation	
+Cre16.g673554						
+Cre16.g695218	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g678900	GMM:3.8	minor CHO metabolism.galactose	Chloroplast	GO:0000160	phosphorelay signal transduction system	HKR6
+Cre16.g681914						
+Cre16.g689600						FAP73
+Cre16.g674700			Mitochondrion			
+Cre16.g657400						
+Cre16.g692600	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	ULP2
+Cre16.g671700			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre16.g663750			Secretory pathway			
+Cre16.g677653						
+Cre16.g657150			Chloroplast	GO:0008080	N-acetyltransferase activity	
+Cre16.g675246	GMM:27.3.99;GMM:27.3.63;GMM:27.3.44	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.PHD finger transcription factor;RNA.regulation of transcription.chromatin remodeling factors		GO:0005515;GO:0003682	protein binding;chromatin binding	
+Cre16.g674403	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g692901	GMM:31.1;GMM:27.2	cell.organisation;RNA.transcription	Chloroplast			
+Cre16.g687600			Secretory pathway			
+Cre16.g675958	GMM:28.99	DNA.unspecified		GO:0016021	integral component of membrane	
+Cre16.g678050	GMM:27.1.1	RNA.processing.splicing		GO:0006397	mRNA processing	SRE3
+Cre16.g691327			Secretory pathway			
+Cre16.g675050						
+Cre16.g694809			Secretory pathway			
+Cre16.g647850			Secretory pathway			
+Cre16.g688526	GMM:29.4;GMM:1.1.30	protein.postranslational modification;PS.lightreaction.state transition	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g684150			Chloroplast			
+Cre16.g677350			Mitochondrion			
+Cre16.g659250	GMM:21.2	redox.ascorbate and glutathione				CYB5
+Cre16.g687700						
+Cre16.g685277	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified				AP2M2
+Cre16.g672049			Secretory pathway			
+Cre16.g688000	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP2
+Cre16.g650425	GMM:28.99	DNA.unspecified				
+Cre16.g687550	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	CGL99
+Cre16.g678551	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG34
+Cre16.g683150			Mitochondrion			
+Cre16.g692800	GMM:3.5;GMM:16.8.2	minor CHO metabolism.others;secondary metabolism.flavonoids.chalcones				
+Cre16.g661200	GMM:21.3	redox.heme		GO:0019825	oxygen binding	
+Cre16.g682923			Mitochondrion			
+Cre16.g686250						
+Cre16.g656400	GMM:11.10.3	lipid metabolism.glycolipid synthesis.UDP-sulfoquinovose synthase	Chloroplast	GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SQD1
+Cre16.g690655			Mitochondrion			
+Cre16.g659950	GMM:29.2.1.1.1.1.5	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S5	Chloroplast	GO:0006412;GO:0005840;GO:0003735;GO:0003723	translation;ribosome;structural constituent of ribosome;RNA binding	PRPS5
+Cre16.g688650	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase				MOT43
+Cre16.g660470			Mitochondrion			
+Cre16.g687150						
+Cre16.g668500						
+Cre16.g677300	GMM:24	biodegradation of xenobiotics	Chloroplast			GOX16
+Cre16.g672050						
+Cre16.g664100			Chloroplast			
+Cre16.g658350			Secretory pathway			
+Cre16.g674179	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g667200						
+Cre16.g658250			Chloroplast			
+Cre16.g650400	GMM:27.3.99	RNA.regulation of transcription.unclassified				CPL20
+Cre16.g663315			Chloroplast			
+Cre16.g694201						
+Cre16.g667250			Chloroplast			
+Cre16.g690543			Mitochondrion			
+Cre16.g691550						
+Cre16.g669000						
+Cre16.g686734	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g659200	GMM:26.1	misc.misc2	Mitochondrion	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP742A1
+Cre16.g679250	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELIP1
+Cre16.g655650						
+Cre16.g684149			Secretory pathway			
+Cre16.g671500						
+Cre16.g678452						
+Cre16.g682305						
+Cre16.g673850			Mitochondrion			
+Cre16.g652900	GMM:28.99;GMM:27.3.99;GMM:27.1	DNA.unspecified;RNA.regulation of transcription.unclassified;RNA.processing		GO:0003676	nucleic acid binding	
+Cre16.g694550	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g682550	GMM:30.2.12;GMM:30.2.11;GMM:30.2.10;GMM:17.3.2.1	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;signalling.receptor kinases.leucine rich repeat X;hormone metabolism.brassinosteroid.signal transduction.BRI	Mitochondrion;Chloroplast	GO:0005515	protein binding	
+Cre16.g677026	GMM:8.1.1.1	TCA / organic transformation.TCA.pyruvate DH.E1		GO:0008152;GO:0003824	metabolic process;catalytic activity	PDH1
+Cre16.g673281	GMM:26.14	misc.oxygenases				
+Cre16.g674065	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g682900	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Chloroplast			CLPR2
+Cre16.g662702	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre16.g674100			Mitochondrion;Chloroplast			
+Cre16.g670755						
+Cre16.g675950	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
+Cre16.g648850			Mitochondrion	GO:0003877	ATP adenylyltransferase activity	ADS1
+Cre16.g678661	GMM:26.1	misc.misc2	Chloroplast			
+Cre16.g674938			Chloroplast			
+Cre16.g687500	GMM:31.1	cell.organisation		GO:0034314;GO:0007015;GO:0005885;GO:0005856;GO:0005524	Arp2/3 complex-mediated actin nucleation;actin filament organization;Arp2/3 protein complex;cytoskeleton;ATP binding	ARP2
+Cre16.g672945						
+Cre16.g670501			Chloroplast			
+Cre16.g671800			Chloroplast			PGA8
+Cre16.g665600	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CSK7
+Cre16.g676550						
+Cre16.g686286			Secretory pathway			
+Cre16.g673400				GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	
+Cre16.g685451			Mitochondrion			
+Cre16.g690509						
+Cre16.g652200	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP9
+Cre16.g662500			Mitochondrion	GO:0005515	protein binding	
+Cre16.g684300			Chloroplast	GO:0016020	membrane	YGG3
+Cre16.g687060			Chloroplast			
+Cre16.g693400			Secretory pathway			
+Cre16.g657950				GO:0016020;GO:0007155	membrane;cell adhesion	SSA5
+Cre16.g653050	GMM:27.1	RNA.processing		GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
+Cre16.g687000	GMM:34.12	transport.metal	Secretory pathway	GO:0034755;GO:0016021;GO:0005381	iron ion transmembrane transport;integral component of membrane;iron ion transmembrane transporter activity	
+Cre16.g656250	GMM:33.99;GMM:27.4;GMM:27.1.1	development.unspecified;RNA.RNA binding;RNA.processing.splicing		GO:0003676	nucleic acid binding	SMP12
+Cre16.g664200	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE33
+Cre16.g689001			Secretory pathway			
+Cre16.g689250	GMM:11.10.4	lipid metabolism.glycolipid synthesis.sulfolipid synthase	Mitochondrion	GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	GTR23
+Cre16.g675250	GMM:18.11;GMM:18	Co-factor and vitamine metabolism.lipoic acid;Co-factor and vitamine metabolism	Mitochondrion	GO:0006464	cellular protein modification process	LPL2
+Cre16.g661100	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPK7
+Cre16.g652550	GMM:29.2.1.1.1.2.24	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L24	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL24
+Cre16.g665364	GMM:4.1.16;GMM:30.3;GMM:29.4	glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g678650						
+Cre16.g648650	GMM:28.2	DNA.repair				
+Cre16.g672602	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g651050	GMM:1.1.5	PS.lightreaction.other electron carrier (ox/red)	Chloroplast	GO:0020037;GO:0009055	heme binding;electron carrier activity	CYC6
+Cre16.g691050	GMM:31.2;GMM:27.3.99	cell.division;RNA.regulation of transcription.unclassified				
+Cre16.g693204			Chloroplast			FAP348
+Cre16.g682052			Chloroplast			
+Cre16.g688201			Chloroplast			
+Cre16.g669800	GMM:33.99;GMM:29.4;GMM:29.2.2	development.unspecified;protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g683650	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g667350			Chloroplast	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV6
+Cre16.g674534			Chloroplast			
+Cre16.g659750	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP15
+Cre16.g670350			Secretory pathway			
+Cre16.g678437	GMM:16.1.4.7	secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Chloroplast	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
+Cre16.g659800			Chloroplast			
+Cre16.g679445			Secretory pathway			FAS6
+Cre16.g687901			Secretory pathway			
+Cre16.g694206			Mitochondrion			
+Cre16.g684827	GMM:27.1.20	RNA.processing.degradation dicer	Secretory pathway			
+Cre16.g683100			Mitochondrion			
+Cre16.g650100			Chloroplast	GO:0045158;GO:0017004;GO:0009512	"electron transporter, transferring electrons within cytochrome b6/f complex of photosystem II activity;cytochrome complex assembly;cytochrome b6f complex"	PETN
+Cre16.g654300	GMM:23.4.10	nucleotide metabolism.phosphotransfer and pyrophosphatases.nucleoside diphosphate kinase		GO:0006241;GO:0006228;GO:0006183;GO:0006165;GO:0005515;GO:0004550	CTP biosynthetic process;UTP biosynthetic process;GTP biosynthetic process;nucleoside diphosphate phosphorylation;protein binding;nucleoside diphosphate kinase activity	RSP23
+Cre16.g654950			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR3
+Cre16.g681400						
+Cre16.g672161			Chloroplast			
+Cre16.g695450				GO:0003676	nucleic acid binding	UAF4
+Cre16.g661876			Chloroplast			
+Cre16.g669950			Chloroplast			ALG14
+Cre16.g679800	GMM:26.1	misc.misc2		GO:0016787	hydrolase activity	
+Cre16.g673000	GMM:34.12;GMM:33.99;GMM:15.3	transport.metal;development.unspecified;metal handling.regulation	Secretory pathway			
+Cre16.g685650			Secretory pathway	GO:0016020;GO:0004970	membrane;ionotropic glutamate receptor activity	GLR1
+Cre16.g662950			Mitochondrion			ANK3
+Cre16.g692050	GMM:31.4	cell.vesicle transport	Mitochondrion	GO:0005515	protein binding	SYP3
+Cre16.g669450						
+Cre16.g682013			Chloroplast			
+Cre16.g675450	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre16.g686900						
+Cre16.g687900	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA7
+Cre16.g677877			Secretory pathway			
+Cre16.g685000	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast			
+Cre16.g653150						CPR3
+Cre16.g680700						
+Cre16.g673203						
+Cre16.g681466			Mitochondrion			
+Cre16.g689535				GO:0046872	metal ion binding	
+Cre16.g654000				GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre16.g676402						
+Cre16.g658800			Secretory pathway			
+Cre16.g648750			Mitochondrion			
+Cre16.g661638						
+Cre16.g689500	GMM:29.4	protein.postranslational modification	Mitochondrion			
+Cre16.g677541			Chloroplast			
+Cre16.g656551	GMM:21.1	redox.thioredoxin	Secretory pathway	GO:0045454	cell redox homeostasis	PDI
+Cre16.g666653			Mitochondrion			
+Cre16.g670300	GMM:35.1.41;GMM:27.1.1	not assigned.no ontology.hydroxyproline rich proteins;RNA.processing.splicing				PRP39
+Cre16.g687518	GMM:29.2.3	protein.synthesis.initiation		GO:0044237	cellular metabolic process	
+Cre16.g694950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre16.g669193	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
+Cre16.g670900						
+Cre16.g683300						
+Cre16.g661750			Secretory pathway	GO:0006468;GO:0005516;GO:0004683	protein phosphorylation;calmodulin binding;calmodulin-dependent protein kinase activity	
+Cre16.g662650			Chloroplast	GO:0008080	N-acetyltransferase activity	
+Cre16.g690200	GMM:9.7;GMM:34.13;GMM:29.3.2	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase;transport.peptides and oligopeptides;protein.targeting.mitochondria	Mitochondrion	GO:0051205;GO:0016021	protein insertion into membrane;integral component of membrane	OXA1
+Cre16.g663850	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase				SSS5
+Cre16.g668000						
+Cre16.g673200						
+Cre16.g671150			Mitochondrion			
+Cre16.g670973	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0005515	protein binding	GST3
+Cre16.g683595	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	CAX4
+Cre16.g670617						
+Cre16.g684022			Mitochondrion			
+Cre16.g681578	GMM:31.2	cell.division	Secretory pathway	GO:0030071;GO:0005680	regulation of mitotic metaphase/anaphase transition;anaphase-promoting complex	APC8
+Cre16.g666100						
+Cre16.g695350						
+Cre16.g649466	GMM:34.21	transport.calcium	Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	CAX5
+Cre16.g657500			Chloroplast			
+Cre22.g754197			Chloroplast			
+Cre22.g753597						
+Cre22.g753497			Chloroplast			
+Cre22.g754047			Secretory pathway			
+Cre22.g753997						
+Cre22.g753447						
+Cre22.g753547						
+Cre22.g753947			Mitochondrion			
+Cre22.g753647						
+Cre22.g754097			Chloroplast			
+Cre22.g753747			Chloroplast			
+Cre22.g754247						
+Cre22.g753847	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre22.g753347						
+Cre22.g754147						
+Cre22.g753897			Secretory pathway			
+Cre22.g753697						
+Cre22.g753797						
+Cre22.g753397						
+Cre42.g760347			Mitochondrion			
+Cre42.g760397						
+Cre42.g760447	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre36.g759747			Secretory pathway			
+Cre36.g759597	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0008270	zinc ion binding	
+Cre36.g759647	GMM:2.1.1.2	major CHO metabolism.synthesis.sucrose.SPP	Chloroplast			sph1
+Cre36.g759547						
+Cre36.g759697			Secretory pathway			
+Cre50.g761397	GMM:29.1	protein.aa activation		GO:0003723	RNA binding	
+Cre50.g761497	GMM:34.14	transport.unspecified cations	Mitochondrion	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	
+Cre50.g761447	GMM:27.4	RNA.RNA binding		GO:0008168;GO:0006355;GO:0003723	"methyltransferase activity;regulation of transcription, DNA-templated;RNA binding"	
+Cre26.g756797	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	
+Cre26.g757097						
+Cre26.g756747						
+Cre26.g756997						
+Cre26.g756697			Chloroplast			
+Cre26.g756847			Mitochondrion			
+Cre26.g757047						FAP368
+Cre26.g756547						
+Cre26.g756647			Mitochondrion			
+Cre26.g756897						
+Cre26.g756597						
+Cre26.g756947						
+Cre19.g751197			Secretory pathway			
+Cre19.g750847			Mitochondrion	GO:0016020	membrane	
+Cre19.g751247						
+Cre19.g750897	GMM:23.2	nucleotide metabolism.degradation	Secretory pathway	GO:0008270	zinc ion binding	
+Cre19.g750397						
+Cre19.g750997	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre19.g750547	GMM:9.2.2;GMM:9.2.1.2	mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.external	Chloroplast	GO:0055114;GO:0016491;GO:0005509	oxidation-reduction process;oxidoreductase activity;calcium ion binding	NDA2
+Cre19.g750197	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	
+Cre19.g750297						
+Cre19.g751297			Mitochondrion			
+Cre19.g751147	GMM:30.6;GMM:30.2.22;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;signalling.receptor kinases.proline extensin like;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion;Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre19.g750747			Chloroplast			NCL38
+Cre19.g750497			Mitochondrion			NCL36
+Cre19.g750147			Chloroplast			
+Cre19.g750447	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
+Cre19.g751047						
+Cre19.g750097						
+Cre19.g751347	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion	GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	
+Cre19.g750697			Chloroplast			NCL37
+Cre19.g750947	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre19.g750647	GMM:30.2.8.1;GMM:30.2.13;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 1;signalling.receptor kinases.leucine rich repeat XIII;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre19.g751097	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre19.g750797			Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre19.g750347			Secretory pathway			
+Cre19.g750597	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre19.g750247	GMM:34.14	transport.unspecified cations	Chloroplast			
+Cre46.g760947						
+Cre46.g760997						FAP389
+Cre46.g761047						
+Cre34.g759147	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
+Cre34.g759197			Secretory pathway			
+Cre34.g759097						
+Cre41.g760297						
+Cre48.g761247						
+Cre48.g761147			Mitochondrion			
+Cre48.g761197	GMM:29.2.1.1.1.2.3	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L3	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	
+Cre44.g760697						
+Cre44.g760747						
+Cre32.g758547						
+Cre32.g758697						
+Cre32.g758597						
+Cre32.g758747			Mitochondrion			
+Cre32.g758647						
+Cre32.g758797			Mitochondrion	GO:0006281;GO:0005524;GO:0005515;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;protein binding;helicase activity;DNA helicase activity;telomere maintenance	
+Cre06.g263176			Secretory pathway			
+Cre06.g259401			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre06.g306800				GO:0004674	protein serine/threonine kinase activity	CGL126
+Cre06.g300050			Chloroplast			OPR27
+Cre06.g271800	GMM:33.99	development.unspecified				LCI36
+Cre06.g303450			Mitochondrion			
+Cre06.g278220	GMM:28.99;GMM:26.2;GMM:10.3.2	DNA.unspecified;misc.UDP glucosyl and glucoronyl transferases;cell wall.hemicellulose synthesis.glucuronoxylan	Secretory pathway			ELG38
+Cre06.g282900						
+Cre06.g305350						
+Cre06.g289300						
+Cre06.g294000	GMM:26.1	misc.misc2				CGL113
+Cre06.g273700	GMM:29.8;GMM:1.1.1.3	protein.assembly and cofactor ligation;PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			HCF136
+Cre06.g299900						
+Cre06.g309800			Chloroplast			MOT2
+Cre06.g278114			Mitochondrion			
+Cre06.g299200	GMM:29.5	protein.degradation		GO:0005524	ATP binding	
+Cre06.g278106						
+Cre06.g253102						
+Cre06.g282400						
+Cre06.g289200			Mitochondrion			
+Cre06.g293950	GMM:25.1;GMM:25;GMM:1.2.5	C1-metabolism.glycine hydroxymethyltransferase;C1-metabolism;PS.photorespiration.serine hydroxymethyltransferase		GO:0016740	transferase activity	SHMT2
+Cre06.g270250	GMM:31.2	cell.division		GO:0006270	DNA replication initiation	CDC45
+Cre06.g266750	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB11
+Cre06.g267550	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies		GO:0034464	BBSome	BBS5
+Cre06.g278223			Secretory pathway			
+Cre06.g287900			Secretory pathway			
+Cre06.g291550			Secretory pathway			
+Cre06.g280700	GMM:27.3.73	RNA.regulation of transcription.Zn-finger(CCHC)	Chloroplast			
+Cre06.g302300				GO:0003677	DNA binding	
+Cre06.g276200			Secretory pathway			
+Cre06.g285300	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	SUT1
+Cre06.g250276						
+Cre06.g273500	GMM:23.2	nucleotide metabolism.degradation	Secretory pathway	GO:0016787	hydrolase activity	
+Cre06.g278250				GO:0070652;GO:0051225	HAUS complex;spindle assembly	
+Cre06.g267000				GO:0016740;GO:0008152;GO:0005542	transferase activity;metabolic process;folic acid binding	
+Cre06.g274550	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g268950	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g278192						
+Cre06.g285950			Chloroplast			
+Cre06.g278149			Chloroplast			
+Cre06.g275100	GMM:30.5;GMM:29.2.2.3.1;GMM:27.4	signalling.G-proteins;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre06.g250050			Chloroplast			
+Cre06.g278107			Chloroplast			
+Cre06.g251200	GMM:31.6.1.3.2.1	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A		GO:0030991	intraciliary transport particle A	IFT43
+Cre06.g281286						
+Cre06.g278278						
+Cre06.g297800						
+Cre06.g279400	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Secretory pathway	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	
+Cre06.g254700						
+Cre06.g258200	GMM:31.2;GMM:29.6;GMM:29.5.11.20	cell.division;protein.folding;protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	
+Cre06.g282100						
+Cre06.g255950	GMM:29.2.2.3.4	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins				
+Cre06.g296100			Secretory pathway	GO:0003824	catalytic activity	
+Cre06.g302900	GMM:3.5	minor CHO metabolism.others		GO:0005096	GTPase activator activity	
+Cre06.g269450	GMM:29.2.3	protein.synthesis.initiation		GO:0005852;GO:0005737;GO:0003743;GO:0003676	eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity;nucleic acid binding	EIF3G
+Cre06.g269650			Chloroplast	GO:2001070	starch binding	
+Cre06.g278157			Chloroplast			
+Cre06.g278148	GMM:7.1.3;GMM:13.1.1.1.4	OPP.oxidative PP.6-phosphogluconate dehydrogenase;amino acid metabolism.synthesis.central amino acid metabolism.GABA.gamma-hydroxybutyrate DH	Chloroplast	GO:0051287	NAD binding	
+Cre06.g257500	GMM:31.6.1.1;GMM:30.7;GMM:3.7	cell.motility.eukaryotes.basal bodies;signalling.14-3-3 proteins;minor CHO metabolism.sugar kinases		GO:0019904	protein domain specific binding	FTT2
+Cre06.g282826			Chloroplast			
+Cre06.g285200	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases	Chloroplast	GO:0016787	hydrolase activity	NDH1
+Cre06.g254100	GMM:31.1	cell.organisation	Mitochondrion			HRP6
+Cre06.g306501			Secretory pathway			
+Cre06.g263700			Secretory pathway			
+Cre06.g276650	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO2
+Cre06.g267100	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified				SRP68
+Cre06.g260050						
+Cre06.g255750			Chloroplast			EZY1C
+Cre06.g263841	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway			
+Cre06.g288700	GMM:1.2.2	PS.photorespiration.glycolate oxydase	Mitochondrion	GO:0055114;GO:0050660;GO:0016491;GO:0003824	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;catalytic activity	GYD1
+Cre06.g296200	GMM:4.1.16;GMM:30.3;GMM:29.4.1;GMM:29.4	glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g258250			Secretory pathway			
+Cre06.g298200			Secretory pathway			
+Cre06.g288450				GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre06.g310400						
+Cre06.g303900				GO:0016021	integral component of membrane	
+Cre06.g285150	GMM:26.12;GMM:21.2.1	misc.peroxidases;redox.ascorbate and glutathione.ascorbate	Chloroplast	GO:0055114;GO:0020037;GO:0006979;GO:0004601	oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity	APX2
+Cre06.g294850	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC10
+Cre06.g278093	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Mitochondrion			ELG20
+Cre06.g264600	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO14
+Cre06.g266500			Secretory pathway			
+Cre06.g271000			Secretory pathway			
+Cre06.g250350						
+Cre06.g278299						
+Cre06.g255800						
+Cre06.g307200						
+Cre06.g257150	GMM:29.2.1.2.2.537;GMM:29.2.1.2.2.0537	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L37A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L37A		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL37A
+Cre06.g253754						
+Cre06.g265850	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Mitochondrion	GO:0008236;GO:0006508;GO:0005515	serine-type peptidase activity;proteolysis;protein binding	TSP2
+Cre06.g293051	GMM:34.5	transport.ammonium	Secretory pathway	GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	AMT3
+Cre06.g279950						
+Cre06.g253459						
+Cre06.g281950			Mitochondrion			
+Cre06.g303572						
+Cre06.g263200						FAP325
+Cre06.g281350	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0030163;GO:0006508;GO:0005524;GO:0004252;GO:0004176	protein catabolic process;proteolysis;ATP binding;serine-type endopeptidase activity;ATP-dependent peptidase activity	LON1
+Cre06.g249550						
+Cre06.g259700			Mitochondrion			
+Cre06.g252450	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	
+Cre06.g284500	GMM:28.99;GMM:27.1.19	DNA.unspecified;RNA.processing.ribonucleases				RPH1
+Cre06.g278174						
+Cre06.g252650	GMM:16.5.1.1.1.4;GMM:13.2.4.4	secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.methylthioalkylmalate isomerase small subunit (MAM-IS);amino acid metabolism.degradation.branched chain group.leucine	Chloroplast	GO:0008152	metabolic process	LEU1S
+Cre06.g298600						
+Cre06.g302551						
+Cre06.g274850	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR4
+Cre06.g303200	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			MAW7
+Cre06.g259000			Secretory pathway			
+Cre06.g290150			Mitochondrion	GO:0042274	ribosomal small subunit biogenesis	CGL65
+Cre06.g280420			Secretory pathway	GO:0016779	nucleotidyltransferase activity	
+Cre06.g278216						
+Cre06.g268400	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO9
+Cre06.g278265	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g249700			Chloroplast	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
+Cre06.g278154						
+Cre06.g296850						FAP81
+Cre06.g278118						
+Cre06.g303183	GMM:29.4	protein.postranslational modification				PTK4
+Cre06.g309717	GMM:18.7	Co-factor and vitamine metabolism.iron-sulphur clusters	Chloroplast			
+Cre06.g278257			Chloroplast			
+Cre06.g278162	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC3
+Cre06.g280950	GMM:4.1.14	glycolysis.cytosolic branch.pyruvate kinase (PK)		GO:0030955;GO:0006096;GO:0004743;GO:0000287	potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding	PYK2
+Cre06.g277650						
+Cre06.g255200						
+Cre06.g297016	GMM:28.2	DNA.repair		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
+Cre06.g261850			Chloroplast			
+Cre06.g256526						
+Cre06.g283350						MRPS34
+Cre06.g283975			Secretory pathway			
+Cre06.g293650						
+Cre06.g271300	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO8
+Cre06.g261350						
+Cre06.g277350	GMM:27.3.55	RNA.regulation of transcription.HDA				HDA13
+Cre06.g296936			Secretory pathway			
+Cre06.g303650	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0003743	translational initiation;translation initiation factor activity	
+Cre06.g289000			Secretory pathway			
+Cre06.g262150			Chloroplast			
+Cre06.g264850						
+Cre06.g256700			Chloroplast			
+Cre06.g297900			Mitochondrion	GO:0016021	integral component of membrane	
+Cre06.g311900	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAB7
+Cre06.g286950			Secretory pathway			
+Cre06.g253000						MTA1
+Cre06.g300750	GMM:27.1.1	RNA.processing.splicing		GO:0005681;GO:0000398	"spliceosomal complex;mRNA splicing, via spliceosome"	
+Cre06.g280200				GO:0016021;GO:0006355;GO:0005634	"integral component of membrane;regulation of transcription, DNA-templated;nucleus"	
+Cre06.g305800	GMM:29.5	protein.degradation				
+Cre06.g311950	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG3
+Cre06.g254027			Chloroplast			
+Cre06.g272500			Chloroplast			
+Cre06.g290300			Mitochondrion			
+Cre06.g305550						
+Cre06.g294550			Chloroplast			
+Cre06.g296000						PSK1
+Cre06.g283550	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Chloroplast			
+Cre06.g290450	GMM:29.4;GMM:27.4	protein.postranslational modification;RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre06.g285650	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005664;GO:0003677	DNA replication;nuclear origin of replication recognition complex;DNA binding	ORC6
+Cre06.g292750			Secretory pathway	GO:0008430	selenium binding	
+Cre06.g304250						RLS2
+Cre06.g269000						
+Cre06.g306100						
+Cre06.g278086						
+Cre06.g301476						
+Cre06.g268100	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB10
+Cre06.g278116			Chloroplast			
+Cre06.g294650	GMM:13.1.5.2.3;GMM:13.1.1.3.11;GMM:1.2.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.serine glyoxylate aminotransferase;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase;PS.photorespiration.aminotransferases peroxisomal	Chloroplast			AGT1
+Cre06.g308250	GMM:29.2.1.2.1.4	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S4		GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723	translation;ribosome;intracellular;structural constituent of ribosome;RNA binding	RPS4
+Cre06.g265150	GMM:29.5.11.5;GMM:29.5.11	protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin	Chloroplast			
+Cre06.g310800			Mitochondrion			
+Cre06.g308750				GO:0016021	integral component of membrane	
+Cre06.g254550						
+Cre06.g260300						
+Cre06.g296300			Secretory pathway			SRR1
+Cre06.g278550	GMM:9.1.2	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear	Secretory pathway			
+Cre06.g306021						
+Cre06.g260700	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006863;GO:0006810;GO:0005345;GO:0005215	transmembrane transport;membrane;purine nucleobase transport;transport;purine nucleobase transmembrane transporter activity;transporter activity	XUV1
+Cre06.g258650			Chloroplast			PGM6
+Cre06.g299000	GMM:29.2.1.1.4.2	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit	Chloroplast	GO:0005840	ribosome	PRPL21
+Cre06.g305200	GMM:27.3.11	RNA.regulation of transcription.C2H2 zinc finger family				
+Cre06.g278197	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
+Cre06.g292400			Chloroplast			
+Cre06.g292600			Mitochondrion			OPR26
+Cre06.g275150	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	CGL69
+Cre06.g294900			Chloroplast			
+Cre06.g272600			Secretory pathway	GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre06.g306300	GMM:19.10;GMM:19.1	tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase	Chloroplast	GO:0016851;GO:0015995;GO:0015979	magnesium chelatase activity;chlorophyll biosynthetic process;photosynthesis	CHLI1
+Cre06.g253150	GMM:29.5.7	protein.degradation.metalloprotease				
+Cre06.g257650	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress"	MSRA2
+Cre06.g301900						
+Cre06.g274350	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR5
+Cre06.g287300			Secretory pathway			
+Cre06.g301251						
+Cre06.g277600						
+Cre06.g287600						
+Cre06.g278244			Chloroplast	GO:0009116	nucleoside metabolic process	
+Cre06.g290900						
+Cre06.g271900						
+Cre06.g252050						
+Cre06.g266550						
+Cre06.g278232			Chloroplast			
+Cre06.g251500	GMM:22.1.7;GMM:22.1.6	polyamine metabolism.synthesis.spermine synthase;polyamine metabolism.synthesis.spermidine synthase		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	SPS1
+Cre06.g281650						
+Cre06.g248750			Mitochondrion			
+Cre06.g275800	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB3
+Cre06.g310900			Mitochondrion			
+Cre06.g254400	GMM:8.1.8	TCA / organic transformation.TCA.fumarase	Mitochondrion	GO:0016836;GO:0016829	hydro-lyase activity;lyase activity	FUM1
+Cre06.g278134			Mitochondrion			
+Cre06.g284050	GMM:27.3.51	"RNA.regulation of transcription.general transcription, TBP-binding protein"		GO:0006355	"regulation of transcription, DNA-templated"	TAF1
+Cre06.g278098	GMM:13.2.4.4	amino acid metabolism.degradation.branched chain group.leucine				MCCA
+Cre06.g250000						
+Cre06.g297400	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	
+Cre06.g298350	GMM:29.2.3	protein.synthesis.initiation		GO:0005515	protein binding	FAP224
+Cre06.g295376						
+Cre06.g283600			Chloroplast			
+Cre06.g302800	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g279300				GO:0005515	protein binding	
+Cre06.g255550			Chloroplast			
+Cre06.g253975						
+Cre06.g274450				GO:0005515	protein binding	
+Cre06.g262601	GMM:28.2	DNA.repair	Chloroplast			
+Cre06.g253569			Chloroplast			
+Cre06.g250150						
+Cre06.g278181	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Chloroplast			
+Cre06.g303800				GO:0005515	protein binding	
+Cre06.g270450			Secretory pathway			
+Cre06.g278290			Chloroplast			
+Cre06.g256420	GMM:27.2	RNA.transcription		GO:0017025;GO:0008270;GO:0006384;GO:0006355;GO:0006352;GO:0000126	"TBP-class protein binding;zinc ion binding;transcription initiation from RNA polymerase III promoter;regulation of transcription, DNA-templated;DNA-templated transcription, initiation;transcription factor TFIIIB complex"	
+Cre06.g287800			Secretory pathway			
+Cre06.g299300	GMM:31.6.1.1;GMM:31.1.1.2;GMM:31.1	cell.motility.eukaryotes.basal bodies;cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0031122;GO:0007020;GO:0007017;GO:0005874;GO:0003924;GO:0000930	cytoplasmic microtubule organization;microtubule nucleation;microtubule-based process;microtubule;GTPase activity;gamma-tubulin complex	TUG1
+Cre06.g249101						
+Cre06.g267650	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g278190			Mitochondrion			
+Cre06.g254175						PR72
+Cre06.g270900	GMM:27.2;GMM:27.1	RNA.transcription;RNA.processing	Mitochondrion	GO:0016817	"hydrolase activity, acting on acid anhydrides"	SUV3
+Cre06.g272250			Secretory pathway			PHC27
+Cre06.g278285						
+Cre06.g278247			Mitochondrion			
+Cre06.g304913						
+Cre06.g300139			Mitochondrion			
+Cre06.g253750			Secretory pathway			EZY2
+Cre06.g261300			Chloroplast			
+Cre06.g273800	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion			
+Cre06.g253350	GMM:1.2.4.4;GMM:1.2.4	PS.photorespiration.glycine cleavage.H protein;PS.photorespiration.glycine cleavage	Mitochondrion			GCSH
+Cre06.g262850	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAB23
+Cre06.g301100			Mitochondrion			
+Cre06.g302250						
+Cre06.g278209			Secretory pathway			PRL8
+Cre06.g309200			Chloroplast			
+Cre06.g266850	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre06.g299800	GMM:11.1.8	lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	LCL1
+Cre06.g301400						
+Cre06.g311350			Secretory pathway			
+Cre06.g273100	GMM:26.3	"misc.gluco-, galacto- and mannosidases"	Secretory pathway	GO:0019028	viral capsid	
+Cre06.g278222	GMM:33.99;GMM:30.5;GMM:30.2.99;GMM:29.4	development.unspecified;signalling.G-proteins;signalling.receptor kinases.misc;protein.postranslational modification		GO:0005515	protein binding	
+Cre06.g283250						
+Cre06.g262500			Mitochondrion			
+Cre06.g270726						
+Cre06.g286050	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP20
+Cre06.g307100	GMM:35.1.1	not assigned.no ontology.ABC1 family protein				AKC2
+Cre06.g281563						
+Cre06.g278101	GMM:13.1.4.5	amino acid metabolism.synthesis.branched chain group.isoleucine specific				STD1
+Cre06.g280450						
+Cre06.g273850	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB7
+Cre06.g276001						TOM5
+Cre06.g297300						
+Cre06.g278160	GMM:2.1	major CHO metabolism.synthesis	Secretory pathway			PRL5
+Cre06.g310500	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family	Mitochondrion	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre06.g278249	GMM:16.2;GMM:13.1.1.2.1	secondary metabolism.phenylpropanoids;amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase		GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	AST5
+Cre06.g309350	GMM:29.3.4.1	protein.targeting.secretory pathway.ER	Secretory pathway	GO:0046923;GO:0016021;GO:0006621	ER retention sequence binding;integral component of membrane;protein retention in ER lumen	ERD2C
+Cre06.g309050	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion	GO:0006355;GO:0005634	"regulation of transcription, DNA-templated;nucleus"	NOT2
+Cre06.g252800			Secretory pathway	GO:0006629	lipid metabolic process	
+Cre06.g264750	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA14
+Cre06.g264700	GMM:28.1.3	DNA.synthesis/chromatin structure.histone	Secretory pathway			CSS1
+Cre06.g259100			Chloroplast			
+Cre06.g260776			Secretory pathway			
+Cre06.g302150			Chloroplast			
+Cre06.g282700						
+Cre06.g258100			Mitochondrion			
+Cre06.g264150						MAW11
+Cre06.g255050						
+Cre06.g288500			Secretory pathway			RRA2
+Cre06.g261100						
+Cre06.g278292						
+Cre06.g282750			Mitochondrion			
+Cre06.g271250	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR8
+Cre06.g256600						
+Cre06.g279800						
+Cre06.g257200						
+Cre06.g278225	GMM:26.5	misc.acyl transferases				
+Cre06.g286250	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MPC1
+Cre06.g278146			Mitochondrion			
+Cre06.g249450						
+Cre06.g278136	GMM:29.5.11.4.2;GMM:28.1.3;GMM:27.3.12	protein.degradation.ubiquitin.E3.RING;DNA.synthesis/chromatin structure.histone;RNA.regulation of transcription.C3H zinc finger family		GO:0046872;GO:0008270;GO:0005515	metal ion binding;zinc ion binding;protein binding	
+Cre06.g269200	GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XI	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	cya7
+Cre06.g267750	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway	GO:0006508;GO:0005515;GO:0004252	proteolysis;protein binding;serine-type endopeptidase activity	
+Cre06.g257050	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase				GBS2
+Cre06.g259476						
+Cre06.g278085						
+Cre06.g292950			Chloroplast	GO:0006260;GO:0005634	DNA replication;nucleus	
+Cre06.g278168	GMM:34.99	transport.misc		GO:0005488	binding	
+Cre06.g308350	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	
+Cre06.g263289			Secretory pathway	GO:0016765	"transferase activity, transferring alkyl or aryl (other than methyl) groups"	
+Cre06.g281850			Mitochondrion			
+Cre06.g291750						
+Cre06.g308050			Secretory pathway			
+Cre06.g268900			Mitochondrion			
+Cre06.g256250	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF14
+Cre06.g307650			Secretory pathway			
+Cre06.g310250			Chloroplast			
+Cre06.g299550						
+Cre06.g301806						PHC76
+Cre06.g294750	GMM:19.15	tetrapyrrole synthesis.chlorophyll synthase	Chloroplast	GO:0016021;GO:0004659	integral component of membrane;prenyltransferase activity	CHLG
+Cre06.g283700			Mitochondrion			
+Cre06.g293750				GO:0046872	metal ion binding	
+Cre06.g250450	GMM:34.99	transport.misc	Secretory pathway	GO:0016020	membrane	
+Cre06.g278260	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre06.g259950			Chloroplast			
+Cre06.g300400	GMM:29.5	protein.degradation				
+Cre06.g278267			Secretory pathway			
+Cre06.g269100			Mitochondrion	GO:0008080	N-acetyltransferase activity	
+Cre06.g252250						
+Cre06.g265300			Secretory pathway			CSS2
+Cre06.g278143	GMM:10.1.6	cell wall.precursor synthesis.GAE				GAE
+Cre06.g278255			Chloroplast			
+Cre06.g296400	GMM:13.2.4.4	amino acid metabolism.degradation.branched chain group.leucine	Mitochondrion	GO:0055114;GO:0050660;GO:0016627;GO:0008152;GO:0003995	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity, acting on the CH-CH group of donors;metabolic process;acyl-CoA dehydrogenase activity"	
+Cre06.g279050			Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g255850			Chloroplast			
+Cre06.g307950			Mitochondrion	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	
+Cre06.g303000			Mitochondrion			
+Cre06.g286850						
+Cre06.g274200	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA6
+Cre06.g268000	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO10
+Cre06.g307750			Secretory pathway			
+Cre06.g276950	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA1
+Cre06.g258583			Secretory pathway			
+Cre06.g286750			Secretory pathway	GO:0003729;GO:0003723	mRNA binding;RNA binding	
+Cre06.g302400			Chloroplast			CSB31
+Cre06.g278123						VPS39
+Cre06.g311800			Secretory pathway			
+Cre06.g252576			Mitochondrion			
+Cre06.g295301						
+Cre06.g268350	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR9
+Cre06.g280250			Chloroplast			
+Cre06.g304350	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase		GO:0005739;GO:0004129	mitochondrion;cytochrome-c oxidase activity	COX12
+Cre06.g277050				GO:0042273;GO:0030036;GO:0000055	ribosomal large subunit biogenesis;actin cytoskeleton organization;ribosomal large subunit export from nucleus	
+Cre06.g278302						
+Cre06.g254300						
+Cre06.g284900	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Secretory pathway	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN20-1
+Cre06.g289450						
+Cre06.g287450	GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g278172	GMM:31.4	cell.vesicle transport		GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	
+Cre06.g261950						ANK11
+Cre06.g278350	GMM:13.1.6.4.2;GMM:13.1.6.4.1	amino acid metabolism.synthesis.aromatic aa.tyrosine.prephenate dehydrogenase;amino acid metabolism.synthesis.aromatic aa.tyrosine.arogenate dehydrogenase / prephenate dehydrogenase	Chloroplast	GO:0055114;GO:0008977;GO:0006571;GO:0004665	oxidation-reduction process;prephenate dehydrogenase activity;tyrosine biosynthetic process;prephenate dehydrogenase (NADP+) activity	AGD1
+Cre06.g249900	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0019205;GO:0006139;GO:0005524	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding	FAP75
+Cre06.g267850			Mitochondrion			PLS1
+Cre06.g303300	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755	protein folding;peptidyl-prolyl cis-trans isomerase activity	CYN37
+Cre06.g293400						
+Cre06.g251800	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005524	ATP binding	RFC4
+Cre06.g268300	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA9
+Cre06.g257700						
+Cre06.g269544						
+Cre06.g278199			Chloroplast			
+Cre06.g302000	GMM:34.99	transport.misc				MFP31
+Cre06.g278131			Secretory pathway			
+Cre06.g288150						
+Cre06.g252150			Chloroplast			
+Cre06.g287700	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g292850			Chloroplast			CDC6
+Cre06.g272701						
+Cre06.g278451	GMM:30.1.2	signalling.in sugar and nutrient physiology.pyruvate dehydrogenase kinase	Mitochondrion			PDK2
+Cre06.g295001			Mitochondrion			
+Cre06.g306057			Secretory pathway			
+Cre06.g297500			Chloroplast			
+Cre06.g270300			Mitochondrion			
+Cre06.g250700			Mitochondrion			
+Cre06.g309600			Chloroplast			
+Cre06.g251350	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005515	protein binding	
+Cre06.g266000	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g281050	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole		GO:0035091	phosphatidylinositol binding	VPS5A
+Cre06.g268250	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB9
+Cre06.g269865			Secretory pathway			
+Cre06.g272950	GMM:29.2.1.2.1.18	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S18	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723	translation;ribosome;intracellular;structural constituent of ribosome;RNA binding	RPS18
+Cre06.g278240						
+Cre06.g256950			Mitochondrion			SND1D
+Cre06.g278237						CPLD34
+Cre06.g305900	GMM:29.7	protein.glycosylation				CPLD22
+Cre06.g310700	GMM:29.2.1.2.2.536;GMM:29.2.1.2.2.44	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L36A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L44		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL36A
+Cre06.g294400	GMM:34.99	transport.misc		GO:0016485;GO:0016021	protein processing;integral component of membrane	NIS1
+Cre06.g311150	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT20
+Cre06.g306400	GMM:17.5.1.1	hormone metabolism.ethylene.synthesis-degradation.1-aminocyclopropane-1-carboxylate synthase		GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	
+Cre06.g276500	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA2
+Cre06.g249555						
+Cre06.g278286			Mitochondrion			
+Cre06.g305100			Secretory pathway			
+Cre06.g298300	GMM:35.1.5;GMM:27.3;GMM:1.3.13	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;RNA.regulation of transcription;PS.calvin cycle.rubisco interacting	Chloroplast			MRL1
+Cre06.g290800						RMG1
+Cre06.g274950	GMM:31.4	cell.vesicle transport				
+Cre06.g298800			Mitochondrion			LTH5
+Cre06.g295050			Secretory pathway	GO:0005515	protein binding	
+Cre06.g274050	GMM:28.1.3	DNA.synthesis/chromatin structure.histone				
+Cre06.g271526						
+Cre06.g275900	GMM:28.1.3	DNA.synthesis/chromatin structure.histone		GO:0006334;GO:0005634;GO:0003677;GO:0000786	nucleosome assembly;nucleus;DNA binding;nucleosome	HON3
+Cre06.g278800	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)	Mitochondrion	GO:0016021	integral component of membrane	
+Cre06.g311700			Mitochondrion			FAP349
+Cre06.g283034			Secretory pathway			
+Cre06.g291400				GO:0005524	ATP binding	
+Cre06.g299700	GMM:19.99	tetrapyrrole synthesis.unspecified				SOUL1
+Cre06.g262700	GMM:9.5	mitochondrial electron transport / ATP synthesis.cytochrome c reductase		GO:0006122;GO:0005750	"mitochondrial electron transport, ubiquinol to cytochrome c;mitochondrial respiratory chain complex III"	QCR7
+Cre06.g259200	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	GTP binding	EFS1
+Cre06.g295450	GMM:13.2.5.2;GMM:13.2.5.1;GMM:1.2.6	amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;amino acid metabolism.degradation.serine-glycine-cysteine group.serine;PS.photorespiration.hydroxypyruvate reductase	Mitochondrion	GO:0055114;GO:0051287;GO:0016616;GO:0008152	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process"	HPR1
+Cre06.g278245	GMM:31.5.1;GMM:29.3.3	cell.cell death.plants;protein.targeting.chloroplast	Chloroplast	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	
+Cre06.g277850						
+Cre06.g254213			Mitochondrion			
+Cre06.g252300	GMM:30.1.2	signalling.in sugar and nutrient physiology.pyruvate dehydrogenase kinase	Mitochondrion			PDK1
+Cre06.g262950			Mitochondrion			
+Cre06.g306007						
+Cre06.g254077			Chloroplast			
+Cre06.g261150	GMM:18.6.1	Co-factor and vitamine metabolism.biotin.biotin synthase	Mitochondrion	GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	BIO2
+Cre06.g298450						
+Cre06.g263357			Chloroplast			
+Cre06.g278297						
+Cre06.g283750	GMM:16.1.3.2;GMM:16.1.3	secondary metabolism.isoprenoids.tocopherol biosynthesis.homogentisate phytyltransferase;secondary metabolism.isoprenoids.tocopherol biosynthesis	Chloroplast	GO:0016021;GO:0004659	integral component of membrane;prenyltransferase activity	HST1
+Cre06.g261500			Chloroplast	GO:0005515	protein binding	CPLD58
+Cre06.g300150	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion			
+Cre06.g260650			Secretory pathway			
+Cre06.g278229	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre06.g301000	GMM:30.6;GMM:30.2.9;GMM:29.4	signalling.MAP kinases;signalling.receptor kinases.leucine rich repeat IX;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g278145			Secretory pathway			
+Cre06.g278217			Mitochondrion			
+Cre06.g282050			Mitochondrion			
+Cre06.g254350			Mitochondrion	GO:0016020	membrane	
+Cre06.g278275			Chloroplast			
+Cre06.g311050	GMM:8.1.1.1;GMM:13.2.4.1	TCA / organic transformation.TCA.pyruvate DH.E1;amino acid metabolism.degradation.branched chain group.shared	Mitochondrion	GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre06.g278293						
+Cre06.g286350			Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	UMM6
+Cre06.g265000	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR13
+Cre06.g256500			Mitochondrion;Chloroplast			
+Cre06.g258600	GMM:26.1	misc.misc2	Secretory pathway			
+Cre06.g263300	GMM:31.1;GMM:29.3.5	cell.organisation;protein.targeting.peroxisomes		GO:0016559;GO:0005779	peroxisome fission;integral component of peroxisomal membrane	
+Cre06.g275350	GMM:27.3.26;GMM:27.3.25	RNA.regulation of transcription.MYB-related transcription factor family;RNA.regulation of transcription.MYB domain transcription factor family	Mitochondrion			ROC40
+Cre06.g276100				GO:0005515	protein binding	
+Cre06.g261550			Mitochondrion			
+Cre06.g300900	GMM:33.99	development.unspecified	Chloroplast	GO:0016973;GO:0005643	poly(A)+ mRNA export from nucleus;nuclear pore	
+Cre06.g271600						
+Cre06.g277801	GMM:28.2	DNA.repair		GO:0006310;GO:0006281;GO:0005524;GO:0003910;GO:0003677	DNA recombination;DNA repair;ATP binding;DNA ligase (ATP) activity;DNA binding	DNL7
+Cre06.g263500			Chloroplast			
+Cre06.g255450	GMM:31.2	cell.division		GO:0051726;GO:0007049;GO:0006357;GO:0006351;GO:0005634	"regulation of cell cycle;cell cycle;regulation of transcription from RNA polymerase II promoter;transcription, DNA-templated;nucleus"	MAT3
+Cre06.g276550	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB2
+Cre06.g258850						EZY7
+Cre06.g286700				GO:0005515	protein binding	
+Cre06.g288900						
+Cre06.g278121						
+Cre06.g301350			Chloroplast			
+Cre06.g283150						
+Cre06.g249300	GMM:31.1	cell.organisation				ARP5
+Cre06.g309650			Mitochondrion			
+Cre06.g283800			Chloroplast			
+Cre06.g297150	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RWP9
+Cre06.g278273			Secretory pathway			
+Cre06.g273400						
+Cre06.g280350				GO:0005515	protein binding	
+Cre06.g278095	GMM:26.17	misc.dynamin				
+Cre06.g265500	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR11B
+Cre06.g298850						LTH6
+Cre06.g304876			Chloroplast			
+Cre06.g284950			Chloroplast			
+Cre06.g271750						
+Cre06.g257600	GMM:31.6.1.2	cell.motility.eukaryotes.deflagellation				FA1
+Cre06.g301650			Chloroplast	GO:0030170	pyridoxal phosphate binding	
+Cre06.g253900			Secretory pathway			
+Cre06.g303350	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
+Cre06.g277200	GMM:18.6.2;GMM:16.99	Co-factor and vitamine metabolism.biotin.Diaminopelargonic acid aminotransferase  and dethiobiotin synthetase;secondary metabolism.unspecified	Mitochondrion	GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	BIO1
+Cre06.g275450	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
+Cre06.g263850	GMM:34.8	transport.metabolite transporters at the envelope membrane	Chloroplast			TPT2
+Cre06.g278198	GMM:28.99	DNA.unspecified	Mitochondrion			
+Cre06.g256300	GMM:29.4;GMM:26.13	protein.postranslational modification;misc.acid and other phosphatases	Mitochondrion	GO:0003824	catalytic activity	
+Cre06.g265550	GMM:30.3;GMM:29.4.1;GMM:29.4	signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005509;GO:0004672	protein phosphorylation;calcium ion binding;protein kinase activity	
+Cre06.g255400	GMM:33.99;GMM:27.1.1	development.unspecified;RNA.processing.splicing		GO:0005515	protein binding	
+Cre06.g298700						
+Cre06.g300550						
+Cre06.g295500	GMM:26.28	misc.GDSL-motif lipase				
+Cre06.g284200	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM9
+Cre06.g296912						
+Cre06.g295700	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005524;GO:0003677	DNA replication;ATP binding;DNA binding	MCM3
+Cre06.g298000			Chloroplast			
+Cre06.g289700				GO:0006888;GO:0005801	ER to Golgi vesicle-mediated transport;cis-Golgi network	BET5
+Cre06.g296750	GMM:5;GMM:1.1.7.1	fermentation;PS.lightreaction.hydrogenase.FeFe-hydrogenase	Chloroplast	GO:0051536;GO:0005525;GO:0003824	iron-sulfur cluster binding;GTP binding;catalytic activity	HYDEF1
+Cre06.g282300			Mitochondrion			
+Cre06.g308600			Chloroplast			
+Cre06.g257351			Secretory pathway			
+Cre06.g284650			Chloroplast	GO:0004725;GO:0004721	protein tyrosine phosphatase activity;phosphoprotein phosphatase activity	MKP6
+Cre06.g255626						
+Cre06.g263602	GMM:29.3.5	protein.targeting.peroxisomes	Secretory pathway	GO:0008270;GO:0008022;GO:0006625;GO:0005779	zinc ion binding;protein C-terminus binding;protein targeting to peroxisome;integral component of peroxisomal membrane	
+Cre06.g297600				GO:0010181	FMN binding	
+Cre06.g253300	GMM:29.5.11	protein.degradation.ubiquitin		GO:0006511;GO:0005622;GO:0004843	ubiquitin-dependent protein catabolic process;intracellular;thiol-dependent ubiquitin-specific protease activity	
+Cre06.g268650	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP279
+Cre06.g278128						
+Cre06.g254800	GMM:27.4;GMM:27.1.1	RNA.RNA binding;RNA.processing.splicing		GO:0003676	nucleic acid binding	
+Cre06.g278104			Chloroplast			
+Cre06.g308850	GMM:29.2.3	protein.synthesis.initiation		GO:0005852;GO:0005737;GO:0003743	eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity	EIF3X
+Cre06.g269601				GO:2001070	starch binding	
+Cre06.g278236			Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre06.g290000	GMM:27.3.30	RNA.regulation of transcription.triple-helix transcription factor family (Trihelix)	Secretory pathway			GIP1
+Cre06.g290350						
+Cre06.g278211			Chloroplast			
+Cre06.g280550	GMM:27.4;GMM:27.3.12	RNA.RNA binding;RNA.regulation of transcription.C3H zinc finger family		GO:0003676	nucleic acid binding	
+Cre06.g301800			Secretory pathway			MFT19
+Cre06.g269950	GMM:31.2;GMM:29.5.11.20	cell.division;protein.degradation.ubiquitin.proteasom		GO:0009378;GO:0006310;GO:0006281;GO:0005524	four-way junction helicase activity;DNA recombination;DNA repair;ATP binding	CDC48
+Cre06.g290050			Secretory pathway			
+Cre06.g263100						
+Cre06.g282550						
+Cre06.g279750	GMM:29.5.7	protein.degradation.metalloprotease				MAP1A
+Cre06.g300800	GMM:29.2.1.99.2.27;GMM:29.2.1.1.1.2.27	protein.synthesis.ribosomal protein.unknown.large subunit.L27;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L27	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL27
+Cre06.g257450	GMM:34.1.1.2;GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit C;transport.p- and v-ATPases.H+-transporting two-sector ATPase	Mitochondrion	GO:0033177;GO:0015991;GO:0015078	"proton-transporting two-sector ATPase complex, proton-transporting domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVL1
+Cre06.g278288			Chloroplast			
+Cre06.g281526			Secretory pathway	GO:0005515	protein binding	
+Cre06.g258350			Chloroplast			
+Cre06.g278178						
+Cre06.g296500						
+Cre06.g269300						CGL120
+Cre06.g307850						
+Cre06.g303100				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g306950	GMM:33.99;GMM:29.4	development.unspecified;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g278184	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
+Cre06.g254850						
+Cre06.g251716			Mitochondrion			
+Cre06.g294450	GMM:3.5	minor CHO metabolism.others	Chloroplast			
+Cre06.g262350			Mitochondrion			
+Cre06.g250100	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Chloroplast			HSP70B
+Cre06.g260850			Chloroplast	GO:0032040	small-subunit processome	NOP14
+Cre06.g278950						
+Cre06.g276850	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR1
+Cre06.g306726						
+Cre06.g277450						
+Cre06.g268750	GMM:8.2.10	TCA / organic transformation.other organic acid transformations.malic	Mitochondrion	GO:0055114;GO:0051287;GO:0004471	oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity	MME1
+Cre06.g310576			Chloroplast			
+Cre06.g298950			Secretory pathway			
+Cre06.g272760			Mitochondrion			
+Cre06.g278283			Chloroplast			
+Cre06.g285500			Chloroplast			
+Cre06.g278090	GMM:29.2.1.1.3.2.1;GMM:29.2.1.1.1.2.1	protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L1;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L1	Mitochondrion			MRPL1
+Cre06.g273150				GO:0032259;GO:0008168	methylation;methyltransferase activity	
+Cre06.g278138			Chloroplast			OPR119
+Cre06.g250600			Secretory pathway			
+Cre06.g311300			Mitochondrion			
+Cre06.g268200	GMM:34.99	transport.misc	Mitochondrion	GO:0043190;GO:0006810	ATP-binding cassette (ABC) transporter complex;transport	TGD1
+Cre06.g285700			Secretory pathway			
+Cre06.g278109			Chloroplast	GO:0006629	lipid metabolic process	
+Cre06.g259850	GMM:29.2.1.1.4.2	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit	Chloroplast			PRPL29
+Cre06.g293200			Mitochondrion			
+Cre06.g256550						
+Cre06.g302426						
+Cre06.g264800	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB14
+Cre06.g307350	GMM:30.5;GMM:3.5;GMM:27.3.99	signalling.G-proteins;minor CHO metabolism.others;RNA.regulation of transcription.unclassified		GO:0005096	GTPase activator activity	
+Cre06.g257800	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0006260;GO:0003887;GO:0003677	DNA replication;DNA-directed DNA polymerase activity;DNA binding	POL1-1
+Cre06.g303751			Secretory pathway			
+Cre06.g275650	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0042176;GO:0030234;GO:0005515;GO:0000502	regulation of protein catabolic process;enzyme regulator activity;protein binding;proteasome complex	RPN3
+Cre06.g305650	GMM:31.5.1;GMM:29.3.3;GMM:26.30	cell.cell death.plants;protein.targeting.chloroplast;misc.other Ferredoxins and Rieske domain	Mitochondrion	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	
+Cre06.g293350						
+Cre06.g261650	GMM:29.6.1;GMM:29.6	protein.folding.prefoldin and trigger factor;protein.folding		GO:0016272;GO:0006457	prefoldin complex;protein folding	PFD1
+Cre06.g303171			Mitochondrion			
+Cre06.g304500	GMM:31.7.1	cell.development.zygote	Secretory pathway	GO:0005515	protein binding	ZYS4
+Cre06.g278253			Mitochondrion			
+Cre06.g253852						
+Cre06.g269752			Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRX15
+Cre06.g282450	GMM:26.7;GMM:13.2.2.2	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PHX11
+Cre06.g292000	GMM:31.4	cell.vesicle transport		GO:0006886;GO:0005622	intracellular protein transport;intracellular	
+Cre06.g251100	GMM:29.4	protein.postranslational modification		GO:0006499;GO:0004379	N-terminal protein myristoylation;glycylpeptide N-tetradecanoyltransferase activity	NMT1
+Cre06.g253759			Secretory pathway			
+Cre06.g294800			Secretory pathway	GO:0016021	integral component of membrane	CPLD37
+Cre06.g253566			Secretory pathway			
+Cre06.g253755						
+Cre06.g305000			Chloroplast	GO:0005515	protein binding	
+Cre06.g305302						
+Cre06.g309826	GMM:31.6.1.11	cell.motility.eukaryotes.other				MOT2
+Cre06.g296950	GMM:27.3.99;GMM:27.3.63	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.PHD finger transcription factor	Mitochondrion			
+Cre06.g295150						
+Cre06.g279474						MUT68
+Cre06.g278585			Mitochondrion			
+Cre06.g278158	GMM:2.1	major CHO metabolism.synthesis				PRL3
+Cre06.g291800	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0016021;GO:0004659	integral component of membrane;prenyltransferase activity	COQ2
+Cre06.g267200	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUO21
+Cre06.g276450	GMM:24.1	biodegradation of xenobiotics.hydroxyacylglutathione hydrolase	Secretory pathway	GO:0019243;GO:0004416	methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione;hydroxyacylglutathione hydrolase activity	
+Cre06.g308300	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0032259;GO:0008168	methylation;methyltransferase activity	
+Cre06.g278242				GO:0005739	mitochondrion	
+Cre06.g268850			Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g251951	GMM:27.1.3.11;GMM:27.1	RNA.processing.3' end processing.Pfs2;RNA.processing		GO:0005515	protein binding	
+Cre06.g256100			Mitochondrion			
+Cre06.g256850			Chloroplast			SND1B
+Cre06.g260200	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP18
+Cre06.g301550	GMM:34.2	transport.sugars	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT18
+Cre06.g280600			Chloroplast			GEX1
+Cre06.g300250	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation	Mitochondrion	GO:0006464	cellular protein modification process	TTL10
+Cre06.g279183						
+Cre06.g258566						
+Cre06.g258000			Secretory pathway			
+Cre06.g278500						
+Cre06.g310300			Chloroplast			
+Cre06.g258733	GMM:13.1.4.4.1	amino acid metabolism.synthesis.branched chain group.leucine specific.2-isopropylmalate synthase		GO:0009098;GO:0003852;GO:0003824	leucine biosynthetic process;2-isopropylmalate synthase activity;catalytic activity	LEU2
+Cre06.g304800						
+Cre06.g278258			Chloroplast			
+Cre06.g249750			Chloroplast	GO:0030261;GO:0003677	chromosome condensation;DNA binding	
+Cre06.g278170			Secretory pathway			FAP237
+Cre06.g293850	GMM:9.1.1.5	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I.carbonic anhydrase	Mitochondrion			CAG2
+Cre06.g259600	GMM:31.4	cell.vesicle transport				VPS53
+Cre06.g263600			Mitochondrion			
+Cre06.g256750	GMM:11.1.7	lipid metabolism.FA synthesis and FA elongation.ACP thioesterase	Chloroplast	GO:0016790;GO:0006633	thiolester hydrolase activity;fatty acid biosynthetic process	FAT1
+Cre06.g302100						
+Cre06.g251650	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0016020;GO:0006814;GO:0005215	transmembrane transport;membrane;sodium ion transport;transporter activity	PTC1
+Cre06.g271450			Mitochondrion			
+Cre06.g253250				GO:0046983;GO:0003677	protein dimerization activity;DNA binding	
+Cre06.g298251			Mitochondrion			
+Cre06.g275250			Mitochondrion			
+Cre06.g282250				GO:0008080	N-acetyltransferase activity	
+Cre06.g274150	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO6
+Cre06.g278262			Chloroplast			
+Cre06.g301725						
+Cre06.g252350			Mitochondrion			CGL70
+Cre06.g250200	GMM:15.2;GMM:13.1.3.4.11;GMM:13.1.3.4	"metal handling.binding, chelation and storage;amino acid metabolism.synthesis.aspartate family.methionine.S-adenosylmethionine synthetase;amino acid metabolism.synthesis.aspartate family.methionine"		GO:0006556;GO:0005524;GO:0004478	S-adenosylmethionine biosynthetic process;ATP binding;methionine adenosyltransferase activity	METM
+Cre06.g278152			Secretory pathway			
+Cre06.g292100			Chloroplast			
+Cre06.g308150	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat				DNJ23
+Cre06.g287150				GO:0005515	protein binding	
+Cre06.g300650						
+Cre06.g308450						
+Cre06.g278301						
+Cre06.g286150			Secretory pathway			
+Cre06.g276800	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO1
+Cre06.g302750	GMM:33.99;GMM:30.2.99;GMM:29.4.1;GMM:29.4	development.unspecified;signalling.receptor kinases.misc;protein.postranslational modification.kinase;protein.postranslational modification		GO:0005515	protein binding	
+Cre06.g284750	GMM:30.5;GMM:29.2.4	signalling.G-proteins;protein.synthesis.elongation	Chloroplast			EFG3
+Cre06.g310000	GMM:31.4	cell.vesicle transport		GO:0030117;GO:0016192;GO:0006886	membrane coat;vesicle-mediated transport;intracellular protein transport	AP4E1
+Cre06.g255300			Chloroplast			CGLD28
+Cre06.g292350	GMM:34.3	transport.amino acids	Secretory pathway	GO:0055085;GO:0016020;GO:0015171;GO:0006810;GO:0003333	transmembrane transport;membrane;amino acid transmembrane transporter activity;transport;amino acid transmembrane transport	AOC4
+Cre06.g296650	GMM:3.3	minor CHO metabolism.sugar alcohols				HYDG
+Cre06.g304650	GMM:30.4.2	signalling.phosphinositides.phosphatidylinositol 4-kinase		GO:0048015;GO:0046854;GO:0016773;GO:0006661;GO:0004430	"phosphatidylinositol-mediated signaling;phosphatidylinositol phosphorylation;phosphotransferase activity, alcohol group as acceptor;phosphatidylinositol biosynthetic process;1-phosphatidylinositol 4-kinase activity"	PIK3
+Cre06.g278099						
+Cre06.g278096						SELU
+Cre06.g291300			Chloroplast			
+Cre06.g254250						
+Cre06.g295950						
+Cre06.g278127			Secretory pathway			
+Cre06.g294350						
+Cre06.g292550	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	FAP15
+Cre06.g278274			Mitochondrion			
+Cre06.g278150			Chloroplast			
+Cre06.g288350						
+Cre06.g306150			Mitochondrion			
+Cre06.g308500	GMM:23.1.1.1;GMM:13.1.2.3.11	nucleotide metabolism.synthesis.pyrimidine.carbamoyl phosphate synthetase;amino acid metabolism.synthesis.glutamate family.arginine.carbamoyl-phosphate synthase	Chloroplast	GO:0016787;GO:0006541	hydrolase activity;glutamine metabolic process	CMP2
+Cre06.g255350	GMM:18.2	Co-factor and vitamine metabolism.thiamine		GO:0009228;GO:0004417	thiamine biosynthetic process;hydroxyethylthiazole kinase activity	THI10
+Cre06.g273550			Chloroplast			
+Cre06.g278205			Mitochondrion			
+Cre06.g251400	GMM:8.2.10	TCA / organic transformation.other organic acid transformations.malic	Mitochondrion	GO:0055114;GO:0051287;GO:0004471	oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity	MME6
+Cre06.g309900	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins	Secretory pathway			MST2
+Cre06.g278144	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	
+Cre06.g265652	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway			
+Cre06.g267500	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	
+Cre06.g298100	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0003743	translational initiation;translation initiation factor activity	SUI1A
+Cre06.g253902			Chloroplast			
+Cre06.g249200	GMM:31.1	cell.organisation				ARP4
+Cre06.g266250				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g267476			Chloroplast			
+Cre06.g263450	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	GTP binding	EEF1A3
+Cre06.g283050	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA1
+Cre06.g287250	GMM:35.1.5	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein				COG4
+Cre06.g278900						
+Cre06.g278270			Chloroplast			
+Cre06.g278243				GO:0055114;GO:0050660;GO:0016491	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity	
+Cre06.g285050						
+Cre06.g283450			Secretory pathway			
+Cre06.g295600	GMM:27.1.5;GMM:25	RNA.processing.base modifications;C1-metabolism		GO:0008168;GO:0006139	methyltransferase activity;nucleobase-containing compound metabolic process	RME1
+Cre06.g278117			Chloroplast			CPLD7
+Cre06.g275750	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR3
+Cre06.g265100	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre06.g278272			Chloroplast			
+Cre06.g301201			Chloroplast			
+Cre06.g278196			Secretory pathway			
+Cre06.g278189			Secretory pathway			
+Cre06.g308700						
+Cre06.g277700			Mitochondrion			
+Cre06.g264450	GMM:34.3	transport.amino acids	Secretory pathway			AOT5
+Cre06.g278294			Secretory pathway			
+Cre06.g287550						
+Cre06.g310950						
+Cre06.g280100			Secretory pathway	GO:0016021	integral component of membrane	
+Cre06.g270276			Chloroplast			
+Cre06.g297750	GMM:27.1.1	RNA.processing.splicing				SPL3
+Cre06.g266383						HEL26
+Cre06.g266416	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0004386	helicase activity	
+Cre06.g274250	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB6
+Cre06.g277250	GMM:28.2	DNA.repair	Mitochondrion			
+Cre06.g278133			Mitochondrion			
+Cre06.g266700	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA11
+Cre06.g252892			Secretory pathway			MTA4A
+Cre06.g278219	GMM:31.6.1.11	cell.motility.eukaryotes.other				SSA6
+Cre06.g267300			Mitochondrion			
+Cre06.g272000						
+Cre06.g304100	GMM:28.99	DNA.unspecified		GO:0007015;GO:0007010;GO:0003779	actin filament organization;cytoskeleton organization;actin binding	
+Cre06.g278234			Mitochondrion	GO:0005515	protein binding	FAP343
+Cre06.g270050						
+Cre06.g311550						
+Cre06.g278213	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA6
+Cre06.g285900			Chloroplast			FAP396
+Cre06.g305400			Chloroplast			
+Cre06.g257601	GMM:21.5.1	redox.peroxiredoxin.BAS1	Chloroplast	GO:0055114;GO:0051920;GO:0016491	oxidation-reduction process;peroxiredoxin activity;oxidoreductase activity	PRX1
+Cre06.g278201						
+Cre06.g297700	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
+Cre06.g271188			Secretory pathway	GO:0016787	hydrolase activity	
+Cre06.g292249			Secretory pathway			PHC50
+Cre06.g305500				GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre06.g311200	GMM:34.99	transport.misc		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT21
+Cre06.g275050	GMM:29.5	protein.degradation	Secretory pathway	GO:0016787;GO:0008242;GO:0006541;GO:0003824	hydrolase activity;omega peptidase activity;glutamine metabolic process;catalytic activity	GGH2
+Cre06.g257900			Secretory pathway			
+Cre06.g258500						
+Cre06.g252743						
+Cre06.g310650						
+Cre06.g309550	GMM:29.4	protein.postranslational modification	Secretory pathway			
+Cre06.g278088	GMM:28.1.3.2.1	DNA.synthesis/chromatin structure.histone.core.H2A		GO:0003677	DNA binding	HAV3
+Cre06.g300300			Mitochondrion			
+Cre06.g269850			Chloroplast			
+Cre06.g273950	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO7
+Cre06.g284150	GMM:34.5	transport.ammonium	Chloroplast	GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	RHP2
+Cre06.g254650	GMM:29.5.11.4.2;GMM:27.3.12	protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.C3H zinc finger family		GO:0046872	metal ion binding	
+Cre06.g291900						PHD1
+Cre06.g265400	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB12
+Cre06.g267450			Secretory pathway			
+Cre06.g278140	GMM:29.4;GMM:17.2.3	protein.postranslational modification;hormone metabolism.auxin.induced-regulated-responsive-activated	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g272850	GMM:29.2.1.1.1.2.10	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L10	Chloroplast	GO:0042254;GO:0005622	ribosome biogenesis;intracellular	PRPL10
+Cre06.g281750						
+Cre06.g288908	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g285600	GMM:31.6.1.9	cell.motility.eukaryotes.flagellar adhesion and gamete fusion				RWP5
+Cre06.g266300			Chloroplast			
+Cre06.g250800	GMM:27.4	RNA.RNA binding		GO:0005515;GO:0003723	protein binding;RNA binding	CRB1
+Cre06.g304150	GMM:31.1	cell.organisation	Mitochondrion			
+Cre06.g294200			Mitochondrion	GO:0006281;GO:0006260;GO:0003911	DNA repair;DNA replication;DNA ligase (NAD+) activity	
+Cre06.g248900			Mitochondrion	GO:0005515	protein binding	
+Cre06.g273350						
+Cre06.g278203						
+Cre06.g297082	GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XI	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	cya17
+Cre06.g261750			Chloroplast			
+Cre06.g278111	GMM:34.22;GMM:34.15	transport.cyclic nucleotide or calcium regulated channels;transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
+Cre06.g283900						
+Cre06.g253753			Mitochondrion			
+Cre06.g254150	GMM:3.5;GMM:27.1	minor CHO metabolism.others;RNA.processing		GO:0005515	protein binding	UTP1
+Cre06.g307250						
+Cre06.g257167						
+Cre06.g268050	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA10
+Cre06.g286600	GMM:29.5.11	protein.degradation.ubiquitin				
+Cre06.g260400						FAP287
+Cre06.g262250	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified				AP1M1
+Cre06.g276250	GMM:24.1	biodegradation of xenobiotics.hydroxyacylglutathione hydrolase				
+Cre06.g256050				GO:0005524	ATP binding	
+Cre06.g264100						
+Cre06.g299926			Mitochondrion			
+Cre06.g260550	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG1
+Cre06.g276371	GMM:24.1	biodegradation of xenobiotics.hydroxyacylglutathione hydrolase				
+Cre06.g281450			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR22
+Cre06.g278256	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	protein binding	RPN8
+Cre06.g288050				GO:0008324;GO:0006812	cation transmembrane transporter activity;cation transport	MGTE
+Cre06.g290250						
+Cre06.g278186			Mitochondrion	GO:0007165;GO:0005515	signal transduction;protein binding	
+Cre06.g306650	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation	Mitochondrion	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	
+Cre06.g251300	GMM:27.1	RNA.processing		GO:0006396	RNA processing	SMP6B
+Cre06.g291650				GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX11
+Cre06.g308400	GMM:33.99;GMM:29.4;GMM:26.13	development.unspecified;protein.postranslational modification;misc.acid and other phosphatases				PTN1
+Cre06.g255700	GMM:31.7.1	cell.development.zygote	Mitochondrion			
+Cre06.g287050						
+Cre06.g280800						
+Cre06.g289900	GMM:27.1.2	RNA.processing.RNA helicase				HEN2
+Cre06.g263950	GMM:34.21;GMM:34.1	transport.calcium;transport.p- and v-ATPases		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	
+Cre06.g282500	GMM:29.2.1.2.2.523;GMM:29.2.1.2.2.0523	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L23A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L23A		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL23A
+Cre06.g281200				GO:0005515	protein binding	
+Cre06.g285800	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family	Mitochondrion			
+Cre06.g275550	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family	Chloroplast			RWP2
+Cre06.g304000	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0005524	ATP binding	
+Cre06.g268550	GMM:3.5;GMM:10.2.1;GMM:10.2	minor CHO metabolism.others;cell wall.cellulose synthesis.cellulose synthase;cell wall.cellulose synthesis	Secretory pathway			CSL1
+Cre06.g279600						
+Cre06.g253850				GO:0032775;GO:0009007;GO:0003677	DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding	
+Cre06.g278165	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			mmp28
+Cre06.g278142	GMM:18.7;GMM:15.2	"Co-factor and vitamine metabolism.iron-sulphur clusters;metal handling.binding, chelation and storage"	Chloroplast	GO:0051539;GO:0051536;GO:0009451;GO:0003824	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;RNA modification;catalytic activity"	
+Cre06.g296600	GMM:18.3.2	Co-factor and vitamine metabolism.riboflavin.riboflavin synthase		GO:0009231;GO:0004746	riboflavin biosynthetic process;riboflavin synthase activity	RFS1
+Cre06.g254232			Secretory pathway			
+Cre06.g269400						
+Cre06.g302350			Mitochondrion			
+Cre06.g258950			Secretory pathway			
+Cre06.g270600			Mitochondrion			
+Cre06.g289400	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Chloroplast	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE11
+Cre06.g311450			Mitochondrion			
+Cre06.g260100	GMM:34.11;GMM:29.4	transport.NDP-sugars at the ER;protein.postranslational modification		GO:0055085	transmembrane transport	
+Cre06.g260950	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols				
+Cre06.g253757			Chloroplast			
+Cre06.g259300	GMM:29.2.4	protein.synthesis.elongation				EFS2
+Cre06.g284550			Chloroplast			
+Cre06.g305750	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
+Cre06.g263000				GO:0005515	protein binding	
+Cre06.g305450			Mitochondrion			
+Cre06.g263900						
+Cre06.g250567						
+Cre06.g296800						
+Cre06.g278163	GMM:13.1.2.3.4	amino acid metabolism.synthesis.glutamate family.arginine.acetylornithine aminotransferase	Chloroplast	GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	ARG9
+Cre06.g289050			Chloroplast			
+Cre06.g280385						
+Cre06.g282950						
+Cre06.g253800			Chloroplast			
+Cre06.g264250						
+Cre06.g251550	GMM:29.5.5	protein.degradation.serine protease		GO:0008233;GO:0006508	peptidase activity;proteolysis	SPP1C
+Cre06.g309684			Secretory pathway			
+Cre06.g265250	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR12
+Cre06.g274400				GO:0008168;GO:0006480	methyltransferase activity;N-terminal protein amino acid methylation	
+Cre06.g310750	GMM:31.4	cell.vesicle transport		GO:0030126;GO:0030117;GO:0016192;GO:0006886;GO:0005198	COPI vesicle coat;membrane coat;vesicle-mediated transport;intracellular protein transport;structural molecule activity	COPG1
+Cre06.g309951						
+Cre06.g249150	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006810;GO:0006468;GO:0005622;GO:0005524;GO:0004672	transport;protein phosphorylation;intracellular;ATP binding;protein kinase activity	MAPKK1
+Cre06.g278156			Secretory pathway			
+Cre06.g271050	GMM:23.2.1.2;GMM:23.2	nucleotide metabolism.degradation.pyrimidine.uridine nucleosidase;nucleotide metabolism.degradation				URN1
+Cre06.g304400	GMM:21.3	redox.heme				SOUL4
+Cre06.g294250			Mitochondrion			PHC49
+Cre06.g274750	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB4
+Cre06.g256200	GMM:27.3.54;GMM:27.3.42	RNA.regulation of transcription.histone acetyltransferases;RNA.regulation of transcription.bromodomain proteins		GO:0008080;GO:0005515	N-acetyltransferase activity;protein binding	HAT3
+Cre06.g278400			Chloroplast			
+Cre06.g306079						
+Cre06.g249050						
+Cre06.g271950	GMM:31.4;GMM:29.3.4.2	cell.vesicle transport;protein.targeting.secretory pathway.golgi		GO:0048193;GO:0016020;GO:0008565;GO:0006886;GO:0005737	Golgi vesicle transport;membrane;protein transporter activity;intracellular protein transport;cytoplasm	GC6
+Cre06.g278115						
+Cre06.g270150	GMM:34.99;GMM:34.9;GMM:34.21	transport.misc;transport.metabolite transporters at the mitochondrial membrane;transport.calcium				MCP13
+Cre06.g305850	GMM:29.5;GMM:13.1.3.4.12	protein.degradation;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm20
+Cre06.g278261				GO:0009058;GO:0003824	biosynthetic process;catalytic activity	
+Cre06.g295350			Chloroplast			
+Cre06.g261000	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0042651;GO:0015979;GO:0009654;GO:0009523	thylakoid membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II	PSBR
+Cre06.g294950	GMM:11.1.6	lipid metabolism.FA synthesis and FA elongation.enoyl ACP reductase	Chloroplast			ENR1
+Cre06.g292183						CAM13
+Cre06.g287000	GMM:33.99;GMM:30.3;GMM:11	development.unspecified;signalling.calcium;lipid metabolism				
+Cre06.g294876						
+Cre06.g260750	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG23
+Cre06.g255250						
+Cre06.g261900						FAP71
+Cre06.g302500						
+Cre06.g265200	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO12
+Cre06.g258550			Mitochondrion			
+Cre06.g278228			Chloroplast			
+Cre06.g278206			Chloroplast			
+Cre06.g284850						
+Cre06.g276750						
+Cre06.g278750	GMM:9.8	mitochondrial electron transport / ATP synthesis.uncoupling protein	Mitochondrion			UCP1
+Cre06.g278119			Secretory pathway			
+Cre06.g278175	GMM:3.5;GMM:27.1	minor CHO metabolism.others;RNA.processing	Chloroplast	GO:0005515	protein binding	
+Cre06.g301050	GMM:30.5;GMM:3.5;GMM:29.4;GMM:29.3.4.99	signalling.G-proteins;minor CHO metabolism.others;protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0006886;GO:0005622;GO:0005525	intracellular protein transport;intracellular;GTP binding	ARL13
+Cre06.g275850	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA3
+Cre06.g284350	GMM:31.3	cell.cycle		GO:0005634	nucleus	CYCD3
+Cre06.g249950	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase		GO:0046488;GO:0016307	phosphatidylinositol metabolic process;phosphatidylinositol phosphate kinase activity	
+Cre06.g296050	GMM:26.7	"misc.oxidases - copper, flavone etc"				FMO6
+Cre06.g287750	GMM:23.1.1.4	nucleotide metabolism.synthesis.pyrimidine.dihydroorotate dehydrogenase		GO:0055114;GO:0016627;GO:0005737	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;cytoplasm"	PYR8
+Cre06.g269050	GMM:30.11	signalling.light	Chloroplast			TIC62
+Cre06.g278194						FAP236
+Cre06.g278087			Chloroplast			
+Cre06.g257183						
+Cre06.g311850						HAD1
+Cre06.g272900				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	AOF3
+Cre06.g260450	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Chloroplast	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	LCI20
+Cre06.g283500						
+Cre06.g294500						
+Cre06.g307075			Chloroplast			
+Cre06.g310850	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre06.g266600	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO11
+Cre06.g271550	GMM:27.3.59	RNA.regulation of transcription.methyl binding domain proteins	Secretory pathway	GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre06.g274900	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO4
+Cre06.g287650	GMM:31.1;GMM:17.5.1.20	cell.organisation;hormone metabolism.ethylene.synthesis-degradation.XBAT32	Secretory pathway			
+Cre06.g296250	GMM:29.1.6	protein.aa activation.lysine-tRNA ligase	Chloroplast	GO:0006418;GO:0005524;GO:0004812;GO:0003676;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleic acid binding;nucleotide binding	SYK1
+Cre06.g275200			Chloroplast			
+Cre06.g278193						
+Cre06.g249600						
+Cre06.g292450				GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS13
+Cre06.g281000			Secretory pathway	GO:0005515	protein binding	
+Cre06.g266350			Secretory pathway	GO:0005515	protein binding	
+Cre06.g253758						
+Cre06.g275600	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family				
+Cre06.g298802			Chloroplast			
+Cre06.g299350						FBB15
+Cre06.g293516			Mitochondrion			DEGO2
+Cre06.g280150	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP9
+Cre06.g270550			Chloroplast			
+Cre06.g288252						
+Cre06.g259350						
+Cre06.g281700	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway			
+Cre06.g304550	GMM:27.1	RNA.processing				PAR1
+Cre06.g259750			Secretory pathway			
+Cre06.g282850			Mitochondrion			
+Cre06.g301951						
+Cre06.g269908						
+Cre06.g279100						DPY30
+Cre06.g305700			Mitochondrion			
+Cre06.g297450			Secretory pathway			
+Cre06.g299050	GMM:26.5	misc.acyl transferases		GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	DGTT3
+Cre06.g272400	GMM:26.13	misc.acid and other phosphatases	Secretory pathway			
+Cre06.g278277			Secretory pathway			
+Cre06.g309450	GMM:29.5	protein.degradation	Chloroplast			
+Cre06.g298326						
+Cre06.g287950	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
+Cre06.g306250			Chloroplast			
+Cre06.g271350	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA8
+Cre06.g248800						
+Cre06.g252000						LZTFL1
+Cre06.g251150	GMM:1.1.99;GMM:1.1.2.1	PS.lightreaction.unspecified;PS.lightreaction.photosystem I.LHC-I	Chloroplast			OHP2
+Cre06.g250902	GMM:13.1.3.4.12	amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase		GO:0046872;GO:0042558;GO:0031419;GO:0009086;GO:0008705;GO:0005622	metal ion binding;pteridine-containing compound metabolic process;cobalamin binding;methionine biosynthetic process;methionine synthase activity;intracellular	METH
+Cre06.g257750			Chloroplast			
+Cre06.g265800	GMM:29.2.1.1.1.2.28	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L28	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL28
+Cre06.g267600	GMM:20.2.5;GMM:16.1.4.5;GMM:16.1.4.4	stress.abiotic.light;secondary metabolism.isoprenoids.carotenoids.lycopene beta cyclase;secondary metabolism.isoprenoids.carotenoids.lycopene epsilon cyclase	Chloroplast	GO:0016705;GO:0016117	"oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;carotenoid biosynthetic process"	LCYE
+Cre06.g296350				GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	ULP1
+Cre06.g278102			Secretory pathway			
+Cre06.g281250	GMM:11.3.7	lipid metabolism.phospholipid synthesis.cyclopropane-fatty-acyl-phospholipid synthase		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	CFA1
+Cre06.g278238						
+Cre06.g273450						
+Cre06.g281300						
+Cre06.g266052			Mitochondrion			
+Cre06.g291050						
+Cre06.g302276						
+Cre06.g309150				GO:0008270	zinc ion binding	ROC56
+Cre06.g285350			Mitochondrion			
+Cre06.g307150	GMM:2.2.2.1.2;GMM:2.2.2.1	major CHO metabolism.degradation.starch.starch cleavage.beta amylase;major CHO metabolism.degradation.starch.starch cleavage	Mitochondrion	GO:0016161;GO:0000272	beta-amylase activity;polysaccharide catabolic process	AMB1
+Cre06.g288800						
+Cre06.g253853			Chloroplast			
+Cre06.g272200			Chloroplast			
+Cre06.g308100	GMM:11.8	"lipid metabolism.exotics (steroids, squalene etc)"				
+Cre06.g279350	GMM:30.11	signalling.light	Mitochondrion			
+Cre06.g289800				GO:0005509	calcium ion binding	CAM12
+Cre06.g306550	GMM:27.1.19	RNA.processing.ribonucleases		GO:0033897;GO:0003723	ribonuclease T2 activity;RNA binding	
+Cre06.g274600						
+Cre06.g270700						
+Cre06.g299850				GO:0005515	protein binding	HLM10
+Cre06.g249650	GMM:27.3	RNA.regulation of transcription				CGL55
+Cre06.g302850						
+Cre06.g303950			Secretory pathway			
+Cre06.g259450			Chloroplast			
+Cre06.g278187	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0008270	zinc ion binding	MOT4
+Cre06.g297850	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Mitochondrion	GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC12
+Cre06.g301300			Chloroplast			
+Cre06.g278151						
+Cre06.g250300	GMM:31.6.1.3.1.2	cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.cytoplasmic dynein 1b subunits		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC16
+Cre06.g278279						
+Cre06.g301450			Mitochondrion			
+Cre06.g278105			Chloroplast			
+Cre06.g263800	GMM:28.1	DNA.synthesis/chromatin structure				
+Cre06.g291250			Mitochondrion			
+Cre06.g299500						
+Cre06.g255100			Chloroplast			
+Cre06.g279550			Chloroplast			
+Cre06.g307500	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Chloroplast			LCIC
+Cre06.g263250						
+Cre06.g278298			Chloroplast			
+Cre06.g258150						
+Cre06.g278850	GMM:28.2	DNA.repair				MND1
+Cre06.g255900			Secretory pathway			
+Cre06.g288550			Secretory pathway			ECP76
+Cre06.g276150						
+Cre06.g302950	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			
+Cre06.g280900	GMM:31.4	cell.vesicle transport		GO:0016021;GO:0006888;GO:0005801;GO:0000139	integral component of membrane;ER to Golgi vesicle-mediated transport;cis-Golgi network;Golgi membrane	VTI2
+Cre06.g286000			Mitochondrion			
+Cre06.g293000	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006269;GO:0003896	"DNA replication, synthesis of RNA primer;DNA primase activity"	PRI2
+Cre06.g307700			Mitochondrion	GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
+Cre06.g261400			Mitochondrion			
+Cre06.g285250	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM6
+Cre06.g260800	GMM:31.1	cell.organisation		GO:0034314;GO:0030041;GO:0015629;GO:0005885	Arp2/3 complex-mediated actin nucleation;actin filament polymerization;actin cytoskeleton;Arp2/3 protein complex	
+Cre06.g310450	GMM:27.2	RNA.transcription		GO:0017025;GO:0008270;GO:0006355;GO:0006352	"TBP-class protein binding;zinc ion binding;regulation of transcription, DNA-templated;DNA-templated transcription, initiation"	
+Cre06.g278169						
+Cre06.g262800	GMM:28.1;GMM:27.3.63	DNA.synthesis/chromatin structure;RNA.regulation of transcription.PHD finger transcription factor		GO:0005634;GO:0005515	nucleus;protein binding	
+Cre06.g303700			Secretory pathway			
+Cre06.g257100			Mitochondrion			
+Cre06.g267050			Mitochondrion	GO:0005515	protein binding	
+Cre06.g265750	GMM:29.5.7	protein.degradation.metalloprotease				
+Cre06.g254200	GMM:26.16	misc.myrosinases-lectin-jacalin	Chloroplast			
+Cre06.g267800	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Secretory pathway			MCP8
+Cre06.g259050	GMM:7.1.1	OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)				
+Cre06.g298150						
+Cre06.g288400	GMM:29.2.1.1.1.1.11	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S11	Mitochondrion	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPS11
+Cre06.g296150			Chloroplast	GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	
+Cre06.g250400	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB28
+Cre06.g309000	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Chloroplast	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NAR1.2
+Cre06.g253679			Chloroplast			
+Cre06.g286500						
+Cre06.g282800	GMM:6.9	gluconeogenesis / glyoxylate cycle.isocitrate lyase				ICL1
+Cre06.g278208	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre06.g266950	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre06.g278125	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005856;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;cytoskeleton;ATP binding;microtubule motor activity	
+Cre06.g263150						
+Cre06.g303536			Mitochondrion			
+Cre06.g278215	GMM:13.2.6.3;GMM:13.2.3.5	amino acid metabolism.degradation.aromatic aa.tryptophan;amino acid metabolism.degradation.aspartate family.lysine		GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre06.g284450	GMM:29.3.99;GMM:26.13	protein.targeting.unknown;misc.acid and other phosphatases				
+Cre06.g255150						
+Cre06.g266800	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0005488	binding	
+Cre06.g255600			Chloroplast			EZY1A
+Cre06.g285926						
+Cre06.g278113						
+Cre06.g278266			Mitochondrion			
+Cre06.g278214			Chloroplast			
+Cre06.g301802						
+Cre06.g310200			Chloroplast			
+Cre06.g253903						
+Cre06.g248950	GMM:29.5.11.5;GMM:29.5.11	protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin	Secretory pathway	GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
+Cre06.g252600			Mitochondrion			
+Cre06.g278166	GMM:2.1	major CHO metabolism.synthesis				PRL4
+Cre06.g309850			Mitochondrion			
+Cre06.g262000			Mitochondrion			SNR5
+Cre06.g307800	GMM:29.6.3.2	protein.folding.immunophilins (IMM).cyclophilins	Secretory pathway			CYN49
+Cre06.g252913			Secretory pathway			
+Cre06.g297950						
+Cre06.g246958						
+Cre06.g274994	GMM:31.4	cell.vesicle transport				
+Cre06.g268450	GMM:33.99	development.unspecified		GO:0005515	protein binding	
+Cre06.g307600	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006334;GO:0005634	nucleosome assembly;nucleus	
+Cre06.g252200	GMM:30.5;GMM:29.3.3	signalling.G-proteins;protein.targeting.chloroplast		GO:0005525	GTP binding	TOC34
+Cre06.g278254	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g297904	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)	Mitochondrion	GO:0033699;GO:0006281;GO:0003677	DNA 5'-adenosine monophosphate hydrolase activity;DNA repair;DNA binding	
+Cre06.g252100			Chloroplast			
+Cre06.g278259						
+Cre06.g269150			Chloroplast			
+Cre06.g294050						
+Cre06.g305950	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB32
+Cre06.g265350	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA12
+Cre06.g278268			Secretory pathway			
+Cre06.g308950						
+Cre06.g298550	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast	GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO7
+Cre06.g289500			Chloroplast			
+Cre06.g278122			Secretory pathway	GO:0008289	lipid binding	
+Cre06.g264200	GMM:8.1.7	TCA / organic transformation.TCA.succinate dehydrogenase	Mitochondrion	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	SDH2
+Cre06.g292800	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC17
+Cre06.g260000			Secretory pathway			
+Cre06.g286800				GO:0003729;GO:0003723	mRNA binding;RNA binding	HBP1
+Cre06.g286900			Mitochondrion			
+Cre06.g278173						OPR59
+Cre06.g310545			Mitochondrion			
+Cre06.g311750	GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XI	Mitochondrion	GO:0005515	protein binding	
+Cre06.g285451						
+Cre06.g262050	GMM:3.5	minor CHO metabolism.others	Secretory pathway	GO:0016853;GO:0005975	isomerase activity;carbohydrate metabolic process	AEP1
+Cre06.g295250	GMM:26.13	misc.acid and other phosphatases	Chloroplast			
+Cre06.g276050	GMM:3.5	minor CHO metabolism.others	Secretory pathway			
+Cre06.g267950	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR10
+Cre06.g293700	GMM:29.2.1.1.1.2.12	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L12	Mitochondrion	GO:0006412;GO:0003735	translation;structural constituent of ribosome	MRPL7
+Cre06.g296450	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast			
+Cre06.g300700			Chloroplast			
+Cre06.g301850						
+Cre06.g292900	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			
+Cre06.g292216			Chloroplast			
+Cre06.g281100	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MUT9
+Cre06.g304300	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	POA6
+Cre06.g278103			Secretory pathway	GO:0055114;GO:0016715;GO:0005507;GO:0004497	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;copper ion binding;monooxygenase activity"	
+Cre06.g281800			Chloroplast			
+Cre06.g303050			Mitochondrion			NIT3
+Cre06.g277100				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre06.g275950						FAP395
+Cre06.g305516			Mitochondrion			
+Cre06.g272550	GMM:27.1.2;GMM:27.1.19	RNA.processing.RNA helicase;RNA.processing.ribonucleases				
+Cre06.g258700	GMM:8;GMM:6;GMM:13.2.4.4;GMM:11.1.1.2.4	TCA / organic transformation;gluconeogenesis / glyoxylate cycle;amino acid metabolism.degradation.branched chain group.leucine;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.biotin carboxylase		GO:0003824	catalytic activity	PYC1
+Cre06.g257550	GMM:9.8;GMM:34.9	mitochondrial electron transport / ATP synthesis.uncoupling protein;transport.metabolite transporters at the mitochondrial membrane				UCP2
+Cre06.g273000	GMM:29.4	protein.postranslational modification				
+Cre06.g291150	GMM:27.1.2;GMM:27.1;GMM:17.5.3	RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated	Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL29
+Cre06.g280227			Secretory pathway			
+Cre06.g299476			Chloroplast			
+Cre06.g278135	GMM:29.2.1.2.2.21	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L21	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL21
+Cre06.g306350	GMM:34.9;GMM:1.1.5.2	transport.metabolite transporters at the mitochondrial membrane;PS.lightreaction.other electron carrier (ox/red).ferredoxin	Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX3
+Cre06.g303251						
+Cre06.g311100			Mitochondrion			
+Cre06.g278182			Chloroplast			
+Cre06.g253756			Chloroplast			
+Cre06.g287400	GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g297250			Mitochondrion			
+Cre06.g278650						
+Cre06.g272100				GO:0043399;GO:0019988	tRNA A64-2'-O-ribosylphosphate transferase activity;charged-tRNA amino acid modification	
+Cre06.g264350	GMM:29.2.1.1.4.2;GMM:29.2.1.1.3.2.13;GMM:29.2.1.1.1.2.13	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L13;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L13	Chloroplast	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	PRPL13
+Cre06.g278231	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g278108			Mitochondrion	GO:0008080	N-acetyltransferase activity	
+Cre06.g279000	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	PBA1
+Cre06.g270000						
+Cre06.g271650						
+Cre06.g295100			Secretory pathway			
+Cre06.g250500	GMM:3.5	minor CHO metabolism.others	Chloroplast	GO:0052855	ADP-dependent NAD(P)H-hydrate dehydratase activity	
+Cre06.g288100	GMM:27.1.5;GMM:25	RNA.processing.base modifications;C1-metabolism		GO:0008168;GO:0006139	methyltransferase activity;nucleobase-containing compound metabolic process	
+Cre06.g296900						
+Cre06.g257850	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0003824	catalytic activity	
+Cre06.g278276			Secretory pathway			
+Cre06.g254450	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX		GO:0005515	protein binding	
+Cre06.g276600	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR2
+Cre06.g293362						
+Cre06.g262750			Mitochondrion			
+Cre06.g278132			Mitochondrion			
+Cre06.g280000						
+Cre06.g300450	GMM:29.5	protein.degradation	Chloroplast	GO:0005524	ATP binding	
+Cre06.g305250	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion			
+Cre06.g290200	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG39
+Cre06.g278241						
+Cre06.g283634				GO:0006355	"regulation of transcription, DNA-templated"	
+Cre06.g274101	GMM:28.1.3.2.3	DNA.synthesis/chromatin structure.histone.core.H3	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR6
+Cre06.g272475						
+Cre06.g290500	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
+Cre06.g295650						
+Cre06.g300966			Secretory pathway			
+Cre06.g270350	GMM:2.2.2.1.2;GMM:2.2.2.1	major CHO metabolism.degradation.starch.starch cleavage.beta amylase;major CHO metabolism.degradation.starch.starch cleavage	Mitochondrion	GO:0016161;GO:0000272	beta-amylase activity;polysaccharide catabolic process	AMB2
+Cre06.g292700	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g264900	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB13
+Cre06.g278191						
+Cre06.g278289	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre06.g306850	GMM:29.2.3;GMM:28.1	protein.synthesis.initiation;DNA.synthesis/chromatin structure		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL31
+Cre06.g283300	GMM:31.1	cell.organisation				
+Cre06.g303483			Mitochondrion			
+Cre06.g291500	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RWP6
+Cre06.g268925						
+Cre06.g280300	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	
+Cre06.g271850	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre06.g304850						
+Cre06.g261200				GO:0055114;GO:0016491;GO:0006633;GO:0005506	oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding	ERG5
+Cre06.g287350			Chloroplast	GO:0003677	DNA binding	
+Cre06.g278224	GMM:29.2.1.99.2.16	protein.synthesis.ribosomal protein.unknown.large subunit.L16	Mitochondrion	GO:0019843;GO:0006412;GO:0005840;GO:0003735	rRNA binding;translation;ribosome;structural constituent of ribosome	MRPL16
+Cre06.g280475	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
+Cre06.g276400			Mitochondrion			
+Cre06.g290950	GMM:29.2.1.2.1.5	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S5		GO:0006412	translation	RPS5
+Cre06.g253851			Secretory pathway			
+Cre06.g265900			Secretory pathway			
+Cre06.g262450	GMM:18;GMM:16.1.3	Co-factor and vitamine metabolism;secondary metabolism.isoprenoids.tocopherol biosynthesis	Secretory pathway			VTE7
+Cre06.g294150			Mitochondrion			
+Cre06.g300100	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway			PIGL
+Cre06.g266150	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g250950	GMM:27.1.1	RNA.processing.splicing		GO:0046872;GO:0005634;GO:0003723	metal ion binding;nucleus;RNA binding	
+Cre06.g270850	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
+Cre06.g282350						
+Cre06.g278221	GMM:3.2.3;GMM:3.2.1	minor CHO metabolism.trehalose.potential TPS/TPP;minor CHO metabolism.trehalose.TPS	Mitochondrion	GO:0005992;GO:0003824	trehalose biosynthetic process;catalytic activity	TPS1
+Cre06.g260350	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ6
+Cre06.g255500						
+Cre06.g253200	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PKY1
+Cre06.g256900			Chloroplast			SND1C
+Cre06.g286100			Secretory pathway			
+Cre06.g252750						FUS1
+Cre06.g277000	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway	GO:0008270	zinc ion binding	
+Cre06.g262550			Mitochondrion			
+Cre06.g253404						Pr46b
+Cre06.g287850			Mitochondrion			
+Cre06.g289150	GMM:34.12	transport.metal	Mitochondrion	GO:0055085;GO:0016021;GO:0008324;GO:0006812	transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport	MTP5
+Cre06.g303850			Mitochondrion			
+Cre06.g259150	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0005525	GTP binding	EFG8
+Cre06.g251000			Secretory pathway			
+Cre06.g272350	GMM:26.13	misc.acid and other phosphatases				
+Cre06.g278200				GO:0005515	protein binding	ROC66
+Cre06.g304950						
+Cre06.g302200	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion	GO:0005509	calcium ion binding	EFH3
+Cre06.g308200			Secretory pathway			
+Cre06.g268976	GMM:29.4	protein.postranslational modification				
+Cre06.g278251	GMM:28.2;GMM:20.2	DNA.repair;stress.abiotic				
+Cre06.g278161	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			mmp26
+Cre06.g254224						
+Cre06.g278210	GMM:4.2.2;GMM:4.1.2	glycolysis.plastid branch.phosphoglucomutase (PGM);glycolysis.cytosolic branch.phosphoglucomutase (PGM)	Chloroplast	GO:0071704;GO:0016868;GO:0005975	"organic substance metabolic process;intramolecular transferase activity, phosphotransferases;carbohydrate metabolic process"	GPM1
+Cre06.g253600			Chloroplast			
+Cre06.g262900	GMM:4.2.4;GMM:4.1.4	glycolysis.plastid branch.phosphofructokinase (PFK);glycolysis.cytosolic branch.phosphofructokinase (PFK)	Chloroplast	GO:0006096;GO:0003872	glycolytic process;6-phosphofructokinase activity	PFK1
+Cre06.g258363				GO:0005515	protein binding	
+Cre06.g311400	GMM:28.1	DNA.synthesis/chromatin structure		GO:0004518;GO:0003677	nuclease activity;DNA binding	
+Cre06.g257000	GMM:14	S-assimilation	Mitochondrion	GO:0015419;GO:0008272;GO:0006810;GO:0005215	sulfate transmembrane-transporting ATPase activity;sulfate transport;transport;transporter activity	SULP3
+Cre06.g270800						
+Cre06.g267150	GMM:31.2	cell.division				
+Cre06.g257250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0035058;GO:0034464	nonmotile primary cilium assembly;BBSome	BBS2
+Cre06.g278180	GMM:28.1.1	DNA.synthesis/chromatin structure.retrotransposon/transposase	Mitochondrion			
+Cre06.g279250						PYM1
+Cre06.g252401			Secretory pathway			
+Cre06.g259500	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG2
+Cre06.g286300			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	COQ5B
+Cre06.g263750						
+Cre06.g309300	GMM:27.1	RNA.processing	Mitochondrion			
+Cre06.g282651			Chloroplast	GO:0045454	cell redox homeostasis	TRX16
+Cre06.g308000						FAP331
+Cre06.g266450	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g267700	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Mitochondrion	GO:0008233;GO:0006508	peptidase activity;proteolysis	SPP1B
+Cre06.g273413	GMM:29.2.2.3.3;GMM:28.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases;DNA.synthesis/chromatin structure	Chloroplast	GO:0008168	methyltransferase activity	
+Cre06.g264550			Chloroplast			CGL81
+Cre06.g278167						
+Cre06.g303600						
+Cre06.g280750						
+Cre06.g306028						
+Cre06.g309100	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Mitochondrion	GO:0005524	ATP binding	CPN60C
+Cre06.g258051			Chloroplast			NCL2
+Cre06.g279850	GMM:29.5	protein.degradation	Chloroplast			
+Cre06.g256650			Mitochondrion			
+Cre06.g310100	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g282150	GMM:18.1.1;GMM:18.1;GMM:18	Co-factor and vitamine metabolism.molybdenum cofactor.gephyrin;Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism				CNX1G
+Cre06.g279900	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				VFL3
+Cre06.g251850						
+Cre06.g254917	GMM:31.6.1.9	cell.motility.eukaryotes.flagellar adhesion and gamete fusion	Secretory pathway			SAD1:3frag
+Cre06.g299100						
+Cre06.g261050			Chloroplast			
+Cre06.g278147			Chloroplast			
+Cre06.g288650	GMM:11.2.4	lipid metabolism.FA desaturation.omega 6 desaturase	Chloroplast	GO:0006629	lipid metabolic process	
+Cre06.g278281						
+Cre06.g252700	GMM:35.1.41	not assigned.no ontology.hydroxyproline rich proteins				
+Cre06.g274500	GMM:27.1.3.17;GMM:27.1	RNA.processing.3' end processing.PabN;RNA.processing		GO:0003676	nucleic acid binding	
+Cre06.g283950	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM4
+Cre06.g273750	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	SABC
+Cre06.g262200						
+Cre06.g278092						
+Cre06.g249500	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases	Mitochondrion			DMC7
+Cre06.g302650	GMM:27.3.67;GMM:27.1	RNA.regulation of transcription.putative transcription regulator;RNA.processing		GO:0032259;GO:0008168;GO:0001510	methylation;methyltransferase activity;RNA methylation	
+Cre06.g281600	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Mitochondrion			LCI23
+Cre06.g281900	GMM:34.12	transport.metal	Secretory pathway			ZIP7
+Cre06.g267250	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification		GO:0008138;GO:0006470;GO:0005856	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation;cytoskeleton	MKP2
+Cre06.g278179						
+Cre06.g276900	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB1
+Cre06.g260600	GMM:30.3;GMM:29.4	signalling.calcium;protein.postranslational modification				
+Cre06.g278129			Mitochondrion			
+Cre06.g257400			Chloroplast			
+Cre06.g258400						
+Cre06.g253789			Secretory pathway			
+Cre06.g304050	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PKC1
+Cre06.g254052			Chloroplast			
+Cre06.g257300						
+Cre06.g297049						
+Cre06.g283100						FAP85
+Cre06.g275700	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO3
+Cre06.g277300	GMM:29.5.11.4.2;GMM:29.4.1.59	protein.degradation.ubiquitin.E3.RING;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX	Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre06.g266650	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR11
+Cre06.g279700			Secretory pathway			
+Cre06.g279500			Chloroplast			CPL6
+Cre06.g269250			Chloroplast			
+Cre06.g265050	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO13
+Cre06.g277500						
+Cre06.g274000	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR7
+Cre06.g256000						
+Cre06.g268600	GMM:1.1.1.4	PS.lightreaction.photosystem II.LHC biogenesis		GO:0006355;GO:0003677;GO:0003676	"regulation of transcription, DNA-templated;DNA binding;nucleic acid binding"	NAB1
+Cre06.g272150			Secretory pathway			
+Cre06.g292282						
+Cre06.g259900	GMM:1.1.4.4;GMM:1.1.4	PS.lightreaction.ATP synthase.gamma chain;PS.lightreaction.ATP synthase	Chloroplast	GO:0046961;GO:0046933;GO:0045261;GO:0015986	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;proton-transporting ATP synthase complex, catalytic core F(1);ATP synthesis coupled proton transport"	ATPC
+Cre06.g251750						
+Cre06.g278183	GMM:21.4	redox.glutaredoxins		GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	
+Cre06.g310550						HY5
+Cre06.g260900			Mitochondrion			
+Cre06.g293300	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g287500						
+Cre06.g306035						
+Cre06.g299450						
+Cre06.g300326			Mitochondrion			
+Cre06.g288600						
+Cre06.g306700						
+Cre06.g263650			Chloroplast			
+Cre06.g307450	GMM:27.1.1;GMM:27.1	RNA.processing.splicing;RNA.processing		GO:0006396;GO:0005515;GO:0003723	RNA processing;protein binding;RNA binding	SPL1
+Cre06.g281500			Chloroplast			OPR25
+Cre06.g278287			Secretory pathway			
+Cre06.g278091			Secretory pathway			
+Cre06.g308900	GMM:29.3.2	protein.targeting.mitochondria		GO:0019867	outer membrane	TOB55
+Cre06.g285550			Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g284700	GMM:13.1.1.3.1	amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine aminotransferase	Chloroplast	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	AAT2
+Cre06.g258300	GMM:7.1.1	OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)				
+Cre06.g278126						
+Cre06.g273900	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA7
+Cre06.g248850	GMM:29.4.1;GMM:29.4;GMM:27.1.1	protein.postranslational modification.kinase;protein.postranslational modification;RNA.processing.splicing		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g287100	GMM:3.8	minor CHO metabolism.galactose				CAM11
+Cre06.g250250	GMM:34.1	transport.p- and v-ATPases		GO:0033180;GO:0015991;GO:0015078	"proton-transporting V-type ATPase, V1 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVC
+Cre06.g297516						
+Cre06.g274700	GMM:29.5.3	protein.degradation.cysteine protease	Chloroplast			OTU4
+Cre06.g270100	GMM:2.1.2.3	major CHO metabolism.synthesis.starch.starch branching	Chloroplast	GO:0043169;GO:0005975;GO:0004553;GO:0003824	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	SBE2
+Cre06.g270750				GO:0006950;GO:0005516	response to stress;calmodulin binding	
+Cre06.g302050	GMM:3.6	minor CHO metabolism.callose		GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	GSL2
+Cre06.g298880						
+Cre06.g303150	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK4
+Cre06.g311250			Mitochondrion			
+Cre06.g250976			Mitochondrion			
+Cre06.g293582	GMM:29.1.4	protein.aa activation.leucine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	
+Cre06.g259550	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom	Secretory pathway	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre06.g262977			Mitochondrion			
+Cre06.g284376						
+Cre06.g250750	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
+Cre06.g290100	GMM:31.4	cell.vesicle transport		GO:0048193;GO:0016020;GO:0005515	Golgi vesicle transport;membrane;protein binding	SYP6
+Cre06.g278164	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			mmp27
+Cre06.g278239	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	SRS7
+Cre06.g261700	GMM:29.2.1.2.2.80	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.P0		GO:0042254;GO:0005622	ribosome biogenesis;intracellular	
+Cre06.g262400				GO:0006629	lipid metabolic process	
+Cre06.g278137			Secretory pathway			
+Cre06.g291850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
+Cre06.g289950	GMM:27.1	RNA.processing		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL28
+Cre06.g307900						FAP141
+Cre06.g268800	GMM:31.6.1.3.2.1	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A		GO:0005515	protein binding	IFT139
+Cre06.g282600	GMM:29.2.3;GMM:29.2.2.3.5;GMM:29.2.2.2.1;GMM:28.1	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;protein.synthesis.ribosome biogenesis.assembly factors.DExD-box helicases;DNA.synthesis/chromatin structure		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL27
+Cre06.g278110			Secretory pathway			
+Cre06.g302600				GO:0006886	intracellular protein transport	
+Cre06.g251683	GMM:34.7	transport.phosphate	Secretory pathway			PTC1
+Cre06.g306450						
+Cre06.g279650			Secretory pathway			OPR24
+Cre06.g285750	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family				
+Cre06.g307400			Chloroplast			CCR5
+Cre06.g279216						
+Cre06.g269550						COQ9
+Cre06.g299150	GMM:1.5	PS.carbon concentrating mechanism	Mitochondrion			PHC26
+Cre06.g284400	GMM:31.1	cell.organisation				
+Cre06.g308650						
+Cre06.g286550			Mitochondrion			
+Cre06.g256400			Secretory pathway			
+Cre06.g269700						
+Cre06.g253582			Chloroplast			
+Cre06.g305150						
+Cre06.g254275	GMM:26.16	misc.myrosinases-lectin-jacalin				
+Cre06.g268228						
+Cre06.g297550			Mitochondrion			
+Cre06.g296550	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO3
+Cre06.g310150						
+Cre06.g278159	GMM:33.99;GMM:27.3.7	development.unspecified;RNA.regulation of transcription.C2C2(Zn) Constans-like zinc finger family (CO-like)	Secretory pathway	GO:0008270;GO:0005622;GO:0005515	zinc ion binding;intracellular;protein binding	
+Cre06.g276350	GMM:24.1	biodegradation of xenobiotics.hydroxyacylglutathione hydrolase		GO:0019243;GO:0004416	methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione;hydroxyacylglutathione hydrolase activity	
+Cre06.g288950						
+Cre06.g293800	GMM:14.1	S-assimilation.APS	Chloroplast	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS16
+Cre06.g267900	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
+Cre06.g299750						
+Cre06.g298750	GMM:34.3	transport.amino acids				AOT4
+Cre06.g278284						
+Cre06.g273650	GMM:33.99;GMM:30.3	development.unspecified;signalling.calcium				
+Cre06.g295200	GMM:30.11	signalling.light				CPH1
+Cre06.g278230	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g294100						
+Cre06.g294700			Chloroplast	GO:0005515	protein binding	
+Cre06.g278207	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre06.g278227			Mitochondrion			
+Cre06.g256350			Secretory pathway			
+Cre06.g289426						CSB29
+Cre06.g278282						
+Cre06.g282000	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase	Chloroplast			STA3
+Cre06.g249850						
+Cre06.g282251						
+Cre06.g300933						
+Cre06.g286400						
+Cre06.g300350	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				
+Cre06.g261600			Chloroplast			
+Cre06.g289100			Chloroplast			
+Cre06.g270400						
+Cre06.g256800			Chloroplast			SND1A
+Cre06.g301600	GMM:26.3	"misc.gluco-, galacto- and mannosidases"	Secretory pathway	GO:0016020;GO:0005509;GO:0004571	"membrane;calcium ion binding;mannosyl-oligosaccharide 1,2-alpha-mannosidase activity"	MAN2
+Cre06.g260250	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Mitochondrion	GO:0016021	integral component of membrane	CEM1
+Cre06.g291450						
+Cre06.g278269	GMM:33.99	development.unspecified	Secretory pathway			
+Cre06.g302700	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	protein binding	
+Cre06.g306000	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX3
+Cre06.g272650	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA8
+Cre06.g252550	GMM:8.1.1.2	TCA / organic transformation.TCA.pyruvate DH.E2	Mitochondrion	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	DLA3
+Cre06.g278252	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX18
+Cre06.g264050						
+Cre06.g290850						
+Cre06.g297200						FAP108
+Cre06.g262100	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0055114;GO:0045454;GO:0016491	oxidation-reduction process;cell redox homeostasis;oxidoreductase activity	GSR1
+Cre06.g286650	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases	Chloroplast			DMC4
+Cre06.g281150						
+Cre06.g278120			Mitochondrion			
+Cre06.g298225			Secretory pathway			
+Cre06.g278300	GMM:34.99;GMM:34.1	transport.misc;transport.p- and v-ATPases		GO:0016020	membrane	
+Cre06.g278700			Chloroplast			
+Cre06.g285001						
+Cre06.g291950	GMM:34.14	transport.unspecified cations	Chloroplast	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	MRS4
+Cre06.g275400	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				
+Cre06.g249350	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases	Chloroplast			DMC3
+Cre06.g273600	GMM:29.5.11;GMM:29.2.1.2.1.27	protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27		GO:0006412;GO:0005840;GO:0005515;GO:0003735	translation;ribosome;protein binding;structural constituent of ribosome	RPS27A
+Cre06.g263550			Chloroplast			LCI7
+Cre06.g278295						
+Cre06.g289650			Mitochondrion			
+Cre06.g291100			Secretory pathway			
+Cre06.g294301						
+Cre06.g301750						
+Cre06.g253901			Chloroplast			
+Cre06.g264650	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR14
+Cre06.g266100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g252850						
+Cre06.g288850						
+Cre06.g311500			Secretory pathway			
+Cre06.g258900						
+Cre06.g283826						
+Cre06.g273050	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast			CGLD10
+Cre06.g299650	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			CLPR6
+Cre06.g278171						CGL132
+Cre06.g298500						
+Cre06.g296700	GMM:5;GMM:1.1.7.1	fermentation;PS.lightreaction.hydrogenase.FeFe-hydrogenase	Chloroplast			HYDG1
+Cre06.g284726			Chloroplast			
+Cre06.g278226	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
+Cre06.g276759			Mitochondrion			
+Cre06.g287176	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm	Mitochondrion			CPLD67
+Cre06.g300144						
+Cre06.g301325			Mitochondrion			
+Cre06.g278202	GMM:3.4.5;GMM:21.2.1.3	minor CHO metabolism.myo-inositol.inositol phosphatase;redox.ascorbate and glutathione.ascorbate.L-galactose-1-phosphate phosphatase		GO:0046854	phosphatidylinositol phosphorylation	
+Cre06.g298050						
+Cre06.g304750	GMM:30.5;GMM:3.5;GMM:27.3.99	signalling.G-proteins;minor CHO metabolism.others;RNA.regulation of transcription.unclassified		GO:0005096	GTPase activator activity	
+Cre06.g253051			Chloroplast	GO:0016021	integral component of membrane	MTA3A
+Cre06.g278296						
+Cre06.g303400	GMM:31.6.1.11;GMM:31.6.1.10	cell.motility.eukaryotes.other;cell.motility.eukaryotes.flagellar associated proteins				ADF3
+Cre06.g257950	GMM:13.1.1.2.1	amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase	Secretory pathway	GO:0030170;GO:0009058;GO:0008483;GO:0006520	pyridoxal phosphate binding;biosynthetic process;transaminase activity;cellular amino acid metabolic process	AST4
+Cre06.g300500				GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre06.g278248			Mitochondrion			
+Cre06.g296924			Chloroplast			
+Cre06.g264400						
+Cre06.g304700						
+Cre06.g283200	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	
+Cre06.g278235						
+Cre06.g306750						FAP290
+Cre06.g249400			Mitochondrion			
+Cre06.g300001			Secretory pathway			
+Cre06.g277150			Chloroplast			
+Cre06.g264950	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA13
+Cre06.g263400	GMM:29.2.4	protein.synthesis.elongation				
+Cre06.g271200	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate	Chloroplast	GO:0055114;GO:0045454;GO:0016491	oxidation-reduction process;cell redox homeostasis;oxidoreductase activity	PNO1
+Cre06.g250850	GMM:28.2	DNA.repair		GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	MSH1
+Cre06.g289600						
+Cre06.g271400	GMM:3.99;GMM:1.2.1	minor CHO metabolism.misc;PS.photorespiration.phosphoglycolate phosphatase	Mitochondrion			PGP3
+Cre06.g278188	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I		GO:0008137;GO:0005739;GO:0003954	NADH dehydrogenase (ubiquinone) activity;mitochondrion;NADH dehydrogenase activity	NUOB18
+Cre06.g272050	GMM:4.1.12	glycolysis.cytosolic branch.phosphoglycerate mutase		GO:0046872;GO:0030145;GO:0006007;GO:0005737;GO:0004619;GO:0003824	metal ion binding;manganese ion binding;glucose catabolic process;cytoplasm;phosphoglycerate mutase activity;catalytic activity	PGM1
+Cre06.g302389						
+Cre06.g273250			Chloroplast	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	
+Cre06.g284250	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM8
+Cre06.g281766			Mitochondrion			
+Cre06.g278185	GMM:3.5;GMM:10.1.4	minor CHO metabolism.others;cell wall.precursor synthesis.UGD		GO:0055114;GO:0051287;GO:0016616;GO:0003979	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;UDP-glucose 6-dehydrogenase activity"	UGD2
+Cre06.g267350			Mitochondrion			
+Cre06.g297650	GMM:29.4	protein.postranslational modification		GO:0003950	NAD+ ADP-ribosyltransferase activity	
+Cre06.g274300	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO5
+Cre06.g269801	GMM:35.1.1	not assigned.no ontology.ABC1 family protein	Chloroplast			
+Cre06.g284100	GMM:34.5;GMM:1.5.3	transport.ammonium;PS.carbon concentrating mechanism.algal		GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	RHP1
+Cre06.g311650			Mitochondrion	GO:0016021;GO:0006813;GO:0005242	integral component of membrane;potassium ion transport;inward rectifier potassium channel activity	IRK1
+Cre06.g278291						
+Cre06.g269350				GO:0006355;GO:0005634;GO:0003700;GO:0003677	"regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding;DNA binding"	
+Cre06.g255650			Chloroplast			EZY1B
+Cre06.g278264			Chloroplast			
+Cre06.g295550						
+Cre06.g305251	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0005515	protein binding	
+Cre06.g252871	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor	Mitochondrion			MTA5
+Cre06.g309750						
+Cre06.g275500	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0006355;GO:0003700	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre06.g296983	GMM:29.5.11.2	protein.degradation.ubiquitin.E1		GO:0008641	small protein activating enzyme activity	
+Cre06.g298911			Secretory pathway			
+Cre06.g268700						
+Cre06.g266276			Mitochondrion			
+Cre06.g258226			Secretory pathway	GO:0009341;GO:0005975;GO:0004565	beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity	
+Cre06.g289033						
+Cre06.g285401			Chloroplast	GO:0003677	DNA binding	FAP355
+Cre06.g284600			Chloroplast			RBD2
+Cre06.g289850	GMM:2.1.2.3	major CHO metabolism.synthesis.starch.starch branching	Mitochondrion	GO:0043169;GO:0005975;GO:0004553;GO:0003824	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	SBE1
+Cre06.g277550	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Secretory pathway	GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	
+Cre06.g257476						
+Cre06.g309500			Chloroplast			OPR28
+Cre06.g258450						
+Cre06.g254240						
+Cre06.g308533	GMM:29.2.1.1.4.2	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit	Chloroplast			PSRP6
+Cre06.g278089	GMM:26.17	misc.dynamin				
+Cre06.g288000						
+Cre06.g279450			Chloroplast			
+Cre06.g273300	GMM:29.1.3	protein.aa activation.threonine-tRNA ligase		GO:0043039;GO:0016876;GO:0006418;GO:0005524;GO:0004812;GO:0000166	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"	TST1
+Cre06.g275000	GMM:33.99	development.unspecified	Secretory pathway			
+Cre06.g305600				GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH9
+Cre06.g278280						
+Cre06.g271150	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP74
+Cre06.g275300						
+Cre06.g278204			Secretory pathway			
+Cre06.g271700	GMM:29.5.7	protein.degradation.metalloprotease				
+Cre06.g307012						
+Cre06.g278212						CGL46
+Cre06.g310601						
+Cre06.g280050	GMM:28.99;GMM:27.1.19	DNA.unspecified;RNA.processing.ribonucleases		GO:0004527;GO:0003676	exonuclease activity;nucleic acid binding	XRN1
+Cre06.g290400	GMM:27.3.55	RNA.regulation of transcription.HDA	Chloroplast			HDA5
+Cre06.g286200			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre06.g270650	GMM:29.2.1.1.2.51	protein.synthesis.ribosomal protein.prokaryotic.mitochondrion.L51/S25/CI-B8				MRPL43
+Cre06.g278600						
+Cre06.g268150	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CNK3
+Cre06.g279976	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway			
+Cre06.g306601	GMM:13.1.6.5.1	amino acid metabolism.synthesis.aromatic aa.tryptophan.anthranilate synthase	Chloroplast	GO:0016833;GO:0009058	oxo-acid-lyase activity;biosynthetic process	ANS1
+Cre06.g272800	GMM:29.2.1.2.1.8	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S8		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS8
+Cre06.g251250	GMM:17.4.2	hormone metabolism.cytokinin.signal transduction	Mitochondrion	GO:0007165;GO:0000160;GO:0000155	signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	HKR3
+Cre06.g302450						
+Cre06.g280850	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	PBG1
+Cre06.g254600			Mitochondrion			
+Cre06.g261123				GO:0005509	calcium ion binding	
+Cre06.g285850						
+Cre06.g307300						ANT2
+Cre06.g261800	GMM:13.1.6.3.1	amino acid metabolism.synthesis.aromatic aa.phenylalanine.arogenate dehydratase / prephenate dehydratase	Chloroplast	GO:0009094;GO:0004664	L-phenylalanine biosynthetic process;prephenate dehydratase activity	PRD1
+Cre06.g288750	GMM:27.4	RNA.RNA binding		GO:0006457;GO:0003755;GO:0003676	protein folding;peptidyl-prolyl cis-trans isomerase activity;nucleic acid binding	CBP20
+Cre06.g294776			Chloroplast			
+Cre06.g291600	GMM:11.3.2;GMM:11.3	lipid metabolism.phospholipid synthesis.choline kinase;lipid metabolism.phospholipid synthesis				ETK1
+Cre06.g278141						
+Cre06.g304450			Chloroplast			
+Cre06.g278112						
+Cre06.g293250				GO:0030132;GO:0030130;GO:0016192;GO:0006886;GO:0005198;GO:0005096	clathrin coat of coated pit;clathrin coat of trans-Golgi network vesicle;vesicle-mediated transport;intracellular protein transport;structural molecule activity;GTPase activator activity	
+Cre06.g283850						
+Cre06.g263050	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0043043;GO:0006414;GO:0005737;GO:0003746	peptide biosynthetic process;translational elongation;cytoplasm;translation elongation factor activity	EFP2
+Cre06.g265950	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species		GO:0030286;GO:0016887;GO:0007018;GO:0005858;GO:0005524;GO:0003777;GO:0001539	dynein complex;ATPase activity;microtubule-based movement;axonemal dynein complex;ATP binding;microtubule motor activity;cilium or flagellum-dependent cell motility	DHC3
+Cre06.g254002			Secretory pathway			
+Cre06.g299250			Chloroplast			
+Cre06.g299950						
+Cre06.g264000						
+Cre06.g264300	GMM:29.2.1.1.1.1.15	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S15	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPS15
+Cre06.g293100	GMM:31.4	cell.vesicle transport		GO:0048193;GO:0016020	Golgi vesicle transport;membrane	
+Cre06.g303500						
+Cre06.g278139	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	
+Cre06.g293900				GO:0005515	protein binding	
+Cre06.g292150						
+Cre06.g276300			Mitochondrion			
+Cre06.g277400	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF				
+Cre06.g278124						
+Cre06.g251900	GMM:29.3.3	protein.targeting.chloroplast		GO:0051205;GO:0016021	protein insertion into membrane;integral component of membrane	ALB3.1
+Cre06.g259250						
+Cre06.g262650			Chloroplast			TAA1
+Cre06.g270200	GMM:30.4.4	signalling.phosphinositides.phosphoinositide phospholipase C		GO:0035556;GO:0007165;GO:0006629;GO:0005515;GO:0004435	intracellular signal transduction;signal transduction;lipid metabolic process;protein binding;phosphatidylinositol phospholipase C activity	
+Cre06.g286450	GMM:33.99	development.unspecified				
+Cre06.g260500						
+Cre06.g281400			Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	NAH1
+Cre06.g298400	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP224
+Cre06.g268501						
+Cre06.g260150						FAP393
+Cre06.g256150			Secretory pathway			
+Cre06.g302305						
+Cre06.g251050	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre06.g307551			Mitochondrion			
+Cre06.g306014						
+Cre06.g305050	GMM:28.1	DNA.synthesis/chromatin structure				CGL45
+Cre06.g259800	GMM:29.2.99;GMM:27.4;GMM:27.1.1	protein.synthesis.misc;RNA.RNA binding;RNA.processing.splicing	Chloroplast	GO:0005515;GO:0003723	protein binding;RNA binding	CWC22
+Cre06.g260976			Secretory pathway			
+Cre06.g278177	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0006310;GO:0006281;GO:0005524;GO:0003910;GO:0003677	DNA recombination;DNA repair;ATP binding;DNA ligase (ATP) activity;DNA binding	DNL6
+Cre06.g261450	GMM:27.3.53	RNA.regulation of transcription.high mobility group family (HMG)				
+Cre06.g295400	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP11
+Cre06.g290676						PHC48
+Cre06.g300600	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Mitochondrion	GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre06.g271500						
+Cre06.g250650	GMM:26.17	misc.dynamin	Chloroplast	GO:0005525	GTP binding	DRP4
+Cre06.g278246			Mitochondrion			
+Cre06.g278263	GMM:33.99;GMM:33.2	development.unspecified;development.late embryogenesis abundant	Secretory pathway			
+Cre06.g300200						
+Cre06.g278195			Chloroplast			
+Cre06.g278097	GMM:31.2;GMM:27.1	cell.division;RNA.processing		GO:0005515	protein binding	RAE1
+Cre06.g277750						
+Cre06.g311000	GMM:34.99	transport.misc	Secretory pathway	GO:0016021;GO:0006810	integral component of membrane;transport	FBT2
+Cre06.g283400	GMM:2.1.1.2	major CHO metabolism.synthesis.sucrose.SPP	Chloroplast			CGL101
+Cre06.g289350	GMM:29.2.5	protein.synthesis.release	Mitochondrion	GO:0016149;GO:0006415;GO:0005737;GO:0003747	"translation release factor activity, codon specific;translational termination;cytoplasm;translation release factor activity"	
+Cre06.g266900						
+Cre06.g301700						
+Cre06.g283000			Mitochondrion			CGLD39
+Cre06.g250550						
+Cre06.g253550			Chloroplast			
+Cre06.g292050						MMP21
+Cre06.g279150	GMM:29.1.12	protein.aa activation.aspartate-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0003676;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleic acid binding;nucleotide binding	TSD2
+Cre06.g301500			Secretory pathway			
+Cre06.g259650	GMM:26.13	misc.acid and other phosphatases		GO:0016787	hydrolase activity	MPA7
+Cre06.g258800	GMM:10.5.2	cell wall.cell wall proteins.proline rich proteins	Secretory pathway			GP2
+Cre06.g251600	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0005515;GO:0003743	translational initiation;protein binding;translation initiation factor activity	EIF5B2
+Cre06.g291350						
+Cre06.g274800	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA4
+Cre06.g262300	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN51
+Cre06.g289550	GMM:29.2.1.2.2.32	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L32		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL32
+Cre06.g284000						
+Cre06.g254500			Chloroplast			
+Cre06.g256450	GMM:31.6.1.6.1	cell.motility.eukaryotes.central pair.C1a				FAP119
+Cre06.g291200						
+Cre06.g261026			Chloroplast			
+Cre06.g270950	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family				
+Cre06.g291700	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP3
+Cre06.g306900			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR9
+Cre06.g278153			Secretory pathway			
+Cre06.g278233			Secretory pathway			OPR60
+Cre06.g274650	GMM:30.11	signalling.light	Chloroplast			NUOAF4
+Cre06.g292650				GO:0006351;GO:0005634;GO:0003677	"transcription, DNA-templated;nucleus;DNA binding"	ROC93
+Cre06.g299600	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZIP6
+Cre06.g295826			Chloroplast			
+Cre06.g276700	GMM:29.5	protein.degradation		GO:0016787;GO:0008152	hydrolase activity;metabolic process	
+Cre06.g271100	GMM:31.3;GMM:29.4.1;GMM:29.4	cell.cycle;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDKG1
+Cre06.g284800	GMM:12.4	N-metabolism.misc		GO:0055114;GO:0050660;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing	
+Cre06.g267400	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre06.g306200						
+Cre06.g272300			Chloroplast			CPLD57
+Cre06.g287200			Chloroplast			
+Cre06.g285100			Mitochondrion			
+Cre06.g278176	GMM:33.99;GMM:31.4;GMM:30.5	development.unspecified;cell.vesicle transport;signalling.G-proteins		GO:0005515	protein binding	
+Cre06.g266200						
+Cre06.g272750						
+Cre06.g270500	GMM:26.3.4;GMM:26.3	"misc.gluco-, galacto- and mannosidases.endoglucanase;misc.gluco-, galacto- and mannosidases"	Secretory pathway	GO:0019028;GO:0005975;GO:0004553	"viral capsid;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
+Cre06.g271376	GMM:28.1.3.2.2;GMM:28.1.3.2.1	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB8
+Cre06.g301150						
+Cre06.g292500	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Secretory pathway	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN23
+Cre06.g310050	GMM:29.5	protein.degradation	Chloroplast	GO:0016020	membrane	CPL13
+Cre06.g273200				GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
+Cre06.g292315			Mitochondrion			
+Cre06.g284300						
+Cre06.g310350						
+Cre06.g311600	GMM:18.3	Co-factor and vitamine metabolism.riboflavin		GO:0009231;GO:0008531	riboflavin biosynthetic process;riboflavin kinase activity	RFK3
+Cre06.g298650	GMM:29.2.3	protein.synthesis.initiation	Secretory pathway	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	EIF4A
+Cre06.g293450						
+Cre06.g290550						
+Cre06.g304600	GMM:26.23	misc.rhodanese	Chloroplast			
+Cre06.g265450	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO11B
+Cre06.g278271			Mitochondrion			
+Cre06.g294600						
+Cre06.g282200			Chloroplast	GO:0007034	vacuolar transport	SNF7
+Cre06.g251450	GMM:18.7	Co-factor and vitamine metabolism.iron-sulphur clusters	Mitochondrion	GO:0051539;GO:0009435;GO:0008987	"4 iron, 4 sulfur cluster binding;NAD biosynthetic process;quinolinate synthetase A activity"	NIC7
+Cre06.g300850				GO:0005634	nucleus	
+Cre06.g280650			Chloroplast			CGL59
+Cre06.g249800	GMM:26.13	misc.acid and other phosphatases	Mitochondrion			
+Cre06.g278218						
+Cre06.g272450			Mitochondrion			MBI1
+Cre06.g278094	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG14
+Cre06.g265602	GMM:27.1	RNA.processing				
+Cre06.g249250	GMM:29.2.2.3.1;GMM:29.2.1.2.2.57;GMM:29.2.1.2.2.1730	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7/L30/S12				RPL7AE
+Cre06.g310276						
+Cre06.g293150			Secretory pathway			PGM12
+Cre06.g264500	GMM:29.2.2.3.99;GMM:27.3.51	"protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;RNA.regulation of transcription.general transcription, TBP-binding protein"	Chloroplast			
+Cre06.g280500	GMM:27.4	RNA.RNA binding				
+Cre06.g303192			Chloroplast			
+Cre06.g289750	GMM:31.3	cell.cycle		GO:0005634	nucleus	CYCD2
+Cre06.g306050				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g392356						
+Cre09.g393750			Mitochondrion			
+Cre09.g413450	GMM:28.1.1	DNA.synthesis/chromatin structure.retrotransposon/transposase				
+Cre09.g413050				GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre09.g399912	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	
+Cre09.g398660			Secretory pathway			
+Cre09.g398700	GMM:11.3.10	lipid metabolism.phospholipid synthesis.(S)-coclaurine-N-methyltransferase				CPLD27
+Cre09.g415050						
+Cre09.g396600	GMM:5;GMM:33.99;GMM:1.1.7.1	fermentation;development.unspecified;PS.lightreaction.hydrogenase.FeFe-hydrogenase	Chloroplast			HYDA2
+Cre09.g416400	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g409250	GMM:11.8.1.3	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids.ceramide glucosyltransferase"	Secretory pathway			GTR24
+Cre09.g402041						
+Cre09.g411800			Chloroplast			
+Cre09.g396900	GMM:26.13;GMM:23.3.3	misc.acid and other phosphatases;nucleotide metabolism.salvage.NUDIX hydrolases	Mitochondrion	GO:0046872;GO:0016787	metal ion binding;hydrolase activity	
+Cre09.g396176						
+Cre09.g403250	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g389652						
+Cre09.g399909						
+Cre09.g388615	GMM:29.2.99;GMM:29.2.5	protein.synthesis.misc;protein.synthesis.release		GO:0071025;GO:0070966;GO:0070481	"RNA surveillance;nuclear-transcribed mRNA catabolic process, no-go decay;nuclear-transcribed mRNA catabolic process, non-stop decay"	
+Cre09.g403293	GMM:25.4;GMM:25	C1-metabolism.5-formyltetrahydrofolate cyclo-ligase;C1-metabolism				FCL1
+Cre09.g390604						
+Cre09.g416150	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion			ASA7
+Cre09.g401293	GMM:34.6;GMM:26.23	transport.sulphate;misc.rhodanese	Chloroplast	GO:0055085;GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0008271	transmembrane transport;integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;secondary active sulfate transmembrane transporter activity	SULTR3
+Cre09.g407501			Chloroplast	GO:2001070	starch binding	
+Cre09.g389700			Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT24
+Cre09.g407850			Chloroplast			
+Cre09.g393600	GMM:28.1	DNA.synthesis/chromatin structure				
+Cre09.g394325	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELIP3
+Cre09.g397095						
+Cre09.g400923						FAP28
+Cre09.g409600			Mitochondrion			
+Cre09.g396363	GMM:29.3.2;GMM:20.2.1	protein.targeting.mitochondria;stress.abiotic.heat	Mitochondrion			TIM14
+Cre09.g389089	GMM:18.1	Co-factor and vitamine metabolism.molybdenum cofactor	Mitochondrion	GO:0030170;GO:0030151;GO:0003824	pyridoxal phosphate binding;molybdenum ion binding;catalytic activity	CNX5
+Cre09.g388726	GMM:28.2	DNA.repair				
+Cre09.g386800						
+Cre09.g388949						
+Cre09.g391615			Secretory pathway			
+Cre09.g398363			Mitochondrion			
+Cre09.g399450						
+Cre09.g391900	GMM:21.1	redox.thioredoxin		GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXH2
+Cre09.g402775						
+Cre09.g388550			Mitochondrion	GO:0005840	ribosome	MRPL21
+Cre09.g391838	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Mitochondrion	GO:0006629	lipid metabolic process	
+Cre09.g397200	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0051082;GO:0006457;GO:0005524	unfolded protein binding;protein folding;ATP binding	CCT6
+Cre09.g408626			Mitochondrion			
+Cre09.g386167						
+Cre09.g415800	GMM:28.99	DNA.unspecified				
+Cre09.g402212						
+Cre09.g388350			Chloroplast			MMP11
+Cre09.g400441	GMM:29.5.11.4.3.2;GMM:27.3.57	protein.degradation.ubiquitin.E3.SCF.FBOX;RNA.regulation of transcription.JUMONJI family	Mitochondrion			
+Cre09.g397950	GMM:31.1	cell.organisation		GO:0034314;GO:0030833;GO:0005885;GO:0005856	Arp2/3 complex-mediated actin nucleation;regulation of actin filament polymerization;Arp2/3 protein complex;cytoskeleton	
+Cre09.g392653			Secretory pathway			
+Cre09.g398554						
+Cre09.g386747						
+Cre09.g389001			Mitochondrion			
+Cre09.g407120			Mitochondrion			
+Cre09.g402256	GMM:29.5	protein.degradation		GO:0008270;GO:0008237;GO:0006508	zinc ion binding;metallopeptidase activity;proteolysis	
+Cre09.g386131			Secretory pathway			
+Cre09.g416583						
+Cre09.g394547	GMM:2	major CHO metabolism	Chloroplast	GO:2001070	starch binding	
+Cre09.g413850						
+Cre09.g417076			Secretory pathway			
+Cre09.g390800						
+Cre09.g391400						
+Cre09.g405002						
+Cre09.g392245			Secretory pathway			DPM3
+Cre09.g388171				GO:0016787	hydrolase activity	
+Cre09.g409000	GMM:16.1	secondary metabolism.isoprenoids	Secretory pathway			
+Cre09.g386735	GMM:8.1.1.2	TCA / organic transformation.TCA.pyruvate DH.E2	Mitochondrion	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	DLA1
+Cre09.g405106						
+Cre09.g390615	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	FAP12
+Cre09.g398771			Secretory pathway			
+Cre09.g387949			Secretory pathway			
+Cre09.g397364			Mitochondrion			
+Cre09.g395150	GMM:29.4	protein.postranslational modification		GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	MKP3
+Cre09.g407750						CGL130
+Cre09.g402600			Secretory pathway			
+Cre09.g386450						
+Cre09.g395000			Mitochondrion			
+Cre09.g400664						
+Cre09.g390838						
+Cre09.g387356						
+Cre09.g399326	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP3
+Cre09.g394700			Mitochondrion			RNZ1
+Cre09.g395250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP36
+Cre09.g403850	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g392097			Secretory pathway			
+Cre09.g410750	GMM:12.1.2	N-metabolism.nitrate metabolism.nitrite reductase	Chloroplast	GO:0055114;GO:0051536;GO:0020037;GO:0016491	oxidation-reduction process;iron-sulfur cluster binding;heme binding;oxidoreductase activity	NII1
+Cre09.g396213	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0042549;GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	photosystem II stabilization;extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBO
+Cre09.g389250	GMM:26.7	"misc.oxidases - copper, flavone etc"				AOF1
+Cre09.g416650			Secretory pathway			
+Cre09.g405450			Chloroplast			
+Cre09.g387450			Mitochondrion			OPR37
+Cre09.g401441	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
+Cre09.g392171			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre09.g401850	GMM:30.2.99;GMM:30.11	signalling.receptor kinases.misc;signalling.light	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g409951				GO:0006310	DNA recombination	
+Cre09.g400700			Mitochondrion			
+Cre09.g395436	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre09.g394510			Chloroplast	GO:2001070	starch binding	
+Cre09.g388208			Chloroplast			
+Cre09.g397993			Secretory pathway			FAP201
+Cre09.g389208	GMM:29.3.5	protein.targeting.peroxisomes		GO:0016021	integral component of membrane	
+Cre09.g401150				GO:0016020;GO:0009055;GO:0008137	membrane;electron carrier activity;NADH dehydrogenase (ubiquinone) activity	
+Cre09.g390150						
+Cre09.g387750			Mitochondrion			
+Cre09.g393469			Secretory pathway			
+Cre09.g413123			Mitochondrion			
+Cre09.g414626			Mitochondrion			
+Cre09.g406432			Mitochondrion	GO:0005509	calcium ion binding	
+Cre09.g402367						
+Cre09.g394400	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g405900	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g398438			Chloroplast			
+Cre09.g411400	GMM:31.6.1.11	cell.motility.eukaryotes.other				MOT45
+Cre09.g401886	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate	Mitochondrion	GO:0055114;GO:0020037;GO:0006979;GO:0004601	oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity	
+Cre09.g392542	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0008270;GO:0005515	zinc ion binding;protein binding	hlm7
+Cre09.g387134			Chloroplast			
+Cre09.g410087						
+Cre09.g389850			Secretory pathway			
+Cre09.g415350						
+Cre09.g387726	GMM:13.1.1.2.1	amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase	Mitochondrion	GO:0030170;GO:0009058;GO:0008483;GO:0006520	pyridoxal phosphate binding;biosynthetic process;transaminase activity;cellular amino acid metabolic process	AST1
+Cre09.g392900						
+Cre09.g400404			Mitochondrion			
+Cre09.g386400	GMM:29.5.11.2	protein.degradation.ubiquitin.E1		GO:0008641	small protein activating enzyme activity	FAP124
+Cre09.g401450						
+Cre09.g414700						
+Cre09.g414300	GMM:29.4	protein.postranslational modification				
+Cre09.g410850	GMM:34.4	transport.nitrate		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NRT2.1
+Cre09.g407400			Mitochondrion			
+Cre09.g397179			Chloroplast			OPR13
+Cre09.g396350						
+Cre09.g412803			Secretory pathway	GO:0016020	membrane	CGL88
+Cre09.g396250	GMM:18;GMM:16.1.3;GMM:11.3.3	Co-factor and vitamine metabolism;secondary metabolism.isoprenoids.tocopherol biosynthesis;lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase	Secretory pathway			VTE5
+Cre09.g391150	GMM:29.5.7	protein.degradation.metalloprotease				
+Cre09.g396883			Mitochondrion			
+Cre09.g389134			Mitochondrion	GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre09.g392250	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion			OTU5
+Cre09.g396700	GMM:2.2.1.1	major CHO metabolism.degradation.sucrose.fructokinase	Chloroplast	GO:0016774;GO:0016310;GO:0016301;GO:0008152;GO:0005622	"phosphotransferase activity, carboxyl group as acceptor;phosphorylation;kinase activity;metabolic process;intracellular"	ACK1
+Cre09.g392877						
+Cre09.g393173	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELI2
+Cre09.g406000	GMM:18.6;GMM:18	Co-factor and vitamine metabolism.biotin;Co-factor and vitamine metabolism	Mitochondrion	GO:0006464;GO:0004077	cellular protein modification process;biotin-[acetyl-CoA-carboxylase] ligase activity	BPL1
+Cre09.g397216	GMM:26.1;GMM:17.2.2	misc.misc2;hormone metabolism.auxin.signal transduction	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
+Cre09.g386600	GMM:27.1	RNA.processing	Mitochondrion			
+Cre09.g389950	GMM:26.6;GMM:26.5	misc.O-methyl transferases;misc.acyl transferases	Secretory pathway			OAT1
+Cre09.g398800	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB36
+Cre09.g398500						
+Cre09.g388650	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG29
+Cre09.g389450	GMM:29.4.1.59	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX	Mitochondrion	GO:0016567;GO:0004842;GO:0003676	protein ubiquitination;ubiquitin-protein transferase activity;nucleic acid binding	
+Cre09.g387950	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g392951						
+Cre09.g416309			Secretory pathway			
+Cre09.g396102	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g399513						
+Cre09.g414200	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole				VPS26
+Cre09.g390319	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0032012;GO:0005086	regulation of ARF protein signal transduction;ARF guanyl-nucleotide exchange factor activity	
+Cre09.g414951						
+Cre09.g417000			Secretory pathway			
+Cre09.g393700	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP3
+Cre09.g387578			Chloroplast			
+Cre09.g398650				GO:0005515	protein binding	
+Cre09.g398586						
+Cre09.g406150			Mitochondrion			
+Cre09.g403219	GMM:27.2	RNA.transcription		GO:0009307;GO:0006351;GO:0004519;GO:0003899;GO:0003677	"DNA restriction-modification system;transcription, DNA-templated;endonuclease activity;DNA-directed RNA polymerase activity;DNA binding"	RPB5
+Cre09.g392282	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Chloroplast	GO:0030286;GO:0016887;GO:0007018;GO:0005858;GO:0005524;GO:0003777;GO:0003341	dynein complex;ATPase activity;microtubule-based movement;axonemal dynein complex;ATP binding;microtubule motor activity;cilium movement	DHC2
+Cre09.g399911	GMM:33.99;GMM:31.2	development.unspecified;cell.division		GO:0005515	protein binding	CDC20
+Cre09.g414750	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG33
+Cre09.g388352			Secretory pathway			
+Cre09.g406100			Chloroplast			
+Cre09.g395769						FAP177
+Cre09.g402800			Mitochondrion			
+Cre09.g396438						
+Cre09.g397512	GMM:35.1.3;GMM:29.9;GMM:29.6.2.6	not assigned.no ontology.armadillo/beta-catenin repeat family protein;protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones				HSPBP1
+Cre09.g396772	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			mmp18
+Cre09.g386749			Chloroplast			
+Cre09.g401701			Mitochondrion			
+Cre09.g393913	GMM:25.7	C1-metabolism.GTP cyclohydrolase I		GO:0046654;GO:0005737;GO:0003934	tetrahydrofolate biosynthetic process;cytoplasm;GTP cyclohydrolase I activity	
+Cre09.g400997			Chloroplast			
+Cre09.g392350	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	CGLD37
+Cre09.g401022	GMM:10.1.9	cell wall.precursor synthesis.MUR4		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	UXE
+Cre09.g402300	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase				ASA8
+Cre09.g396950	GMM:34.7	transport.phosphate	Chloroplast	GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
+Cre09.g395850			Secretory pathway			
+Cre09.g412700			Mitochondrion			
+Cre09.g402701						
+Cre09.g396549			Secretory pathway			
+Cre09.g400516	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"		GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	
+Cre09.g408200	GMM:27.1.1	RNA.processing.splicing		GO:0008270;GO:0003676	zinc ion binding;nucleic acid binding	SRS4
+Cre09.g403500			Mitochondrion			
+Cre09.g389578	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP5
+Cre09.g400256			Mitochondrion			
+Cre09.g408550	GMM:29.5.11.2	protein.degradation.ubiquitin.E1		GO:0008641	small protein activating enzyme activity	
+Cre09.g387801				GO:0005515	protein binding	
+Cre09.g400738	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0008270	zinc ion binding	
+Cre09.g408851	GMM:29.5	protein.degradation				
+Cre09.g390957						
+Cre09.g388852						
+Cre09.g411600						
+Cre09.g386875	GMM:29.4	protein.postranslational modification				
+Cre09.g405650				GO:0005681;GO:0000398;GO:0000387	"spliceosomal complex;mRNA splicing, via spliceosome;spliceosomal snRNP assembly"	
+Cre09.g387850	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RWP13
+Cre09.g411700			Chloroplast			
+Cre09.g398326			Secretory pathway			
+Cre09.g406700	GMM:29.5.1	protein.degradation.subtilases	Mitochondrion	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
+Cre09.g400851						
+Cre09.g393099						
+Cre09.g392050			Chloroplast			
+Cre09.g386733						
+Cre09.g405104						
+Cre09.g396957			Mitochondrion			
+Cre09.g393850	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK2
+Cre09.g405550	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion	GO:0030150;GO:0005744	protein import into mitochondrial matrix;mitochondrial inner membrane presequence translocase complex	TIM21
+Cre09.g396450			Secretory pathway			APT3
+Cre09.g391912						
+Cre09.g396289			Mitochondrion			
+Cre09.g391541	GMM:29.3.99;GMM:26.13	protein.targeting.unknown;misc.acid and other phosphatases				
+Cre09.g386756						
+Cre09.g404500						SFI1
+Cre09.g408428	GMM:34.8;GMM:3.3	transport.metabolite transporters at the envelope membrane;minor CHO metabolism.sugar alcohols	Mitochondrion			
+Cre09.g394436	GMM:34.30;GMM:34.3	transport.H+ transporting pyrophosphatase;transport.amino acids	Secretory pathway	GO:0016020;GO:0015992;GO:0009678;GO:0004427	membrane;proton transport;hydrogen-translocating pyrophosphatase activity;inorganic diphosphatase activity	
+Cre09.g386500	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast			
+Cre09.g395843	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
+Cre09.g396920			Chloroplast			
+Cre09.g411525	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g394050	GMM:27.3.99;GMM:11.8.2	"RNA.regulation of transcription.unclassified;lipid metabolism.exotics (steroids, squalene etc).methylsterol monooxygenase"	Secretory pathway	GO:0008270	zinc ion binding	CPLD19
+Cre09.g399626			Chloroplast			
+Cre09.g389000						
+Cre09.g391350			Secretory pathway			
+Cre09.g393802			Mitochondrion			
+Cre09.g399812						
+Cre09.g400300						
+Cre09.g409801						
+Cre09.g398845			Secretory pathway			
+Cre09.g397586						
+Cre09.g413650				GO:0048193;GO:0005783	Golgi vesicle transport;endoplasmic reticulum	
+Cre09.g401350			Chloroplast			
+Cre09.g395139			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre09.g417150	GMM:21.6	redox.dismutases and catalases		GO:0055114;GO:0020037;GO:0006979;GO:0004096	oxidation-reduction process;heme binding;response to oxidative stress;catalase activity	CAT1
+Cre09.g386746						
+Cre09.g410600	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre09.g407350			Secretory pathway			
+Cre09.g387282			Mitochondrion	GO:0032259;GO:0008168	methylation;methyltransferase activity	
+Cre09.g405300			Chloroplast			
+Cre09.g416850			Mitochondrion			
+Cre09.g396800	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			CSE19
+Cre09.g391726						
+Cre09.g388282			Mitochondrion	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS18
+Cre09.g391467			Mitochondrion			
+Cre09.g391801						VSP4
+Cre09.g396550						
+Cre09.g393050				GO:0008168;GO:0006479	methyltransferase activity;protein methylation	
+Cre09.g416050	GMM:13.1.2.3.22;GMM:13.1.2.3	amino acid metabolism.synthesis.glutamate family.arginine.argininosuccinate synthase;amino acid metabolism.synthesis.glutamate family.arginine	Chloroplast	GO:0006526;GO:0005524;GO:0004055	arginine biosynthetic process;ATP binding;argininosuccinate synthase activity	AGS1
+Cre09.g395251			Chloroplast			
+Cre09.g406400	GMM:34.12	transport.metal		GO:0046872;GO:0030001;GO:0000166	metal ion binding;metal ion transport;nucleotide binding	CTP3
+Cre09.g399252			Chloroplast			
+Cre09.g387500			Mitochondrion			OPR38
+Cre09.g394600						
+Cre09.g393950	GMM:31.2;GMM:29.5.7;GMM:29.5.11.20	cell.division;protein.degradation.metalloprotease;protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	FHL2
+Cre09.g397105	GMM:26.10;GMM:17.2.2;GMM:16.2.1.8	misc.cytochrome P450;hormone metabolism.auxin.signal transduction;secondary metabolism.phenylpropanoids.lignin biosynthesis.F5H	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
+Cre09.g404250	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508;GO:0005509	cysteine-type peptidase activity;proteolysis;calcium ion binding	CEP9
+Cre09.g390450						
+Cre09.g392800						
+Cre09.g395300			Mitochondrion			
+Cre09.g388356	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast			TBC2
+Cre09.g399900			Secretory pathway;Chloroplast			
+Cre09.g394450	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion	GO:0046907	intracellular transport	RBP1
+Cre09.g412650			Chloroplast			
+Cre09.g412000			Chloroplast			
+Cre09.g410450	GMM:27.3.20	RNA.regulation of transcription.G2-like transcription factor family (GARP)	Secretory pathway			ROC15
+Cre09.g387250	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0008146	sulfotransferase activity	CSR3
+Cre09.g393284	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RLS8
+Cre09.g397150			Mitochondrion			
+Cre09.g390500			Secretory pathway			
+Cre09.g392467	GMM:34.12	transport.metal		GO:0046872;GO:0030001	metal ion binding;metal ion transport	ATX1
+Cre09.g402923			Secretory pathway			
+Cre09.g392023						CSV2
+Cre09.g401950			Chloroplast			
+Cre09.g403750			Mitochondrion			HAD6
+Cre09.g417013						
+Cre09.g403600						
+Cre09.g411950						
+Cre09.g388541			Chloroplast			
+Cre09.g390986	GMM:29.1.12	protein.aa activation.aspartate-tRNA ligase	Mitochondrion	GO:0016874;GO:0006418;GO:0005524;GO:0004812;GO:0003676;GO:0000166	ligase activity;tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleic acid binding;nucleotide binding	
+Cre09.g404200						
+Cre09.g386113	GMM:29.5.7	protein.degradation.metalloprotease				
+Cre09.g399100			Mitochondrion			OPR42
+Cre09.g402402			Secretory pathway			
+Cre09.g409325						
+Cre09.g399400	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0006629	lipid metabolic process	FAP199
+Cre09.g406983	GMM:31.1	cell.organisation				
+Cre09.g386731	GMM:27.1.1	RNA.processing.splicing		GO:0045131;GO:0003723;GO:0003676;GO:0000398	"pre-mRNA branch point binding;RNA binding;nucleic acid binding;mRNA splicing, via spliceosome"	
+Cre09.g395584			Mitochondrion			
+Cre09.g402050			Mitochondrion			
+Cre09.g413533			Chloroplast			
+Cre09.g399550	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre09.g412880	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Chloroplast			HSP70F
+Cre09.g386744						
+Cre09.g388023						
+Cre09.g387050	GMM:3.5	minor CHO metabolism.others	Chloroplast			FRK1
+Cre09.g406625			Mitochondrion			
+Cre09.g404550			Secretory pathway	GO:0006468;GO:0005524;GO:0004674	protein phosphorylation;ATP binding;protein serine/threonine kinase activity	
+Cre09.g400108						
+Cre09.g393991						
+Cre09.g395325						
+Cre09.g415450	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN17-1
+Cre09.g389467			Chloroplast			OPR8
+Cre09.g404050	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g394399	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre09.g417200						
+Cre09.g390801			Mitochondrion	GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	
+Cre09.g414000	GMM:16.1.3.2	secondary metabolism.isoprenoids.tocopherol biosynthesis.homogentisate phytyltransferase	Mitochondrion	GO:0016021;GO:0004659	integral component of membrane;prenyltransferase activity	
+Cre09.g395750	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre09.g400590						
+Cre09.g411633				GO:0008270;GO:0006355;GO:0005634;GO:0004402;GO:0003712	"zinc ion binding;regulation of transcription, DNA-templated;nucleus;histone acetyltransferase activity;transcription cofactor activity"	
+Cre09.g399300	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs	Secretory pathway	GO:0006457	protein folding	FKB17-1
+Cre09.g411850						
+Cre09.g402602			Mitochondrion			
+Cre09.g401650						
+Cre09.g396028			Chloroplast			
+Cre09.g408400			Secretory pathway			
+Cre09.g390060						RAA4
+Cre09.g389060			Mitochondrion			
+Cre09.g400553	GMM:33.30.1	development.multitarget.target of rapamycin		GO:0016773;GO:0008144;GO:0005515	"phosphotransferase activity, alcohol group as acceptor;drug binding;protein binding"	TOR1
+Cre09.g397808						
+Cre09.g401145						
+Cre09.g397438						
+Cre09.g410650	GMM:13.1.7.1	amino acid metabolism.synthesis.histidine.ATP phosphoribosyltransferase	Chloroplast	GO:0005737;GO:0003879;GO:0000287;GO:0000105	cytoplasm;ATP phosphoribosyltransferase activity;magnesium ion binding;histidine biosynthetic process	HIS1
+Cre09.g391753						
+Cre09.g387650			Mitochondrion			
+Cre09.g412787	GMM:29.4	protein.postranslational modification	Chloroplast			
+Cre09.g411200	GMM:26.30;GMM:1.1.1.3	misc.other Ferredoxins and Rieske domain;PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			TEF5
+Cre09.g402700	GMM:34.14	transport.unspecified cations	Mitochondrion	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	
+Cre09.g416900	GMM:29.4	protein.postranslational modification				
+Cre09.g399050	GMM:26.28	misc.GDSL-motif lipase		GO:0016788	"hydrolase activity, acting on ester bonds"	
+Cre09.g415200	GMM:29.2.99	protein.synthesis.misc		GO:0005515;GO:0003723	protein binding;RNA binding	NOM1
+Cre09.g392700						CGL39
+Cre09.g390300	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g395213						
+Cre09.g388800	GMM:12.3.1	N-metabolism.N-degradation.glutamate dehydrogenase	Mitochondrion	GO:0055114;GO:0016491;GO:0006520	oxidation-reduction process;oxidoreductase activity;cellular amino acid metabolic process	GDH1
+Cre09.g415001						
+Cre09.g416250	GMM:31.1.1.3.8;GMM:31.1	cell.organisation.cytoskeleton.Myosin.Class VII;cell.organisation		GO:0016459;GO:0005524;GO:0003774	myosin complex;ATP binding;motor activity	MYO2
+Cre09.g397734	GMM:26.10;GMM:26.1;GMM:17.2.2;GMM:16.8.3.3;GMM:16.1.4.7	misc.cytochrome P450;misc.misc2;hormone metabolism.auxin.signal transduction;secondary metabolism.flavonoids.dihydroflavonols.flavonoid 3'-monooxygenase;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP744A4
+Cre09.g389150						FAP93
+Cre09.g397000	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			
+Cre09.g390356			Secretory pathway	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre09.g389809			Chloroplast			
+Cre09.g398556						
+Cre09.g403367			Secretory pathway			
+Cre09.g394850	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF				TEF24
+Cre09.g398549			Chloroplast			
+Cre09.g389902			Mitochondrion			
+Cre09.g398702			Chloroplast			
+Cre09.g402950			Chloroplast			CGL21
+Cre09.g407250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP270
+Cre09.g403151			Mitochondrion			
+Cre09.g398956						
+Cre09.g403071			Chloroplast			
+Cre09.g393953			Secretory pathway			
+Cre09.g408750			Mitochondrion			
+Cre09.g396400	GMM:29.5.11.1;GMM:29.5.11	protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin		GO:0005515	protein binding	UBQ2
+Cre09.g402145			Secretory pathway			
+Cre09.g408800						
+Cre09.g386758	GMM:13.1.4.1.1;GMM:13.1.4.1	amino acid metabolism.synthesis.branched chain group.common.acetolactate synthase;amino acid metabolism.synthesis.branched chain group.common	Chloroplast	GO:0030976;GO:0003824;GO:0000287	thiamine pyrophosphate binding;catalytic activity;magnesium ion binding	ALS1
+Cre09.g397450						
+Cre09.g407200	GMM:16.1.4	secondary metabolism.isoprenoids.carotenoids	Chloroplast			
+Cre09.g401750			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre09.g407650			Mitochondrion			
+Cre09.g386912	GMM:26.5	misc.acyl transferases	Secretory pathway	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
+Cre09.g398050						
+Cre09.g390689			Mitochondrion			
+Cre09.g417400				GO:0006281;GO:0005524;GO:0005515;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;protein binding;helicase activity;DNA helicase activity;telomere maintenance	
+Cre09.g398104				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre09.g386155			Secretory pathway			
+Cre09.g396500						HAD3
+Cre09.g386143			Secretory pathway			
+Cre09.g390400			Chloroplast			
+Cre09.g393210			Secretory pathway			
+Cre09.g395350	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase				ASA9
+Cre09.g398030						
+Cre09.g391986	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	
+Cre09.g409728						
+Cre09.g389949	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004725	protein dephosphorylation;protein tyrosine phosphatase activity	
+Cre09.g390700						
+Cre09.g394917			Chloroplast			
+Cre09.g386748			Chloroplast			
+Cre09.g387504			Secretory pathway			
+Cre09.g402034	GMM:18.1	Co-factor and vitamine metabolism.molybdenum cofactor	Mitochondrion	GO:0008641	small protein activating enzyme activity	
+Cre09.g415700	GMM:8.3;GMM:1.5	TCA / organic transformation.carbonic anhydrases;PS.carbon concentrating mechanism	Chloroplast			CAH3
+Cre09.g392503						
+Cre09.g395732	GMM:29.9	protein.co-chaperones	Chloroplast			
+Cre09.g400812						
+Cre09.g404400	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre09.g393350						
+Cre09.g386700	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN13-1
+Cre09.g412500	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion			
+Cre09.g393617			Secretory pathway			
+Cre09.g417401	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor	Chloroplast			
+Cre09.g386754						
+Cre09.g388500			Chloroplast			
+Cre09.g406900						
+Cre09.g415550	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion			ASA2
+Cre09.g405701						
+Cre09.g404750	GMM:29.4.1	protein.postranslational modification.kinase		GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR2
+Cre09.g391652			Chloroplast			
+Cre09.g402552	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0055114;GO:0042773;GO:0016651	"oxidation-reduction process;ATP synthesis coupled electron transport;oxidoreductase activity, acting on NAD(P)H"	NUO11
+Cre09.g391393			Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g417050			Secretory pathway			
+Cre09.g408100						
+Cre09.g389541						OPR9
+Cre09.g400515						
+Cre09.g387150	GMM:27.3.23;GMM:20.2.1	RNA.regulation of transcription.heat-shock transcription factor family (HSF);stress.abiotic.heat		GO:0043565;GO:0006355;GO:0005634;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding"	HSF1
+Cre09.g387319	GMM:12.4	N-metabolism.misc		GO:0055114;GO:0050660;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing	
+Cre09.g398300			Chloroplast			
+Cre09.g400900			Chloroplast			
+Cre09.g405250			Secretory pathway			
+Cre09.g400650	GMM:29.2.1.2.1.6	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S6		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS6
+Cre09.g394750	GMM:29.2.1.1.3.1.1;GMM:29.2.1.1.1.1.1	protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.30S subunit.S1;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S1	Chloroplast	GO:0003676	nucleic acid binding	PRPS1
+Cre09.g410300				GO:0055114;GO:0016491;GO:0005515	oxidation-reduction process;oxidoreductase activity;protein binding	
+Cre09.g406250			Secretory pathway			
+Cre09.g396512			Chloroplast			OPR12
+Cre09.g391500	GMM:29.5.2	protein.degradation.autophagy				ATG9
+Cre09.g403954						
+Cre09.g392655						
+Cre09.g386550	GMM:3.5;GMM:29.4;GMM:27.3.99	minor CHO metabolism.others;protein.postranslational modification;RNA.regulation of transcription.unclassified		GO:0005096	GTPase activator activity	
+Cre09.g394150			Mitochondrion	GO:0004672	protein kinase activity	RAA1
+Cre09.g396050			Mitochondrion			
+Cre09.g399738						
+Cre09.g388875	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g400050						
+Cre09.g399439						
+Cre09.g395917				GO:0008080	N-acetyltransferase activity	
+Cre09.g401600				GO:0003676	nucleic acid binding	
+Cre09.g402515	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114;GO:0048038;GO:0009308;GO:0008131;GO:0005507	oxidation-reduction process;quinone binding;amine metabolic process;primary amine oxidase activity;copper ion binding	AMX1
+Cre09.g416550			Secretory pathway			MBO2
+Cre09.g414416	GMM:31.3	cell.cycle	Mitochondrion			CYCD4
+Cre09.g388430				GO:0005515	protein binding	
+Cre09.g400950			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NCT2
+Cre09.g390678				GO:0006470;GO:0004722	protein dephosphorylation;protein serine/threonine phosphatase activity	
+Cre09.g393765			Chloroplast			LMR1
+Cre09.g390152						
+Cre09.g393506	GMM:21.99	redox.misc	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	HCP3
+Cre09.g403150						PWR9
+Cre09.g413250						
+Cre09.g399476			Mitochondrion	GO:0005524	ATP binding	
+Cre09.g387838				GO:0016020	membrane	
+Cre09.g409050	GMM:29.5.3	protein.degradation.cysteine protease	Chloroplast			OTU6
+Cre09.g405776			Mitochondrion			
+Cre09.g397882			Secretory pathway			
+Cre09.g399363			Mitochondrion			
+Cre09.g394701	GMM:27.3	RNA.regulation of transcription	Chloroplast			
+Cre09.g386200						OPR36
+Cre09.g408250	GMM:29.2.4	protein.synthesis.elongation				EEF1A2
+Cre09.g392252			Mitochondrion	GO:0008270;GO:0003676	zinc ion binding;nucleic acid binding	
+Cre09.g402304						
+Cre09.g413900			Secretory pathway			
+Cre09.g415250						
+Cre09.g404503	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Secretory pathway;Chloroplast			SFI1
+Cre09.g387097			Secretory pathway	GO:0055114	oxidation-reduction process	
+Cre09.g402200			Chloroplast			
+Cre09.g402997	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0006364;GO:0004222	rRNA processing;metalloendopeptidase activity	
+Cre09.g391060			Secretory pathway			
+Cre09.g401515			Chloroplast			
+Cre09.g414100						
+Cre09.g398150				GO:0004725	protein tyrosine phosphatase activity	EYA1
+Cre09.g409150						QCR10
+Cre09.g387800	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast	GO:0008199;GO:0006879;GO:0006826	ferric iron binding;cellular iron ion homeostasis;iron ion transport	FER1
+Cre09.g400750	GMM:34.5	transport.ammonium	Mitochondrion	GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	AMT5
+Cre09.g389319	GMM:29.3.5	protein.targeting.peroxisomes	Mitochondrion	GO:0016021	integral component of membrane	
+Cre09.g401367			Mitochondrion			
+Cre09.g390912			Secretory pathway			
+Cre09.g413000			Secretory pathway			
+Cre09.g395399						
+Cre09.g395600	GMM:30.5	signalling.G-proteins	Mitochondrion	GO:0005525;GO:0003924;GO:0000287	GTP binding;GTPase activity;magnesium ion binding	
+Cre09.g412100	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0015979;GO:0009538;GO:0009522	photosynthesis;photosystem I reaction center;photosystem I	PSAF
+Cre09.g402450	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre09.g386986			Secretory pathway			
+Cre09.g404650			Mitochondrion			
+Cre09.g399701						
+Cre09.g405150	GMM:29.1.30;GMM:23.5.2	protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase	Chloroplast	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS1
+Cre09.g403900	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP294
+Cre09.g397253				GO:0055114;GO:0050660;GO:0016491	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity	
+Cre09.g402404						
+Cre09.g392393						
+Cre09.g397660			Secretory pathway			
+Cre09.g413100						
+Cre09.g401100			Secretory pathway	GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	
+Cre09.g407100			Mitochondrion	GO:0006412;GO:0005840;GO:0003735;GO:0003723	translation;ribosome;structural constituent of ribosome;RNA binding	MRPS5
+Cre09.g416000	GMM:27.1	RNA.processing		GO:0046540;GO:0000398	"U4/U6 x U5 tri-snRNP complex;mRNA splicing, via spliceosome"	
+Cre09.g392106						
+Cre09.g389550	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ13
+Cre09.g410950	GMM:12.1.1	N-metabolism.nitrate metabolism.NR		GO:0055114;GO:0042128;GO:0030151;GO:0016491	oxidation-reduction process;nitrate assimilation;molybdenum ion binding;oxidoreductase activity	NIT1
+Cre09.g388100						
+Cre09.g389801						
+Cre09.g395510			Chloroplast			
+Cre09.g397300	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0006508;GO:0004176	proteolysis;ATP-dependent peptidase activity	
+Cre09.g396139	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase				
+Cre09.g395650						
+Cre09.g399030	GMM:16.1.3.1;GMM:13.2.6.2	secondary metabolism.isoprenoids.tocopherol biosynthesis.hydroxyphenylpyruvate dioxygenase;amino acid metabolism.degradation.aromatic aa.tyrosine		GO:0055114;GO:0016701;GO:0009072;GO:0003868	"oxidation-reduction process;oxidoreductase activity, acting on single donors with incorporation of molecular oxygen;aromatic amino acid family metabolic process;4-hydroxyphenylpyruvate dioxygenase activity"	HPD2
+Cre09.g406600			Secretory pathway			
+Cre09.g394621			Chloroplast	GO:2001070	starch binding	
+Cre09.g413132						
+Cre09.g409426						
+Cre09.g413150			Chloroplast			
+Cre09.g416450			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre09.g387689						FAP76
+Cre09.g413500						
+Cre09.g390600	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre09.g389600	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g410000						
+Cre09.g400145						
+Cre09.g398652						
+Cre09.g416800						
+Cre09.g399141	GMM:34.7;GMM:34.2	transport.phosphate;transport.sugars	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre09.g390282			Mitochondrion	GO:0016021	integral component of membrane	
+Cre09.g402182						
+Cre09.g412400						
+Cre09.g406800	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0016020;GO:0008233;GO:0006465	membrane;peptidase activity;signal peptide processing	SPC18
+Cre09.g405350			Mitochondrion			
+Cre09.g400960			Chloroplast	GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre09.g408000			Secretory pathway			
+Cre09.g391319			Mitochondrion			
+Cre09.g398100	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g398350	GMM:29.5.11	protein.degradation.ubiquitin	Mitochondrion	GO:0034450;GO:0016567;GO:0006511;GO:0004842;GO:0000151	ubiquitin-ubiquitin ligase activity;protein ubiquitination;ubiquitin-dependent protein catabolic process;ubiquitin-protein transferase activity;ubiquitin ligase complex	
+Cre09.g386750	GMM:29.6.2.4;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP90s;stress.abiotic.heat	Cytosol;Chloroplast	GO:0051082;GO:0006950;GO:0006457;GO:0005524	unfolded protein binding;response to stress;protein folding;ATP binding	HSP90A
+Cre09.g396850			Chloroplast			
+Cre09.g400400			Secretory pathway	GO:0016020	membrane	
+Cre09.g403400						
+Cre09.g393800			Chloroplast			
+Cre09.g395450			Mitochondrion	GO:0005515	protein binding	
+Cre09.g388400						RAT1
+Cre09.g388652			Secretory pathway			
+Cre09.g386738			Secretory pathway			
+Cre09.g412175			Mitochondrion			
+Cre09.g390171	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g414850				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre09.g392729	GMM:13.2.3.4	amino acid metabolism.degradation.aspartate family.methionine	Mitochondrion	GO:0016742;GO:0009058	"hydroxymethyl-, formyl- and related transferase activity;biosynthetic process"	mtf2
+Cre09.g414550			Secretory pathway			CSR7
+Cre09.g390603			Mitochondrion			
+Cre09.g401551	GMM:11.8.4	"lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"	Chloroplast			
+Cre09.g387245	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020;GO:0006486;GO:0004576	membrane;protein glycosylation;oligosaccharyl transferase activity	
+Cre09.g388504						
+Cre09.g394200	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP102
+Cre09.g393150	GMM:15.2	"metal handling.binding, chelation and storage"		GO:0055114;GO:0016491;GO:0005507	oxidation-reduction process;oxidoreductase activity;copper ion binding	FOX1
+Cre09.g394176			Mitochondrion			
+Cre09.g410350			Chloroplast			
+Cre09.g387350	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG30
+Cre09.g406500			Chloroplast			
+Cre09.g411975						
+Cre09.g397803						
+Cre09.g407016						
+Cre09.g413700	GMM:34.8	transport.metabolite transporters at the envelope membrane				
+Cre09.g386743						
+Cre09.g393250			Mitochondrion	GO:0016020	membrane	
+Cre09.g401589						
+Cre09.g391600			Chloroplast			MEP1
+Cre09.g390050	GMM:18.1	Co-factor and vitamine metabolism.molybdenum cofactor				MOL1
+Cre09.g393654	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors				
+Cre09.g389393			Mitochondrion			
+Cre09.g397290						
+Cre09.g393432			Mitochondrion			
+Cre09.g392803						
+Cre09.g417100			Mitochondrion			
+Cre09.g391352						
+Cre09.g390250						
+Cre09.g386950			Mitochondrion			
+Cre09.g408650						
+Cre09.g389726						
+Cre09.g387430						
+Cre09.g401775						
+Cre09.g399886			Mitochondrion			
+Cre09.g388050			Chloroplast			
+Cre09.g398252	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast			
+Cre09.g399150			Mitochondrion			
+Cre09.g396150			Secretory pathway			
+Cre09.g391875	GMM:33.99	development.unspecified	Chloroplast			
+Cre09.g402626						
+Cre09.g404903						
+Cre09.g411300			Mitochondrion			
+Cre09.g394732				GO:0035735	intraciliary transport involved in cilium morphogenesis	CEP131
+Cre09.g402108			Secretory pathway	GO:0016021;GO:0008381	integral component of membrane;mechanically-gated ion channel activity	
+Cre09.g394769			Chloroplast	GO:0006464	cellular protein modification process	
+Cre09.g396624						
+Cre09.g388060	GMM:16.1.4.21	secondary metabolism.isoprenoids.carotenoids.violaxanthin de-epoxidase	Chloroplast			VDR1
+Cre09.g394991			Mitochondrion			
+Cre09.g395658	GMM:31.3;GMM:31.2;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g400500						
+Cre09.g395102						
+Cre09.g397956	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG40
+Cre09.g413800	GMM:29.4	protein.postranslational modification				
+Cre09.g404552			Mitochondrion			
+Cre09.g390134	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g416700						
+Cre09.g407801			Chloroplast			AKC1
+Cre09.g387393	GMM:27.3.55	RNA.regulation of transcription.HDA				
+Cre09.g393839						
+Cre09.g387900			Mitochondrion			
+Cre09.g401400						
+Cre09.g386350	GMM:29.2.4;GMM:27.3.67	protein.synthesis.elongation;RNA.regulation of transcription.putative transcription regulator		GO:0008270;GO:0006351;GO:0005634;GO:0003677;GO:0003676	"zinc ion binding;transcription, DNA-templated;nucleus;DNA binding;nucleic acid binding"	
+Cre09.g392652			Secretory pathway	GO:0055114;GO:0050662;GO:0016491	oxidation-reduction process;coenzyme binding;oxidoreductase activity	
+Cre09.g393300			Secretory pathway			
+Cre09.g399067	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
+Cre09.g405850	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0055114;GO:0051287;GO:0048038;GO:0016651	"oxidation-reduction process;NAD binding;quinone binding;oxidoreductase activity, acting on NAD(P)H"	NUO7
+Cre09.g392134	GMM:16.2.1.10	secondary metabolism.phenylpropanoids.lignin biosynthesis.CAD	Chloroplast	GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	
+Cre09.g394550	GMM:23.1.3	nucleotide metabolism.synthesis.PRS-PP		GO:0009116	nucleoside metabolic process	RPPK2
+Cre09.g415750	GMM:34.99	transport.misc	Chloroplast	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT8
+Cre09.g414600			Mitochondrion			
+Cre09.g401900			Secretory pathway			
+Cre09.g396252	GMM:21.2.2	redox.ascorbate and glutathione.glutathione	Mitochondrion	GO:0055114;GO:0045454;GO:0016491	oxidation-reduction process;cell redox homeostasis;oxidoreductase activity	GSR2
+Cre09.g392654						
+Cre09.g410100	GMM:34.21;GMM:34.1	transport.calcium;transport.p- and v-ATPases		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	
+Cre09.g412350	GMM:21.99	redox.misc				
+Cre09.g392208						
+Cre09.g401849						
+Cre09.g413750	GMM:13.2.4.1;GMM:13.1.2.3.4;GMM:13.1.1.3.11	amino acid metabolism.degradation.branched chain group.shared;amino acid metabolism.synthesis.glutamate family.arginine.acetylornithine aminotransferase;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase	Mitochondrion	GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	
+Cre09.g392579			Mitochondrion			OPR10
+Cre09.g399589			Mitochondrion			
+Cre09.g389400			Chloroplast			
+Cre09.g388353			Secretory pathway			PHC34
+Cre09.g416100	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ11
+Cre09.g409901			Secretory pathway			PHC57
+Cre09.g389245						
+Cre09.g410900			Secretory pathway			NAR2
+Cre09.g402350				GO:0005515	protein binding	
+Cre09.g406416						
+Cre09.g393136	GMM:35.1.21	not assigned.no ontology.epsin N-terminal homology (ENTH) domain-containing protein				
+Cre09.g407450						
+Cre09.g402330	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g404904			Mitochondrion			
+Cre09.g410800	GMM:34.4	transport.nitrate	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NRT2.2
+Cre09.g395065						
+Cre09.g397142	GMM:34.99	transport.misc		GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity	TRP15
+Cre09.g414150						
+Cre09.g399916						
+Cre09.g395900			Secretory pathway			CSV3
+Cre09.g413141			Mitochondrion			
+Cre09.g386741						
+Cre09.g400312	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	protein binding	
+Cre09.g400367	GMM:27.1	RNA.processing		GO:0006396	RNA processing	
+Cre09.g403800	GMM:31.6.1.4.2.1;GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC14
+Cre09.g395500						HEATR2
+Cre09.g414650	GMM:31.3;GMM:29.4	cell.cycle;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g393395			Chloroplast			
+Cre09.g402650						
+Cre09.g393100						
+Cre09.g389875	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Chloroplast	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE7
+Cre09.g408500			Mitochondrion			
+Cre09.g391578	GMM:2.1.1.2	major CHO metabolism.synthesis.sucrose.SPP	Mitochondrion			
+Cre09.g391245	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	ATG1
+Cre09.g402960						
+Cre09.g399289	GMM:33.99;GMM:33.3;GMM:27.3.28	development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0005515;GO:0003677	nucleus;protein binding;DNA binding	
+Cre09.g396100	GMM:1.5	PS.carbon concentrating mechanism	Mitochondrion			PHC15
+Cre09.g387171	GMM:3.5;GMM:10.1.11;GMM:10.1.10	minor CHO metabolism.others;cell wall.precursor synthesis.UER;cell wall.precursor synthesis.RHM				RHM1
+Cre09.g387763	GMM:11.5.2	lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)		GO:0055114;GO:0009331;GO:0006072;GO:0005975;GO:0004367	oxidation-reduction process;glycerol-3-phosphate dehydrogenase complex;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity	
+Cre09.g392251			Secretory pathway			
+Cre09.g406200	GMM:29.1.40;GMM:29.1.15	protein.aa activation.bifunctional aminoacyl-tRNA synthetase;protein.aa activation.proline-tRNA ligase	Chloroplast	GO:0006433;GO:0006418;GO:0005737;GO:0005524;GO:0004827;GO:0004812;GO:0000166	prolyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;proline-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	PRORS1
+Cre09.g395200						
+Cre09.g390467	GMM:9.1.2;GMM:34.99	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;transport.misc				CGL66
+Cre09.g396650	GMM:2.2.1.2	major CHO metabolism.degradation.acetate metabolism.phosphate acetyltransferase	Chloroplast	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	PAT2
+Cre09.g416950	GMM:29.4	protein.postranslational modification		GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	MKP1
+Cre09.g401050			Secretory pathway			
+Cre09.g406550						RPP40
+Cre09.g405950						
+Cre09.g386755						
+Cre09.g399250			Chloroplast			KIR1
+Cre09.g412050						
+Cre09.g398850						
+Cre09.g397098						
+Cre09.g398750	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g407900				GO:0008168	methyltransferase activity	
+Cre09.g403300	GMM:27.3.50	RNA.regulation of transcription.general transcription		GO:0006289;GO:0005634;GO:0004003;GO:0000439	nucleotide-excision repair;nucleus;ATP-dependent DNA helicase activity;core TFIIH complex	
+Cre09.g416350	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006334;GO:0005634	nucleosome assembly;nucleus	
+Cre09.g404000	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			CPLD59
+Cre09.g394288			Secretory pathway			
+Cre09.g413075						
+Cre09.g412600	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190;GO:0000160	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;phosphorelay signal transduction system	CYG52
+Cre09.g386850			Secretory pathway			
+Cre09.g402663						
+Cre09.g389838	GMM:27.4	RNA.RNA binding	Secretory pathway	GO:0003676	nucleic acid binding	
+Cre09.g389050			Secretory pathway	GO:0016021	integral component of membrane	MAW4
+Cre09.g390949	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP140
+Cre09.g400000						
+Cre09.g395925			Mitochondrion			
+Cre09.g412150			Chloroplast			PPR11
+Cre09.g388763			Chloroplast	GO:0006629	lipid metabolic process	
+Cre09.g389750	GMM:27.3.11	RNA.regulation of transcription.C2H2 zinc finger family		GO:0008270	zinc ion binding	
+Cre09.g400850	GMM:26.16	misc.myrosinases-lectin-jacalin	Secretory pathway	GO:0030246;GO:0007155	carbohydrate binding;cell adhesion	CTL4
+Cre09.g392914			Mitochondrion;Chloroplast			
+Cre09.g417176						
+Cre09.g392500						
+Cre09.g396698			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre09.g397250	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase	Chloroplast	GO:0006629	lipid metabolic process	FAD5A
+Cre09.g386161			Secretory pathway			
+Cre09.g405050	GMM:34.1.1.3;GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit D;transport.p- and v-ATPases.H+-transporting two-sector ATPase	Chloroplast	GO:0042626	"ATPase activity, coupled to transmembrane movement of substances"	ATPVD2
+Cre09.g388912			Secretory pathway			
+Cre09.g399908			Mitochondrion			
+Cre09.g397900			Mitochondrion	GO:0016021	integral component of membrane	
+Cre09.g411751			Secretory pathway			
+Cre09.g390850			Secretory pathway			
+Cre09.g408950				GO:0006914	autophagy	
+Cre09.g400293			Chloroplast			
+Cre09.g403256				GO:0005525	GTP binding	
+Cre09.g401034						
+Cre09.g398808			Chloroplast	GO:0005515;GO:0000042	protein binding;protein targeting to Golgi	
+Cre09.g408150			Chloroplast			
+Cre09.g400701						
+Cre09.g397401						
+Cre09.g408900						
+Cre09.g388850	GMM:34.21;GMM:30.3;GMM:3.3	transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	FAP329
+Cre09.g399849						
+Cre09.g388600						
+Cre09.g413350						
+Cre09.g389300	GMM:29.4	protein.postranslational modification				
+Cre09.g393900	GMM:18.3.1	Co-factor and vitamine metabolism.riboflavin.GTP cyclohydrolase II	Chloroplast	GO:0009231;GO:0003935	riboflavin biosynthetic process;GTP cyclohydrolase II activity	GCH2
+Cre09.g390652			Chloroplast			
+Cre09.g390900						
+Cre09.g399914			Mitochondrion			SSA8
+Cre09.g407110	GMM:35.1.17	not assigned.no ontology.transcription factor jumonji (jmjC) domain-containing protein				
+Cre09.g415900	GMM:34.8	transport.metabolite transporters at the envelope membrane	Secretory pathway	GO:0055085	transmembrane transport	MOT20
+Cre09.g387502						
+Cre09.g394584	GMM:31.3;GMM:29.2.2.3.3	cell.cycle;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases	Chloroplast	GO:0008649;GO:0006364;GO:0005737	rRNA methyltransferase activity;rRNA processing;cytoplasm	GID2
+Cre09.g398697			Secretory pathway			
+Cre09.g388134			Secretory pathway			
+Cre09.g398178						
+Cre09.g392988			Secretory pathway			
+Cre09.g386119						
+Cre09.g386736	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0005515	protein binding	FAP44
+Cre09.g388900				GO:0016788;GO:0009058	"hydrolase activity, acting on ester bonds;biosynthetic process"	TEH10
+Cre09.g396994	GMM:26.1;GMM:17.2.2	misc.misc2;hormone metabolism.auxin.signal transduction	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
+Cre09.g397850			Chloroplast			
+Cre09.g409700			Chloroplast			
+Cre09.g399923			Chloroplast			
+Cre09.g394251	GMM:31.6.1.6.3	cell.motility.eukaryotes.central pair.C1		GO:0005515	protein binding	PF16
+Cre09.g405100						
+Cre09.g391134						
+Cre09.g391450	GMM:21.99	redox.misc	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	HCP1
+Cre09.g402812						
+Cre09.g388351			Secretory pathway			PHC32
+Cre09.g397068						
+Cre09.g388200	GMM:29.2.1.2.2.10	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L10		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL10
+Cre09.g393580						
+Cre09.g416616			Mitochondrion			
+Cre09.g396300	GMM:19.9	tetrapyrrole synthesis.protoporphyrin IX oxidase	Chloroplast			PPX1
+Cre09.g392950	GMM:27.1	RNA.processing		GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	tmg12
+Cre09.g409300			Secretory pathway			
+Cre09.g391504						
+Cre09.g389900				GO:0005634	nucleus	HRP4
+Cre09.g405000			Chloroplast			
+Cre09.g400250			Secretory pathway			
+Cre09.g408825	GMM:29.5.3	protein.degradation.cysteine protease	Chloroplast	GO:0016787	hydrolase activity	
+Cre09.g411500	GMM:23.2;GMM:23.1.2	nucleotide metabolism.degradation;nucleotide metabolism.synthesis.purine	Secretory pathway			URN4
+Cre09.g390541	GMM:11.9.2	lipid metabolism.lipid degradation.lipases				
+Cre09.g391370						
+Cre09.g391763	GMM:29.5	protein.degradation	Secretory pathway			
+Cre09.g395880			Chloroplast			
+Cre09.g398141	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor		GO:0015074;GO:0005515	DNA integration;protein binding	
+Cre09.g410200			Secretory pathway			
+Cre09.g397623			Secretory pathway			
+Cre09.g391430			Mitochondrion			
+Cre09.g399551						
+Cre09.g388245						
+Cre09.g393550	GMM:30.6;GMM:3.6	signalling.MAP kinases;minor CHO metabolism.callose		GO:0008270	zinc ion binding	
+Cre09.g408464				GO:0055114;GO:0031418;GO:0016706;GO:0016491;GO:0005506	"oxidation-reduction process;L-ascorbic acid binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors;oxidoreductase activity;iron ion binding"	
+Cre09.g398882	GMM:31.6.1.3.1.2	cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.cytoplasmic dynein 1b subunits		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	DLI1
+Cre09.g394473			Chloroplast	GO:2001070	starch binding	LCI9
+Cre09.g415650			Chloroplast			FAP351
+Cre09.g395176			Chloroplast			
+Cre09.g398051			Mitochondrion			
+Cre09.g390200	GMM:23.4.99	nucleotide metabolism.phosphotransfer and pyrophosphatases.misc	Chloroplast	GO:0006796;GO:0005737;GO:0004427;GO:0000287	phosphate-containing compound metabolic process;cytoplasm;inorganic diphosphatase activity;magnesium ion binding	
+Cre09.g401300				GO:0008270;GO:0005685;GO:0000398;GO:0000387	"zinc ion binding;U1 snRNP;mRNA splicing, via spliceosome;spliceosomal snRNP assembly"	
+Cre09.g387200	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG28
+Cre09.g388986				GO:0003676	nucleic acid binding	
+Cre09.g407550						
+Cre09.g386739			Chloroplast			
+Cre09.g391550						
+Cre09.g396200			Secretory pathway			CSV4
+Cre09.g391901						
+Cre09.g387550						CGL142
+Cre09.g402400						
+Cre09.g410700	GMM:8.2.9	TCA / organic transformation.other organic acid transformations.cyt MDH	Chloroplast	GO:0055114;GO:0016616;GO:0016615;GO:0016491;GO:0006108	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;malate dehydrogenase activity;oxidoreductase activity;malate metabolic process"	MDN5
+Cre09.g414800	GMM:29.5.5;GMM:17.3.2.99	protein.degradation.serine protease;hormone metabolism.brassinosteroid.signal transduction.other	Secretory pathway	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	
+Cre09.g388578			Chloroplast			
+Cre09.g394350	GMM:29.3.1	protein.targeting.nucleus		GO:0017056;GO:0006913;GO:0005643	structural constituent of nuclear pore;nucleocytoplasmic transport;nuclear pore	NUP155
+Cre09.g403550	GMM:26.7;GMM:17.5.1;GMM:16.8.4;GMM:16.4.1	"misc.oxidases - copper, flavone etc;hormone metabolism.ethylene.synthesis-degradation;secondary metabolism.flavonoids.flavonols;secondary metabolism.N misc.alkaloid-like"		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	FVS1
+Cre09.g401219	GMM:31.1	cell.organisation	Mitochondrion	GO:0005515	protein binding	
+Cre09.g401330	GMM:12.2.99	N-metabolism.ammonia metabolism.unspecified				
+Cre09.g411100	GMM:29.2.1.2.1.10	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S10				RPS10
+Cre09.g392850						
+Cre09.g399950			Secretory pathway			
+Cre09.g403182	GMM:28.1;GMM:27.3.52	DNA.synthesis/chromatin structure;RNA.regulation of transcription.global transcription factor group		GO:0032784;GO:0006357	"regulation of DNA-templated transcription, elongation;regulation of transcription from RNA polymerase II promoter"	
+Cre09.g396326			Mitochondrion	GO:0005515	protein binding	
+Cre09.g406350	GMM:29.3.99	protein.targeting.unknown	Secretory pathway			
+Cre09.g392300			Secretory pathway	GO:0008080	N-acetyltransferase activity	
+Cre09.g403200						FAP198
+Cre09.g397702			Chloroplast			
+Cre09.g411900	GMM:25.1;GMM:1.2.5	C1-metabolism.glycine hydroxymethyltransferase;PS.photorespiration.serine hydroxymethyltransferase	Chloroplast	GO:0016740	transferase activity	SHMT3
+Cre09.g398623						
+Cre09.g399600						
+Cre09.g412676	GMM:29.4	protein.postranslational modification				
+Cre09.g388319						
+Cre09.g402051	GMM:34.18	transport.unspecified anions		GO:0055085;GO:0016020;GO:0006821;GO:0005247	transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity	CLV4
+Cre09.g397550			Secretory pathway			
+Cre09.g392060	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZIP4
+Cre09.g396694						CSB35
+Cre09.g412850			Mitochondrion			
+Cre09.g389356	GMM:34.10;GMM:34.1	transport.nucleotides;transport.p- and v-ATPases	Chloroplast	GO:0055085;GO:0016020;GO:0005215	transmembrane transport;membrane;transporter activity	
+Cre09.g386949			Secretory pathway			
+Cre09.g400775	GMM:18.7;GMM:16.5	Co-factor and vitamine metabolism.iron-sulphur clusters;secondary metabolism.sulfur-containing				ISCA1
+Cre09.g412550			Secretory pathway			
+Cre09.g386476			Secretory pathway			
+Cre09.g413600			Secretory pathway			
+Cre09.g400219						
+Cre09.g389171						
+Cre09.g403700						
+Cre09.g393321			Mitochondrion	GO:0008146	sulfotransferase activity	CSR12
+Cre09.g401923						
+Cre09.g398950	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB37
+Cre09.g389023			Mitochondrion			
+Cre09.g402886						
+Cre09.g398450						
+Cre09.g414350			Secretory pathway	GO:0005515	protein binding	
+Cre09.g390550			Secretory pathway;Chloroplast			
+Cre09.g398200	GMM:26.16	misc.myrosinases-lectin-jacalin		GO:0005515	protein binding	
+Cre09.g411666						
+Cre09.g400800	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g415100	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG25
+Cre09.g414250	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway	GO:0016758;GO:0005789	"transferase activity, transferring hexosyl groups;endoplasmic reticulum membrane"	ALG8
+Cre09.g386734			Secretory pathway	GO:0016757;GO:0006486	"transferase activity, transferring glycosyl groups;protein glycosylation"	
+Cre09.g406050	GMM:23.1.1.10	nucleotide metabolism.synthesis.pyrimidine.CTP synthetase		GO:0006221;GO:0003883	pyrimidine nucleotide biosynthetic process;CTP synthase activity	PYR7
+Cre09.g404351				GO:0005515	protein binding	
+Cre09.g392505			Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre09.g392319			Secretory pathway			VSP6
+Cre09.g401738				GO:0016791	phosphatase activity	
+Cre09.g391023	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	
+Cre09.g412250						
+Cre09.g417250	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG27
+Cre09.g406750			Secretory pathway	GO:0016758;GO:0008152	"transferase activity, transferring hexosyl groups;metabolic process"	
+Cre09.g396065	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion			ALK5
+Cre09.g402900			Mitochondrion			
+Cre09.g389503						
+Cre09.g394028			Secretory pathway			
+Cre09.g397100						
+Cre09.g401000			Mitochondrion			SNE3
+Cre09.g399910			Mitochondrion			
+Cre09.g390393						
+Cre09.g391650	GMM:21.99	redox.misc	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	HCP4
+Cre09.g415400			Secretory pathway	GO:0006890	"retrograde vesicle-mediated transport, Golgi to ER"	
+Cre09.g393876	GMM:27.1	RNA.processing	Mitochondrion	GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
+Cre09.g396735	GMM:29.2.2	protein.synthesis.ribosome biogenesis				
+Cre09.g404850						
+Cre09.g401301						
+Cre09.g389615	GMM:27.1	RNA.processing	Mitochondrion			
+Cre09.g389851			Mitochondrion			
+Cre09.g395800						
+Cre09.g395806	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase	Chloroplast	GO:0071949	FAD binding	
+Cre09.g408051			Mitochondrion	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
+Cre09.g392400	GMM:29.3.4.2	protein.targeting.secretory pathway.golgi				SEC24C
+Cre09.g390875						
+Cre09.g401108			Mitochondrion			
+Cre09.g399960	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre09.g389200						UMM8
+Cre09.g397549						
+Cre09.g386650	GMM:34.9;GMM:34.8;GMM:34.14;GMM:2.1.2.5	transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane;transport.unspecified cations;major CHO metabolism.synthesis.starch.transporter				ANT1
+Cre09.g388801						
+Cre09.g400150			Chloroplast			
+Cre09.g400849	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g398401			Secretory pathway			
+Cre09.g398289	GMM:33.99	development.unspecified	Chloroplast	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	
+Cre09.g394843			Chloroplast	GO:0008270;GO:0005634	zinc ion binding;nucleus	
+Cre09.g400550			Chloroplast			NOA1
+Cre09.g410400						
+Cre09.g399215						FAP341
+Cre09.g400478	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase		GO:0046488;GO:0016307	phosphatidylinositol metabolic process;phosphatidylinositol phosphate kinase activity	DIV31
+Cre09.g397701						
+Cre09.g391000			Secretory pathway			
+Cre09.g402293			Secretory pathway			
+Cre09.g391208			Mitochondrion			PSRP4
+Cre09.g399552	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				LCR1
+Cre09.g386838			Chloroplast			
+Cre09.g386752			Mitochondrion			
+Cre09.g402738			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre09.g405600				GO:0005515	protein binding	SFT1
+Cre09.g395050			Chloroplast			
+Cre09.g393062	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g396475	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway			
+Cre09.g403404			Mitochondrion			
+Cre09.g416300			Secretory pathway			
+Cre09.g386759						
+Cre09.g387652						
+Cre09.g388372	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			RAT2
+Cre09.g391949	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	
+Cre09.g387541						
+Cre09.g387615						
+Cre09.g394954			Chloroplast			
+Cre09.g401960	GMM:26.25	misc.sulfotransferase		GO:0008146	sulfotransferase activity	
+Cre09.g387875	GMM:23.4.99	nucleotide metabolism.phosphotransfer and pyrophosphatases.misc		GO:0006796;GO:0005737;GO:0004427;GO:0000287	phosphate-containing compound metabolic process;cytoplasm;inorganic diphosphatase activity;magnesium ion binding	IPY3
+Cre09.g409850						
+Cre09.g389986			Mitochondrion			
+Cre09.g392504			Chloroplast			
+Cre09.g390430	GMM:32	"micro RNA, natural antisense etc"		GO:0005515	protein binding	
+Cre09.g404800			Secretory pathway			
+Cre09.g393450	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP233
+Cre09.g395695	GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g399907	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure	Chloroplast	GO:0005515	protein binding	
+Cre09.g390245						
+Cre09.g415950	GMM:29.2.1.1.1.2.6	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L6	Chloroplast	GO:0019843;GO:0006412;GO:0005840;GO:0003735	rRNA binding;translation;ribosome;structural constituent of ribosome	PRPL6
+Cre09.g406950			Chloroplast			
+Cre09.g414900	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG41
+Cre09.g405400	GMM:29.6.1	protein.folding.prefoldin and trigger factor		GO:0051082;GO:0016272;GO:0006457	unfolded protein binding;prefoldin complex;protein folding	PFP3
+Cre09.g386742						
+Cre09.g402478	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g401550						
+Cre09.g387100	GMM:30.1;GMM:3.1	signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family	Chloroplast			CGL12
+Cre09.g387208	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g402589	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre09.g393025						
+Cre09.g404350			Secretory pathway			
+Cre09.g412450	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005515;GO:0000228	protein binding;nuclear chromosome	RAD21
+Cre09.g396451			Secretory pathway			GOX15
+Cre09.g401997			Secretory pathway	GO:0055114;GO:0051287;GO:0004616	oxidation-reduction process;NAD binding;phosphogluconate dehydrogenase (decarboxylating) activity	
+Cre09.g392766				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g397700						
+Cre09.g387300						
+Cre09.g394065						
+Cre09.g391356			Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g396750	GMM:34.16;GMM:31.6.1.10	transport.ABC transporters and multidrug resistance systems;cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			CSE18
+Cre09.g415600			Chloroplast	GO:2001070	starch binding	
+Cre09.g393543	GMM:21.99	redox.misc	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	HCP2
+Cre09.g392750	GMM:31.4	cell.vesicle transport				
+Cre09.g393691	GMM:29.4.1;GMM:11.8.1;GMM:11.3.5;GMM:11.3	"protein.postranslational modification.kinase;lipid metabolism.exotics (steroids, squalene etc).sphingolipids;lipid metabolism.phospholipid synthesis.diacylglycerol kinase;lipid metabolism.phospholipid synthesis"		GO:0016301	kinase activity	KDG4
+Cre09.g403955						
+Cre09.g401071						
+Cre09.g401404						
+Cre09.g401663			Chloroplast			
+Cre09.g390763	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	FAP354
+Cre09.g410250			Chloroplast			
+Cre09.g414050	GMM:33.99;GMM:28.99;GMM:28.1.3	development.unspecified;DNA.unspecified;DNA.synthesis/chromatin structure.histone		GO:0043141;GO:0005524;GO:0003678	ATP-dependent 5'-3' DNA helicase activity;ATP binding;DNA helicase activity	
+Cre09.g413300						
+Cre09.g401626			Mitochondrion			
+Cre09.g403450			Mitochondrion			
+Cre09.g388355			Secretory pathway			PHC33
+Cre09.g392692	GMM:33.99	development.unspecified		GO:0005634	nucleus	
+Cre09.g399997						
+Cre09.g387023	GMM:30.6;GMM:30.2.19;GMM:29.4	signalling.MAP kinases;signalling.receptor kinases.legume-lectin;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g396586			Chloroplast			
+Cre09.g415150						
+Cre09.g394880	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation				
+Cre09.g391353			Mitochondrion			
+Cre09.g395954			Chloroplast			
+Cre09.g396587						
+Cre09.g393650	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
+Cre09.g390100				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre09.g393728	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	
+Cre09.g394800	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP16
+Cre09.g410150						
+Cre09.g398215	GMM:29.2.3	protein.synthesis.initiation	Mitochondrion	GO:0006413;GO:0003743	translational initiation;translation initiation factor activity	
+Cre09.g388393	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG13
+Cre09.g387951						
+Cre09.g399200	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
+Cre09.g389504			Mitochondrion			
+Cre09.g394000			Secretory pathway			
+Cre09.g408350						
+Cre09.g386107			Chloroplast			
+Cre09.g400600			Secretory pathway			
+Cre09.g400330	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	ALK6
+Cre09.g400071			Mitochondrion			
+Cre09.g415500			Mitochondrion			TCA1
+Cre09.g386732			Secretory pathway			
+Cre09.g412910			Chloroplast			
+Cre09.g411450	GMM:31.6.1.11	cell.motility.eukaryotes.other				DAP1
+Cre09.g409100	GMM:19.6	tetrapyrrole synthesis.uroporphyrinogen III synthase	Chloroplast	GO:0033014;GO:0004852	tetrapyrrole biosynthetic process;uroporphyrinogen-III synthase activity	UROS1
+Cre09.g417025						
+Cre09.g391100						
+Cre09.g410500			Chloroplast	GO:0016779	nucleotidyltransferase activity	PAP11
+Cre09.g403950	GMM:4.1.16;GMM:30.3;GMM:29.4.1;GMM:29.4	glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g413566			Mitochondrion			
+Cre09.g398919			Chloroplast			
+Cre09.g391097	GMM:29.2.2;GMM:29.2.1.2.2.24	protein.synthesis.ribosome biogenesis;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L24	Mitochondrion			RPL24
+Cre09.g400200						
+Cre09.g411876			Chloroplast			
+Cre09.g392430	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Secretory pathway			
+Cre09.g389430	GMM:29.1.20	protein.aa activation.phenylalanine-tRNA ligase		GO:0043039;GO:0005737;GO:0005524;GO:0004812;GO:0000049	tRNA aminoacylation;cytoplasm;ATP binding;aminoacyl-tRNA ligase activity;tRNA binding	
+Cre09.g412300			Chloroplast	GO:0030150;GO:0005744	protein import into mitochondrial matrix;mitochondrial inner membrane presequence translocase complex	TIM16
+Cre09.g395991				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g388750	GMM:30.4;GMM:11.9.3.5;GMM:1.1.99.1	signalling.phosphinositides;lipid metabolism.lipid degradation.lysophospholipases.phosphoinositide phospholipase C;PS.lightreaction.unspecified.TEF		GO:0042578	phosphoric ester hydrolase activity	TEF21
+Cre09.g395288	GMM:34.12	transport.metal		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre09.g386745			Mitochondrion			
+Cre09.g391700			Chloroplast			
+Cre09.g415240	GMM:29.2.99	protein.synthesis.misc				
+Cre09.g390097	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g400182	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast			
+Cre09.g394362						
+Cre09.g395700			Mitochondrion	GO:0016020	membrane	
+Cre09.g399073	GMM:26.28	misc.GDSL-motif lipase	Chloroplast	GO:0016788	"hydrolase activity, acting on ester bonds"	
+Cre09.g413114			Chloroplast			
+Cre09.g397002						
+Cre09.g405750	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Mitochondrion	GO:0008270;GO:0004089	zinc ion binding;carbonate dehydratase activity	CAH8
+Cre09.g404201	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC30
+Cre09.g389097	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre09.g412940						
+Cre09.g386751			Mitochondrion			
+Cre09.g397845	GMM:30.5;GMM:28.2	signalling.G-proteins;DNA.repair	Mitochondrion	GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	
+Cre09.g413475						
+Cre09.g394900	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre09.g401256			Secretory pathway			
+Cre09.g403330						
+Cre09.g407300			Chloroplast			
+Cre09.g391050			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre09.g400886	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g399650			Mitochondrion			
+Cre09.g416750	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0005524	ATP binding	CCT2
+Cre09.g390578	GMM:34.99	transport.misc		GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity	FAP11
+Cre09.g394139						
+Cre09.g399775	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre09.g401700	GMM:35.1.5;GMM:35.1.27	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;not assigned.no ontology.tetratricopeptide repeat (TPR)				
+Cre09.g386149			Chloroplast			
+Cre09.g393954						FAP106
+Cre09.g389500						
+Cre09.g403441						
+Cre09.g409350	GMM:27.2	RNA.transcription		GO:0016887;GO:0005524	ATPase activity;ATP binding	RLI1
+Cre09.g403145						
+Cre09.g399104						
+Cre09.g402601			Mitochondrion			
+Cre09.g386250				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre09.g408700			Mitochondrion			
+Cre09.g397500			Chloroplast			
+Cre09.g411150			Secretory pathway			
+Cre09.g393200	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Mitochondrion.Matrix			HSP70C
+Cre09.g406650			Secretory pathway			
+Cre09.g407600						
+Cre09.g395547						
+Cre09.g386730						
+Cre09.g403000	GMM:27.1	RNA.processing	Secretory pathway	GO:0016779	nucleotidyltransferase activity	PAP9
+Cre09.g388150				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL36
+Cre09.g399350			Mitochondrion			
+Cre09.g387600						
+Cre09.g398900	GMM:1.5	PS.carbon concentrating mechanism	Chloroplast			GP1
+Cre09.g398550	GMM:31.2;GMM:29.5.9;GMM:29.5.11.20;GMM:29.2.2.1	cell.division;protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	
+Cre09.g392000						
+Cre09.g416500	GMM:27.3.11	RNA.regulation of transcription.C2H2 zinc finger family				CGL151
+Cre09.g411250						
+Cre09.g404900			Secretory pathway			
+Cre09.g393000						CSR6
+Cre09.g408676						
+Cre09.g398400	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	TRP5
+Cre09.g393551			Mitochondrion	GO:0005515	protein binding	
+Cre09.g390350			Secretory pathway			
+Cre09.g397800						
+Cre09.g395400						
+Cre09.g403350			Chloroplast			
+Cre09.g415850	GMM:9.1.1.5	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I.carbonic anhydrase				CAG3
+Cre09.g403050	GMM:29.4.1;GMM:2.2.2	protein.postranslational modification.kinase;major CHO metabolism.degradation.starch	Chloroplast	GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	DSP6
+Cre09.g410332	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g394250			Secretory pathway			
+Cre09.g401478			Mitochondrion	GO:0055114;GO:0006744	oxidation-reduction process;ubiquinone biosynthetic process	
+Cre09.g401812	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005524	ATP binding	
+Cre09.g389912	GMM:11.9.3	lipid metabolism.lipid degradation.lysophospholipases		GO:0005515	protein binding	
+Cre09.g400034	GMM:20.2.3	stress.abiotic.drought/salt	Chloroplast			
+Cre09.g391282				GO:0016757	"transferase activity, transferring glycosyl groups"	XYT1
+Cre09.g393358	GMM:27.3.70	RNA.regulation of transcription.silencing group				
+Cre09.g398555						
+Cre09.g386300	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB34
+Cre09.g411350			Mitochondrion			
+Cre09.g395028			Mitochondrion			
+Cre09.g404450	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP24
+Cre09.g417037						
+Cre09.g396661						DIV39
+Cre09.g387400	GMM:28.1	DNA.synthesis/chromatin structure		GO:0019985;GO:0016035;GO:0008408;GO:0006281;GO:0003677;GO:0000166	translesion synthesis;zeta DNA polymerase complex;3'-5' exonuclease activity;DNA repair;DNA binding;nucleotide binding	POLZ1
+Cre09.g401500	GMM:11.8.4	"lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	BSD3
+Cre09.g397475						
+Cre09.g395621				GO:0009966	regulation of signal transduction	
+Cre09.g403650	GMM:29.4	protein.postranslational modification	Chloroplast			
+Cre09.g398512			Secretory pathway			
+Cre09.g393247			Secretory pathway			
+Cre09.g398983						
+Cre09.g386740			Mitochondrion			
+Cre09.g394213	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm				DLT4
+Cre09.g390208			Chloroplast			
+Cre09.g390000	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
+Cre09.g401552			Chloroplast			
+Cre09.g408600				GO:0016491;GO:0008198;GO:0006725	oxidoreductase activity;ferrous iron binding;cellular aromatic compound metabolic process	
+Cre09.g390726						
+Cre09.g406851	GMM:31.3;GMM:31.2;GMM:27.3.99	cell.cycle;cell.division;RNA.regulation of transcription.unclassified				
+Cre09.g388450	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG29
+Cre09.g416200	GMM:27.1;GMM:1.1.1.3	RNA.processing;PS.lightreaction.photosystem II.biogenesis	Mitochondrion			MBB1
+Cre09.g394100	GMM:31.4;GMM:29.3.4.99	cell.vesicle transport;protein.targeting.secretory pathway.unspecified		GO:0015031;GO:0008565	protein transport;protein transporter activity	AP1S1
+Cre09.g392650	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	MOT39
+Cre09.g386737			Secretory pathway			
+Cre09.g386900	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAB18
+Cre09.g398475			Secretory pathway			
+Cre09.g396401	GMM:19.30;GMM:19.3	tetrapyrrole synthesis.urogen III methylase;tetrapyrrole synthesis.GSA	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	UPM1
+Cre09.g392840						
+Cre09.g413200	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g388000	GMM:31.2;GMM:29.4	cell.division;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDKD1
+Cre09.g413950			Mitochondrion	GO:0005509	calcium ion binding	EFH6
+Cre09.g406448						
+Cre09.g396000	GMM:34.4	transport.nitrate		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NRT2.3
+Cre09.g397697	GMM:29.2.1.2.2.141	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L4/L1		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL4
+Cre09.g398250						
+Cre09.g407700	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP1
+Cre09.g388467	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				GDI1
+Cre09.g393400	GMM:17.3.1.2.2;GMM:16.1.3.5	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.SMT2;secondary metabolism.isoprenoids.tocopherol biosynthesis.tocopherol methyltransferase	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	VTE4
+Cre09.g406300	GMM:29.3.99	protein.targeting.unknown				
+Cre09.g400450	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g414482						
+Cre09.g387467			Secretory pathway			
+Cre09.g394102	GMM:26.22;GMM:23.4.2	misc.short chain dehydrogenase/reductase (SDR);nucleotide metabolism.phosphotransfer and pyrophosphatases.guanylate kinase	Mitochondrion			GUK2
+Cre09.g387986			Mitochondrion			
+Cre09.g386125						
+Cre09.g417350						
+Cre09.g402071			Secretory pathway			
+Cre09.g405500						MLD1
+Cre09.g394806			Chloroplast			
+Cre09.g388097	GMM:29.3.3	protein.targeting.chloroplast	Mitochondrion	GO:0019867	outer membrane	OEP80
+Cre09.g407950			Secretory pathway			
+Cre09.g387000			Chloroplast			CGL34
+Cre09.g388838						
+Cre09.g388700	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g399915	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast			
+Cre09.g397771			Chloroplast			OPR117
+Cre09.g391689			Mitochondrion			
+Cre09.g389689	GMM:13.1.3.6.1.2	amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate semialdehyde dehydrogenase	Chloroplast	GO:0055114;GO:0051287;GO:0046983;GO:0016620;GO:0008652;GO:0005737;GO:0003942	"oxidation-reduction process;NAD binding;protein dimerization activity;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor;cellular amino acid biosynthetic process;cytoplasm;N-acetyl-gamma-glutamyl-phosphate reductase activity"	ASD1
+Cre09.g404100	GMM:34.18	transport.unspecified anions		GO:0055085;GO:0016020;GO:0006821;GO:0005247	transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity	CLV3
+Cre09.g391171						
+Cre09.g392616			Secretory pathway			
+Cre09.g401182	GMM:30.3;GMM:29.5.11.20	signalling.calcium;protein.degradation.ubiquitin.proteasom	Secretory pathway	GO:0005524	ATP binding	CGL153
+Cre09.g402150				GO:0055114;GO:0009231;GO:0008703	oxidation-reduction process;riboflavin biosynthetic process;5-amino-6-(5-phosphoribosylamino)uracil reductase activity	
+Cre09.g389650	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g392105			Mitochondrion			
+Cre09.g390504						
+Cre09.g405800	GMM:17.7.1;GMM:17.5.1	hormone metabolism.jasmonate.synthesis-degradation;hormone metabolism.ethylene.synthesis-degradation	Chloroplast			
+Cre09.g389100	GMM:31.4	cell.vesicle transport	Secretory pathway	GO:0016192	vesicle-mediated transport	GOT1
+Cre09.g386173						
+Cre09.g407150						
+Cre09.g395362			Chloroplast			
+Cre09.g394695						
+Cre09.g397031	GMM:26.1;GMM:17.2.2	misc.misc2;hormone metabolism.auxin.signal transduction		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
+Cre09.g409650	GMM:29.5.11.4.2;GMM:27.3.99	protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
+Cre09.g400627			Mitochondrion			
+Cre09.g395473			Chloroplast			
+Cre09.g415300						
+Cre09.g407373			Mitochondrion	GO:0008080	N-acetyltransferase activity	
+Cre09.g408300						
+Cre09.g390023	GMM:33.99;GMM:33.3;GMM:27.3.28	development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	CRR1
+Cre09.g410050	GMM:34.21;GMM:34.1	transport.calcium;transport.p- and v-ATPases		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	
+Cre09.g405200	GMM:29.2.1.2.2.13;GMM:29.2.1.1.4.2;GMM:29.2.1.1.3.2.13	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L13;protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L13		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPL13
+Cre09.g392867	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins	Secretory pathway			FMG2
+Cre09.g399402	GMM:26.1	misc.misc2	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
+Cre09.g400100	GMM:27.3.99;GMM:27.3.11	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.C2H2 zinc finger family		GO:0008270;GO:0003677	zinc ion binding;DNA binding	
+Cre09.g396846	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
+Cre09.g399663	GMM:30.99	signalling.unspecified				FXL7
+Cre09.g387060	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
+Cre09.g403034				GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre09.g395550						
+Cre09.g399601			Mitochondrion			
+Cre09.g402100						
+Cre09.g397327				GO:0016773;GO:0006303;GO:0005634;GO:0005524;GO:0005515;GO:0004677;GO:0003677	"phosphotransferase activity, alcohol group as acceptor;double-strand break repair via nonhomologous end joining;nucleus;ATP binding;protein binding;DNA-dependent protein kinase activity;DNA binding"	
+Cre09.g389350			Mitochondrion			
+Cre09.g409200						
+Cre09.g389282	GMM:31.6.1.6.1	cell.motility.eukaryotes.central pair.C1a				FAP114
+Cre09.g413400	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g402500	GMM:34.1	transport.p- and v-ATPases		GO:0033179;GO:0015991;GO:0015078	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVA2
+Cre09.g404700						
+Cre09.g407050	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP24
+Cre09.g389763						HPAT4
+Cre09.g402441						
+Cre09.g402219			Chloroplast			LCI3
+Cre09.g386757			Chloroplast			
+Cre09.g386753	GMM:27.3.81	RNA.regulation of transcription.S1FA		GO:0006355;GO:0005634;GO:0003677	"regulation of transcription, DNA-templated;nucleus;DNA binding"	
+Cre09.g399000	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
+Cre09.g395950	GMM:9.4	mitochondrial electron transport / ATP synthesis.alternative oxidase	Mitochondrion	GO:0055114;GO:0009916	oxidation-reduction process;alternative oxidase activity	AOX1
+Cre09.g399178	GMM:33.99;GMM:30.11.1	development.unspecified;signalling.light.COP9 signalosome		GO:0005515	protein binding	CSN5
+Cre09.g397350	GMM:28.1	DNA.synthesis/chromatin structure		GO:0016818;GO:0008026;GO:0006139;GO:0005524;GO:0004003;GO:0003677;GO:0003676	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;ATP-dependent helicase activity;nucleobase-containing compound metabolic process;ATP binding;ATP-dependent DNA helicase activity;DNA binding;nucleic acid binding"	XPD3
+Cre09.g402750				GO:0016020;GO:0015031;GO:0007030	membrane;protein transport;Golgi organization	COG2
+Cre09.g387700			Mitochondrion			
+Cre09.g388689	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g397919			Chloroplast			
+Cre09.g412201						
+Cre09.g395646	GMM:3.5	minor CHO metabolism.others	Chloroplast			
+Cre09.g409750	GMM:34.21	transport.calcium	Chloroplast	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	CAX2
+Cre09.g387912						FAP139
+Cre09.g403108			Mitochondrion	GO:0006464	cellular protein modification process	
+Cre09.g405105						
+Cre09.g401800	GMM:30.2.99;GMM:30.11	signalling.receptor kinases.misc;signalling.light	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre09.g395100	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	MKP4
+Cre09.g412750	GMM:35.1.3	not assigned.no ontology.armadillo/beta-catenin repeat family protein		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre09.g390750	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG24
+Cre09.g413425			Secretory pathway			
+Cre09.g397400	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre09.g411050						
+Cre09.g402849			Chloroplast			
+Cre09.g397050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				
+Cre09.g398067	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs		GO:0006457	protein folding	FKB62
+Cre09.g397052			Mitochondrion			
+Cre09.g398734			Mitochondrion			
+Cre09.g394658	GMM:3.5;GMM:16.8.2	minor CHO metabolism.others;secondary metabolism.flavonoids.chalcones				LCI28
+Cre09.g386137						
+Cre09.g409550						
+Cre09.g409500	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0003676	nucleic acid binding	
+Cre09.g404950						
+Cre09.g398993	GMM:16.1.3.1;GMM:13.2.6.2	secondary metabolism.isoprenoids.tocopherol biosynthesis.hydroxyphenylpyruvate dioxygenase;amino acid metabolism.degradation.aromatic aa.tyrosine		GO:0055114;GO:0016701;GO:0009072;GO:0003868	"oxidation-reduction process;oxidoreductase activity, acting on single donors with incorporation of molecular oxygen;aromatic amino acid family metabolic process;4-hydroxyphenylpyruvate dioxygenase activity"	HPD1
+Cre09.g396809			Chloroplast			
+Cre30.g758197			Chloroplast			
+Cre30.g758297						
+Cre30.g757997			Mitochondrion			
+Cre30.g758247			Chloroplast			
+Cre30.g758147			Mitochondrion			
+Cre30.g758097						
+Cre30.g758047						
+Cre31.g758447						CSU8
+Cre31.g758347			Chloroplast			
+Cre31.g758497			Chloroplast			
+Cre31.g758397						
+Cre40.g760247	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre40.g760147						
+Cre40.g760197						
+Cre35.g759447						
+Cre35.g759347	GMM:29.4	protein.postranslational modification	Mitochondrion			
+Cre35.g759397			Secretory pathway			
+Cre35.g759297			Secretory pathway			
+Cre35.g759497						
+Cre35.g759247	GMM:26.16	misc.myrosinases-lectin-jacalin	Chloroplast			SRR5
+Cre33.g758847	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
+Cre33.g758997						
+Cre33.g758897	GMM:28.1;GMM:27.1	DNA.synthesis/chromatin structure;RNA.processing		GO:0006397;GO:0006370;GO:0004484	mRNA processing;7-methylguanosine mRNA capping;mRNA guanylyltransferase activity	
+Cre33.g759047						
+Cre33.g758947				GO:0008146	sulfotransferase activity	CSR11
+Cre17.g705750			Chloroplast			
+Cre17.g716451	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre17.g715350	GMM:33.99;GMM:31.4;GMM:3.5;GMM:29.5.11.5	development.unspecified;cell.vesicle transport;minor CHO metabolism.others;protein.degradation.ubiquitin.ubiquitin protease		GO:0005096	GTPase activator activity	
+Cre17.g715400	GMM:30.5	signalling.G-proteins				
+Cre17.g703700	GMM:8.1.6	TCA / organic transformation.TCA.succinyl-CoA ligase	Mitochondrion	GO:0008152;GO:0003824	metabolic process;catalytic activity	SCLB1
+Cre17.g746497						
+Cre17.g712771						
+Cre17.g727900						
+Cre17.g741700	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIL22
+Cre17.g731450						
+Cre17.g731700	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO2
+Cre17.g739050			Secretory pathway			
+Cre17.g728700	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g731500						FAP394
+Cre17.g712742			Chloroplast			
+Cre17.g747297			Secretory pathway	GO:0004045	aminoacyl-tRNA hydrolase activity	FAP37
+Cre17.g702850	GMM:34.21	transport.calcium	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV5
+Cre17.g719651						
+Cre17.g737800			Chloroplast			
+Cre17.g719500			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	AOF9
+Cre17.g696300	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0003676	nucleic acid binding	
+Cre17.g709900	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre17.g726526						
+Cre17.g698903	GMM:2.1.2.4	major CHO metabolism.synthesis.starch.debranching	Chloroplast			
+Cre17.g724500			Secretory pathway			
+Cre17.g720850						
+Cre17.g713600	GMM:29.5.1	protein.degradation.subtilases	Chloroplast	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB13
+Cre17.g737250	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	GTP binding	EFG5
+Cre17.g742050						
+Cre17.g719750			Mitochondrion			
+Cre17.g697900			Chloroplast			
+Cre17.g739466			Chloroplast			
+Cre17.g700300	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	CGL22
+Cre17.g715653			Mitochondrion			
+Cre17.g724276						
+Cre17.g717350	GMM:27.1	RNA.processing	Chloroplast	GO:0008033	tRNA processing	TRI1
+Cre17.g701050	GMM:27.3.11	RNA.regulation of transcription.C2H2 zinc finger family				
+Cre17.g707350			Mitochondrion			
+Cre17.g729400	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre17.g722500						
+Cre17.g729900			Mitochondrion			
+Cre17.g739650	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	MFT1
+Cre17.g711700	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA30
+Cre17.g736400			Chloroplast			SCC3
+Cre17.g703976			Chloroplast			
+Cre17.g704100			Secretory pathway			
+Cre17.g733752						
+Cre17.g712000	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	SRS11
+Cre17.g697200						
+Cre17.g734050						
+Cre17.g708800	GMM:21.2.2	redox.ascorbate and glutathione.glutathione		GO:0006750;GO:0005524;GO:0004363	glutathione biosynthetic process;ATP binding;glutathione synthase activity	GSH2
+Cre17.g706300	GMM:28.2	DNA.repair		GO:0016818;GO:0016787;GO:0008026;GO:0006139;GO:0005634;GO:0005524;GO:0003677;GO:0003676	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;hydrolase activity;ATP-dependent helicase activity;nucleobase-containing compound metabolic process;nucleus;ATP binding;DNA binding;nucleic acid binding"	XPD1
+Cre17.g738632						
+Cre17.g704802			Secretory pathway			
+Cre17.g730400	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
+Cre17.g699100	GMM:33.1	development.storage proteins	Mitochondrion	GO:0006629;GO:0004806	lipid metabolic process;triglyceride lipase activity	TGL20
+Cre17.g696400	GMM:29.5;GMM:29.2.1.1.3.2.1712	protein.degradation;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L7/L12	Chloroplast	GO:0030163	protein catabolic process	CLPS1
+Cre17.g745247			Mitochondrion			
+Cre17.g742700	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0005515	protein binding	CGLD30
+Cre17.g725800						
+Cre17.g714229	GMM:34.15;GMM:27.3.25	transport.potassium;RNA.regulation of transcription.MYB domain transcription factor family	Secretory pathway			KUP2
+Cre17.g721300	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase				ASA5
+Cre17.g701800						
+Cre17.g722800	GMM:29.5;GMM:29.3.2	protein.degradation;protein.targeting.mitochondria	Mitochondrion			MPPA1
+Cre17.g698600	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	LIP3
+Cre17.g711450						SYP8
+Cre17.g718500	GMM:31.6.1.9;GMM:29.5.7	cell.motility.eukaryotes.flagellar adhesion and gamete fusion;protein.degradation.metalloprotease	Secretory pathway			MMP1
+Cre17.g736584			Secretory pathway			
+Cre17.g740300						
+Cre17.g701450	GMM:3.5;GMM:1.1.99.1	minor CHO metabolism.others;PS.lightreaction.unspecified.TEF	Secretory pathway			
+Cre17.g714300						
+Cre17.g727350				GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPL23
+Cre17.g718185						
+Cre17.g708450	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			MMP33
+Cre17.g710700			Chloroplast			
+Cre17.g740550			Secretory pathway			
+Cre17.g722300			Secretory pathway			
+Cre17.g730150			Chloroplast			
+Cre17.g720400	GMM:34.12	transport.metal	Chloroplast	GO:0046872;GO:0000166	metal ion binding;nucleotide binding	HMA1
+Cre17.g743697			Mitochondrion			
+Cre17.g738700			Mitochondrion			
+Cre17.g718468			Secretory pathway			
+Cre17.g735900			Mitochondrion			
+Cre17.g717950	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC28
+Cre17.g732150			Mitochondrion			FAP130
+Cre17.g710879						
+Cre17.g699200						
+Cre17.g710550	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HFO29
+Cre17.g719325						MAW5
+Cre17.g699750						CTL2
+Cre17.g746747						
+Cre17.g722250			Chloroplast			
+Cre17.g740470			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre17.g720000			Cytosol	GO:0005524	ATP binding	CCT9
+Cre17.g723300	GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4;GMM:27.3.99	cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification;RNA.regulation of transcription.unclassified		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g697406			Mitochondrion			
+Cre17.g738350			Secretory pathway	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	PGA5
+Cre17.g733600						
+Cre17.g733652						
+Cre17.g714600	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO33
+Cre17.g700133	GMM:29.4	protein.postranslational modification				WNK1
+Cre17.g713025	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	DNJ33
+Cre17.g702250			Chloroplast			
+Cre17.g728900			Mitochondrion	GO:0005975	carbohydrate metabolic process	TAL3
+Cre17.g730817			Chloroplast			
+Cre17.g721600	GMM:29.5.11.1;GMM:27.1	protein.degradation.ubiquitin.ubiquitin;RNA.processing		GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
+Cre17.g738400			Secretory pathway			
+Cre17.g743269						
+Cre17.g697300	GMM:29.5.3	protein.degradation.cysteine protease		GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP16
+Cre17.g745997			Chloroplast			
+Cre17.g722675			Chloroplast			
+Cre17.g708025						
+Cre17.g703250	GMM:34.99;GMM:34	transport.misc;transport				
+Cre17.g735021						
+Cre17.g703101			Chloroplast			
+Cre17.g736050			Secretory pathway			
+Cre17.g703473						
+Cre17.g741900	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre17.g724900						
+Cre17.g734596			Mitochondrion			
+Cre17.g707800	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre17.g732400			Chloroplast			
+Cre17.g713850	GMM:13.1.5.3.2	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.SAT	Chloroplast	GO:0009001;GO:0006535;GO:0005737	serine O-acetyltransferase activity;cysteine biosynthetic process from serine;cytoplasm	SAT2
+Cre17.g716000						
+Cre17.g732700			Chloroplast	GO:0055070;GO:0005507	copper ion homeostasis;copper ion binding	CUTC1
+Cre17.g738250	GMM:16.1.5	secondary metabolism.isoprenoids.terpenoids	Chloroplast	GO:0016765	"transferase activity, transferring alkyl or aryl (other than methyl) groups"	
+Cre17.g747947						
+Cre17.g717550						
+Cre17.g744997			Mitochondrion			
+Cre17.g707850				GO:0003677	DNA binding	
+Cre17.g705600	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase	Secretory pathway	GO:0006629	lipid metabolic process	
+Cre17.g712850	GMM:21.1	redox.thioredoxin	Secretory pathway	GO:0045454	cell redox homeostasis	TRX23
+Cre17.g731850	GMM:26.8;GMM:26.22	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;misc.short chain dehydrogenase/reductase (SDR)"	Mitochondrion			
+Cre17.g707500	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast			
+Cre17.g733050						
+Cre17.g730483			Chloroplast			
+Cre17.g696900	GMM:30.2.24;GMM:29.4	signalling.receptor kinases.S-locus glycoprotein like;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g746597	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	
+Cre17.g739350			Secretory pathway			
+Cre17.g745347	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				
+Cre17.g703350			Chloroplast			
+Cre17.g708200	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO26
+Cre17.g712300			Chloroplast			
+Cre17.g710200			Chloroplast	GO:0020037	heme binding	IAD1
+Cre17.g720700	GMM:31.1	cell.organisation	Chloroplast			ANK14
+Cre17.g729050						
+Cre17.g699000	GMM:2.2.1.2	major CHO metabolism.degradation.acetate metabolism.phosphate acetyltransferase	Mitochondrion	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	PAT1
+Cre17.g727801			Mitochondrion			
+Cre17.g746097						
+Cre17.g735700			Secretory pathway			
+Cre17.g725700						
+Cre17.g700850						
+Cre17.g720950	GMM:17.3.1.1.1	hormone metabolism.brassinosteroid.synthesis-degradation.BRs.DET2	Secretory pathway	GO:0016627;GO:0016021;GO:0006629;GO:0005737	"oxidoreductase activity, acting on the CH-CH group of donors;integral component of membrane;lipid metabolic process;cytoplasm"	srd3
+Cre17.g736750						
+Cre17.g744047			Chloroplast			
+Cre17.g716200	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	SUM6
+Cre17.g715550						
+Cre17.g719550						
+Cre17.g744647						
+Cre17.g728976			Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
+Cre17.g733800						
+Cre17.g741400			Secretory pathway			
+Cre17.g734628	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre17.g696700			Secretory pathway			PHC22
+Cre17.g707250				GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT29
+Cre17.g711100	GMM:27.3.42	RNA.regulation of transcription.bromodomain proteins		GO:0005515	protein binding	
+Cre17.g734564			Chloroplast			MDH1
+Cre17.g736329			Mitochondrion			
+Cre17.g716700						
+Cre17.g720100			Mitochondrion			
+Cre17.g734741			Chloroplast			
+Cre17.g702800			Mitochondrion			
+Cre17.g700950	GMM:7.3;GMM:21.99;GMM:1.1.5.2	OPP.electron transfer;redox.misc;PS.lightreaction.other electron carrier (ox/red).ferredoxin	Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX5
+Cre17.g713575						
+Cre17.g717000				GO:0006508;GO:0004176	proteolysis;ATP-dependent peptidase activity	
+Cre17.g737702	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI				
+Cre17.g699350						
+Cre17.g718050						
+Cre17.g737463				GO:0005515	protein binding	
+Cre17.g734134						
+Cre17.g748047			Secretory pathway			
+Cre17.g736618			Chloroplast			
+Cre17.g733986						
+Cre17.g740000						
+Cre17.g728400	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre17.g727300	GMM:17.7.1.5	hormone metabolism.jasmonate.synthesis-degradation.12-oxophytodienoate reductase 3	Chloroplast	GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	NFO2
+Cre17.g729350				GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre17.g745747	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis				
+Cre17.g726800			Mitochondrion			
+Cre17.g718100	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified				
+Cre17.g701350	GMM:27.1.19	RNA.processing.ribonucleases		GO:0004523;GO:0003723	RNA-DNA hybrid ribonuclease activity;RNA binding	
+Cre17.g718750	GMM:26.23	misc.rhodanese		GO:0005509	calcium ion binding	FAP309
+Cre17.g713400	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA31
+Cre17.g724200	GMM:27.4;GMM:27.3.99	RNA.RNA binding;RNA.regulation of transcription.unclassified		GO:0003723	RNA binding	LAL1
+Cre17.g704750			Chloroplast			
+Cre17.g731571			Chloroplast			
+Cre17.g705500			Secretory pathway			PHC23
+Cre17.g706200				GO:0016021;GO:0016020;GO:0006811	integral component of membrane;membrane;ion transport	
+Cre17.g737050	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
+Cre17.g699900	GMM:3.5	minor CHO metabolism.others				
+Cre17.g703400			Secretory pathway			
+Cre17.g730575			Mitochondrion			
+Cre17.g723600	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B		GO:0042384;GO:0042073;GO:0030992;GO:0015631	cilium assembly;intraciliary transport;intraciliary transport particle B;tubulin binding	IFT81
+Cre17.g735250			Mitochondrion			
+Cre17.g698800	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0046872	metal ion binding	
+Cre17.g734250	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g727750						
+Cre17.g720550						
+Cre17.g745697	GMM:30.9;GMM:20.1;GMM:2.1	signalling.lipids;stress.biotic;major CHO metabolism.synthesis				
+Cre17.g727400	GMM:35.1.42;GMM:35.1.41	not assigned.no ontology.proline rich family;not assigned.no ontology.hydroxyproline rich proteins				HRP8
+Cre17.g729500						
+Cre17.g719450	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast			
+Cre17.g723200			Chloroplast			FAP372
+Cre17.g725500			Chloroplast			
+Cre17.g730050						
+Cre17.g733900						
+Cre17.g735375						
+Cre17.g738500			Secretory pathway	GO:0070652;GO:0051297;GO:0051225	HAUS complex;centrosome organization;spindle assembly	
+Cre17.g719200	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion	GO:0008270	zinc ion binding	ZYS1A
+Cre17.g699950			Mitochondrion			
+Cre17.g710500	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HTR29
+Cre17.g746997	GMM:5.3	fermentation.ADH	Chloroplast	GO:0055114;GO:0046872;GO:0016491;GO:0008152	oxidation-reduction process;metal ion binding;oxidoreductase activity;metabolic process	ADH1
+Cre17.g740390			Chloroplast			
+Cre17.g721150			Chloroplast			
+Cre17.g697500			Chloroplast			
+Cre17.g701300						
+Cre17.g723550	GMM:3.4.5	minor CHO metabolism.myo-inositol.inositol phosphatase	Chloroplast	GO:0046854	phosphatidylinositol phosphorylation	CPLD4
+Cre17.g702052			Secretory pathway			
+Cre17.g726050	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
+Cre17.g717150						FAP263
+Cre17.g704550						HRF1
+Cre17.g721200			Chloroplast			
+Cre17.g740800			Secretory pathway			
+Cre17.g722900						
+Cre17.g713950	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR32
+Cre17.g742300				GO:0005515	protein binding	FAP179
+Cre17.g703050			Chloroplast			
+Cre17.g712950			Mitochondrion			
+Cre17.g740900						
+Cre17.g710850	GMM:34.99;GMM:34.2	transport.misc;transport.sugars				
+Cre17.g733150	GMM:17.4.2	hormone metabolism.cytokinin.signal transduction		GO:0016020;GO:0007165;GO:0000160;GO:0000155	membrane;signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	COP10
+Cre17.g708901	GMM:30.2.12	signalling.receptor kinases.leucine rich repeat XII	Secretory pathway			
+Cre17.g714700						
+Cre17.g743597						
+Cre17.g723900	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP131
+Cre17.g731591			Mitochondrion			
+Cre17.g718850	GMM:29.5;GMM:28.1	protein.degradation;DNA.synthesis/chromatin structure		GO:0006260;GO:0005634;GO:0003677;GO:0003676	DNA replication;nucleus;DNA binding;nucleic acid binding	RFA1
+Cre17.g733250	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs	Chloroplast	GO:0006457	protein folding	FKB16-4
+Cre17.g718400			Chloroplast	GO:0005515	protein binding	
+Cre17.g744797			Mitochondrion			
+Cre17.g708550	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA27
+Cre17.g710900			Chloroplast			
+Cre17.g731001			Mitochondrion			
+Cre17.g705316						CSB64
+Cre17.g720528	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase				
+Cre17.g744197			Mitochondrion			
+Cre17.g711600			Mitochondrion			
+Cre17.g724300	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0016020;GO:0015979;GO:0009522	membrane;photosynthesis;photosystem I	PSAK
+Cre17.g715100						
+Cre17.g746847	GMM:3.3	minor CHO metabolism.sugar alcohols				tnp47
+Cre17.g698700			Mitochondrion			
+Cre17.g741950				GO:0035058;GO:0034464	nonmotile primary cilium assembly;BBSome	BBS1
+Cre17.g711850	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR30
+Cre17.g737150			Chloroplast			
+Cre17.g729800	GMM:31.2.5;GMM:29.3.3	cell.division.plastid;protein.targeting.chloroplast	Chloroplast.Stroma.Thylakoid.Membrane	GO:0051205;GO:0016021	protein insertion into membrane;integral component of membrane	ALB3.2
+Cre17.g740100						
+Cre17.g735800						
+Cre17.g698299				GO:0046983	protein dimerization activity	
+Cre17.g712450						
+Cre17.g732600	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX5
+Cre17.g734709			Secretory pathway			
+Cre17.g738800				GO:0005515	protein binding	
+Cre17.g712050						
+Cre17.g736150	GMM:29.4;GMM:28.1	protein.postranslational modification;DNA.synthesis/chromatin structure	Mitochondrion	GO:0006260;GO:0003887;GO:0003677	DNA replication;DNA-directed DNA polymerase activity;DNA binding	POL1-2
+Cre17.g705100			Chloroplast			
+Cre17.g741800						
+Cre17.g706800				GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre17.g697624	GMM:29.1	protein.aa activation	Mitochondrion			
+Cre17.g741200	GMM:31.1	cell.organisation		GO:0008017;GO:0005515	microtubule binding;protein binding	EBP1
+Cre17.g724400			Chloroplast			FAP257
+Cre17.g744147	GMM:28.1	DNA.synthesis/chromatin structure		GO:0031204;GO:0008565;GO:0005524;GO:0003676	"posttranslational protein targeting to membrane, translocation;protein transporter activity;ATP binding;nucleic acid binding"	
+Cre17.g746147			Secretory pathway			
+Cre17.g732350	GMM:24	biodegradation of xenobiotics	Mitochondrion			GOX4
+Cre17.g732050				GO:0006284	base-excision repair	AGE3
+Cre17.g696800			Secretory pathway			
+Cre17.g725000						
+Cre17.g716101	GMM:28.2	DNA.repair		GO:0034061;GO:0005634;GO:0003677	DNA polymerase activity;nucleus;DNA binding	POLL1
+Cre17.g722000				GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT30
+Cre17.g726400	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"	Chloroplast	GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	
+Cre17.g738950						
+Cre17.g701850						
+Cre17.g734805						
+Cre17.g709500	GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g718250				GO:0050662;GO:0003824	coenzyme binding;catalytic activity	
+Cre17.g728800	GMM:8.2.4;GMM:8.1.4	TCA / organic transformation.other organic acid transformations.IDH;TCA / organic transformation.TCA.IDH	Mitochondrion	GO:0055114;GO:0051287;GO:0016616;GO:0000287	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;magnesium ion binding"	IDH1
+Cre17.g721650						
+Cre17.g738150	GMM:20.2.3	stress.abiotic.drought/salt		GO:0016020	membrane	ERM10
+Cre17.g717250			Secretory pathway			
+Cre17.g700700			Secretory pathway			
+Cre17.g719834						
+Cre17.g745197			Mitochondrion			
+Cre17.g698332						
+Cre17.g715900	GMM:25;GMM:23.5.1;GMM:23.5	C1-metabolism;nucleotide metabolism.deoxynucleotide metabolism.dihydrofolate reductase-thymidylate synthase;nucleotide metabolism.deoxynucleotide metabolism		GO:0055114;GO:0009165;GO:0006545;GO:0006231;GO:0004799;GO:0004146	oxidation-reduction process;nucleotide biosynthetic process;glycine biosynthetic process;dTMP biosynthetic process;thymidylate synthase activity;dihydrofolate reductase activity	
+Cre17.g729393	GMM:23.1.2	nucleotide metabolism.synthesis.purine				
+Cre17.g743497						
+Cre17.g707650	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g740750						
+Cre17.g742350						
+Cre17.g746697	GMM:31.1	cell.organisation	Chloroplast			FAP249
+Cre17.g742150						
+Cre17.g716613			Secretory pathway			
+Cre17.g729600	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre17.g733850						
+Cre17.g738200						
+Cre17.g711750	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB30
+Cre17.g734548	GMM:6.5	gluconeogenesis / glyoxylate cycle.pyruvate dikinase	Mitochondrion	GO:0050242;GO:0016772;GO:0016310;GO:0016301;GO:0006090;GO:0005524	"pyruvate, phosphate dikinase activity;transferase activity, transferring phosphorus-containing groups;phosphorylation;kinase activity;pyruvate metabolic process;ATP binding"	PPD2
+Cre17.g734612	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP2
+Cre17.g725301	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre17.g724125			Secretory pathway			
+Cre17.g702451	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0005515	protein binding	hlm27
+Cre17.g734400	GMM:29.5.11.4.3.3	protein.degradation.ubiquitin.E3.SCF.cullin		GO:0031625;GO:0006511	ubiquitin protein ligase binding;ubiquitin-dependent protein catabolic process	CUL3
+Cre17.g721750	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG9
+Cre17.g744447	GMM:34.14	transport.unspecified cations		GO:0046872;GO:0016887;GO:0016021;GO:0006812;GO:0000166	metal ion binding;ATPase activity;integral component of membrane;cation transport;nucleotide binding	
+Cre17.g721517						
+Cre17.g747547						
+Cre17.g699776						
+Cre17.g699500	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0006464	cellular protein modification process	TTLL9
+Cre17.g740150						
+Cre17.g702976						
+Cre17.g720450						
+Cre17.g732650	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway			
+Cre17.g725950			Mitochondrion	GO:0008146	sulfotransferase activity	CSR13
+Cre17.g700750				GO:0016021	integral component of membrane	
+Cre17.g733650	GMM:16.99	secondary metabolism.unspecified	Secretory pathway	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	BIO3
+Cre17.g707050	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	UAF5
+Cre17.g707600			Secretory pathway			
+Cre17.g712126			Chloroplast			
+Cre17.g713500	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO31
+Cre17.g747047						
+Cre17.g709300			Secretory pathway			
+Cre17.g722150	GMM:16.7;GMM:11.1.11;GMM:11.1.10	secondary metabolism.wax;lipid metabolism.FA synthesis and FA elongation.fatty acid elongase;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase		GO:0016747;GO:0016020;GO:0006633	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;fatty acid biosynthetic process"	PKS3
+Cre17.g712500			Chloroplast			
+Cre17.g699450						
+Cre17.g716450	GMM:33.99;GMM:31.1	development.unspecified;cell.organisation		GO:0005524	ATP binding	
+Cre17.g733700						
+Cre17.g742932						
+Cre17.g734150						
+Cre17.g736700			Secretory pathway			
+Cre17.g744347			Secretory pathway			
+Cre17.g702576						
+Cre17.g717900	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC1
+Cre17.g708250	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	ARL8
+Cre17.g716050	GMM:29.5	protein.degradation	Chloroplast	GO:0005524	ATP binding	
+Cre17.g701884						
+Cre17.g723150	GMM:29.3.4.1	protein.targeting.secretory pathway.ER	Secretory pathway	GO:0055114;GO:0016671;GO:0005783;GO:0003756	"oxidation-reduction process;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;endoplasmic reticulum;protein disulfide isomerase activity"	ERO1
+Cre17.g726250	GMM:9.9;GMM:27.3.99	mitochondrial electron transport / ATP synthesis.F1-ATPase;RNA.regulation of transcription.unclassified	Secretory pathway	GO:0043461	proton-transporting ATP synthase complex assembly	ATP12
+Cre17.g728750			Secretory pathway			
+Cre17.g729700						CGL133
+Cre17.g738900			Chloroplast			
+Cre17.g698500			Chloroplast			
+Cre17.g724450			Mitochondrion			
+Cre17.g703900	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B				IFT172
+Cre17.g718900				GO:0042254;GO:0031429;GO:0001522	ribosome biogenesis;box H/ACA snoRNP complex;pseudouridine synthesis	FAP88
+Cre17.g713305						
+Cre17.g728050						
+Cre17.g703176	GMM:21.6	redox.dismutases and catalases	Secretory pathway	GO:0055114;GO:0046872;GO:0006801;GO:0004784	oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity	MSD5
+Cre17.g705150			Chloroplast	GO:0006260;GO:0003896	DNA replication;DNA primase activity	
+Cre17.g741350	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN7-4
+Cre17.g746547			Mitochondrion	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre17.g731550			Chloroplast			
+Cre17.g734693			Secretory pathway			
+Cre17.g716800	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	XUV7
+Cre17.g710150	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	RPT4
+Cre17.g714500	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA33
+Cre17.g707200			Secretory pathway	GO:0016021;GO:0016020;GO:0006811;GO:0006810;GO:0005230	integral component of membrane;membrane;ion transport;transport;extracellular ligand-gated ion channel activity	LIC2
+Cre17.g743947			Mitochondrion			
+Cre17.g744897			Secretory pathway	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
+Cre17.g722650			Chloroplast			
+Cre17.g707950	GMM:29.6.2.6	protein.folding.chaperones and co-chaperones.co-chaperones	Chloroplast	GO:0008270	zinc ion binding	HEP2
+Cre17.g743747	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
+Cre17.g736300			Secretory pathway			
+Cre17.g728483			Mitochondrion			
+Cre17.g714950	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
+Cre17.g696950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g692564			Chloroplast			
+Cre17.g731350	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre17.g702300			Secretory pathway			
+Cre17.g737100	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP127
+Cre17.g738600	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Mitochondrion			RLS5
+Cre17.g735450	GMM:29.5.1	protein.degradation.subtilases		GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB14
+Cre17.g706900	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CNG3
+Cre17.g731200			Chloroplast			
+Cre17.g709850	GMM:2.2.1.1	major CHO metabolism.degradation.sucrose.fructokinase	Mitochondrion	GO:0016774;GO:0016310;GO:0016301;GO:0008152;GO:0005622	"phosphotransferase activity, carboxyl group as acceptor;phosphorylation;kinase activity;metabolic process;intracellular"	ACK2
+Cre17.g734773			Chloroplast			
+Cre17.g722450						
+Cre17.g745147						
+Cre17.g703650						
+Cre17.g742800						
+Cre17.g704450			Mitochondrion			
+Cre17.g725600	GMM:7.1.1	OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)	Secretory pathway			
+Cre17.g709000	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway			
+Cre17.g717050	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre17.g727650	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	ATM2
+Cre17.g726700	GMM:11.1.8	lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase	Mitochondrion	GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre17.g730100	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	RSEP1
+Cre17.g713726			Chloroplast			
+Cre17.g711200			Chloroplast			
+Cre17.g711457	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Mitochondrion			
+Cre17.g704650						
+Cre17.g717800	GMM:29.3.1	protein.targeting.nucleus		GO:0006810;GO:0005643	transport;nuclear pore	
+Cre17.g719100	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion	GO:0008270	zinc ion binding	ZYS1B
+Cre17.g705400	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA1
+Cre17.g715050	GMM:3.5	minor CHO metabolism.others		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	RAB28
+Cre17.g701650	GMM:29.2.1.2.2.27	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L27		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL27
+Cre17.g745897						
+Cre17.g706450			Secretory pathway	GO:0016021;GO:0016020;GO:0006811;GO:0006810;GO:0005230	integral component of membrane;membrane;ion transport;transport;extracellular ligand-gated ion channel activity	LIC3
+Cre17.g739450	GMM:28.1.3;GMM:27.3.13	"DNA.synthesis/chromatin structure.histone;RNA.regulation of transcription.CCAAT box binding factor family, DR1"				DRT1
+Cre17.g705950				GO:0008080	N-acetyltransferase activity	
+Cre17.g710871			Mitochondrion			
+Cre17.g733300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g698400						LCI31
+Cre17.g723800						
+Cre17.g715800			Secretory pathway			
+Cre17.g724150	GMM:26.17	misc.dynamin		GO:0005525;GO:0003924	GTP binding;GTPase activity	DRP3
+Cre17.g721500	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase	Chloroplast			STA2
+Cre17.g729950	GMM:21.99	redox.misc	Chloroplast	GO:0055114;GO:0032542	oxidation-reduction process;sulfiredoxin activity	SRX2
+Cre17.g720256			Chloroplast			
+Cre17.g735500						
+Cre17.g745497						
+Cre17.g711150	GMM:11.2.4	lipid metabolism.FA desaturation.omega 6 desaturase		GO:0055114;GO:0016717;GO:0006629	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water;lipid metabolic process"	FAD2
+Cre17.g701551			Mitochondrion			
+Cre17.g729200						
+Cre17.g714450	GMM:34.15	transport.potassium		GO:0071805;GO:0016020;GO:0015079	potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity	KUP3
+Cre17.g705450			Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	LCI26
+Cre17.g711526						
+Cre17.g732500						
+Cre17.g698000	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion	GO:0046933;GO:0046034;GO:0033178;GO:0016820;GO:0015992;GO:0015991;GO:0015986;GO:0005524	"proton-transporting ATP synthase activity, rotational mechanism;ATP metabolic process;proton-transporting two-sector ATPase complex, catalytic domain;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;proton transport;ATP hydrolysis coupled proton transport;ATP synthesis coupled proton transport;ATP binding"	ATP2
+Cre17.g734125						
+Cre17.g700600	GMM:35.1.9;GMM:29.5.11.5	not assigned.no ontology.BTB/POZ domain-containing protein;protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
+Cre17.g709600			Mitochondrion			
+Cre17.g732250			Chloroplast			
+Cre17.g708100	GMM:23.3.1.2	nucleotide metabolism.salvage.phosphoribosyltransferases.hypoxanthine-guanine phosphoribosyltransferase (HPRT)	Chloroplast	GO:0009116	nucleoside metabolic process	
+Cre17.g733350			Secretory pathway			
+Cre17.g725050	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	protein binding	UBL5
+Cre17.g705850	GMM:13.1.2.2.1;GMM:13.1.2.2	amino acid metabolism.synthesis.glutamate family.proline.delta 1-pyrroline-5-carboxylate synthetase;amino acid metabolism.synthesis.glutamate family.proline		GO:0003723	RNA binding	GGK2
+Cre17.g746247	GMM:27.3.65	RNA.regulation of transcription.polycomb group (PcG)		GO:0005515	protein binding	
+Cre17.g741100	GMM:31.3	cell.cycle				
+Cre17.g747797	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Mitochondrion			MCP30
+Cre17.g746197			Secretory pathway			
+Cre17.g725851						
+Cre17.g710881			Mitochondrion			
+Cre17.g704050			Secretory pathway			
+Cre17.g712250						
+Cre17.g747397	GMM:29.4.1;GMM:29.4;GMM:29.2.2	protein.postranslational modification.kinase;protein.postranslational modification;protein.synthesis.ribosome biogenesis	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g726450			Chloroplast			
+Cre17.g707750			Secretory pathway			
+Cre17.g705650						
+Cre17.g725376			Secretory pathway			
+Cre17.g721900	GMM:31.4;GMM:29.3.4.2	cell.vesicle transport;protein.targeting.secretory pathway.golgi		GO:0017119;GO:0006891	Golgi transport complex;intra-Golgi vesicle-mediated transport	COG5
+Cre17.g747197	GMM:31.1	cell.organisation		GO:0034314;GO:0030833;GO:0015629;GO:0005885	Arp2/3 complex-mediated actin nucleation;regulation of actin filament polymerization;actin cytoskeleton;Arp2/3 protein complex	
+Cre17.g723650	GMM:13.2.4.1	amino acid metabolism.degradation.branched chain group.shared	Mitochondrion	GO:0016747;GO:0008152	"transferase activity, transferring acyl groups other than amino-acyl groups;metabolic process"	ATO1
+Cre17.g730300						
+Cre17.g711650	GMM:31.1	cell.organisation				NUDC1
+Cre17.g711000						
+Cre17.g718550			Secretory pathway			
+Cre17.g697800						
+Cre17.g730700			Chloroplast			
+Cre17.g703550						
+Cre17.g745047			Secretory pathway			
+Cre17.g705250	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI				
+Cre17.g719876			Mitochondrion			
+Cre17.g715250	GMM:18.6;GMM:11.1.1.2.3;GMM:11.1.1	Co-factor and vitamine metabolism.biotin;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.biotin carboxyl carrier protein;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation	Chloroplast			BCC1
+Cre17.g701200	GMM:29.2.1.2.2.14	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L14		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL14
+Cre17.g743200						
+Cre17.g747447						
+Cre17.g698233	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Mitochondrion	GO:0005634;GO:0005515;GO:0003677	nucleus;protein binding;DNA binding	
+Cre17.g740224						
+Cre17.g721850			Mitochondrion	GO:0006468;GO:0005524;GO:0004674	protein phosphorylation;ATP binding;protein serine/threonine kinase activity	SSA16
+Cre17.g719537			Secretory pathway			
+Cre17.g702002						
+Cre17.g740650	GMM:29.4	protein.postranslational modification	Mitochondrion			
+Cre17.g732566			Secretory pathway			
+Cre17.g697701			Mitochondrion			
+Cre17.g711300						
+Cre17.g736800			Mitochondrion			
+Cre17.g707137			Mitochondrion			
+Cre17.g731250	GMM:29.2.1.1.4.1;GMM:29.2.1.1.3.1.15	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.30S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.30S subunit.S15	Mitochondrion	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS15
+Cre17.g698550	GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g739150	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Secretory pathway	GO:0008236;GO:0006508;GO:0005515	serine-type peptidase activity;proteolysis;protein binding	TSP5
+Cre17.g719792			Mitochondrion			
+Cre17.g744547			Chloroplast			
+Cre17.g739500			Mitochondrion			
+Cre17.g709700						
+Cre17.g728150	GMM:31.4	cell.vesicle transport		GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	YKT6
+Cre17.g711480						
+Cre17.g717919						
+Cre17.g705000	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification		GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	FAP223
+Cre17.g741450	GMM:29.6.2.2;GMM:29.6;GMM:1.3.13	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding;PS.calvin cycle.rubisco interacting	Chloroplast	GO:0005524	ATP binding	CPN60B1
+Cre17.g741300						
+Cre17.g733425			Chloroplast			
+Cre17.g734660						
+Cre17.g708350			Secretory pathway			
+Cre17.g724600	GMM:31.5.1;GMM:29.3.3;GMM:26.30;GMM:26.3	"cell.cell death.plants;protein.targeting.chloroplast;misc.other Ferredoxins and Rieske domain;misc.gluco-, galacto- and mannosidases"	Chloroplast	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	PAO2
+Cre17.g728600						
+Cre17.g731466			Mitochondrion	GO:0005515	protein binding	
+Cre17.g742116						
+Cre17.g743288						
+Cre17.g719000	GMM:29.2.3;GMM:28.1;GMM:27.1.2	protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	UAP56
+Cre17.g734450	GMM:29.2.1.99.2.19;GMM:29.2.1.1.1.2.19	protein.synthesis.ribosomal protein.unknown.large subunit.L19;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L19	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL19
+Cre17.g713150			Mitochondrion;Secretory pathway			
+Cre17.g741601			Chloroplast			
+Cre17.g722700				GO:0016020	membrane	
+Cre17.g727950	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom				RPN2
+Cre17.g734516	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	protein binding	RPN9
+Cre17.g713800			Chloroplast			
+Cre17.g739550			Chloroplast			CPLD12
+Cre17.g739850						MOT47
+Cre17.g736950						
+Cre17.g697334	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion			
+Cre17.g716576						
+Cre17.g723050	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre17.g697050			Chloroplast			
+Cre17.g720300			Secretory pathway	GO:0005515	protein binding	
+Cre17.g727050						
+Cre17.g733000						
+Cre17.g736511						
+Cre17.g740344						
+Cre17.g700000			Chloroplast			
+Cre17.g716950			Chloroplast			
+Cre17.g728850			Mitochondrion			
+Cre17.g714800			Secretory pathway			ISG6
+Cre17.g709100	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO28
+Cre17.g727500						
+Cre17.g724700	GMM:31.5.1;GMM:29.3.3;GMM:26.30;GMM:26.3	"cell.cell death.plants;protein.targeting.chloroplast;misc.other Ferredoxins and Rieske domain;misc.gluco-, galacto- and mannosidases"	Chloroplast	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	PAO1
+Cre17.g699650			Chloroplast			
+Cre17.g706050	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR17
+Cre17.g742600						
+Cre17.g708038			Mitochondrion			
+Cre17.g739900						
+Cre17.g726200			Mitochondrion			
+Cre17.g723750			Secretory pathway			
+Cre17.g702500	GMM:1.1.2.3	PS.lightreaction.photosystem I.biogenesis	Chloroplast			TAB2
+Cre17.g745947	GMM:28.2	DNA.repair				
+Cre17.g720150						
+Cre17.g737525	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI				
+Cre17.g725150	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
+Cre17.g743847	GMM:27.4	RNA.RNA binding		GO:0016567;GO:0004842;GO:0003676	protein ubiquitination;ubiquitin-protein transferase activity;nucleic acid binding	
+Cre17.g742500			Chloroplast			
+Cre17.g745597						
+Cre17.g737353						
+Cre17.g723400			Secretory pathway			
+Cre17.g729301						
+Cre17.g738100			Secretory pathway			
+Cre17.g730750			Secretory pathway	GO:0005515	protein binding	
+Cre17.g735850						
+Cre17.g706700			Secretory pathway			
+Cre17.g705836			Mitochondrion			
+Cre17.g737376			Mitochondrion			
+Cre17.g700200			Chloroplast			
+Cre17.g733750			Secretory pathway			
+Cre17.g734900			Chloroplast	GO:0006508;GO:0004181	proteolysis;metallocarboxypeptidase activity	
+Cre17.g719950			Chloroplast			
+Cre17.g718650						
+Cre17.g721400			Chloroplast			
+Cre17.g716301			Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	SUM7
+Cre17.g710800	GMM:29.8	protein.assembly and cofactor ligation	Chloroplast	GO:0051536;GO:0016226;GO:0005506	iron-sulfur cluster binding;iron-sulfur cluster assembly;iron ion binding	NFU3
+Cre17.g746347	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure	Chloroplast	GO:0006284;GO:0006281;GO:0004844	base-excision repair;DNA repair;uracil DNA N-glycosylase activity	UNG1
+Cre17.g747897			Chloroplast			
+Cre17.g731675			Mitochondrion;Chloroplast			
+Cre17.g703800	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	DUR3C
+Cre17.g713674	GMM:28.2	DNA.repair				
+Cre17.g710650	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK21
+Cre17.g724050			Secretory pathway			
+Cre17.g719250			Secretory pathway			
+Cre17.g741250			Mitochondrion	GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	PHR6
+Cre17.g711950	GMM:29.6.1	protein.folding.prefoldin and trigger factor				PFP1
+Cre17.g720800						
+Cre17.g730550	GMM:26.3.4;GMM:26.3;GMM:10.6.1	"misc.gluco-, galacto- and mannosidases.endoglucanase;misc.gluco-, galacto- and mannosidases;cell wall.degradation.cellulases and beta-1,4-glucanases"	Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
+Cre17.g743647	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
+Cre17.g734142						
+Cre17.g715150						
+Cre17.g710300			Secretory pathway			PHC31
+Cre17.g696626			Mitochondrion			
+Cre17.g698900			Secretory pathway			
+Cre17.g731100			Chloroplast			CPL14
+Cre17.g714350			Chloroplast			
+Cre17.g738650			Secretory pathway	GO:0046983	protein dimerization activity	
+Cre17.g732802	GMM:13.2.6.2	amino acid metabolism.degradation.aromatic aa.tyrosine		GO:0009072;GO:0008152;GO:0004334;GO:0003824	aromatic amino acid family metabolic process;metabolic process;fumarylacetoacetase activity;catalytic activity	
+Cre17.g704350	GMM:24.2	biodegradation of xenobiotics.lactoylglutathione lyase				
+Cre17.g714100	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA32
+Cre17.g713900	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others		GO:0005515	protein binding	LST8
+Cre17.g699700			Chloroplast			
+Cre17.g710950			Mitochondrion			
+Cre17.g718450			Mitochondrion			MMP2
+Cre17.g736550			Secretory pathway			
+Cre17.g733550						
+Cre17.g718200						
+Cre17.g711550	GMM:31.3	cell.cycle	Mitochondrion			CYCR2
+Cre17.g742550			Chloroplast			
+Cre17.g697550			Chloroplast			
+Cre17.g726950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g747247			Chloroplast			FAP2
+Cre17.g746897			Mitochondrion			
+Cre17.g708850			Mitochondrion			
+Cre17.g729901			Secretory pathway			
+Cre17.g703075						
+Cre17.g708750	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			NSG1
+Cre17.g699850	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase	Secretory pathway	GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GDP3
+Cre17.g722350	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RABL2
+Cre17.g730600	GMM:26.3.4;GMM:26.3;GMM:10.6.1	"misc.gluco-, galacto- and mannosidases.endoglucanase;misc.gluco-, galacto- and mannosidases;cell wall.degradation.cellulases and beta-1,4-glucanases"		GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
+Cre17.g734644	GMM:17.3.1.2.99	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.other		GO:0071949	FAD binding	SQE1
+Cre17.g732533	GMM:24	biodegradation of xenobiotics	Chloroplast			
+Cre17.g728350			Secretory pathway			
+Cre17.g735600	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	TGL21
+Cre17.g708600	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB27
+Cre17.g701500	GMM:29.9;GMM:29.6.2.6;GMM:20.2.1	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat		GO:0051082;GO:0031072	unfolded protein binding;heat shock protein binding	DNJ1
+Cre17.g729250	GMM:29.2.99	protein.synthesis.misc		GO:0005515;GO:0003723	protein binding;RNA binding	UPF2
+Cre17.g728250	GMM:35.1.19	not assigned.no ontology.C2 domain-containing protein				
+Cre17.g700166	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g716750						
+Cre17.g740323			Chloroplast			
+Cre17.g714250	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0045454	cell redox homeostasis	DLX2
+Cre17.g700100						
+Cre17.g698683			Mitochondrion			
+Cre17.g715600			Chloroplast			
+Cre17.g698650	GMM:21.2.2;GMM:20.2	redox.ascorbate and glutathione.glutathione;stress.abiotic	Secretory pathway	GO:0006749;GO:0003840	glutathione metabolic process;gamma-glutamyltransferase activity	GTP1
+Cre17.g742000						MOT8
+Cre17.g723350	GMM:34.6	transport.sulphate		GO:0055085;GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0008271	transmembrane transport;integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;secondary active sulfate transmembrane transporter activity	SULTR2
+Cre17.g702550						
+Cre17.g714750			Mitochondrion			
+Cre17.g710600	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre17.g723950						FAP397
+Cre17.g726100	GMM:27.1	RNA.processing	Mitochondrion	GO:0016779;GO:0006396;GO:0003723	nucleotidyltransferase activity;RNA processing;RNA binding	PAP3
+Cre17.g711401			Mitochondrion			
+Cre17.g699250						
+Cre17.g713051	GMM:29.4	protein.postranslational modification	Mitochondrion			DNJ33
+Cre17.g705550						
+Cre17.g706850	GMM:34.99;GMM:29.5.5	transport.misc;protein.degradation.serine protease	Secretory pathway	GO:0016021;GO:0006890	"integral component of membrane;retrograde vesicle-mediated transport, Golgi to ER"	
+Cre17.g733100			Secretory pathway			
+Cre17.g733702						
+Cre17.g724350	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA5
+Cre17.g732850	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Mitochondrion	GO:0055114;GO:0016491;GO:0016209	oxidation-reduction process;oxidoreductase activity;antioxidant activity	SCO1
+Cre17.g731150				GO:0016021;GO:0006810	integral component of membrane;transport	
+Cre17.g723500	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre17.g697350	GMM:20.1	stress.biotic		GO:0006397	mRNA processing	
+Cre17.g722750						
+Cre17.g741150	GMM:30.2.7;GMM:30.2.12;GMM:30.2.11;GMM:30.2.10	signalling.receptor kinases.leucine rich repeat VII;signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;signalling.receptor kinases.leucine rich repeat X	Chloroplast			
+Cre17.g743064				GO:0032775;GO:0009007;GO:0003677	DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding	
+Cre17.g736000						
+Cre17.g709450			Secretory pathway			
+Cre17.g696750	GMM:27.3.5;GMM:27.3.20;GMM:27.3	RNA.regulation of transcription.ARR;RNA.regulation of transcription.G2-like transcription factor family (GARP);RNA.regulation of transcription	Mitochondrion			
+Cre17.g735950			Mitochondrion			
+Cre17.g696850	GMM:17.1.3	hormone metabolism.abscisic acid.induced-regulated-responsive-activated	Mitochondrion			
+Cre17.g732100						SSA4
+Cre17.g721250						IFT38
+Cre17.g717500						
+Cre17.g744947	GMM:27.1	RNA.processing	Mitochondrion	GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
+Cre17.g702200	GMM:31.1;GMM:27.3.39	cell.organisation;RNA.regulation of transcription.AtSR transcription factor family	Chloroplast			ANK29
+Cre17.g740600	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	MOT50
+Cre17.g720350			Mitochondrion	GO:0051301;GO:0032955	cell division;regulation of barrier septum assembly	MINE1
+Cre17.g732901	GMM:28.2	DNA.repair		GO:0005515	protein binding	
+Cre17.g707900			Secretory pathway			
+Cre17.g735750			Mitochondrion	GO:0005509	calcium ion binding	EFH11
+Cre17.g716625						
+Cre17.g739000			Mitochondrion			
+Cre17.g731800			Secretory pathway	GO:0005515	protein binding	
+Cre17.g696550			Chloroplast			
+Cre17.g716500						
+Cre17.g710050				GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre17.g704500			Secretory pathway			
+Cre17.g743397						
+Cre17.g709200	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA28
+Cre17.g745397						
+Cre17.g724550	GMM:31.6.1.2	cell.motility.eukaryotes.deflagellation				DIP13
+Cre17.g733753						
+Cre17.g721950	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre17.g715421	GMM:3.5	minor CHO metabolism.others	Mitochondrion			
+Cre17.g734821						
+Cre17.g702900				GO:0016021	integral component of membrane	
+Cre17.g711350				GO:0046983	protein dimerization activity	
+Cre17.g724000						
+Cre17.g714200	GMM:34.15	transport.potassium		GO:0071805;GO:0016020;GO:0015079	potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity	KUP2
+Cre17.g736437			Secretory pathway			
+Cre17.g737300			Secretory pathway			
+Cre17.g727850			Chloroplast			
+Cre17.g709750	GMM:31.3;GMM:30.6;GMM:29.4.1;GMM:29.4	cell.cycle;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre17.g723000						
+Cre17.g728650	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others		GO:0005515	protein binding	FAP196
+Cre17.g719701			Chloroplast			
+Cre17.g739600						
+Cre17.g747347	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast	GO:0005525	GTP binding	
+Cre17.g712400	GMM:33.99;GMM:1.1.1.3	development.unspecified;PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane	GO:0016021	integral component of membrane	TERC
+Cre17.g746047			Secretory pathway			
+Cre17.g722583			Secretory pathway			
+Cre17.g715801	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			
+Cre17.g704251						
+Cre17.g703126			Mitochondrion			
+Cre17.g719771						
+Cre17.g712350	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation	Secretory pathway	GO:0016020	membrane	CPLD6
+Cre17.g709400			Secretory pathway			
+Cre17.g697250			Chloroplast			
+Cre17.g725750				GO:0003723	RNA binding	
+Cre17.g726600	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway;Chloroplast			
+Cre17.g742100			Mitochondrion			
+Cre17.g737000						
+Cre17.g702750	GMM:26.22;GMM:11.8.1	"misc.short chain dehydrogenase/reductase (SDR);lipid metabolism.exotics (steroids, squalene etc).sphingolipids"				
+Cre17.g729850	GMM:31.6.1.6.1	cell.motility.eukaryotes.central pair.C1a				FAP227
+Cre17.g700425						
+Cre17.g706350			Secretory pathway			
+Cre17.g729450	GMM:34.18	transport.unspecified anions	Chloroplast	GO:0055085;GO:0016020;GO:0006821;GO:0005247	transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity	CLV2
+Cre17.g712800						
+Cre17.g733200				GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR4
+Cre17.g740926						
+Cre17.g704950			Mitochondrion			
+Cre17.g739950			Secretory pathway	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	
+Cre17.g734300	GMM:29.3.3	protein.targeting.chloroplast	Mitochondrion	GO:0005525	GTP binding	
+Cre17.g698950	GMM:27.2	RNA.transcription				
+Cre17.g729000			Mitochondrion			
+Cre17.g733450	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor	Chloroplast	GO:0015074;GO:0005515	DNA integration;protein binding	
+Cre17.g745797			Mitochondrion			
+Cre17.g725450	GMM:29.5.11	protein.degradation.ubiquitin	Mitochondrion			
+Cre17.g724250			Chloroplast			
+Cre17.g727326						
+Cre17.g697150			Mitochondrion			
+Cre17.g720900			Chloroplast			
+Cre17.g701400			Mitochondrion			
+Cre17.g741650						
+Cre17.g705778			Chloroplast			PROB2
+Cre17.g739457			Chloroplast			
+Cre17.g698100	GMM:17.5.2	hormone metabolism.ethylene.signal transduction				
+Cre17.g731750	GMM:26.1	misc.misc2	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP740A1
+Cre17.g722100				GO:0005096	GTPase activator activity	SSA3
+Cre17.g714900	GMM:16.8.4.1	secondary metabolism.flavonoids.flavonols.flavonol synthase (FLS)				CGL11
+Cre17.g705300			Secretory pathway			PHC68
+Cre17.g704000						
+Cre17.g722526						
+Cre17.g740350	GMM:34.2	transport.sugars				
+Cre17.g734100	GMM:23.1.2.20	nucleotide metabolism.synthesis.purine.adenylosuccinate synthase	Chloroplast	GO:0006164;GO:0005525;GO:0004019	purine nucleotide biosynthetic process;GTP binding;adenylosuccinate synthase activity	
+Cre17.g710450	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB29
+Cre17.g722200	GMM:29.2.1.1.4.2;GMM:29.2.1.1.1.2.11	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L11		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPL11
+Cre17.g705350	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDPKK2
+Cre17.g713000			Chloroplast			
+Cre17.g740510	GMM:31.2	cell.division				CDC27
+Cre17.g728450	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway			
+Cre17.g725550	GMM:7.1.1	OPP.oxidative PP.glucose-6-phosphate 1-dehydrogenase (G6PD)		GO:0055114;GO:0050661;GO:0006006;GO:0004345	oxidation-reduction process;NADP binding;glucose metabolic process;glucose-6-phosphate dehydrogenase activity	GLD1
+Cre17.g733950						CGL152
+Cre17.g702150	GMM:29.8;GMM:21.1	protein.assembly and cofactor ligation;redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	CCS5
+Cre17.g720050	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0006508;GO:0005524;GO:0004222	proteolysis;ATP binding;metalloendopeptidase activity	FTSH2
+Cre17.g718300	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0046872;GO:0008270	metal ion binding;zinc ion binding	
+Cre17.g726850				GO:0003723	RNA binding	
+Cre17.g716150	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	SUM4
+Cre17.g699926			Secretory pathway			
+Cre17.g730950	GMM:31.6.1.3.1.1;GMM:31.1	cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.kinesin-2 subunits;cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	FLA10
+Cre17.g746947			Secretory pathway			
+Cre17.g741000			Secretory pathway	GO:0005789	endoplasmic reticulum membrane	
+Cre17.g710351	GMM:29.5.7	protein.degradation.metalloprotease				
+Cre17.g701100	GMM:3.5	minor CHO metabolism.others	Secretory pathway			CPK8
+Cre17.g708700	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR27
+Cre17.g699400			Secretory pathway			
+Cre17.g706950						
+Cre17.g731300				GO:0016020	membrane	
+Cre17.g742250	GMM:31.3;GMM:31.2;GMM:3.6;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CDKG2
+Cre17.g731581						
+Cre17.g730200	GMM:33.99;GMM:29.3.5	development.unspecified;protein.targeting.peroxisomes		GO:0005515	protein binding	PEX7
+Cre17.g740261			Chloroplast			FAP365
+Cre17.g723250	GMM:29.5	protein.degradation	Chloroplast			CPE1
+Cre17.g726000			Secretory pathway			PAP3
+Cre17.g729101	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC37
+Cre17.g733208	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	SRR4
+Cre17.g706550						
+Cre17.g713200	GMM:34.9;GMM:34.8	transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane		GO:0055085;GO:0016020;GO:0006814;GO:0005215	transmembrane transport;membrane;sodium ion transport;transporter activity	OMT2
+Cre17.g708950	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI	Secretory pathway			
+Cre17.g718800	GMM:26.27	misc.calcineurin-like phosphoesterase family protein		GO:0016787	hydrolase activity	mpa14
+Cre17.g731950			Mitochondrion	GO:0033177;GO:0015991;GO:0015078	"proton-transporting two-sector ATPase complex, proton-transporting domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATP9B
+Cre17.g703000			Mitochondrion	GO:2001070	starch binding	
+Cre17.g704400			Chloroplast			
+Cre17.g743547	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre17.g717750	GMM:31.1.1.2;GMM:21.1	cell.organisation.cytoskeleton.mikrotubuli;redox.thioredoxin		GO:0045454	cell redox homeostasis	TRX24
+Cre17.g720183						
+Cre17.g725250						
+Cre17.g700650				GO:0016021	integral component of membrane	
+Cre17.g733162			Secretory pathway			
+Cre17.g740850						
+Cre17.g719813						
+Cre17.g715500			Chloroplast	GO:0055114;GO:0016491;GO:0016209	oxidation-reduction process;oxidoreductase activity;antioxidant activity	
+Cre17.g741050	GMM:17.2.3	hormone metabolism.auxin.induced-regulated-responsive-activated	Mitochondrion			COV1
+Cre17.g715950			Chloroplast			
+Cre17.g712100	GMM:21.2.1;GMM:21.2	redox.ascorbate and glutathione.ascorbate;redox.ascorbate and glutathione		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre17.g734725						
+Cre17.g736100	GMM:29.5.3	protein.degradation.cysteine protease		GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP17
+Cre17.g744247				GO:0006260;GO:0005664;GO:0003677	DNA replication;nuclear origin of replication recognition complex;DNA binding	
+Cre17.g703450						
+Cre17.g717300	GMM:29.4	protein.postranslational modification		GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	
+Cre17.g699150						
+Cre17.g701809				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g714000	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO32
+Cre17.g738450			Chloroplast			
+Cre17.g738751			Mitochondrion			
+Cre17.g732000			Mitochondrion	GO:0033177;GO:0015991;GO:0015078	"proton-transporting two-sector ATPase complex, proton-transporting domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATP9A
+Cre17.g715750	GMM:29.3.4.4	protein.targeting.secretory pathway.plasma membrane		GO:0005515	protein binding	SEC13
+Cre17.g717600						
+Cre17.g704150	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase		GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GDP5
+Cre17.g732300	GMM:3.8.1	minor CHO metabolism.galactose.galactokinases		GO:0005524	ATP binding	GAL1
+Cre17.g702650			Mitochondrion			
+Cre17.g709550	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family				
+Cre17.g744697						
+Cre17.g698365						FAP172
+Cre17.g726350			Chloroplast	GO:0016021	integral component of membrane	
+Cre17.g738300	GMM:29.2.1.2.2.99;GMM:29.2.1.2.2.81	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.unknown;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.P1				RPP1
+Cre17.g741850	GMM:27.4	RNA.RNA binding				HNR1
+Cre17.g708013						
+Cre17.g724873						
+Cre17.g697600						
+Cre17.g712900			Secretory pathway			
+Cre17.g717700						
+Cre17.g707400	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003723	RNA binding	
+Cre17.g729550						
+Cre17.g722050				GO:0005515	protein binding	
+Cre17.g739250	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	FAP402
+Cre17.g746447						
+Cre17.g736650	GMM:29.5.31;GMM:29.5	protein.degradation.alanine protease;protein.degradation		GO:0008270;GO:0008237;GO:0006508	zinc ion binding;metallopeptidase activity;proteolysis	
+Cre17.g731050	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre17.g728000						
+Cre17.g707000						
+Cre17.g742866						
+Cre17.g703750			Secretory pathway			
+Cre17.g707450						
+Cre17.g747997			Secretory pathway			
+Cre17.g718350	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Secretory pathway			SRP2
+Cre17.g703300						
+Cre17.g716600	GMM:27.1	RNA.processing	Chloroplast			
+Cre17.g717100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g696350				GO:0016020;GO:0015672;GO:0005261	membrane;monovalent inorganic cation transport;cation channel activity	
+Cre17.g697934				GO:0004222	metalloendopeptidase activity	
+Cre17.g739752	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0006508;GO:0005524;GO:0004222	proteolysis;ATP binding;metalloendopeptidase activity	
+Cre17.g702400	GMM:29.1.30;GMM:23.5.2	protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS5
+Cre17.g706250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				
+Cre17.g737400	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI	Mitochondrion			
+Cre17.g719600			Mitochondrion			FAP338
+Cre17.g739400			Secretory pathway			
+Cre17.g724800						
+Cre17.g744097						
+Cre17.g713550	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR31
+Cre17.g733689						
+Cre17.g701751						
+Cre17.g704700						
+Cre17.g696250	GMM:29.2.3	protein.synthesis.initiation		GO:0005515;GO:0003723	protein binding;RNA binding	
+Cre17.g699300			Mitochondrion			
+Cre17.g747697			Mitochondrion			
+Cre17.g709950	GMM:35.1.3	not assigned.no ontology.armadillo/beta-catenin repeat family protein				
+Cre17.g703950			Secretory pathway			
+Cre17.g727700	GMM:27.1.2	RNA.processing.RNA helicase	Chloroplast	GO:0016787;GO:0005634;GO:0005524;GO:0004386;GO:0003723;GO:0003677	hydrolase activity;nucleus;ATP binding;helicase activity;RNA binding;DNA binding	HEL65
+Cre17.g718000	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC7
+Cre17.g721000	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
+Cre17.g727250			Chloroplast			
+Cre17.g732750			Secretory pathway			
+Cre17.g723850			Secretory pathway			
+Cre17.g711050	GMM:27.3;GMM:14.15	RNA.regulation of transcription;S-assimilation.AKN				
+Cre17.g727100						
+Cre17.g713350	GMM:34.8	transport.metabolite transporters at the envelope membrane	Chloroplast	GO:0055085;GO:0016020;GO:0006814;GO:0005215	transmembrane transport;membrane;sodium ion transport;transporter activity	OMT1
+Cre17.g699050						
+Cre17.g696650						
+Cre17.g727201			Mitochondrion			
+Cre17.g736350			Mitochondrion			
+Cre17.g718700			Secretory pathway			
+Cre17.g740430	GMM:34.2	transport.sugars	Chloroplast	GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
+Cre17.g734000						
+Cre17.g737850			Secretory pathway	GO:0005515	protein binding	
+Cre17.g735283	GMM:29.6.3.2	protein.folding.immunophilins (IMM).cyclophilins				CYN15
+Cre17.g704850	GMM:23.3.1.1	nucleotide metabolism.salvage.phosphoribosyltransferases.adenine phosphoribosyltransferase (APRT)		GO:0009116	nucleoside metabolic process	
+Cre17.g731900			Mitochondrion			
+Cre17.g728100	GMM:17.2.1	hormone metabolism.auxin.synthesis-degradation	Secretory pathway	GO:0016787;GO:0008152	hydrolase activity;metabolic process	
+Cre17.g700500						
+Cre17.g742650						
+Cre17.g737752			Secretory pathway			
+Cre17.g722950			Secretory pathway			
+Cre17.g740050						
+Cre17.g696450			Mitochondrion			
+Cre17.g726983						
+Cre17.g702700	GMM:34.8	transport.metabolite transporters at the envelope membrane	Secretory pathway			
+Cre17.g709050	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR28
+Cre17.g724950						
+Cre17.g712550			Mitochondrion			
+Cre17.g697000			Mitochondrion	GO:0005515	protein binding	
+Cre17.g728864			Mitochondrion			OPR105
+Cre17.g721450	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	NSS4
+Cre17.g692676						
+Cre17.g739700						
+Cre17.g744747			Chloroplast			
+Cre17.g724850	GMM:33.99	development.unspecified		GO:0005515	protein binding	
+Cre17.g738550	GMM:29.4	protein.postranslational modification		GO:0003950	NAD+ ADP-ribosyltransferase activity	
+Cre17.g743250						
+Cre17.g713450	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB31
+Cre17.g701250						FAP59
+Cre17.g739551						
+Cre17.g732951						
+Cre17.g737084						
+Cre17.g719400			Mitochondrion			
+Cre17.g722616			Secretory pathway			
+Cre17.g699975						
+Cre17.g714050	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB32
+Cre17.g709651			Mitochondrion			
+Cre17.g701000						
+Cre17.g736850	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
+Cre17.g716900				GO:0015074;GO:0006310;GO:0003677	DNA integration;DNA recombination;DNA binding	
+Cre17.g742750			Mitochondrion			
+Cre17.g703600	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				OFD1
+Cre17.g712600						
+Cre17.g746297	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
+Cre17.g701700	GMM:11.1.15	lipid metabolism.FA synthesis and FA elongation.ACP desaturase	Chloroplast	GO:0055114;GO:0045300;GO:0006631	oxidation-reduction process;acyl-[acyl-carrier-protein] desaturase activity;fatty acid metabolic process	FAB2
+Cre17.g726750	GMM:13.1.6.1.1	amino acid metabolism.synthesis.aromatic aa.chorismate.3-deoxy-D-arabino-heptulosonate 7-phosphate synthase	Chloroplast	GO:0009073;GO:0003849	aromatic amino acid family biosynthetic process;3-deoxy-7-phosphoheptulonate synthase activity	SHKA1
+Cre17.g716350			Chloroplast			
+Cre17.g725650	GMM:34.14	transport.unspecified cations	Mitochondrion	GO:0016020	membrane	
+Cre17.g730650			Secretory pathway			
+Cre17.g696200						
+Cre17.g737351	GMM:30.2.12	signalling.receptor kinases.leucine rich repeat XII				
+Cre17.g697950	GMM:34.99;GMM:34.9;GMM:34.8	transport.misc;transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane		GO:0016021;GO:0006810;GO:0005524;GO:0005471	integral component of membrane;transport;ATP binding;ATP:ADP antiporter activity	AAA3
+Cre17.g719522	GMM:26.23	misc.rhodanese	Secretory pathway			
+Cre17.g701600			Mitochondrion			
+Cre17.g741750	GMM:31.1	cell.organisation	Secretory pathway			
+Cre17.g705843			Mitochondrion	GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	
+Cre17.g719855			Mitochondrion			
+Cre17.g745847			Chloroplast			
+Cre17.g727150			Chloroplast			
+Cre17.g707150						
+Cre17.g723700	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
+Cre17.g720250	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II		GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCB4
+Cre17.g717200	GMM:28.99	DNA.unspecified	Secretory pathway	GO:0016888	"endodeoxyribonuclease activity, producing 5'-phosphomonoesters"	
+Cre17.g719150						
+Cre17.g708150	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR26
+Cre17.g708000	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			FAP260
+Cre17.g713750	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g737200						
+Cre17.g747747	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	zinc ion binding	
+Cre17.g702102			Chloroplast			
+Cre17.g725100	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006265;GO:0003917;GO:0003916;GO:0003677	DNA topological change;DNA topoisomerase type I activity;DNA topoisomerase activity;DNA binding	
+Cre17.g696600			Mitochondrion			FMR1
+Cre17.g736250	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre17.g704600			Chloroplast			
+Cre17.g700550	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
+Cre17.g728550			Mitochondrion			
+Cre17.g739426	GMM:26.24	misc.GCN5-related N-acetyltransferase				
+Cre17.g704300	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0005515	protein binding	FAP47
+Cre17.g735350	GMM:31.1	cell.organisation	Chloroplast			FAP164
+Cre17.g730450						
+Cre17.g734961	GMM:33.99	development.unspecified				
+Cre17.g740700						FAP336
+Cre17.g730350			Secretory pathway			
+Cre17.g705200			Secretory pathway			
+Cre17.g712200	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
+Cre17.g698750			Mitochondrion			OPR104
+Cre17.g721553						
+Cre17.g735550	GMM:29.4	protein.postranslational modification				
+Cre17.g729650			Mitochondrion	GO:0016787	hydrolase activity	MPA15
+Cre17.g738850			Chloroplast			
+Cre17.g700900						
+Cre17.g700450				GO:0016021	integral component of membrane	
+Cre17.g701950						
+Cre17.g708650	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO27
+Cre17.g711800	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO30
+Cre17.g725350	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0006491	N-glycan processing	GLC2B
+Cre17.g734350			Chloroplast			
+Cre17.g718950	GMM:1.3.13	PS.calvin cycle.rubisco interacting		GO:0005524	ATP binding	RCA2
+Cre17.g706600						
+Cre17.g720750	GMM:27.1	RNA.processing	Secretory pathway	GO:0016779	nucleotidyltransferase activity	TRF4
+Cre17.g747097			Chloroplast			
+Cre17.g725900			Mitochondrion			
+Cre17.g701917						
+Cre17.g747647			Secretory pathway			
+Cre17.g733026			Secretory pathway			
+Cre17.g733174	GMM:17.4.2	hormone metabolism.cytokinin.signal transduction				
+Cre17.g711503			Secretory pathway			
+Cre17.g720500	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase				
+Cre17.g743447			Secretory pathway			
+Cre17.g744297						
+Cre17.g726500	GMM:31.3	cell.cycle				ORC4
+Cre17.g740187			Mitochondrion			FAP390
+Cre17.g698266	GMM:26.1	misc.misc2				
+Cre17.g713700	GMM:13.2.6.3	amino acid metabolism.degradation.aromatic aa.tryptophan	Chloroplast	GO:0020037	heme binding	IAD2
+Cre17.g710400	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA29
+Cre17.g740950	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELIP6
+Cre17.g712150	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase	Mitochondrion			
+Cre17.g707551						
+Cre17.g718600	GMM:11.9.2.2	lipid metabolism.lipid degradation.lipases.acylglycerol lipase				
+Cre17.g710750						
+Cre17.g703200	GMM:34.99;GMM:29.3.4.99;GMM:28.99	transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified				
+Cre17.g721700	GMM:35.1.5	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein	Chloroplast			CPLD44
+Cre17.g742400	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK17
+Cre17.g699550			Secretory pathway			
+Cre17.g743797	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO8
+Cre17.g709876			Mitochondrion			
+Cre17.g706150			Chloroplast			
+Cre17.g731650			Chloroplast			
+Cre17.g715450	GMM:3.5	minor CHO metabolism.others	Mitochondrion			
+Cre17.g716850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast			
+Cre17.g702600	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK5
+Cre17.g720600	GMM:34.21	transport.calcium	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV1
+Cre17.g731600						
+Cre17.g723450	GMM:33.99;GMM:3.5;GMM:27.1	development.unspecified;minor CHO metabolism.others;RNA.processing	Mitochondrion	GO:0005515	protein binding	FAP13
+Cre17.g737650				GO:0032259;GO:0008168	methylation;methyltransferase activity	SOM6
+Cre17.g710100	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others		GO:0005515	protein binding	
+Cre17.g747597			Mitochondrion			
+Cre17.g742450				GO:0005515	protein binding	
+Cre17.g729750				GO:0008080	N-acetyltransferase activity	
+Cre17.g728200				GO:0043486;GO:0006355;GO:0006338;GO:0005634	"histone exchange;regulation of transcription, DNA-templated;chromatin remodeling;nucleus"	
+Cre17.g703932			Secretory pathway			
+Cre17.g714550	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB33
+Cre17.g741500	GMM:31.1	cell.organisation	Mitochondrion	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIL7
+Cre17.g697450				GO:0005852;GO:0005737;GO:0003743	eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity	
+Cre17.g722851	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
+Cre17.g711900			Secretory pathway	GO:0016021;GO:0008146	integral component of membrane;sulfotransferase activity	
+Cre17.g717850	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC8
+Cre17.g745447	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPK4
+Cre17.g709250			Mitochondrion	GO:0016192;GO:0016021;GO:0006810	vesicle-mediated transport;integral component of membrane;transport	
+Cre17.g727450	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
+Cre17.g707300	GMM:3.3;GMM:26.5	minor CHO metabolism.sugar alcohols;misc.acyl transferases	Secretory pathway	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	PGA3
+Cre17.g739300						
+Cre17.g734677			Chloroplast			
+Cre17.g726300				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS14
+Cre17.g732450			Secretory pathway			
+Cre17.g709800	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors				RLS1
+Cre17.g700050			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre17.g709150	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB28
+Cre17.g722550						
+Cre17.g725200	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
+Cre17.g716650			Mitochondrion			
+Cre17.g708300	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0006508;GO:0005838	proteolysis;proteasome regulatory particle	RPN12
+Cre17.g743897	GMM:21.5.1;GMM:21.5	redox.peroxiredoxin.BAS1;redox.peroxiredoxin	Secretory pathway	GO:0055114;GO:0051920;GO:0045454;GO:0016491	oxidation-reduction process;peroxiredoxin activity;cell redox homeostasis;oxidoreductase activity	PRX7
+Cre17.g739800			Mitochondrion			NCL35
+Cre17.g704901			Mitochondrion			
+Cre17.g732900			Secretory pathway	GO:0006281	DNA repair	
+Cre17.g715200	GMM:30.2.11;GMM:30.2	signalling.receptor kinases.leucine rich repeat XI;signalling.receptor kinases		GO:0005515	protein binding	
+Cre17.g747847				GO:0060236;GO:0032147;GO:0005874;GO:0005819	regulation of mitotic spindle organization;activation of protein kinase activity;microtubule;spindle	
+Cre17.g747147			Secretory pathway			
+Cre17.g699600	GMM:1.3.9	PS.calvin cycle.sedoheptulose bisphosphatase	Secretory pathway	GO:0042578;GO:0042132;GO:0005975	"phosphoric ester hydrolase activity;fructose 1,6-bisphosphate 1-phosphatase activity;carbohydrate metabolic process"	SBP2
+Cre17.g714150	GMM:34.15	transport.potassium		GO:0071805;GO:0016020;GO:0015079	potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity	KUP1
+Cre17.g727550			Chloroplast			
+Cre17.g708076			Secretory pathway			
+Cre17.g706400			Chloroplast			
+Cre17.g733678			Secretory pathway			
+Cre17.g734580						
+Cre17.g722400			Chloroplast			MOT25
+Cre17.g733400			Secretory pathway			
+Cre17.g727600						
+Cre17.g730250						
+Cre17.g708050	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre17.g710000	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre17.g697850						
+Cre17.g715000				GO:0051082;GO:0006457;GO:0005737	unfolded protein binding;protein folding;cytoplasm	HSP33
+Cre17.g713260						
+Cre17.g745547	GMM:31.6.1.11	cell.motility.eukaryotes.other				
+Cre17.g735400	GMM:27.3.71	RNA.regulation of transcription.SNF7		GO:0007034	vacuolar transport	VPS2B
+Cre17.g734757						
+Cre17.g719900	GMM:2.2.2.3	major CHO metabolism.degradation.starch.glucan water dikinase	Chloroplast	GO:2001070;GO:0016310;GO:0016301;GO:0005524	starch binding;phosphorylation;kinase activity;ATP binding	PWD1
+Cre17.g734500	GMM:34.1.1.4;GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit E;transport.p- and v-ATPases.H+-transporting two-sector ATPase		GO:0046961;GO:0033178;GO:0016747;GO:0015991	"proton-transporting ATPase activity, rotational mechanism;proton-transporting two-sector ATPase complex, catalytic domain;transferase activity, transferring acyl groups other than amino-acyl groups;ATP hydrolysis coupled proton transport"	ATPVE
+Cre17.g738050						AGG4
+Cre17.g710254						
+Cre17.g735876						
+Cre17.g734789			Secretory pathway	GO:0005515	protein binding	
+Cre17.g741272			Chloroplast			
+Cre17.g698850	GMM:2.1.2.4	major CHO metabolism.synthesis.starch.debranching	Chloroplast	GO:0003824	catalytic activity	ISA2
+Cre17.g739100	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0046872	metal ion binding	
+Cre17.g704200			Mitochondrion			
+Cre17.g703151						
+Cre17.g703850						DCC1
+Cre17.g743307						
+Cre17.g700250						
+Cre17.g716400	GMM:27.3.11	RNA.regulation of transcription.C2H2 zinc finger family				
+Cre17.g736474						
+Cre17.g730000			Chloroplast			
+Cre17.g721350						
+Cre17.g699800			Secretory pathway			PHC67
+Cre17.g729150	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre17.g742200	GMM:31.2	cell.division				
+Cre17.g715176			Chloroplast			
+Cre17.g738000	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins				AGG2
+Cre17.g743130	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre17.g735200	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN1-2
+Cre17.g730516			Chloroplast			
+Cre17.g705806			Chloroplast	GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	
+Cre17.g712700			Secretory pathway			
+Cre17.g745647			Mitochondrion			
+Cre17.g726650			Chloroplast			CGL96
+Cre17.g744597			Secretory pathway			
+Cre17.g720261			Mitochondrion			
+Cre17.g732200						
+Cre17.g698150	GMM:31.3	cell.cycle	Mitochondrion	GO:0005634	nucleus	CYCR4
+Cre17.g737350						
+Cre17.g706650						VPS22
+Cre17.g696500	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC19
+Cre17.g728950	GMM:23.5.3	nucleotide metabolism.deoxynucleotide metabolism.cytosine deaminase	Chloroplast	GO:0055114;GO:0009231;GO:0008703	oxidation-reduction process;riboflavin biosynthetic process;5-amino-6-(5-phosphoribosylamino)uracil reductase activity	RFD2
+Cre17.g706000			Mitochondrion			
+Cre17.g716251	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	SUM5
+Cre17.g703495						
+Cre17.g744847				GO:0006887;GO:0000145	exocytosis;exocyst	SEC6
+Cre17.g718150			Mitochondrion			
+Cre17.g701150			Chloroplast			
+Cre17.g726550						
+Cre17.g698200			Mitochondrion			
+Cre17.g734200	GMM:13.1.3.5.3	amino acid metabolism.synthesis.aspartate family.lysine.LL-diaminopimelic acid aminotransferase	Chloroplast	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	DPA1
+Cre17.g700800			Mitochondrion			
+Cre17.g724650	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase				
+Cre17.g743346			Chloroplast			
+Cre17.g747497			Chloroplast			
+Cre17.g726900						
+Cre17.g741550						
+Cre17.g707700	GMM:34.12	transport.metal		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NRAMP1
+Cre17.g705700	GMM:13.1.2.2.1;GMM:13.1.2.2	amino acid metabolism.synthesis.glutamate family.proline.delta 1-pyrroline-5-carboxylate synthetase;amino acid metabolism.synthesis.glutamate family.proline		GO:0003723	RNA binding	GGK1
+Cre17.g698450	GMM:25.5	C1-metabolism.methylenetetrahydrofolate dehydrogenase and methenyltetrahydrofolate cyclohydrolase		GO:0055114;GO:0009396;GO:0004488;GO:0003824	oxidation-reduction process;folic acid-containing compound biosynthetic process;methylenetetrahydrofolate dehydrogenase (NADP+) activity;catalytic activity	
+Cre17.g717400	GMM:27.1	RNA.processing				
+Cre17.g744497	GMM:30.11	signalling.light	Mitochondrion			
+Cre17.g719050						
+Cre17.g697750	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				
+Cre17.g721800						
+Cre17.g735650						
+Cre17.g705900						
+Cre17.g715300	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins				PKD2
+Cre17.g713650	GMM:28.2	DNA.repair		GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	MSH5
+Cre17.g726150	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	
+Cre17.g707100						
+Cre17.g728300	GMM:29.5.3	protein.degradation.cysteine protease		GO:0006508;GO:0005622;GO:0004198	proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity	FAP226
+Cre17.g742998			Mitochondrion			
+Cre17.g706500			Mitochondrion			
+Cre17.g715850						
+Cre17.g716026						
+Cre17.g714400						
+Cre17.g724100			Secretory pathway			
+Cre17.g697650	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation		GO:0070008;GO:0008236;GO:0006508;GO:0004252	serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity	
+Cre17.g714650	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR33
+Cre17.g705050			Secretory pathway	GO:0016021;GO:0016020;GO:0006811;GO:0006810;GO:0005230	integral component of membrane;membrane;ion transport;transport;extracellular ligand-gated ion channel activity	LIC1
+Cre17.g746647	GMM:35.1.12	not assigned.no ontology.pumilio/Puf RNA-binding domain-containing protein		GO:0003723	RNA binding	PUF2
+Cre17.g698532						
+Cre17.g711250	GMM:34.19	transport.major intrinsic proteins	Secretory pathway	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	MIP2
+Cre17.g744397			Chloroplast			
+Cre17.g702351	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	hlm26
+Cre17.g741293			Mitochondrion			
+Cre17.g709350	GMM:31.4	cell.vesicle transport		GO:0005515	protein binding	SYP5
+Cre17.g745097			Secretory pathway			
+Cre17.g746797			Chloroplast			
+Cre17.g708500						
+Cre17.g734532			Secretory pathway			
+Cre17.g739201			Mitochondrion			FAP293
+Cre17.g715700	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672;GO:0003824	protein phosphorylation;protein kinase activity;catalytic activity	VTC3
+Cre17.g746397			Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	
+Cre17.g742132			Secretory pathway			
+Cre17.g702950				GO:0016021	integral component of membrane	
+Cre17.g698516						
+Cre17.g743997						
+Cre17.g725400						
+Cre17.g745297						
+Cre17.g731561						
+Cre17.g713100						
+Cre17.g736900						
+Cre17.g723100			Chloroplast			
+Cre17.g708400	GMM:29.5.1	protein.degradation.subtilases		GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB12
+Cre17.g739515	GMM:3.3	minor CHO metabolism.sugar alcohols				
+Cre17.g724750						
+Cre24.g755197			Chloroplast			RBD3
+Cre24.g755097	GMM:34.18.1	transport.unspecified anions.arsenite-transporting ATPase	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre24.g755247						
+Cre24.g755997	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			FAP150
+Cre24.g755447				GO:0005681;GO:0000398	"spliceosomal complex;mRNA splicing, via spliceosome"	
+Cre24.g755797			Secretory pathway			
+Cre24.g755297			Mitochondrion			
+Cre24.g756047	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				cya6
+Cre24.g755647	GMM:27.3.99;GMM:27.1.3.6	RNA.regulation of transcription.unclassified;RNA.processing.3' end processing.CPSF30				
+Cre24.g755547						
+Cre24.g755947			Secretory pathway			
+Cre24.g755697						
+Cre24.g755497				GO:0016021	integral component of membrane	
+Cre24.g755897						
+Cre24.g755397			Secretory pathway			
+Cre24.g755747						
+Cre24.g755847			Mitochondrion			
+Cre24.g755347	GMM:27.1.2	RNA.processing.RNA helicase		GO:0005524;GO:0004386;GO:0003676	ATP binding;helicase activity;nucleic acid binding	
+Cre24.g755597	GMM:19.16	tetrapyrrole synthesis.chlorophyll b synthase	Chloroplast	GO:0055114;GO:0051537;GO:0016491	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"	
+Cre24.g755147			Secretory pathway			
+Cre37.g759897			Secretory pathway			
+Cre37.g759797						
+Cre37.g759847			Mitochondrion			
+Cre37.g759947						
+Cre52.g761647			Secretory pathway			
+Cre28.g757747						
+Cre28.g757647						
+Cre28.g757697						
+Cre28.g757497			Secretory pathway			
+Cre28.g757597						
+Cre28.g757547			Mitochondrion			
+Cre49.g761297						
+Cre49.g761347						FAP360
+Cre39.g760047				GO:0046983	protein dimerization activity	
+Cre39.g760097			Secretory pathway			
+Cre20.g751747						
+Cre20.g751597						
+Cre20.g751497						
+Cre20.g751797			Chloroplast			
+Cre20.g751397						
+Cre20.g751447						
+Cre20.g751547			Mitochondrion			
+Cre20.g751697						
+Cre20.g751647			Mitochondrion			
+Cre05.g233450	GMM:26.2;GMM:10.3.2	misc.UDP glucosyl and glucoronyl transferases;cell wall.hemicellulose synthesis.glucuronoxylan				ELG30
+Cre05.g236650	GMM:30.1.1;GMM:23.1.2	signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG63
+Cre05.g244350						
+Cre05.g236000	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre05.g241400			Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre05.g234892						
+Cre05.g234652	GMM:31.1;GMM:27.2	cell.organisation;RNA.transcription				
+Cre05.g233702						
+Cre05.g247450	GMM:26.23	misc.rhodanese	Chloroplast			CGL56
+Cre05.g240800	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Chloroplast			NUO17
+Cre05.g230950			Mitochondrion			
+Cre05.g234640						
+Cre05.g241636	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)		GO:0046983	protein dimerization activity	
+Cre05.g239978				GO:0016020	membrane	
+Cre05.g237550			Secretory pathway			
+Cre05.g245158	GMM:34.18.1	transport.unspecified anions.arsenite-transporting ATPase	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre05.g236907						
+Cre05.g243353						
+Cre05.g234637	GMM:29.2.1.2.1.515	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S15A		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	
+Cre05.g232304						
+Cre05.g238332	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0015979;GO:0009538;GO:0009522	photosynthesis;photosystem I reaction center;photosystem I	PSAD
+Cre05.g247650			Chloroplast			
+Cre05.g241600						
+Cre05.g232900			Mitochondrion			
+Cre05.g244950	GMM:29.3.4.1	protein.targeting.secretory pathway.ER	Secretory pathway	GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	
+Cre05.g239550			Chloroplast			
+Cre05.g236850			Mitochondrion			
+Cre05.g240950						
+Cre05.g241655			Chloroplast			
+Cre05.g237910						
+Cre05.g244000			Secretory pathway			
+Cre05.g243453			Chloroplast			
+Cre05.g242178				GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	
+Cre05.g234656	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre05.g232300			Mitochondrion			
+Cre05.g248401			Secretory pathway			
+Cre05.g234576			Chloroplast			
+Cre05.g240600						
+Cre05.g247900			Chloroplast	GO:0005515	protein binding	
+Cre05.g242859						
+Cre05.g241640						
+Cre05.g243451			Chloroplast	GO:0005737	cytoplasm	
+Cre05.g238761	GMM:3.3	minor CHO metabolism.sugar alcohols				
+Cre05.g240450			Mitochondrion			
+Cre05.g245500	GMM:31.1	cell.organisation				FAP175
+Cre05.g240050			Mitochondrion			
+Cre05.g234655	GMM:29.4	protein.postranslational modification		GO:0005515	protein binding	
+Cre05.g246753			Secretory pathway			
+Cre05.g248650						
+Cre05.g246250			Secretory pathway			
+Cre05.g238311			Chloroplast			
+Cre05.g239950						
+Cre05.g239300						
+Cre05.g234638	GMM:23.1.2.1	nucleotide metabolism.synthesis.purine.amidophosphoribosyltransferase	Chloroplast	GO:0009116	nucleoside metabolic process	
+Cre05.g237000	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			MAP1D
+Cre05.g234934			Mitochondrion			
+Cre05.g241633						
+Cre05.g244900			Mitochondrion			
+Cre05.g243151						
+Cre05.g242300	GMM:29.2.3	protein.synthesis.initiation		GO:0005852;GO:0005737;GO:0003743	eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity	EIF3D
+Cre05.g235550			Chloroplast			
+Cre05.g246550			Chloroplast			LAO3
+Cre05.g244550				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre05.g238374	GMM:29.5.11.4.2;GMM:27.3.99	protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.unclassified	Chloroplast	GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	
+Cre05.g232004						
+Cre05.g243601						CSU5
+Cre05.g239600			Chloroplast			
+Cre05.g236183			Secretory pathway			
+Cre05.g238500	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases	Chloroplast	GO:0008173;GO:0006364;GO:0005737	RNA methyltransferase activity;rRNA processing;cytoplasm	
+Cre05.g241550						
+Cre05.g244300						
+Cre05.g233051			Mitochondrion			
+Cre05.g234050			Chloroplast			
+Cre05.g230800	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0008270;GO:0005524	zinc ion binding;ATP binding	
+Cre05.g237700	GMM:27.4	RNA.RNA binding		GO:0072588;GO:0042254;GO:0030515;GO:0001522	box H/ACA RNP complex;ribosome biogenesis;snoRNA binding;pseudouridine synthesis	NOP10
+Cre05.g247600	GMM:29.5.11.3;GMM:27.4	protein.degradation.ubiquitin.E2;RNA.RNA binding				UBC2
+Cre05.g234666				GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
+Cre05.g245950	GMM:30.5;GMM:26.17	signalling.G-proteins;misc.dynamin		GO:0005525;GO:0003924	GTP binding;GTPase activity	DRP1
+Cre05.g236500	GMM:11.8.1.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids.ceramidase"	Secretory pathway			
+Cre05.g243354			Chloroplast			
+Cre05.g233305	GMM:31.2.5	cell.division.plastid	Chloroplast	GO:0050662;GO:0003824	coenzyme binding;catalytic activity	
+Cre05.g238260			Chloroplast			
+Cre05.g232100						
+Cre05.g232750	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification				CNK4
+Cre05.g237450	GMM:29.2.1.1.1.1.530;GMM:29.2.1.1.1.1.0530	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S30A;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S30A	Chloroplast	GO:0044238	primary metabolic process	PSRP1
+Cre05.g232752			Mitochondrion			
+Cre05.g241851	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
+Cre05.g233751						
+Cre05.g233800	GMM:29.1.14	protein.aa activation.glycine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	TSG1
+Cre05.g243452			Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
+Cre05.g246376			Mitochondrion			
+Cre05.g239850	GMM:991.1	Mineral Nutrition.phosphatie	Secretory pathway			PHO4
+Cre05.g234550	GMM:1.3.6	PS.calvin cycle.aldolase	Chloroplast	GO:0006096;GO:0004332	glycolytic process;fructose-bisphosphate aldolase activity	FBA3
+Cre05.g242860						
+Cre05.g240300			Chloroplast			
+Cre05.g245800						
+Cre05.g233303	GMM:29.7.4	protein.glycosylation.UDP-glucose glycoprotein glucosyltransferase	Chloroplast	GO:0016757;GO:0006486;GO:0003980	"transferase activity, transferring glycosyl groups;protein glycosylation;UDP-glucose:glycoprotein glucosyltransferase activity"	
+Cre05.g233602						
+Cre05.g236700			Chloroplast			
+Cre05.g241648			Chloroplast			
+Cre05.g248400	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Mitochondrion	GO:0008270;GO:0004089	zinc ion binding;carbonate dehydratase activity	CAH4
+Cre05.g242602			Mitochondrion			
+Cre05.g234801	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase	Chloroplast			
+Cre05.g232456			Chloroplast			
+Cre05.g241202	GMM:29.5.3	protein.degradation.cysteine protease		GO:0006508;GO:0005622;GO:0004198	proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity	
+Cre05.g238850			Mitochondrion			PHC17
+Cre05.g246100			Mitochondrion			
+Cre05.g237600			Mitochondrion	GO:0008168;GO:0006412	methyltransferase activity;translation	
+Cre05.g241000			Chloroplast			
+Cre05.g247250			Mitochondrion			
+Cre05.g234657				GO:0003725	double-stranded RNA binding	
+Cre05.g236626						
+Cre05.g244500						
+Cre05.g241645						
+Cre05.g239500						FAP38
+Cre05.g236450			Mitochondrion;Chloroplast			
+Cre05.g234600			Secretory pathway			
+Cre05.g243150	GMM:33.99	development.unspecified	Secretory pathway			
+Cre05.g247400	GMM:26.23	misc.rhodanese	Secretory pathway			
+Cre05.g241637	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B		GO:0042073	intraciliary transport	IFT46
+Cre05.g235500	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN7-1
+Cre05.g235186			Mitochondrion			
+Cre05.g233900	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate	Chloroplast	GO:0055114;GO:0020037;GO:0006979;GO:0004601	oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity	APX4
+Cre05.g244050						
+Cre05.g230971						
+Cre05.g241500						MOT30
+Cre05.g241630						
+Cre05.g242500	GMM:31.1	cell.organisation				RSP4
+Cre05.g237800	GMM:30.1.1;GMM:23.1.2	signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG64
+Cre05.g238140						
+Cre05.g242856	GMM:29.5.1	protein.degradation.subtilases	Mitochondrion	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
+Cre05.g240750	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Mitochondrion			TEF17
+Cre05.g242400	GMM:1.1.40	PS.lightreaction.cyclic electron flow-chlororespiration	Chloroplast			PGR5
+Cre05.g244800	GMM:30.11	signalling.light	Chloroplast			
+Cre05.g242502			Chloroplast			
+Cre05.g247700						
+Cre05.g232450						
+Cre05.g241350	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre05.g238100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK25
+Cre05.g238800						
+Cre05.g232950	GMM:31.1	cell.organisation				
+Cre05.g235060						
+Cre05.g241650	GMM:29.5	protein.degradation	Chloroplast			
+Cre05.g245150						
+Cre05.g238550						
+Cre05.g247950			Mitochondrion			
+Cre05.g238450			Secretory pathway			
+Cre05.g233650	GMM:30.99	signalling.unspecified				FXL9
+Cre05.g234659						MRPL30
+Cre05.g236039	GMM:29.4	protein.postranslational modification	Secretory pathway			
+Cre05.g247500	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0046872	metal ion binding	
+Cre05.g232150	GMM:12.3.1	N-metabolism.N-degradation.glutamate dehydrogenase	Mitochondrion	GO:0055114;GO:0016491;GO:0006520	oxidation-reduction process;oxidoreductase activity;cellular amino acid metabolic process	GDH2
+Cre05.g239350			Chloroplast			
+Cre05.g248300	GMM:34.12	transport.metal		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	
+Cre05.g237250						
+Cre05.g245102						CGL3
+Cre05.g245550	GMM:30.4.2;GMM:30.4	signalling.phosphinositides.phosphatidylinositol 4-kinase;signalling.phosphinositides	Mitochondrion	GO:0048015;GO:0046854;GO:0016773	"phosphatidylinositol-mediated signaling;phosphatidylinositol phosphorylation;phosphotransferase activity, alcohol group as acceptor"	PIK1
+Cre05.g235900			Chloroplast			
+Cre05.g237526			Chloroplast			
+Cre05.g240550	GMM:33.99;GMM:1.1.1.4	development.unspecified;PS.lightreaction.photosystem II.LHC biogenesis	Secretory pathway			TLA1
+Cre05.g243600	GMM:24	biodegradation of xenobiotics				GOX2
+Cre05.g233400						
+Cre05.g233802						
+Cre05.g245352			Secretory pathway	GO:0016020;GO:0005975;GO:0005044;GO:0004553	"membrane;carbohydrate metabolic process;scavenger receptor activity;hydrolase activity, hydrolyzing O-glycosyl compounds"	
+Cre05.g241649						
+Cre05.g242950			Secretory pathway	GO:0015934;GO:0006412;GO:0005840;GO:0003735	large ribosomal subunit;translation;ribosome;structural constituent of ribosome	MRPL22
+Cre05.g234644						
+Cre05.g233402			Mitochondrion			
+Cre05.g234000	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB26
+Cre05.g244750	GMM:31.2	cell.division	Secretory pathway			
+Cre05.g238290	GMM:26.17	misc.dynamin		GO:0005525;GO:0003924	GTP binding;GTPase activity	DRP7
+Cre05.g248550	GMM:29.5.11.4.2;GMM:27.3.57;GMM:27.3.11	protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.JUMONJI family;RNA.regulation of transcription.C2H2 zinc finger family		GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre05.g230803	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0005524	ATP binding	
+Cre05.g239650			Mitochondrion			
+Cre05.g242600	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family	Mitochondrion	GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	CGL106
+Cre05.g233850						
+Cre05.g244700	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH15
+Cre05.g241646						
+Cre05.g234645			Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	
+Cre05.g244236						
+Cre05.g246050	GMM:29.5.3	protein.degradation.cysteine protease				OTU3
+Cre05.g240100			Chloroplast			EXN9
+Cre05.g238322	GMM:29.1.13;GMM:29.1	protein.aa activation.tryptophan-tRNA ligase;protein.aa activation	Chloroplast	GO:0006436;GO:0006418;GO:0005737;GO:0005524;GO:0004830;GO:0004812;GO:0000166	tryptophanyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;tryptophan-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	
+Cre05.g240900			Secretory pathway			
+Cre05.g233052			Secretory pathway			
+Cre05.g237930			Secretory pathway			
+Cre05.g234700	GMM:4.3.14;GMM:4.2.14;GMM:4.1.14;GMM:11.1.30	glycolysis.unclear/dually targeted.pyruvate kinase (PK);glycolysis.plastid branch.pyruvate kinase (PK);glycolysis.cytosolic branch.pyruvate kinase (PK);lipid metabolism.FA synthesis and FA elongation.pyruvate kinase		GO:0030955;GO:0006096;GO:0004743;GO:0000287	potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding	PYK3
+Cre05.g231100	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre05.g241641			Mitochondrion			
+Cre05.g246552	GMM:35.1.1	not assigned.no ontology.ABC1 family protein	Chloroplast			
+Cre05.g239151	GMM:25.8	C1-metabolism.tetrahydrofolate synthase	Mitochondrion	GO:0006464	cellular protein modification process	
+Cre05.g246200	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre05.g248050						
+Cre05.g242900			Mitochondrion			
+Cre05.g241450	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0006614;GO:0005525	SRP-dependent cotranslational protein targeting to membrane;GTP binding	FTSY
+Cre05.g242179			Secretory pathway	GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GDP7
+Cre05.g239083						
+Cre05.g241050						
+Cre05.g245450	GMM:18.8;GMM:18	Co-factor and vitamine metabolism.ubiquinone;Co-factor and vitamine metabolism	Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	COQ5A
+Cre05.g248150	GMM:3.3;GMM:26.5;GMM:11.3.1	minor CHO metabolism.sugar alcohols;misc.acyl transferases;lipid metabolism.phospholipid synthesis.1-acylglycerol-3-phosphate O-acyltransferase	Secretory pathway	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	PGA2
+Cre05.g232751			Chloroplast			
+Cre05.g236216	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre05.g243802			Secretory pathway			
+Cre05.g241634	GMM:28.1.3.2.1;GMM:28.1.3;GMM:28.1.1	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone;DNA.synthesis/chromatin structure.retrotransposon/transposase		GO:0003677	DNA binding	HAV1
+Cre05.g238364	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF				
+Cre05.g241150			Mitochondrion	GO:0007076	mitotic chromosome condensation	
+Cre05.g242301			Mitochondrion			
+Cre05.g241300	GMM:27.1	RNA.processing				SMPF
+Cre05.g235850			Mitochondrion			
+Cre05.g242750	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
+Cre05.g238250	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family		GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre05.g243850						
+Cre05.g234663				GO:0070403	NAD+ binding	
+Cre05.g245701			Chloroplast			FAP104
+Cre05.g243450	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX1
+Cre05.g243803						
+Cre05.g240533			Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre05.g247200			Mitochondrion			
+Cre05.g246800	GMM:19.40;GMM:19.4	tetrapyrrole synthesis.regulation;tetrapyrrole synthesis.ALA dehydratase	Chloroplast			GUN4
+Cre05.g241629			Mitochondrion			
+Cre05.g230700			Secretory pathway			
+Cre05.g240350						
+Cre05.g237283			Secretory pathway;Chloroplast			
+Cre05.g234300	GMM:30.11.1	signalling.light.COP9 signalosome		GO:0005515	protein binding	
+Cre05.g242501						
+Cre05.g233502						
+Cre05.g237650			Mitochondrion			
+Cre05.g232600						
+Cre05.g247050	GMM:34.12	transport.metal	Secretory pathway	GO:0035434;GO:0016021;GO:0005375	copper ion transmembrane transport;integral component of membrane;copper ion transmembrane transporter activity	COPT1
+Cre05.g244052			Chloroplast			
+Cre05.g241850	GMM:8.2.11	TCA / organic transformation.other organic acid transformations.atp-citrate lyase				ACLA1
+Cre05.g246377			Mitochondrion	GO:0019239	deaminase activity	
+Cre05.g234750			Mitochondrion			CGLD25
+Cre05.g248600	GMM:34.12	transport.metal	Chloroplast	GO:0046872;GO:0030001	metal ion binding;metal ion transport	PCC1
+Cre05.g246551			Chloroplast			
+Cre05.g236750			Mitochondrion			
+Cre05.g234500	GMM:33.99;GMM:29.5.11	development.unspecified;protein.degradation.ubiquitin	Chloroplast	GO:0005515	protein binding	
+Cre05.g238935	GMM:29.2.3;GMM:28.1;GMM:27.1.2	protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase	Secretory pathway			
+Cre05.g243550						
+Cre05.g236400			Mitochondrion	GO:0008080	N-acetyltransferase activity	
+Cre05.g234658						
+Cre05.g233050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP162
+Cre05.g233550	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre05.g238687			Secretory pathway			PHC35
+Cre05.g247150			Chloroplast			
+Cre05.g237200	GMM:26.17	misc.dynamin	Secretory pathway	GO:0005525	GTP binding	DRP6
+Cre05.g243700						
+Cre05.g244450			Mitochondrion			
+Cre05.g238950	GMM:27.1	RNA.processing		GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	CGLD33
+Cre05.g243650						
+Cre05.g243351						
+Cre05.g237100				GO:0034453;GO:0005815	microtubule anchoring;microtubule organizing center	MOT52
+Cre05.g237050			Chloroplast			CGLD27
+Cre05.g237400	GMM:13.1.3.5.4	amino acid metabolism.synthesis.aspartate family.lysine.diaminopimelate epimerase	Chloroplast	GO:0009089;GO:0008837	lysine biosynthetic process via diaminopimelate;diaminopimelate epimerase activity	DAE1
+Cre05.g247851	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP2
+Cre05.g245901						
+Cre05.g240000	GMM:26.13;GMM:11.3	misc.acid and other phosphatases;lipid metabolism.phospholipid synthesis	Secretory pathway			
+Cre05.g244850						
+Cre05.g242857						
+Cre05.g238600	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC36
+Cre05.g240150	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC16
+Cre05.g232800				GO:0055114;GO:0032542	oxidation-reduction process;sulfiredoxin activity	SRX1
+Cre05.g237950						
+Cre05.g246400				GO:0016407;GO:0008152	acetyltransferase activity;metabolic process	
+Cre05.g246650			Chloroplast			
+Cre05.g243000	GMM:27.3.5;GMM:17.4.2	RNA.regulation of transcription.ARR;hormone metabolism.cytokinin.signal transduction		GO:0000160	phosphorelay signal transduction system	hik
+Cre05.g232200	GMM:9.2.2;GMM:9.2.1.4;GMM:9.2.1.2	mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.internal matrix;mitochondrial electron transport / ATP synthesis.NADH-DH.type II.external	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NDA3
+Cre05.g238280			Mitochondrion			FAP205
+Cre05.g241644			Chloroplast			
+Cre05.g234642						
+Cre05.g234643						
+Cre05.g244150						
+Cre05.g242550	GMM:31.1	cell.organisation				RSP6
+Cre05.g247550	GMM:26.9	misc.glutathione S transferases	Mitochondrion	GO:0005515	protein binding	
+Cre05.g243455				GO:0005515	protein binding	
+Cre05.g241651			Chloroplast			
+Cre05.g230900	GMM:26.13;GMM:11.3	misc.acid and other phosphatases;lipid metabolism.phospholipid synthesis	Secretory pathway			
+Cre05.g236878			Mitochondrion	GO:0008080	N-acetyltransferase activity	
+Cre05.g241900						
+Cre05.g239400						
+Cre05.g239652						
+Cre05.g233902						
+Cre05.g240700			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	FAP378
+Cre05.g240225						
+Cre05.g241638			Mitochondrion	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	
+Cre05.g247350						
+Cre05.g243050	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXF2
+Cre05.g235750	GMM:28.2	DNA.repair		GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	MSH6
+Cre05.g239250	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family		GO:0005634	nucleus	
+Cre05.g248500	GMM:21.1	redox.thioredoxin	Mitochondrion	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXO
+Cre05.g234646						
+Cre05.g236600						
+Cre05.g237850			Secretory pathway			
+Cre05.g233950			Chloroplast			CGL129
+Cre05.g243454	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
+Cre05.g241654						
+Cre05.g242858			Mitochondrion			
+Cre05.g232550	GMM:4.3.12	glycolysis.unclear/dually targeted.phosphoglycerate mutase				PGM4
+Cre05.g238724						CSB27
+Cre05.g240500				GO:0008270	zinc ion binding	
+Cre05.g234661	GMM:9.5	mitochondrial electron transport / ATP synthesis.cytochrome c reductase	Secretory pathway	GO:0005524	ATP binding	BCS1
+Cre05.g244701			Mitochondrion			
+Cre05.g242200	GMM:33.99;GMM:31.1;GMM:30.1;GMM:29.4;GMM:29.2.2.3.4;GMM:27.3.51;GMM:27.1	"development.unspecified;cell.organisation;signalling.in sugar and nutrient physiology;protein.postranslational modification;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins;RNA.regulation of transcription.general transcription, TBP-binding protein;RNA.processing"		GO:0005515	protein binding	
+Cre05.g239900	GMM:14.1	S-assimilation.APS	Chloroplast	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS15
+Cre05.g244200			Chloroplast			COTH2
+Cre05.g237750						
+Cre05.g235800						FBB19
+Cre05.g246553						
+Cre05.g236250	GMM:33.99;GMM:3.5;GMM:29.2.2.3.4;GMM:27.3.55;GMM:20.2.2	development.unspecified;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins;RNA.regulation of transcription.HDA;stress.abiotic.cold	Mitochondrion	GO:0005515	protein binding	
+Cre05.g239750	GMM:14.1	S-assimilation.APS		GO:0003824	catalytic activity	ARS13
+Cre05.g239067	GMM:25.8	C1-metabolism.tetrahydrofolate synthase	Mitochondrion	GO:0009396;GO:0009058;GO:0005524;GO:0004326	folic acid-containing compound biosynthetic process;biosynthetic process;ATP binding;tetrahydrofolylpolyglutamate synthase activity	
+Cre05.g246750			Chloroplast			
+Cre05.g235450	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre05.g245900	GMM:26.26.1;GMM:18.4.1;GMM:16.5.1.1.1.1;GMM:13.1.4.1.4	misc.aminotransferases.aminotransferase class IV family protein;Co-factor and vitamine metabolism.pantothenate.branched-chain amino acid aminotransferase;secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.branched-chain amino acid aminotransferase  (BCAT/MAAT);amino acid metabolism.synthesis.branched chain group.common.branched-chain-amino-acid aminotransferase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	BCA2
+Cre05.g245351						
+Cre05.g234664	GMM:3.5	minor CHO metabolism.others		GO:0052855	ADP-dependent NAD(P)H-hydrate dehydratase activity	
+Cre05.g235102	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre05.g242850						
+Cre05.g236050						
+Cre05.g243472			Mitochondrion			
+Cre05.g242180			Secretory pathway			
+Cre05.g245101			Mitochondrion			
+Cre05.g241631						
+Cre05.g243900			Secretory pathway			
+Cre05.g233350						
+Cre05.g245451	GMM:29.5	protein.degradation	Secretory pathway	GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL10
+Cre05.g238353			Mitochondrion			
+Cre05.g232000			Mitochondrion			
+Cre05.g247000	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor		GO:0005515	protein binding	
+Cre05.g248100	GMM:31.1	cell.organisation				ANK1
+Cre05.g235700			Secretory pathway	GO:0006629	lipid metabolic process	
+Cre05.g246000						
+Cre05.g243801			Chloroplast			FAP387
+Cre05.g231050				GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre05.g231002						
+Cre05.g232350						
+Cre05.g234250	GMM:28.2	DNA.repair	Chloroplast	GO:0006284	base-excision repair	
+Cre05.g234648						
+Cre05.g237870			Secretory pathway			
+Cre05.g236501	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"				
+Cre05.g233551	GMM:33.99;GMM:27.3.28	development.unspecified;RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Mitochondrion	GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre05.g236926						
+Cre05.g235650			Secretory pathway			
+Cre05.g246850			Secretory pathway			
+Cre05.g241751			Mitochondrion			
+Cre05.g242050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			
+Cre05.g234660	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
+Cre05.g237150						
+Cre05.g242700	GMM:29.5.1	protein.degradation.subtilases	Mitochondrion	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB9
+Cre05.g232454			Mitochondrion			
+Cre05.g240850	GMM:18.2	Co-factor and vitamine metabolism.thiamine	Chloroplast	GO:0051536;GO:0009228	iron-sulfur cluster binding;thiamine biosynthetic process	THIC
+Cre05.g238000	GMM:28.2	DNA.repair				
+Cre05.g237500			Secretory pathway			
+Cre05.g234653						
+Cre05.g248200	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase	Chloroplast	GO:0006629	lipid metabolic process	
+Cre05.g238200			Chloroplast			
+Cre05.g232305						
+Cre05.g248250			Chloroplast	GO:0055114;GO:0016491;GO:0009073;GO:0003856	oxidation-reduction process;oxidoreductase activity;aromatic amino acid family biosynthetic process;3-dehydroquinate synthase activity	
+Cre05.g241250						
+Cre05.g246600						
+Cre05.g240400	GMM:26.6	misc.O-methyl transferases		GO:0008171	O-methyltransferase activity	SOM2
+Cre05.g233100	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0005515;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;protein binding;microtubule motor activity	KIN14B-1
+Cre05.g241647						
+Cre05.g244400						
+Cre05.g241652						
+Cre05.g230650						
+Cre05.g234641			Mitochondrion			
+Cre05.g235600						
+Cre05.g246300						
+Cre05.g241950	GMM:34.9;GMM:34.18	transport.metabolite transporters at the mitochondrial membrane;transport.unspecified anions		GO:0055085;GO:0005741	transmembrane transport;mitochondrial outer membrane	VDAC2
+Cre05.g234350						
+Cre05.g238900	GMM:29.2.2.3.5	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL25
+Cre05.g232455						
+Cre05.g241643						
+Cre05.g239450			Secretory pathway			
+Cre05.g241639			Chloroplast			
+Cre05.g245700	GMM:31.1;GMM:29.4	cell.organisation;protein.postranslational modification	Mitochondrion			ANK25
+Cre05.g239050						
+Cre05.g231000						
+Cre05.g232850				GO:0016531;GO:0006825;GO:0005758;GO:0005507	copper chaperone activity;copper ion transport;mitochondrial intermembrane space;copper ion binding	COX17
+Cre05.g247100			Chloroplast			COTH1
+Cre05.g235355			Chloroplast			
+Cre05.g239200						FAP275
+Cre05.g239000						
+Cre05.g230804						SNF2
+Cre05.g243950			Secretory pathway			
+Cre05.g234662						
+Cre05.g233600	GMM:31.3;GMM:31.2;GMM:29.4	cell.cycle;cell.division;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre05.g234667	GMM:31.4	cell.vesicle transport		GO:0030131;GO:0030117;GO:0016192;GO:0006886	clathrin adaptor complex;membrane coat;vesicle-mediated transport;intracellular protein transport	
+Cre05.g234400	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre05.g238650	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC5
+Cre05.g241100	GMM:34.99	transport.misc	Chloroplast			
+Cre05.g239100	GMM:25.8	C1-metabolism.tetrahydrofolate synthase	Mitochondrion	GO:0009396;GO:0009058;GO:0005524;GO:0004326	folic acid-containing compound biosynthetic process;biosynthetic process;ATP binding;tetrahydrofolylpolyglutamate synthase activity	FPG2
+Cre05.g236350				GO:0055114	oxidation-reduction process	
+Cre05.g236550				GO:0055114	oxidation-reduction process	
+Cre05.g241632						
+Cre05.g242650						
+Cre05.g244901				GO:0022900;GO:0005747;GO:0005739	electron transport chain;mitochondrial respiratory chain complex I;mitochondrion	NUOB12
+Cre05.g238301			Mitochondrion			
+Cre05.g241750	GMM:30.1.2	signalling.in sugar and nutrient physiology.pyruvate dehydrogenase kinase	Mitochondrion			PDK3
+Cre05.g246950						
+Cre05.g234636				GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	
+Cre05.g245100			Mitochondrion	GO:0055114	oxidation-reduction process	
+Cre05.g234650						
+Cre05.g233750			Secretory pathway			
+Cre05.g236802			Chloroplast			
+Cre05.g235018			Secretory pathway			
+Cre05.g248700				GO:0003677	DNA binding	
+Cre05.g247300			Mitochondrion			
+Cre05.g234100	GMM:26.1;GMM:16.1.4.7	misc.misc2;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP745A1
+Cre05.g243352			Mitochondrion			
+Cre05.g234850	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
+Cre05.g239700			Mitochondrion			
+Cre05.g236375						
+Cre05.g241642			Mitochondrion			
+Cre05.g247850				GO:0016787	hydrolase activity	
+Cre05.g248450	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Mitochondrion	GO:0008270;GO:0004089	zinc ion binding;carbonate dehydratase activity	CAH5
+Cre05.g242350	GMM:34.21	transport.calcium		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	
+Cre05.g237890			Chloroplast			
+Cre05.g230850			Chloroplast			
+Cre05.g234649			Secretory pathway	GO:0005515	protein binding	
+Cre05.g237350						
+Cre05.g238270						
+Cre05.g230600	GMM:31.2;GMM:20.2.5	cell.division;stress.abiotic.light				
+Cre05.g232003			Secretory pathway			
+Cre05.g238400			Mitochondrion			
+Cre05.g243800	GMM:1.1.1.3;GMM:1.1.1.2	PS.lightreaction.photosystem II.biogenesis;PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast.Stroma.Thylakoid.Lumen	GO:0010207	photosystem II assembly	PSB27
+Cre05.g234651	GMM:3.5	minor CHO metabolism.others	Mitochondrion;Chloroplast	GO:0016853;GO:0005975	isomerase activity;carbohydrate metabolic process	
+Cre05.g236950	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
+Cre05.g240200				GO:0008270	zinc ion binding	
+Cre05.g240251			Chloroplast			
+Cre05.g234976						
+Cre05.g234150						
+Cre05.g240650	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat				DNJ32
+Cre05.g235950						
+Cre05.g246752						
+Cre05.g238150			Secretory pathway	GO:0005515	protein binding	
+Cre05.g234639	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0005524	ATP binding	CCT4
+Cre05.g244100						
+Cre05.g235228						CSU4
+Cre05.g232050			Mitochondrion			
+Cre05.g236525			Mitochondrion			
+Cre05.g243358						
+Cre05.g233300	GMM:26.6;GMM:19.3	misc.O-methyl transferases;tetrapyrrole synthesis.GSA		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre05.g245350			Secretory pathway			
+Cre05.g244650						
+Cre05.g236300						
+Cre05.g243602			Chloroplast			
+Cre05.g244250	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Chloroplast	GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC6
+Cre05.g242100	GMM:29.5.1	protein.degradation.subtilases		GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB8
+Cre05.g246900			Mitochondrion			
+Cre05.g241653				GO:0005515	protein binding	
+Cre05.g239800	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS14
+Cre05.g235144						
+Cre05.g235400	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor		GO:0015074;GO:0005515	DNA integration;protein binding	
+Cre05.g238052	GMM:31.1	cell.organisation				
+Cre05.g248000			Mitochondrion			CGL29
+Cre05.g236150						
+Cre05.g246150	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG13
+Cre05.g241635			Secretory pathway			
+Cre05.g234665	GMM:31.4	cell.vesicle transport	Mitochondrion	GO:0030131;GO:0030117;GO:0016192;GO:0006886	clathrin adaptor complex;membrane coat;vesicle-mediated transport;intracellular protein transport	AP4B4
+Cre05.g232500	GMM:30.99	signalling.unspecified	Mitochondrion			FXL8
+Cre05.g234654				GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre05.g232002	GMM:11.9.4.2;GMM:11.9.4	lipid metabolism.lipid degradation.beta-oxidation.acyl CoA DH;lipid metabolism.lipid degradation.beta-oxidation		GO:0055114;GO:0016627;GO:0006635;GO:0005777;GO:0003997;GO:0003995	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;fatty acid beta-oxidation;peroxisome;acyl-CoA oxidase activity;acyl-CoA dehydrogenase activity"	
+Cre05.g232400						
+Cre05.g234647						
+Cre05.g236100						
+Cre05.g242000	GMM:19.10;GMM:19.1	tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase	Chloroplast	GO:0016851;GO:0015995;GO:0015979	magnesium chelatase activity;chlorophyll biosynthetic process;photosynthesis	CHLD
+Cre05.g238343			Chloroplast			
+Cre05.g234200			Chloroplast	GO:0003676	nucleic acid binding	
+Cre05.g233304	GMM:2.1	major CHO metabolism.synthesis	Secretory pathway	GO:0008061;GO:0005975;GO:0004553	"chitin binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI3
+Cre15.g639000			Mitochondrion			NCL17
+Cre15.g636050			Chloroplast			CPLD31
+Cre15.g639802						NCL8
+Cre15.g642702						
+Cre15.g637150						
+Cre15.g643391						
+Cre15.g636600				GO:0005515	protein binding	FAP391
+Cre15.g634550						
+Cre15.g641850			Mitochondrion			
+Cre15.g637700			Mitochondrion			
+Cre15.g637900			Chloroplast			
+Cre15.g639304			Chloroplast			NCL15
+Cre15.g634913			Chloroplast			
+Cre15.g644051			Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre15.g635900						
+Cre15.g637216						
+Cre15.g643550	GMM:18	Co-factor and vitamine metabolism		GO:0042823;GO:0042819	pyridoxal phosphate biosynthetic process;vitamin B6 biosynthetic process	PDX1
+Cre15.g638304			Mitochondrion			NCL30
+Cre15.g635800	GMM:31.2	cell.division				SMC1
+Cre15.g637249			Mitochondrion			
+Cre15.g643386			Secretory pathway			
+Cre15.g638551						
+Cre15.g638300			Mitochondrion			NCL28
+Cre15.g637401						
+Cre15.g636300	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0005515	protein binding	CPN2
+Cre15.g636700			Chloroplast			
+Cre15.g636896	GMM:12.4	N-metabolism.misc		GO:0055114;GO:0050660;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing	
+Cre15.g641150			Chloroplast	GO:0016020;GO:0005044	membrane;scavenger receptor activity	
+Cre15.g635993						
+Cre15.g643850						
+Cre15.g640800			Chloroplast			
+Cre15.g643740			Chloroplast			
+Cre15.g640900			Mitochondrion			
+Cre15.g642213						
+Cre15.g641500						
+Cre15.g643394						
+Cre15.g638956			Mitochondrion			NCL20
+Cre15.g637750			Secretory pathway			
+Cre15.g639350						
+Cre15.g634650						
+Cre15.g638150			Mitochondrion			NCL31
+Cre15.g636450						
+Cre15.g638750			Mitochondrion			NCL21
+Cre15.g641750			Secretory pathway	GO:0008270	zinc ion binding	
+Cre15.g643702						
+Cre15.g639200			Mitochondrion			
+Cre15.g638450			Chloroplast			NCL26
+Cre15.g638950			Chloroplast			NCC1
+Cre15.g635034						
+Cre15.g640502						
+Cre15.g638101			Chloroplast			
+Cre15.g643503			Chloroplast	GO:0035556;GO:0016849;GO:0016020;GO:0009190;GO:0000160	intracellular signal transduction;phosphorus-oxygen lyase activity;membrane;cyclic nucleotide biosynthetic process;phosphorelay signal transduction system	COP9
+Cre15.g639136			Mitochondrion			
+Cre15.g639700			Chloroplast			NCL10
+Cre15.g637050						FAP274
+Cre15.g643393						
+Cre15.g635150			Mitochondrion			
+Cre15.g637761	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
+Cre15.g639650			Mitochondrion			NCL11
+Cre15.g643395						
+Cre15.g641700						
+Cre15.g643704			Mitochondrion			
+Cre15.g634800			Mitochondrion			NCL3
+Cre15.g641875			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre15.g635700	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPKKK12
+Cre15.g639950	GMM:29.4	protein.postranslational modification				
+Cre15.g643400			Secretory pathway			
+Cre15.g636176						
+Cre15.g638100			Mitochondrion			NCL32
+Cre15.g636500						
+Cre15.g639552						
+Cre15.g642875						
+Cre15.g641400						
+Cre15.g635067			Secretory pathway			
+Cre15.g641100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre15.g637315			Mitochondrion			
+Cre15.g635600	GMM:31.99;GMM:29.2.4	cell.unspecified;protein.synthesis.elongation				FAP357
+Cre15.g634582						
+Cre15.g642000			Mitochondrion			
+Cre15.g638700						NCL22
+Cre15.g635450			Mitochondrion			
+Cre15.g635998						
+Cre15.g634701	GMM:28.99	DNA.unspecified	Secretory pathway	GO:0008270;GO:0005524;GO:0003676	zinc ion binding;ATP binding;nucleic acid binding	RECQ4
+Cre15.g639800						NCL7
+Cre15.g638955			Secretory pathway			
+Cre15.g641600						
+Cre15.g641000	GMM:3.5	minor CHO metabolism.others		GO:0046907	intracellular transport	
+Cre15.g638651			Chloroplast			NCL24
+Cre15.g639550			Mitochondrion			
+Cre15.g642976	GMM:34.8	transport.metabolite transporters at the envelope membrane				
+Cre15.g640203						
+Cre15.g636075						
+Cre15.g643389			Secretory pathway			
+Cre15.g640426						NCL18
+Cre15.g636840			Chloroplast			
+Cre15.g640600			Secretory pathway	GO:0055114;GO:0008199;GO:0006725;GO:0003824	oxidation-reduction process;ferric iron binding;cellular aromatic compound metabolic process;catalytic activity	
+Cre15.g643500			Mitochondrion			
+Cre15.g638401			Mitochondrion			NCL27
+Cre15.g642376						
+Cre15.g643387			Chloroplast			
+Cre15.g635950			Secretory pathway			
+Cre15.g634950			Mitochondrion			
+Cre15.g637552			Secretory pathway			
+Cre15.g641926			Secretory pathway			
+Cre15.g640651	GMM:29.4	protein.postranslational modification				
+Cre15.g639500						
+Cre15.g643384			Chloroplast			
+Cre15.g643517						
+Cre15.g641950						
+Cre15.g643385	GMM:34.8	transport.metabolite transporters at the envelope membrane	Secretory pathway			
+Cre15.g638000			Mitochondrion			NCL34
+Cre15.g639614			Chloroplast			NCL12
+Cre15.g641298			Mitochondrion			
+Cre15.g640251						
+Cre15.g643028			Chloroplast			
+Cre15.g643388						
+Cre15.g639308			Mitochondrion			NCL14
+Cre15.g642950						
+Cre15.g639056			Chloroplast	GO:0005515	protein binding	
+Cre15.g635250			Mitochondrion			
+Cre15.g638050			Mitochondrion			NCL33
+Cre15.g640350			Chloroplast			NCL4
+Cre15.g637183			Mitochondrion			
+Cre15.g634500						
+Cre15.g635850	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion	GO:0046961;GO:0046933;GO:0045261;GO:0015986	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;proton-transporting ATP synthase complex, catalytic core F(1);ATP synthesis coupled proton transport"	ATP3
+Cre15.g641266						
+Cre15.g637602			Secretory pathway			
+Cre15.g641674						
+Cre15.g637850			Mitochondrion			NCL13
+Cre15.g636350						
+Cre15.g636650			Chloroplast			
+Cre15.g639379						
+Cre15.g642539						
+Cre15.g643050						
+Cre15.g643392						
+Cre15.g634900			Chloroplast			
+Cre15.g636250			Secretory pathway			
+Cre15.g641650			Mitochondrion			HLM22
+Cre15.g643700	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RLS6
+Cre15.g641662						
+Cre15.g637450						
+Cre15.g635650			Chloroplast			
+Cre15.g636400	GMM:9.1.2;GMM:29.5	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;protein.degradation				
+Cre15.g642050			Secretory pathway			
+Cre15.g643191			Mitochondrion			
+Cre15.g640101			Mitochondrion			
+Cre15.g643680						
+Cre15.g635376			Mitochondrion			
+Cre15.g637350	GMM:27.1	RNA.processing		GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
+Cre15.g634600			Mitochondrion			
+Cre15.g640204						
+Cre15.g636750				GO:0005515	protein binding	
+Cre15.g634827						
+Cre15.g641451			Secretory pathway			
+Cre15.g644050						
+Cre15.g643703	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	RLS9
+Cre15.g639900	GMM:29.4	protein.postranslational modification				
+Cre15.g636950			Chloroplast			
+Cre15.g638500	GMM:9.6;GMM:9.5	mitochondrial electron transport / ATP synthesis.cytochrome c;mitochondrial electron transport / ATP synthesis.cytochrome c reductase	Mitochondrion	GO:0020037;GO:0009055	heme binding;electron carrier activity	CYC1
+Cre15.g639750			Chloroplast			NCL9
+Cre15.g641250	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols				
+Cre15.g636800				GO:0005515	protein binding	
+Cre15.g635200				GO:0000266	mitochondrial fission	
+Cre15.g640901			Mitochondrion			
+Cre15.g643390			Secretory pathway			
+Cre15.g640150						
+Cre15.g641976			Mitochondrion			
+Cre15.g635750			Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre15.g639504						
+Cre15.g636004						
+Cre15.g639400	GMM:29.5	protein.degradation		GO:0002949	tRNA threonylcarbamoyladenosine modification	
+Cre15.g639600						
+Cre15.g639850			Mitochondrion			NCL6
+Cre15.g639150	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Mitochondrion			
+Cre15.g635717						
+Cre15.g637000			Mitochondrion			
+Cre15.g639503	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre15.g636550			Mitochondrion			
+Cre15.g641800	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	RAB8
+Cre15.g635100			Secretory pathway	GO:0005515	protein binding	
+Cre15.g640850			Mitochondrion			
+Cre15.g640200	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003723	RNA binding	
+Cre15.g640650			Mitochondrion			
+Cre15.g643000						
+Cre15.g638650			Chloroplast			NCL23
+Cre15.g640152			Mitochondrion			
+Cre15.g637282			Mitochondrion			
+Cre15.g641901						
+Cre15.g639134			Secretory pathway			
+Cre15.g641350						
+Cre15.g638550			Mitochondrion			NCL25
+Cre15.g643354						
+Cre15.g643499						
+Cre15.g634566			Secretory pathway			
+Cre15.g640100	GMM:29.4	protein.postranslational modification				
+Cre15.g638954			Chloroplast			NCL19
+Cre15.g643600	GMM:29.8	protein.assembly and cofactor ligation	Chloroplast	GO:0016226	iron-sulfur cluster assembly	SUFB
+Cre15.g643515						
+Cre15.g640000						FAP345
+Cre15.g634855			Mitochondrion			
+Cre15.g638303			Mitochondrion			NCL29
+Cre15.g637501						
+Cre15.g641050			Mitochondrion	GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
+Cre15.g639100						FAP195
+Cre15.g640652			Secretory pathway			
+Cre15.g639050						
+Cre15.g638400	GMM:20.2.1	stress.abiotic.heat	Chloroplast			USPA
+Cre15.g641200	GMM:9.8;GMM:34.9	mitochondrial electron transport / ATP synthesis.uncoupling protein;transport.metabolite transporters at the mitochondrial membrane				MCP28
+Cre15.g642800						
+Cre15.g643750			Mitochondrion			
+Cre15.g641527	GMM:31.1	cell.organisation				
+Cre15.g641282						
+Cre15.g637100	GMM:29.5.11.1;GMM:29.5.11	protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin		GO:0005515	protein binding	
+Cre15.g640550						
+Cre15.g640750	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre15.g634750			Mitochondrion			
+Cre15.g634878				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre15.g640400			Chloroplast			NCC2
+Cre15.g642865						
+Cre15.g634925						
+Cre15.g635350	GMM:26.6	misc.O-methyl transferases		GO:0008168;GO:0006479	methyltransferase activity;protein methylation	PRM4
+Cre15.g640450			Chloroplast			NCL5
+Cre15.g640250						
+Cre15.g635300						
+Cre15.g636100						
+Cre15.g639300			Mitochondrion			NCL16
+Cre15.g635400	GMM:31.7.1	cell.development.zygote	Secretory pathway	GO:0005515	protein binding	ZYS3
+Cre15.g635000			Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre43.g760647						
+Cre43.g760497	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0019538	protein metabolic process	
+Cre43.g760597			Secretory pathway			
+Cre43.g760547			Mitochondrion			
+Cre25.g756247	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre25.g756447			Mitochondrion			
+Cre25.g756397						
+Cre25.g756297						
+Cre25.g756497			Mitochondrion			
+Cre25.g756197						
+Cre25.g756097						
+Cre25.g756347						
+Cre25.g756147			Mitochondrion			
+Cre18.g749497	GMM:23.1.2.2	nucleotide metabolism.synthesis.purine.GAR synthetase	Chloroplast	GO:0009113;GO:0004637	purine nucleobase biosynthetic process;phosphoribosylamine-glycine ligase activity	
+Cre18.g748497				GO:0042578	phosphoric ester hydrolase activity	
+Cre18.g748347						
+Cre18.g749647	GMM:23.1.2.2	nucleotide metabolism.synthesis.purine.GAR synthetase	Mitochondrion	GO:0009113;GO:0004637	purine nucleobase biosynthetic process;phosphoribosylamine-glycine ligase activity	
+Cre18.g748947	GMM:34.2;GMM:34.11	transport.sugars;transport.NDP-sugars at the ER	Secretory pathway			
+Cre18.g749197			Secretory pathway			
+Cre18.g749997						
+Cre18.g749297			Secretory pathway			
+Cre18.g749797	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			FAP281
+Cre18.g749097			Secretory pathway			
+Cre18.g748197						
+Cre18.g749847	GMM:8.1.1.3	TCA / organic transformation.TCA.pyruvate DH.E3	Mitochondrion	GO:0055114;GO:0045454;GO:0016491	oxidation-reduction process;cell redox homeostasis;oxidoreductase activity	DLD1
+Cre18.g750047	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins	Secretory pathway			FMG1
+Cre18.g748797						
+Cre18.g749547						
+Cre18.g749697	GMM:3.5;GMM:29.7.10	"minor CHO metabolism.others;protein.glycosylation.core alpha-(1,3)-fucosyltransferase (FucT)"		GO:0016020;GO:0008417;GO:0006486	membrane;fucosyltransferase activity;protein glycosylation	FUT11
+Cre18.g748697						
+Cre18.g749397	GMM:13.1.3.6.1.1	amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate kinase				
+Cre18.g748297						
+Cre18.g749247			Secretory pathway			
+Cre18.g748397	GMM:1.1.6	PS.lightreaction.NADH DH	Mitochondrion			CGL143
+Cre18.g749947						FAP21
+Cre18.g748447	GMM:29.8	protein.assembly and cofactor ligation	Mitochondrion	GO:0051536;GO:0016226;GO:0005506	iron-sulfur cluster binding;iron-sulfur cluster assembly;iron ion binding	NFU1
+Cre18.g748597						
+Cre18.g749147			Secretory pathway			
+Cre18.g748247						
+Cre18.g748997	GMM:29.7	protein.glycosylation	Mitochondrion			
+Cre18.g749747			Chloroplast			
+Cre18.g748747						
+Cre18.g748897	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			
+Cre18.g749897			Mitochondrion			
+Cre18.g749597						
+Cre18.g748647			Chloroplast			
+Cre18.g748847			Secretory pathway			
+Cre18.g748147			Secretory pathway			
+Cre18.g749347						
+Cre18.g748097						
+Cre18.g748547			Secretory pathway			
+Cre18.g749447	GMM:13.1.3.6.1.10;GMM:13.1.3.6.1.1	amino acid metabolism.synthesis.aspartate family.misc.homoserine.bifunctional aspartate kinase/homoserine dehydrogenase;amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate kinase	Chloroplast	GO:0055114;GO:0050661;GO:0016597;GO:0016491;GO:0008152;GO:0006520	oxidation-reduction process;NADP binding;amino acid binding;oxidoreductase activity;metabolic process;cellular amino acid metabolic process	AHD1
+Cre18.g749047						
+Cre13.g564550	GMM:27.2	RNA.transcription	Mitochondrion	GO:0006351;GO:0003899	"transcription, DNA-templated;DNA-directed RNA polymerase activity"	RPC17
+Cre13.g590905			Secretory pathway			
+Cre13.g592100	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor		GO:0046872;GO:0005515	metal ion binding;protein binding	
+Cre13.g569275			Mitochondrion			
+Cre13.g572150	GMM:26.24	misc.GCN5-related N-acetyltransferase		GO:0008080	N-acetyltransferase activity	
+Cre13.g582000						
+Cre13.g605350			Chloroplast	GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
+Cre13.g589550						
+Cre13.g588350			Mitochondrion	GO:0016773	"phosphotransferase activity, alcohol group as acceptor"	
+Cre13.g587550	GMM:30.99	signalling.unspecified	Chloroplast			
+Cre13.g586916	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	SRS6
+Cre13.g565321	GMM:23.1.2.8	nucleotide metabolism.synthesis.purine.SAICAR lyase		GO:0006188;GO:0004018	"IMP biosynthetic process;N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity"	
+Cre13.g572650			Chloroplast			
+Cre13.g602800				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre13.g583350			Secretory pathway			
+Cre13.g566400			Mitochondrion			OPR55
+Cre13.g571251						
+Cre13.g579700				GO:0055114	oxidation-reduction process	
+Cre13.g571450	GMM:21.2	redox.ascorbate and glutathione				
+Cre13.g602550			Secretory pathway			
+Cre13.g583750			Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre13.g590750	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB21
+Cre13.g584135						
+Cre13.g564650	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	MRS5
+Cre13.g588900	GMM:28.99	DNA.unspecified		GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	WEX
+Cre13.g578074	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre13.g570400			Chloroplast			
+Cre13.g578800						LYR5
+Cre13.g563700			Secretory pathway	GO:0005515	protein binding	FAP369
+Cre13.g581050						
+Cre13.g604400						
+Cre13.g568250				GO:0016788;GO:0009058	"hydrolase activity, acting on ester bonds;biosynthetic process"	TEH11
+Cre13.g580600	GMM:29.1.19	protein.aa activation.arginine-tRNA ligase		GO:0016598;GO:0004057	protein arginylation;arginyltransferase activity	ATE1
+Cre13.g602700	GMM:33.99;GMM:30.11	development.unspecified;signalling.light		GO:0005515;GO:0000160	protein binding;phosphorelay signal transduction system	
+Cre13.g589167			Chloroplast			
+Cre13.g587400			Chloroplast			
+Cre13.g582250				GO:0033925;GO:0005737	mannosyl-glycoprotein endo-beta-N-acetylglucosaminidase activity;cytoplasm	
+Cre13.g573200			Mitochondrion			
+Cre13.g568800	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0022904;GO:0016651;GO:0005743	"respiratory electron transport chain;oxidoreductase activity, acting on NAD(P)H;mitochondrial inner membrane"	NUOB13
+Cre13.g602300				GO:0008168	methyltransferase activity	
+Cre13.g589940						
+Cre13.g572600				GO:0005515	protein binding	
+Cre13.g576740						
+Cre13.g600238						
+Cre13.g572950	GMM:31.2;GMM:27.3.18	cell.division;RNA.regulation of transcription.E2F/DP transcription factor family		GO:0007049;GO:0006355;GO:0005667;GO:0003700	"cell cycle;regulation of transcription, DNA-templated;transcription factor complex;transcription factor activity, sequence-specific DNA binding"	E2F2
+Cre13.g607450	GMM:3.5	minor CHO metabolism.others		GO:0006071;GO:0004371	glycerol metabolic process;glycerone kinase activity	DAK1
+Cre13.g570450						
+Cre13.g576350	GMM:29.6.1	protein.folding.prefoldin and trigger factor				PFP2
+Cre13.g567600	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Mitochondrion	GO:0005740;GO:0004129	mitochondrial envelope;cytochrome-c oxidase activity	COX4
+Cre13.g568050	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre13.g604850				GO:0070552;GO:0070531;GO:0045739	BRISC complex;BRCA1-A complex;positive regulation of DNA repair	
+Cre13.g573750			Mitochondrion			
+Cre13.g581750						
+Cre13.g588050				GO:0003676	nucleic acid binding	
+Cre13.g585175						
+Cre13.g574800	GMM:21.2	redox.ascorbate and glutathione				CYB3
+Cre13.g578350	GMM:26.13	misc.acid and other phosphatases	Secretory pathway	GO:0016787	hydrolase activity	MPA11
+Cre13.g583000			Chloroplast			
+Cre13.g563550	GMM:3.4.5;GMM:3.4.1;GMM:28.1	minor CHO metabolism.myo-inositol.inositol phosphatase;minor CHO metabolism.myo-inositol.poly-phosphatases;DNA.synthesis/chromatin structure		GO:0005515	protein binding	
+Cre13.g606050	GMM:29.1.1	protein.aa activation.tyrosine-tRNA ligase	Chloroplast	GO:0006418;GO:0005524;GO:0004831;GO:0004812;GO:0003723;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;tyrosine-tRNA ligase activity;aminoacyl-tRNA ligase activity;RNA binding;nucleotide binding	TSY1
+Cre13.g578850	GMM:31.6.1.11	cell.motility.eukaryotes.other				
+Cre13.g603176				GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	
+Cre13.g607550						
+Cre13.g575800				GO:0004425	indole-3-glycerol-phosphate synthase activity	IGS1
+Cre13.g579500	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Mitochondrion			
+Cre13.g565000						
+Cre13.g607500	GMM:28.2	DNA.repair		GO:0043564;GO:0042162;GO:0006303;GO:0005634;GO:0004003;GO:0003684;GO:0003677;GO:0000723	Ku70:Ku80 complex;telomeric DNA binding;double-strand break repair via nonhomologous end joining;nucleus;ATP-dependent DNA helicase activity;damaged DNA binding;DNA binding;telomere maintenance	
+Cre13.g566000	GMM:25.8;GMM:25.2;GMM:25	C1-metabolism.tetrahydrofolate synthase;C1-metabolism.formate-tetrahydrofolate ligase;C1-metabolism		GO:0009396;GO:0005524;GO:0004329	folic acid-containing compound biosynthetic process;ATP binding;formate-tetrahydrofolate ligase activity	
+Cre13.g569350	GMM:26.11.1;GMM:26.11;GMM:16.8.3.1	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols.dihydroflavonol 4-reductase	Mitochondrion	GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SNE16
+Cre13.g591650						
+Cre13.g607750						DRC2
+Cre13.g583972			Mitochondrion			
+Cre13.g603900	GMM:29.1.20	protein.aa activation.phenylalanine-tRNA ligase		GO:0006432;GO:0005524;GO:0004826;GO:0003723;GO:0000287	phenylalanyl-tRNA aminoacylation;ATP binding;phenylalanine-tRNA ligase activity;RNA binding;magnesium ion binding	TSF1
+Cre13.g590300	GMM:23.3.2.2	nucleotide metabolism.salvage.nucleoside kinases.uridine kinase		GO:0016301;GO:0008152;GO:0005524	kinase activity;metabolic process;ATP binding	URK2
+Cre13.g580300	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0005524	ATPase activity;ATP binding	CGLD4
+Cre13.g579767						
+Cre13.g583600	GMM:11.10.2	lipid metabolism.glycolipid synthesis.DGDG synthase				DGD1
+Cre13.g572500	GMM:18.4.5;GMM:18.4.1	Co-factor and vitamine metabolism.pantothenate.pantothenate kinase (PANK);Co-factor and vitamine metabolism.pantothenate.branched-chain amino acid aminotransferase				CGL14
+Cre13.g602950			Chloroplast	GO:0016787	hydrolase activity	
+Cre13.g606150						
+Cre13.g581200			Mitochondrion			
+Cre13.g591800						
+Cre13.g575000	GMM:9.6	mitochondrial electron transport / ATP synthesis.cytochrome c				CCS1
+Cre13.g567750	GMM:27.1.1	RNA.processing.splicing		GO:0008380;GO:0005681	RNA splicing;spliceosomal complex	PRP18
+Cre13.g606652			Mitochondrion			
+Cre13.g565116						
+Cre13.g588550	GMM:31.4	cell.vesicle transport		GO:0016020;GO:0005515	membrane;protein binding	SYP1
+Cre13.g571650	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPB10
+Cre13.g566850						SOUL2
+Cre13.g586883						
+Cre13.g575600						
+Cre13.g581500			Chloroplast			OPR41
+Cre13.g562100						
+Cre13.g606800			Chloroplast			
+Cre13.g590251			Chloroplast	GO:0008061;GO:0006030;GO:0005576	chitin binding;chitin metabolic process;extracellular region	
+Cre13.g565700						
+Cre13.g581900			Chloroplast			
+Cre13.g581400	GMM:34.99;GMM:34.9;GMM:34.8	transport.misc;transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane	Chloroplast	GO:0016021;GO:0006810;GO:0005524;GO:0005471	integral component of membrane;transport;ATP binding;ATP:ADP antiporter activity	AAA2
+Cre13.g577600			Mitochondrion			
+Cre13.g580150	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre13.g563876						
+Cre13.g588100	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN19-3
+Cre13.g605250						
+Cre13.g564583			Chloroplast			
+Cre13.g567550	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre13.g569550	GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XI				
+Cre13.g584170			Mitochondrion			
+Cre13.g572200	GMM:34.3	transport.amino acids	Mitochondrion	GO:0003333	amino acid transmembrane transport	
+Cre13.g569250			Chloroplast			CGLD9
+Cre13.g571902			Mitochondrion			
+Cre13.g567800	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0008601;GO:0007165;GO:0000159	protein phosphatase type 2A regulator activity;signal transduction;protein phosphatase type 2A complex	
+Cre13.g586650	GMM:30.99	signalling.unspecified	Mitochondrion	GO:0006355	"regulation of transcription, DNA-templated"	FXL1
+Cre13.g564700						
+Cre13.g563733	GMM:30.6;GMM:29.4.1	signalling.MAP kinases;protein.postranslational modification.kinase		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre13.g591550	GMM:27.4	RNA.RNA binding	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR20
+Cre13.g564400						FAP161
+Cre13.g584600						
+Cre13.g568950			Chloroplast	GO:0016787	hydrolase activity	
+Cre13.g604800						
+Cre13.g607950						SELK
+Cre13.g588750			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre13.g576720			Secretory pathway			
+Cre13.g571300			Chloroplast			
+Cre13.g583325						
+Cre13.g579582	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase				
+Cre13.g567700	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677	DNA binding	HAV2
+Cre13.g590800	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA21
+Cre13.g587600			Mitochondrion			
+Cre13.g566951						
+Cre13.g589300	GMM:28.1	DNA.synthesis/chromatin structure		GO:0007076;GO:0000796	mitotic chromosome condensation;condensin complex	
+Cre13.g592550						
+Cre13.g581450	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	protein binding	RPN7
+Cre13.g582713	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification				
+Cre13.g574650						
+Cre13.g570350	GMM:35.1.1;GMM:34.16;GMM:20.2	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems;stress.abiotic	Chloroplast			AKC4
+Cre13.g571500						CST2
+Cre13.g577250	GMM:24	biodegradation of xenobiotics	Chloroplast			GOX14
+Cre13.g572450				GO:0000160	phosphorelay signal transduction system	
+Cre13.g580650	GMM:29.4	protein.postranslational modification		GO:0019211	phosphatase activator activity	
+Cre13.g577750						
+Cre13.g582050						
+Cre13.g607150	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG57
+Cre13.g568850	GMM:29.8;GMM:18.7	protein.assembly and cofactor ligation;Co-factor and vitamine metabolism.iron-sulphur clusters	Secretory pathway	GO:0051536;GO:0016226;GO:0005506	iron-sulfur cluster binding;iron-sulfur cluster assembly;iron ion binding	ISU1
+Cre13.g605750						
+Cre13.g581100			Chloroplast	GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre13.g574250	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre13.g582270	GMM:2.2.1.3.2	major CHO metabolism.degradation.sucrose.invertases.cell wall	Mitochondrion			FFT3
+Cre13.g576400	GMM:26.26.1	misc.aminotransferases.aminotransferase class IV family protein	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre13.g592150	GMM:29.2.3;GMM:27.1.2	protein.synthesis.initiation;RNA.processing.RNA helicase	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
+Cre13.g583700			Secretory pathway			
+Cre13.g604350	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre13.g582290						
+Cre13.g589870			Chloroplast	GO:0016787	hydrolase activity	
+Cre13.g577900						
+Cre13.g561900	GMM:27.1.19	RNA.processing.ribonucleases		GO:0004523;GO:0003723	RNA-DNA hybrid ribonuclease activity;RNA binding	
+Cre13.g573150	GMM:29.5.3	protein.degradation.cysteine protease	Chloroplast			
+Cre13.g569700			Chloroplast			MBC1
+Cre13.g583550	GMM:27.3.99;GMM:1.1.99	RNA.regulation of transcription.unclassified;PS.lightreaction.unspecified	Chloroplast			VIPP1
+Cre13.g593833						
+Cre13.g606500						
+Cre13.g582950						
+Cre13.g585026			Mitochondrion			
+Cre13.g585200			Chloroplast			
+Cre13.g590225						
+Cre13.g589800	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	
+Cre13.g586700	GMM:30.99	signalling.unspecified				
+Cre13.g574400	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG55
+Cre13.g584950			Mitochondrion			
+Cre13.g570500	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion			
+Cre13.g566700	GMM:27.1.1	RNA.processing.splicing		GO:0017069;GO:0003676;GO:0000398	"snRNA binding;nucleic acid binding;mRNA splicing, via spliceosome"	
+Cre13.g589000						
+Cre13.g565950	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0046872	metal ion binding	
+Cre13.g579800	GMM:23.4.99;GMM:13.1.2.3.2	nucleotide metabolism.phosphotransfer and pyrophosphatases.misc;amino acid metabolism.synthesis.glutamate family.arginine.acetylglutamate kinase	Chloroplast			
+Cre13.g575050						
+Cre13.g586150						
+Cre13.g574100						
+Cre13.g602425			Mitochondrion			
+Cre13.g575650	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre13.g605368						
+Cre13.g562950	GMM:31.2;GMM:29.5.11.4.4	cell.division;protein.degradation.ubiquitin.E3.APC				APC6
+Cre13.g567300				GO:0030976;GO:0003824	thiamine pyrophosphate binding;catalytic activity	
+Cre13.g581801				GO:0005515	protein binding	
+Cre13.g591750			Secretory pathway			
+Cre13.g561950			Mitochondrion			
+Cre13.g562350			Mitochondrion			
+Cre13.g578900			Chloroplast			
+Cre13.g592350						
+Cre13.g565750	GMM:29.2.4	protein.synthesis.elongation				EFG4
+Cre13.g562700	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB51
+Cre13.g588271						
+Cre13.g584775			Chloroplast			
+Cre13.g588501						
+Cre13.g569950	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR20
+Cre13.g570951			Chloroplast			
+Cre13.g576050	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZIP2
+Cre13.g563900			Secretory pathway			UBL1
+Cre13.g603450			Chloroplast			
+Cre13.g566050	GMM:27.1	RNA.processing				SMP2
+Cre13.g588368						
+Cre13.g581150				GO:0008080	N-acetyltransferase activity	
+Cre13.g564350	GMM:29.4.1;GMM:28.2	protein.postranslational modification.kinase;DNA.repair		GO:0016773;GO:0005515	"phosphotransferase activity, alcohol group as acceptor;protein binding"	
+Cre13.g563500			Secretory pathway			
+Cre13.g587200	GMM:29.5.11.4.2;GMM:20.1	protein.degradation.ubiquitin.E3.RING;stress.biotic	Secretory pathway	GO:0016746;GO:0016021;GO:0006506;GO:0005789	"transferase activity, transferring acyl groups;integral component of membrane;GPI anchor biosynthetic process;endoplasmic reticulum membrane"	PIGW
+Cre13.g591600	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG40
+Cre13.g562062			Mitochondrion			
+Cre13.g570801						
+Cre13.g584250			Chloroplast			
+Cre13.g607600	GMM:18.3	Co-factor and vitamine metabolism.riboflavin		GO:0009231;GO:0003919	riboflavin biosynthetic process;FMN adenylyltransferase activity	RIBFL1
+Cre13.g603950	GMM:29.6.3.2	protein.folding.immunophilins (IMM).cyclophilins				CYN50
+Cre13.g603776						
+Cre13.g603100			Secretory pathway			
+Cre13.g589600						
+Cre13.g582350	GMM:29.5.11.2	protein.degradation.ubiquitin.E1	Mitochondrion	GO:0008641	small protein activating enzyme activity	
+Cre13.g569801			Mitochondrion			
+Cre13.g586250	GMM:18.4.9	Co-factor and vitamine metabolism.pantothenate.dephospho-CoA kinase (DPCK)		GO:0015937;GO:0005524;GO:0004140	coenzyme A biosynthetic process;ATP binding;dephospho-CoA kinase activity	COA7
+Cre13.g586000	GMM:11.1.8	lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre13.g590900	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	APC11
+Cre13.g576466						
+Cre13.g580700	GMM:29.5	protein.degradation	Secretory pathway	GO:0016787;GO:0008152	hydrolase activity;metabolic process	DAL2
+Cre13.g563300	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre13.g576800				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	HIF
+Cre13.g589250						
+Cre13.g586800			Mitochondrion			
+Cre13.g562550	GMM:1.1.5.3	PS.lightreaction.other electron carrier (ox/red).ferredoxin reductase	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	ARH1
+Cre13.g571800			Chloroplast			
+Cre13.g588150	GMM:21.2.1.2	redox.ascorbate and glutathione.ascorbate.GDP-L-galactose phosphorylase	Mitochondrion	GO:0080048	GDP-D-glucose phosphorylase activity	
+Cre13.g573300	GMM:23.2	nucleotide metabolism.degradation	Chloroplast	GO:0008270	zinc ion binding	CDD4
+Cre13.g575250				GO:0015031	protein transport	
+Cre13.g579300			Mitochondrion			
+Cre13.g583100			Mitochondrion			
+Cre13.g577950	GMM:27.3.71	RNA.regulation of transcription.SNF7		GO:0007034	vacuolar transport	VPS60
+Cre13.g576100	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre13.g565301						
+Cre13.g603800						
+Cre13.g580350			Mitochondrion			
+Cre13.g584551						
+Cre13.g567075						
+Cre13.g584850			Chloroplast	GO:0005515	protein binding	
+Cre13.g588959			Mitochondrion			
+Cre13.g580976			Mitochondrion			
+Cre13.g587250						
+Cre13.g570700	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis	Secretory pathway	GO:0008061;GO:0005975;GO:0004553	"chitin binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI4
+Cre13.g577850	GMM:29.6.3.1;GMM:1.1.1.3	protein.folding.immunophilins (IMM).FKBPs;PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Lumen			FKB20
+Cre13.g576760			Chloroplast			
+Cre13.g580100						
+Cre13.g568700	GMM:27.1	RNA.processing				
+Cre13.g578201			Chloroplast			
+Cre13.g590850						
+Cre13.g564950	GMM:29.2.4;GMM:29.2.2	protein.synthesis.elongation;protein.synthesis.ribosome biogenesis		GO:0005525	GTP binding	EFG13
+Cre13.g574750						
+Cre13.g569651						
+Cre13.g606750	GMM:28.1	DNA.synthesis/chromatin structure		GO:0046872;GO:0016787;GO:0005524	metal ion binding;hydrolase activity;ATP binding	
+Cre13.g576150			Chloroplast	GO:0006520	cellular amino acid metabolic process	
+Cre13.g590450						
+Cre13.g578950			Mitochondrion			
+Cre13.g563800	GMM:31.1.1.3.11;GMM:31.1	cell.organisation.cytoskeleton.Myosin.Class XI;cell.organisation		GO:0016459;GO:0005524;GO:0005515;GO:0003774	myosin complex;ATP binding;protein binding;motor activity	MYO3
+Cre13.g571200	GMM:30.11;GMM:29.4;GMM:27.3.34;GMM:17.5.2;GMM:17.4.2	signalling.light;protein.postranslational modification;RNA.regulation of transcription.orphan family;hormone metabolism.ethylene.signal transduction;hormone metabolism.cytokinin.signal transduction		GO:0007165;GO:0000160;GO:0000155	signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	HKR5
+Cre13.g581600	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion			ASA4
+Cre13.g575750						
+Cre13.g569000	GMM:26.17	misc.dynamin				
+Cre13.g574500	GMM:15.2	"metal handling.binding, chelation and storage"	Chloroplast	GO:0008199;GO:0006879;GO:0006826	ferric iron binding;cellular iron ion homeostasis;iron ion transport	FER2
+Cre13.g586850			Chloroplast			
+Cre13.g604300						
+Cre13.g568467						
+Cre13.g588386						
+Cre13.g579850	GMM:21.1	redox.thioredoxin				
+Cre13.g577700	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre13.g570100	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA20
+Cre13.g565484			Chloroplast			
+Cre13.g577150			Secretory pathway			
+Cre13.g579326						
+Cre13.g589650						
+Cre13.g570851			Secretory pathway			
+Cre13.g604250						
+Cre13.g588453						
+Cre13.g582476			Chloroplast	GO:0016787	hydrolase activity	
+Cre13.g604450			Mitochondrion			
+Cre13.g571950	GMM:16.2.1.6	secondary metabolism.phenylpropanoids.lignin biosynthesis.CCoAOMT	Chloroplast	GO:0008171	O-methyltransferase activity	
+Cre13.g603000	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE19
+Cre13.g605386			Mitochondrion	GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
+Cre13.g573600			Mitochondrion			
+Cre13.g607300	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	FAP352
+Cre13.g606250	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG41
+Cre13.g563326			Secretory pathway			
+Cre13.g568300			Chloroplast			
+Cre13.g585400	GMM:30.1;GMM:3.1	signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family		GO:0016020;GO:0004970	membrane;ionotropic glutamate receptor activity	
+Cre13.g569326			Chloroplast			
+Cre13.g590200			Mitochondrion			
+Cre13.g604950			Mitochondrion			
+Cre13.g566750						
+Cre13.g575450						
+Cre13.g581300			Mitochondrion			
+Cre13.g566350	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre13.g583500						
+Cre13.g607650	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005509	calcium ion binding	
+Cre13.g570200						
+Cre13.g578501	GMM:33.99	development.unspecified		GO:0006355	"regulation of transcription, DNA-templated"	
+Cre13.g565675						
+Cre13.g577100	GMM:11.1.12	lipid metabolism.FA synthesis and FA elongation.ACP protein	Chloroplast			ACP2
+Cre13.g584619						
+Cre13.g572100						
+Cre13.g603050						
+Cre13.g563100						
+Cre13.g587450	GMM:25.4	C1-metabolism.5-formyltetrahydrofolate cyclo-ligase	Chloroplast			FCL2
+Cre13.g588800			Secretory pathway			
+Cre13.g591050	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre13.g605550				GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
+Cre13.g574900	GMM:3.6	minor CHO metabolism.callose		GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	FAP228
+Cre13.g563050						
+Cre13.g602600			Secretory pathway			
+Cre13.g566500						
+Cre13.g592050	GMM:23.2	nucleotide metabolism.degradation	Secretory pathway	GO:0016787	hydrolase activity	DAL1
+Cre13.g565290						CSB52
+Cre13.g586300	GMM:31.3.1;GMM:29.6.3.1;GMM:29.6	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs;protein.folding		GO:0006457	protein folding	FKBP12
+Cre13.g588310						MRPL47
+Cre13.g584200	GMM:34.99;GMM:21.4	transport.misc;redox.glutaredoxins		GO:0055085;GO:0045454;GO:0016021;GO:0015035;GO:0009055	transmembrane transport;cell redox homeostasis;integral component of membrane;protein disulfide oxidoreductase activity;electron carrier activity	
+Cre13.g575950	GMM:33.99;GMM:28.1.1	development.unspecified;DNA.synthesis/chromatin structure.retrotransposon/transposase		GO:0016568;GO:0006355;GO:0006351;GO:0005634;GO:0005515	"chromatin modification;regulation of transcription, DNA-templated;transcription, DNA-templated;nucleus;protein binding"	HIR1
+Cre13.g595114						
+Cre13.g570751						
+Cre13.g569100	GMM:26.17	misc.dynamin				
+Cre13.g603850						
+Cre13.g580050	GMM:29.5.9;GMM:29.5.11.20;GMM:27.3.99	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom;RNA.regulation of transcription.unclassified	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre13.g576600	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre13.g568750				GO:0005515	protein binding	
+Cre13.g581550				GO:0008193;GO:0006400;GO:0000287	tRNA guanylyltransferase activity;tRNA modification;magnesium ion binding	THG1
+Cre13.g564766			Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	
+Cre13.g568100	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	
+Cre13.g562850	GMM:29.3;GMM:1.1.1	protein.targeting;PS.lightreaction.photosystem II	Chloroplast.Stroma.Thylakoid.Membrane	GO:0015979;GO:0010207	photosynthesis;photosystem II assembly	THF1
+Cre13.g562650						
+Cre13.g584400	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP189
+Cre13.g607100	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG6
+Cre13.g590010						
+Cre13.g588950			Chloroplast			
+Cre13.g603600	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre13.g606600	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CGK1
+Cre13.g577800	GMM:30.5;GMM:3.5;GMM:29.2.2.1	signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.export from nucleus	Mitochondrion	GO:0005525	GTP binding	
+Cre13.g578550			Mitochondrion			
+Cre13.g584901			Secretory pathway	GO:0042384;GO:0036038;GO:0010826	cilium assembly;TCTN-B9D complex;negative regulation of centrosome duplication	
+Cre13.g580750	GMM:29.5.11.4.2;GMM:17.1.2	protein.degradation.ubiquitin.E3.RING;hormone metabolism.abscisic acid.signal transduction	Mitochondrion	GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre13.g583824						
+Cre13.g568025			Mitochondrion			
+Cre13.g592400	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Secretory pathway			LCI21
+Cre13.g582112			Mitochondrion			
+Cre13.g563600	GMM:29.5.11.1;GMM:29.5.11;GMM:29.2.1.2.2.40;GMM:29.2.1.2.1.27;GMM:29.1	protein.degradation.ubiquitin.ubiquitin;protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40;protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27;protein.aa activation		GO:0005515	protein binding	UBQ7
+Cre13.g564000	GMM:26.13	misc.acid and other phosphatases	Mitochondrion			PGM3
+Cre13.g590550	GMM:33.99;GMM:20.2.3;GMM:18.4.8	development.unspecified;stress.abiotic.drought/salt;Co-factor and vitamine metabolism.pantothenate.pantetheine-phosphate adenylyltransferase  (PPAT)				COA5
+Cre13.g585050			Secretory pathway			
+Cre13.g579000						
+Cre13.g563850	GMM:34.99	transport.misc				PRORP
+Cre13.g572850				GO:0008270;GO:0006508;GO:0004181	zinc ion binding;proteolysis;metallocarboxypeptidase activity	FBB17
+Cre13.g579350			Mitochondrion			
+Cre13.g574041	GMM:34.18	transport.unspecified anions	Secretory pathway			
+Cre13.g590500	GMM:11.2.4	lipid metabolism.FA desaturation.omega 6 desaturase	Chloroplast	GO:0006629	lipid metabolic process	FAD6
+Cre13.g575300	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre13.g601519	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre13.g567150	GMM:33.99	development.unspecified				
+Cre13.g572550						
+Cre13.g578050						
+Cre13.g567050			Mitochondrion	GO:0032775;GO:0009007;GO:0003677	DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding	
+Cre13.g587376						
+Cre13.g602350	GMM:13.1.6.5.4	amino acid metabolism.synthesis.aromatic aa.tryptophan.indole-3-glycerol phosphate synthase	Chloroplast	GO:0004425	indole-3-glycerol-phosphate synthase activity	
+Cre13.g586750						
+Cre13.g606900						
+Cre13.g567626			Chloroplast			
+Cre13.g581350			Chloroplast			
+Cre13.g573800	GMM:23.3.1.3	nucleotide metabolism.salvage.phosphoribosyltransferases.uracil phosphoribosyltransferase (UPP)	Secretory pathway			
+Cre13.g607250			Mitochondrion			
+Cre13.g587150	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases		GO:0016747;GO:0006355	"transferase activity, transferring acyl groups other than amino-acyl groups;regulation of transcription, DNA-templated"	HAT5
+Cre13.g575500			Mitochondrion			
+Cre13.g585350	GMM:21.1	redox.thioredoxin		GO:0055114;GO:0016491;GO:0016209	oxidation-reduction process;oxidoreductase activity;antioxidant activity	
+Cre13.g577201			Chloroplast			
+Cre13.g587500	GMM:16.1.4.2	secondary metabolism.isoprenoids.carotenoids.phytoene dehydrogenase	Chloroplast			AOF8
+Cre13.g572000	GMM:19.3;GMM:19	tetrapyrrole synthesis.GSA;tetrapyrrole synthesis	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	SUMT2
+Cre13.g607700						
+Cre13.g579901	GMM:29.5.5	protein.degradation.serine protease				DEG6
+Cre13.g581000						
+Cre13.g575550			Secretory pathway			
+Cre13.g574150			Mitochondrion			
+Cre13.g580450				GO:0005515	protein binding	
+Cre13.g582100						
+Cre13.g569300			Chloroplast	GO:0055114	oxidation-reduction process	
+Cre13.g562000						
+Cre13.g572900	GMM:29.5	protein.degradation	Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	THO3
+Cre13.g578051						
+Cre13.g588405						
+Cre13.g606000	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0005525	GTP binding	EFG7
+Cre13.g585000			Secretory pathway			
+Cre13.g570150	GMM:28.99;GMM:27.3.25	DNA.unspecified;RNA.regulation of transcription.MYB domain transcription factor family		GO:0017053;GO:0007049;GO:0006351	"transcriptional repressor complex;cell cycle;transcription, DNA-templated"	
+Cre13.g562800						FAP337
+Cre13.g566250			Mitochondrion			
+Cre13.g591300			Secretory pathway			
+Cre13.g583050	GMM:31.5.1;GMM:26.3	"cell.cell death.plants;misc.gluco-, galacto- and mannosidases"	Chloroplast	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	
+Cre13.g570050	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB20
+Cre13.g574950			Mitochondrion			
+Cre13.g591000			Secretory pathway			
+Cre13.g588250						
+Cre13.g565083						
+Cre13.g564750			Secretory pathway			PDE15
+Cre13.g606200				GO:0008168;GO:0003723	methyltransferase activity;RNA binding	
+Cre13.g566300	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases	Chloroplast	GO:0031167;GO:0008168	rRNA methylation;methyltransferase activity	
+Cre13.g570900	GMM:29.4	protein.postranslational modification		GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress"	MSRA1
+Cre13.g605404						
+Cre13.g608000			Mitochondrion			CPLD52
+Cre13.g581850	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion			
+Cre13.g589400			Secretory pathway			PRL6
+Cre13.g577650	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast			
+Cre13.g605200	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP29
+Cre13.g563006			Chloroplast			
+Cre13.g592000	GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre13.g564426			Secretory pathway			
+Cre13.g568650	GMM:29.2.1.2.1.53	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S3A		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS3A
+Cre13.g589700	GMM:31.4;GMM:27.3.71	cell.vesicle transport;RNA.regulation of transcription.SNF7		GO:0007034	vacuolar transport	VPS20
+Cre13.g573250	GMM:26.23	misc.rhodanese	Chloroplast			
+Cre13.g568900	GMM:29.2.1.2.2.17	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L17		GO:0015934;GO:0006412;GO:0005840;GO:0003735	large ribosomal subunit;translation;ribosome;structural constituent of ribosome	RPL17
+Cre13.g579017			Mitochondrion	GO:0051260	protein homooligomerization	
+Cre13.g584050	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB54
+Cre13.g567100	GMM:21.2.1.5	"redox.ascorbate and glutathione.ascorbate.L-galactono-1,4-lactone dehydrogenase"	Mitochondrion	GO:0055114;GO:0050660;GO:0016491;GO:0016020;GO:0003885	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;membrane;D-arabinono-1,4-lactone oxidase activity"	ALO1
+Cre13.g573900	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	NSS3
+Cre13.g606850	GMM:33.99;GMM:30.5;GMM:3.5	development.unspecified;signalling.G-proteins;minor CHO metabolism.others				
+Cre13.g605000	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre13.g602450			Chloroplast			
+Cre13.g579150				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	
+Cre13.g567327						
+Cre13.g604550						
+Cre13.g576900			Secretory pathway			
+Cre13.g582671						
+Cre13.g603750			Chloroplast	GO:0016020;GO:0015269;GO:0006813	membrane;calcium-activated potassium channel activity;potassium ion transport	KCA1
+Cre13.g569750			Mitochondrion			
+Cre13.g572050	GMM:33.30.1;GMM:33.3.1;GMM:31.3;GMM:3.4;GMM:29.4.1	development.multitarget.target of rapamycin;development.multitarget.target of rapamycin;cell.cycle;minor CHO metabolism.myo-inositol;protein.postranslational modification.kinase	Secretory pathway	GO:0016773;GO:0005515	"phosphotransferase activity, alcohol group as acceptor;protein binding"	SMG1
+Cre13.g568200			Secretory pathway			AXL1
+Cre13.g564151			Mitochondrion			
+Cre13.g566200	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family		GO:0046872	metal ion binding	CGL112
+Cre13.g569050						
+Cre13.g572800			Chloroplast			TILS
+Cre13.g604200			Mitochondrion			
+Cre13.g564050			Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	
+Cre13.g575850	GMM:30.11	signalling.light				
+Cre13.g575366						
+Cre13.g590600	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Mitochondrion	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE32
+Cre13.g586350	GMM:28.2	DNA.repair	Mitochondrion			
+Cre13.g580800			Mitochondrion			
+Cre13.g590150						
+Cre13.g606350	GMM:33.99	development.unspecified	Mitochondrion			
+Cre13.g585750			Mitochondrion	GO:0055114;GO:0051537;GO:0016491	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"	
+Cre13.g579250	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			
+Cre13.g582600			Mitochondrion			
+Cre13.g580000			Secretory pathway			
+Cre13.g591851						
+Cre13.g570250	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification				
+Cre13.g573950	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZRT3
+Cre13.g572272						
+Cre13.g564450			Chloroplast			ELG43
+Cre13.g577026						
+Cre13.g580900	GMM:29.4;GMM:29.2.2.3.99	protein.postranslational modification;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc		GO:0004674	protein serine/threonine kinase activity	
+Cre13.g602850	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003676	nucleic acid binding	SRS8
+Cre13.g566626						
+Cre13.g565517			Mitochondrion			
+Cre13.g572750	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0055114;GO:0048038;GO:0009308;GO:0008131;GO:0005507	oxidation-reduction process;quinone binding;amine metabolic process;primary amine oxidase activity;copper ion binding	AMX3
+Cre13.g571540						
+Cre13.g607050	GMM:29.8;GMM:26.23;GMM:13.2.5.3	protein.assembly and cofactor ligation;misc.rhodanese;amino acid metabolism.degradation.serine-glycine-cysteine group.cysteine	Chloroplast			TSU1
+Cre13.g566925						
+Cre13.g567426						
+Cre13.g591350				GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT27
+Cre13.g579050	GMM:31.2	cell.division	Chloroplast			APC1:3frag
+Cre13.g588736			Secretory pathway			
+Cre13.g562501			Mitochondrion			
+Cre13.g565270						
+Cre13.g586550	GMM:21.2	redox.ascorbate and glutathione	Secretory pathway			CYB4
+Cre13.g578100				GO:0005643	nuclear pore	
+Cre13.g575200	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	
+Cre13.g577352			Secretory pathway			
+Cre13.g602500			Chloroplast			
+Cre13.g589350	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				FBB6
+Cre13.g569900						
+Cre13.g583787			Secretory pathway			
+Cre13.g603700	GMM:31.6.1.4.2.1;GMM:31.1.1.1.1;GMM:31.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.organisation.cytoskeleton.actin.Actin;cell.organisation				DII4
+Cre13.g606974						
+Cre13.g576000			Secretory pathway			
+Cre13.g563400				GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
+Cre13.g585500			Secretory pathway			
+Cre13.g562031						
+Cre13.g562300	GMM:28.1.3	DNA.synthesis/chromatin structure.histone		GO:0006334;GO:0005634;GO:0003677;GO:0000786	nucleosome assembly;nucleus;DNA binding;nucleosome	HON2
+Cre13.g605650	GMM:16.4.2.1	secondary metabolism.N misc.betaine.betaine-aldehyde dehydrogenase		GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	ALD7
+Cre13.g607800			Mitochondrion			
+Cre13.g571850	GMM:31.2;GMM:29.5.11.4.4	cell.division;protein.degradation.ubiquitin.E3.APC				APC10
+Cre13.g587950			Secretory pathway			
+Cre13.g571560			Chloroplast			
+Cre13.g604050			Secretory pathway			
+Cre13.g576550	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre13.g591951			Mitochondrion			
+Cre13.g562475	GMM:29.3.4.1	protein.targeting.secretory pathway.ER		GO:0046923;GO:0016021;GO:0006621	ER retention sequence binding;integral component of membrane;protein retention in ER lumen	
+Cre13.g564812						
+Cre13.g591100	GMM:30.99;GMM:27.3.67	signalling.unspecified;RNA.regulation of transcription.putative transcription regulator		GO:0055085;GO:0016020	transmembrane transport;membrane	MSC5
+Cre13.g578400	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion			
+Cre13.g573400			Chloroplast			
+Cre13.g588201						OPR58
+Cre13.g585800	GMM:29.5.1	protein.degradation.subtilases	Chloroplast	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB2
+Cre13.g603400	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
+Cre13.g578600						
+Cre13.g584100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre13.g568672						
+Cre13.g565400						
+Cre13.g569450			Secretory pathway			
+Cre13.g567950	GMM:2.1.2.1	major CHO metabolism.synthesis.starch.AGPase	Chloroplast	GO:0016779;GO:0009058	nucleotidyltransferase activity;biosynthetic process	STA1
+Cre13.g585301	GMM:11.10.1	lipid metabolism.glycolipid synthesis.MGDG synthase	Secretory pathway	GO:0016758	"transferase activity, transferring hexosyl groups"	CPLD55
+Cre13.g570650						
+Cre13.g604501				GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre13.g576433						
+Cre13.g585950			Chloroplast			
+Cre13.g568400	GMM:29.5.7	protein.degradation.metalloprotease		GO:0016887;GO:0006508;GO:0005524;GO:0004222	ATPase activity;proteolysis;ATP binding;metalloendopeptidase activity	FTSH4
+Cre13.g578650	GMM:30.11	signalling.light	Chloroplast			CPLD10
+Cre13.g584650			Chloroplast			
+Cre13.g567250			Mitochondrion			
+Cre13.g589750						
+Cre13.g565200	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre13.g563650						
+Cre13.g564900	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP3
+Cre13.g574375			Secretory pathway			
+Cre13.g591900			Mitochondrion			PLD1
+Cre13.g592300	GMM:12.4	N-metabolism.misc		GO:0055114;GO:0050660;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing	
+Cre13.g582650	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPK1
+Cre13.g605600				GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	OAS1
+Cre13.g577450	GMM:11.5.3	lipid metabolism.glycerol metabolism.FAD-dependent glycerol-3-phosphate dehydrogenase	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre13.g591400	GMM:18.4.5;GMM:18.4.1	Co-factor and vitamine metabolism.pantothenate.pantothenate kinase (PANK);Co-factor and vitamine metabolism.pantothenate.branched-chain amino acid aminotransferase		GO:0015937;GO:0005524;GO:0004594	coenzyme A biosynthetic process;ATP binding;pantothenate kinase activity	COA1
+Cre13.g573850						
+Cre13.g578150	GMM:25	C1-metabolism				RRA1
+Cre13.g586450			Chloroplast	GO:0008080	N-acetyltransferase activity	
+Cre13.g590626						
+Cre13.g606300			Secretory pathway	GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
+Cre13.g566900	GMM:31.3	cell.cycle		GO:0006281;GO:0000724	DNA repair;double-strand break repair via homologous recombination	
+Cre13.g577400	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG16
+Cre13.g563350						
+Cre13.g586400						
+Cre13.g571600				GO:0006888;GO:0005801;GO:0005622	ER to Golgi vesicle-mediated transport;cis-Golgi network;intracellular	TRS20
+Cre13.g582150						
+Cre13.g564100	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK2
+Cre13.g591200	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB22
+Cre13.g566150	GMM:27.1	RNA.processing		GO:0008173;GO:0008168;GO:0006396;GO:0003723	RNA methyltransferase activity;methyltransferase activity;RNA processing;RNA binding	RMR1
+Cre13.g583898						
+Cre13.g571100						
+Cre13.g605050						
+Cre13.g568176						
+Cre13.g606700			Mitochondrion			
+Cre13.g562526			Mitochondrion			
+Cre13.g571150	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOP1
+Cre13.g591073			Mitochondrion	GO:0005515	protein binding	
+Cre13.g588700						
+Cre13.g579650	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre13.g607350	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Chloroplast	GO:0008270;GO:0004089	zinc ion binding;carbonate dehydratase activity	CAH7
+Cre13.g587100			Chloroplast	GO:0055114;GO:0050897;GO:0016636;GO:0010024	"oxidation-reduction process;cobalt ion binding;oxidoreductase activity, acting on the CH-CH group of donors, iron-sulfur protein as acceptor;phytochromobilin biosynthetic process"	
+Cre13.g566650	GMM:11.1.9	lipid metabolism.FA synthesis and FA elongation.long chain fatty acid CoA ligase		GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre13.g603500			Chloroplast			
+Cre13.g579450			Secretory pathway			CST1
+Cre13.g597676						
+Cre13.g583217			Chloroplast	GO:0008080	N-acetyltransferase activity	
+Cre13.g602750	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"				
+Cre13.g587650						
+Cre13.g571876						
+Cre13.g573550	GMM:31.1	cell.organisation				ANK26
+Cre13.g563150			Chloroplast			CGLD8
+Cre13.g565650	GMM:16.1.5;GMM:16.1.2.8;GMM:16.1.1.10	secondary metabolism.isoprenoids.terpenoids;secondary metabolism.isoprenoids.mevalonate pathway.geranyl diphosphate synthase;secondary metabolism.isoprenoids.non-mevalonate pathway.geranylgeranyl pyrophosphate synthase	Chloroplast	GO:0016765;GO:0015979;GO:0008299	"transferase activity, transferring alkyl or aryl (other than methyl) groups;photosynthesis;isoprenoid biosynthetic process"	
+Cre13.g565450	GMM:23.1.2.8	nucleotide metabolism.synthesis.purine.SAICAR lyase	Chloroplast	GO:0006188;GO:0004018	"IMP biosynthetic process;N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity"	PURB
+Cre13.g565550	GMM:27.2	RNA.transcription				RPB11
+Cre13.g586500	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN17-2
+Cre13.g573500						FAP95
+Cre13.g605300			Chloroplast			
+Cre13.g569500	GMM:13.2.5.3	amino acid metabolism.degradation.serine-glycine-cysteine group.cysteine		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre13.g568550	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre13.g579976			Mitochondrion			
+Cre13.g589426						
+Cre13.g574050			Secretory pathway			
+Cre13.g583200			Mitochondrion			
+Cre13.g604150	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
+Cre13.g562250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP92
+Cre13.g577550	GMM:27.3.99	RNA.regulation of transcription.unclassified				DDB2
+Cre13.g579076						
+Cre13.g605500				GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
+Cre13.g569400	GMM:13.2.5.3	amino acid metabolism.degradation.serine-glycine-cysteine group.cysteine		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	TAUD1
+Cre13.g568000			Secretory pathway			
+Cre13.g567650	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Secretory pathway	GO:0008236;GO:0006508	serine-type peptidase activity;proteolysis	
+Cre13.g583861						
+Cre13.g575400			Secretory pathway			
+Cre13.g582800				GO:0046872;GO:0008716;GO:0005737;GO:0005524	metal ion binding;D-alanine-D-alanine ligase activity;cytoplasm;ATP binding	
+Cre13.g565150						
+Cre13.g574300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre13.g585450			Chloroplast			
+Cre13.g575900						CGL117
+Cre13.g567363	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase	Mitochondrion			FAP220
+Cre13.g564800	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0020037;GO:0016849;GO:0009190;GO:0006182;GO:0004383	intracellular signal transduction;heme binding;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;cGMP biosynthetic process;guanylate cyclase activity	CYG67
+Cre13.g588026						
+Cre13.g603650						
+Cre13.g587800						
+Cre13.g607850	GMM:27.1.1	RNA.processing.splicing	Mitochondrion	GO:0003676	nucleic acid binding	
+Cre13.g572250						
+Cre13.g607000	GMM:29.5.7	protein.degradation.metalloprotease		GO:0016787;GO:0008152	hydrolase activity;metabolic process	xhp1
+Cre13.g584350			Secretory pathway			
+Cre13.g592500	GMM:18.3	Co-factor and vitamine metabolism.riboflavin		GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre13.g577050	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Mitochondrion			ELG7
+Cre13.g573450	GMM:27.1.3.2;GMM:27.1	RNA.processing.3' end processing.CPSF160;RNA.processing	Secretory pathway	GO:0005634;GO:0003676	nucleus;nucleic acid binding	
+Cre13.g604905			Mitochondrion			
+Cre13.g573351	GMM:29.2.1.2.1.16	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S16		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	
+Cre13.g583450			Mitochondrion			EZY17
+Cre13.g574000	GMM:34.18	transport.unspecified anions		GO:0055085;GO:0016020;GO:0006821;GO:0005247	transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity	CLV1
+Cre13.g576850			Secretory pathway			
+Cre13.g587850			Mitochondrion;Chloroplast			
+Cre13.g578451	GMM:29.1.4;GMM:29.1	protein.aa activation.leucine-tRNA ligase;protein.aa activation	Chloroplast	GO:0006429;GO:0006418;GO:0005524;GO:0004823;GO:0004812;GO:0002161;GO:0000166	leucyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;ATP binding;leucine-tRNA ligase activity;aminoacyl-tRNA ligase activity;aminoacyl-tRNA editing activity;nucleotide binding	TSL1
+Cre13.g571750			Secretory pathway	GO:0016020	membrane	
+Cre13.g585250	GMM:34.15	transport.potassium		GO:0051260	protein homooligomerization	
+Cre13.g575776			Mitochondrion			
+Cre13.g603350	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG56
+Cre13.g567200	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre13.g563250			Secretory pathway			
+Cre13.g582734			Chloroplast			
+Cre13.g574700						PEX13
+Cre13.g576700						
+Cre13.g578676						
+Cre13.g607900			Mitochondrion			CPLD68
+Cre13.g572350	GMM:29.6.2.1	protein.folding.chaperones and co-chaperones.small HSPs	Chloroplast			HSP22G
+Cre13.g586600			Secretory pathway	GO:0016021	integral component of membrane	
+Cre13.g575150			Mitochondrion			
+Cre13.g580500				GO:0016020;GO:0006897	membrane;endocytosis	
+Cre13.g573700						
+Cre13.g586050	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	protein binding	
+Cre13.g573100			Secretory pathway			MAM3C
+Cre13.g585100				GO:0006886	intracellular protein transport	
+Cre13.g589450	GMM:31.6.1.1;GMM:20.1.7.6.1	cell.motility.eukaryotes.basal bodies;stress.biotic.PR-proteins.PR6 (proteinase inhibitors).trypsin inhibitor				
+Cre13.g606101	GMM:33.99	development.unspecified	Secretory pathway			
+Cre13.g570550	GMM:23.2	nucleotide metabolism.degradation	Mitochondrion	GO:0009972;GO:0008270;GO:0004126	cytidine deamination;zinc ion binding;cytidine deaminase activity	CDD1
+Cre13.g604750	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	CGL94
+Cre13.g576650	GMM:13.1.7.2	amino acid metabolism.synthesis.histidine.phosphoribosyl-ATP pyrophosphatase		GO:0004635;GO:0000105	phosphoribosyl-AMP cyclohydrolase activity;histidine biosynthetic process	HIS4
+Cre13.g603550			Chloroplast			
+Cre13.g567400	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE16
+Cre13.g566100						
+Cre13.g584700			Mitochondrion			
+Cre13.g569600			Chloroplast			
+Cre13.g585850	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases		GO:0016758	"transferase activity, transferring hexosyl groups"	
+Cre13.g590650						
+Cre13.g577300	GMM:24	biodegradation of xenobiotics	Mitochondrion			GOX13
+Cre13.g592200	GMM:12.2.1.2;GMM:12.2.1	N-metabolism.ammonia metabolism.glutamate synthase.NADH dependent;N-metabolism.ammonia metabolism.glutamate synthase	Chloroplast	GO:0055114;GO:0016638;GO:0016491;GO:0015930;GO:0008152;GO:0006807;GO:0006537	"oxidation-reduction process;oxidoreductase activity, acting on the CH-NH2 group of donors;oxidoreductase activity;glutamate synthase activity;metabolic process;nitrogen compound metabolic process;glutamate biosynthetic process"	GSN1
+Cre13.g576250						
+Cre13.g579598	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase				SSS3
+Cre13.g561800			Mitochondrion	GO:0005515	protein binding	
+Cre13.g588650			Secretory pathway			
+Cre13.g581650	GMM:29.2.1.1.1.2.12	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L12	Chloroplast	GO:0006412;GO:0003735	translation;structural constituent of ribosome	PRPL7
+Cre13.g563450						
+Cre13.g585651			Mitochondrion	GO:0006508;GO:0004176	proteolysis;ATP-dependent peptidase activity	
+Cre13.g571927			Secretory pathway			
+Cre13.g591250			Secretory pathway			EZY20
+Cre13.g587050	GMM:29.2.5	protein.synthesis.release		GO:0016149;GO:0006415;GO:0005737	"translation release factor activity, codon specific;translational termination;cytoplasm"	ERF1
+Cre13.g580200						
+Cre13.g562200						
+Cre13.g571580						CSB53
+Cre13.g563926						
+Cre13.g587750				GO:0017119;GO:0006891	Golgi transport complex;intra-Golgi vesicle-mediated transport	COG6
+Cre13.g569200	GMM:29.3.4.99;GMM:29.3	protein.targeting.secretory pathway.unspecified;protein.targeting		GO:0048500;GO:0008312;GO:0006614;GO:0005525	signal recognition particle;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane;GTP binding	SRP54
+Cre13.g567500						
+Cre13.g591450				GO:0016021;GO:0006813;GO:0005242	integral component of membrane;potassium ion transport;inward rectifier potassium channel activity	
+Cre13.g588000			Chloroplast			
+Cre13.g602400	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN8-1
+Cre13.g607400			Chloroplast			
+Cre13.g579100	GMM:29.5.11.4.4	protein.degradation.ubiquitin.E3.APC		GO:0005680	anaphase-promoting complex	APC1
+Cre13.g568150			Chloroplast	GO:0008168	methyltransferase activity	
+Cre13.g605100	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0005515;GO:0004114	"signal transduction;protein binding;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE20
+Cre13.g564200						
+Cre13.g575701						
+Cre13.g573000	GMM:31.2;GMM:27.3.69;GMM:27.3.18	cell.division;RNA.regulation of transcription.SET-domain transcriptional regulator family;RNA.regulation of transcription.E2F/DP transcription factor family	Chloroplast	GO:0005515	protein binding	E2FR1
+Cre13.g565250				GO:0006950	response to stress	
+Cre13.g606550			Mitochondrion			
+Cre13.g574350	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre13.g562750			Chloroplast			CGLD38
+Cre13.g606950			Chloroplast			
+Cre13.g582900						
+Cre13.g580850	GMM:29.2.1.1.1.2.22	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L22	Chloroplast	GO:0015934;GO:0006412;GO:0005840;GO:0003735	large ribosomal subunit;translation;ribosome;structural constituent of ribosome	PRPL22
+Cre13.g604650	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation				
+Cre13.g562900			Chloroplast			
+Cre13.g565800	GMM:3.5;GMM:10.5.5	minor CHO metabolism.others;cell wall.cell wall proteins.RGP		GO:0030244;GO:0016866	cellulose biosynthetic process;intramolecular transferase activity	UPT1
+Cre13.g570000	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO20
+Cre13.g563476						
+Cre13.g568450	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN7-3
+Cre13.g574551			Mitochondrion			
+Cre13.g571000						
+Cre13.g605800						
+Cre13.g590400				GO:0005515	protein binding	
+Cre13.g603225			Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre13.g574850	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM6
+Cre13.g589200	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre13.g583250				GO:0005515	protein binding	
+Cre13.g578200	GMM:29.4	protein.postranslational modification				
+Cre13.g583287						IQA3
+Cre13.g579400	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM8
+Cre13.g568600	GMM:26.13	misc.acid and other phosphatases		GO:0003993	acid phosphatase activity	
+Cre13.g567850	GMM:29.2.2.3.1;GMM:27.4	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;RNA.RNA binding		GO:0042254;GO:0031429;GO:0001522	ribosome biogenesis;box H/ACA snoRNP complex;pseudouridine synthesis	
+Cre13.g562400	GMM:27.3.1;GMM:17.1.2	RNA.regulation of transcription.ABI3/VP1-related B3-domain-containing transcription factor family;hormone metabolism.abscisic acid.signal transduction	Mitochondrion	GO:0003677	DNA binding	ABI3
+Cre13.g586200						
+Cre13.g605900			Mitochondrion			
+Cre13.g604000						
+Cre13.g607200	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG42
+Cre13.g584500			Mitochondrion			
+Cre13.g587300						
+Cre13.g572401						
+Cre13.g589100						
+Cre13.g584800						
+Cre13.g572700	GMM:31.6.1.3.2.1	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A		GO:0030117;GO:0016192;GO:0006886;GO:0005198	membrane coat;vesicle-mediated transport;intracellular protein transport;structural molecule activity	IFT144
+Cre13.g571400						
+Cre13.g579200	GMM:29.2.2	protein.synthesis.ribosome biogenesis		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	S6K1
+Cre13.g566600			Secretory pathway			
+Cre13.g590700			Chloroplast			
+Cre13.g603300			Chloroplast			
+Cre13.g567901			Secretory pathway	GO:0016021	integral component of membrane	
+Cre13.g581700			Mitochondrion	GO:0051607;GO:0003725	defense response to virus;double-stranded RNA binding	
+Cre13.g568350						
+Cre13.g562450	GMM:29.3.1	protein.targeting.nucleus	Secretory pathway	GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	IPB3
+Cre13.g565311						
+Cre13.g583400			Chloroplast			OPR57
+Cre13.g602650	GMM:26.23	misc.rhodanese	Chloroplast			
+Cre13.g575101						
+Cre13.g604600						
+Cre13.g573650	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	SRS5
+Cre13.g588850	GMM:29.5.11	protein.degradation.ubiquitin	Secretory pathway			
+Cre13.g564500	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	FAP377
+Cre13.g563200						HAD7
+Cre13.g578700			Chloroplast			
+Cre13.g576950			Secretory pathway			
+Cre13.g564250	GMM:29.2.3	protein.synthesis.initiation		GO:0005515	protein binding	EIF3A
+Cre13.g572312						
+Cre13.g586100						
+Cre13.g579734	GMM:26.4;GMM:26.3	"misc.beta 1,3 glucan hydrolases;misc.gluco-, galacto- and mannosidases"	Secretory pathway			GLC1
+Cre13.g605700			Chloroplast			
+Cre13.g604700	GMM:11.3	lipid metabolism.phospholipid synthesis	Chloroplast	GO:0016780;GO:0016020;GO:0008654	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	
+Cre13.g585150	GMM:29.2.3;GMM:29.2.2.3.99	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc		GO:0043022;GO:0042256	ribosome binding;mature ribosome assembly	EIF6
+Cre13.g575175						
+Cre13.g582850			Chloroplast			
+Cre13.g588600	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN1-1
+Cre13.g582755			Mitochondrion			
+Cre13.g606450	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB55
+Cre13.g603250			Chloroplast			OPR61
+Cre13.g585600			Chloroplast			
+Cre13.g572375			Mitochondrion			
+Cre13.g605150	GMM:21.6	redox.dismutases and catalases	Mitochondrion	GO:0055114;GO:0046872;GO:0006801;GO:0004784	oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity	MSD2
+Cre13.g589500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK9
+Cre13.g587000	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0005634	nucleus	
+Cre13.g590950						
+Cre13.g566450	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	ROC104
+Cre13.g573050	GMM:27.1	RNA.processing		GO:0032040;GO:0006364	small-subunit processome;rRNA processing	
+Cre13.g580550	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	hlm20
+Cre13.g580950			Secretory pathway			
+Cre13.g588626			Mitochondrion			
+Cre13.g578750	GMM:23.2.1.3;GMM:1.1.1.3	nucleotide metabolism.degradation.pyrimidine.dihydrouracil dehydrogenase;PS.lightreaction.photosystem II.biogenesis	Chloroplast	GO:0055114;GO:0016627;GO:0005737	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;cytoplasm"	TBA1
+Cre13.g583650			Mitochondrion			
+Cre13.g570600	GMM:34.12	transport.metal	Secretory pathway	GO:0035434;GO:0016021;GO:0005375	copper ion transmembrane transport;integral component of membrane;copper ion transmembrane transporter activity	CTR1
+Cre13.g579950						
+Cre13.g565900				GO:0035267;GO:0032777;GO:0006357	NuA4 histone acetyltransferase complex;Piccolo NuA4 histone acetyltransferase complex;regulation of transcription from RNA polymerase II promoter	
+Cre13.g586950				GO:0008080	N-acetyltransferase activity	
+Cre13.g589050			Chloroplast			
+Cre13.g591700	GMM:31.6.1.11	cell.motility.eukaryotes.other	Chloroplast	GO:0006464	cellular protein modification process	TTL15
+Cre13.g570300	GMM:29.5.11.3;GMM:29.5.11	protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin				UBC24
+Cre13.g565600			Chloroplast	GO:0008270;GO:0006508;GO:0004181	zinc ion binding;proteolysis;metallocarboxypeptidase activity	
+Cre13.g575333	GMM:31.2	cell.division	Secretory pathway			
+Cre13.g592250						
+Cre13.g576300			Secretory pathway	GO:0043085;GO:0016485;GO:0016021	positive regulation of catalytic activity;protein processing;integral component of membrane	APH1
+Cre13.g585900	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation		GO:0019370;GO:0008270;GO:0008237;GO:0006508	leukotriene biosynthetic process;zinc ion binding;metallopeptidase activity;proteolysis	LKHA4
+Cre13.g565850	GMM:31.4	cell.vesicle transport		GO:0030126;GO:0030117;GO:0016192;GO:0006886;GO:0005515;GO:0005198	COPI vesicle coat;membrane coat;vesicle-mediated transport;intracellular protein transport;protein binding;structural molecule activity	COPA1
+Cre13.g571700	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre13.g591150	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA22
+Cre13.g580250						
+Cre13.g598957						
+Cre13.g587700	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Secretory pathway	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre13.g566550			Chloroplast			
+Cre13.g569150						
+Cre13.g574600						
+Cre13.g563950						
+Cre13.g565280			Chloroplast			
+Cre13.g567450	GMM:28.1.3	DNA.synthesis/chromatin structure.histone		GO:0006334;GO:0005634;GO:0003677;GO:0000786	nucleosome assembly;nucleus;DNA binding;nucleosome	HON1
+Cre13.g568500						
+Cre13.g585700						
+Cre13.g579566			Mitochondrion			
+Cre13.g589150			Mitochondrion			
+Cre13.g576200			Chloroplast	GO:0009116;GO:0003824	nucleoside metabolic process;catalytic activity	
+Cre13.g582201	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases		GO:0016787	hydrolase activity	
+Cre13.g584750	GMM:18.6	Co-factor and vitamine metabolism.biotin	Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm46
+Cre13.g579550			Chloroplast			CGL27
+Cre13.g583150				GO:0005515	protein binding	
+Cre13.g583300			Mitochondrion			
+Cre13.g592450	GMM:31.4	cell.vesicle transport		GO:0006890;GO:0005198	"retrograde vesicle-mediated transport, Golgi to ER;structural molecule activity"	COPE1
+Cre13.g602901	GMM:18.6;GMM:18.1	Co-factor and vitamine metabolism.biotin;Co-factor and vitamine metabolism.molybdenum cofactor	Mitochondrion	GO:0051539;GO:0051536;GO:0019008;GO:0006777;GO:0003824	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;molybdopterin synthase complex;Mo-molybdopterin cofactor biosynthetic process;catalytic activity"	CNX2
+Cre13.g561850	GMM:2.2.1.1	major CHO metabolism.degradation.sucrose.fructokinase	Chloroplast			FRK2
+Cre13.g565260	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems	Chloroplast			
+Cre13.g569850	GMM:34.5	transport.ammonium	Secretory pathway	GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	AMT4
+Cre13.g564850			Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre13.g571050	GMM:27.3.62	RNA.regulation of transcription.nucleosome/chromatin assembly factor group		GO:0003677	DNA binding	
+Cre13.g562326			Chloroplast			
+Cre13.g565050			Secretory pathway			
+Cre13.g576500	GMM:33.99;GMM:27.3.34	development.unspecified;RNA.regulation of transcription.orphan family				
+Cre13.g567000			Chloroplast			
+Cre13.g582692						
+Cre13.g590350				GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre13.g572732			Secretory pathway			
+Cre13.g574200	GMM:27.1	RNA.processing	Chloroplast	GO:0016779	nucleotidyltransferase activity	PAP2
+Cre13.g592551			Chloroplast			
+Cre13.g578012			Chloroplast			
+Cre13.g566800			Mitochondrion			
+Cre13.g568316						
+Cre13.g562150	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast	GO:0005525	GTP binding	
+Cre13.g606962						
+Cre13.g584450	GMM:30.2.12;GMM:30.2.11;GMM:2.1	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;major CHO metabolism.synthesis	Secretory pathway	GO:0005515	protein binding	
+Cre13.g587350			Secretory pathway			
+Cre13.g591501	GMM:29.1.30	protein.aa activation.pseudouridylate synthase	Mitochondrion	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS2
+Cre13.g583935						
+Cre13.g585550			Secretory pathway			
+Cre13.g596395			Secretory pathway			
+Cre13.g577500	GMM:31.4	cell.vesicle transport		GO:0016020;GO:0006886	membrane;intracellular protein transport	VTI1
+Cre13.g577000			Secretory pathway			
+Cre13.g571520			Chloroplast			ANK12
+Cre13.g565350						TTL11
+Cre13.g605850			Chloroplast			
+Cre02.g117813	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g105900			Secretory pathway			
+Cre02.g104126						
+Cre02.g145450			Chloroplast			
+Cre02.g082651						
+Cre02.g080300			Mitochondrion			
+Cre02.g098350	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate	Secretory pathway	GO:0055114;GO:0016491;GO:0005507	oxidation-reduction process;oxidoreductase activity;copper ion binding	
+Cre02.g073750	GMM:31.6.1.6.5;GMM:31.1	cell.motility.eukaryotes.central pair.C2c;cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KLP1
+Cre02.g107600	GMM:10.1.30.3	cell wall.precursor synthesis.sugar kinases.glucuronic acid kinase		GO:0005524	ATP binding	GAK
+Cre02.g142606			Secretory pathway			
+Cre02.g088650			Secretory pathway			
+Cre02.g102600				GO:0008270	zinc ion binding	
+Cre02.g107213						
+Cre02.g093202						
+Cre02.g075250			Chloroplast			
+Cre02.g095500			Chloroplast			
+Cre02.g097227						
+Cre02.g074650	GMM:11.1.13	lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein		GO:0005515;GO:0000062	protein binding;fatty-acyl-CoA binding	
+Cre02.g080550	GMM:20.2.1	stress.abiotic.heat	Chloroplast	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE26
+Cre02.g115450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG47
+Cre02.g106600	GMM:29.2.1.2.1.19	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S19		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPS19
+Cre02.g091450			Mitochondrion			
+Cre02.g095060						
+Cre02.g144350	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	RJL1
+Cre02.g141346						
+Cre02.g073176						CSB10
+Cre02.g090400			Chloroplast			
+Cre02.g086500			Chloroplast			PGM10
+Cre02.g095850						
+Cre02.g096350			Chloroplast	GO:0071949;GO:0055114;GO:0046416;GO:0016491;GO:0003884	FAD binding;oxidation-reduction process;D-amino acid metabolic process;oxidoreductase activity;D-amino-acid oxidase activity	DAO1
+Cre02.g141004						
+Cre02.g142350						
+Cre02.g094450	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC38
+Cre02.g143267			Mitochondrion	GO:0015074;GO:0006310;GO:0003677	DNA integration;DNA recombination;DNA binding	
+Cre02.g119484						
+Cre02.g142486						
+Cre02.g077200						
+Cre02.g084150			Secretory pathway			
+Cre02.g145630						
+Cre02.g100700			Secretory pathway			
+Cre02.g113809				GO:0005515	protein binding	
+Cre02.g077250						
+Cre02.g085100	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG59
+Cre02.g144850			Chloroplast			CGLD26
+Cre02.g142767			Chloroplast			
+Cre02.g100666			Mitochondrion			
+Cre02.g095135			Secretory pathway			
+Cre02.g114600	GMM:21.5.1;GMM:21.5	redox.peroxiredoxin.BAS1;redox.peroxiredoxin		GO:0055114;GO:0051920;GO:0016491	oxidation-reduction process;peroxiredoxin activity;oxidoreductase activity	PRX2
+Cre02.g084350			Secretory pathway	GO:0016020	membrane	CGLD1
+Cre02.g095110						FAP255
+Cre02.g100150			Chloroplast			
+Cre02.g146500	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	DYRK1
+Cre02.g104951			Secretory pathway			
+Cre02.g108050			Secretory pathway	GO:0016021;GO:0006886;GO:0005783	integral component of membrane;intracellular protein transport;endoplasmic reticulum	
+Cre02.g144700	GMM:34.7	transport.phosphate		GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB5
+Cre02.g097650	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	protein binding	RPN6
+Cre02.g109950			Chloroplast			OHP1
+Cre02.g112701						
+Cre02.g146851	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g077900						
+Cre02.g077500	GMM:29.3.99	protein.targeting.unknown	Secretory pathway	GO:0006888;GO:0005801;GO:0005622	ER to Golgi vesicle-mediated transport;cis-Golgi network;intracellular	TRS23
+Cre02.g143147						
+Cre02.g114950						
+Cre02.g141400	GMM:6.4	gluconeogenesis / glyoxylate cycle.phosphoenolpyruvate carboxykinase (PEPCK)	Chloroplast	GO:0006094;GO:0005524;GO:0004612	gluconeogenesis;ATP binding;phosphoenolpyruvate carboxykinase (ATP) activity	PCK1
+Cre02.g108250						
+Cre02.g106950			Mitochondrion			
+Cre02.g102750			Secretory pathway	GO:0016757;GO:0006486	"transferase activity, transferring glycosyl groups;protein glycosylation"	
+Cre02.g111050	GMM:34.5	transport.ammonium	Secretory pathway	GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	AMT7
+Cre02.g075750			Chloroplast	GO:0005515	protein binding	
+Cre02.g118300	GMM:27.1.2	RNA.processing.RNA helicase		GO:0005634;GO:0005524;GO:0004386;GO:0003723;GO:0003676	nucleus;ATP binding;helicase activity;RNA binding;nucleic acid binding	HEL12
+Cre02.g092926						
+Cre02.g102300			Secretory pathway			
+Cre02.g086887	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion	GO:0006810;GO:0005643	transport;nuclear pore	
+Cre02.g088500	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion			CPLD29
+Cre02.g117410	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway			
+Cre02.g099400	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG31
+Cre02.g099700						
+Cre02.g109126			Secretory pathway			
+Cre02.g084750	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre02.g117100			Secretory pathway			
+Cre02.g087633	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors	Secretory pathway			
+Cre02.g141850			Chloroplast			
+Cre02.g079100						
+Cre02.g093900						
+Cre02.g098300	GMM:31.3	cell.cycle	Chloroplast			
+Cre02.g090550	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS9
+Cre02.g078500						
+Cre02.g091750			Mitochondrion	GO:2001070	starch binding	
+Cre02.g113500			Chloroplast			
+Cre02.g094850			Chloroplast			
+Cre02.g146250	GMM:13.1.5.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine	Mitochondrion			NFS1
+Cre02.g144100	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Mitochondrion			ELG12
+Cre02.g142000	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC4
+Cre02.g144008			Chloroplast			
+Cre02.g141766			Chloroplast			
+Cre02.g116750	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion	GO:0046961;GO:0046933;GO:0046034;GO:0045261;GO:0033178;GO:0016820;GO:0015992;GO:0015991;GO:0015986;GO:0005524	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;ATP metabolic process;proton-transporting ATP synthase complex, catalytic core F(1);proton-transporting two-sector ATPase complex, catalytic domain;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;proton transport;ATP hydrolysis coupled proton transport;ATP synthesis coupled proton transport;ATP binding"	ATP1A
+Cre02.g095057	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB13
+Cre02.g077024			Mitochondrion			
+Cre02.g119050				GO:0016787;GO:0008236;GO:0008152;GO:0006508	hydrolase activity;serine-type peptidase activity;metabolic process;proteolysis	CER1
+Cre02.g075350	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CNK1
+Cre02.g093401			Chloroplast			
+Cre02.g145650						
+Cre02.g101000	GMM:23.3.2.2	nucleotide metabolism.salvage.nucleoside kinases.uridine kinase	Chloroplast			URK1
+Cre02.g113950			Chloroplast			
+Cre02.g100250						
+Cre02.g146131						
+Cre02.g115950			Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
+Cre02.g111650	GMM:18.8	Co-factor and vitamine metabolism.ubiquinone				CGL8
+Cre02.g116100			Secretory pathway			
+Cre02.g142100			Secretory pathway			
+Cre02.g105700			Mitochondrion			
+Cre02.g077951	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
+Cre02.g092600	GMM:19.8	tetrapyrrole synthesis.coproporphyrinogen III oxidase	Chloroplast	GO:0055114;GO:0006779;GO:0004109	oxidation-reduction process;porphyrin-containing compound biosynthetic process;coproporphyrinogen oxidase activity	CPX2
+Cre02.g103450	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
+Cre02.g085850	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS6
+Cre02.g083180			Secretory pathway			
+Cre02.g101050			Secretory pathway			
+Cre02.g095142			Mitochondrion			
+Cre02.g089050						
+Cre02.g092100						
+Cre02.g073200	GMM:13.2.3.2;GMM:13.1.4.5.1	amino acid metabolism.degradation.aspartate family.threonine;amino acid metabolism.synthesis.branched chain group.isoleucine specific.threonine ammonia-lyase	Chloroplast			THD1
+Cre02.g105400				GO:0008138;GO:0007096;GO:0006470;GO:0004721	protein tyrosine/serine/threonine phosphatase activity;regulation of exit from mitosis;protein dephosphorylation;phosphoprotein phosphatase activity	CDC14
+Cre02.g088350						
+Cre02.g081000						EXN4
+Cre02.g147900	GMM:4.3.14;GMM:4.1.14;GMM:11.1.30	glycolysis.unclear/dually targeted.pyruvate kinase (PK);glycolysis.cytosolic branch.pyruvate kinase (PK);lipid metabolism.FA synthesis and FA elongation.pyruvate kinase		GO:0030955;GO:0006096;GO:0004743;GO:0000287	potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding	PYK5
+Cre02.g104350	GMM:21.1.1;GMM:21.1	redox.thioredoxin.PDIL;redox.thioredoxin	Secretory pathway	GO:0045454	cell redox homeostasis	PDI5
+Cre02.g147300						
+Cre02.g101550	GMM:34.12	transport.metal		GO:0005515	protein binding	
+Cre02.g078966	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0016887;GO:0006508;GO:0005524;GO:0004222	ATPase activity;proteolysis;ATP binding;metalloendopeptidase activity	FTSH9
+Cre02.g086100			Chloroplast			CGL40
+Cre02.g084050				GO:0016021;GO:0015031;GO:0008565	integral component of membrane;protein transport;protein transporter activity	SEC62
+Cre02.g145502						
+Cre02.g114200	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CSK3
+Cre02.g079750	GMM:30.11;GMM:29.5.11.4.3.2;GMM:29.4	signalling.light;protein.degradation.ubiquitin.E3.SCF.FBOX;protein.postranslational modification		GO:0007165;GO:0000160;GO:0000155	signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	HKR1
+Cre02.g080650	GMM:29.6.2.4;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP90s;stress.abiotic.heat	EndoplasmicReticulum	GO:0051082;GO:0006950;GO:0006457;GO:0005524	unfolded protein binding;response to stress;protein folding;ATP binding	HSP90B
+Cre02.g118200			Mitochondrion	GO:0016021	integral component of membrane	
+Cre02.g095047						
+Cre02.g095138						
+Cre02.g108800	GMM:29.9;GMM:29.6.2.6;GMM:29.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding	Chloroplast			DNJ26
+Cre02.g091900						FAP301
+Cre02.g118801			Chloroplast			
+Cre02.g108850	GMM:29.2.1.1.1.2.17	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L17	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL17
+Cre02.g095076	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	MFT10
+Cre02.g143507						
+Cre02.g082000	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0006284	base-excision repair	AGE1
+Cre02.g096650			Mitochondrion			
+Cre02.g113200	GMM:12.2.2	N-metabolism.ammonia metabolism.glutamine synthetase		GO:0006807;GO:0006542;GO:0004356	nitrogen compound metabolic process;glutamine biosynthetic process;glutamate-ammonia ligase activity	GLN1
+Cre02.g120050			Chloroplast			
+Cre02.g091250			Chloroplast			
+Cre02.g106200	GMM:34.8	transport.metabolite transporters at the envelope membrane	Secretory pathway	GO:0055085	transmembrane transport	
+Cre02.g095054			Mitochondrion;Chloroplast			
+Cre02.g143200	GMM:29.1.7	protein.aa activation.alanine-tRNA ligase	Secretory pathway	GO:0043039;GO:0016876;GO:0006419;GO:0005524;GO:0004813;GO:0003676;GO:0000166	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;alanyl-tRNA aminoacylation;ATP binding;alanine-tRNA ligase activity;nucleic acid binding;nucleotide binding"	TSA1
+Cre02.g110200				GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	THO1
+Cre02.g095153						
+Cre02.g141926	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g141746	GMM:17.4.2	hormone metabolism.cytokinin.signal transduction	Mitochondrion	GO:0005515	protein binding	
+Cre02.g078200	GMM:27.1	RNA.processing				
+Cre02.g141166						
+Cre02.g143635			Chloroplast			
+Cre02.g099100	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT	Chloroplast	GO:0004842	ubiquitin-protein transferase activity	
+Cre02.g110300						DNJ25
+Cre02.g095085				GO:0016020	membrane	
+Cre02.g113250			Secretory pathway	GO:0005515	protein binding	
+Cre02.g081650	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Secretory pathway			
+Cre02.g086800			Chloroplast			
+Cre02.g104000			Secretory pathway			
+Cre02.g095067			Secretory pathway			
+Cre02.g092350	GMM:17.3.1.2.3	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.CYP51	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP51G1
+Cre02.g095055			Mitochondrion			
+Cre02.g090276	GMM:27.1.19	RNA.processing.ribonucleases	Mitochondrion	GO:0005634	nucleus	
+Cre02.g100876			Chloroplast			CSB14
+Cre02.g082877	GMM:29.1.11	protein.aa activation.serine-tRNA ligase		GO:0006434;GO:0006418;GO:0005737;GO:0005524;GO:0004828;GO:0004812;GO:0003677;GO:0000166	seryl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;serine-tRNA ligase activity;aminoacyl-tRNA ligase activity;DNA binding;nucleotide binding	
+Cre02.g142286	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
+Cre02.g088600	GMM:8.2.11	TCA / organic transformation.other organic acid transformations.atp-citrate lyase		GO:0048037;GO:0046912;GO:0008152;GO:0003824	"cofactor binding;transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer;metabolic process;catalytic activity"	ACLB1
+Cre02.g085500			Chloroplast			
+Cre02.g116700	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK11
+Cre02.g087850	GMM:30.2.8.2;GMM:30.2.20;GMM:30.2.17;GMM:29.4.1.58;GMM:29.4.1.57;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 2;signalling.receptor kinases.wheat LRK10 like;signalling.receptor kinases.DUF 26;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VIII;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK19
+Cre02.g089550			Secretory pathway			
+Cre02.g101600						
+Cre02.g103750			Mitochondrion			
+Cre02.g095071	GMM:27.1.19	RNA.processing.ribonucleases	Chloroplast	GO:0005634	nucleus	
+Cre02.g091350			Chloroplast			
+Cre02.g141200	GMM:18	Co-factor and vitamine metabolism		GO:0016763;GO:0009435;GO:0004514	"transferase activity, transferring pentosyl groups;NAD biosynthetic process;nicotinate-nucleotide diphosphorylase (carboxylating) activity"	NIC2
+Cre02.g111750			Mitochondrion			
+Cre02.g076300	GMM:19.7	tetrapyrrole synthesis.uroporphyrinogen decarboxylase	Chloroplast	GO:0006779;GO:0004853	porphyrin-containing compound biosynthetic process;uroporphyrinogen decarboxylase activity	UROD2
+Cre02.g095650			Chloroplast	GO:0071949	FAD binding	
+Cre02.g075550						
+Cre02.g082576			Chloroplast			
+Cre02.g097213				GO:0016020;GO:0005044	membrane;scavenger receptor activity	
+Cre02.g104150			Secretory pathway			
+Cre02.g145350			Secretory pathway			
+Cre02.g102250	GMM:29.2.1.2.1.3	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S3		GO:0003723	RNA binding	RPS3
+Cre02.g106700			Mitochondrion			OPR4
+Cre02.g078750	GMM:29.1.30;GMM:23.5.2	protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase	Chloroplast	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS3
+Cre02.g076663						CSB12
+Cre02.g079005						
+Cre02.g110050						
+Cre02.g115700						
+Cre02.g087200						
+Cre02.g113751			Secretory pathway			
+Cre02.g141306			Secretory pathway			
+Cre02.g107800	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CNK9
+Cre02.g078300				GO:0055114;GO:0006979;GO:0004602	oxidation-reduction process;response to oxidative stress;glutathione peroxidase activity	GPX1
+Cre02.g112400				GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI1
+Cre02.g117750						
+Cre02.g095052				GO:0006355	"regulation of transcription, DNA-templated"	
+Cre02.g095400	GMM:29.2.2.50	protein.synthesis.ribosome biogenesis.BRIX	Chloroplast			
+Cre02.g084250	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre02.g142750			Mitochondrion			
+Cre02.g086428						
+Cre02.g108950						LF1
+Cre02.g079004						
+Cre02.g099200	GMM:27.1.3.16	RNA.processing.3' end processing.Symplekin				
+Cre02.g073600			Chloroplast			
+Cre02.g088900	GMM:29.2.1.1.1.2.1	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L1	Chloroplast			PRPL1
+Cre02.g084873			Mitochondrion			
+Cre02.g095050			Chloroplast			
+Cre02.g075850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g094400			Chloroplast			
+Cre02.g085000			Chloroplast			
+Cre02.g096200						
+Cre02.g095103			Secretory pathway			
+Cre02.g142727						
+Cre02.g078251			Mitochondrion			
+Cre02.g114550			Secretory pathway			
+Cre02.g111150	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG26
+Cre02.g095128			Mitochondrion			
+Cre02.g146700			Chloroplast			
+Cre02.g095041			Secretory pathway			
+Cre02.g105350			Secretory pathway			
+Cre02.g115050			Mitochondrion	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	RSEP3
+Cre02.g076150			Secretory pathway			
+Cre02.g097400	GMM:29.2.3	protein.synthesis.initiation		GO:0045905;GO:0045901;GO:0043022;GO:0006452;GO:0003746;GO:0003723	positive regulation of translational termination;positive regulation of translational elongation;ribosome binding;translational frameshifting;translation elongation factor activity;RNA binding	EIF5A
+Cre02.g095045	GMM:33.99;GMM:27.3.63	development.unspecified;RNA.regulation of transcription.PHD finger transcription factor	Mitochondrion	GO:0006355;GO:0005515	"regulation of transcription, DNA-templated;protein binding"	hlm15
+Cre02.g096450						
+Cre02.g098450	GMM:29.2.3	protein.synthesis.initiation		GO:0005525	GTP binding	EIF2G
+Cre02.g093051						
+Cre02.g095140			Mitochondrion			
+Cre02.g097550			Chloroplast			
+Cre02.g100050	GMM:26.7	"misc.oxidases - copper, flavone etc"	Chloroplast			PFH11
+Cre02.g075150	GMM:27.2	RNA.transcription		GO:0032549;GO:0006351;GO:0003899;GO:0003677	"ribonucleoside binding;transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPB2
+Cre02.g095108			Mitochondrion			
+Cre02.g087500			Mitochondrion			
+Cre02.g142566						
+Cre02.g095063						
+Cre02.g111426						
+Cre02.g095062			Secretory pathway			
+Cre02.g073650	GMM:33.99;GMM:27.1.1	development.unspecified;RNA.processing.splicing		GO:0005515	protein binding	PRP19
+Cre02.g079250			Chloroplast	GO:0051382;GO:0019237;GO:0000776	kinetochore assembly;centromeric DNA binding;kinetochore	
+Cre02.g094551			Mitochondrion			
+Cre02.g097950						
+Cre02.g141706	GMM:3.5	minor CHO metabolism.others	Chloroplast	GO:0005525;GO:0003723	GTP binding;RNA binding	
+Cre02.g144007						
+Cre02.g113600	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g118950	GMM:29.2.1.1.1.1.17	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S17	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPS17
+Cre02.g095119						
+Cre02.g112100	GMM:31.6.1.6.1	cell.motility.eukaryotes.central pair.C1a				FAP101
+Cre02.g117450			Secretory pathway			
+Cre02.g082825	GMM:29.1.11	protein.aa activation.serine-tRNA ligase		GO:0006434;GO:0006418;GO:0005737;GO:0005524;GO:0004828;GO:0004812;GO:0000166	seryl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;serine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	TSS1
+Cre02.g089274	GMM:31.2	cell.division				
+Cre02.g144010			Secretory pathway			
+Cre02.g103100	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Secretory pathway			
+Cre02.g077600			Mitochondrion			FAP51
+Cre02.g113900			Chloroplast			
+Cre02.g101150	GMM:34.12;GMM:31.1	transport.metal;cell.organisation		GO:0005515	protein binding	
+Cre02.g105150			Mitochondrion	GO:0016740;GO:0003824	transferase activity;catalytic activity	
+Cre02.g097800	GMM:34.16;GMM:1.5.3	transport.ABC transporters and multidrug resistance systems;PS.carbon concentrating mechanism.algal		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP1
+Cre02.g142351	GMM:17.1.1	hormone metabolism.abscisic acid.synthesis-degradation	Chloroplast	GO:0045454	cell redox homeostasis	
+Cre02.g142386						
+Cre02.g143550	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELI4
+Cre02.g076350	GMM:34.1.1.1;GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit B;transport.p- and v-ATPases.H+-transporting two-sector ATPase		GO:0046034;GO:0033178;GO:0016820;GO:0015992;GO:0015991;GO:0005524	"ATP metabolic process;proton-transporting two-sector ATPase complex, catalytic domain;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;proton transport;ATP hydrolysis coupled proton transport;ATP binding"	ATPVB
+Cre02.g118700	GMM:31.6.1.11	cell.motility.eukaryotes.other	Mitochondrion			
+Cre02.g108700	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g103784						
+Cre02.g095149						FAP143
+Cre02.g141066			Chloroplast			
+Cre02.g087700	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate	Chloroplast	GO:0055114;GO:0020037;GO:0006979;GO:0004601	oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity	APX1
+Cre02.g083300						
+Cre02.g143227						
+Cre02.g089350						
+Cre02.g095066						
+Cre02.g146650	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0006464	cellular protein modification process	SSA11
+Cre02.g143467	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
+Cre02.g141226			Chloroplast			
+Cre02.g095134						
+Cre02.g105000			Secretory pathway			
+Cre02.g089608	GMM:28.1	DNA.synthesis/chromatin structure		GO:0016818;GO:0008026;GO:0006139;GO:0005524;GO:0004003;GO:0003677;GO:0003676	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;ATP-dependent helicase activity;nucleobase-containing compound metabolic process;ATP binding;ATP-dependent DNA helicase activity;DNA binding;nucleic acid binding"	
+Cre02.g096737						
+Cre02.g103700			Mitochondrion			
+Cre02.g109400			Secretory pathway	GO:0005515	protein binding	
+Cre02.g142927						
+Cre02.g083065	GMM:31.1;GMM:29.5	cell.organisation;protein.degradation	Mitochondrion	GO:0030145;GO:0004177	manganese ion binding;aminopeptidase activity	
+Cre02.g142807						
+Cre02.g113000						
+Cre02.g145750	GMM:34.3	transport.amino acids	Mitochondrion			AOT2
+Cre02.g095124			Chloroplast			
+Cre02.g134124			Chloroplast			
+Cre02.g142246			Mitochondrion			
+Cre02.g144001			Mitochondrion			
+Cre02.g095145			Secretory pathway			
+Cre02.g095034						
+Cre02.g145800	GMM:8.2.9	TCA / organic transformation.other organic acid transformations.cyt MDH		GO:0055114;GO:0016616;GO:0016615;GO:0016491;GO:0006108	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;malate dehydrogenase activity;oxidoreductase activity;malate metabolic process"	MDN3
+Cre02.g084550			Chloroplast	GO:0008080	N-acetyltransferase activity	
+Cre02.g141900				GO:0016021;GO:0006810	integral component of membrane;transport	
+Cre02.g143107			Chloroplast			
+Cre02.g141886	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g142950						
+Cre02.g142146			Chloroplast			CGL102
+Cre02.g106400	GMM:11.8.10	"lipid metabolism.exotics (steroids, squalene etc).phosphatidylcholine-sterol O-acyltransferase"	Chloroplast	GO:0008374;GO:0006629	O-acyltransferase activity;lipid metabolic process	LCA1
+Cre02.g080850	GMM:29.6.3.2	protein.folding.immunophilins (IMM).cyclophilins				CYN47
+Cre02.g084500			Secretory pathway			CGL134
+Cre02.g119150						
+Cre02.g093850			Mitochondrion	GO:0005515	protein binding	
+Cre02.g090850	GMM:29.6.2.5;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP100s;stress.abiotic.heat	Chloroplast	GO:0019538;GO:0016887;GO:0005524	protein metabolic process;ATPase activity;ATP binding	CLPB3
+Cre02.g147500			Mitochondrion			
+Cre02.g141086			Chloroplast			
+Cre02.g113050				GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	
+Cre02.g120350						
+Cre02.g145150			Secretory pathway			MAM3A
+Cre02.g104100			Chloroplast			
+Cre02.g095079						
+Cre02.g081950	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g116800						
+Cre02.g147100	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP265
+Cre02.g090689						
+Cre02.g105250						
+Cre02.g091200	GMM:13.2.6.2	amino acid metabolism.degradation.aromatic aa.tyrosine		GO:0055114;GO:0006570;GO:0006559;GO:0004411	"oxidation-reduction process;tyrosine metabolic process;L-phenylalanine catabolic process;homogentisate 1,2-dioxygenase activity"	
+Cre02.g117250	GMM:31.2;GMM:29.5.11.20	cell.division;protein.degradation.ubiquitin.proteasom		GO:0009341;GO:0005975;GO:0004565	beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity	
+Cre02.g085326			Secretory pathway			
+Cre02.g092850	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm				DLU1
+Cre02.g088100						
+Cre02.g114100	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE22
+Cre02.g079400	GMM:27.4	RNA.RNA binding	Mitochondrion	GO:0003676	nucleic acid binding	
+Cre02.g078912	GMM:34	transport	Mitochondrion			
+Cre02.g142326			Chloroplast			
+Cre02.g081750						
+Cre02.g079926			Chloroplast			PHC64
+Cre02.g102950	GMM:33.99;GMM:29.4;GMM:27.3;GMM:26.13	development.unspecified;protein.postranslational modification;RNA.regulation of transcription;misc.acid and other phosphatases				
+Cre02.g115350	GMM:13.99;GMM:13	amino acid metabolism.misc;amino acid metabolism				
+Cre02.g099050				GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR30
+Cre02.g082350	GMM:15.2	"metal handling.binding, chelation and storage"	Secretory pathway;Chloroplast	GO:0010038	response to metal ion	CUTA1
+Cre02.g095087	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
+Cre02.g101800	GMM:29.2.5	protein.synthesis.release	Chloroplast	GO:0006415;GO:0003747	translational termination;translation release factor activity	
+Cre02.g142086	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0050999	regulation of nitric-oxide synthase activity	
+Cre02.g091650			Chloroplast			
+Cre02.g119900	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP6
+Cre02.g092076			Secretory pathway			
+Cre02.g143650			Chloroplast			
+Cre02.g142466	GMM:30.2.17;GMM:29.4.1	signalling.receptor kinases.DUF 26;protein.postranslational modification.kinase				
+Cre02.g143307	GMM:29.6.2.5;GMM:29.5.5	protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease				CLPC1
+Cre02.g074050	GMM:20.2;GMM:2.2	stress.abiotic;major CHO metabolism.degradation	Secretory pathway			
+Cre02.g106100						
+Cre02.g095073			Mitochondrion			
+Cre02.g093117			Chloroplast			
+Cre02.g141806	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK16
+Cre02.g092500	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0008270;GO:0005737;GO:0005524;GO:0004386;GO:0003677;GO:0000184	"zinc ion binding;cytoplasm;ATP binding;helicase activity;DNA binding;nuclear-transcribed mRNA catabolic process, nonsense-mediated decay"	UPF1
+Cre02.g083800	GMM:3.5;GMM:10.1.10	minor CHO metabolism.others;cell wall.precursor synthesis.RHM		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	RHM2
+Cre02.g090000	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre02.g074437			Secretory pathway			
+Cre02.g073850	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Lumen	GO:0010207	photosystem II assembly	CGL54
+Cre02.g078550						FAP210
+Cre02.g083650			Secretory pathway			
+Cre02.g089900	GMM:34.99	transport.misc		GO:0016021;GO:0015031	integral component of membrane;protein transport	SCAMP5
+Cre02.g141050	GMM:33.99;GMM:32;GMM:29.2.3;GMM:27.3.36	"development.unspecified;micro RNA, natural antisense etc;protein.synthesis.initiation;RNA.regulation of transcription.argonaute transcription factor family"	Chloroplast	GO:0005515;GO:0003676	protein binding;nucleic acid binding	AGO1
+Cre02.g103400			Chloroplast			OPR118
+Cre02.g146400						CSB2
+Cre02.g088700						
+Cre02.g082550	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase	Chloroplast	GO:0071949;GO:0005515	FAD binding;protein binding	ZEP1
+Cre02.g141826	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g109716						
+Cre02.g146629						
+Cre02.g097450	GMM:25.9	C1-metabolism.dihydroneopterin aldolase		GO:0006760;GO:0004150	folic acid-containing compound metabolic process;dihydroneopterin aldolase activity	
+Cre02.g101700			Mitochondrion			
+Cre02.g142867			Secretory pathway			
+Cre02.g142206			Chloroplast			
+Cre02.g089700						
+Cre02.g101750			Chloroplast			
+Cre02.g095550	GMM:29.2.2	protein.synthesis.ribosome biogenesis	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre02.g141701						
+Cre02.g143207			Chloroplast			
+Cre02.g095084			Chloroplast			
+Cre02.g142650						
+Cre02.g142352	GMM:29.1.21	protein.aa activation.histidine-tRNA ligase		GO:0005737	cytoplasm	
+Cre02.g092200			Secretory pathway			
+Cre02.g087450						
+Cre02.g118650			Secretory pathway			PHC47
+Cre02.g112950				GO:0033588	Elongator holoenzyme complex	
+Cre02.g095064						
+Cre02.g086650	GMM:31.2;GMM:28.1	cell.division;DNA.synthesis/chromatin structure		GO:0051276;GO:0007076;GO:0005694;GO:0005524;GO:0005515;GO:0000796	chromosome organization;mitotic chromosome condensation;chromosome;ATP binding;protein binding;condensin complex	SMC2
+Cre02.g095081						
+Cre02.g141246						
+Cre02.g109501			Secretory pathway			
+Cre02.g116950	GMM:27.3.55	RNA.regulation of transcription.HDA				HDA1
+Cre02.g074370	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g103850	GMM:13.1.7.6;GMM:13.1.7	amino acid metabolism.synthesis.histidine.glutamine amidotransferase/cyclase;amino acid metabolism.synthesis.histidine	Chloroplast	GO:0004424;GO:0000105	imidazoleglycerol-phosphate dehydratase activity;histidine biosynthetic process	HIS3
+Cre02.g095150			Secretory pathway			
+Cre02.g104250			Mitochondrion	GO:0016021;GO:0016020;GO:0006811;GO:0006810;GO:0005230	integral component of membrane;membrane;ion transport;transport;extracellular ligand-gated ion channel activity	
+Cre02.g143151	GMM:31.1	cell.organisation		GO:0005815;GO:0000922;GO:0000226	microtubule organizing center;spindle pole;microtubule cytoskeleton organization	
+Cre02.g073500			Chloroplast			FAP241
+Cre02.g103650						
+Cre02.g099750	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g099500	GMM:33.99	development.unspecified	Mitochondrion			
+Cre02.g110350	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
+Cre02.g106150	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN18-1
+Cre02.g095117				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g095114			Secretory pathway			
+Cre02.g093600						TEH3
+Cre02.g141986				GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g074700			Chloroplast			
+Cre02.g142687	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	FAP332
+Cre02.g089500			Secretory pathway			
+Cre02.g147700				GO:0016787	hydrolase activity	
+Cre02.g143450			Chloroplast			
+Cre02.g078650	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway	GO:0016787;GO:0008152	hydrolase activity;metabolic process	
+Cre02.g105500	GMM:29.5;GMM:13.1.2.3	protein.degradation;amino acid metabolism.synthesis.glutamate family.arginine		GO:0016787;GO:0008152	hydrolase activity;metabolic process	AOD1
+Cre02.g142987			Secretory pathway	GO:0006281;GO:0005524;GO:0005515;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;protein binding;helicase activity;DNA helicase activity;telomere maintenance	
+Cre02.g107850	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast			MOB1
+Cre02.g086350						
+Cre02.g120250	GMM:29.4.1;GMM:29.4;GMM:1.1.30	protein.postranslational modification.kinase;protein.postranslational modification;PS.lightreaction.state transition	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	STT7
+Cre02.g078831	GMM:20.2.2	stress.abiotic.cold		GO:0006355;GO:0003677	"regulation of transcription, DNA-templated;DNA binding"	
+Cre02.g085350			Chloroplast			
+Cre02.g089200	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0042393;GO:0005515	histone binding;protein binding	HLM4
+Cre02.g091193						
+Cre02.g085300						
+Cre02.g096500				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g088000	GMM:9.1.1;GMM:31.6.1.1;GMM:31.3	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I;cell.motility.eukaryotes.basal bodies;cell.cycle	Mitochondrion	GO:0016020	membrane	PHB1
+Cre02.g141466			Chloroplast			
+Cre02.g141011			Chloroplast			
+Cre02.g079600	GMM:29.1.20	protein.aa activation.phenylalanine-tRNA ligase	Chloroplast	GO:0043039;GO:0008033;GO:0006432;GO:0005737;GO:0005524;GO:0004826;GO:0004812;GO:0000287;GO:0000049	tRNA aminoacylation;tRNA processing;phenylalanyl-tRNA aminoacylation;cytoplasm;ATP binding;phenylalanine-tRNA ligase activity;aminoacyl-tRNA ligase activity;magnesium ion binding;tRNA binding	TSF2
+Cre02.g146300	GMM:34.15	transport.potassium		GO:0016020;GO:0015269;GO:0006813	membrane;calcium-activated potassium channel activity;potassium ion transport	
+Cre02.g110500						
+Cre02.g083750	GMM:27.3.5;GMM:27.3.20;GMM:27.3	RNA.regulation of transcription.ARR;RNA.regulation of transcription.G2-like transcription factor family (GARP);RNA.regulation of transcription				ROC75
+Cre02.g079450			Secretory pathway			
+Cre02.g117650			Secretory pathway			
+Cre02.g093700	GMM:34.14	transport.unspecified cations		GO:0046872;GO:0016887;GO:0016021;GO:0006812;GO:0000166	metal ion binding;ATPase activity;integral component of membrane;cation transport;nucleotide binding	
+Cre02.g087800	GMM:30.2.20;GMM:29.4	signalling.receptor kinases.wheat LRK10 like;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK10
+Cre02.g144800	GMM:26.24	misc.GCN5-related N-acetyltransferase	Chloroplast	GO:0008080	N-acetyltransferase activity	LCI8
+Cre02.g143607			Chloroplast			
+Cre02.g099251			Chloroplast	GO:0016020	membrane	
+Cre02.g085800						
+Cre02.g083450	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase	Mitochondrion	GO:0071949	FAD binding	
+Cre02.g095090	GMM:14	S-assimilation		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	umm9
+Cre02.g111014	GMM:31.3;GMM:30.6	cell.cycle;signalling.MAP kinases		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g119250			Secretory pathway			
+Cre02.g082200	GMM:13.1.3.6.1.4	amino acid metabolism.synthesis.aspartate family.misc.homoserine.homoserine kinase	Mitochondrion	GO:0005524	ATP binding	HSK1
+Cre02.g077700	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
+Cre02.g103200			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre02.g076466			Chloroplast			
+Cre02.g118151						
+Cre02.g098850	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NTR2
+Cre02.g140981			Chloroplast			
+Cre02.g112000			Secretory pathway			AOT7
+Cre02.g143667			Chloroplast			PLPA9
+Cre02.g143327			Secretory pathway			
+Cre02.g075650	GMM:27.3.99;GMM:27.1.1	RNA.regulation of transcription.unclassified;RNA.processing.splicing		GO:0003676	nucleic acid binding	
+Cre02.g116850	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	HLM6
+Cre02.g087150			Chloroplast			
+Cre02.g095112						
+Cre02.g093300			Mitochondrion			
+Cre02.g144500	GMM:27.4	RNA.RNA binding		GO:0003723	RNA binding	
+Cre02.g078226						
+Cre02.g096800			Mitochondrion			
+Cre02.g115900						
+Cre02.g094150	GMM:27.3.66	RNA.regulation of transcription.pseudo ARR transcription factor family		GO:0005515;GO:0000160	protein binding;phosphorelay signal transduction system	HKR2
+Cre02.g092750				GO:0032259;GO:0008168;GO:0003676	methylation;methyltransferase activity;nucleic acid binding	SSA18
+Cre02.g095040						
+Cre02.g095126	GMM:2.2.2.4	major CHO metabolism.degradation.starch.D enzyme	Mitochondrion	GO:2001070;GO:0005975;GO:0004134	starch binding;carbohydrate metabolic process;4-alpha-glucanotransferase activity	DPE2
+Cre02.g141426						
+Cre02.g118100						
+Cre02.g145300				GO:0006397;GO:0005634;GO:0004721	mRNA processing;nucleus;phosphoprotein phosphatase activity	
+Cre02.g095350	GMM:23.3	nucleotide metabolism.salvage	Chloroplast			CGL116
+Cre02.g091100	GMM:29.2.1.2.2.15	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L15		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL15
+Cre02.g108601	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g143527						
+Cre02.g095143						
+Cre02.g112550	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre02.g108150			Chloroplast			
+Cre02.g141506	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
+Cre02.g104850			Mitochondrion			
+Cre02.g110843			Mitochondrion			
+Cre02.g074550						
+Cre02.g074300			Secretory pathway			
+Cre02.g143567						
+Cre02.g094250	GMM:34.9;GMM:34.17	transport.metabolite transporters at the mitochondrial membrane;transport.peroxisomes				
+Cre02.g094700						
+Cre02.g090050			Secretory pathway			FAP170
+Cre02.g142607	GMM:29.5.3	protein.degradation.cysteine protease	Chloroplast	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
+Cre02.g095077			Chloroplast			
+Cre02.g107700			Secretory pathway	GO:0005515	protein binding	
+Cre02.g143167						
+Cre02.g080000			Secretory pathway			
+Cre02.g114500	GMM:29.3.99;GMM:26.13	protein.targeting.unknown;misc.acid and other phosphatases		GO:0016791;GO:0008152	phosphatase activity;metabolic process	
+Cre02.g085950						
+Cre02.g076200	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation		GO:0008270;GO:0008237;GO:0006508	zinc ion binding;metallopeptidase activity;proteolysis	
+Cre02.g100450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG20
+Cre02.g097200						SRR14
+Cre02.g143067						
+Cre02.g095098						
+Cre02.g095000	GMM:11.9.3.4	lipid metabolism.lipid degradation.lysophospholipases.phospholipase A2	Secretory pathway	GO:0016042;GO:0005509;GO:0004623	lipid catabolic process;calcium ion binding;phospholipase A2 activity	PLA2
+Cre02.g115250	GMM:33.99;GMM:31.6.1.1;GMM:31.1;GMM:30.5;GMM:27.3.55;GMM:27.3.51;GMM:27.1;GMM:20.2.2	"development.unspecified;cell.motility.eukaryotes.basal bodies;cell.organisation;signalling.G-proteins;RNA.regulation of transcription.HDA;RNA.regulation of transcription.general transcription, TBP-binding protein;RNA.processing;stress.abiotic.cold"		GO:0005515	protein binding	POC1
+Cre02.g096900	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway	GO:0006388;GO:0000213	"tRNA splicing, via endonucleolytic cleavage and ligation;tRNA-intron endonuclease activity"	TIE1
+Cre02.g141150			Chloroplast			
+Cre02.g119751			Chloroplast			
+Cre02.g141546						
+Cre02.g115550			Chloroplast			
+Cre02.g113350				GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g095101	GMM:27.4	RNA.RNA binding	Mitochondrion	GO:0003676	nucleic acid binding	
+Cre02.g107350	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Mitochondrion	GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC4
+Cre02.g143427						
+Cre02.g114750	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g096000	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre02.g144606						
+Cre02.g117900	GMM:27.1.2;GMM:27.1.1;GMM:27.1	RNA.processing.RNA helicase;RNA.processing.splicing;RNA.processing		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL11
+Cre02.g113700	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005515;GO:0003677	protein binding;DNA binding	
+Cre02.g141646						
+Cre02.g095109			Secretory pathway	GO:0016021;GO:0008643;GO:0005351;GO:0000139	integral component of membrane;carbohydrate transport;sugar:proton symporter activity;Golgi membrane	
+Cre02.g115600			Secretory pathway	GO:0055085;GO:0016020	transmembrane transport;membrane	MSC7
+Cre02.g095300	GMM:31.3;GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	cell.cycle;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g074950						
+Cre02.g110600	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Chloroplast			DEG5
+Cre02.g140921						
+Cre02.g143900			Secretory pathway			
+Cre02.g093150						
+Cre02.g081250			Chloroplast			
+Cre02.g078000			Secretory pathway			
+Cre02.g117175						
+Cre02.g102000	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	ARL5
+Cre02.g100750			Secretory pathway			
+Cre02.g084950	GMM:23.4.2	nucleotide metabolism.phosphotransfer and pyrophosphatases.guanylate kinase	Chloroplast			GUK1
+Cre02.g141866						
+Cre02.g142586			Mitochondrion			
+Cre02.g095092	GMM:16.1.4.1	secondary metabolism.isoprenoids.carotenoids.phytoene synthase	Chloroplast	GO:0016740;GO:0009058	transferase activity;biosynthetic process	PSY1
+Cre02.g099850	GMM:8.1.1.1	TCA / organic transformation.TCA.pyruvate DH.E1		GO:0030976;GO:0003824	thiamine pyrophosphate binding;catalytic activity	PDC2
+Cre02.g143027			Mitochondrion			
+Cre02.g104650	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre02.g111450	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF4
+Cre02.g142426						
+Cre02.g083550	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase	Chloroplast	GO:0071949;GO:0016705;GO:0016117	"FAD binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;carotenoid biosynthetic process"	
+Cre02.g146950	GMM:29.4	protein.postranslational modification		GO:0016788;GO:0016787;GO:0006397	"hydrolase activity, acting on ester bonds;hydrolase activity;mRNA processing"	DBR1
+Cre02.g145902						
+Cre02.g112200	GMM:33.99	development.unspecified		GO:0055085;GO:0016020;GO:0006811;GO:0005515;GO:0005216	transmembrane transport;membrane;ion transport;protein binding;ion channel activity	
+Cre02.g073350	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase				
+Cre02.g093550	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG44
+Cre02.g084176				GO:0003677	DNA binding	
+Cre02.g073400	GMM:29.5	protein.degradation	Mitochondrion	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	
+Cre02.g114400	GMM:18.11	Co-factor and vitamine metabolism.lipoic acid	Chloroplast	GO:0051539;GO:0051536;GO:0016992;GO:0009107;GO:0003824	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;lipoate synthase activity;lipoate biosynthetic process;catalytic activity"	LAS2
+Cre02.g083050	GMM:31.1	cell.organisation				
+Cre02.g082750			Chloroplast	GO:0016020;GO:0015979;GO:0009523	membrane;photosynthesis;photosystem II	PSBX
+Cre02.g119550	GMM:1.1.99	PS.lightreaction.unspecified				NIP1
+Cre02.g097900	GMM:13.1.1.2.1	amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase	Chloroplast	GO:0030170;GO:0009058;GO:0008483;GO:0006520	pyridoxal phosphate binding;biosynthetic process;transaminase activity;cellular amino acid metabolic process	AST3
+Cre02.g076750	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Chloroplast			NUOAF1
+Cre02.g117500	GMM:2.2.1.4	major CHO metabolism.degradation.sucrose.hexokinase	Secretory pathway	GO:0046835;GO:0016773;GO:0005975;GO:0005536;GO:0005524;GO:0004396;GO:0001678	"carbohydrate phosphorylation;phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process;glucose binding;ATP binding;hexokinase activity;cellular glucose homeostasis"	HXK1
+Cre02.g078350			Chloroplast			
+Cre02.g098550	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g141366						
+Cre02.g142900						
+Cre02.g110263						CSB15
+Cre02.g144750	GMM:34.7	transport.phosphate		GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB4
+Cre02.g076600	GMM:29.2.2	protein.synthesis.ribosome biogenesis	Chloroplast	GO:0004045	aminoacyl-tRNA hydrolase activity	
+Cre02.g079700	GMM:23.1.1.2	nucleotide metabolism.synthesis.pyrimidine.aspartate transcarbamoylase	Chloroplast	GO:0016743;GO:0016597;GO:0006520	carboxyl- or carbamoyltransferase activity;amino acid binding;cellular amino acid metabolic process	PYR2
+Cre02.g117050	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g142366			Secretory pathway			
+Cre02.g099300						ANK21
+Cre02.g077401						
+Cre02.g111300	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			
+Cre02.g073950	GMM:17.1.1	hormone metabolism.abscisic acid.synthesis-degradation	Mitochondrion			
+Cre02.g074737			Chloroplast			
+Cre02.g102650	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g104550	GMM:27.2	RNA.transcription		GO:0016593;GO:0016570;GO:0006368	Cdc73/Paf1 complex;histone modification;transcription elongation from RNA polymerase II promoter	
+Cre02.g109600	GMM:3.4.5	minor CHO metabolism.myo-inositol.inositol phosphatase	Chloroplast	GO:0046854	phosphatidylinositol phosphorylation	
+Cre02.g142026						
+Cre02.g103250	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP5
+Cre02.g142947						CSU1
+Cre02.g105650	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			LPA2
+Cre02.g078400						
+Cre02.g098750	GMM:34.15	transport.potassium	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
+Cre02.g075900	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g095106	GMM:11.3.3;GMM:11.3	lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase;lipid metabolism.phospholipid synthesis		GO:0016780;GO:0016020;GO:0008654	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	
+Cre02.g084700						
+Cre02.g097334						
+Cre02.g101635			Mitochondrion			
+Cre02.g078476			Mitochondrion			
+Cre02.g075000						
+Cre02.g095116						
+Cre02.g109800			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	CPLD32
+Cre02.g115100			Chloroplast	GO:0055114	oxidation-reduction process	
+Cre02.g081600	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH8
+Cre02.g100800				GO:0005515	protein binding	
+Cre02.g087324						
+Cre02.g074150	GMM:31.9;GMM:17.4.2	cell.eyespot;hormone metabolism.cytokinin.signal transduction		GO:0035556;GO:0016849;GO:0016020;GO:0009190;GO:0007165;GO:0000160;GO:0000155	intracellular signal transduction;phosphorus-oxygen lyase activity;membrane;cyclic nucleotide biosynthetic process;signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	COP5
+Cre02.g147301						
+Cre02.g109250	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases	Chloroplast	GO:0051536;GO:0008173;GO:0006364;GO:0005737;GO:0003824	iron-sulfur cluster binding;RNA methyltransferase activity;rRNA processing;cytoplasm;catalytic activity	
+Cre02.g141126						
+Cre02.g073250				GO:0006351	"transcription, DNA-templated"	
+Cre02.g083850			Secretory pathway			
+Cre02.g127237			Mitochondrion			
+Cre02.g145231	GMM:27.3.99;GMM:11.1.20	RNA.regulation of transcription.unclassified;lipid metabolism.FA synthesis and FA elongation.MCD				
+Cre02.g095132						
+Cre02.g112800	GMM:31.1	cell.organisation				
+Cre02.g102500	GMM:31.2;GMM:28.2	cell.division;DNA.repair	Secretory pathway			RAD51C
+Cre02.g099601			Mitochondrion	GO:0003677	DNA binding	
+Cre02.g081450			Mitochondrion			CGL123
+Cre02.g118250	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005515	protein binding	SWB1
+Cre02.g143850				GO:0005515	protein binding	
+Cre02.g095069	GMM:21.5	redox.peroxiredoxin		GO:0055114;GO:0016491;GO:0016209	oxidation-reduction process;oxidoreductase activity;antioxidant activity	prx
+Cre02.g118500	GMM:31.4	cell.vesicle transport		GO:0030117;GO:0016192;GO:0006886;GO:0005515;GO:0005198	membrane coat;vesicle-mediated transport;intracellular protein transport;protein binding;structural molecule activity	COPB2
+Cre02.g142647						
+Cre02.g143487						
+Cre02.g142601			Secretory pathway			
+Cre02.g085701				GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre02.g078777	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC16
+Cre02.g089100	GMM:31.4	cell.vesicle transport				COPD1
+Cre02.g089000						
+Cre02.g088400	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0006508;GO:0005515;GO:0004252	proteolysis;protein binding;serine-type endopeptidase activity	DEG1A
+Cre02.g142186	GMM:31.2	cell.division	Chloroplast	GO:0003924	GTPase activity	FTSZ2
+Cre02.g090650						SEC20
+Cre02.g083950	GMM:29.2.1.1.1.1.83	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.PSRP3	Chloroplast	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	PSRP3
+Cre02.g144250			Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP769A1
+Cre02.g091567						
+Cre02.g085550			Mitochondrion			
+Cre02.g111000			Secretory pathway			RRA1
+Cre02.g142605			Chloroplast			
+Cre02.g102900	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g086550	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases	Chloroplast	GO:0051536;GO:0008173;GO:0006364;GO:0005737;GO:0003824	iron-sulfur cluster binding;RNA methyltransferase activity;rRNA processing;cytoplasm;catalytic activity	CGL122
+Cre02.g143600			Mitochondrion			FEE1
+Cre02.g119450			Chloroplast			
+Cre02.g100500	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG22
+Cre02.g097000	GMM:23.2.1.4;GMM:23.2	nucleotide metabolism.degradation.pyrimidine.dihydropyrimidinase;nucleotide metabolism.degradation	Secretory pathway	GO:0016787	hydrolase activity	DHP1
+Cre02.g101300	GMM:34.12	transport.metal		GO:0005515	protein binding	
+Cre02.g107150			Chloroplast			
+Cre02.g096150	GMM:21.6	redox.dismutases and catalases		GO:0055114;GO:0046872;GO:0006801;GO:0004784	oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity	MSD1
+Cre02.g120100	GMM:1.3.2	PS.calvin cycle.rubisco small subunit	Chloroplast			RBCS1
+Cre02.g119100				GO:0016787;GO:0008152	hydrolase activity;metabolic process	CER2
+Cre02.g076550			Mitochondrion			
+Cre02.g112266			Chloroplast			
+Cre02.g087050			Chloroplast			
+Cre02.g098950	GMM:31.4	cell.vesicle transport		GO:0005515	protein binding	SYP72
+Cre02.g074850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g103950						MIA1
+Cre02.g145500	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK24
+Cre02.g142046			Mitochondrion			
+Cre02.g096100			Chloroplast			
+Cre02.g119350			Mitochondrion			
+Cre02.g077100	GMM:21.2.2	redox.ascorbate and glutathione.glutathione	Chloroplast	GO:0042398;GO:0004357	cellular modified amino acid biosynthetic process;glutamate-cysteine ligase activity	GSH1
+Cre02.g096250				GO:0071949	FAD binding	FMO9
+Cre02.g083354	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
+Cre02.g103550	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0003743;GO:0003723	translational initiation;translation initiation factor activity;RNA binding	EIF1A
+Cre02.g091500						
+Cre02.g085257				GO:0016020	membrane	COP4
+Cre02.g117676						
+Cre02.g114850			Mitochondrion	GO:0016884;GO:0005515	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor;protein binding"	
+Cre02.g088300						CPK6
+Cre02.g073800						
+Cre02.g095096			Mitochondrion			
+Cre02.g078100	GMM:29.2.99;GMM:29.2.3	protein.synthesis.misc;protein.synthesis.initiation		GO:0005525;GO:0000049	GTP binding;tRNA binding	EIF5B1
+Cre02.g142066				GO:0005515	protein binding	
+Cre02.g091000			Chloroplast			
+Cre02.g080700	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Secretory pathway			BIP1
+Cre02.g111900			Secretory pathway			
+Cre02.g141586	GMM:27.3.54;GMM:27.3.42	RNA.regulation of transcription.histone acetyltransferases;RNA.regulation of transcription.bromodomain proteins		GO:0005515	protein binding	
+Cre02.g147800	GMM:34.99;GMM:29.3.4.99;GMM:28.99	transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified				SEC14
+Cre02.g092451						
+Cre02.g118400	GMM:31.1;GMM:27.2	cell.organisation;RNA.transcription				
+Cre02.g115200	GMM:29.2.1.2.2.527;GMM:29.2.1.2.2.0527	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L27A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L27A				RPL27A
+Cre02.g098400			Chloroplast			
+Cre02.g095048			Chloroplast			
+Cre02.g141006						
+Cre02.g105050						
+Cre02.g143367						
+Cre02.g075994			Chloroplast			
+Cre02.g102400	GMM:27.3.50;GMM:27.2	RNA.regulation of transcription.general transcription;RNA.transcription		GO:0008270;GO:0006351;GO:0003676	"zinc ion binding;transcription, DNA-templated;nucleic acid binding"	RPC1
+Cre02.g116600	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG23
+Cre02.g104900	GMM:3.5	minor CHO metabolism.others		GO:0005525	GTP binding	FAP204
+Cre02.g076100			Chloroplast			
+Cre02.g073150			Secretory pathway			
+Cre02.g079150						
+Cre02.g090900						MCP9
+Cre02.g084100			Chloroplast			
+Cre02.g110900						
+Cre02.g110700						
+Cre02.g097100			Mitochondrion			
+Cre02.g113652	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
+Cre02.g086250						
+Cre02.g102100			Mitochondrion			
+Cre02.g087900	GMM:30.6;GMM:30.2.8.2;GMM:30.2.20;GMM:30.2.17;GMM:30.2.1;GMM:29.4.1.57;GMM:29.4	signalling.MAP kinases;signalling.receptor kinases.leucine rich repeat VIII.type 2;signalling.receptor kinases.wheat LRK10 like;signalling.receptor kinases.DUF 26;signalling.receptor kinases.leucine rich repeat I;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g095107	GMM:34.2	transport.sugars		GO:0016021;GO:0008643;GO:0005351;GO:0000139	integral component of membrane;carbohydrate transport;sugar:proton symporter activity;Golgi membrane	
+Cre02.g142506						
+Cre02.g082100						
+Cre02.g142526						
+Cre02.g118550			Chloroplast			
+Cre02.g108750	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g107050	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Chloroplast	GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC5
+Cre02.g089800			Mitochondrion			
+Cre02.g095141				GO:0071949;GO:0055114;GO:0016491	FAD binding;oxidation-reduction process;oxidoreductase activity	
+Cre02.g081176				GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
+Cre02.g112850	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0071949	FAD binding	COQ6
+Cre02.g076950	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB4
+Cre02.g141500			Secretory pathway			
+Cre02.g113800						
+Cre02.g092950			Secretory pathway			
+Cre02.g117150	GMM:29.5.9	protein.degradation.AAA type	Mitochondrion			
+Cre02.g142200						
+Cre02.g095800				GO:0006352;GO:0005669	"DNA-templated transcription, initiation;transcription factor TFIID complex"	
+Cre02.g111550	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g090150	GMM:18.4.4;GMM:18.4.2	"Co-factor and vitamine metabolism.pantothenate.pantoate beta-alanine ligase (PANC, pantothenate synthetase);Co-factor and vitamine metabolism.pantothenate.3-methyl-2-oxobutanoate hydroxymethyltransferase (KPHMT,PANB)"		GO:0015940;GO:0004592	pantothenate biosynthetic process;pantoate-beta-alanine ligase activity	PAN3
+Cre02.g079003			Mitochondrion	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
+Cre02.g098150	GMM:3.7	minor CHO metabolism.sugar kinases		GO:0016773;GO:0005975	"phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process"	XYK1
+Cre02.g095154						
+Cre02.g141250	GMM:29.4;GMM:17.1.2	protein.postranslational modification;hormone metabolism.abscisic acid.signal transduction		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre02.g119650			Chloroplast			GNT3
+Cre02.g114300			Secretory pathway			
+Cre02.g101900			Mitochondrion	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	EXN6
+Cre02.g082450			Mitochondrion			
+Cre02.g116250			Chloroplast			
+Cre02.g118000	GMM:28.2	DNA.repair		GO:0006281;GO:0003904	DNA repair;deoxyribodipyrimidine photo-lyase activity	PHR2
+Cre02.g141606	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species		GO:0030286;GO:0007018;GO:0003777	dynein complex;microtubule-based movement;microtubule motor activity	DHC9
+Cre02.g115800						
+Cre02.g112433			Chloroplast			
+Cre02.g142847						
+Cre02.g081150						
+Cre02.g095250	GMM:29.2.2	protein.synthesis.ribosome biogenesis	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre02.g143861			Secretory pathway			
+Cre02.g080400			Chloroplast			
+Cre02.g076850	GMM:33.99	development.unspecified		GO:0005515	protein binding	
+Cre02.g117600	GMM:29.4	protein.postranslational modification	Secretory pathway			
+Cre02.g106000			Secretory pathway			
+Cre02.g098650			Chloroplast			
+Cre02.g074217			Mitochondrion			
+Cre02.g077925			Mitochondrion			
+Cre02.g082950						
+Cre02.g119850	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Mitochondrion	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE9
+Cre02.g143127						
+Cre02.g095094						
+Cre02.g107450	GMM:14.1;GMM:1.1.1.2	S-assimilation.APS;PS.lightreaction.photosystem II.PSII polypeptide subunits	Mitochondrion	GO:0004781	sulfate adenylyltransferase (ATP) activity	ATS2
+Cre02.g095123			Mitochondrion			
+Cre02.g146000						
+Cre02.g116200			Chloroplast			
+Cre02.g143392			Mitochondrion			
+Cre02.g098250			Chloroplast			
+Cre02.g141600	GMM:10.6.2	cell wall.degradation.mannan-xylose-arabinose-fucose	Secretory pathway			EBM3
+Cre02.g114001			Mitochondrion			
+Cre02.g095129	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g080100	GMM:27.1.3.5;GMM:27.1	RNA.processing.3' end processing.CPSF73b;RNA.processing				
+Cre02.g108500			Mitochondrion			
+Cre02.g142126						FAP115
+Cre02.g114000						
+Cre02.g076650			Chloroplast			
+Cre02.g086200			Secretory pathway			
+Cre02.g099000	GMM:31.4	cell.vesicle transport		GO:0005515	protein binding	SYP71
+Cre02.g078507			Chloroplast	GO:0010207	photosystem II assembly	
+Cre02.g113550			Mitochondrion			
+Cre02.g077650				GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	
+Cre02.g143500	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Mitochondrion	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE28
+Cre02.g141946	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g147750			Chloroplast			FAP209
+Cre02.g113850	GMM:19.5	tetrapyrrole synthesis.porphobilinogen deaminase	Chloroplast	GO:0033014;GO:0004418	tetrapyrrole biosynthetic process;hydroxymethylbilane synthase activity	PBGD2
+Cre02.g141950	GMM:34.99;GMM:29.3.4.99;GMM:28.99	transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified				MOT19
+Cre02.g147450			Secretory pathway	GO:0016020	membrane	
+Cre02.g101400	GMM:31.4	cell.vesicle transport		GO:0030132;GO:0030130;GO:0016192;GO:0006886;GO:0005198	clathrin coat of coated pit;clathrin coat of trans-Golgi network vesicle;vesicle-mediated transport;intracellular protein transport;structural molecule activity	CHC1
+Cre02.g141566			Secretory pathway			
+Cre02.g144009			Secretory pathway			
+Cre02.g108650	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g107750			Chloroplast			PCD1
+Cre02.g109366	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	
+Cre02.g109900						
+Cre02.g104050						
+Cre02.g095086				GO:0016020	membrane	
+Cre02.g143801			Mitochondrion			
+Cre02.g100566						
+Cre02.g143000	GMM:11.3.1;GMM:11.3	lipid metabolism.phospholipid synthesis.1-acylglycerol-3-phosphate O-acyltransferase;lipid metabolism.phospholipid synthesis	Chloroplast	GO:0016746;GO:0008152;GO:0004366	"transferase activity, transferring acyl groups;metabolic process;glycerol-3-phosphate O-acyltransferase activity"	PLSB1
+Cre02.g086150			Mitochondrion			
+Cre02.g144000				GO:0016798	"hydrolase activity, acting on glycosyl bonds"	
+Cre02.g143447			Secretory pathway			
+Cre02.g115500			Chloroplast			
+Cre02.g106300			Secretory pathway			
+Cre02.g104500	GMM:30.99;GMM:29.9;GMM:20.2.1	signalling.unspecified;protein.co-chaperones;stress.abiotic.heat	Chloroplast			CDJ4
+Cre02.g100000	GMM:29.1;GMM:28.1	protein.aa activation;DNA.synthesis/chromatin structure		GO:0003676	nucleic acid binding	RFA2
+Cre02.g081350			Mitochondrion	GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre02.g144050	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG36
+Cre02.g082150			Mitochondrion			
+Cre02.g119201						
+Cre02.g095035						
+Cre02.g084400	GMM:26.7;GMM:13.2.2.2	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH9
+Cre02.g108100	GMM:29.5	protein.degradation				
+Cre02.g090200						
+Cre02.g095046			Chloroplast			
+Cre02.g105287				GO:0003676	nucleic acid binding	
+Cre02.g092150	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI		GO:0005515	protein binding	CSL
+Cre02.g089600						XPD2
+Cre02.g085450	GMM:19.8	tetrapyrrole synthesis.coproporphyrinogen III oxidase	Chloroplast	GO:0055114;GO:0006779;GO:0004109	oxidation-reduction process;porphyrin-containing compound biosynthetic process;coproporphyrinogen oxidase activity	CPX1
+Cre02.g080600	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Secretory pathway			BIP2
+Cre02.g147050			Mitochondrion			
+Cre02.g103000			Secretory pathway			
+Cre02.g114250	GMM:18.5.2.5	Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.naphthoate synthase	Mitochondrion			MEN2
+Cre02.g077300	GMM:29.2.2.3.3;GMM:27.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases;RNA.processing		GO:0008168;GO:0008033;GO:0006364;GO:0003723	methyltransferase activity;tRNA processing;rRNA processing;RNA binding	NOP1
+Cre02.g113150			Chloroplast			
+Cre02.g101500	GMM:34.14	transport.unspecified cations				MRS1
+Cre02.g142150			Secretory pathway			
+Cre02.g092550	GMM:35.1.27;GMM:29.6	not assigned.no ontology.tetratricopeptide repeat (TPR);protein.folding				TPR1
+Cre02.g104876						
+Cre02.g081900			Secretory pathway			
+Cre02.g094801			Chloroplast			
+Cre02.g084000			Chloroplast			
+Cre02.g101950	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre02.g141186	GMM:20.2.1	stress.abiotic.heat				
+Cre02.g116000						
+Cre02.g111800			Chloroplast			
+Cre02.g106550				GO:0006397;GO:0005737;GO:0005634;GO:0003723	mRNA processing;cytoplasm;nucleus;RNA binding	
+Cre02.g092050	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP6
+Cre02.g087950	GMM:29.1.10	protein.aa activation.methionine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0000166;GO:0000049	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding;tRNA binding	TSM1
+Cre02.g095068			Chloroplast			
+Cre02.g142306				GO:0005515	protein binding	
+Cre02.g120301						SELH
+Cre02.g116650						
+Cre02.g098700	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre02.g095151	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre02.g075700	GMM:29.2.1.99.2.19;GMM:29.2.1.2.2.19	protein.synthesis.ribosomal protein.unknown.large subunit.L19;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L19		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL19
+Cre02.g142800	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXz
+Cre02.g085900	GMM:3.4.5	minor CHO metabolism.myo-inositol.inositol phosphatase	Chloroplast.Stroma	GO:0046854	phosphatidylinositol phosphorylation	IPP1
+Cre02.g088651						
+Cre02.g095137	GMM:5.8	fermentation.pyruvate:ferredoxin 2-oxidoreductase (CoA-acetylating)	Chloroplast	GO:0055114;GO:0030976;GO:0016903;GO:0016491;GO:0003824	"oxidation-reduction process;thiamine pyrophosphate binding;oxidoreductase activity, acting on the aldehyde or oxo group of donors;oxidoreductase activity;catalytic activity"	PFR1
+Cre02.g096601				GO:0005515	protein binding	
+Cre02.g104600						
+Cre02.g095093						
+Cre02.g120001			Secretory pathway			
+Cre02.g145133						
+Cre02.g142967						
+Cre02.g141726			Chloroplast			
+Cre02.g095072						FAP144
+Cre02.g100850	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
+Cre02.g119950			Secretory pathway			
+Cre02.g078150	GMM:33.99	development.unspecified		GO:0005515	protein binding	
+Cre02.g079800			Mitochondrion			ASA6
+Cre02.g081700						PHC66
+Cre02.g142827			Chloroplast			
+Cre02.g095152						
+Cre02.g105300						FAP231
+Cre02.g074400			Mitochondrion			
+Cre02.g118050	GMM:31.3	cell.cycle	Chloroplast			CYCU1
+Cre02.g094500	GMM:29.2.1.99.1.21	protein.synthesis.ribosomal protein.unknown.small subunit.S21		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	
+Cre02.g102200						
+Cre02.g099150	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0006886	intracellular protein transport	SNAPA1
+Cre02.g117700			Mitochondrion			
+Cre02.g095037			Mitochondrion			
+Cre02.g115650	GMM:4.3.10;GMM:4.1.10;GMM:1.3.6	glycolysis.unclear/dually targeted.aldolase;glycolysis.cytosolic branch.aldolase;PS.calvin cycle.aldolase	Chloroplast	GO:0006096;GO:0004332	glycolytic process;fructose-bisphosphate aldolase activity	FBA4
+Cre02.g074474						
+Cre02.g104201	GMM:30.2.25;GMM:29.4	signalling.receptor kinases.wall associated kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g141000	GMM:32;GMM:27.1.20	"micro RNA, natural antisense etc;RNA.processing.degradation dicer"		GO:0016891;GO:0006396;GO:0005524;GO:0004525;GO:0003723;GO:0003676	"endoribonuclease activity, producing 5'-phosphomonoesters;RNA processing;ATP binding;ribonuclease III activity;RNA binding;nucleic acid binding"	DCL1
+Cre02.g095095			Secretory pathway			PHC12
+Cre02.g091400	GMM:29.6.2.5;GMM:29.5.5;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease;stress.abiotic.heat	Mitochondrion	GO:0005524	ATP binding	CLPB2
+Cre02.g099350			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR8
+Cre02.g074100			Chloroplast			
+Cre02.g079650			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre02.g090350			Secretory pathway			
+Cre02.g097250	GMM:29.3.1	protein.targeting.nucleus		GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	
+Cre02.g097600			Secretory pathway			
+Cre02.g095118			Chloroplast			
+Cre02.g074626						CSB11
+Cre02.g095200	GMM:34.16;GMM:29.2.2.1	transport.ABC transporters and multidrug resistance systems;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre02.g145050	GMM:16.1.1.4	secondary metabolism.isoprenoids.non-mevalonate pathway.CMK	Chloroplast	GO:0050515;GO:0016114;GO:0005524	4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity;terpenoid biosynthetic process;ATP binding	CMK1
+Cre02.g108400	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis	Secretory pathway	GO:0016021;GO:0008250;GO:0004579	integral component of membrane;oligosaccharyltransferase complex;dolichyl-diphosphooligosaccharide-protein glycotransferase activity	DAD1
+Cre02.g099650				GO:0016021	integral component of membrane	
+Cre02.g084850						
+Cre02.g141626				GO:0008168;GO:0006479	methyltransferase activity;protein methylation	
+Cre02.g096400						
+Cre02.g095121	GMM:29.1.30;GMM:27.4;GMM:23.5.2	protein.aa activation.pseudouridylate synthase;RNA.RNA binding;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase	Chloroplast	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS9
+Cre02.g080250			Chloroplast	GO:0016020	membrane	YGG1
+Cre02.g095139			Secretory pathway			
+Cre02.g114650			Mitochondrion			
+Cre02.g087750	GMM:30.2.20;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.wheat LRK10 like;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g095061						
+Cre02.g079050			Mitochondrion	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	DGTT5
+Cre02.g109550	GMM:13.1.3.6.1.10;GMM:13.1.3.6.1.1	amino acid metabolism.synthesis.aspartate family.misc.homoserine.bifunctional aspartate kinase/homoserine dehydrogenase;amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate kinase		GO:0055114;GO:0050661;GO:0016491;GO:0006520	oxidation-reduction process;NADP binding;oxidoreductase activity;cellular amino acid metabolic process	HSD1
+Cre02.g107256			Mitochondrion			
+Cre02.g075200			Chloroplast			
+Cre02.g111700	GMM:18.8	Co-factor and vitamine metabolism.ubiquinone	Chloroplast	GO:0005509	calcium ion binding	EFH1
+Cre02.g112500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g095900			Chloroplast	GO:0005515	protein binding	ROC114
+Cre02.g095104			Chloroplast			
+Cre02.g083350			Secretory pathway	GO:0003677	DNA binding	
+Cre02.g078939	GMM:30.11;GMM:28.2	signalling.light;DNA.repair	Chloroplast			
+Cre02.g081800	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre02.g142050			Mitochondrion			
+Cre02.g144300	GMM:34.2	transport.sugars				
+Cre02.g077976						
+Cre02.g145452						
+Cre02.g143800	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0005524	ATP binding	
+Cre02.g087000			Secretory pathway			
+Cre02.g087666			Chloroplast	GO:0004867	serine-type endopeptidase inhibitor activity	
+Cre02.g112750	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Chloroplast	GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre02.g075800			Mitochondrion			
+Cre02.g077150			Chloroplast			CPLD14
+Cre02.g147350						
+Cre02.g115000			Chloroplast			
+Cre02.g088950			Mitochondrion			
+Cre02.g145600						
+Cre02.g073700	GMM:19.7	tetrapyrrole synthesis.uroporphyrinogen decarboxylase	Chloroplast	GO:0006779;GO:0004853	porphyrin-containing compound biosynthetic process;uroporphyrinogen decarboxylase activity	UROD3
+Cre02.g085050	GMM:33.99;GMM:30.11	development.unspecified;signalling.light		GO:0005515	protein binding	
+Cre02.g143352			Chloroplast			
+Cre02.g109683	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)		GO:0046983	protein dimerization activity	
+Cre02.g089400			Secretory pathway			HRP2
+Cre02.g098000	GMM:26.3;GMM:10.6.2	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	EBM2
+Cre02.g077850	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP212
+Cre02.g141350	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				DRC10
+Cre02.g146750			Mitochondrion			
+Cre02.g109333			Mitochondrion			
+Cre02.g095125			Secretory pathway			
+Cre02.g144605			Chloroplast			
+Cre02.g110800	GMM:34.4	transport.nitrate	Chloroplast	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NRT2.6
+Cre02.g141206						
+Cre02.g088450			Secretory pathway	GO:0035091	phosphatidylinositol binding	CPLD29
+Cre02.g145700	GMM:34.3	transport.amino acids	Mitochondrion			AOT1
+Cre02.g141800	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g080500	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway	GO:0016758;GO:0008152	"transferase activity, transferring hexosyl groups;metabolic process"	
+Cre02.g095044						
+Cre02.g112650						
+Cre02.g111108						
+Cre02.g142850	GMM:27.1	RNA.processing				SMP11
+Cre02.g107950			Secretory pathway			
+Cre02.g112366						
+Cre02.g107550	GMM:33.99	development.unspecified				
+Cre02.g095127	GMM:3.5	minor CHO metabolism.others	Chloroplast			
+Cre02.g089311			Secretory pathway	GO:0003993	acid phosphatase activity	
+Cre02.g098500			Mitochondrion			
+Cre02.g084800	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006259;GO:0005694;GO:0005524;GO:0003824;GO:0003677;GO:0000737	"DNA metabolic process;chromosome;ATP binding;catalytic activity;DNA binding;DNA catabolic process, endonucleolytic"	SPO11A
+Cre02.g143087						
+Cre02.g094050				GO:0003824	catalytic activity	PIGO
+Cre02.g142747						
+Cre02.g118900						MYG1
+Cre02.g082700	GMM:9.7;GMM:29.1	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase;protein.aa activation	Mitochondrion	GO:0055114;GO:0016627;GO:0016021;GO:0006784	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;integral component of membrane;heme a biosynthetic process"	COX15
+Cre02.g109100	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE23
+Cre02.g074000	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				POC18
+Cre02.g095058			Secretory pathway			
+Cre02.g116350			Secretory pathway			
+Cre02.g100200	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion			NUOP3
+Cre02.g092900	GMM:23.1.2.31	nucleotide metabolism.synthesis.purine.GMP synthetase		GO:0016787;GO:0006541;GO:0006177;GO:0006164;GO:0005524;GO:0003922	hydrolase activity;glutamine metabolic process;GMP biosynthetic process;purine nucleotide biosynthetic process;ATP binding;GMP synthase (glutamine-hydrolyzing) activity	GUA1
+Cre02.g096700	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre02.g095148			Chloroplast			
+Cre02.g100950			Mitochondrion			
+Cre02.g085750	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway			
+Cre02.g106900						
+Cre02.g143050	GMM:29.2.1.2.2.99	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.unknown				RPP2
+Cre02.g105026			Mitochondrion			
+Cre02.g089650			Secretory pathway			
+Cre02.g091850	GMM:13.2.6.3;GMM:11.9.4.3	amino acid metabolism.degradation.aromatic aa.tryptophan;lipid metabolism.lipid degradation.beta-oxidation.enoyl CoA hydratase	Mitochondrion	GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre02.g141046						
+Cre02.g077800	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP310
+Cre02.g095113	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation				TFC-E
+Cre02.g095059						
+Cre02.g099900			Chloroplast			
+Cre02.g090700	GMM:30.6;GMM:3.6;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK8
+Cre02.g147150			Chloroplast			
+Cre02.g077451			Mitochondrion			
+Cre02.g141550	GMM:29.5	protein.degradation		GO:0006508;GO:0004176	proteolysis;ATP-dependent peptidase activity	LON
+Cre02.g119526						
+Cre02.g147850	GMM:29.6.2.5	protein.folding.chaperones and co-chaperones.HSP100s	Mitochondrion	GO:0070011;GO:0016887;GO:0009376;GO:0005737;GO:0005524	"peptidase activity, acting on L-amino acid peptides;ATPase activity;HslUV protease complex;cytoplasm;ATP binding"	HSLU2
+Cre02.g143400	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE27
+Cre02.g144006			Mitochondrion			
+Cre02.g120200			Chloroplast			
+Cre02.g108550	GMM:34.3	transport.amino acids		GO:0016020;GO:0015171;GO:0003333	membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport	AOC3
+Cre02.g147550						
+Cre02.g142266	GMM:26.1;GMM:16.1.4.7	misc.misc2;secondary metabolism.isoprenoids.carotenoids.carotenoid epsilon ring hydroxylase	Chloroplast	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
+Cre02.g086076	GMM:29.1.30	protein.aa activation.pseudouridylate synthase	Chloroplast			PUS4
+Cre02.g101100			Chloroplast			
+Cre02.g146200	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre02.g100900						
+Cre02.g080800			Mitochondrion			
+Cre02.g109150			Secretory pathway			
+Cre02.g141906						
+Cre02.g108200			Chloroplast			CGL80
+Cre02.g106350						CGL68
+Cre02.g109200						
+Cre02.g075400						
+Cre02.g117300	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion			MRPL45
+Cre02.g144002			Chloroplast	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS20
+Cre02.g142106						
+Cre02.g143407						
+Cre02.g093800	GMM:21.1	redox.thioredoxin				NRX3
+Cre02.g090750						
+Cre02.g093350						
+Cre02.g106250	GMM:27.4	RNA.RNA binding				LAL2
+Cre02.g078885	GMM:34	transport	Mitochondrion	GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	
+Cre02.g084450	GMM:26.7;GMM:13.2.2.2	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH10
+Cre02.g095075						
+Cre02.g095082	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006334;GO:0005634	nucleosome assembly;nucleus	
+Cre02.g098050			Secretory pathway			
+Cre02.g142346						
+Cre02.g088151			Secretory pathway			
+Cre02.g142907			Chloroplast			
+Cre02.g113300			Chloroplast			OPR6
+Cre02.g143587						
+Cre02.g111400			Secretory pathway			
+Cre02.g141100	GMM:33.99;GMM:1.1.99	development.unspecified;PS.lightreaction.unspecified	Chloroplast			CPL23
+Cre02.g081050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP24
+Cre02.g104400			Secretory pathway	GO:0006355	"regulation of transcription, DNA-templated"	
+Cre02.g114150						
+Cre02.g103350	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"		GO:0016884	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor"	
+Cre02.g082050	GMM:31.3	cell.cycle				
+Cre02.g099055			Secretory pathway			
+Cre02.g146550						
+Cre02.g141786	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE25
+Cre02.g110100	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0016021;GO:0006952	integral component of membrane;defense response	MLO1
+Cre02.g109000			Secretory pathway	GO:0042546;GO:0016020;GO:0008107	cell wall biogenesis;membrane;galactoside 2-alpha-L-fucosyltransferase activity	
+Cre02.g118750						
+Cre02.g095088			Chloroplast			
+Cre02.g143287						
+Cre02.g089950	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B				IFT20
+Cre02.g076700			Chloroplast			
+Cre02.g091700	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				RIB72
+Cre02.g083700			Chloroplast			LSP1
+Cre02.g082300						SUR6
+Cre02.g115400	GMM:26.16	misc.myrosinases-lectin-jacalin	Secretory pathway			
+Cre02.g083273			Secretory pathway			
+Cre02.g091226			Secretory pathway			
+Cre02.g073826						
+Cre02.g113100				GO:0006850;GO:0005743	mitochondrial pyruvate transport;mitochondrial inner membrane	
+Cre02.g103770			Chloroplast			
+Cre02.g094900	GMM:29.7	protein.glycosylation				
+Cre02.g093084			Chloroplast			
+Cre02.g102551			Mitochondrion			CSV1
+Cre02.g110550						
+Cre02.g114575						
+Cre02.g097221			Secretory pathway			
+Cre02.g113752						
+Cre02.g075050	GMM:34.7	transport.phosphate		GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	PTA1
+Cre02.g112300	GMM:29.5.3	protein.degradation.cysteine protease		GO:0006508;GO:0005622;GO:0004198	proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity	MOT15
+Cre02.g144400	GMM:29.2.1.1.4.1;GMM:29.2.1.1.3.1.12;GMM:29.2.1.1.2.2.2;GMM:29.2.1.1.1.1.12	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.30S subunit;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.30S subunit.S12;protein.synthesis.ribosomal protein.prokaryotic.mitochondrion.50S subunit.L2;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S12	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS12
+Cre02.g095074	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole				VPS11
+Cre02.g101850	GMM:26.24	misc.GCN5-related N-acetyltransferase		GO:0008080	N-acetyltransferase activity	
+Cre02.g094350			Mitochondrion			
+Cre02.g087600	GMM:28.99	DNA.unspecified		GO:0005524	ATP binding	
+Cre02.g115508				GO:0005515	protein binding	
+Cre02.g088850	GMM:18.3.2;GMM:18	Co-factor and vitamine metabolism.riboflavin.riboflavin synthase;Co-factor and vitamine metabolism	Chloroplast	GO:0009349;GO:0009231	riboflavin synthase complex;riboflavin biosynthetic process	RFS2
+Cre02.g110250			Chloroplast			PCD2
+Cre02.g106650	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g104725						
+Cre02.g087300	GMM:25	C1-metabolism		GO:0055114;GO:0004616	oxidation-reduction process;phosphogluconate dehydrogenase (decarboxylating) activity	
+Cre02.g086700	GMM:31.4	cell.vesicle transport		GO:0017119;GO:0006886	Golgi transport complex;intracellular protein transport	COG7
+Cre02.g141486						
+Cre02.g078950	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP17
+Cre02.g084300	GMM:18.8;GMM:18.5.2.8	"Co-factor and vitamine metabolism.ubiquinone;Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.2-phytyl-1,4-naphthoquinone methyltransferase"	Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	COQ5
+Cre02.g076433						
+Cre02.g145628						
+Cre02.g116450	GMM:7.2.3	OPP.non-reductive PP.ribulose-phosphate 3-epimerase		GO:0016857;GO:0005975	"racemase and epimerase activity, acting on carbohydrates and derivatives;carbohydrate metabolic process"	RPE2
+Cre02.g080900	GMM:21.5	redox.peroxiredoxin	Mitochondrion	GO:0016491	oxidoreductase activity	PRX4
+Cre02.g107300	GMM:13.1.3.5.1;GMM:13.1.3.5	amino acid metabolism.synthesis.aspartate family.lysine.dihydrodipicolinate synthase;amino acid metabolism.synthesis.aspartate family.lysine	Chloroplast	GO:0016829;GO:0008152	lyase activity;metabolic process	DPS1
+Cre02.g086850			Chloroplast			
+Cre02.g095450	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs		GO:0006457	protein folding	FKB16-6
+Cre02.g106450	GMM:11.8.10	"lipid metabolism.exotics (steroids, squalene etc).phosphatidylcholine-sterol O-acyltransferase"	Secretory pathway	GO:0005524	ATP binding	
+Cre02.g110000			Secretory pathway			
+Cre02.g105800			Secretory pathway			
+Cre02.g075500			Mitochondrion			
+Cre02.g076250	GMM:29.2.4	protein.synthesis.elongation	Chloroplast	GO:0005525	GTP binding	EFG1
+Cre02.g103050			Chloroplast			
+Cre02.g084900						
+Cre02.g095111	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole	Secretory pathway			VSR1
+Cre02.g095053				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g112050						
+Cre02.g108900						CAM6
+Cre02.g145451						
+Cre02.g091950	GMM:30.1.1;GMM:23.1.2	signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG45
+Cre02.g141406	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	
+Cre02.g111200						
+Cre02.g105950				GO:0006355;GO:0003713	"regulation of transcription, DNA-templated;transcription coactivator activity"	FAP174
+Cre02.g105750						
+Cre02.g119000	GMM:31.1	cell.organisation		GO:0005777	peroxisome	PEX19
+Cre02.g073550	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0006334;GO:0005634	nucleosome assembly;nucleus	
+Cre02.g104300			Mitochondrion			
+Cre02.g082500	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0042651;GO:0015979;GO:0009522;GO:0005516	thylakoid membrane;photosynthesis;photosystem I;calmodulin binding	PSAN
+Cre02.g144650	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB12
+Cre02.g141106			Mitochondrion			
+Cre02.g147600			Chloroplast			
+Cre02.g086456						
+Cre02.g142700						
+Cre02.g095102	GMM:31.4;GMM:17.2.2	cell.vesicle transport;hormone metabolism.auxin.signal transduction		GO:0035091	phosphatidylinositol binding	VPS5C
+Cre02.g095042						
+Cre02.g097500	GMM:30.6;GMM:30.2.8.2;GMM:29.4	signalling.MAP kinases;signalling.receptor kinases.leucine rich repeat VIII.type 2;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g090500	GMM:29.2.3;GMM:29.2.2.3.5;GMM:28.1	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL10
+Cre02.g084600						
+Cre02.g095080			Secretory pathway			
+Cre02.g087551	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0042147	"retrograde transport, endosome to Golgi"	
+Cre02.g113450						
+Cre02.g096455						
+Cre02.g115583						
+Cre02.g141686			Mitochondrion			
+Cre02.g095133			Chloroplast			
+Cre02.g103426						
+Cre02.g141005						
+Cre02.g082600			Chloroplast			
+Cre02.g144900	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0016787	hydrolase activity	MPA4
+Cre02.g109750			Secretory pathway			
+Cre02.g087250			Secretory pathway			
+Cre02.g095032						
+Cre02.g143047						
+Cre02.g077550			Secretory pathway			PHC62
+Cre02.g080350	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0036459;GO:0016579;GO:0008270	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination;zinc ion binding	
+Cre02.g083100			Secretory pathway			PRL1
+Cre02.g142707						
+Cre02.g118350						MFT14
+Cre02.g105200			Secretory pathway	GO:0006629	lipid metabolic process	
+Cre02.g075100	GMM:35.1.27	not assigned.no ontology.tetratricopeptide repeat (TPR)	Mitochondrion			TPR3
+Cre02.g142667			Mitochondrion			
+Cre02.g117400				GO:0055114	oxidation-reduction process	
+Cre02.g093950	GMM:23.4.3	nucleotide metabolism.phosphotransfer and pyrophosphatases.uridylate kinase	Chloroplast	GO:0009041;GO:0006221	uridylate kinase activity;pyrimidine nucleotide biosynthetic process	
+Cre02.g095039			Chloroplast			
+Cre02.g090451			Chloroplast			
+Cre02.g117000	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG21
+Cre02.g108300			Chloroplast			
+Cre02.g086750	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899	"transcription, DNA-templated;DNA-directed RNA polymerase activity"	
+Cre02.g100350						
+Cre02.g095136			Chloroplast			
+Cre02.g094600			Chloroplast			
+Cre02.g076400	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole				VPS25
+Cre02.g079351			Secretory pathway			
+Cre02.g079850	GMM:28.2	DNA.repair		GO:0006281;GO:0003684	DNA repair;damaged DNA binding	POLK1
+Cre02.g096750			Secretory pathway			
+Cre02.g104750			Secretory pathway			
+Cre02.g144450						FAP1
+Cre02.g101200	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified				
+Cre02.g142446						
+Cre02.g119700	GMM:31.2;GMM:29.5.11.20	cell.division;protein.degradation.ubiquitin.proteasom	Secretory pathway	GO:0009341;GO:0005975;GO:0004565	beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity	
+Cre02.g080050				GO:0008270;GO:0003677	zinc ion binding;DNA binding	
+Cre02.g088200	GMM:21.1.1;GMM:21.1;GMM:1.1.1.3	redox.thioredoxin.PDIL;redox.thioredoxin;PS.lightreaction.photosystem II.biogenesis	Secretory pathway	GO:0045454	cell redox homeostasis	RB60
+Cre02.g143350	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Chloroplast	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE6
+Cre02.g091150	GMM:29.3.4.2	protein.targeting.secretory pathway.golgi		GO:0030127;GO:0008270;GO:0006888;GO:0006886	COPII vesicle coat;zinc ion binding;ER to Golgi vesicle-mediated transport;intracellular protein transport	SEC24A
+Cre02.g110650			Secretory pathway			
+Cre02.g095043						
+Cre02.g115850						
+Cre02.g074758	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG8
+Cre02.g141386	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0005524;GO:0004386	ATP binding;helicase activity	
+Cre02.g112150			Secretory pathway			
+Cre02.g081300			Mitochondrion	GO:0016787	hydrolase activity	
+Cre02.g114450			Chloroplast			
+Cre02.g143547						
+Cre02.g094650	GMM:3.5	minor CHO metabolism.others	Mitochondrion	GO:0005525	GTP binding	
+Cre02.g085650	GMM:28.99	DNA.unspecified		GO:0016888	"endodeoxyribonuclease activity, producing 5'-phosphomonoesters"	
+Cre02.g114800						
+Cre02.g085400						CSC1
+Cre02.g107000	GMM:31.3;GMM:31.2;GMM:29.4	cell.cycle;cell.division;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g111250						
+Cre02.g080750						
+Cre02.g088250	GMM:11.1.2	lipid metabolism.FA synthesis and FA elongation.acetyl CoA transacylase				MCT2
+Cre02.g107400						
+Cre02.g102350	GMM:29.5.2	protein.degradation.autophagy				ATG3
+Cre02.g112333	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g092400	GMM:29.3.1	protein.targeting.nucleus		GO:0006810;GO:0005622	transport;intracellular	
+Cre02.g114700	GMM:31.6.1.5.2;GMM:31.3.1;GMM:29.6.3.2	cell.motility.eukaryotes.radial spoke.stalk;cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	RSP12
+Cre02.g100533			Chloroplast			
+Cre02.g105100			Chloroplast			
+Cre02.g141351						
+Cre02.g145550						
+Cre02.g080950			Chloroplast			
+Cre02.g103800			Secretory pathway			
+Cre02.g106800			Chloroplast			
+Cre02.g145850	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP112
+Cre02.g095146						
+Cre02.g098100	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion			
+Cre02.g113376						
+Cre02.g144550	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	
+Cre02.g144005			Secretory pathway			
+Cre02.g086000	GMM:14.1	S-assimilation.APS		GO:0003824	catalytic activity	ARS8
+Cre02.g107650			Chloroplast			
+Cre02.g093450	GMM:4.3.10;GMM:4.1.10;GMM:1.3.6	glycolysis.unclear/dually targeted.aldolase;glycolysis.cytosolic branch.aldolase;PS.calvin cycle.aldolase		GO:0006096;GO:0004332	glycolytic process;fructose-bisphosphate aldolase activity	FBA2
+Cre02.g093500			Secretory pathway	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	SSD1
+Cre02.g096850			Secretory pathway			
+Cre02.g088551			Secretory pathway			
+Cre02.g082800			Secretory pathway	GO:0003677	DNA binding	
+Cre02.g119500						
+Cre02.g083000						
+Cre02.g116400						DII7
+Cre02.g091600						
+Cre02.g147302	GMM:13.1.1.2.1	amino acid metabolism.synthesis.central amino acid metabolism.aspartate.aspartate aminotransferase				
+Cre02.g081500	GMM:34.11	transport.NDP-sugars at the ER		GO:0016021;GO:0006810	integral component of membrane;transport	
+Cre02.g073300			Mitochondrion			
+Cre02.g098600	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g076050				GO:0005515	protein binding	
+Cre02.g100300	GMM:30.4;GMM:3.4;GMM:29.5.11	signalling.phosphinositides;minor CHO metabolism.myo-inositol;protein.degradation.ubiquitin		GO:0016773	"phosphotransferase activity, alcohol group as acceptor"	
+Cre02.g111526						
+Cre02.g140941			Chloroplast			
+Cre02.g111500	GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g086050	GMM:29.1.30	protein.aa activation.pseudouridylate synthase		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS4
+Cre02.g117200	GMM:31.2;GMM:29.6;GMM:29.5.11.20	cell.division;protein.folding;protein.degradation.ubiquitin.proteasom	Chloroplast	GO:0009341;GO:0005975;GO:0004565	beta-galactosidase complex;carbohydrate metabolic process;beta-galactosidase activity	
+Cre02.g095294						
+Cre02.g099550	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g145000	GMM:27.1	RNA.processing	Mitochondrion	GO:0006364	rRNA processing	
+Cre02.g074900	GMM:35.1.19	not assigned.no ontology.C2 domain-containing protein	Mitochondrion	GO:0005515	protein binding	
+Cre02.g141666			Secretory pathway			
+Cre02.g097150						AGG5
+Cre02.g117850	GMM:30;GMM:29.5.11.5;GMM:29.5.11;GMM:11	signalling;protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin;lipid metabolism		GO:0004843	thiol-dependent ubiquitin-specific protease activity	
+Cre02.g074250			Chloroplast			
+Cre02.g094100	GMM:35.1.26;GMM:21.1	not assigned.no ontology.DC1 domain containing protein;redox.thioredoxin				NRX1
+Cre02.g076800	GMM:17.3.1.2.4	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.FACKEL	Secretory pathway	GO:0016020	membrane	ERG4
+Cre02.g088800	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003676	nucleic acid binding	
+Cre02.g095115	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Chloroplast			
+Cre02.g115300						AOT6
+Cre02.g107900						
+Cre02.g147000			Chloroplast			
+Cre02.g112900	GMM:34.2;GMM:34.11	transport.sugars;transport.NDP-sugars at the ER		GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre02.g119600	GMM:11.3.8	lipid metabolism.phospholipid synthesis.phosphatidylserine decarboxylase		GO:0008654;GO:0004609	phospholipid biosynthetic process;phosphatidylserine decarboxylase activity	PSD1
+Cre02.g108450	GMM:17.5.3	hormone metabolism.ethylene.induced-regulated-responsive-activated		GO:0043565	sequence-specific DNA binding	FAP280
+Cre02.g095049			Chloroplast			
+Cre02.g116500	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	CPY3
+Cre02.g089850						
+Cre02.g089750			Chloroplast			
+Cre02.g141526			Mitochondrion			
+Cre02.g106850	GMM:35.1.27	not assigned.no ontology.tetratricopeptide repeat (TPR)				TPR6
+Cre02.g094300	GMM:9.3	mitochondrial electron transport / ATP synthesis.electron transfer flavoprotein	Mitochondrion	GO:0055114;GO:0004174	oxidation-reduction process;electron-transferring-flavoprotein dehydrogenase activity	FUO1
+Cre02.g074600						CGL60
+Cre02.g099950			Secretory pathway			
+Cre02.g074350			Secretory pathway			
+Cre02.g113400	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				
+Cre02.g086400			Chloroplast			
+Cre02.g095051						
+Cre02.g103150			Secretory pathway			
+Cre02.g078316						
+Cre02.g143347			Mitochondrion			
+Cre02.g082400				GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
+Cre02.g077350	GMM:13.1.7.9;GMM:13.1.7	amino acid metabolism.synthesis.histidine.histidinol-phosphate aminotransferase;amino acid metabolism.synthesis.histidine		GO:0055114;GO:0051287;GO:0008270;GO:0004399;GO:0000105	oxidation-reduction process;NAD binding;zinc ion binding;histidinol dehydrogenase activity;histidine biosynthetic process	HDH1
+Cre02.g103600						
+Cre02.g088750	GMM:30.4;GMM:3.4;GMM:29.4.1	signalling.phosphinositides;minor CHO metabolism.myo-inositol;protein.postranslational modification.kinase		GO:0016773;GO:0005515	"phosphotransferase activity, alcohol group as acceptor;protein binding"	ATR2
+Cre02.g143007						
+Cre02.g143052			Mitochondrion			
+Cre02.g104950			Mitochondrion			
+Cre02.g103300	GMM:34.16	transport.ABC transporters and multidrug resistance systems				CSE16
+Cre02.g116900	GMM:33.2	development.late embryogenesis abundant	Mitochondrion			SETB
+Cre02.g075600	GMM:27.2	RNA.transcription	Secretory pathway	GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	
+Cre02.g083600	GMM:3.5	minor CHO metabolism.others		GO:0005525	GTP binding	
+Cre02.g093252			Mitochondrion			
+Cre02.g095065			Secretory pathway			
+Cre02.g146600	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified				AP4M4
+Cre02.g084650	GMM:29.3.1	protein.targeting.nucleus		GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	
+Cre02.g083500	GMM:17.1.1.1.1	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase	Mitochondrion			
+Cre02.g093750	GMM:35.1.26;GMM:21.1	not assigned.no ontology.DC1 domain containing protein;redox.thioredoxin				NRX2
+Cre02.g095036			Chloroplast			
+Cre02.g142887			Chloroplast			
+Cre02.g095700						
+Cre02.g095100				GO:0055114;GO:0010181;GO:0008615;GO:0004733	oxidation-reduction process;FMN binding;pyridoxine biosynthetic process;pyridoxamine-phosphate oxidase activity	CPLD26
+Cre02.g144802						
+Cre02.g095122	GMM:29.6.3.1;GMM:29.6	protein.folding.immunophilins (IMM).FKBPs;protein.folding		GO:0006457	protein folding	FKB16-8
+Cre02.g146050	GMM:16.1.2.1;GMM:13.2.6.3;GMM:13.2.4.5	secondary metabolism.isoprenoids.mevalonate pathway.acetyl-CoA C-acyltransferase;amino acid metabolism.degradation.aromatic aa.tryptophan;amino acid metabolism.degradation.branched chain group.isoleucine	Mitochondrion	GO:0016747;GO:0008152	"transferase activity, transferring acyl groups other than amino-acyl groups;metabolic process"	ATO2
+Cre02.g078600	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP8
+Cre02.g101786			Chloroplast			
+Cre02.g074511	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003723	RNA binding	
+Cre02.g102700			Secretory pathway			
+Cre02.g099452						
+Cre02.g141266						
+Cre02.g144734						
+Cre02.g110150	GMM:27.3.28	RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0005515;GO:0003677	nucleus;protein binding;DNA binding	
+Cre02.g092000	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion			DEG2
+Cre02.g116150			Mitochondrion			
+Cre02.g106750			Mitochondrion	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPS9
+Cre02.g141966	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g141146			Chloroplast			
+Cre02.g143150						
+Cre02.g147650	GMM:3.5;GMM:10.1.20	minor CHO metabolism.others;cell wall.precursor synthesis.phosphomannose isomerase		GO:0009298;GO:0008270;GO:0005975;GO:0004476	GDP-mannose biosynthetic process;zinc ion binding;carbohydrate metabolic process;mannose-6-phosphate isomerase activity	MPI1
+Cre02.g079300	GMM:29.5.9;GMM:29.5.11.20;GMM:29.3.4.3	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom;protein.targeting.secretory pathway.vacuole		GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	VPS4
+Cre02.g081850				GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre02.g141846	GMM:31.2;GMM:28.2	cell.division;DNA.repair		GO:0009432;GO:0006281;GO:0005524;GO:0003697	SOS response;DNA repair;ATP binding;single-stranded DNA binding	DMC1
+Cre02.g143627			Secretory pathway			
+Cre02.g115150				GO:0016021	integral component of membrane	
+Cre02.g089237	GMM:29.5.11	protein.degradation.ubiquitin	Mitochondrion	GO:0008270	zinc ion binding	
+Cre02.g095950	GMM:27.3.99	RNA.regulation of transcription.unclassified	Mitochondrion			
+Cre02.g085279			Mitochondrion			
+Cre02.g144004			Chloroplast			
+Cre02.g101250						
+Cre02.g102800	GMM:27.2	RNA.transcription		GO:0006351	"transcription, DNA-templated"	RPB8
+Cre02.g111950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g118600	GMM:31.2	cell.division	Chloroplast	GO:0003924	GTPase activity	FTSZ1
+Cre02.g109450						
+Cre02.g141446			Mitochondrion			
+Cre02.g109850			Chloroplast	GO:0017176;GO:0016021;GO:0006506	phosphatidylinositol N-acetylglucosaminyltransferase activity;integral component of membrane;GPI anchor biosynthetic process	PIGC
+Cre02.g119300			Secretory pathway			
+Cre02.g083900				GO:0008408;GO:0006139;GO:0003676;GO:0002161	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding;aminoacyl-tRNA editing activity	EXN5
+Cre02.g073450						
+Cre02.g093650			Chloroplast	GO:0055114;GO:0051537;GO:0016491	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"	
+Cre02.g117376			Mitochondrion			
+Cre02.g095089				GO:0016787	hydrolase activity	
+Cre02.g095131						
+Cre02.g082852			Chloroplast	GO:0016020;GO:0015979;GO:0009523	membrane;photosynthesis;photosystem II	
+Cre02.g142600						
+Cre02.g095105			Chloroplast			
+Cre02.g088050	GMM:27.1.19	RNA.processing.ribonucleases	Secretory pathway	GO:0008033;GO:0004540	tRNA processing;ribonuclease activity	RPP30
+Cre02.g095147	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ALG2
+Cre02.g110450						
+Cre02.g082250	GMM:13.1.3.6.1.4	amino acid metabolism.synthesis.aspartate family.misc.homoserine.homoserine kinase	Chloroplast	GO:0005524	ATP binding	HSK2
+Cre02.g110850	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre02.g105851						
+Cre02.g078858	GMM:30.8;GMM:3.8;GMM:29.5.4	signalling.misc;minor CHO metabolism.galactose;protein.degradation.aspartate protease	Secretory pathway	GO:0016021;GO:0004190	integral component of membrane;aspartic-type endopeptidase activity	PSN1
+Cre02.g106500	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases		GO:0016787	hydrolase activity	DIPP
+Cre02.g146100			Mitochondrion			
+Cre02.g083259			Chloroplast			
+Cre02.g141286			Chloroplast			
+Cre02.g107100			Chloroplast			
+Cre02.g079500			Secretory pathway			
+Cre02.g090600						
+Cre02.g146450	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG60
+Cre02.g076500						
+Cre02.g092700						FAP45
+Cre02.g145100	GMM:34.21;GMM:30.3;GMM:3.3	transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	FAP39
+Cre02.g108000			Chloroplast			
+Cre02.g102150						
+Cre02.g095038			Mitochondrion			
+Cre02.g086300						
+Cre02.g110750	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCB7
+Cre02.g095144			Mitochondrion			
+Cre02.g111029			Mitochondrion			
+Cre02.g095033						
+Cre02.g141026						
+Cre02.g100100	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre02.g091050	GMM:19.4	tetrapyrrole synthesis.ALA dehydratase	Chloroplast	GO:0046872;GO:0033014;GO:0004655	metal ion binding;tetrapyrrole biosynthetic process;porphobilinogen synthase activity	ALAD
+Cre02.g079200	GMM:28.1.3;GMM:27.3.15	"DNA.synthesis/chromatin structure.histone;RNA.regulation of transcription.CCAAT box binding factor family, HAP3"				
+Cre02.g092284	GMM:13.1.5.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine	Mitochondrion	GO:0055114;GO:0016702	"oxidation-reduction process;oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, incorporation of two atoms of oxygen"	
+Cre02.g115226						
+Cre02.g116050						
+Cre02.g140900			Chloroplast			
+Cre02.g118450	GMM:29.9	protein.co-chaperones	EndoplasmicReticulum			DNJ28
+Cre02.g074800	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG9
+Cre02.g098200	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	zinc ion binding	CGL103
+Cre02.g092800						FAP136
+Cre02.g095097	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs	Chloroplast	GO:0006457	protein folding	FKB21
+Cre02.g076987						
+Cre02.g117950						
+Cre02.g116550	GMM:29.9	protein.co-chaperones	Chloroplast	GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	DNJ24
+Cre02.g100633			Chloroplast			
+Cre02.g108350	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family	Chloroplast			
+Cre02.g143300			Chloroplast			
+Cre02.g144252	GMM:34.15	transport.potassium				
+Cre02.g100400			Chloroplast			
+Cre02.g092650						
+Cre02.g097050			Secretory pathway			
+Cre02.g076000	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	LAT3
+Cre02.g089150	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases		GO:0016573;GO:0008270;GO:0006357	histone acetylation;zinc ion binding;regulation of transcription from RNA polymerase II promoter	
+Cre02.g114350						
+Cre02.g105450						CGL141
+Cre02.g090100	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
+Cre02.g079550	GMM:26.17	misc.dynamin		GO:0005525;GO:0003924	GTP binding;GTPase activity	DRP2
+Cre02.g094200				GO:0055085;GO:0022857;GO:0016021	transmembrane transport;transmembrane transporter activity;integral component of membrane	
+Cre02.g095099	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g142602						
+Cre02.g109300						
+Cre02.g113750			Secretory pathway			
+Cre02.g102050	GMM:34.16;GMM:31.6.1.10	transport.ABC transporters and multidrug resistance systems;cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP328
+Cre02.g074720						
+Cre02.g145602			Chloroplast			CSB17
+Cre02.g082900				GO:0016021;GO:0006810;GO:0005337	integral component of membrane;transport;nucleoside transmembrane transporter activity	
+Cre02.g102850				GO:0008270;GO:0006508;GO:0004181	zinc ion binding;proteolysis;metallocarboxypeptidase activity	
+Cre02.g141326						
+Cre02.g112600						
+Cre02.g143387			Secretory pathway			
+Cre02.g094426						
+Cre02.g116300	GMM:27.2	RNA.transcription				
+Cre02.g119800			Secretory pathway	GO:0046872;GO:0005515	metal ion binding;protein binding	
+Cre02.g080150			Secretory pathway			
+Cre02.g114050			Secretory pathway			
+Cre02.g084200			Chloroplast			
+Cre02.g142406						
+Cre02.g145900						
+Cre02.g080200	GMM:7.2.1;GMM:1.3.8	OPP.non-reductive PP.transketolase;PS.calvin cycle.transketolase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	TRK1
+Cre02.g111600						
+Cre02.g111350			Chloroplast			
+Cre02.g089450			Secretory pathway			HRP5
+Cre02.g079000						
+Cre02.g081400	GMM:18.4.1;GMM:16.5.1.1.1.1;GMM:13.1.4.1.4	Co-factor and vitamine metabolism.pantothenate.branched-chain amino acid aminotransferase;secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.branched-chain amino acid aminotransferase  (BCAT/MAAT);amino acid metabolism.synthesis.branched chain group.common.branched-chain-amino-acid aminotransferase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	BCA1
+Cre02.g080450			Mitochondrion			
+Cre02.g107500			Secretory pathway			
+Cre02.g104700	GMM:33.99;GMM:33.3;GMM:27.3.28	development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre02.g097850				GO:0046872	metal ion binding	
+Cre02.g142353	GMM:29.1.21	protein.aa activation.histidine-tRNA ligase	Mitochondrion			
+Cre02.g144600	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB9
+Cre02.g095091			Mitochondrion			
+Cre02.g106050			Mitochondrion			
+Cre02.g145950			Secretory pathway			
+Cre02.g074200			Mitochondrion			
+Cre02.g109050			Chloroplast			OPR5
+Cre02.g095750				GO:0071949	FAD binding	
+Cre02.g146900			Mitochondrion			OPR14
+Cre02.g078050			Chloroplast	GO:0005509	calcium ion binding	CAM5
+Cre02.g143187						
+Cre02.g093017						
+Cre02.g081200	GMM:33.99	development.unspecified				
+Cre02.g143858						
+Cre02.g115750	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase		GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GPD9
+Cre02.g142400	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB16
+Cre02.g093975	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	
+Cre02.g086600			Mitochondrion			
+Cre02.g099879			Mitochondrion			
+Cre02.g119651				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre02.g141700						FAP315
+Cre02.g104450	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g098900			Chloroplast			
+Cre02.g076625			Mitochondrion			
+Cre02.g098800	GMM:21.1	redox.thioredoxin	Secretory pathway	GO:0009306;GO:0005788;GO:0005783	protein secretion;endoplasmic reticulum lumen;endoplasmic reticulum	
+Cre02.g081550	GMM:29.2.2.3.99;GMM:20.2	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;stress.abiotic				
+Cre02.g073900	GMM:17.1.1	hormone metabolism.abscisic acid.synthesis-degradation	Chloroplast			
+Cre02.g143247						
+Cre02.g099800			Mitochondrion			
+Cre02.g145200	GMM:11.1.20	lipid metabolism.FA synthesis and FA elongation.MCD	Chloroplast	GO:0050080;GO:0006633	malonyl-CoA decarboxylase activity;fatty acid biosynthetic process	
+Cre02.g091300			Chloroplast			
+Cre02.g104800	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTV1
+Cre02.g075301			Chloroplast			
+Cre02.g117550	GMM:31.1	cell.organisation				ANK13
+Cre02.g097300			Mitochondrion	GO:0022857;GO:0019898;GO:0016021;GO:0008092;GO:0005737	transmembrane transporter activity;extrinsic component of membrane;integral component of membrane;cytoskeletal protein binding;cytoplasm	
+Cre02.g113626			Secretory pathway			
+Cre02.g095130			Secretory pathway			
+Cre02.g142006						
+Cre02.g081100						
+Cre02.g110400	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0005515	protein binding	
+Cre02.g092250	GMM:29.6.3.1;GMM:29.6	protein.folding.immunophilins (IMM).FKBPs;protein.folding		GO:0006457	protein folding	FKB42
+Cre02.g105600	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems	Chloroplast			EYE3
+Cre02.g146850						
+Cre02.g095078						
+Cre02.g092983						
+Cre02.g077750	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			FAP211
+Cre02.g112250	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0006508;GO:0005622;GO:0004198	proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity	CAL2
+Cre02.g095600			Chloroplast			
+Cre02.g118850				GO:0000062	fatty-acyl-CoA binding	
+Cre02.g074976						
+Cre02.g087400			Chloroplast			
+Cre02.g141450	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC14
+Cre02.g102302						
+Cre02.g102276						
+Cre02.g144950	GMM:34.15	transport.potassium	Mitochondrion			KCN4
+Cre02.g076900	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis				FAP19
+Cre02.g101350	GMM:29.2.1.2.2.510;GMM:29.2.1.1.3.2.510;GMM:29.2.1.1.3.2.0510	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L10A;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L10A;protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L10A				RPL10A
+Cre02.g095083			Mitochondrion			
+Cre02.g101650			Mitochondrion			
+Cre02.g078700	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family				
+Cre02.g078450						
+Cre02.g094750						
+Cre02.g083935						
+Cre02.g090950			Chloroplast			
+Cre02.g143250	GMM:8.2.4	TCA / organic transformation.other organic acid transformations.IDH		GO:0055114;GO:0051287;GO:0016616;GO:0000287	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;magnesium ion binding"	IDH2
+Cre02.g105550			Chloroplast			
+Cre02.g117781						
+Cre02.g087350						
+Cre02.g095120	GMM:31.1	cell.organisation	Mitochondrion			ANK18
+Cre02.g142852						
+Cre02.g090526			Mitochondrion			
+Cre02.g085200				GO:0003676	nucleic acid binding	
+Cre02.g085150	GMM:27.3.28	RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Chloroplast	GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre02.g075676			Chloroplast			
+Cre02.g103900	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK11
+Cre02.g096551			Chloroplast			
+Cre02.g086326			Secretory pathway			
+Cre02.g102776						
+Cre02.g120150	GMM:1.3.2	PS.calvin cycle.rubisco small subunit	Chloroplast			RBCS2
+Cre02.g096950			Mitochondrion			
+Cre02.g087100			Chloroplast			
+Cre02.g083400						
+Cre02.g109650	GMM:31.6.1.9	cell.motility.eukaryotes.flagellar adhesion and gamete fusion		GO:0006355;GO:0003677	"regulation of transcription, DNA-templated;DNA binding"	GSP1
+Cre02.g095070	GMM:29.3.4.99;GMM:29.3.4.1	protein.targeting.secretory pathway.unspecified;protein.targeting.secretory pathway.ER		GO:0048500;GO:0008312;GO:0006614	signal recognition particle;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane	SRP19
+Cre02.g091550			Mitochondrion			WHI
+Cre02.g144251						
+Cre02.g103500	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"	Secretory pathway	GO:0055114;GO:0016491;GO:0006633;GO:0005506	oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding	
+Cre02.g102450	GMM:33.99	development.unspecified	Secretory pathway	GO:0005515	protein binding	
+Cre02.g115567			Chloroplast			
+Cre02.g096050						
+Cre02.g111850				GO:0005515	protein binding	
+Cre02.g075950			Chloroplast			
+Cre02.g142627			Secretory pathway			
+Cre02.g077061			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre02.g110950	GMM:31.6.1.3.1.2	cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.cytoplasmic dynein 1b subunits				DIC5
+Cre02.g117350	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0018095;GO:0006464	protein polyglutamylation;cellular protein modification process	MOT11
+Cre02.g142604						
+Cre02.g142226	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre02.g107200						
+Cre02.g145250	GMM:29.2.1.2.1.27	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS27E2
+Cre02.g095056			Chloroplast			
+Cre02.g142166	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified				
+Cre02.g078804	GMM:1.5	PS.carbon concentrating mechanism	Chloroplast			PHC40
+Cre02.g143647			Chloroplast			
+Cre02.g119400			Secretory pathway			
+Cre02.g100600			Secretory pathway			
+Cre02.g118125			Mitochondrion			
+Cre02.g114900						ANK23
+Cre02.g146150				GO:0006355;GO:0006351	"regulation of transcription, DNA-templated;transcription, DNA-templated"	
+Cre02.g085600			Mitochondrion			
+Cre02.g140961			Mitochondrion			
+Cre02.g096300						CCM1
+Cre02.g142787						
+Cre02.g142546						
+Cre27.g757197	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre27.g757347	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre27.g757147	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre27.g757447			Mitochondrion			
+Cre27.g757297						
+Cre27.g757397						
+Cre27.g757247			Mitochondrion			
+Cre51.g761597						
+Cre51.g761547				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g169550	GMM:9.4	mitochondrial electron transport / ATP synthesis.alternative oxidase	Mitochondrion	GO:0055114;GO:0009916	oxidation-reduction process;alternative oxidase activity	AOX2
+Cre03.g183050			Secretory pathway			MGT1
+Cre03.g174800						
+Cre03.g146347						
+Cre03.g187500				GO:0004725;GO:0004721	protein tyrosine phosphatase activity;phosphoprotein phosphatase activity	
+Cre03.g198750	GMM:28.1	DNA.synthesis/chromatin structure		GO:0003677;GO:0000166	DNA binding;nucleotide binding	
+Cre03.g190900						
+Cre03.g168950			Chloroplast			
+Cre03.g181300	GMM:13.1.6.1.6	amino acid metabolism.synthesis.aromatic aa.chorismate.5-enolpyruvylshikimate-3-phosphate synthase	Chloroplast	GO:0016765	"transferase activity, transferring alkyl or aryl (other than methyl) groups"	SHKG1
+Cre03.g207825				GO:0016779;GO:0009058	nucleotidyltransferase activity;biosynthetic process	
+Cre03.g160050						FAP184
+Cre03.g185600						OGD3
+Cre03.g187950	GMM:28.1;GMM:27.1.19	DNA.synthesis/chromatin structure;RNA.processing.ribonucleases				
+Cre03.g194300			Mitochondrion	GO:0016740;GO:0009058	transferase activity;biosynthetic process	
+Cre03.g203350			Mitochondrion			
+Cre03.g173750						
+Cre03.g203345			Mitochondrion			
+Cre03.g200150	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007023	post-chaperonin tubulin folding pathway	
+Cre03.g162850			Secretory pathway			FAP292
+Cre03.g162100	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006464;GO:0004719	cellular protein modification process;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	PIMT2
+Cre03.g155950			Secretory pathway			
+Cre03.g212753						
+Cre03.g182550				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PNO3
+Cre03.g198250						
+Cre03.g174525			Chloroplast			
+Cre03.g171250						
+Cre03.g146267	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family				
+Cre03.g170050						
+Cre03.g144464	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g166250			Chloroplast			
+Cre03.g172750			Secretory pathway			
+Cre03.g151600			Chloroplast			
+Cre03.g155926						
+Cre03.g179650	GMM:31.1	cell.organisation	Mitochondrion	GO:0005515	protein binding	
+Cre03.g176550	GMM:25	C1-metabolism		GO:0035246;GO:0008168;GO:0006479	peptidyl-arginine N-methylation;methyltransferase activity;protein methylation	PRMT5
+Cre03.g170400						
+Cre03.g199647	GMM:29.2.3;GMM:29.2.2.3.5	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
+Cre03.g187550				GO:0045892;GO:0005634	"negative regulation of transcription, DNA-templated;nucleus"	
+Cre03.g167400			Chloroplast			
+Cre03.g149201	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
+Cre03.g183550			Mitochondrion	GO:0004518	nuclease activity	
+Cre03.g196100						
+Cre03.g143927						
+Cre03.g203457						
+Cre03.g208550			Chloroplast			
+Cre03.g174300			Secretory pathway			
+Cre03.g151550			Secretory pathway			
+Cre03.g179150			Chloroplast			
+Cre03.g205137			Secretory pathway			
+Cre03.g198467			Chloroplast			
+Cre03.g183600			Chloroplast			
+Cre03.g167668						
+Cre03.g145127	GMM:31.6.1.4.2.1;GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0005515;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;protein binding;microtubule motor activity	DHC13
+Cre03.g145187			Chloroplast			
+Cre03.g156850			Secretory pathway			
+Cre03.g200750	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases				
+Cre03.g158000	GMM:19.3	tetrapyrrole synthesis.GSA	Chloroplast	GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	GSA1
+Cre03.g166950	GMM:4.3.12;GMM:4.2.12;GMM:4.1.12	glycolysis.unclear/dually targeted.phosphoglycerate mutase;glycolysis.plastid branch.phosphoglycerate mutase;glycolysis.cytosolic branch.phosphoglycerate mutase		GO:0016868;GO:0006096;GO:0004619	"intramolecular transferase activity, phosphotransferases;glycolytic process;phosphoglycerate mutase activity"	PGM5
+Cre03.g151850						
+Cre03.g193100			Mitochondrion			
+Cre03.g143727			Chloroplast			CSU2
+Cre03.g161606						
+Cre03.g158300	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK7
+Cre03.g194150			Chloroplast			
+Cre03.g149800	GMM:31.1	cell.organisation				TOG1
+Cre03.g197350	GMM:27.3.26;GMM:27.1.1	RNA.regulation of transcription.MYB-related transcription factor family;RNA.processing.splicing				
+Cre03.g163200	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0008270;GO:0006355;GO:0005634;GO:0003700	"zinc ion binding;regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding"	
+Cre03.g177750	GMM:34.99;GMM:20.1	transport.misc;stress.biotic		GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
+Cre03.g145567			Chloroplast			CGL18
+Cre03.g205600			Chloroplast			
+Cre03.g154400						MFT15
+Cre03.g158750	GMM:29.2.3;GMM:28.1;GMM:27.1.2;GMM:27.1;GMM:17.5.3	protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated	Mitochondrion	GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL14
+Cre03.g155400			Mitochondrion			
+Cre03.g146027						
+Cre03.g146647			Secretory pathway			
+Cre03.g154950	GMM:26.9	misc.glutathione S transferases	Secretory pathway	GO:0005515	protein binding	
+Cre03.g165471						
+Cre03.g189950	GMM:29.9;GMM:29.6.2.6;GMM:20	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress	Cytosol	GO:0005515	protein binding	HOP
+Cre03.g179941						
+Cre03.g184651			Secretory pathway			RAD51D
+Cre03.g211745	GMM:6;GMM:11.1.8	gluconeogenesis / glyoxylate cycle;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase		GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre03.g153450						
+Cre03.g203900			Mitochondrion			
+Cre03.g201650			Mitochondrion			
+Cre03.g205585						
+Cre03.g199150	GMM:23	nucleotide metabolism	Mitochondrion	GO:0050662;GO:0003824	coenzyme binding;catalytic activity	
+Cre03.g197800	GMM:31.1.1.3.11;GMM:31.1	cell.organisation.cytoskeleton.Myosin.Class XI;cell.organisation	Chloroplast			
+Cre03.g148700						PWR7
+Cre03.g163750						
+Cre03.g199300				GO:0051087;GO:0006950;GO:0001671	chaperone binding;response to stress;ATPase activator activity	
+Cre03.g206900			Mitochondrion			
+Cre03.g154600			Chloroplast			
+Cre03.g186500	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases	Mitochondrion	GO:0016573;GO:0016568;GO:0006348;GO:0005634;GO:0004402	histone acetylation;chromatin modification;chromatin silencing at telomere;nucleus;histone acetyltransferase activity	HAT2
+Cre03.g207265			Secretory pathway			
+Cre03.g208551	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre03.g153800	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0042765;GO:0016255;GO:0008233;GO:0006508;GO:0003923	GPI-anchor transamidase complex;attachment of GPI anchor to protein;peptidase activity;proteolysis;GPI-anchor transamidase activity	PIGK
+Cre03.g146447	GMM:26.16;GMM:17.7.3	misc.myrosinases-lectin-jacalin;hormone metabolism.jasmonate.induced-regulated-responsive-activated				
+Cre03.g181500	GMM:2.2.2.4	major CHO metabolism.degradation.starch.D enzyme	Chloroplast	GO:0005975;GO:0004134	carbohydrate metabolic process;4-alpha-glucanotransferase activity	STA11
+Cre03.g207600			Chloroplast			NSG6
+Cre03.g208555						
+Cre03.g205701			Mitochondrion			
+Cre03.g166800	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway	GO:0005515	protein binding	
+Cre03.g202450			Mitochondrion			
+Cre03.g176800	GMM:25.8	C1-metabolism.tetrahydrofolate synthase	Mitochondrion	GO:0009396;GO:0009058;GO:0005524;GO:0004326	folic acid-containing compound biosynthetic process;biosynthetic process;ATP binding;tetrahydrofolylpolyglutamate synthase activity	FPG1
+Cre03.g168650			Chloroplast			
+Cre03.g202250				GO:0006260;GO:0005634	DNA replication;nucleus	
+Cre03.g193300						CPLD56
+Cre03.g200550	GMM:33.99;GMM:1.1.7.1	development.unspecified;PS.lightreaction.hydrogenase.FeFe-hydrogenase				HYD3
+Cre03.g170750	GMM:29.2.1.99.1.4	protein.synthesis.ribosomal protein.unknown.small subunit.S4		GO:0019843;GO:0005622;GO:0003723	rRNA binding;intracellular;RNA binding	RNP3
+Cre03.g151100	GMM:20	stress				SSA15
+Cre03.g172350				GO:0008418	protein-N-terminal asparagine amidohydrolase activity	
+Cre03.g194900			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre03.g177400			Secretory pathway			
+Cre03.g164450			Chloroplast			
+Cre03.g175200	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0019867	outer membrane	TOC75
+Cre03.g165550			Mitochondrion			
+Cre03.g144807	GMM:6.2	gluconeogenesis / glyoxylate cycle.malate synthase		GO:0006097;GO:0004474	glyoxylate cycle;malate synthase activity	MAS1
+Cre03.g193700	GMM:29.5	protein.degradation	Chloroplast			
+Cre03.g166600			Mitochondrion			
+Cre03.g164200			Secretory pathway			
+Cre03.g177900			Mitochondrion			TOB38
+Cre03.g201050			Chloroplast			ZNJ2
+Cre03.g176150			Mitochondrion			
+Cre03.g143907	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases	Chloroplast	GO:0016747;GO:0006355	"transferase activity, transferring acyl groups other than amino-acyl groups;regulation of transcription, DNA-templated"	
+Cre03.g204000			Secretory pathway			
+Cre03.g153000						
+Cre03.g185950	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Mitochondrion			
+Cre03.g171461	GMM:19.8	tetrapyrrole synthesis.coproporphyrinogen III oxidase	Mitochondrion	GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	
+Cre03.g152200						
+Cre03.g163600			Mitochondrion			
+Cre03.g196300			Chloroplast	GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	
+Cre03.g194517						
+Cre03.g179300	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
+Cre03.g157050				GO:0015743	malate transport	
+Cre03.g195500	GMM:33.1	development.storage proteins	Mitochondrion	GO:0006629	lipid metabolic process	TGL9
+Cre03.g144987	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre03.g192300						
+Cre03.g198150			Chloroplast	GO:0051205;GO:0016021	protein insertion into membrane;integral component of membrane	ALB3.3
+Cre03.g153150	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre03.g173350	GMM:31.1;GMM:27.3.39	cell.organisation;RNA.regulation of transcription.AtSR transcription factor family				ANK22
+Cre03.g156200			Secretory pathway			
+Cre03.g144827						
+Cre03.g203905						
+Cre03.g152600						
+Cre03.g171800			Chloroplast			FAP123
+Cre03.g200400	GMM:26.28	misc.GDSL-motif lipase				
+Cre03.g148450			Secretory pathway			TEH1
+Cre03.g205500						
+Cre03.g177500	GMM:17.1.3;GMM:17.1.1	hormone metabolism.abscisic acid.induced-regulated-responsive-activated;hormone metabolism.abscisic acid.synthesis-degradation				
+Cre03.g152150						
+Cre03.g176350	GMM:31.1	cell.organisation	Chloroplast			PLAP5
+Cre03.g146407						
+Cre03.g184350	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre03.g209393	GMM:31.8;GMM:17.7.1.5	cell.contractile vacuole;hormone metabolism.jasmonate.synthesis-degradation.12-oxophytodienoate reductase 3	Mitochondrion	GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	
+Cre03.g189400	GMM:29.1.11	protein.aa activation.serine-tRNA ligase		GO:0006434;GO:0006418;GO:0005737;GO:0005524;GO:0004828;GO:0004812;GO:0000166	seryl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;serine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	TSS2
+Cre03.g153306						
+Cre03.g188026			Mitochondrion			
+Cre03.g161250	GMM:26.10;GMM:26.1	misc.cytochrome P450;misc.misc2		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP748A1
+Cre03.g209617			Secretory pathway			
+Cre03.g208050	GMM:11.1.5	lipid metabolism.FA synthesis and FA elongation.beta hydroxyacyl ACP dehydratase	Chloroplast			
+Cre03.g189050			Secretory pathway			EAM1
+Cre03.g168775						
+Cre03.g203550			Secretory pathway			
+Cre03.g190700						
+Cre03.g180300	GMM:26.10;GMM:14.3	misc.cytochrome P450;S-assimilation.sulfite redox		GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	SIR3
+Cre03.g200991						
+Cre03.g182750	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Secretory pathway			
+Cre03.g207918						
+Cre03.g204300			Chloroplast			
+Cre03.g148950	GMM:35.1.14;GMM:27.4	not assigned.no ontology.S RNA-binding domain-containing protein;RNA.RNA binding	Chloroplast	GO:0003676	nucleic acid binding	CGL43
+Cre03.g146867	GMM:31.1	cell.organisation				FAP17
+Cre03.g199983	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	
+Cre03.g178276			Secretory pathway			
+Cre03.g205050	GMM:26.5	misc.acyl transferases	Secretory pathway	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	DGTT4
+Cre03.g159700			Mitochondrion	GO:0016021	integral component of membrane	
+Cre03.g201332			Mitochondrion	GO:0005515	protein binding	
+Cre03.g160400	GMM:14.1	S-assimilation.APS		GO:0055085;GO:0016021;GO:0008324;GO:0006813	transmembrane transport;integral component of membrane;cation transmembrane transporter activity;potassium ion transport	SAC1
+Cre03.g172100	GMM:26.1	misc.misc2	Chloroplast	GO:0042586;GO:0005506	peptide deformylase activity;iron ion binding	PDF1A
+Cre03.g188750	GMM:29.2.3;GMM:29.2.2.3.5;GMM:27.1.2;GMM:17.5.3	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;RNA.processing.RNA helicase;hormone metabolism.ethylene.induced-regulated-responsive-activated		GO:0005524;GO:0005515;GO:0003676	ATP binding;protein binding;nucleic acid binding	HEL21
+Cre03.g172900			Chloroplast			
+Cre03.g197513				GO:0016021	integral component of membrane	
+Cre03.g150350	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase	Mitochondrion			CPLD70
+Cre03.g149900			Mitochondrion			
+Cre03.g194700	GMM:26.3.1;GMM:26.3	"misc.gluco-, galacto- and mannosidases.alpha-galactosidase;misc.gluco-, galacto- and mannosidases"		GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	AGL1
+Cre03.g156550				GO:0035556	intracellular signal transduction	
+Cre03.g150767						
+Cre03.g206369	GMM:29.4.1.57;GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g161900						
+Cre03.g180850	GMM:29.3.4.2	protein.targeting.secretory pathway.golgi		GO:0030127;GO:0008270;GO:0006888;GO:0006886	COPII vesicle coat;zinc ion binding;ER to Golgi vesicle-mediated transport;intracellular protein transport	SEC23A
+Cre03.g157200	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre03.g172150	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0032012;GO:0005086	regulation of ARF protein signal transduction;ARF guanyl-nucleotide exchange factor activity	
+Cre03.g208273			Chloroplast			
+Cre03.g206033				GO:0016021	integral component of membrane	
+Cre03.g144224						
+Cre03.g202850			Chloroplast			
+Cre03.g199600						
+Cre03.g179550	GMM:27.3.99;GMM:27.2	RNA.regulation of transcription.unclassified;RNA.transcription		GO:0008270;GO:0006351;GO:0006289;GO:0006281;GO:0000439	"zinc ion binding;transcription, DNA-templated;nucleotide-excision repair;DNA repair;core TFIIH complex"	TF2H2
+Cre03.g154500						
+Cre03.g203121			Mitochondrion			
+Cre03.g174400				GO:0055114;GO:0046439;GO:0017172;GO:0005506	oxidation-reduction process;L-cysteine metabolic process;cysteine dioxygenase activity;iron ion binding	CDO1
+Cre03.g148750				GO:0047746;GO:0015996	chlorophyllase activity;chlorophyll catabolic process	
+Cre03.g143687						
+Cre03.g182600						CPL1
+Cre03.g159950	GMM:33.99	development.unspecified		GO:0005634	nucleus	
+Cre03.g165900						PGM17
+Cre03.g206593						
+Cre03.g174600						
+Cre03.g175584						
+Cre03.g184850	GMM:34.8	transport.metabolite transporters at the envelope membrane				
+Cre03.g187400						
+Cre03.g173000			Chloroplast			
+Cre03.g201500						
+Cre03.g189650	GMM:27.3.72;GMM:27.3.54	RNA.regulation of transcription.Transcriptional Adaptor Zinc Bundle (TAZ) domain family;RNA.regulation of transcription.histone acetyltransferases		GO:0016573;GO:0008270;GO:0006355;GO:0005634;GO:0004402;GO:0003712	"histone acetylation;zinc ion binding;regulation of transcription, DNA-templated;nucleus;histone acetyltransferase activity;transcription cofactor activity"	
+Cre03.g170150	GMM:33.99;GMM:30.3;GMM:29.5.11.4.2	development.unspecified;signalling.calcium;protein.degradation.ubiquitin.E3.RING		GO:0005515	protein binding	
+Cre03.g178650	GMM:28.1	DNA.synthesis/chromatin structure		GO:0042555;GO:0006270;GO:0006260;GO:0005634;GO:0005524;GO:0003678;GO:0003677	MCM complex;DNA replication initiation;DNA replication;nucleus;ATP binding;DNA helicase activity;DNA binding	MCM6
+Cre03.g181200	GMM:13.2.4.4	amino acid metabolism.degradation.branched chain group.leucine	Mitochondrion			
+Cre03.g173250						
+Cre03.g144031			Secretory pathway			
+Cre03.g197050	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTV2
+Cre03.g187800			Chloroplast			
+Cre03.g167600						FAP61
+Cre03.g174900	GMM:11.9.2	lipid metabolism.lipid degradation.lipases		GO:0005515	protein binding	
+Cre03.g188650	GMM:31.1	cell.organisation	Chloroplast			PLAP2
+Cre03.g185700			Secretory pathway			
+Cre03.g165150			Chloroplast			
+Cre03.g153550						
+Cre03.g194400	GMM:29.2.3;GMM:17.3.2.99	protein.synthesis.initiation;hormone metabolism.brassinosteroid.signal transduction.other		GO:0005515	protein binding	EIF3I
+Cre03.g208554						
+Cre03.g191150	GMM:29.5	protein.degradation		GO:0005515	protein binding	
+Cre03.g162000	GMM:34.8	transport.metabolite transporters at the envelope membrane	Secretory pathway			
+Cre03.g203250						
+Cre03.g206203			Mitochondrion			
+Cre03.g189850				GO:0005515	protein binding	
+Cre03.g156750	GMM:29.6.2.2;GMM:29.4	protein.folding.chaperones and co-chaperones.HSP60s;protein.postranslational modification	Cytosol	GO:0005524	ATP binding	CCT5
+Cre03.g177700						NIT2
+Cre03.g210177	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0005509	calcium ion binding	cam21
+Cre03.g167622			Chloroplast			
+Cre03.g159600						
+Cre03.g153600						
+Cre03.g186400			Mitochondrion			SCR1
+Cre03.g173500						
+Cre03.g168500						
+Cre03.g164101	GMM:27.1	RNA.processing				LSM7
+Cre03.g198975			Secretory pathway			
+Cre03.g163050				GO:0046556;GO:0046373	alpha-L-arabinofuranosidase activity;L-arabinose metabolic process	
+Cre03.g173950			Mitochondrion			
+Cre03.g158400				GO:0046872	metal ion binding	FAP218
+Cre03.g146827			Secretory pathway			
+Cre03.g205249	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	
+Cre03.g196400	GMM:27.3.65	RNA.regulation of transcription.polycomb group (PcG)		GO:0035267;GO:0032777;GO:0006357	NuA4 histone acetyltransferase complex;Piccolo NuA4 histone acetyltransferase complex;regulation of transcription from RNA polymerase II promoter	
+Cre03.g155650			Mitochondrion	GO:0030132;GO:0030130;GO:0016192;GO:0006886;GO:0005198	clathrin coat of coated pit;clathrin coat of trans-Golgi network vesicle;vesicle-mediated transport;intracellular protein transport;structural molecule activity	CLC1
+Cre03.g205809			Mitochondrion	GO:0003824;GO:0003677	catalytic activity;DNA binding	
+Cre03.g145227	GMM:35.1.41	not assigned.no ontology.hydroxyproline rich proteins				
+Cre03.g195326			Chloroplast			
+Cre03.g150700			Secretory pathway			
+Cre03.g168250			Secretory pathway	GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	
+Cre03.g191450			Mitochondrion			
+Cre03.g208305	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre03.g161550						FAP55
+Cre03.g185350	GMM:3.6	minor CHO metabolism.callose	Mitochondrion	GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	CALS1
+Cre03.g207350						
+Cre03.g146487	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion	GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	XPO1
+Cre03.g153750			Chloroplast			
+Cre03.g175300	GMM:11.8	"lipid metabolism.exotics (steroids, squalene etc)"	Chloroplast			
+Cre03.g153650						
+Cre03.g201300			Secretory pathway	GO:0055114;GO:0016715;GO:0005507;GO:0004497	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;copper ion binding;monooxygenase activity"	SSA10
+Cre03.g150450						
+Cre03.g177300			Secretory pathway			
+Cre03.g201327	GMM:3.5	minor CHO metabolism.others	Chloroplast			AKR1
+Cre03.g145527	GMM:29.5	protein.degradation		GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL1
+Cre03.g199400	GMM:33.99;GMM:31.3;GMM:28.1	development.unspecified;cell.cycle;DNA.synthesis/chromatin structure	Chloroplast	GO:0006260;GO:0005634;GO:0000808	DNA replication;nucleus;origin recognition complex	ORC2
+Cre03.g146067	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g192850				GO:0008080	N-acetyltransferase activity	
+Cre03.g212529			Mitochondrion			
+Cre03.g184000						
+Cre03.g165400				GO:0031966	mitochondrial membrane	COX16
+Cre03.g208609						
+Cre03.g155150			Secretory pathway			
+Cre03.g151700			Secretory pathway			CGL26
+Cre03.g164300	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase	Chloroplast			
+Cre03.g183950	GMM:30.2.17	signalling.receptor kinases.DUF 26		GO:0015074	DNA integration	
+Cre03.g185850	GMM:3.5;GMM:23.3.2.1	minor CHO metabolism.others;nucleotide metabolism.salvage.nucleoside kinases.adenosine kinase	Chloroplast			CPK2
+Cre03.g162601	GMM:11.3.3;GMM:11.3	lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase;lipid metabolism.phospholipid synthesis	Mitochondrion	GO:0016780;GO:0016020;GO:0008654	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	
+Cre03.g198400						
+Cre03.g154750			Secretory pathway			
+Cre03.g190100	GMM:29.2.3	protein.synthesis.initiation		GO:0031369;GO:0006413;GO:0005852;GO:0003743;GO:0003723;GO:0003676	translation initiation factor binding;translational initiation;eukaryotic translation initiation factor 3 complex;translation initiation factor activity;RNA binding;nucleic acid binding	EIF3B
+Cre03.g188300	GMM:20.1.1	stress.biotic.respiratory burst	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	RBO1
+Cre03.g176450			Secretory pathway			
+Cre03.g146167	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast.Stroma.Thylakoid.Membrane			TEF10a
+Cre03.g148150			Mitochondrion			
+Cre03.g148000			Chloroplast			
+Cre03.g178750						
+Cre03.g185200	GMM:26.27	misc.calcineurin-like phosphoesterase family protein	Chloroplast	GO:0016787	hydrolase activity	CPL3
+Cre03.g193200						
+Cre03.g149050			Chloroplast	GO:0016021	integral component of membrane	
+Cre03.g203451			Secretory pathway			
+Cre03.g205250	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG4
+Cre03.g200250	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast	GO:0019752;GO:0004451	carboxylic acid metabolic process;isocitrate lyase activity	ICL3
+Cre03.g167500						
+Cre03.g156100				GO:0000398	"mRNA splicing, via spliceosome"	
+Cre03.g171387			Mitochondrion			
+Cre03.g146387						
+Cre03.g144324	GMM:30.2.7;GMM:30.2.3	signalling.receptor kinases.leucine rich repeat VII;signalling.receptor kinases.leucine rich repeat III				
+Cre03.g206250						
+Cre03.g202339			Mitochondrion			
+Cre03.g172000	GMM:26.22;GMM:11.1.4	misc.short chain dehydrogenase/reductase (SDR);lipid metabolism.FA synthesis and FA elongation.ACP oxoacyl reductase	Chloroplast			KAR1
+Cre03.g210401			Chloroplast			
+Cre03.g194567			Chloroplast			
+Cre03.g200651	GMM:31.1	cell.organisation		GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre03.g202550	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Mitochondrion			ELG11
+Cre03.g180017			Mitochondrion			
+Cre03.g207100			Secretory pathway			
+Cre03.g197250			Chloroplast			
+Cre03.g192450			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre03.g199900	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0005737;GO:0003743;GO:0003723	translational initiation;cytoplasm;translation initiation factor activity;RNA binding	EIF4E
+Cre03.g154100			Secretory pathway			
+Cre03.g165750	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	
+Cre03.g197950			Chloroplast			
+Cre03.g206700						
+Cre03.g178900	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway			PRD1
+Cre03.g156700	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			FAP185
+Cre03.g176833	GMM:31.1.1.1.1;GMM:31.1	cell.organisation.cytoskeleton.actin.Actin;cell.organisation	Chloroplast			NAP1
+Cre03.g186750			Mitochondrion			
+Cre03.g166350						
+Cre03.g152701			Mitochondrion			
+Cre03.g194050						
+Cre03.g204800	GMM:34.18.1	transport.unspecified anions.arsenite-transporting ATPase		GO:0016887;GO:0005524	ATPase activity;ATP binding	RTA2
+Cre03.g181100						
+Cre03.g144164	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	RSEP2
+Cre03.g173650						
+Cre03.g143967						
+Cre03.g165650				GO:0006888;GO:0005801;GO:0005622	ER to Golgi vesicle-mediated transport;cis-Golgi network;intracellular	
+Cre03.g206650	GMM:29.4.1	protein.postranslational modification.kinase		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g212193						
+Cre03.g181800			Secretory pathway			
+Cre03.g202561						
+Cre03.g145827	GMM:29.5.1	protein.degradation.subtilases		GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	sub3
+Cre03.g202113	GMM:23.1.2.7	nucleotide metabolism.synthesis.purine.SAICAR synthetase	Chloroplast			
+Cre03.g176300			Chloroplast			
+Cre03.g165976						
+Cre03.g153250						
+Cre03.g190800	GMM:23.4.4	nucleotide metabolism.phosphotransfer and pyrophosphatases.thymidylate kinase				TMPK
+Cre03.g190281						
+Cre03.g201150						
+Cre03.g193950	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0055114;GO:0016730	"oxidation-reduction process;oxidoreductase activity, acting on iron-sulfur proteins as donors"	
+Cre03.g198050			Mitochondrion			
+Cre03.g144284	GMM:29.5.11.4.5.2	protein.degradation.ubiquitin.E3.BTB/POZ Cullin3.BTB/POZ		GO:0005515	protein binding	CGL110
+Cre03.g186650						
+Cre03.g187976						
+Cre03.g165000	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	
+Cre03.g196900	GMM:31.4;GMM:29.3.4.1;GMM:28.99	cell.vesicle transport;protein.targeting.secretory pathway.ER;DNA.unspecified		GO:0005789	endoplasmic reticulum membrane	
+Cre03.g145787	GMM:29.6.2.1	protein.folding.chaperones and co-chaperones.small HSPs	Mitochondrion			HSP22C
+Cre03.g205150			Secretory pathway			
+Cre03.g202100	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases	Chloroplast			OPR18
+Cre03.g169250						
+Cre03.g188900			Secretory pathway			
+Cre03.g200655	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	DEG4
+Cre03.g180550				GO:0016787;GO:0009166	hydrolase activity;nucleotide catabolic process	FPN2
+Cre03.g192676						
+Cre03.g163450			Chloroplast			
+Cre03.g191950	GMM:27.1	RNA.processing	Chloroplast	GO:0006364	rRNA processing	CGLD31
+Cre03.g193550			Mitochondrion			MRPL46
+Cre03.g171650	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure		GO:0005524;GO:0004386;GO:0003676	ATP binding;helicase activity;nucleic acid binding	HEL16
+Cre03.g157800	GMM:21.1	redox.thioredoxin	Mitochondrion	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRX2
+Cre03.g174700			Chloroplast	GO:0006259;GO:0004531	DNA metabolic process;deoxyribonuclease II activity	
+Cre03.g145347			Chloroplast			
+Cre03.g190400						
+Cre03.g196700			Secretory pathway	GO:0016021	integral component of membrane	
+Cre03.g164800	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g144907	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family		GO:0043968;GO:0043967;GO:0035267;GO:0006338;GO:0006281	histone H2A acetylation;histone H4 acetylation;NuA4 histone acetyltransferase complex;chromatin remodeling;DNA repair	
+Cre03.g208833	GMM:28.1	DNA.synthesis/chromatin structure		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
+Cre03.g194616			Mitochondrion			
+Cre03.g191700			Mitochondrion			
+Cre03.g195000			Chloroplast			
+Cre03.g194650	GMM:33.99;GMM:33.2	development.unspecified;development.late embryogenesis abundant				FAP121
+Cre03.g202700						
+Cre03.g182300	GMM:4.3.12;GMM:4.1.12	glycolysis.unclear/dually targeted.phosphoglycerate mutase;glycolysis.cytosolic branch.phosphoglycerate mutase	Chloroplast			PGM7
+Cre03.g162950						
+Cre03.g208049			Chloroplast			
+Cre03.g145027			Mitochondrion			
+Cre03.g198651			Mitochondrion			
+Cre03.g200319						
+Cre03.g191776			Chloroplast			
+Cre03.g196200			Secretory pathway			
+Cre03.g176050						
+Cre03.g170850	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP19
+Cre03.g179860				GO:0008168	methyltransferase activity	
+Cre03.g195050	GMM:3.5	minor CHO metabolism.others	Secretory pathway			
+Cre03.g191250			Chloroplast			LCI34
+Cre03.g183700	GMM:3.6	minor CHO metabolism.callose		GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	GSL3
+Cre03.g157564						
+Cre03.g144584			Mitochondrion			
+Cre03.g169500	GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g158464						
+Cre03.g156300						FAP405
+Cre03.g201600						
+Cre03.g195100			Mitochondrion			
+Cre03.g144344	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre03.g157350						
+Cre03.g201552	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP8
+Cre03.g192201			Secretory pathway			PHC51
+Cre03.g175851	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast			
+Cre03.g208552						
+Cre03.g144244	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	
+Cre03.g180100			Chloroplast	GO:0016799;GO:0006281	"hydrolase activity, hydrolyzing N-glycosyl compounds;DNA repair"	UNG2
+Cre03.g206817			Secretory pathway			
+Cre03.g189200				GO:0009235	cobalamin metabolic process	
+Cre03.g157900						
+Cre03.g167000	GMM:29.5.11.3	protein.degradation.ubiquitin.E2		GO:0019789	SUMO transferase activity	UBC3
+Cre03.g205300			Mitochondrion	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	EXN7
+Cre03.g157475						
+Cre03.g184450	GMM:4.1.16;GMM:30.3;GMM:29.4.1;GMM:29.4	glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre03.g150600	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway			
+Cre03.g155550			Chloroplast			DNJ18
+Cre03.g164900	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g204752	GMM:27.1	RNA.processing	Mitochondrion			
+Cre03.g177200	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	CRB3
+Cre03.g199450			Chloroplast			MINE2
+Cre03.g161350			Secretory pathway			
+Cre03.g213313	GMM:11.1.4	lipid metabolism.FA synthesis and FA elongation.ACP oxoacyl reductase	Mitochondrion			
+Cre03.g166100						
+Cre03.g181650				GO:0030915;GO:0006281	Smc5-Smc6 complex;DNA repair	
+Cre03.g188200	GMM:27.1.19	RNA.processing.ribonucleases				RPH2
+Cre03.g150850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre03.g194200	GMM:8.1.1.1;GMM:11.1.31	TCA / organic transformation.TCA.pyruvate DH.E1;lipid metabolism.FA synthesis and FA elongation.pyruvate DH	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	PDH2
+Cre03.g187100						
+Cre03.g169900			Chloroplast			
+Cre03.g146767	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX11
+Cre03.g168400						
+Cre03.g192900						OPR17
+Cre03.g202001			Secretory pathway			
+Cre03.g209841			Chloroplast			
+Cre03.g169700	GMM:27.1	RNA.processing	Chloroplast	GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	tmg11
+Cre03.g201850	GMM:31.6.1.5.1;GMM:28.2;GMM:27.3.44	cell.motility.eukaryotes.radial spoke.head;DNA.repair;RNA.regulation of transcription.chromatin remodeling factors	Chloroplast	GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
+Cre03.g208300	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
+Cre03.g155350				GO:0055114;GO:0010181;GO:0004733	oxidation-reduction process;FMN binding;pyridoxamine-phosphate oxidase activity	
+Cre03.g200350			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre03.g182700				GO:0008270;GO:0005622	zinc ion binding;intracellular	
+Cre03.g144524	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	
+Cre03.g180200				GO:0005515	protein binding	
+Cre03.g146127						FAP96
+Cre03.g150000						
+Cre03.g195450	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				POC11
+Cre03.g192350			Secretory pathway	GO:0005515	protein binding	
+Cre03.g204689	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE21
+Cre03.g197900			Secretory pathway			
+Cre03.g183800						
+Cre03.g167924	GMM:29.4	protein.postranslational modification				
+Cre03.g156350			Mitochondrion			OPR15
+Cre03.g150101						NRT2.4
+Cre03.g204465			Secretory pathway			
+Cre03.g211073	GMM:29.4;GMM:17.1.3;GMM:17.1.2	protein.postranslational modification;hormone metabolism.abscisic acid.induced-regulated-responsive-activated;hormone metabolism.abscisic acid.signal transduction		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre03.g196550						
+Cre03.g173165				GO:0005515	protein binding	
+Cre03.g152326						
+Cre03.g182850			Secretory pathway			
+Cre03.g150750						
+Cre03.g152050	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX12
+Cre03.g186050						
+Cre03.g199700						PGM11
+Cre03.g146887						
+Cre03.g203100						
+Cre03.g165700	GMM:5.2	fermentation.PDC		GO:0030976;GO:0003824;GO:0000287	thiamine pyrophosphate binding;catalytic activity;magnesium ion binding	PDC3
+Cre03.g160300				GO:0005783	endoplasmic reticulum	RAMP4
+Cre03.g162450	GMM:34.99	transport.misc		GO:0016021;GO:0006810	integral component of membrane;transport	
+Cre03.g208303	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre03.g169200	GMM:23	nucleotide metabolism				
+Cre03.g201100	GMM:29.5.9;GMM:29.5.7	protein.degradation.AAA type;protein.degradation.metalloprotease	Chloroplast	GO:0005524	ATP binding	FHL1
+Cre03.g157501						
+Cre03.g191100			Secretory pathway			
+Cre03.g170200	GMM:33.99;GMM:30.3;GMM:3.3	development.unspecified;signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
+Cre03.g155250			Mitochondrion			
+Cre03.g202050						
+Cre03.g164750			Secretory pathway			
+Cre03.g199311	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole		GO:0007033;GO:0006886;GO:0005737	vacuole organization;intracellular protein transport;cytoplasm	VPS16
+Cre03.g159550						
+Cre03.g143807						
+Cre03.g191550			Mitochondrion			
+Cre03.g201417						
+Cre03.g200543	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP15
+Cre03.g180700						
+Cre03.g146567						
+Cre03.g204400	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0016021;GO:0004252	integral component of membrane;serine-type endopeptidase activity	
+Cre03.g179880			Mitochondrion			
+Cre03.g200000						
+Cre03.g206087			Mitochondrion			
+Cre03.g195700	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion			
+Cre03.g154225			Chloroplast			
+Cre03.g151200			Chloroplast			CGLD16
+Cre03.g183750			Chloroplast			OPR16
+Cre03.g163000	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				POC5
+Cre03.g169450			Chloroplast			
+Cre03.g165600			Secretory pathway			
+Cre03.g182000						
+Cre03.g202650	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase	Secretory pathway			
+Cre03.g154300						
+Cre03.g176700			Mitochondrion			CPL4
+Cre03.g151750	GMM:27.1	RNA.processing				SMP6A
+Cre03.g170625			Chloroplast			
+Cre03.g206452						
+Cre03.g145387						FAP239
+Cre03.g157300	GMM:27.2;GMM:27.1.19	RNA.transcription;RNA.processing.ribonucleases		GO:0005634	nucleus	CAF1
+Cre03.g184250	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CAM9
+Cre03.g145167	GMM:30.2.17	signalling.receptor kinases.DUF 26				
+Cre03.g148300			Mitochondrion			
+Cre03.g177650						
+Cre03.g199652			Chloroplast			
+Cre03.g191300			Chloroplast			LCI35
+Cre03.g174076						
+Cre03.g168800	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN4-1
+Cre03.g182350				GO:0006397;GO:0000445	mRNA processing;THO complex part of transcription export complex	
+Cre03.g199100						
+Cre03.g205800				GO:0005515;GO:0005096	protein binding;GTPase activator activity	
+Cre03.g145287						
+Cre03.g162400			Mitochondrion			
+Cre03.g162250				GO:0006281;GO:0005634	DNA repair;nucleus	CGL35
+Cre03.g170600						POC4
+Cre03.g144767						
+Cre03.g173100	GMM:26.3.4	"misc.gluco-, galacto- and mannosidases.endoglucanase"	Chloroplast	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
+Cre03.g166700	GMM:31.1	cell.organisation	Chloroplast			FOR1
+Cre03.g145487				GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre03.g200095	GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2;GMM:27.1;GMM:17.5.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
+Cre03.g194600			Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g143707			Secretory pathway			
+Cre03.g145547	GMM:21.99;GMM:12.1.1	redox.misc;N-metabolism.nitrate metabolism.NR	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	CBR1
+Cre03.g171050	GMM:26.3;GMM:20.1;GMM:16.5.1.3.1	"misc.gluco-, galacto- and mannosidases;stress.biotic;secondary metabolism.sulfur-containing.glucosinolates.degradation.myrosinase"		GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	GHL1
+Cre03.g145867			Mitochondrion			
+Cre03.g145687	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure		GO:0006281;GO:0004518	DNA repair;nuclease activity	
+Cre03.g185000	GMM:3.6	minor CHO metabolism.callose		GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	CALS2
+Cre03.g154000			Mitochondrion			
+Cre03.g188600	GMM:29.5	protein.degradation		GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL11
+Cre03.g187750			Chloroplast			
+Cre03.g170450						
+Cre03.g145647						
+Cre03.g145047						
+Cre03.g172550	GMM:31.3;GMM:26.6	cell.cycle;misc.O-methyl transferases		GO:0008168;GO:0006479	methyltransferase activity;protein methylation	PRMT1
+Cre03.g159851			Chloroplast			
+Cre03.g181000			Secretory pathway	GO:0016021;GO:0008146	integral component of membrane;sulfotransferase activity	
+Cre03.g203750	GMM:29.3.4.2	protein.targeting.secretory pathway.golgi	Chloroplast	GO:0016020;GO:0006886;GO:0005801	membrane;intracellular protein transport;cis-Golgi network	COG3
+Cre03.g160150						
+Cre03.g174000	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion			EFG11
+Cre03.g146507	GMM:11.8.1.2;GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids.serine C-palmitoyltransferase;lipid metabolism.exotics (steroids, squalene etc).sphingolipids"	Secretory pathway	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	SPT2
+Cre03.g145267	GMM:23.2.2.10	nucleotide metabolism.degradation.purine.guanine deaminase		GO:0008892;GO:0008270;GO:0006147	guanine deaminase activity;zinc ion binding;guanine catabolic process	
+Cre03.g178550	GMM:33.99;GMM:31.2;GMM:29.5.11.4.2	development.unspecified;cell.division;protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0016567;GO:0005515;GO:0004842	protein ubiquitination;protein binding;ubiquitin-protein transferase activity	
+Cre03.g160800	GMM:34.12	transport.metal	Mitochondrion	GO:0055085;GO:0016021;GO:0008324;GO:0006812	transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport	MTP2
+Cre03.g193450			Mitochondrion	GO:0005515	protein binding	
+Cre03.g211409			Mitochondrion			
+Cre03.g199000	GMM:30.11;GMM:29.4	signalling.light;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PHOT1
+Cre03.g173400	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525;GO:0003924	GTP binding;GTPase activity	
+Cre03.g166450			Mitochondrion			
+Cre03.g176400	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre03.g193850	GMM:8.1.6	TCA / organic transformation.TCA.succinyl-CoA ligase	Mitochondrion	GO:0048037;GO:0008152;GO:0003824	cofactor binding;metabolic process;catalytic activity	SCLA1
+Cre03.g174750	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN26-2
+Cre03.g163550						
+Cre03.g204850			Chloroplast			
+Cre03.g200650			Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CHI2
+Cre03.g170950						
+Cre03.g173900	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast			
+Cre03.g189700			Chloroplast			
+Cre03.g171300	GMM:1.2.2	PS.photorespiration.glycolate oxydase		GO:0016491	oxidoreductase activity	GYX1
+Cre03.g213537	GMM:27.3.67;GMM:27.3.50	RNA.regulation of transcription.putative transcription regulator;RNA.regulation of transcription.general transcription	Chloroplast			
+Cre03.g207601			Chloroplast	GO:0005515	protein binding	
+Cre03.g169000						
+Cre03.g154550	GMM:13.2.2.3;GMM:13.1.2.2.2	amino acid metabolism.degradation.glutamate family.arginine;amino acid metabolism.synthesis.glutamate family.proline.pyrroline-5-carboxylate reductase	Chloroplast	GO:0055114;GO:0006561;GO:0004735	oxidation-reduction process;proline biosynthetic process;pyrroline-5-carboxylate reductase activity	PCR1
+Cre03.g149350	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family				RWP4
+Cre03.g186150						
+Cre03.g201950	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			
+Cre03.g145747	GMM:13.1.6.1.7	amino acid metabolism.synthesis.aromatic aa.chorismate.chorismate synthase	Chloroplast	GO:0009073;GO:0004107	aromatic amino acid family biosynthetic process;chorismate synthase activity	
+Cre03.g185150						
+Cre03.g144011	GMM:30.6;GMM:30.2.99;GMM:30.2.20;GMM:30.2.10;GMM:30.2.1;GMM:29.4	signalling.MAP kinases;signalling.receptor kinases.misc;signalling.receptor kinases.wheat LRK10 like;signalling.receptor kinases.leucine rich repeat X;signalling.receptor kinases.leucine rich repeat I;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g158550	GMM:28.99;GMM:28.1;GMM:27.3.44	DNA.unspecified;DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors		GO:0006338;GO:0006281;GO:0005524;GO:0004003	chromatin remodeling;DNA repair;ATP binding;ATP-dependent DNA helicase activity	
+Cre03.g145507			Chloroplast			
+Cre03.g188550	GMM:29.2.2.3.1;GMM:29.2.2.2.1;GMM:28.1;GMM:27.1.2	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;protein.synthesis.ribosome biogenesis.assembly factors.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL20
+Cre03.g145927			Chloroplast			
+Cre03.g173600				GO:0005515	protein binding	
+Cre03.g167300						
+Cre03.g186550			Mitochondrion			
+Cre03.g144887			Chloroplast	GO:0005515	protein binding	
+Cre03.g179250	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family	Chloroplast			
+Cre03.g159016	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g186300	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species				DII2
+Cre03.g149300	GMM:18.7;GMM:15.2	"Co-factor and vitamine metabolism.iron-sulphur clusters;metal handling.binding, chelation and storage"		GO:0051539;GO:0051536;GO:0009451;GO:0003824	"4 iron, 4 sulfur cluster binding;iron-sulfur cluster binding;RNA modification;catalytic activity"	
+Cre03.g185750				GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre03.g185400						MAW2
+Cre03.g181700	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g202337			Mitochondrion			MOT28
+Cre03.g198851	GMM:27.3.26	RNA.regulation of transcription.MYB-related transcription factor family	Chloroplast			
+Cre03.g195350	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006464;GO:0004719	cellular protein modification process;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	PIMT1
+Cre03.g160700	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family	Chloroplast	GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre03.g183900			Chloroplast			
+Cre03.g152850			Secretory pathway	GO:0055114;GO:0016715;GO:0005515;GO:0005507;GO:0004497	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;protein binding;copper ion binding;monooxygenase activity"	
+Cre03.g202673			Secretory pathway			CSC2
+Cre03.g202400	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Chloroplast			MCP10
+Cre03.g148900	GMM:26.7	"misc.oxidases - copper, flavone etc"				FMO5
+Cre03.g190150			Chloroplast			CGL1
+Cre03.g144384						
+Cre03.g207901						
+Cre03.g193600			Secretory pathway			
+Cre03.g155800				GO:0006413;GO:0003743;GO:0003723	translational initiation;translation initiation factor activity;RNA binding	
+Cre03.g198224						
+Cre03.g144564	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP13
+Cre03.g204751			Mitochondrion	GO:0016780;GO:0016020;GO:0008654	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	
+Cre03.g146307	GMM:26.16;GMM:17.7.3	misc.myrosinases-lectin-jacalin;hormone metabolism.jasmonate.induced-regulated-responsive-activated				
+Cre03.g152425				GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	
+Cre03.g156450			Mitochondrion			
+Cre03.g198550	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g151050	GMM:29.5.11.5;GMM:28.99	protein.degradation.ubiquitin.ubiquitin protease;DNA.unspecified		GO:0005515	protein binding	
+Cre03.g170700			Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	
+Cre03.g194100	GMM:30.6;GMM:3.6;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK3
+Cre03.g191850	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Mitochondrion			
+Cre03.g203000			Mitochondrion			
+Cre03.g144124						
+Cre03.g196800				GO:0016021	integral component of membrane	
+Cre03.g180500			Secretory pathway			
+Cre03.g202750			Mitochondrion			
+Cre03.g207041						
+Cre03.g195150						
+Cre03.g165169						
+Cre03.g190200						
+Cre03.g183451						
+Cre03.g198200	GMM:3.6	minor CHO metabolism.callose		GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	GSL4
+Cre03.g155450			Mitochondrion			
+Cre03.g157650						
+Cre03.g207000			Chloroplast			
+Cre03.g178700						
+Cre03.g150200						
+Cre03.g201750			Chloroplast			
+Cre03.g164650	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	MOT1
+Cre03.g146207	GMM:26.13	misc.acid and other phosphatases	Secretory pathway	GO:0016787	hydrolase activity	MPA1
+Cre03.g209057			Mitochondrion			
+Cre03.g145307						
+Cre03.g170300	GMM:29.5.1	protein.degradation.subtilases	Mitochondrion	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB5
+Cre03.g151450						
+Cre03.g156476						
+Cre03.g178350	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols				FAP272
+Cre03.g151300	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g187000	GMM:31.4	cell.vesicle transport				
+Cre03.g152750	GMM:29.6.2.6;GMM:20.2.1	protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat				BAG6
+Cre03.g173300			Secretory pathway			
+Cre03.g207750	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre03.g154900	GMM:35.1.41	not assigned.no ontology.hydroxyproline rich proteins				
+Cre03.g159400			Secretory pathway	GO:0008641	small protein activating enzyme activity	
+Cre03.g167778			Mitochondrion			FAP382
+Cre03.g148500			Secretory pathway			PWR6
+Cre03.g149001			Mitochondrion			
+Cre03.g201776				GO:0005515	protein binding	
+Cre03.g150950	GMM:29.7	protein.glycosylation				DPM1
+Cre03.g161450						
+Cre03.g143747						
+Cre03.g164000	GMM:1.1.40	PS.lightreaction.cyclic electron flow-chlororespiration	Chloroplast			ANR1
+Cre03.g176325						
+Cre03.g182800	GMM:13.2.4.1;GMM:13.1.1.3.11	amino acid metabolism.degradation.branched chain group.shared;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase		GO:0030170;GO:0008483	pyridoxal phosphate binding;transaminase activity	AGT2
+Cre03.g168300						
+Cre03.g195250			Mitochondrion			
+Cre03.g161850						
+Cre03.g203681			Secretory pathway	GO:0006367;GO:0006366;GO:0005674	transcription initiation from RNA polymerase II promoter;transcription from RNA polymerase II promoter;transcription factor TFIIF complex	
+Cre03.g204500						CSE17
+Cre03.g206201			Mitochondrion			
+Cre03.g171850						
+Cre03.g187200	GMM:31.1	cell.organisation		GO:0007017;GO:0005875	microtubule-based process;microtubule associated complex	DLL2
+Cre03.g177100			Secretory pathway			
+Cre03.g144707	GMM:4.2.2;GMM:4.1.2	glycolysis.plastid branch.phosphoglucomutase (PGM);glycolysis.cytosolic branch.phosphoglucomutase (PGM)	Chloroplast	GO:0016868;GO:0005975	"intramolecular transferase activity, phosphotransferases;carbohydrate metabolic process"	
+Cre03.g178100	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	protein binding	
+Cre03.g143867			Secretory pathway			
+Cre03.g181350	GMM:29.2.1.1.3.2.17	protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L17		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL17
+Cre03.g146607			Secretory pathway			
+Cre03.g145607	GMM:34.99	transport.misc		GO:0016192	vesicle-mediated transport	BET3
+Cre03.g204600			Secretory pathway			
+Cre03.g177450			Chloroplast	GO:0004518	nuclease activity	
+Cre03.g168750						
+Cre03.g159254	GMM:34.5	transport.ammonium		GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	
+Cre03.g197850			Mitochondrion			
+Cre03.g175800			Chloroplast	GO:0008168;GO:0006364	methyltransferase activity;rRNA processing	
+Cre03.g179901			Mitochondrion			
+Cre03.g153050						RWP1
+Cre03.g168100						
+Cre03.g204241						
+Cre03.g148350			Chloroplast			
+Cre03.g184100				GO:0016818;GO:0008270;GO:0003676	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;zinc ion binding;nucleic acid binding"	
+Cre03.g204200						
+Cre03.g180750	GMM:13.1.3.4.3;GMM:13.1.3.4	amino acid metabolism.synthesis.aspartate family.methionine.methionine synthase;amino acid metabolism.synthesis.aspartate family.methionine		GO:0009086;GO:0008652;GO:0008270;GO:0003871	methionine biosynthetic process;cellular amino acid biosynthetic process;zinc ion binding;5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity	METE
+Cre03.g184750						
+Cre03.g145447	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0006464	cellular protein modification process	
+Cre03.g161400	GMM:13.1.6.5.5	amino acid metabolism.synthesis.aromatic aa.tryptophan.tryptophan synthase	Chloroplast			MAA7
+Cre03.g201350			Chloroplast			
+Cre03.g179000			Mitochondrion			
+Cre03.g150500				GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SNE10
+Cre03.g204212			Chloroplast			
+Cre03.g205400			Secretory pathway	GO:0005515	protein binding	
+Cre03.g163350			Mitochondrion	GO:0055114;GO:0050661;GO:0016491;GO:0008677	oxidation-reduction process;NADP binding;oxidoreductase activity;2-dehydropantoate 2-reductase activity	PAN5
+Cre03.g186850			Mitochondrion			
+Cre03.g156050	GMM:31.2;GMM:29.2.5	cell.division;protein.synthesis.release	Chloroplast	GO:0006412	translation	
+Cre03.g163266			Chloroplast			
+Cre03.g146727	GMM:24	biodegradation of xenobiotics	Mitochondrion			GOX9
+Cre03.g194350						
+Cre03.g157100						
+Cre03.g174150	GMM:31.1	cell.organisation	Chloroplast	GO:0005515	protein binding	
+Cre03.g182150	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF8
+Cre03.g149700			Chloroplast			
+Cre03.g191650			Mitochondrion			
+Cre03.g155750			Secretory pathway			PHC65
+Cre03.g158100						
+Cre03.g185500	GMM:31.6.1.10;GMM:26.13	cell.motility.eukaryotes.flagellar associated proteins;misc.acid and other phosphatases		GO:0003993	acid phosphatase activity	VIP1
+Cre03.g201200			Mitochondrion			FAP283
+Cre03.g145087	GMM:34.12	transport.metal		GO:0055085;GO:0016021;GO:0008324;GO:0006812	transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport	MTP1
+Cre03.g172300	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Mitochondrion			MPC5
+Cre03.g145887	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0016021	integral component of membrane	TATC
+Cre03.g181250	GMM:30.11	signalling.light	Chloroplast			CGLD13
+Cre03.g172322						
+Cre03.g181576			Chloroplast			
+Cre03.g146247	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I		GO:0022900;GO:0016651	"electron transport chain;oxidoreductase activity, acting on NAD(P)H"	NUOS4
+Cre03.g170100			Mitochondrion			
+Cre03.g190550				GO:0016592;GO:0006357;GO:0001104	mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity	
+Cre03.g199800	GMM:5;GMM:33.99;GMM:1.1.7.1	fermentation;development.unspecified;PS.lightreaction.hydrogenase.FeFe-hydrogenase	Chloroplast			HYDA1
+Cre03.g155976						
+Cre03.g144947	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family				
+Cre03.g161100	GMM:29.3.1	protein.targeting.nucleus	Mitochondrion			
+Cre03.g204950				GO:0003676	nucleic acid binding	
+Cre03.g199535	GMM:27.3.99;GMM:27.3.23;GMM:1.1.99	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.heat-shock transcription factor family (HSF);PS.lightreaction.unspecified	Chloroplast			LHL3
+Cre03.g145967	GMM:29.1.10;GMM:29.1	protein.aa activation.methionine-tRNA ligase;protein.aa activation	Mitochondrion	GO:0000049	tRNA binding	
+Cre03.g207152			Secretory pathway			
+Cre03.g204913						
+Cre03.g144667			Chloroplast			CLPT4
+Cre03.g166650	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	CGLD3
+Cre03.g187700	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL19
+Cre03.g192100			Secretory pathway			
+Cre03.g145207			Chloroplast			CPLD33
+Cre03.g159100			Secretory pathway			
+Cre03.g196050						
+Cre03.g190050	GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
+Cre03.g210737			Secretory pathway			
+Cre03.g172200						
+Cre03.g202150	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases				DMC2
+Cre03.g192600	GMM:23.3.2.3	nucleotide metabolism.salvage.nucleoside kinases.thymidine kinase	Chloroplast	GO:0005524;GO:0004797	ATP binding;thymidine kinase activity	THK1
+Cre03.g179840			Secretory pathway			
+Cre03.g207250	GMM:12.2.2	N-metabolism.ammonia metabolism.glutamine synthetase				GLN4
+Cre03.g163800						
+Cre03.g153076	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Mitochondrion			RWP1
+Cre03.g195388			Chloroplast			
+Cre03.g178450	GMM:29.9;GMM:29.6.2.6;GMM:29.6;GMM:29.4	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding;protein.postranslational modification	Mitochondrion	GO:0006457;GO:0005737	protein folding;cytoplasm	CPN10
+Cre03.g144444						
+Cre03.g197750	GMM:21.2.2;GMM:21.2	redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione	Chloroplast	GO:0055114;GO:0016491;GO:0016209;GO:0006979;GO:0004602	oxidation-reduction process;oxidoreductase activity;antioxidant activity;response to oxidative stress;glutathione peroxidase activity	GPX3
+Cre03.g167200				GO:0007165;GO:0005515	signal transduction;protein binding	
+Cre03.g169350			Chloroplast			
+Cre03.g184900						
+Cre03.g210065	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g150800	GMM:26.27;GMM:26.13	misc.calcineurin-like phosphoesterase family protein;misc.acid and other phosphatases				
+Cre03.g161000	GMM:23.2	nucleotide metabolism.degradation		GO:0019239	deaminase activity	
+Cre03.g155501			Mitochondrion	GO:0016021	integral component of membrane	
+Cre03.g208721	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Mitochondrion	GO:0015969	guanosine tetraphosphate metabolic process	CGL92
+Cre03.g160900	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre03.g163650			Chloroplast			
+Cre03.g158250			Mitochondrion	GO:0016020;GO:0015031	membrane;protein transport	SECY2
+Cre03.g183300			Chloroplast	GO:2001070	starch binding	
+Cre03.g193676			Chloroplast			
+Cre03.g189150						
+Cre03.g169100	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre03.g178050	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Mitochondrion	GO:0005515	protein binding	MOT51
+Cre03.g149550						
+Cre03.g166900	GMM:26.1	misc.misc2	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP767A1
+Cre03.g189605	GMM:33.99;GMM:27.3.44	development.unspecified;RNA.regulation of transcription.chromatin remodeling factors		GO:0016593;GO:0016570;GO:0006355	"Cdc73/Paf1 complex;histone modification;regulation of transcription, DNA-templated"	
+Cre03.g200950						FAP273
+Cre03.g144064			Chloroplast			
+Cre03.g174672			Mitochondrion			
+Cre03.g189500				GO:0016787	hydrolase activity	
+Cre03.g153100			Secretory pathway			
+Cre03.g175500			Mitochondrion	GO:0016021	integral component of membrane	
+Cre03.g194800	GMM:27.1.3.14;GMM:27.1	RNA.processing.3' end processing.Clp1;RNA.processing		GO:0031124	mRNA 3'-end processing	
+Cre03.g179450	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR7
+Cre03.g201215						
+Cre03.g165215	GMM:29.5.2	protein.degradation.autophagy		GO:0008641;GO:0006914;GO:0005737	small protein activating enzyme activity;autophagy;cytoplasm	APG7
+Cre03.g179800	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Chloroplast			LCI24
+Cre03.g148050	GMM:28.2	DNA.repair	Mitochondrion	GO:0006281;GO:0003684	DNA repair;damaged DNA binding	POLI1
+Cre03.g206550			Chloroplast			CPLD2
+Cre03.g158900	GMM:8.1.1.2;GMM:11.1.31	TCA / organic transformation.TCA.pyruvate DH.E2;lipid metabolism.FA synthesis and FA elongation.pyruvate DH	Chloroplast	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	DLA2
+Cre03.g166201						
+Cre03.g160600	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre03.g179700	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Mitochondrion			
+Cre03.g158650						
+Cre03.g164400			Chloroplast			
+Cre03.g175050	GMM:34.99	transport.misc		GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity	TRP13
+Cre03.g205900	GMM:22.1.2	polyamine metabolism.synthesis.SAM decarboxylase		GO:0008295;GO:0006597;GO:0004014	spermidine biosynthetic process;spermine biosynthetic process;adenosylmethionine decarboxylase activity	DCA1
+Cre03.g197150						
+Cre03.g172650	GMM:31.6.1.1;GMM:31.1.1.2;GMM:31.1	cell.motility.eukaryotes.basal bodies;cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007017;GO:0005874;GO:0003924	microtubule-based process;microtubule;GTPase activity	BLD2
+Cre03.g183150						
+Cre03.g169800	GMM:28.99;GMM:27.3.99	DNA.unspecified;RNA.regulation of transcription.unclassified		GO:0016888	"endodeoxyribonuclease activity, producing 5'-phosphomonoesters"	
+Cre03.g176961			Secretory pathway			
+Cre03.g157725						
+Cre03.g167550	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies		GO:0060271;GO:0005813;GO:0005634	cilium morphogenesis;centrosome;nucleus	CEP290
+Cre03.g186450	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	LNM1
+Cre03.g188450						PTX2
+Cre03.g166550			Secretory pathway			
+Cre03.g186250						
+Cre03.g149450			Chloroplast			
+Cre03.g206145			Mitochondrion			
+Cre03.g199200			Mitochondrion			
+Cre03.g175351			Chloroplast			LMR2
+Cre03.g206850			Secretory pathway			
+Cre03.g208557			Chloroplast			
+Cre03.g171600	GMM:26.13	misc.acid and other phosphatases	Chloroplast	GO:0016787	hydrolase activity	
+Cre03.g203600	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase		GO:0008081;GO:0006629	phosphoric diester hydrolase activity;lipid metabolic process	GDP6
+Cre03.g144847	GMM:4.3.14;GMM:4.2.14;GMM:4.1.14;GMM:11.1.30	glycolysis.unclear/dually targeted.pyruvate kinase (PK);glycolysis.plastid branch.pyruvate kinase (PK);glycolysis.cytosolic branch.pyruvate kinase (PK);lipid metabolism.FA synthesis and FA elongation.pyruvate kinase		GO:0030955;GO:0006096;GO:0004743;GO:0000287	potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding	PYK4
+Cre03.g153950	GMM:34.99	transport.misc		GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity	TRP12
+Cre03.g193750	GMM:13.2.5.2;GMM:1.2.4.2	amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;PS.photorespiration.glycine cleavage.T subunit	Mitochondrion			GCST
+Cre03.g177550	GMM:31.1	cell.organisation				
+Cre03.g182500	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0048500;GO:0008312;GO:0006614	signal recognition particle;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane	SRP72
+Cre03.g199850			Mitochondrion			
+Cre03.g194950	GMM:27.3.99;GMM:27.3.85;GMM:27.2	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.sigma like plant;RNA.transcription	Chloroplast	GO:0016987;GO:0006355;GO:0006352;GO:0003700;GO:0003677	"sigma factor activity;regulation of transcription, DNA-templated;DNA-templated transcription, initiation;transcription factor activity, sequence-specific DNA binding;DNA binding"	RPOD
+Cre03.g151150						
+Cre03.g155600						
+Cre03.g144184			Chloroplast			
+Cre03.g169300	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre03.g193150						
+Cre03.g194000	GMM:27.1.1	RNA.processing.splicing				
+Cre03.g170800	GMM:26.23	misc.rhodanese	Chloroplast			
+Cre03.g176866						
+Cre03.g200200	GMM:31.3;GMM:30.6;GMM:29.4.1;GMM:29.4	cell.cycle;signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g171500			Chloroplast			
+Cre03.g193900	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF				
+Cre03.g163900			Chloroplast			PWR3
+Cre03.g149500	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0005737	cytoplasm	
+Cre03.g151900			Secretory pathway			LZY1A
+Cre03.g175250	GMM:11.8.8;GMM:11.8	"lipid metabolism.exotics (steroids, squalene etc).squalene synthase;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016740;GO:0009058	transferase activity;biosynthetic process	SQS1
+Cre03.g159150	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre03.g171751			Secretory pathway			
+Cre03.g196250	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP3
+Cre03.g164250	GMM:31.3;GMM:29.4.1;GMM:29.4	cell.cycle;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005515;GO:0004672	protein phosphorylation;protein binding;protein kinase activity	FAP262
+Cre03.g172376			Secretory pathway			
+Cre03.g206000				GO:0005515	protein binding	
+Cre03.g172050				GO:0006355;GO:0006289;GO:0000439	"regulation of transcription, DNA-templated;nucleotide-excision repair;core TFIIH complex"	TFB4
+Cre03.g203850	GMM:23.4.1;GMM:14.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase;S-assimilation.APS	Chloroplast	GO:0004781	sulfate adenylyltransferase (ATP) activity	ATS1
+Cre03.g152550	GMM:33.99	development.unspecified	Secretory pathway	GO:0005515	protein binding	
+Cre03.g144967	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0005524	ATP binding	
+Cre03.g146007			Chloroplast			
+Cre03.g157326			Mitochondrion			
+Cre03.g144204				GO:0051861;GO:0046836;GO:0017089;GO:0005737	glycolipid binding;glycolipid transport;glycolipid transporter activity;cytoplasm	
+Cre03.g198100						BET1
+Cre03.g200450			Mitochondrion			
+Cre03.g143847			Secretory pathway			
+Cre03.g193650			Chloroplast			
+Cre03.g157426			Mitochondrion			
+Cre03.g146847						
+Cre03.g156250						FAP186
+Cre03.g176750			Chloroplast			
+Cre03.g160953	GMM:27.1.19	RNA.processing.ribonucleases	Secretory pathway	GO:0055085;GO:0042626;GO:0033897;GO:0016021;GO:0006810;GO:0005524;GO:0003723	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ribonuclease T2 activity;integral component of membrane;transport;ATP binding;RNA binding"	
+Cre03.g195650	GMM:29.2.1.1.1.1.10	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S10	Chloroplast	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	PRPS10
+Cre03.g145987						
+Cre03.g168700	GMM:3.99;GMM:1.2.1	minor CHO metabolism.misc;PS.photorespiration.phosphoglycolate phosphatase				PGP1
+Cre03.g182400				GO:0008270	zinc ion binding	
+Cre03.g157150			Chloroplast			
+Cre03.g174476	GMM:31.3	cell.cycle		GO:0019901;GO:0016592;GO:0016538;GO:0006355;GO:0000079	"protein kinase binding;mediator complex;cyclin-dependent protein serine/threonine kinase regulator activity;regulation of transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	CYCC1
+Cre03.g172850	GMM:13.1.5.3.1	amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.OASTL	Chloroplast			OASTL3
+Cre03.g177950			Secretory pathway			
+Cre03.g153300						
+Cre03.g144304						
+Cre03.g201103			Mitochondrion			RAA7
+Cre03.g210625	GMM:28.2;GMM:27.3.44	DNA.repair;RNA.regulation of transcription.chromatin remodeling factors	Chloroplast	GO:0008270;GO:0005524;GO:0005515	zinc ion binding;ATP binding;protein binding	
+Cre03.g188001						
+Cre03.g160200	GMM:26.7;GMM:13.2.2.2	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH12
+Cre03.g170428						
+Cre03.g196850	GMM:33.99;GMM:29.2.2.3.4;GMM:27.2	development.unspecified;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins;RNA.transcription		GO:0006364;GO:0005730;GO:0005515	rRNA processing;nucleolus;protein binding	
+Cre03.g189000	GMM:28.2;GMM:28.1;GMM:27.3.44	DNA.repair;DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors	Chloroplast	GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	RAD54A
+Cre03.g178300	GMM:27.1.1	RNA.processing.splicing				
+Cre03.g182200			Secretory pathway			
+Cre03.g145407				GO:0046872	metal ion binding	
+Cre03.g156500			Chloroplast			
+Cre03.g185300	GMM:3.8.1;GMM:10.1.30.2	minor CHO metabolism.galactose.galactokinases;cell wall.precursor synthesis.sugar kinases.arabinose-1-kinase		GO:0005524	ATP binding	
+Cre03.g208000	GMM:28.99;GMM:28.1;GMM:27.3.99	DNA.unspecified;DNA.synthesis/chromatin structure;RNA.regulation of transcription.unclassified	Chloroplast			
+Cre03.g199871						
+Cre03.g169050				GO:0007005;GO:0004842	mitochondrion organization;ubiquitin-protein transferase activity	
+Cre03.g195300						
+Cre03.g190750	GMM:23.4.4	nucleotide metabolism.phosphotransfer and pyrophosphatases.thymidylate kinase	Mitochondrion			
+Cre03.g198000	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722	protein dephosphorylation;protein serine/threonine phosphatase activity	
+Cre03.g209281	GMM:31.4	cell.vesicle transport		GO:0016192;GO:0006886	vesicle-mediated transport;intracellular protein transport	
+Cre03.g201301			Chloroplast	GO:0055114	oxidation-reduction process	
+Cre03.g171150			Secretory pathway			
+Cre03.g184400	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases		GO:0016787	hydrolase activity	
+Cre03.g176250	GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase		GO:0033179;GO:0015991;GO:0015078	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVD1
+Cre03.g204350	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			CLPR4
+Cre03.g210513	GMM:17.7.1.5	hormone metabolism.jasmonate.synthesis-degradation.12-oxophytodienoate reductase 3	Chloroplast	GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	nfo3
+Cre03.g189450				GO:0016787	hydrolase activity	
+Cre03.g159650	GMM:29.2.4	protein.synthesis.elongation				EFG6
+Cre03.g213649			Secretory pathway			
+Cre03.g149517			Mitochondrion			
+Cre03.g188950						
+Cre03.g180350	GMM:31.3;GMM:29.4.1	cell.cycle;protein.postranslational modification.kinase		GO:0016538;GO:0007049	cyclin-dependent protein serine/threonine kinase regulator activity;cell cycle	CKS1
+Cre03.g177826			Chloroplast			
+Cre03.g205000						IDA3
+Cre03.g202875			Mitochondrion			
+Cre03.g152250						
+Cre03.g160550	GMM:34.12	transport.metal		GO:0055085;GO:0016021;GO:0008324;GO:0006812	transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport	MTP4
+Cre03.g161950						
+Cre03.g158500	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast			
+Cre03.g160000	GMM:27.3.55	RNA.regulation of transcription.HDA	Mitochondrion			HDA3
+Cre03.g188400	GMM:20.1.1	stress.biotic.respiratory burst		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	RBO2
+Cre03.g168200	GMM:31.6.1.6.2	cell.motility.eukaryotes.central pair.C1b				FAP69
+Cre03.g176100						
+Cre03.g160650						
+Cre03.g188700	GMM:31.1	cell.organisation	Chloroplast			PLAP6
+Cre03.g184800	GMM:23.2	nucleotide metabolism.degradation	Secretory pathway	GO:0016787	hydrolase activity	
+Cre03.g191900	GMM:29.5.11.5;GMM:29.5.11	protein.degradation.ubiquitin.ubiquitin protease;protein.degradation.ubiquitin	Secretory pathway			
+Cre03.g146707				GO:0008242	omega peptidase activity	
+Cre03.g197650			Chloroplast			
+Cre03.g152950	GMM:29.1.30	protein.aa activation.pseudouridylate synthase		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS12
+Cre03.g179500	GMM:26.7;GMM:13.2.2.2	"misc.oxidases - copper, flavone etc;amino acid metabolism.degradation.glutamate family.proline"		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH13
+Cre03.g208385						
+Cre03.g150300	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols				CAM8
+Cre03.g164550	GMM:27.3	RNA.regulation of transcription				
+Cre03.g144727			Mitochondrion	GO:0016021;GO:0004252	integral component of membrane;serine-type endopeptidase activity	RBL2
+Cre03.g161150			Secretory pathway			PHC63
+Cre03.g193500	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase		GO:0006629	lipid metabolic process	CGLD15
+Cre03.g197200			Mitochondrion			
+Cre03.g152500	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	
+Cre03.g180900			Chloroplast			
+Cre03.g153850			Secretory pathway			
+Cre03.g201550	GMM:29.5.7	protein.degradation.metalloprotease				MMP20
+Cre03.g149851			Chloroplast			
+Cre03.g208556	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre03.g162050	GMM:27.3.55	RNA.regulation of transcription.HDA	Mitochondrion			HDA4
+Cre03.g205697	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX		GO:0005515	protein binding	FAP350
+Cre03.g186900						
+Cre03.g180600				GO:0016787;GO:0009166	hydrolase activity;nucleotide catabolic process	FPN3
+Cre03.g186350			Mitochondrion			
+Cre03.g206257	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g174850	GMM:11.6	lipid metabolism.lipid transfer proteins etc	Secretory pathway	GO:0008289	lipid binding	CGL111
+Cre03.g196150						
+Cre03.g190250	GMM:29.5.1	protein.degradation.subtilases		GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB6
+Cre03.g181150	GMM:31.6.1.5.2;GMM:31.1	cell.motility.eukaryotes.radial spoke.stalk;cell.organisation		GO:0007017;GO:0005875	microtubule-based process;microtubule associated complex	FLA14
+Cre03.g183200	GMM:31.6.1.6.2	cell.motility.eukaryotes.central pair.C1b				CPC1
+Cre03.g144607			Chloroplast			
+Cre03.g167351			Chloroplast			
+Cre03.g146327			Secretory pathway			
+Cre03.g190850						ECH1
+Cre03.g167101			Mitochondrion			
+Cre03.g143947			Chloroplast			
+Cre03.g198800	GMM:27.3.26	RNA.regulation of transcription.MYB-related transcription factor family				
+Cre03.g151650			Chloroplast			
+Cre03.g154651						
+Cre03.g198500						
+Cre03.g207700	GMM:16.1.2.9	secondary metabolism.isoprenoids.mevalonate pathway.farnesyl pyrophosphate synthetase		GO:0008299	isoprenoid biosynthetic process	FPS1
+Cre03.g191400			Secretory pathway			
+Cre03.g187600						
+Cre03.g144484	GMM:30.3;GMM:3.3;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre03.g144544			Chloroplast			
+Cre03.g149150			Chloroplast			
+Cre03.g207650	GMM:34.12	transport.metal	Secretory pathway	GO:0046872;GO:0030001	metal ion binding;metal ion transport	
+Cre03.g167756			Secretory pathway			
+Cre03.g157000	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG1
+Cre03.g179600						
+Cre03.g192750			Chloroplast			
+Cre03.g198863				GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	
+Cre03.g162800	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Secretory pathway			LCI1
+Cre03.g203300			Mitochondrion			
+Cre03.g167644			Chloroplast			
+Cre03.g212305						FAP181
+Cre03.g174250				GO:0008171	O-methyltransferase activity	FAP111
+Cre03.g164850						
+Cre03.g155001	GMM:2.1.2.4	major CHO metabolism.synthesis.starch.debranching	Chloroplast	GO:0043169;GO:0005975;GO:0004553;GO:0003824	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	ISA1
+Cre03.g166300						
+Cre03.g201439			Chloroplast			
+Cre03.g179100	GMM:27.1	RNA.processing	Mitochondrion	GO:0006511;GO:0005515	ubiquitin-dependent protein catabolic process;protein binding	UFD1b
+Cre03.g175451						
+Cre03.g205550			Secretory pathway			
+Cre03.g165100			Chloroplast	GO:0015979;GO:0009522	photosynthesis;photosystem I	PSAI
+Cre03.g189901			Mitochondrion			
+Cre03.g200900						
+Cre03.g177350	GMM:33.99	development.unspecified	Chloroplast			
+Cre03.g146627	GMM:12.2.2	N-metabolism.ammonia metabolism.glutamine synthetase		GO:0006807;GO:0004356	nitrogen compound metabolic process;glutamate-ammonia ligase activity	
+Cre03.g199250	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG51
+Cre03.g168050	GMM:27.3.52;GMM:27.3.42	RNA.regulation of transcription.global transcription factor group;RNA.regulation of transcription.bromodomain proteins		GO:0005515	protein binding	
+Cre03.g178850			Chloroplast			
+Cre03.g153700						FAP347
+Cre03.g201163			Mitochondrion			
+Cre03.g207050	GMM:29.2.1.2.2.29	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L29		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL29
+Cre03.g165350			Secretory pathway			
+Cre03.g145907	GMM:29.2.2.3.3;GMM:27.3.67	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases;RNA.regulation of transcription.putative transcription regulator		GO:0032259;GO:0008168;GO:0001510	methylation;methyltransferase activity;RNA methylation	
+Cre03.g187150						
+Cre03.g184950			Secretory pathway			MAW3
+Cre03.g163700						
+Cre03.g145247	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF11
+Cre03.g197400						SEL1
+Cre03.g166000			Secretory pathway			
+Cre03.g157526						
+Cre03.g195950			Mitochondrion			
+Cre03.g161750			Secretory pathway			
+Cre03.g177800			Secretory pathway			
+Cre03.g154350	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Mitochondrion	GO:0022900;GO:0016021	electron transport chain;integral component of membrane	COX2A
+Cre03.g206952			Mitochondrion			
+Cre03.g206200			Secretory pathway			
+Cre03.g162650	GMM:25.5	C1-metabolism.methylenetetrahydrofolate dehydrogenase and methenyltetrahydrofolate cyclohydrolase	Mitochondrion	GO:0055114;GO:0009396;GO:0004488;GO:0003824	oxidation-reduction process;folic acid-containing compound biosynthetic process;methylenetetrahydrofolate dehydrogenase (NADP+) activity;catalytic activity	
+Cre03.g202897	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				ubc25
+Cre03.g202202			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre03.g145627						
+Cre03.g201851			Chloroplast			
+Cre03.g203233						
+Cre03.g185250	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase	Chloroplast			SSS2
+Cre03.g153400			Mitochondrion			
+Cre03.g178075			Chloroplast			
+Cre03.g208553			Mitochondrion			
+Cre03.g144787	GMM:21.1	redox.thioredoxin		GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	
+Cre03.g197450						
+Cre03.g175750						
+Cre03.g185900						
+Cre03.g163400						
+Cre03.g184050			Chloroplast	GO:0030677;GO:0008033;GO:0006379;GO:0006364;GO:0004540;GO:0003723;GO:0000172	ribonuclease P complex;tRNA processing;mRNA cleavage;rRNA processing;ribonuclease activity;RNA binding;ribonuclease MRP complex	
+Cre03.g163150						
+Cre03.g213089			Mitochondrion			
+Cre03.g211633			Mitochondrion	GO:0046677	response to antibiotic	
+Cre03.g175650			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre03.g205200	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB21
+Cre03.g165801			Chloroplast	GO:0005515	protein binding	
+Cre03.g162500	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
+Cre03.g187250			Secretory pathway			
+Cre03.g156150	GMM:29.2.2.3.5;GMM:28.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL13
+Cre03.g156600			Chloroplast			
+Cre03.g150783						
+Cre03.g181900			Chloroplast			
+Cre03.g143887	GMM:29.1.19	protein.aa activation.arginine-tRNA ligase		GO:0006420;GO:0005737;GO:0005524;GO:0004814;GO:0000166	arginyl-tRNA aminoacylation;cytoplasm;ATP binding;arginine-tRNA ligase activity;nucleotide binding	
+Cre03.g196950						
+Cre03.g193400	GMM:27.3.85;GMM:27.2	RNA.regulation of transcription.sigma like plant;RNA.transcription		GO:0016987;GO:0006355;GO:0006352;GO:0003700;GO:0003677	"sigma factor activity;regulation of transcription, DNA-templated;DNA-templated transcription, initiation;transcription factor activity, sequence-specific DNA binding;DNA binding"	
+Cre03.g192501			Chloroplast			
+Cre03.g166850	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion			
+Cre03.g195850	GMM:29.4;GMM:27.3.67	protein.postranslational modification;RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0055114;GO:0033743;GO:0030091;GO:0016671;GO:0006979	"oxidation-reduction process;peptide-methionine (R)-S-oxide reductase activity;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;response to oxidative stress"	
+Cre03.g183650	GMM:11.9.3.3	lipid metabolism.lipid degradation.lysophospholipases.glycerophosphodiester phosphodiesterase	Secretory pathway	GO:0008889;GO:0008081;GO:0006629	glycerophosphodiester phosphodiesterase activity;phosphoric diester hydrolase activity;lipid metabolic process	GDP4
+Cre03.g174050	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	MRP4
+Cre03.g198450						
+Cre03.g201000			Chloroplast			
+Cre03.g170900						
+Cre03.g205450			Secretory pathway			
+Cre03.g162550	GMM:13.1.3.4	amino acid metabolism.synthesis.aspartate family.methionine		GO:0009116;GO:0003824	nucleoside metabolic process;catalytic activity	
+Cre03.g165500						
+Cre03.g164500	GMM:27.3	RNA.regulation of transcription	Secretory pathway			
+Cre03.g158350			Mitochondrion			
+Cre03.g180000			Chloroplast			
+Cre03.g144144			Mitochondrion			
+Cre03.g152100	GMM:28.99;GMM:27.1.19	DNA.unspecified;RNA.processing.ribonucleases		GO:0004527;GO:0003676	exonuclease activity;nucleic acid binding	XRN2
+Cre03.g156650				GO:0006468;GO:0005524;GO:0004674	protein phosphorylation;ATP binding;protein serine/threonine kinase activity	
+Cre03.g202500			Mitochondrion			
+Cre03.g167450			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre03.g210289						
+Cre03.g170550			Chloroplast			
+Cre03.g206351			Secretory pathway			
+Cre03.g178500	GMM:31.6.1.11	cell.motility.eukaryotes.other				RIB43
+Cre03.g206750						
+Cre03.g193000						HAD5
+Cre03.g144264	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g208161						
+Cre03.g195550	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase				
+Cre03.g202600						
+Cre03.g154150	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005096	GTPase activator activity	
+Cre03.g207900	GMM:31.3;GMM:31.2	cell.cycle;cell.division	Mitochondrion	GO:0005634	nucleus	CYCA1
+Cre03.g207502	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast	GO:0008270	zinc ion binding	
+Cre03.g184550	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			CPLD28
+Cre03.g194500				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g189300	GMM:31.1	cell.organisation	Chloroplast			PLAP10
+Cre03.g196651	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RAD10
+Cre03.g188850			Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g176930						
+Cre03.g181450			Secretory pathway			
+Cre03.g200351			Chloroplast			
+Cre03.g193800	GMM:29.1.22	protein.aa activation.asparagine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	TSN1
+Cre03.g158950	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003676	nucleic acid binding	
+Cre03.g157250	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g181050			Secretory pathway			
+Cre03.g171700				GO:0080019	fatty-acyl-CoA reductase (alcohol-forming) activity	
+Cre03.g145007			Mitochondrion			
+Cre03.g146427			Mitochondrion			
+Cre03.g202225						
+Cre03.g171200	GMM:23.2	nucleotide metabolism.degradation	Secretory pathway	GO:0016787	hydrolase activity	
+Cre03.g169601	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB18
+Cre03.g181750			Secretory pathway			
+Cre03.g186700						
+Cre03.g208100	GMM:27.1.19	RNA.processing.ribonucleases	Mitochondrion			RNB1
+Cre03.g170500						
+Cre03.g208945						
+Cre03.g212081			Mitochondrion			
+Cre03.g200767						CSR9
+Cre03.g172950	GMM:29.2.2.3.1;GMM:28.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;DNA.synthesis/chromatin structure		GO:0006396;GO:0003723	RNA processing;RNA binding	PUS21
+Cre03.g205921				GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	
+Cre03.g171424						
+Cre03.g206600	GMM:13.1.4	amino acid metabolism.synthesis.branched chain group	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	AAD1
+Cre03.g204577	GMM:29.9	protein.co-chaperones	Chloroplast			DNJ31
+Cre03.g155900						
+Cre03.g191200				GO:0008173;GO:0008171;GO:0001510	RNA methyltransferase activity;O-methyltransferase activity;RNA methylation	RME3
+Cre03.g190311						
+Cre03.g145807						
+Cre03.g152900				GO:0016787	hydrolase activity	MPA5
+Cre03.g143987	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
+Cre03.g204750						
+Cre03.g173200			Mitochondrion	GO:0055114;GO:0016972	oxidation-reduction process;thiol oxidase activity	ERV2
+Cre03.g200500			Chloroplast			
+Cre03.g197300			Secretory pathway			
+Cre03.g200879			Secretory pathway;Chloroplast	GO:0008146	sulfotransferase activity	CSR10
+Cre03.g182950	GMM:27.1.2	RNA.processing.RNA helicase		GO:0004386	helicase activity	
+Cre03.g165050	GMM:34.1.2;GMM:34.1	transport.p- and v-ATPases.H+-exporting ATPase;transport.p- and v-ATPases		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	PMA4
+Cre03.g197550			Secretory pathway			
+Cre03.g211969	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Chloroplast			
+Cre03.g149250	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast	GO:0019752;GO:0004451	carboxylic acid metabolic process;isocitrate lyase activity	ICL2
+Cre03.g160450	GMM:33.99;GMM:31.1	development.unspecified;cell.organisation		GO:0051013;GO:0008352;GO:0008017;GO:0005515	microtubule severing;katanin complex;microtubule binding;protein binding	KAT2
+Cre03.g200207	GMM:27.1.2	RNA.processing.RNA helicase	Chloroplast			
+Cre03.g190450	GMM:3.5	minor CHO metabolism.others	Mitochondrion			
+Cre03.g191750			Mitochondrion			
+Cre03.g180250	GMM:3.4.3	minor CHO metabolism.myo-inositol.InsP synthases		GO:0008654;GO:0006021;GO:0004512	phospholipid biosynthetic process;inositol biosynthetic process;inositol-3-phosphate synthase activity	INO1
+Cre03.g178200			Cytosol	GO:0005524	ATP binding	CCT10
+Cre03.g167250			Chloroplast			
+Cre03.g203500	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g145587			Chloroplast			CPLD1
+Cre03.g188350						
+Cre03.g194450						CGL24
+Cre03.g168900				GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO12
+Cre03.g146527	GMM:13.1.2.2.1;GMM:13.1.2.2	amino acid metabolism.synthesis.glutamate family.proline.delta 1-pyrroline-5-carboxylate synthetase;amino acid metabolism.synthesis.glutamate family.proline	Chloroplast	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	GSD1
+Cre03.g203009			Mitochondrion			
+Cre03.g197100	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
+Cre03.g185650				GO:0005515	protein binding	FAP251
+Cre03.g207377			Chloroplast			
+Cre03.g167051	GMM:18	Co-factor and vitamine metabolism		GO:0009236;GO:0003824	cobalamin biosynthetic process;catalytic activity	
+Cre03.g191500						
+Cre03.g160250			Mitochondrion			
+Cre03.g162333	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre03.g192000						SEC13L
+Cre03.g144647						
+Cre03.g187450	GMM:7.2.4;GMM:1.3.10	OPP.non-reductive PP.ribose 5-phosphate isomerase;PS.calvin cycle.Rib5P Isomerase	Chloroplast	GO:0009052;GO:0004751	"pentose-phosphate shunt, non-oxidative branch;ribose-5-phosphate isomerase activity"	RPI1
+Cre03.g174350			Chloroplast			PWR2
+Cre03.g178014			Chloroplast			
+Cre03.g204650	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion			NUOB4
+Cre03.g200100	GMM:29.5	protein.degradation	Mitochondrion	GO:0005515	protein binding	
+Cre03.g186800	GMM:30.2.17	signalling.receptor kinases.DUF 26		GO:0015074	DNA integration	
+Cre03.g206481	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
+Cre03.g183100	GMM:29.3.2	protein.targeting.mitochondria				TIM22B
+Cre03.g158800	GMM:25	C1-metabolism		GO:0046294;GO:0018738	formaldehyde catabolic process;S-formylglutathione hydrolase activity	
+Cre03.g204801				GO:0043240;GO:0006281;GO:0004842	Fanconi anaemia nuclear complex;DNA repair;ubiquitin-protein transferase activity	
+Cre03.g159750	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole				VPS36
+Cre03.g199550	GMM:27.4	RNA.RNA binding				
+Cre03.g203450	GMM:29.2.1.2.1.21	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S21		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS21
+Cre03.g157850						TRXL1
+Cre03.g176600						FAP374
+Cre03.g153500						
+Cre03.g177711			Mitochondrion			
+Cre03.g174950	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	TGL7
+Cre03.g178600	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006265;GO:0005694;GO:0003918;GO:0003917;GO:0003677	DNA topological change;chromosome;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA topoisomerase type I activity;DNA binding	TOP1
+Cre03.g158600			Mitochondrion			
+Cre03.g165950			Mitochondrion			
+Cre03.g173700	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIL14
+Cre03.g212865			Chloroplast			
+Cre03.g208306						
+Cre03.g187850			Chloroplast			
+Cre03.g164150	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre03.g172451			Chloroplast			
+Cre03.g185800			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre03.g149950			Secretory pathway			
+Cre03.g159350				GO:0005515	protein binding	
+Cre03.g146667			Chloroplast			
+Cre03.g200800	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG61
+Cre03.g204017			Chloroplast			
+Cre03.g165250						
+Cre03.g199350	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
+Cre03.g156900	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM5
+Cre03.g161578			Mitochondrion;Secretory pathway			
+Cre03.g161976						
+Cre03.g177250			Secretory pathway			
+Cre03.g203950						
+Cre03.g176000			Mitochondrion			
+Cre03.g159900	GMM:29.2.2.3.99;GMM:29.2.2.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;protein.synthesis.ribosome biogenesis.export from nucleus				
+Cre03.g170001			Secretory pathway			
+Cre03.g146047						
+Cre03.g148800	GMM:26.6	misc.O-methyl transferases		GO:0008171	O-methyltransferase activity	
+Cre03.g204100	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG5
+Cre03.g175600	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g143767			Secretory pathway			
+Cre03.g202900			Mitochondrion			
+Cre03.g150400			Secretory pathway	GO:0016021;GO:0006506	integral component of membrane;GPI anchor biosynthetic process	PIGU
+Cre03.g148201			Chloroplast			
+Cre03.g205361						
+Cre03.g167734						
+Cre03.g189800	GMM:29.6.3.2;GMM:29.6	protein.folding.immunophilins (IMM).cyclophilins;protein.folding	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN38
+Cre03.g149100	GMM:6.1	gluconeogenesis / glyoxylate cycle.citrate synthase	Mitochondrion	GO:0046912	"transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer"	CIS2
+Cre03.g146367				GO:0046983	protein dimerization activity	
+Cre03.g203700						
+Cre03.g179350				GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT16
+Cre03.g201700						
+Cre03.g154726						
+Cre03.g162900	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre03.g205100			Chloroplast			
+Cre03.g179200			Chloroplast			
+Cre03.g204450	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			
+Cre03.g164350	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase				
+Cre03.g158050	GMM:29.4	protein.postranslational modification	Chloroplast	GO:2001070;GO:0003824	starch binding;catalytic activity	
+Cre03.g205700			Chloroplast			
+Cre03.g155100			Mitochondrion			
+Cre03.g211185						
+Cre03.g151250	GMM:17.1.2	hormone metabolism.abscisic acid.signal transduction	Mitochondrion			LAN1
+Cre03.g159581			Chloroplast	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
+Cre03.g207550	GMM:16.2.1.10	secondary metabolism.phenylpropanoids.lignin biosynthesis.CAD	Mitochondrion	GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH8
+Cre03.g203150			Mitochondrion			
+Cre03.g172400						
+Cre03.g154425	GMM:31.2	cell.division	Mitochondrion			CLASP
+Cre03.g158450			Secretory pathway			
+Cre03.g203200			Mitochondrion			
+Cre03.g207351						
+Cre03.g205025			Chloroplast			
+Cre03.g199087						
+Cre03.g200787			Secretory pathway			
+Cre03.g152650						
+Cre03.g181600						
+Cre03.g168850			Mitochondrion			
+Cre03.g148850	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre03.g197000	GMM:29.2.2.50	protein.synthesis.ribosome biogenesis.BRIX				
+Cre03.g148400			Secretory pathway			
+Cre03.g200600	GMM:31.1	cell.organisation	Mitochondrion	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN14A-1
+Cre03.g144364				GO:0005515	protein binding	
+Cre03.g180650	GMM:29.5.5	protein.degradation.serine protease				DEG7
+Cre03.g174100	GMM:26.16	misc.myrosinases-lectin-jacalin	Mitochondrion			
+Cre03.g146187	GMM:13.1.2.3.3;GMM:13.1.2.3	amino acid metabolism.synthesis.glutamate family.arginine.N-acetylglutamate-5-P reductase;amino acid metabolism.synthesis.glutamate family.arginine	Chloroplast	GO:0055114;GO:0051287;GO:0046983;GO:0016620;GO:0008652;GO:0005737;GO:0003942	"oxidation-reduction process;NAD binding;protein dimerization activity;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor;cellular amino acid biosynthetic process;cytoplasm;N-acetyl-gamma-glutamyl-phosphate reductase activity"	
+Cre03.g161050						
+Cre03.g178950	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL17
+Cre03.g166400			Secretory pathway	GO:0003824	catalytic activity	
+Cre03.g199050	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis				
+Cre03.g200850			Secretory pathway			
+Cre03.g171900						FAP56
+Cre03.g190000			Mitochondrion	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre03.g195366	GMM:29.4	protein.postranslational modification				
+Cre03.g158200	GMM:27.3.55	RNA.regulation of transcription.HDA				HDA2
+Cre03.g187650			Chloroplast			
+Cre03.g153200						
+Cre03.g163300						CDT1
+Cre03.g149400	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family				RWP11
+Cre03.g207489			Mitochondrion			
+Cre03.g148250	GMM:34.1.1;GMM:27.3.99;GMM:27.3.67;GMM:27.3.63	transport.p- and v-ATPases.H+-transporting two-sector ATPase;RNA.regulation of transcription.unclassified;RNA.regulation of transcription.putative transcription regulator;RNA.regulation of transcription.PHD finger transcription factor		GO:0005515	protein binding	CGL58
+Cre03.g144747	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
+Cre03.g159000			Mitochondrion			
+Cre03.g205473						
+Cre03.g162300				GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre03.g178400			Mitochondrion			
+Cre03.g189600			Mitochondrion			
+Cre03.g203351			Mitochondrion			
+Cre03.g171100			Chloroplast			
+Cre03.g178000						
+Cre03.g164700			Chloroplast			
+Cre03.g160850			Mitochondrion			
+Cre03.g205750				GO:0005096	GTPase activator activity	
+Cre03.g184300						
+Cre03.g207200			Chloroplast			
+Cre03.g172500	GMM:1.1.40	PS.lightreaction.cyclic electron flow-chlororespiration	Chloroplast	GO:0055114;GO:0009916	oxidation-reduction process;alternative oxidase activity	PTOX2
+Cre03.g199650			Secretory pathway			
+Cre03.g166750	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion			PTK3
+Cre03.g209953	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre03.g159800	GMM:3.3;GMM:20.1.5	minor CHO metabolism.sugar alcohols;stress.biotic.regulation of transcription	Chloroplast	GO:0015969	guanosine tetraphosphate metabolic process	
+Cre03.g145767	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure	Chloroplast	GO:0008408;GO:0006139;GO:0005622;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;intracellular;nucleic acid binding	
+Cre03.g175000	GMM:27.1.19	RNA.processing.ribonucleases				RPH3
+Cre03.g167150	GMM:26.7;GMM:16.5.1.1.1.10	"misc.oxidases - copper, flavone etc;secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.flavin-containing monooxygenase"	Chloroplast	GO:0055114;GO:0050661;GO:0050660;GO:0004499	"oxidation-reduction process;NADP binding;flavin adenine dinucleotide binding;N,N-dimethylaniline monooxygenase activity"	FMO1
+Cre03.g196500						
+Cre03.g194535			Mitochondrion			
+Cre03.g144084	GMM:29.5	protein.degradation		GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL7
+Cre03.g157450						
+Cre03.g162750	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre03.g192150			Mitochondrion			
+Cre03.g213201			Chloroplast			CCS2
+Cre03.g161301			Mitochondrion			
+Cre03.g189350						
+Cre03.g173450	GMM:31.5.1;GMM:29.3.3;GMM:26.30	cell.cell death.plants;protein.targeting.chloroplast;misc.other Ferredoxins and Rieske domain	Chloroplast	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	
+Cre03.g183250						
+Cre03.g173050			Chloroplast			
+Cre03.g178250	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOS6
+Cre03.g207800	GMM:16.2.1.10	secondary metabolism.phenylpropanoids.lignin biosynthesis.CAD	Mitochondrion	GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH5
+Cre03.g151400	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
+Cre03.g198700						
+Cre03.g171350	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified	Secretory pathway	GO:0016020;GO:0015031	membrane;protein transport	SEC61A
+Cre03.g203730	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion			DEGO1
+Cre03.g145847			Chloroplast			
+Cre03.g169850	GMM:29.1.16	protein.aa activation.cysteine-tRNA ligase		GO:0006423;GO:0005737;GO:0005524;GO:0004817;GO:0000166	cysteinyl-tRNA aminoacylation;cytoplasm;ATP binding;cysteine-tRNA ligase activity;nucleotide binding	TSC1
+Cre03.g177007	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family	Mitochondrion			
+Cre03.g188500	GMM:27.3.71	RNA.regulation of transcription.SNF7		GO:0007034	vacuolar transport	VPS46
+Cre03.g171000			Mitochondrion			
+Cre03.g197500	GMM:31.6.1.11	cell.motility.eukaryotes.other	Chloroplast			MOT6
+Cre03.g165200			Mitochondrion			ATG7
+Cre03.g202950	GMM:30.3;GMM:3.3;GMM:21.1	signalling.calcium;minor CHO metabolism.sugar alcohols;redox.thioredoxin	Chloroplast	GO:0045454	cell redox homeostasis	TRX14
+Cre03.g155527			Mitochondrion			
+Cre03.g198236						
+Cre03.g151351						
+Cre03.g185450			Chloroplast			
+Cre03.g202300			Chloroplast			
+Cre03.g186600			Secretory pathway			
+Cre03.g199199						
+Cre03.g185100			Mitochondrion			
+Cre03.g188250	GMM:2.1.2.1	major CHO metabolism.synthesis.starch.AGPase	Chloroplast	GO:0016779;GO:0009058	nucleotidyltransferase activity;biosynthetic process	STA6
+Cre03.g204050	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG6
+Cre03.g198950	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	CGL30
+Cre03.g200700						FAP166
+Cre03.g202449			Chloroplast	GO:0005515	protein binding	
+Cre03.g191800				GO:0005515	protein binding	
+Cre03.g145327						
+Cre03.g196750			Secretory pathway	GO:0016021	integral component of membrane	
+Cre03.g144927			Mitochondrion			
+Cre03.g158700			Secretory pathway			
+Cre03.g144504			Chloroplast			
+Cre03.g157600			Mitochondrion			
+Cre03.g172700			Chloroplast			
+Cre03.g146787			Chloroplast			
+Cre03.g181950						
+Cre03.g171550			Mitochondrion			SSA13
+Cre03.g174550						
+Cre03.g146227						
+Cre03.g195900			Chloroplast			
+Cre03.g206350			Mitochondrion			OPR19
+Cre03.g165300			Chloroplast			
+Cre03.g187350	GMM:31.6.1.1;GMM:31.1.1.2;GMM:31.1	cell.motility.eukaryotes.basal bodies;cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007017;GO:0005874;GO:0005525;GO:0005200;GO:0003924	microtubule-based process;microtubule;GTP binding;structural constituent of cytoskeleton;GTPase activity	UNI3
+Cre03.g155500	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX				
+Cre03.g169150	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre03.g188100			Secretory pathway			
+Cre03.g152400			Chloroplast	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	EXN1
+Cre03.g152300			Secretory pathway			
+Cre03.g201888			Mitochondrion			
+Cre03.g205350			Chloroplast	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	EXN8
+Cre03.g193050						
+Cre03.g186200	GMM:11.3.3	lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase				PCT1
+Cre03.g169650						
+Cre03.g179921			Secretory pathway			
+Cre03.g182551	GMM:1.1.5.1	PS.lightreaction.other electron carrier (ox/red).plastocyanin	Chloroplast			PCY1
+Cre03.g155300			Secretory pathway			PHC29
+Cre03.g175926			Secretory pathway			
+Cre03.g180151			Chloroplast			
+Cre03.g150650						
+Cre03.g201450			Secretory pathway			
+Cre03.g154200				GO:0032783;GO:0006355	"ELL-EAF complex;regulation of transcription, DNA-templated"	
+Cre03.g207400	GMM:29.5.3	protein.degradation.cysteine protease	Mitochondrion			
+Cre03.g148100	GMM:28.2;GMM:21.2	DNA.repair;redox.ascorbate and glutathione				
+Cre03.g209505	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre03.g175550			Mitochondrion			
+Cre03.g173550			Mitochondrion			
+Cre03.g167712	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
+Cre03.g143787			Mitochondrion			
+Cre03.g207500						
+Cre03.g199759	GMM:31.4	cell.vesicle transport				
+Cre03.g183400			Chloroplast			
+Cre03.g180800	GMM:35.1.25;GMM:27.3.67	not assigned.no ontology.paired amphipathic helix repeat-containing protein;RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0006355	"regulation of transcription, DNA-templated"	HDA16
+Cre03.g167050						PDX3
+Cre03.g206705	GMM:29.5.11	protein.degradation.ubiquitin				
+Cre03.g156800						
+Cre03.g168550	GMM:34.3	transport.amino acids	Chloroplast			AOT3
+Cre03.g188800			Chloroplast			
+Cre03.g184600	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family	Mitochondrion			RWP7
+Cre03.g146147	GMM:20.2.5;GMM:1.1.1.2	stress.abiotic.light;PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			
+Cre03.g204602						
+Cre03.g164050	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN15-1
+Cre03.g160350	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	ANK7
+Cre03.g171950	GMM:4.1.15	glycolysis.cytosolic branch.phospho-enol-pyruvate carboxylase (PEPC)		GO:0015977;GO:0008964;GO:0006099	carbon fixation;phosphoenolpyruvate carboxylase activity;tricarboxylic acid cycle	PEPC2
+Cre03.g208304						
+Cre03.g191600			Mitochondrion			
+Cre03.g186100				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre03.g146287						
+Cre03.g191050	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAN1
+Cre03.g187300				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g203050			Mitochondrion			
+Cre03.g149650	GMM:17.1.1.1.10;GMM:16.1.4.10	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.9-cis-epoxycarotenoid dioxygenase;secondary metabolism.isoprenoids.carotenoids.carotenoid cleavage dioxygenase	Secretory pathway			CCD1
+Cre03.g183000			Secretory pathway			
+Cre03.g211297			Chloroplast			
+Cre03.g150050			Chloroplast			
+Cre03.g168000						
+Cre03.g168605	GMM:34.14;GMM:29.1.30;GMM:23.5.2	transport.unspecified cations;protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase		GO:0003723	RNA binding	
+Cre03.g177150			Chloroplast			
+Cre03.g173132						CSB19
+Cre03.g159300						
+Cre03.g203793			Chloroplast			
+Cre03.g183350	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0005524	ATP binding	
+Cre03.g156400	GMM:33.99	development.unspecified	Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm8
+Cre03.g145667			Mitochondrion			
+Cre03.g212641	GMM:27.3.72;GMM:27.3.54	RNA.regulation of transcription.Transcriptional Adaptor Zinc Bundle (TAZ) domain family;RNA.regulation of transcription.histone acetyltransferases		GO:0008270;GO:0006355;GO:0005634;GO:0004402;GO:0003712	"zinc ion binding;regulation of transcription, DNA-templated;nucleus;histone acetyltransferase activity;transcription cofactor activity"	
+Cre03.g179400			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT17
+Cre03.g176900			Mitochondrion			
+Cre03.g180050						
+Cre03.g174450			Chloroplast			PWR1
+Cre03.g190500	GMM:26.3.1;GMM:26.3;GMM:2.2.2.1	"misc.gluco-, galacto- and mannosidases.alpha-galactosidase;misc.gluco-, galacto- and mannosidases;major CHO metabolism.degradation.starch.starch cleavage"	Secretory pathway	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	GLC2A
+Cre03.g204353	GMM:30.5;GMM:3.5;GMM:29.3.4.99	signalling.G-proteins;minor CHO metabolism.others;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	
+Cre03.g211857	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Chloroplast			
+Cre03.g152350			Chloroplast			
+Cre03.g154800			Mitochondrion			
+Cre03.g204601	GMM:23.3.2.1	nucleotide metabolism.salvage.nucleoside kinases.adenosine kinase		GO:0006166;GO:0004001	purine ribonucleoside salvage;adenosine kinase activity	CPK3
+Cre03.g161500	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre03.g146807			Secretory pathway			
+Cre03.g159500	GMM:22.1.1;GMM:13.1.3.5.5	polyamine metabolism.synthesis.ornithine decarboxylase;amino acid metabolism.synthesis.aspartate family.lysine.diaminopimelate decarboxylase	Mitochondrion	GO:0003824	catalytic activity	ODC1
+Cre03.g155200	GMM:13.1.6.2.1	amino acid metabolism.synthesis.aromatic aa.phenylalanine and tyrosine.chorismate mutase	Chloroplast	GO:0009073;GO:0004106	aromatic amino acid family biosynthetic process;chorismate mutase activity	CHM1
+Cre03.g152000	GMM:18.1;GMM:17.1.1	Co-factor and vitamine metabolism.molybdenum cofactor;hormone metabolism.abscisic acid.synthesis-degradation		GO:0030170;GO:0030151;GO:0003824	pyridoxal phosphate binding;molybdenum ion binding;catalytic activity	MCS1
+Cre03.g143827	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Mitochondrion			FBB7
+Cre03.g157950						
+Cre03.g202851			Mitochondrion			
+Cre03.g193250				GO:0016772;GO:0006388	"transferase activity, transferring phosphorus-containing groups;tRNA splicing, via endonucleolytic cleavage and ligation"	
+Cre03.g196350						
+Cre03.g213425	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase				COX23
+Cre03.g204250	GMM:13.2.3.4	amino acid metabolism.degradation.aspartate family.methionine		GO:0055114;GO:0051287;GO:0006730;GO:0004013	oxidation-reduction process;NAD binding;one-carbon metabolic process;adenosylhomocysteinase activity	SAH1
+Cre03.g210961	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified				
+Cre03.g169400	GMM:3.5;GMM:10.1.5	minor CHO metabolism.others;cell wall.precursor synthesis.UXS		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	UXS1
+Cre03.g195200			Chloroplast			CGL76
+Cre03.g170250	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722	protein dephosphorylation;protein serine/threonine phosphatase activity	
+Cre03.g146547			Secretory pathway			
+Cre03.g144627	GMM:13.1.3.4.1	amino acid metabolism.synthesis.aspartate family.methionine.cystathionine gamma-synthase	Chloroplast	GO:0030170	pyridoxal phosphate binding	CGS1
+Cre03.g203625						
+Cre03.g200050						CAL1
+Cre03.g176500			Mitochondrion			
+Cre03.g145147			Secretory pathway	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
+Cre03.g192050				GO:0033573;GO:0016020;GO:0006827;GO:0005381	high-affinity iron permease complex;membrane;high-affinity iron ion transmembrane transport;iron ion transmembrane transporter activity	FTR1
+Cre03.g172250	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Mitochondrion	GO:0005525	GTP binding	
+Cre03.g144687	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast			
+Cre03.g179820						
+Cre03.g160950						
+Cre03.g175400	GMM:4.1.3	glycolysis.cytosolic branch.glucose-6-phosphate isomerase	Chloroplast	GO:0006096;GO:0006094;GO:0004347	glycolytic process;gluconeogenesis;glucose-6-phosphate isomerase activity	PGI1
+Cre03.g171179			Mitochondrion			
+Cre03.g157550	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre03.g199423	GMM:23.1.1.4	nucleotide metabolism.synthesis.pyrimidine.dihydroorotate dehydrogenase		GO:0055114;GO:0016627;GO:0005737	"oxidation-reduction process;oxidoreductase activity, acting on the CH-CH group of donors;cytoplasm"	PYR4
+Cre03.g145947			Mitochondrion			
+Cre03.g204900			Mitochondrion	GO:0006282	regulation of DNA repair	
+Cre03.g146087						
+Cre03.g177600			Secretory pathway	GO:0055114;GO:0050660;GO:0016491;GO:0016020;GO:0003885	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;membrane;D-arabinono-1,4-lactone oxidase activity"	
+Cre03.g144424	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"	Mitochondrion	GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre03.g194250	GMM:29.5	protein.degradation		GO:0006511;GO:0005622;GO:0004843	ubiquitin-dependent protein catabolic process;intracellular;thiol-dependent ubiquitin-specific protease activity	
+Cre03.g145067			Mitochondrion			
+Cre03.g176651				GO:0005515	protein binding	MYSM1
+Cre03.g202200						
+Cre03.g166150						
+Cre03.g144404			Chloroplast	GO:0006464	cellular protein modification process	
+Cre03.g177850	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion			
+Cre03.g207153						
+Cre03.g154050						
+Cre03.g196000				GO:0033588	Elongator holoenzyme complex	
+Cre03.g175100						
+Cre03.g153900				GO:0071949	FAD binding	FMO11
+Cre03.g200431			Secretory pathway			
+Cre03.g161081			Chloroplast			
+Cre03.g174200				GO:0005515	protein binding	
+Cre03.g194850	GMM:8.2.9;GMM:8.1.9;GMM:6.3	TCA / organic transformation.other organic acid transformations.cyt MDH;TCA / organic transformation.TCA.malate DH;gluconeogenesis / glyoxylate cycle.malate dehydrogenase	Chloroplast	GO:0055114;GO:0019752;GO:0016616;GO:0016491	"oxidation-reduction process;carboxylic acid metabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;oxidoreductase activity"	MDN1
+Cre03.g184200			Chloroplast			
+Cre03.g176200				GO:0005515	protein binding	
+Cre03.g201250				GO:0003676	nucleic acid binding	
+Cre03.g172600						
+Cre03.g146687	GMM:27.1	RNA.processing				
+Cre03.g182900			Secretory pathway	GO:0016020	membrane	
+Cre03.g190650			Mitochondrion			
+Cre03.g145427	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			
+Cre03.g158150	GMM:27.4	RNA.RNA binding		GO:0006396;GO:0003723;GO:0003676	RNA processing;RNA binding;nucleic acid binding	
+Cre03.g156950	GMM:9.5	mitochondrial electron transport / ATP synthesis.cytochrome c reductase		GO:0070469;GO:0022900;GO:0005743	respiratory chain;electron transport chain;mitochondrial inner membrane	QCR8
+Cre03.g150151			Mitochondrion			NRT2.5
+Cre03.g155850			Chloroplast			
+Cre03.g145367						
+Cre03.g192550	GMM:28.2	DNA.repair		GO:0030870;GO:0016887;GO:0006281;GO:0005634;GO:0000723	Mre11 complex;ATPase activity;DNA repair;nucleus;telomere maintenance	RAD50
+Cre03.g155051	GMM:11.8.1	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids"	Mitochondrion	GO:0030170;GO:0019752;GO:0016831	pyridoxal phosphate binding;carboxylic acid metabolic process;carboxy-lyase activity	
+Cre03.g154700			Chloroplast			
+Cre03.g155700	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			
+Cre03.g197700	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005634;GO:0005515	nucleus;protein binding	HLM8
+Cre03.g206202	GMM:31.3;GMM:29.4.1;GMM:29.4	cell.cycle;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g212417	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors				
+Cre03.g163250			Chloroplast			
+Cre03.g204150	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B		GO:0005515	protein binding	IFT80
+Cre03.g197600						
+Cre03.g162366	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0055114;GO:0016491;GO:0005507	oxidation-reduction process;oxidoreductase activity;copper ion binding	
+Cre03.g174650	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB20
+Cre03.g206500			Secretory pathway			
+Cre03.g157400	GMM:34.15	transport.potassium	Chloroplast			
+Cre03.g185050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP53
+Cre03.g203800			Chloroplast			
+Cre03.g172800	GMM:27.3.99;GMM:27.3.12	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.C3H zinc finger family		GO:0046872	metal ion binding	
+Cre03.g159083						
+Cre03.g157751						
+Cre03.g173800	GMM:3.5	minor CHO metabolism.others	Chloroplast	GO:0009443;GO:0008478	pyridoxal 5'-phosphate salvage;pyridoxal kinase activity	PDX2
+Cre03.g168600			Mitochondrion			
+Cre03.g205950	GMM:4.3.16;GMM:4.1.16;GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	glycolysis.unclear/dually targeted.phosphoenolpyruvate carboxykinase (PEPCK);glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre03.g188050			Chloroplast			
+Cre03.g203650			Mitochondrion			
+Cre03.g144867						
+Cre03.g198212						
+Cre03.g195410			Secretory pathway			
+Cre03.g206950	GMM:27.2	RNA.transcription	Chloroplast	GO:0003968	RNA-directed RNA polymerase activity	
+Cre03.g149600	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG53
+Cre03.g202350						
+Cre03.g198850	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	TL19
+Cre03.g182450	GMM:25.5	C1-metabolism.methylenetetrahydrofolate dehydrogenase and methenyltetrahydrofolate cyclohydrolase	Chloroplast	GO:0055114;GO:0009396;GO:0004488;GO:0003824	oxidation-reduction process;folic acid-containing compound biosynthetic process;methylenetetrahydrofolate dehydrogenase (NADP+) activity;catalytic activity	
+Cre03.g145727	GMM:29.1.1	protein.aa activation.tyrosine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	
+Cre03.g207150	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion			
+Cre03.g196600	GMM:28.2	DNA.repair		GO:0007049;GO:0006281;GO:0005634	cell cycle;DNA repair;nucleus	RAD17
+Cre03.g160100	GMM:33.99	development.unspecified				
+Cre03.g165850						
+Cre03.g162200			Chloroplast			
+Cre03.g194750						
+Cre03.g202785			Mitochondrion			
+Cre03.g146107						
+Cre03.g212977				GO:0008270;GO:0006355;GO:0005634;GO:0004402;GO:0003712	"zinc ion binding;regulation of transcription, DNA-templated;nucleus;histone acetyltransferase activity;transcription cofactor activity"	
+Cre03.g207937			Chloroplast			
+Cre03.g166500			Mitochondrion			
+Cre03.g199090						
+Cre03.g166050	GMM:15.2;GMM:15	"metal handling.binding, chelation and storage;metal handling"		GO:0008430	selenium binding	SBD1
+Cre03.g145107	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	
+Cre03.g169950	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family	Secretory pathway			
+Cre03.g202000	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN4-2
+Cre03.g179961	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0008270;GO:0006260;GO:0005634;GO:0003887	zinc ion binding;DNA replication;nucleus;DNA-directed DNA polymerase activity	
+Cre03.g207713	GMM:2.2.2.8;GMM:2.1.2.4	major CHO metabolism.degradation.starch.ISA3;major CHO metabolism.synthesis.starch.debranching	Chloroplast	GO:0043169;GO:0005975;GO:0004553;GO:0003824	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	ISA3
+Cre03.g174500	GMM:27.3.22	RNA.regulation of transcription.homeobox transcription factor family (HB)		GO:0006355;GO:0006351;GO:0003677	"regulation of transcription, DNA-templated;transcription, DNA-templated;DNA binding"	HDZ1
+Cre03.g206800	GMM:34.2;GMM:2.2.2.6	transport.sugars;major CHO metabolism.degradation.starch.transporter	Mitochondrion	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	HXT1
+Cre03.g189550	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZIP3
+Cre03.g189100						
+Cre03.g181550			Mitochondrion			
+Cre03.g205850	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	MFT6
+Cre03.g185550	GMM:1.3.9	PS.calvin cycle.sedoheptulose bisphosphatase	Chloroplast	GO:0042578;GO:0042132;GO:0005975	"phosphoric ester hydrolase activity;fructose 1,6-bisphosphate 1-phosphatase activity;carbohydrate metabolic process"	SEBP1
+Cre03.g152800						
+Cre03.g198600						
+Cre03.g150900	GMM:27.1	RNA.processing				
+Cre03.g192950			Chloroplast			
+Cre03.g208558						
+Cre03.g164600	GMM:34.1.2;GMM:34.1	transport.p- and v-ATPases.H+-exporting ATPase;transport.p- and v-ATPases		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	PMA3
+Cre03.g165186			Chloroplast			
+Cre03.g204129			Secretory pathway			
+Cre03.g161363			Chloroplast			
+Cre03.g144104						
+Cre03.g162701	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0005524	ATP binding	
+Cre03.g151950			Secretory pathway			LZY1B
+Cre03.g167850			Chloroplast	GO:0005515	protein binding	
+Cre03.g151000	GMM:29.4;GMM:2.2.2.10;GMM:2.2.2	protein.postranslational modification;major CHO metabolism.degradation.starch.laforin like phosphoglucan phosphatase (SEX4);major CHO metabolism.degradation.starch	Chloroplast	GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	DSP8
+Cre03.g170350	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified				SEC12
+Cre03.g163950	GMM:13.2.5.3	amino acid metabolism.degradation.serine-glycine-cysteine group.cysteine		GO:0055114;GO:0046439;GO:0017172;GO:0005506	oxidation-reduction process;L-cysteine metabolic process;cysteine dioxygenase activity;iron ion binding	CDO2
+Cre03.g146747	GMM:24	biodegradation of xenobiotics	Secretory pathway			GOX10
+Cre03.g168450	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0005524	ATP binding	CCT8
+Cre03.g175850	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway	GO:0006281;GO:0004518	DNA repair;nuclease activity	
+Cre03.g157700	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase				COX5C
+Cre03.g208497						
+Cre03.g201900	GMM:31.6.1.5.1	cell.motility.eukaryotes.radial spoke.head				RSP1
+Cre03.g193576			Chloroplast			
+Cre03.g189250	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAB11
+Cre03.g161800	GMM:29.2.2	protein.synthesis.ribosome biogenesis	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre03.g183500						
+Cre03.g175700	GMM:31.1	cell.organisation				
+Cre03.g162150	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion			
+Cre03.g160750	GMM:34.12	transport.metal		GO:0055085;GO:0016021;GO:0008324;GO:0006812	transmembrane transport;integral component of membrane;cation transmembrane transporter activity;cation transport	MTP3
+Cre03.g146467	GMM:34.99	transport.misc				TRS31
+Cre03.g206929	GMM:29.5	protein.degradation	Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	EGY1
+Cre03.g190950	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007017;GO:0005874;GO:0003924	microtubule-based process;microtubule;GTPase activity	TUA1
+Cre03.g180450				GO:0016787;GO:0009166	hydrolase activity;nucleotide catabolic process	FAP215
+Cre03.g158850	GMM:35.1.9	not assigned.no ontology.BTB/POZ domain-containing protein				
+Cre03.g164950	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003676	nucleic acid binding	SRS3
+Cre03.g167887			Secretory pathway	GO:0046872;GO:0016567;GO:0004842	metal ion binding;protein ubiquitination;ubiquitin-protein transferase activity	
+Cre03.g209729			Secretory pathway			
+Cre03.g180400			Chloroplast			
+Cre03.g184500			Chloroplast			
+Cre03.g178150	GMM:31.6.1.6.1;GMM:30.3;GMM:3.3	cell.motility.eukaryotes.central pair.C1a;signalling.calcium;minor CHO metabolism.sugar alcohols				CAM1
+Cre03.g165450						
+Cre03.g186950	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre03.g203569			Secretory pathway			
+Cre03.g187050	GMM:34.7;GMM:34.2	transport.phosphate;transport.sugars	Chloroplast			PHT3
+Cre03.g183850	GMM:26.30;GMM:21.99;GMM:1.1.5.2	misc.other Ferredoxins and Rieske domain;redox.misc;PS.lightreaction.other electron carrier (ox/red).ferredoxin	Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX6
+Cre03.g201664	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0042765;GO:0016021	GPI-anchor transamidase complex;integral component of membrane	GIT2
+Cre03.g163500			Chloroplast			CGLD21
+Cre03.g154850	GMM:9.99	mitochondrial electron transport / ATP synthesis.unspecified	Mitochondrion	GO:0006744	ubiquinone biosynthetic process	COQ4
+Cre03.g173850			Chloroplast			
+Cre03.g151500			Chloroplast			
+Cre03.g169750						FAP371
+Cre03.g151800			Secretory pathway			
+Cre03.g163376						
+Cre03.g205650	GMM:29.5.11	protein.degradation.ubiquitin				
+Cre03.g168350	GMM:27.1	RNA.processing				
+Cre03.g198288			Secretory pathway			
+Cre03.g192400						
+Cre03.g211521				GO:0006950	response to stress	FAP165
+Cre03.g206450						
+Cre03.g146587						
+Cre03.g196450			Chloroplast	GO:0016593;GO:0016570;GO:0006368;GO:0003677	Cdc73/Paf1 complex;histone modification;transcription elongation from RNA polymerase II promoter;DNA binding	
+Cre03.g145467			Mitochondrion			
+Cre03.g179750			Mitochondrion	GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre03.g195750	GMM:33.99	development.unspecified		GO:0005515	protein binding	
+Cre03.g184151	GMM:26.24	misc.GCN5-related N-acetyltransferase		GO:0008080	N-acetyltransferase activity	
+Cre03.g192250			Secretory pathway			PHC69
+Cre03.g191350	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
+Cre03.g176440						
+Cre03.g193350	GMM:29.4	protein.postranslational modification		GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	DSP7
+Cre03.g167690						
+Cre03.g182650	GMM:11.3	lipid metabolism.phospholipid synthesis		GO:0016746;GO:0008152;GO:0006644	"transferase activity, transferring acyl groups;metabolic process;phospholipid metabolic process"	PGA1
+Cre03.g207950	GMM:27.1	RNA.processing				
+Cre03.g199950			Secretory pathway			
+Cre03.g210849	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g150550						
+Cre03.g156000						
+Cre03.g170601			Mitochondrion			
+Cre03.g186000			Chloroplast			
+Cre03.g145707						
+Cre03.g201400	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre03.g184700	GMM:29.5	protein.degradation		GO:0006508;GO:0004197	proteolysis;cysteine-type endopeptidase activity	
+Cre03.g177476						
+Cre03.g199500						FAP129
+Cre03.g179050			Mitochondrion			
+Cre03.g160500	GMM:29.1.6	protein.aa activation.lysine-tRNA ligase		GO:0006418;GO:0005524;GO:0004812;GO:0003676;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleic acid binding;nucleotide binding	TSK1
+Cre03.g209169			Mitochondrion			
+Cre03.g181400	GMM:13.1.6.5.1	amino acid metabolism.synthesis.aromatic aa.tryptophan.anthranilate synthase		GO:0016833;GO:0009058	oxo-acid-lyase activity;biosynthetic process	ADC1
+Cre03.g159200	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT	Chloroplast	GO:0005515;GO:0004842	protein binding;ubiquitin-protein transferase activity	UBC8
+Cre03.g154250	GMM:3.6;GMM:29.4.1;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK6
+Cre03.g205428			Secretory pathway			
+Cre03.g170650						
+Cre03.g168150	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre03.g195600	GMM:3.2.4	minor CHO metabolism.trehalose.trehalase		GO:0005991;GO:0004555	"trehalose metabolic process;alpha,alpha-trehalase activity"	
+Cre03.g163850	GMM:29.5.11.4.2;GMM:27.3.11	protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.C2H2 zinc finger family		GO:0042393	histone binding	
+Cre03.g150251			Mitochondrion			
+Cre03.g149750			Mitochondrion			DMA2
+Cre03.g182100	GMM:30.4.5	signalling.phosphinositides.inositol-tetrakisphosphate 1-kinase	Mitochondrion	GO:0052726;GO:0052725;GO:0047325;GO:0032957;GO:0005622;GO:0005524;GO:0000287	"inositol-1,3,4-trisphosphate 5-kinase activity;inositol-1,3,4-trisphosphate 6-kinase activity;inositol tetrakisphosphate 1-kinase activity;inositol trisphosphate metabolic process;intracellular;ATP binding;magnesium ion binding"	ITPK1
+Cre03.g182050	GMM:11.1.9	lipid metabolism.FA synthesis and FA elongation.long chain fatty acid CoA ligase		GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre03.g152450	GMM:31.4;GMM:27.3.48	cell.vesicle transport;RNA.regulation of transcription.FHA transcription factor		GO:0005515	protein binding	
+Cre03.g177053	GMM:33.99;GMM:17.2.2	development.unspecified;hormone metabolism.auxin.signal transduction				
+Cre03.g199750	GMM:26.23	misc.rhodanese	Chloroplast			
+Cre01.g013800				GO:0008270;GO:0003676	zinc ion binding;nucleic acid binding	TCY1
+Cre01.g061077	GMM:13	amino acid metabolism	Chloroplast			CGL93
+Cre01.g003508			Chloroplast			
+Cre01.g052650	GMM:31.6.1.10;GMM:26.13	cell.motility.eukaryotes.flagellar associated proteins;misc.acid and other phosphatases	Mitochondrion	GO:0003993	acid phosphatase activity	VIP2
+Cre01.g024300				GO:0005515	protein binding	
+Cre01.g007774						
+Cre01.g028050			Secretory pathway			
+Cre01.g049750						
+Cre01.g054050			Chloroplast			
+Cre01.g051050			Chloroplast			FAP225
+Cre01.g055100	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
+Cre01.g014500	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0016773;GO:0016020;GO:0005524	"phosphotransferase activity, alcohol group as acceptor;membrane;ATP binding"	
+Cre01.g025700			Mitochondrion	GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity	
+Cre01.g033532						
+Cre01.g024250			Secretory pathway			HEL4
+Cre01.g048850	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors		GO:0003677	DNA binding	
+Cre01.g019950	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ7
+Cre01.g066917	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM1
+Cre01.g055600	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIL15
+Cre01.g024200	GMM:27.1.3.9;GMM:27.1	RNA.processing.3' end processing.CstF64;RNA.processing		GO:0031124;GO:0003676	mRNA 3'-end processing;nucleic acid binding	
+Cre01.g028900			Mitochondrion			
+Cre01.g051174			Mitochondrion	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre01.g016900			Chloroplast			
+Cre01.g031550	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0016787	hydrolase activity	CSB6
+Cre01.g041450	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre01.g026050			Mitochondrion			
+Cre01.g006450	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
+Cre01.g013050	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX	Secretory pathway	GO:0005515	protein binding	
+Cre01.g055500	GMM:11.1.8	lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase	Mitochondrion			
+Cre01.g041700						
+Cre01.g042700						
+Cre01.g053288	GMM:33.99	development.unspecified	Secretory pathway	GO:0006396	RNA processing	
+Cre01.g008402				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g024950						
+Cre01.g013100			Chloroplast			PRL10
+Cre01.g021050	GMM:34.9;GMM:29.3.2	transport.metabolite transporters at the mitochondrial membrane;protein.targeting.mitochondria				TIM22A
+Cre01.g008100	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family				
+Cre01.g039900	GMM:27.1.19	RNA.processing.ribonucleases		GO:0008033	tRNA processing	TRZ4
+Cre01.g029300	GMM:4.1.7;GMM:1.3.5	glycolysis.cytosolic branch.triosephosphate isomerase (TPI);PS.calvin cycle.TPI	Chloroplast	GO:0008152;GO:0004807	metabolic process;triose-phosphate isomerase activity	TPIC1
+Cre01.g002500	GMM:30.11	signalling.light				COP1
+Cre01.g008950						
+Cre01.g003376	GMM:31.2;GMM:20.2.1	cell.division;stress.abiotic.heat				
+Cre01.g019700	GMM:27.1	RNA.processing	Mitochondrion			PAP7
+Cre01.g036850	GMM:13.2.2.2	amino acid metabolism.degradation.glutamate family.proline	Chloroplast	GO:0006562;GO:0004657	proline catabolic process;proline dehydrogenase activity	PDY1
+Cre01.g019650			Chloroplast			
+Cre01.g006700						
+Cre01.g002234						
+Cre01.g000500						AXL5
+Cre01.g010550			Mitochondrion			HLD2
+Cre01.g029800			Mitochondrion			
+Cre01.g014150	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	MFT5
+Cre01.g050200	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB9
+Cre01.g001000						
+Cre01.g030450	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease				
+Cre01.g046500			Chloroplast			
+Cre01.g010900	GMM:4.1.8;GMM:1.3.4	glycolysis.cytosolic branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH);PS.calvin cycle.GAP	Chloroplast	GO:0055114;GO:0016620	"oxidation-reduction process;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor"	GAP3
+Cre01.g010296						
+Cre01.g032150				GO:0005515	protein binding	FAP187
+Cre01.g002750			Mitochondrion			
+Cre01.g025726	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				
+Cre01.g004400			Secretory pathway			
+Cre01.g008051	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			
+Cre01.g005850	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				CBA2
+Cre01.g030800	GMM:30.11.1	signalling.light.COP9 signalosome		GO:0005515	protein binding	CSN2
+Cre01.g022750	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP159
+Cre01.g040750	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
+Cre01.g028000						
+Cre01.g032550			Chloroplast			CGL127
+Cre01.g022900			Mitochondrion			
+Cre01.g012222						
+Cre01.g004800	GMM:27.3.60	RNA.regulation of transcription.NIN-like bZIP-related family	Mitochondrion			
+Cre01.g033091	GMM:27.1.19	RNA.processing.ribonucleases				
+Cre01.g042000				GO:0005515	protein binding	
+Cre01.g014950			Mitochondrion			
+Cre01.g027450	GMM:21.1	redox.thioredoxin		GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRX10
+Cre01.g034500						
+Cre01.g048150			Chloroplast			HLA8
+Cre01.g040450	GMM:30.2.99;GMM:30.10;GMM:3.1	signalling.receptor kinases.misc;signalling.phosphorelay;minor CHO metabolism.raffinose family		GO:0004871;GO:0000160	signal transducer activity;phosphorelay signal transduction system	HDT1
+Cre01.g052450			Chloroplast			
+Cre01.g051850			Chloroplast			
+Cre01.g004651				GO:0005622;GO:0003676	intracellular;nucleic acid binding	
+Cre01.g011660						
+Cre01.g001685						
+Cre01.g040476						
+Cre01.g038350			Chloroplast			
+Cre01.g035500	GMM:30.9;GMM:30.4.2;GMM:3.9	signalling.lipids;signalling.phosphinositides.phosphatidylinositol 4-kinase;signalling.lipids	Mitochondrion	GO:0048015;GO:0046854;GO:0016773	"phosphatidylinositol-mediated signaling;phosphatidylinositol phosphorylation;phosphotransferase activity, alcohol group as acceptor"	VPS34
+Cre01.g055050	GMM:29.5.3	protein.degradation.cysteine protease				
+Cre01.g032450			Secretory pathway	GO:0016020	membrane	
+Cre01.g057426						
+Cre01.g025450				GO:0005515	protein binding	DRC9
+Cre01.g034050	GMM:16.2	secondary metabolism.phenylpropanoids				
+Cre01.g009300	GMM:30.4	signalling.phosphinositides		GO:0042578;GO:0005515	phosphoric ester hydrolase activity;protein binding	
+Cre01.g033900	GMM:27.3.28	RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre01.g032950						
+Cre01.g055436			Chloroplast			
+Cre01.g009800						FAP289
+Cre01.g030950						
+Cre01.g006733						
+Cre01.g041900				GO:0034477;GO:0004518	U6 snRNA 3'-end processing;nuclease activity	
+Cre01.g016001			Mitochondrion			
+Cre01.g027000	GMM:29.2.1.99.2.5;GMM:29.2.1.2.2.16;GMM:29.2.1.2.2.11	protein.synthesis.ribosomal protein.unknown.large subunit.L5;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L16;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L11				RPL11
+Cre01.g053200	GMM:28.99	DNA.unspecified	Chloroplast	GO:0008081;GO:0006281;GO:0005634	phosphoric diester hydrolase activity;DNA repair;nucleus	
+Cre01.g045426			Chloroplast			
+Cre01.g018650			Mitochondrion	GO:0003677	DNA binding	
+Cre01.g029450	GMM:27.3.62;GMM:27.3.53	RNA.regulation of transcription.nucleosome/chromatin assembly factor group;RNA.regulation of transcription.high mobility group family (HMG)				
+Cre01.g042250			Secretory pathway			
+Cre01.g006150	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	GTP binding	EFG9
+Cre01.g038050	GMM:31.9	cell.eyespot	Secretory pathway	GO:0016020;GO:0007165;GO:0000160;GO:0000155	membrane;signal transduction;phosphorelay signal transduction system;phosphorelay sensor kinase activity	COP7
+Cre01.g050900			Mitochondrion			
+Cre01.g003950			Chloroplast			
+Cre01.g013850						
+Cre01.g017850			Secretory pathway			
+Cre01.g000200			Mitochondrion			
+Cre01.g017600						
+Cre01.g017250			Secretory pathway			
+Cre01.g007150				GO:0005515	protein binding	
+Cre01.g047850	GMM:16.2	secondary metabolism.phenylpropanoids	Mitochondrion	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	
+Cre01.g036400	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
+Cre01.g027200	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC12
+Cre01.g030150						
+Cre01.g024050			Chloroplast			
+Cre01.g045200	GMM:17.7.1.4	hormone metabolism.jasmonate.synthesis-degradation.allene oxidase cyclase	Secretory pathway	GO:0016853;GO:0009507	isomerase activity;chloroplast	
+Cre01.g043300			Mitochondrion			
+Cre01.g054650						
+Cre01.g015700	GMM:29.5;GMM:13.1.3.4.12	protein.degradation;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm1
+Cre01.g049450			Secretory pathway			
+Cre01.g046450			Chloroplast			
+Cre01.g028450	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases		GO:0051536;GO:0008173;GO:0006364;GO:0005737;GO:0003824	iron-sulfur cluster binding;RNA methyltransferase activity;rRNA processing;cytoplasm;catalytic activity	
+Cre01.g000250			Mitochondrion	GO:0016021	integral component of membrane	SNR1
+Cre01.g020400	GMM:33.99	development.unspecified		GO:0005515	protein binding	
+Cre01.g009025						
+Cre01.g007200	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	
+Cre01.g021800	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
+Cre01.g019400						
+Cre01.g049132			Chloroplast	GO:0007165;GO:0005515	signal transduction;protein binding	
+Cre01.g018500	GMM:29.4	protein.postranslational modification		GO:0008897;GO:0000287	holo-[acyl-carrier-protein] synthase activity;magnesium ion binding	
+Cre01.g037250			Mitochondrion			
+Cre01.g001983						
+Cre01.g027950	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B	Mitochondrion	GO:0048487;GO:0042384;GO:0042073;GO:0030992	beta-tubulin binding;cilium assembly;intraciliary transport;intraciliary transport particle B	IFT74
+Cre01.g064727	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g068377	GMM:33.99	development.unspecified	Mitochondrion	GO:0042254	ribosome biogenesis	
+Cre01.g053450				GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre01.g016100			Secretory pathway			
+Cre01.g027100	GMM:29.5;GMM:29.3.2	protein.degradation;protein.targeting.mitochondria		GO:0016020;GO:0008236;GO:0006508	membrane;serine-type peptidase activity;proteolysis	IMP2
+Cre01.g007500	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	NSS1
+Cre01.g044450			Mitochondrion	GO:0016021;GO:0004252	integral component of membrane;serine-type endopeptidase activity	
+Cre01.g027550	GMM:26.10	misc.cytochrome P450		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	
+Cre01.g018800	GMM:9.9;GMM:34.1.1	mitochondrial electron transport / ATP synthesis.F1-ATPase;transport.p- and v-ATPases.H+-transporting two-sector ATPase	Mitochondrion	GO:0015986;GO:0015078	ATP synthesis coupled proton transport;hydrogen ion transmembrane transporter activity	ATP6
+Cre01.g049250						
+Cre01.g054700			Mitochondrion			
+Cre01.g004950						
+Cre01.g023650	GMM:34.3	transport.amino acids	Chloroplast	GO:0055085;GO:0016020;GO:0015171;GO:0006810;GO:0003333	transmembrane transport;membrane;amino acid transmembrane transporter activity;transport;amino acid transmembrane transport	
+Cre01.g026350						
+Cre01.g040100						
+Cre01.g045950						
+Cre01.g038000	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
+Cre01.g053600	GMM:29.2.1.99.2.27	protein.synthesis.ribosomal protein.unknown.large subunit.L27		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL27
+Cre01.g025350						FAP235
+Cre01.g000350	GMM:1.1.5.4	PS.lightreaction.other electron carrier (ox/red).ferredoxin oxireductase		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre01.g014200			Mitochondrion			
+Cre01.g028150						CPLD69
+Cre01.g044550			Chloroplast			
+Cre01.g048501	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
+Cre01.g013750			Chloroplast			
+Cre01.g053100						
+Cre01.g025808			Chloroplast			
+Cre01.g020182			Mitochondrion			
+Cre01.g039702						
+Cre01.g036250	GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g010700	GMM:31.4	cell.vesicle transport		GO:0005515	protein binding	SYP2
+Cre01.g025600			Mitochondrion			
+Cre01.g039050			Mitochondrion			
+Cre01.g040000	GMM:29.2.1.2.2.26	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L26	Chloroplast	GO:0015934;GO:0006412;GO:0003735	large ribosomal subunit;translation;structural constituent of ribosome	RPL26
+Cre01.g044150				GO:0008168	methyltransferase activity	
+Cre01.g055473						
+Cre01.g006800	GMM:29.4	protein.postranslational modification				PIGA
+Cre01.g052800	GMM:31.3;GMM:31.2;GMM:30.6;GMM:3.6;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g001250			Secretory pathway			
+Cre01.g012175						
+Cre01.g016700						
+Cre01.g052200	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre01.g015250	GMM:28.1	DNA.synthesis/chromatin structure		GO:0008408;GO:0003677;GO:0000166	3'-5' exonuclease activity;DNA binding;nucleotide binding	POLD1
+Cre01.g047950	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	IFT27
+Cre01.g035950			Mitochondrion	GO:0055085;GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0008271	transmembrane transport;integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;secondary active sulfate transmembrane transporter activity	
+Cre01.g038650	GMM:27.4;GMM:27.1.1	RNA.RNA binding;RNA.processing.splicing	Chloroplast	GO:0003676	nucleic acid binding	SRS2
+Cre01.g030050	GMM:29.2.1.99.2.34	protein.synthesis.ribosomal protein.unknown.large subunit.L34	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL34
+Cre01.g038250	GMM:13.2.7;GMM:11.3	amino acid metabolism.degradation.histidine;lipid metabolism.phospholipid synthesis	Chloroplast	GO:0030170;GO:0019752;GO:0016831	pyridoxal phosphate binding;carboxylic acid metabolic process;carboxy-lyase activity	SDC1
+Cre01.g046237	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0046872;GO:0005524	metal ion binding;ATP binding	
+Cre01.g010800	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease	Mitochondrion	GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
+Cre01.g036750						DMA1
+Cre01.g005150	GMM:13.1.5.2.3;GMM:13.1.1.3.11;GMM:1.2.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.serine glyoxylate aminotransferase;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine-glyoxylate aminotransferase;PS.photorespiration.aminotransferases peroxisomal	Mitochondrion			SGA1
+Cre01.g036150			Chloroplast			
+Cre01.g050600	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0008168;GO:0006139	methyltransferase activity;nucleobase-containing compound metabolic process	
+Cre01.g012750	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	KCN7
+Cre01.g025250	GMM:18.3	Co-factor and vitamine metabolism.riboflavin	Chloroplast	GO:0009231;GO:0008531	riboflavin biosynthetic process;riboflavin kinase activity	RFK2
+Cre01.g051250	GMM:31.6.1.6.1;GMM:31.6.1.4.1	cell.motility.eukaryotes.central pair.C1a;cell.motility.eukaryotes.axonemal dyneins.outer arm				DLE1
+Cre01.g001800	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	FAP403
+Cre01.g014600	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CSK2
+Cre01.g025150						CPLD15
+Cre01.g040801			Chloroplast			
+Cre01.g063997	GMM:35.1.41	not assigned.no ontology.hydroxyproline rich proteins	Chloroplast			
+Cre01.g007950	GMM:26.1	misc.misc2		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP55B1
+Cre01.g027800	GMM:34.1.1.6;GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit H;transport.p- and v-ATPases.H+-transporting two-sector ATPase		GO:0046961;GO:0016820;GO:0015991;GO:0000221	"proton-transporting ATPase activity, rotational mechanism;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;ATP hydrolysis coupled proton transport;vacuolar proton-transporting V-type ATPase, V1 domain"	ATPVH
+Cre01.g038151	GMM:31.2;GMM:29.5.11.20;GMM:27.3.42	cell.division;protein.degradation.ubiquitin.proteasom;RNA.regulation of transcription.bromodomain proteins		GO:0005524;GO:0005515	ATP binding;protein binding	
+Cre01.g014700			Mitochondrion			
+Cre01.g021450	GMM:20.1.3	stress.biotic.signalling		GO:0005515	protein binding	TPR4
+Cre01.g003650						
+Cre01.g000800			Secretory pathway			CGL136
+Cre01.g028950	GMM:26.23	misc.rhodanese	Secretory pathway			
+Cre01.g038400	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0051082;GO:0006457;GO:0005783;GO:0005509	unfolded protein binding;protein folding;endoplasmic reticulum;calcium ion binding	CRT2
+Cre01.g016200	GMM:34.14;GMM:20.1.3.1	transport.unspecified cations;stress.biotic.signalling.MLO-like		GO:0016021;GO:0006952	integral component of membrane;defense response	MLO4
+Cre01.g036550			Secretory pathway	GO:0035556;GO:0016020	intracellular signal transduction;membrane	ERV14
+Cre01.g030700	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK14
+Cre01.g002824	GMM:26.16	misc.myrosinases-lectin-jacalin	Mitochondrion			SRR24B
+Cre01.g020950	GMM:29.2.6	protein.synthesis.ribosomal RNA		GO:0042254;GO:0005634	ribosome biogenesis;nucleus	
+Cre01.g063632	GMM:28.2	DNA.repair		GO:0008534;GO:0006289;GO:0006284;GO:0003684	oxidized purine nucleobase lesion DNA N-glycosylase activity;nucleotide-excision repair;base-excision repair;damaged DNA binding	
+Cre01.g001100						
+Cre01.g037650						
+Cre01.g046650						
+Cre01.g011200	GMM:27.3	RNA.regulation of transcription		GO:0006367;GO:0005669	transcription initiation from RNA polymerase II promoter;transcription factor TFIID complex	
+Cre01.g003475			Secretory pathway			
+Cre01.g021350			Chloroplast			
+Cre01.g047265			Secretory pathway			PHC52
+Cre01.g061807	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis	Secretory pathway			
+Cre01.g021700	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG36
+Cre01.g041752	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Chloroplast			
+Cre01.g035200			Secretory pathway	GO:0008270	zinc ion binding	
+Cre01.g008300			Mitochondrion			
+Cre01.g053950			Chloroplast			
+Cre01.g039250	GMM:29.2.1.2.1.2	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S2		GO:0006412;GO:0005840;GO:0003735;GO:0003723	translation;ribosome;structural constituent of ribosome;RNA binding	RPS2
+Cre01.g010150				GO:0005525	GTP binding	
+Cre01.g029900	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre01.g009200			Chloroplast			
+Cre01.g039350	GMM:26.10;GMM:26.1;GMM:16.2	misc.cytochrome P450;misc.misc2;secondary metabolism.phenylpropanoids	Secretory pathway	GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	NCR2
+Cre01.g043700						
+Cre01.g024400	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Secretory pathway			TRS85
+Cre01.g022100	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	
+Cre01.g043850	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g019300			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre01.g048250						
+Cre01.g009500	GMM:30.3;GMM:29.4	signalling.calcium;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDPK3
+Cre01.g040517						
+Cre01.g047700	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN40
+Cre01.g033700						
+Cre01.g005050			Secretory pathway	GO:0016020	membrane	
+Cre01.g041000						
+Cre01.g049100			Secretory pathway	GO:0005515	protein binding	
+Cre01.g007051	GMM:29.5.11;GMM:29.2.1.2.2.40	protein.degradation.ubiquitin;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L40		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL40
+Cre01.g020701			Mitochondrion			
+Cre01.g012650	GMM:34.15	transport.potassium	Secretory pathway	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	KCN9
+Cre01.g029400	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
+Cre01.g053360						
+Cre01.g037500			Chloroplast	GO:0005515	protein binding	
+Cre01.g013500						
+Cre01.g001400	GMM:29.5	protein.degradation	Secretory pathway	GO:0016020;GO:0007155;GO:0006508;GO:0004222	membrane;cell adhesion;proteolysis;metalloendopeptidase activity	ZMP1
+Cre01.g023200						
+Cre01.g005950			Chloroplast			
+Cre01.g029550						
+Cre01.g026700			Chloroplast			
+Cre01.g054950	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion			
+Cre01.g030900	GMM:18.5.2.4;GMM:11.1.8	Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.succinyl-benzoyl CoA synthetase;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase	Secretory pathway	GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre01.g049950	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	VLE1
+Cre01.g050616						
+Cre01.g037751						
+Cre01.g016750	GMM:20.2.5;GMM:1.1.1.2	stress.abiotic.light;PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			PSBS2
+Cre01.g028713						
+Cre01.g016500			Secretory pathway			DLD2
+Cre01.g016514	GMM:8.1.1.3;GMM:11.1.31	TCA / organic transformation.TCA.pyruvate DH.E3;lipid metabolism.FA synthesis and FA elongation.pyruvate DH	Chloroplast	GO:0055114;GO:0050660;GO:0045454;GO:0016491;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;cell redox homeostasis;oxidoreductase activity;tRNA processing	
+Cre01.g031050	GMM:27.3.52	RNA.regulation of transcription.global transcription factor group				
+Cre01.g006000			Mitochondrion			
+Cre01.g035850	GMM:31.4;GMM:29.3.4.2	cell.vesicle transport;protein.targeting.secretory pathway.golgi		GO:0030127;GO:0008270;GO:0006888;GO:0006886	COPII vesicle coat;zinc ion binding;ER to Golgi vesicle-mediated transport;intracellular protein transport	SEC24B
+Cre01.g032350			Secretory pathway			PIG8
+Cre01.g027350	GMM:27.1	RNA.processing		GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	tmg10
+Cre01.g055432	GMM:34.99;GMM:31.2.5	transport.misc;cell.division.plastid	Mitochondrion	GO:0055085;GO:0016020	transmembrane transport;membrane	
+Cre01.g069837						
+Cre01.g023950			Mitochondrion			
+Cre01.g003050	GMM:31.4	cell.vesicle transport		GO:0015031;GO:0006904;GO:0000145	protein transport;vesicle docking involved in exocytosis;exocyst	SEC8
+Cre01.g000450						AXL2
+Cre01.g043150						
+Cre01.g047600	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
+Cre01.g029200	GMM:31.2	cell.division	Secretory pathway	GO:0008233;GO:0006508;GO:0005634	peptidase activity;proteolysis;nucleus	ESP1
+Cre01.g051000	GMM:26.6	misc.O-methyl transferases	Chloroplast	GO:0008168;GO:0006479	methyltransferase activity;protein methylation	
+Cre01.g017500	GMM:29.5.11.4.2;GMM:29.2.2.3.99;GMM:29.2.2.1	protein.degradation.ubiquitin.E3.RING;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0042254	ribosome biogenesis	
+Cre01.g005600			Chloroplast	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX8
+Cre01.g022666			Chloroplast			
+Cre01.g031250						
+Cre01.g006550						
+Cre01.g017450	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway	GO:0006260;GO:0003887;GO:0003677	DNA replication;DNA-directed DNA polymerase activity;DNA binding	POLA2
+Cre01.g037350			Mitochondrion			CGLD2
+Cre01.g005701			Secretory pathway			
+Cre01.g022550						
+Cre01.g043450			Chloroplast			
+Cre01.g028600	GMM:26.8;GMM:16.4.1	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;secondary metabolism.N misc.alkaloid-like"	Mitochondrion			
+Cre01.g034800						
+Cre01.g012950	GMM:30.2.99;GMM:30.11;GMM:29.4.1	signalling.receptor kinases.misc;signalling.light;protein.postranslational modification.kinase		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g023500						
+Cre01.g033550	GMM:21.1.1;GMM:21.1	redox.thioredoxin.PDIL;redox.thioredoxin	Secretory pathway	GO:0045454;GO:0005783	cell redox homeostasis;endoplasmic reticulum	PDI2
+Cre01.g045500						
+Cre01.g035400				GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre01.g004350	GMM:35.1.41	not assigned.no ontology.hydroxyproline rich proteins		GO:0005515	protein binding	HLM1
+Cre01.g031726			Secretory pathway			
+Cre01.g070932	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre01.g022450			Mitochondrion			
+Cre01.g031951						
+Cre01.g019850	GMM:29.5.9;GMM:29.5.7	protein.degradation.AAA type;protein.degradation.metalloprotease	Mitochondrion	GO:0016021;GO:0008270;GO:0006508;GO:0005524;GO:0004222	integral component of membrane;zinc ion binding;proteolysis;ATP binding;metalloendopeptidase activity	FTSH3
+Cre01.g017900			Secretory pathway			
+Cre01.g033050						
+Cre01.g039626						
+Cre01.g042100						
+Cre01.g046800			Chloroplast			
+Cre01.g046850	GMM:29.5.11.3;GMM:29.5.11	protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin				UBC13
+Cre01.g018900	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0016567;GO:0005515;GO:0004842	protein ubiquitination;protein binding;ubiquitin-protein transferase activity	
+Cre01.g042352	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0016020;GO:0006508;GO:0005044;GO:0004252	membrane;proteolysis;scavenger receptor activity;serine-type endopeptidase activity	SRR19
+Cre01.g054550						
+Cre01.g008850						HLM2
+Cre01.g015850						FAP68
+Cre01.g026450	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	SRS1
+Cre01.g044200						
+Cre01.g002300	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN19-2
+Cre01.g027700			Chloroplast			
+Cre01.g055461			Chloroplast			
+Cre01.g044400			Chloroplast			
+Cre01.g012800			Chloroplast			FAP230
+Cre01.g026500	GMM:29.5.4;GMM:27.3.99	protein.degradation.aspartate protease;RNA.regulation of transcription.unclassified	Secretory pathway	GO:0006508;GO:0004190	proteolysis;aspartic-type endopeptidase activity	ASP3
+Cre01.g032250			Chloroplast			
+Cre01.g003700			Mitochondrion			
+Cre01.g022462						
+Cre01.g041650			Chloroplast			
+Cre01.g011630			Chloroplast			
+Cre01.g033832	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	
+Cre01.g033350	GMM:16.4.2.1	secondary metabolism.N misc.betaine.betaine-aldehyde dehydrogenase	Secretory pathway	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	ALD2
+Cre01.g025500			Mitochondrion			
+Cre01.g001501			Chloroplast			OPR1
+Cre01.g012450	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	
+Cre01.g029100	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005634	DNA replication;nucleus	
+Cre01.g018200	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
+Cre01.g044650	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Mitochondrion	GO:0005515	protein binding	
+Cre01.g048050	GMM:18.4.6	Co-factor and vitamine metabolism.pantothenate.phosphopantothenoylcysteine synthetase (PPCS)				COA3
+Cre01.g049550			Mitochondrion			
+Cre01.g038850	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre01.g029950						
+Cre01.g029700			Secretory pathway			
+Cre01.g030600	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPKKK4
+Cre01.g040900			Secretory pathway			
+Cre01.g046600						
+Cre01.g046501			Chloroplast			
+Cre01.g034850						
+Cre01.g004750	GMM:3.3	minor CHO metabolism.sugar alcohols	Chloroplast			
+Cre01.g036350	GMM:34.21;GMM:30.3;GMM:3.3	transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols	Mitochondrion	GO:0046872;GO:0000166	metal ion binding;nucleotide binding	PMA1
+Cre01.g016528	GMM:3.5	minor CHO metabolism.others		GO:0046872;GO:0019509;GO:0005737	metal ion binding;L-methionine biosynthetic process from methylthioadenosine;cytoplasm	
+Cre01.g039750	GMM:26.1	misc.misc2	Chloroplast	GO:0042586;GO:0005506	peptide deformylase activity;iron ion binding	PDF1B
+Cre01.g019000	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis				
+Cre01.g013350			Chloroplast			
+Cre01.g007400			Chloroplast			
+Cre01.g045700	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate	Secretory pathway	GO:0055114;GO:0020037;GO:0006979;GO:0004601	oxidation-reduction process;heme binding;response to oxidative stress;peroxidase activity	CAT2
+Cre01.g027400			Mitochondrion			
+Cre01.g034451	GMM:29.5	protein.degradation		GO:0005515	protein binding	
+Cre01.g011901	GMM:14.1	S-assimilation.APS		GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS7
+Cre01.g016300			Chloroplast			CAM3
+Cre01.g007700	GMM:29.5	protein.degradation	Chloroplast	GO:0006508;GO:0005622;GO:0004177	proteolysis;intracellular;aminopeptidase activity	
+Cre01.g055250	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			
+Cre01.g010864	GMM:29.2.5	protein.synthesis.release	Secretory pathway	GO:0016149;GO:0006415;GO:0005737;GO:0003747	"translation release factor activity, codon specific;translational termination;cytoplasm;translation release factor activity"	
+Cre01.g055416	GMM:33.99	development.unspecified		GO:0005681;GO:0000398	"spliceosomal complex;mRNA splicing, via spliceosome"	
+Cre01.g001750	GMM:29.6.1;GMM:29.6	protein.folding.prefoldin and trigger factor;protein.folding	Chloroplast.Stroma	GO:0015031;GO:0006457	protein transport;protein folding	TIG1
+Cre01.g041850			Secretory pathway			
+Cre01.g015150			Chloroplast			
+Cre01.g030750			Mitochondrion			
+Cre01.g013600			Chloroplast			
+Cre01.g037600			Mitochondrion			
+Cre01.g044950			Chloroplast			
+Cre01.g047550	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	RAB6
+Cre01.g006670			Mitochondrion			
+Cre01.g025100						
+Cre01.g011300	GMM:29.5.5	protein.degradation.serine protease	Secretory pathway	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	
+Cre01.g008600			Chloroplast	GO:0016757;GO:0006486	"transferase activity, transferring glycosyl groups;protein glycosylation"	
+Cre01.g017400						
+Cre01.g049900						
+Cre01.g029000			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	COQD2
+Cre01.g011350	GMM:27.2	RNA.transcription		GO:0006367;GO:0005634	transcription initiation from RNA polymerase II promoter;nucleus	
+Cre01.g047500			Chloroplast	GO:0005515	protein binding	
+Cre01.g053850	GMM:33.99;GMM:30.11;GMM:29.5.11.4.99	development.unspecified;signalling.light;protein.degradation.ubiquitin.E3.unspecified	Mitochondrion	GO:0005515	protein binding	
+Cre01.g004124			Mitochondrion			
+Cre01.g048350	GMM:3.5;GMM:26.3;GMM:10.6.2	"minor CHO metabolism.others;misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Chloroplast	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	CGL53
+Cre01.g055465	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified				
+Cre01.g058886	GMM:34.5	transport.ammonium		GO:0005525	GTP binding	
+Cre01.g045450						
+Cre01.g055300			Mitochondrion			
+Cre01.g000700				GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre01.g037050				GO:0008270;GO:0003677	zinc ion binding;DNA binding	
+Cre01.g046950			Mitochondrion			
+Cre01.g065822	GMM:31.6.1.3.2.1	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex A		GO:0005515	protein binding	IFT122
+Cre01.g005200	GMM:11.9.2	lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	TGL2
+Cre01.g053000	GMM:11.5.2	lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)	Chloroplast	GO:0055114;GO:0051287;GO:0046168;GO:0016616;GO:0009331;GO:0006072;GO:0005975;GO:0004367	"oxidation-reduction process;NAD binding;glycerol-3-phosphate catabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;glycerol-3-phosphate dehydrogenase complex;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity"	GPD2
+Cre01.g041200						
+Cre01.g031750	GMM:29.2.2	protein.synthesis.ribosome biogenesis	Chloroplast			
+Cre01.g048200	GMM:28.1;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.processing.RNA helicase	Mitochondrion			
+Cre01.g044000			Chloroplast			
+Cre01.g062902				GO:0016592;GO:0006357;GO:0001104	mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity	
+Cre01.g026150				GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	
+Cre01.g033200						
+Cre01.g039000						
+Cre01.g034950	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre01.g016950	GMM:29.4	protein.postranslational modification		GO:0018342;GO:0008318	protein prenylation;protein prenyltransferase activity	
+Cre01.g035750			Secretory pathway	GO:0055085;GO:0016020	transmembrane transport;membrane	MSC3
+Cre01.g006950	GMM:4.3.10;GMM:4.1.10;GMM:1.3.6	glycolysis.unclear/dually targeted.aldolase;glycolysis.cytosolic branch.aldolase;PS.calvin cycle.aldolase	Chloroplast	GO:0006096;GO:0004332	glycolytic process;fructose-bisphosphate aldolase activity	FBA1
+Cre01.g031650			Chloroplast	GO:0016757;GO:0016021	"transferase activity, transferring glycosyl groups;integral component of membrane"	CGLD12
+Cre01.g050350	GMM:29.5.11.3	protein.degradation.ubiquitin.E2		GO:0016021;GO:0004252	integral component of membrane;serine-type endopeptidase activity	RBL6
+Cre01.g000050			Chloroplast			RWP14
+Cre01.g043950			Mitochondrion			
+Cre01.g039850	GMM:3.5;GMM:13.2.3.5.1;GMM:13.2.3.5	minor CHO metabolism.others;amino acid metabolism.degradation.aspartate family.lysine.lysine decarboxylase;amino acid metabolism.degradation.aspartate family.lysine	Mitochondrion			CGL48
+Cre01.g010100			Secretory pathway	GO:0008080	N-acetyltransferase activity	
+Cre01.g008900						
+Cre01.g019200				GO:0030688;GO:0006364	"preribosome, small subunit precursor;rRNA processing"	NOP52
+Cre01.g025950	GMM:35.1.5;GMM:33.99	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;development.unspecified	Mitochondrion			PPR8
+Cre01.g030400						
+Cre01.g041400			Chloroplast			
+Cre01.g005450	GMM:31.6.1.5.1	cell.motility.eukaryotes.radial spoke.head				RSP10
+Cre01.g038900	GMM:11.9.2.2	lipid metabolism.lipid degradation.lipases.acylglycerol lipase				
+Cre01.g050700						
+Cre01.g048701	GMM:11.6	lipid metabolism.lipid transfer proteins etc	Chloroplast			
+Cre01.g043200			Chloroplast			
+Cre01.g023800			Mitochondrion			
+Cre01.g011050						
+Cre01.g045850	GMM:30.2.17;GMM:27.1.19	signalling.receptor kinases.DUF 26;RNA.processing.ribonucleases		GO:0015074	DNA integration	
+Cre01.g020141						
+Cre01.g051700	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre01.g010832	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	
+Cre01.g020575	GMM:29.6.2.1	protein.folding.chaperones and co-chaperones.small HSPs	Chloroplast			HSP22D
+Cre01.g035300	GMM:26.8;GMM:22.1.5	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;polyamine metabolism.synthesis.N-carbamoylputrescine amidohydrolase"	Chloroplast	GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	CPA2
+Cre01.g042600						
+Cre01.g051400	GMM:29.3.4.1	protein.targeting.secretory pathway.ER	Secretory pathway	GO:0046923;GO:0016021;GO:0006621	ER retention sequence binding;integral component of membrane;protein retention in ER lumen	ERD2A
+Cre01.g053750			Secretory pathway			LPL3
+Cre01.g023400			Secretory pathway			
+Cre01.g016570	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g031450						
+Cre01.g031850			Chloroplast			
+Cre01.g022650	GMM:26.8;GMM:23.2.1.5;GMM:23	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;nucleotide metabolism.degradation.pyrimidine.beta-ureidopropionase;nucleotide metabolism"		GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	
+Cre01.g014300			Secretory pathway			
+Cre01.g052000	GMM:31.1	cell.organisation				
+Cre01.g018450						
+Cre01.g020887	GMM:23.1.2	nucleotide metabolism.synthesis.purine				CYG49
+Cre01.g009950				GO:0008168	methyltransferase activity	NEP1
+Cre01.g009101	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre01.g035150				GO:0046872	metal ion binding	
+Cre01.g036100			Mitochondrion	GO:0005515	protein binding	
+Cre01.g008350			Secretory pathway			
+Cre01.g051875			Mitochondrion			
+Cre01.g049050						
+Cre01.g031100	GMM:1.1.1	PS.lightreaction.photosystem II	Chloroplast.Stroma.Thylakoid.Membrane			TEF30
+Cre01.g006600	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre01.g018750						
+Cre01.g013200			Secretory pathway			
+Cre01.g043650						DLU2
+Cre01.g032650	GMM:7.2.2	OPP.non-reductive PP.transaldolase	Chloroplast	GO:0005975	carbohydrate metabolic process	TAL1
+Cre01.g021650						
+Cre01.g018000	GMM:27.2	RNA.transcription		GO:0008270;GO:0006351;GO:0003676	"zinc ion binding;transcription, DNA-templated;nucleic acid binding"	RPA12
+Cre01.g002400	GMM:11.9.2.1;GMM:11.9.2	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase;lipid metabolism.lipid degradation.lipases		GO:0006629	lipid metabolic process	TGL1
+Cre01.g021200				GO:0005515	protein binding	CGL47
+Cre01.g057791						
+Cre01.g012000			Mitochondrion			
+Cre01.g054500			Mitochondrion	GO:0055114;GO:0050661;GO:0016021;GO:0008750	oxidation-reduction process;NADP binding;integral component of membrane;NAD(P)+ transhydrogenase (AB-specific) activity	
+Cre01.g030200	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	FAP6
+Cre01.g071662	GMM:2.2.1.3;GMM:11.1.8	major CHO metabolism.degradation.sucrose.invertases;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase		GO:0008152;GO:0003824	metabolic process;catalytic activity	ACS1
+Cre01.g041050	GMM:34.3	transport.amino acids		GO:0016020;GO:0015171;GO:0003333	membrane;amino acid transmembrane transporter activity;amino acid transmembrane transport	AOC6
+Cre01.g055408	GMM:2.2.1.3;GMM:11.1.8	major CHO metabolism.degradation.sucrose.invertases;lipid metabolism.FA synthesis and FA elongation.acyl CoA ligase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	ACS2
+Cre01.g009601			Chloroplast			
+Cre01.g050800			Mitochondrion			
+Cre01.g060347			Mitochondrion			
+Cre01.g003532						
+Cre01.g014400						
+Cre01.g009676	GMM:33.99;GMM:27.3.3	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"				BUG25
+Cre01.g022700						
+Cre01.g004250	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm				DLT3
+Cre01.g043750						BBS7
+Cre01.g054433						
+Cre01.g003524	GMM:30.3;GMM:29.4	signalling.calcium;protein.postranslational modification				
+Cre01.g025767			Secretory pathway			
+Cre01.g051500	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ULP1
+Cre01.g008750			Chloroplast			
+Cre01.g008500						
+Cre01.g010400			Secretory pathway			FAP380
+Cre01.g001350	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding;transporter activity"	
+Cre01.g002950						
+Cre01.g011800	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g031350						
+Cre01.g022850			Mitochondrion			
+Cre01.g044850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
+Cre01.g007300						
+Cre01.g024650	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g001600	GMM:35.1.9;GMM:31.1	not assigned.no ontology.BTB/POZ domain-containing protein;cell.organisation		GO:0005515	protein binding	
+Cre01.g009400	GMM:34.14	transport.unspecified cations		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	NSS2
+Cre01.g015000	GMM:23.4.99;GMM:13.1.2.3.2	nucleotide metabolism.phosphotransfer and pyrophosphatases.misc;amino acid metabolism.synthesis.glutamate family.arginine.acetylglutamate kinase	Chloroplast			NAGK1
+Cre01.g020750			Chloroplast			
+Cre01.g056331	GMM:21.99;GMM:18.2	redox.misc;Co-factor and vitamine metabolism.thiamine				
+Cre01.g033500						
+Cre01.g049600	GMM:1.1.4	PS.lightreaction.ATP synthase	Chloroplast			CGLD22
+Cre01.g025400	GMM:31.6.1.6.4	cell.motility.eukaryotes.central pair.C2b				HYDIN
+Cre01.g015550			Chloroplast	GO:0003824	catalytic activity	
+Cre01.g000900			Chloroplast			CPLD20
+Cre01.g026800			Mitochondrion			
+Cre01.g000650	GMM:26.7	"misc.oxidases - copper, flavone etc"		GO:0055114;GO:0048038;GO:0009308;GO:0008131;GO:0005507	oxidation-reduction process;quinone binding;amine metabolic process;primary amine oxidase activity;copper ion binding	AMX2
+Cre01.g034300						
+Cre01.g022000	GMM:29.5.9	protein.degradation.AAA type		GO:0005524	ATP binding	
+Cre01.g013450						
+Cre01.g057061			Mitochondrion			
+Cre01.g014850						
+Cre01.g011600	GMM:11.1.13	lipid metabolism.FA synthesis and FA elongation.acyl-CoA binding protein		GO:0006355;GO:0005634;GO:0003700	"regulation of transcription, DNA-templated;nucleus;transcription factor activity, sequence-specific DNA binding"	
+Cre01.g055457	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g022350	GMM:29.2.2.3.5;GMM:28.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL3
+Cre01.g018100			Secretory pathway	GO:0008138;GO:0006470	protein tyrosine/serine/threonine phosphatase activity;protein dephosphorylation	
+Cre01.g048900	GMM:27.3.42	RNA.regulation of transcription.bromodomain proteins		GO:0005515	protein binding	
+Cre01.g008250			Chloroplast			
+Cre01.g041550	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g016850			Chloroplast			
+Cre01.g000033			Mitochondrion			
+Cre01.g039101	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB7
+Cre01.g027300						
+Cre01.g048102						
+Cre01.g045800						
+Cre01.g041100	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	HLM3
+Cre01.g002600			Chloroplast			
+Cre01.g045050			Mitochondrion			
+Cre01.g034380	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family	Mitochondrion			
+Cre01.g020450			Secretory pathway			
+Cre01.g020264	GMM:31.1;GMM:29.5.2	cell.organisation;protein.degradation.autophagy		GO:0006914	autophagy	ATG6
+Cre01.g018550			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG69
+Cre01.g047800	GMM:34.21;GMM:21.4	transport.calcium;redox.glutaredoxins	Chloroplast	GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	GRX6
+Cre01.g039550	GMM:31.1	cell.organisation	Chloroplast			PLAP1
+Cre01.g030500	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG58
+Cre01.g003200				GO:0016491	oxidoreductase activity	
+Cre01.g055428						
+Cre01.g037850	GMM:11.1.1	lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation	Chloroplast			BCC2
+Cre01.g047100			Chloroplast			
+Cre01.g036650	GMM:30.3;GMM:29.4.1;GMM:29.4;GMM:29.2.2	signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g037950						
+Cre01.g045640	GMM:3.5;GMM:29.4.1	minor CHO metabolism.others;protein.postranslational modification.kinase				SRR12
+Cre01.g037700	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase	Chloroplast	GO:0006629	lipid metabolic process	FAD3
+Cre01.g032800	GMM:34.14	transport.unspecified cations				MRS6
+Cre01.g012350				GO:0006351;GO:0003887;GO:0003677	"transcription, DNA-templated;DNA-directed DNA polymerase activity;DNA binding"	
+Cre01.g006766			Secretory pathway			
+Cre01.g052550						
+Cre01.g020050			Mitochondrion			
+Cre01.g023750						
+Cre01.g054300			Mitochondrion			
+Cre01.g026250	GMM:3.8.2	minor CHO metabolism.galactose.alpha-galactosidases				AGA1
+Cre01.g004000						
+Cre01.g003800	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g023350	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	THO2
+Cre01.g025025				GO:0003677	DNA binding	
+Cre01.g045550	GMM:34.8;GMM:2.2.2.6	transport.metabolite transporters at the envelope membrane;major CHO metabolism.degradation.starch.transporter	Chloroplast	GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre01.g036451						
+Cre01.g007811			Chloroplast			
+Cre01.g043100			Chloroplast			
+Cre01.g009731	GMM:29.4	protein.postranslational modification	Mitochondrion			
+Cre01.g005350	GMM:28.1.1	DNA.synthesis/chromatin structure.retrotransposon/transposase				tnp3
+Cre01.g041300				GO:0006488;GO:0005789;GO:0004583	dolichol-linked oligosaccharide biosynthetic process;endoplasmic reticulum membrane;dolichyl-phosphate-glucose-glycolipid alpha-glucosyltransferase activity	ALG10
+Cre01.g004550	GMM:11.9.2	lipid metabolism.lipid degradation.lipases		GO:0005515	protein binding	FAP190
+Cre01.g006876			Mitochondrion			
+Cre01.g015451	GMM:29.1	protein.aa activation		GO:0055114	oxidation-reduction process	
+Cre01.g034600			Chloroplast	GO:0005515	protein binding	
+Cre01.g024550	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g021900	GMM:29.1.30	protein.aa activation.pseudouridylate synthase		GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS11
+Cre01.g046250			Secretory pathway			
+Cre01.g034750						
+Cre01.g040200	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	WNK2
+Cre01.g054350						
+Cre01.g018850	GMM:28.1	DNA.synthesis/chromatin structure				
+Cre01.g006628						
+Cre01.g051100	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005681;GO:0000398	"spliceosomal complex;mRNA splicing, via spliceosome"	
+Cre01.g007251			Mitochondrion			
+Cre01.g045600			Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	SRR12
+Cre01.g034200	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre01.g048800				GO:0008080	N-acetyltransferase activity	
+Cre01.g043550	GMM:27.3.28	RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Secretory pathway	GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre01.g023050						UBX2
+Cre01.g008976			Chloroplast			
+Cre01.g035050						
+Cre01.g011400						
+Cre01.g052350	GMM:29.2.1.1.3.2.20	protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L20	Chloroplast	GO:0019843;GO:0006412;GO:0005840;GO:0005622;GO:0003735	rRNA binding;translation;ribosome;intracellular;structural constituent of ribosome	MRPL20
+Cre01.g014000			Chloroplast			
+Cre01.g051550	GMM:27.1.2;GMM:27.1	RNA.processing.RNA helicase;RNA.processing		GO:0004386	helicase activity	HEL8
+Cre01.g017750						
+Cre01.g069472	GMM:29.1.16	protein.aa activation.cysteine-tRNA ligase	Chloroplast			
+Cre01.g019550						
+Cre01.g028300						
+Cre01.g028550	GMM:29.5.3	protein.degradation.cysteine protease				OTU1
+Cre01.g050150	GMM:17.7.1.5	hormone metabolism.jasmonate.synthesis-degradation.12-oxophytodienoate reductase 3	Chloroplast	GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	NFO1
+Cre01.g017300			Chloroplast			PRPS21
+Cre01.g025983			Secretory pathway			
+Cre01.g047400						
+Cre01.g002900						
+Cre01.g027575	GMM:26.1	misc.misc2	Chloroplast			
+Cre01.g036000	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g040379	GMM:28.2;GMM:27.1.2	DNA.repair;RNA.processing.RNA helicase				
+Cre01.g050000			Secretory pathway			
+Cre01.g047900	GMM:31.1	cell.organisation				
+Cre01.g003100			Chloroplast			
+Cre01.g050500	GMM:27.3	RNA.regulation of transcription	Mitochondrion			TCB1
+Cre01.g027600			Chloroplast			
+Cre01.g002100			Mitochondrion			
+Cre01.g017701	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre01.g006301						
+Cre01.g017150			Chloroplast			
+Cre01.g012126	GMM:14.1	S-assimilation.APS	Secretory pathway;Chloroplast	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS4
+Cre01.g004900						
+Cre01.g052300	GMM:27.3.18	RNA.regulation of transcription.E2F/DP transcription factor family		GO:0006355;GO:0005667;GO:0003700	"regulation of transcription, DNA-templated;transcription factor complex;transcription factor activity, sequence-specific DNA binding"	E2F1
+Cre01.g042150	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway	GO:0016020	membrane	
+Cre01.g055444			Mitochondrion			
+Cre01.g021100			Mitochondrion			
+Cre01.g002227						
+Cre01.g038500	GMM:26.10;GMM:26.1	misc.cytochrome P450;misc.misc2	Chloroplast	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP746A1
+Cre01.g059617			Chloroplast			
+Cre01.g054800	GMM:29.4	protein.postranslational modification				
+Cre01.g011000	GMM:29.2.1.2.2.6	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L6		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL6
+Cre01.g022800						
+Cre01.g052100	GMM:29.2.1.1.1.2.18	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L18	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL18
+Cre01.g002700			Mitochondrion			
+Cre01.g053700	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
+Cre01.g045350						DRC5
+Cre01.g031004	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family				
+Cre01.g005534			Chloroplast			
+Cre01.g008150	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006470;GO:0006468;GO:0005524;GO:0004722;GO:0004672;GO:0003824	protein dephosphorylation;protein phosphorylation;ATP binding;protein serine/threonine phosphatase activity;protein kinase activity;catalytic activity	RPK1
+Cre01.g016556	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0019887;GO:0005956	protein kinase regulator activity;protein kinase CK2 complex	
+Cre01.g030300						
+Cre01.g037150	GMM:34.18	transport.unspecified anions	Chloroplast	GO:0055085;GO:0016020;GO:0006821;GO:0005247	transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity	
+Cre01.g015400						
+Cre01.g050451	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0006464	cellular protein modification process	TTL6
+Cre01.g021550						
+Cre01.g055151			Mitochondrion			
+Cre01.g027850	GMM:30.11	signalling.light				NUOAF2
+Cre01.g042950						
+Cre01.g033950			Chloroplast	GO:0008270	zinc ion binding	EXN2
+Cre01.g051300						
+Cre01.g040533						
+Cre01.g015100			Chloroplast			CSB5
+Cre01.g007600	GMM:16.8.2	secondary metabolism.flavonoids.chalcones		GO:0016872	intramolecular lyase activity	
+Cre01.g049350	GMM:29.5	protein.degradation	Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	
+Cre01.g048450						
+Cre01.g002200	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899;GO:0003677	"transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPB6
+Cre01.g050624			Secretory pathway			
+Cre01.g027750			Chloroplast			MFT7
+Cre01.g051466			Secretory pathway			
+Cre01.g041950			Chloroplast			
+Cre01.g055400						
+Cre01.g043817			Chloroplast			
+Cre01.g006402						
+Cre01.g014900			Chloroplast			
+Cre01.g030968			Mitochondrion			
+Cre01.g032900			Chloroplast			
+Cre01.g039300	GMM:27.1;GMM:1.1.1.3	RNA.processing;PS.lightreaction.photosystem II.biogenesis		GO:0003723;GO:0003676	RNA binding;nucleic acid binding	RB47
+Cre01.g045150						FAP304
+Cre01.g004300	GMM:13.1.3.1.1;GMM:13.1.3.1	amino acid metabolism.synthesis.aspartate family.asparagine.asparagine synthetase;amino acid metabolism.synthesis.aspartate family.asparagine	Chloroplast	GO:0006529;GO:0004066	asparagine biosynthetic process;asparagine synthase (glutamine-hydrolyzing) activity	ASN1
+Cre01.g029500	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CDPKK3
+Cre01.g022150				GO:0008076;GO:0006813;GO:0005249	voltage-gated potassium channel complex;potassium ion transport;voltage-gated potassium channel activity	KCN3
+Cre01.g045400	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway			CSB8
+Cre01.g009900	GMM:30.99;GMM:29.9;GMM:20.2.1	signalling.unspecified;protein.co-chaperones;stress.abiotic.heat	Chloroplast			CDJ3
+Cre01.g001657						DAB1
+Cre01.g042900	GMM:29.2.2.3.99;GMM:27.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;RNA.processing				
+Cre01.g015950			Chloroplast	GO:0003725	double-stranded RNA binding	CPL11
+Cre01.g017200	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs		GO:0006457	protein folding	FKB99
+Cre01.g012244						
+Cre01.g026550	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0051082;GO:0006457;GO:0005524	unfolded protein binding;protein folding;ATP binding	CCT7
+Cre01.g013550			Mitochondrion			
+Cre01.g055448			Chloroplast			
+Cre01.g000300			Mitochondrion			GDP8
+Cre01.g001450						
+Cre01.g034650						
+Cre01.g053150	GMM:11.5.2	lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)		GO:0055114;GO:0051287;GO:0046168;GO:0016616;GO:0009331;GO:0006072;GO:0005975;GO:0004367	"oxidation-reduction process;NAD binding;glycerol-3-phosphate catabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;glycerol-3-phosphate dehydrogenase complex;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity"	GPD3
+Cre01.g010500						
+Cre01.g047350			Chloroplast			
+Cre01.g037800	GMM:21.1	redox.thioredoxin		GO:0045454	cell redox homeostasis	TRX21
+Cre01.g004926						
+Cre01.g070567				GO:0006351;GO:0005634;GO:0003899;GO:0003677	"transcription, DNA-templated;nucleus;DNA-directed RNA polymerase activity;DNA binding"	
+Cre01.g054200						
+Cre01.g034000	GMM:29.3.1	protein.targeting.nucleus	Secretory pathway	GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	IPB1
+Cre01.g026600	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC11
+Cre01.g053300	GMM:22.1.4	polyamine metabolism.synthesis.agmatine deiminase	Mitochondrion	GO:0009446;GO:0004668	putrescine biosynthetic process;protein-arginine deiminase activity	AIH1
+Cre01.g011500	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005515	protein binding	RPN11
+Cre01.g025300	GMM:28.2	DNA.repair	Secretory pathway	GO:0033063;GO:0006281;GO:0003677;GO:0000724	Rad51B-Rad51C-Rad51D-XRCC2 complex;DNA repair;DNA binding;double-strand break repair via homologous recombination	RAD51B
+Cre01.g011450			Secretory pathway			
+Cre01.g045825			Chloroplast			
+Cre01.g041500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification				
+Cre01.g035450						
+Cre01.g049117						
+Cre01.g016050	GMM:27.1.1	RNA.processing.splicing		GO:0030623;GO:0017070;GO:0005681;GO:0005515;GO:0003723;GO:0000398	"U5 snRNA binding;U6 snRNA binding;spliceosomal complex;protein binding;RNA binding;mRNA splicing, via spliceosome"	PRP8
+Cre01.g027150	GMM:28.1;GMM:27.1	DNA.synthesis/chromatin structure;RNA.processing	Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL5
+Cre01.g038550	GMM:11.10.4	lipid metabolism.glycolipid synthesis.sulfolipid synthase	Chloroplast			SQD2
+Cre01.g038100			Chloroplast			
+Cre01.g050950	GMM:16.1.1	secondary metabolism.isoprenoids.non-mevalonate pathway	Chloroplast	GO:0071949	FAD binding	GGR1
+Cre01.g023550				GO:0005515	protein binding	FAP234
+Cre01.g043250						
+Cre01.g064362	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g040150	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g018950	GMM:29.2.4.1;GMM:29.2.3.1	protein.synthesis.elongation.deoxyhypusine synthase;protein.synthesis.initiation.deoxyhypusine synthase		GO:0008612	peptidyl-lysine modification to peptidyl-hypusine	DHS1
+Cre01.g052500			Secretory pathway			
+Cre01.g039450			Chloroplast			
+Cre01.g030100	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK13
+Cre01.g048400			Mitochondrion			
+Cre01.g032139				GO:0005515	protein binding	
+Cre01.g032400			Chloroplast	GO:0018193	peptidyl-amino acid modification	
+Cre01.g005100			Secretory pathway			
+Cre01.g024100			Mitochondrion			
+Cre01.g044250						CAM4
+Cre01.g007651				GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS10
+Cre01.g018600			Secretory pathway			
+Cre01.g048550			Mitochondrion			
+Cre01.g026850			Chloroplast			
+Cre01.g055469				GO:0032259;GO:0008168	methylation;methyltransferase activity	
+Cre01.g054750	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g019450	GMM:29.5.11.3	protein.degradation.ubiquitin.E2		GO:0019789	SUMO transferase activity	
+Cre01.g015650						
+Cre01.g002050			Secretory pathway	GO:0003993	acid phosphatase activity	APT1
+Cre01.g049300			Mitochondrion			
+Cre01.g037300			Chloroplast			
+Cre01.g050100	GMM:13.1.3.5.5	amino acid metabolism.synthesis.aspartate family.lysine.diaminopimelate decarboxylase	Chloroplast	GO:0003824	catalytic activity	DPD1
+Cre01.g020350	GMM:8.1.7	TCA / organic transformation.TCA.succinate dehydrogenase	Mitochondrion	GO:0016627	"oxidoreductase activity, acting on the CH-CH group of donors"	SDH3
+Cre01.g036200			Mitochondrion	GO:0005515;GO:0003824	protein binding;catalytic activity	
+Cre01.g040500			Chloroplast			
+Cre01.g000400			Secretory pathway			AXL3
+Cre01.g023600	GMM:26.11.1;GMM:26.11	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	
+Cre01.g040050	GMM:18.2.1;GMM:18	Co-factor and vitamine metabolism.thiamine.thiamine diphosphokinase;Co-factor and vitamine metabolism		GO:0030975;GO:0009229;GO:0005524;GO:0004788	thiamine binding;thiamine diphosphate biosynthetic process;ATP binding;thiamine diphosphokinase activity	TPK1
+Cre01.g006202						CSB4
+Cre01.g031500	GMM:21.2.1;GMM:16.1	redox.ascorbate and glutathione.ascorbate;secondary metabolism.isoprenoids	Secretory pathway	GO:0055114;GO:0016491;GO:0005507	oxidation-reduction process;oxidoreductase activity;copper ion binding	
+Cre01.g008000				GO:0003723	RNA binding	
+Cre01.g042450	GMM:29.5.5	protein.degradation.serine protease				
+Cre01.g006500	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
+Cre01.g040600			Mitochondrion			FAP327
+Cre01.g013769						
+Cre01.g003500	GMM:28.2	DNA.repair				MSH2
+Cre01.g025000						SSA12
+Cre01.g065092			Mitochondrion			
+Cre01.g034875			Chloroplast			
+Cre01.g018184						
+Cre01.g022283						
+Cre01.g042650				GO:0005509	calcium ion binding	
+Cre01.g014100						
+Cre01.g055420	GMM:29.4	protein.postranslational modification		GO:0008601;GO:0000159	protein phosphatase type 2A regulator activity;protein phosphatase type 2A complex	
+Cre01.g008550	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g007350	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				MOT42
+Cre01.g053550			Secretory pathway			
+Cre01.g037900			Secretory pathway			
+Cre01.g048000						
+Cre01.g036900	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g001678	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g055966						
+Cre01.g014250			Mitochondrion			OPR2
+Cre01.g041150						
+Cre01.g043400						
+Cre01.g035650						
+Cre01.g024251	GMM:27.1.2	RNA.processing.RNA helicase	Chloroplast	GO:0005524;GO:0004386;GO:0003676	ATP binding;helicase activity;nucleic acid binding	
+Cre01.g033516				GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre01.g020918	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation	Chloroplast	GO:0006508	proteolysis	PREP1
+Cre01.g028777						
+Cre01.g022950	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	
+Cre01.g001150	GMM:29.4.1	protein.postranslational modification.kinase				
+Cre01.g032050	GMM:34.11	transport.NDP-sugars at the ER	Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre01.g031200				GO:0030942;GO:0008312;GO:0006614	endoplasmic reticulum signal peptide binding;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane	SRP14
+Cre01.g004450			Chloroplast			CPLD42
+Cre01.g052750			Secretory pathway			
+Cre01.g009765			Chloroplast			
+Cre01.g030550	GMM:29.5.11	protein.degradation.ubiquitin				
+Cre01.g003300			Secretory pathway	GO:0006865	amino acid transport	
+Cre01.g013000			Secretory pathway			
+Cre01.g003487						
+Cre01.g005550	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	ARL4
+Cre01.g039950	GMM:33.99	development.unspecified	Mitochondrion			MFT32
+Cre01.g033150						
+Cre01.g016400						
+Cre01.g020000			Chloroplast			
+Cre01.g000017						
+Cre01.g028400			Mitochondrion			DDC1
+Cre01.g029850	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004674;GO:0004672	protein phosphorylation;ATP binding;protein serine/threonine kinase activity;protein kinase activity	
+Cre01.g051625						
+Cre01.g042800	GMM:19.13	tetrapyrrole synthesis.divinyl chlorophyllide-a 8-vinyl-reductase	Chloroplast			DVR1
+Cre01.g002787				GO:0016020;GO:0005975;GO:0005044;GO:0004553	"membrane;carbohydrate metabolic process;scavenger receptor activity;hydrolase activity, hydrolyzing O-glycosyl compounds"	SRR24A
+Cre01.g005900	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX	Chloroplast	GO:0005515	protein binding	
+Cre01.g010880	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	protein binding	
+Cre01.g023150	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005524;GO:0003677	DNA replication;ATP binding;DNA binding	MCM5
+Cre01.g009325						
+Cre01.g009000			Chloroplast			
+Cre01.g000550			Secretory pathway			
+Cre01.g046324						
+Cre01.g047300						
+Cre01.g002250	GMM:27.3.54;GMM:26.24	RNA.regulation of transcription.histone acetyltransferases;misc.GCN5-related N-acetyltransferase	Chloroplast	GO:0008080	N-acetyltransferase activity	
+Cre01.g021400						
+Cre01.g011750						
+Cre01.g043901						
+Cre01.g032200			Mitochondrion			
+Cre01.g033250			Mitochondrion			
+Cre01.g055000			Mitochondrion	GO:0016787	hydrolase activity	
+Cre01.g016450	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0005515	protein binding	
+Cre01.g028423	GMM:27.3.99;GMM:16.4.1;GMM:13.2.6.2	RNA.regulation of transcription.unclassified;secondary metabolism.N misc.alkaloid-like;amino acid metabolism.degradation.aromatic aa.tyrosine		GO:0030170;GO:0019752;GO:0016831	pyridoxal phosphate binding;carboxylic acid metabolic process;carboxy-lyase activity	DDC1
+Cre01.g001671			Mitochondrion			
+Cre01.g017951			Chloroplast	GO:0005515	protein binding	
+Cre01.g047650			Secretory pathway			
+Cre01.g020650			Chloroplast			
+Cre01.g028650			Secretory pathway			
+Cre01.g044300			Mitochondrion			
+Cre01.g050316	GMM:29.2.1.1.1.2.3	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L3		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	
+Cre01.g029600	GMM:33.99;GMM:30.3	development.unspecified;signalling.calcium	Chloroplast			
+Cre01.g004200						
+Cre01.g002201						
+Cre01.g045752						
+Cre01.g033071						
+Cre01.g012600	GMM:4.1.2	glycolysis.cytosolic branch.phosphoglucomutase (PGM)	Chloroplast	GO:0071704;GO:0016868;GO:0005975	"organic substance metabolic process;intramolecular transferase activity, phosphotransferases;carbohydrate metabolic process"	GPM2
+Cre01.g001950			Secretory pathway			
+Cre01.g006250	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
+Cre01.g024900	GMM:27.4	RNA.RNA binding		GO:0017069;GO:0003676;GO:0000398	"snRNA binding;nucleic acid binding;mRNA splicing, via spliceosome"	
+Cre01.g032300	GMM:28.99	DNA.unspecified		GO:0003676	nucleic acid binding	GBP1
+Cre01.g049200						
+Cre01.g003463	GMM:28.2	DNA.repair		GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	
+Cre01.g009150			Secretory pathway			
+Cre01.g012550						
+Cre01.g055440						CSR8
+Cre01.g019750	GMM:17.3.3	hormone metabolism.brassinosteroid.induced-regulated-responsive-activated		GO:0006265;GO:0005524;GO:0003918;GO:0003677	DNA topological change;ATP binding;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA binding	
+Cre01.g005126						CSB3
+Cre01.g027500			Chloroplast	GO:0005515	protein binding	
+Cre01.g016800				GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre01.g035550	GMM:28.2	DNA.repair	Mitochondrion			
+Cre01.g045000			Secretory pathway			PRL9
+Cre01.g035350	GMM:11.8.7	"lipid metabolism.exotics (steroids, squalene etc).trans-2-enoyl-CoA reductase (NADPH)"		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	
+Cre01.g037400	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN19-1
+Cre01.g023250						
+Cre01.g039600			Mitochondrion			
+Cre01.g026950			Secretory pathway			
+Cre01.g006050						LF3
+Cre01.g005400	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
+Cre01.g000150	GMM:34.12	transport.metal	Chloroplast	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZRT2
+Cre01.g003000						
+Cre01.g033000						FAP334
+Cre01.g031900	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems	Secretory pathway			
+Cre01.g019100	GMM:26.1;GMM:13.2.5.2;GMM:13.1.5.1.1	misc.misc2;amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoglycerate dehydrogenase		GO:0055114;GO:0051287;GO:0016616;GO:0008152	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;metabolic process"	
+Cre01.g019900			Mitochondrion			FAP384
+Cre01.g023450			Chloroplast			
+Cre01.g035800				GO:0016021;GO:0006813;GO:0005242	integral component of membrane;potassium ion transport;inward rectifier potassium channel activity	IRK2
+Cre01.g053500	GMM:16.1.1	secondary metabolism.isoprenoids.non-mevalonate pathway		GO:0003824	catalytic activity	
+Cre01.g027050						
+Cre01.g049826			Chloroplast			PHC59
+Cre01.g053250	GMM:33.99	development.unspecified	Mitochondrion	GO:0006355	"regulation of transcription, DNA-templated"	
+Cre01.g070202						
+Cre01.g022600			Secretory pathway	GO:0016021;GO:0008146	integral component of membrane;sulfotransferase activity	CGL13
+Cre01.g029250	GMM:13.1.6.4	amino acid metabolism.synthesis.aromatic aa.tyrosine	Mitochondrion	GO:0055114;GO:0016714;GO:0009072;GO:0005506;GO:0004497	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced pteridine as one donor, and incorporation of one atom of oxygen;aromatic amino acid family metabolic process;iron ion binding;monooxygenase activity"	AAH1
+Cre01.g032700			Chloroplast	GO:0051156;GO:0006096;GO:0005524;GO:0004340	glucose 6-phosphate metabolic process;glycolytic process;ATP binding;glucokinase activity	GLK1
+Cre01.g051137						
+Cre01.g034100	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation	Chloroplast			
+Cre01.g008800			Secretory pathway			
+Cre01.g034400	GMM:7.1.2	OPP.oxidative PP.6-phosphogluconolactonase	Chloroplast	GO:0005975	carbohydrate metabolic process	PGL1
+Cre01.g001550	GMM:29.2.3	protein.synthesis.initiation	Chloroplast	GO:0006413;GO:0003743	translational initiation;translation initiation factor activity	TIF3
+Cre01.g042050	GMM:29.4;GMM:27.3.67	protein.postranslational modification;RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0055114;GO:0033743;GO:0030091;GO:0016671;GO:0006979	"oxidation-reduction process;peptide-methionine (R)-S-oxide reductase activity;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;response to oxidative stress"	
+Cre01.g003450			Chloroplast			
+Cre01.g055412						
+Cre01.g012900	GMM:29.2.4;GMM:13.99	protein.synthesis.elongation;amino acid metabolism.misc	Mitochondrion			
+Cre01.g041426						
+Cre01.g005651						
+Cre01.g034550						FAP109
+Cre01.g051900	GMM:9.5	mitochondrial electron transport / ATP synthesis.cytochrome c reductase	Mitochondrion	GO:0055114;GO:0051537;GO:0016679;GO:0016491;GO:0008121	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity, acting on diphenols and related substances as donors;oxidoreductase activity;ubiquinol-cytochrome-c reductase activity"	RIP1
+Cre01.g015750			Mitochondrion			
+Cre01.g024000			Mitochondrion			
+Cre01.g060712	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre01.g027764	GMM:34.99;GMM:34.16	transport.misc;transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
+Cre01.g054600						
+Cre01.g046052	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g026400	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016021	integral component of membrane	EXS
+Cre01.g007550			Secretory pathway			
+Cre01.g007100			Secretory pathway			
+Cre01.g013150			Chloroplast			CGLD35
+Cre01.g068012			Mitochondrion			PPR5
+Cre01.g031700						
+Cre01.g049500	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase		GO:0016020;GO:0005507;GO:0004129	membrane;copper ion binding;cytochrome-c oxidase activity	COX2B
+Cre01.g043500				GO:0034227;GO:0002098;GO:0000049	tRNA thio-modification;tRNA wobble uridine modification;tRNA binding	
+Cre01.g008700						
+Cre01.g022400			Secretory pathway			
+Cre01.g017550			Secretory pathway	GO:0005515	protein binding	
+Cre01.g055316			Secretory pathway			
+Cre01.g047218			Chloroplast			
+Cre01.g035900						
+Cre01.g013700	GMM:34.2;GMM:34.18	transport.sugars;transport.unspecified anions		GO:0055085;GO:0005741	transmembrane transport;mitochondrial outer membrane	VDAC1
+Cre01.g014650	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH5
+Cre01.g044600	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols				
+Cre01.g016651						
+Cre01.g028101			Mitochondrion			
+Cre01.g006642			Chloroplast			
+Cre01.g000850			Chloroplast			CPLD38
+Cre01.g040701			Secretory pathway			
+Cre01.g025650			Secretory pathway			
+Cre01.g036800	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN9-1
+Cre01.g050608						
+Cre01.g040850						
+Cre01.g032750			Chloroplast			
+Cre01.g046150	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0030145;GO:0004177	manganese ion binding;aminopeptidase activity	
+Cre01.g030850	GMM:29.5.11.20;GMM:29.5	protein.degradation.ubiquitin.proteasom;protein.degradation		GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA4
+Cre01.g010650			Secretory pathway			
+Cre01.g011250						
+Cre01.g006850						
+Cre01.g025850	GMM:3.4.4	minor CHO metabolism.myo-inositol.myo-inositol oxygenases	Mitochondrion	GO:0055114;GO:0050113;GO:0019310;GO:0005737;GO:0005506	oxidation-reduction process;inositol oxygenase activity;inositol catabolic process;cytoplasm;iron ion binding	INO
+Cre01.g010201			Secretory pathway			
+Cre01.g047200			Chloroplast			
+Cre01.g051800	GMM:13.1.6.2	amino acid metabolism.synthesis.aromatic aa.phenylalanine and tyrosine	Chloroplast	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	AST2
+Cre01.g052850	GMM:31.3;GMM:30.6	cell.cycle;signalling.MAP kinases		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g058156						
+Cre01.g038300			Mitochondrion	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
+Cre01.g054100	GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XI	Mitochondrion	GO:0005515	protein binding	
+Cre01.g031400						
+Cre01.g055550	GMM:9.7;GMM:29.8	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase;protein.assembly and cofactor ligation	Mitochondrion	GO:0005507	copper ion binding	COX11
+Cre01.g044100	GMM:2.2.2.1.2;GMM:2.2.2.1	major CHO metabolism.degradation.starch.starch cleavage.beta amylase;major CHO metabolism.degradation.starch.starch cleavage		GO:0016161;GO:0000272	beta-amylase activity;polysaccharide catabolic process	AMB3
+Cre01.g009550	GMM:26.24	misc.GCN5-related N-acetyltransferase	Mitochondrion	GO:0008080	N-acetyltransferase activity	
+Cre01.g029350				GO:0022900;GO:0016651	"electron transport chain;oxidoreductase activity, acting on NAD(P)H"	FAP297
+Cre01.g023900			Mitochondrion			
+Cre01.g006576			Mitochondrion			
+Cre01.g019600			Chloroplast			
+Cre01.g038600	GMM:11.2.3	lipid metabolism.FA desaturation.omega 3 desaturase	Chloroplast	GO:0055114;GO:0016717;GO:0006629	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with oxidation of a pair of donors resulting in the reduction of molecular oxygen to two molecules of water;lipid metabolic process"	FAD7
+Cre01.g055477			Mitochondrion			
+Cre01.g012700	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	KCN6
+Cre01.g067647			Chloroplast			
+Cre01.g010350	GMM:18.11;GMM:18;GMM:11.5	Co-factor and vitamine metabolism.lipoic acid;Co-factor and vitamine metabolism;lipid metabolism.glycerol metabolism	Secretory pathway	GO:0006464	cellular protein modification process	LIPB
+Cre01.g020800			Mitochondrion			
+Cre01.g008450				GO:0007067;GO:0000775	"mitotic nuclear division;chromosome, centromeric region"	
+Cre01.g022250	GMM:29.2.1.1.1.2.3	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L3	Mitochondrion	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPL3
+Cre01.g009850						
+Cre01.g001200	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK14
+Cre01.g045903	GMM:11.4	lipid metabolism.TAG synthesis	Chloroplast	GO:0019432;GO:0008374;GO:0004144	triglyceride biosynthetic process;O-acyltransferase activity;diacylglycerol O-acyltransferase activity	DGAT1
+Cre01.g024800	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g050300						
+Cre01.g034150				GO:0016021;GO:0015299;GO:0006812	integral component of membrane;solute:proton antiporter activity;cation transport	
+Cre01.g042550			Secretory pathway	GO:0072546	ER membrane protein complex	
+Cre01.g047229						
+Cre01.g011150	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)		GO:0046983	protein dimerization activity	
+Cre01.g002861	GMM:26.16	misc.myrosinases-lectin-jacalin				
+Cre01.g014751			Chloroplast			
+Cre01.g012100			Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS4
+Cre01.g036500			Secretory pathway;Chloroplast			
+Cre01.g007901	GMM:34.99	transport.misc	Mitochondrion;Secretory pathway	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
+Cre01.g024350	GMM:28.99	DNA.unspecified	Secretory pathway	GO:0016021	integral component of membrane	
+Cre01.g065457						
+Cre01.g015300			Mitochondrion	GO:0055114	oxidation-reduction process	
+Cre01.g004600	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RWP12
+Cre01.g025200	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP4
+Cre01.g038376						
+Cre01.g009250	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006265;GO:0005524;GO:0003918;GO:0003677	DNA topological change;ATP binding;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA binding	TOP2
+Cre01.g013900			Mitochondrion			
+Cre01.g021750				GO:0006355	"regulation of transcription, DNA-templated"	
+Cre01.g004850			Mitochondrion	GO:0016787;GO:0006351;GO:0005634;GO:0005524;GO:0003677	"hydrolase activity;transcription, DNA-templated;nucleus;ATP binding;DNA binding"	TXE1
+Cre01.g021300			Secretory pathway			
+Cre01.g050750						
+Cre01.g030250	GMM:23.2	nucleotide metabolism.degradation	Mitochondrion	GO:0046854	phosphatidylinositol phosphorylation	
+Cre01.g021600	GMM:27.1.2	RNA.processing.RNA helicase		GO:0005524;GO:0005515;GO:0003676	ATP binding;protein binding;nucleic acid binding	HEL1
+Cre01.g048600			Mitochondrion			
+Cre01.g066552	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	
+Cre01.g026650	GMM:18.1;GMM:18	Co-factor and vitamine metabolism.molybdenum cofactor;Co-factor and vitamine metabolism	Secretory pathway			
+Cre01.g050400	GMM:29.3.2	protein.targeting.mitochondria	Chloroplast			TIM22C
+Cre01.g005500						
+Cre01.g002350	GMM:29.5.11.2;GMM:17.2.2	protein.degradation.ubiquitin.E1;hormone metabolism.auxin.signal transduction		GO:0008641	small protein activating enzyme activity	
+Cre01.g035250	GMM:22.1.5	polyamine metabolism.synthesis.N-carbamoylputrescine amidohydrolase	Mitochondrion			
+Cre01.g023100	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0006355;GO:0003700	"regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre01.g041256	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			
+Cre01.g039500	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others		GO:0005515	protein binding	FAP89
+Cre01.g043050			Mitochondrion	GO:0016021	integral component of membrane	SNR2
+Cre01.g007050			Chloroplast			CPLD11
+Cre01.g020500			Secretory pathway			
+Cre01.g026016						
+Cre01.g025900	GMM:31.2;GMM:20.2.5	cell.division;stress.abiotic.light				
+Cre01.g042850	GMM:21.2	redox.ascorbate and glutathione	Secretory pathway			
+Cre01.g014350	GMM:21.5	redox.peroxiredoxin	Chloroplast	GO:0055114;GO:0016491;GO:0016209	oxidation-reduction process;oxidoreductase activity;antioxidant activity	PRX5
+Cre01.g041351						
+Cre01.g023913						
+Cre01.g021251	GMM:13.1.2.3.23;GMM:13.1.2.3	amino acid metabolism.synthesis.glutamate family.arginine.argininosuccinate lyase;amino acid metabolism.synthesis.glutamate family.arginine	Chloroplast	GO:0042450;GO:0004056	arginine biosynthetic process via ornithine;argininosuccinate lyase activity	ARG7
+Cre01.g048950	GMM:23.1.1.5	nucleotide metabolism.synthesis.pyrimidine.uridine 5'-monophosphate synthase	Chloroplast	GO:0009116;GO:0006207;GO:0004590	nucleoside metabolic process;'de novo' pyrimidine nucleobase biosynthetic process;orotidine-5'-phosphate decarboxylase activity	PYR5
+Cre01.g032600			Secretory pathway			HPAT1
+Cre01.g010050						
+Cre01.g034350	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
+Cre01.g000100	GMM:34.12	transport.metal				
+Cre01.g010300						
+Cre01.g050650						
+Cre01.g028250	GMM:11.9.2.2	lipid metabolism.lipid degradation.lipases.acylglycerol lipase				GEA1
+Cre01.g028500						
+Cre01.g056696			Mitochondrion			
+Cre01.g031875						
+Cre01.g042502	GMM:29.4.1	protein.postranslational modification.kinase		GO:0016020;GO:0006508;GO:0005044;GO:0004252	membrane;proteolysis;scavenger receptor activity;serine-type endopeptidase activity	SRR11
+Cre01.g007000	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre01.g069107						COX191
+Cre01.g022050						
+Cre01.g016600	GMM:20.2.5;GMM:1.1.1.2	stress.abiotic.light;PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			PSBS1
+Cre01.g016250			Secretory pathway	GO:0016021;GO:0006952	integral component of membrane;defense response	MLO3
+Cre01.g009650	GMM:33.99;GMM:27.3.3	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"	Mitochondrion	GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	BUG25
+Cre01.g038950			Secretory pathway			
+Cre01.g042200			Chloroplast			
+Cre01.g030986						
+Cre01.g018050			Chloroplast			
+Cre01.g043600			Chloroplast			
+Cre01.g027900	GMM:17.1.1	hormone metabolism.abscisic acid.synthesis-degradation				
+Cre01.g014800	GMM:28.2	DNA.repair	Chloroplast	GO:0045910;GO:0030983;GO:0016887;GO:0006298;GO:0005524;GO:0004519	negative regulation of DNA recombination;mismatched DNA binding;ATPase activity;mismatch repair;ATP binding;endonuclease activity	MSH7
+Cre01.g050550			Chloroplast	GO:0051537;GO:0043231	"2 iron, 2 sulfur cluster binding;intracellular membrane-bounded organelle"	
+Cre01.g040550						
+Cre01.g039650	GMM:26.1	misc.misc2		GO:0042586;GO:0005506	peptide deformylase activity;iron ion binding	PDF1C
+Cre01.g055404						
+Cre01.g051211	GMM:34.99;GMM:34.16	transport.misc;transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
+Cre01.g040350	GMM:28.2	DNA.repair	Chloroplast	GO:0045910;GO:0030983;GO:0016887;GO:0006298;GO:0005524;GO:0004519	negative regulation of DNA recombination;mismatched DNA binding;ATPase activity;mismatch repair;ATP binding;endonuclease activity	MSH8
+Cre01.g022200			Secretory pathway			
+Cre01.g051950	GMM:29.5.4;GMM:27.3.99	protein.degradation.aspartate protease;RNA.regulation of transcription.unclassified		GO:0006508;GO:0004190	proteolysis;aspartic-type endopeptidase activity	ASP2
+Cre01.g049000			Chloroplast	GO:0008124;GO:0006729	4-alpha-hydroxytetrahydrobiopterin dehydratase activity;tetrahydrobiopterin biosynthetic process	CGL31
+Cre01.g015500	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	CGL91
+Cre01.g013300	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0005515	protein binding	DEG10
+Cre01.g038800	GMM:34.19	transport.major intrinsic proteins		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	MIP3
+Cre01.g036050	GMM:28.2	DNA.repair	Mitochondrion	GO:0030983;GO:0006298;GO:0005524	mismatched DNA binding;mismatch repair;ATP binding	MLH1
+Cre01.g043800						
+Cre01.g004157	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			
+Cre01.g033300	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway			
+Cre01.g021950	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species	Mitochondrion	GO:0007018;GO:0003777	microtubule-based movement;microtubule motor activity	
+Cre01.g003541						
+Cre01.g009050						
+Cre01.g062172	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HBV1
+Cre01.g059982			Mitochondrion			
+Cre01.g015103	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre01.g018700						
+Cre01.g012050	GMM:34.4;GMM:1.5.3	transport.nitrate;PS.carbon concentrating mechanism.algal	Mitochondrion	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NAR1.6
+Cre01.g052150	GMM:31.1	cell.organisation				FAP87
+Cre01.g010750	GMM:9.7;GMM:27.3.44	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase;RNA.regulation of transcription.chromatin remodeling factors				
+Cre01.g030000			Secretory pathway			
+Cre01.g040950				GO:0006468;GO:0005524;GO:0004674	protein phosphorylation;ATP binding;protein serine/threonine kinase activity	
+Cre01.g002150			Chloroplast			
+Cre01.g045902	GMM:29.8	protein.assembly and cofactor ligation	Chloroplast			
+Cre01.g000750			Secretory pathway			
+Cre01.g024850	GMM:26.23	misc.rhodanese				RDP2
+Cre01.g066187	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	ZRT4
+Cre01.g015200	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE4
+Cre01.g048100						
+Cre01.g009450	GMM:29.9	protein.co-chaperones	Cytosol			DNJ22
+Cre01.g038700	GMM:34.18	transport.unspecified anions	Mitochondrion	GO:0055085;GO:0016020;GO:0006821;GO:0005247	transmembrane transport;membrane;chloride transport;voltage-gated chloride channel activity	CLV5
+Cre01.g026200	GMM:3.8.2	minor CHO metabolism.galactose.alpha-galactosidases	Mitochondrion			PPR9
+Cre01.g012150	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979;GO:0006457	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress;protein folding"	MSRA4
+Cre01.g041667			Mitochondrion;Chloroplast			
+Cre01.g028200	GMM:27.1.2;GMM:27.1;GMM:17.5.3	RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL6
+Cre01.g006656			Chloroplast			
+Cre01.g004700			Secretory pathway	GO:0016021	integral component of membrane	
+Cre01.g037100	GMM:30.1;GMM:29.4;GMM:29.2.2	signalling.in sugar and nutrient physiology;protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g002203			Secretory pathway			
+Cre01.g044276			Secretory pathway			
+Cre01.g016542			Chloroplast			
+Cre01.g032000						
+Cre01.g012200	GMM:33.99;GMM:33.3;GMM:27.3.28	development.unspecified;development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0005515;GO:0003677	nucleus;protein binding;DNA binding	
+Cre01.g012500	GMM:31.4;GMM:30.5;GMM:3.5	cell.vesicle transport;signalling.G-proteins;minor CHO metabolism.others				PRA1
+Cre01.g037450	GMM:31.3.1	cell.cycle.peptidylprolyl isomerase	Secretory pathway			
+Cre01.g037476			Chloroplast			
+Cre01.g016150						
+Cre01.g038200			Mitochondrion			
+Cre01.g011950			Chloroplast			
+Cre01.g000950			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT13
+Cre01.g010848			Chloroplast			
+Cre01.g053050			Mitochondrion			
+Cre01.g055200						CPL7
+Cre01.g007737	GMM:34.99	transport.misc	Chloroplast	GO:0016021;GO:0006810	integral component of membrane;transport	FBT1
+Cre01.g045650			Mitochondrion			ZNJ3
+Cre01.g029050				GO:0005515	protein binding	
+Cre01.g054000	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre01.g040300			Mitochondrion	GO:0008171	O-methyltransferase activity	
+Cre01.g054850			Chloroplast			
+Cre01.g005750			Secretory pathway			
+Cre01.g019150	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0005815;GO:0000922;GO:0000226	microtubule organizing center;spindle pole;microtubule cytoskeleton organization	GCP4
+Cre01.g006352						
+Cre01.g027250						
+Cre01.g034250			Secretory pathway			
+Cre01.g054900						
+Cre01.g022500	GMM:8.2.10	TCA / organic transformation.other organic acid transformations.malic	Mitochondrion	GO:0055114;GO:0051287;GO:0004471	oxidation-reduction process;NAD binding;malate dehydrogenase (decarboxylating) (NAD+) activity	MME5
+Cre01.g007850	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Mitochondrion			TEF29
+Cre01.g024500				GO:0044782;GO:0036064;GO:0005813	cilium organization;ciliary basal body;centrosome	
+Cre01.g036700	GMM:30.3;GMM:29.4.1;GMM:29.4;GMM:29.2.2	signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g042402						
+Cre01.g023300				GO:0016491	oxidoreductase activity	
+Cre01.g058521			Secretory pathway			ALG11
+Cre01.g047450	GMM:29.5.3	protein.degradation.cysteine protease				CPLD17
+Cre01.g003150			Mitochondrion			
+Cre01.g055424			Secretory pathway			PIGP
+Cre01.g009575	GMM:33.99;GMM:27.3.3	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"	Mitochondrion	GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre01.g036600	GMM:28.99	DNA.unspecified				EXN3
+Cre01.g041800			Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre01.g012400			Secretory pathway	GO:0016021;GO:0016020	integral component of membrane;membrane	
+Cre01.g035700						
+Cre01.g019250	GMM:21.2.1.1	redox.ascorbate and glutathione.ascorbate.GME				GME
+Cre01.g010450			Secretory pathway	GO:0005515	protein binding	
+Cre01.g029650	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole		GO:0042147;GO:0030904;GO:0015031;GO:0008565	"retrograde transport, endosome to Golgi;retromer complex;protein transport;protein transporter activity"	VPS35
+Cre01.g033750			Chloroplast			
+Cre01.g053800			Chloroplast			
+Cre01.g037000	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Mitochondrion	GO:0006508;GO:0004185	proteolysis;serine-type carboxypeptidase activity	
+Cre01.g026100				GO:0008033;GO:0004540	tRNA processing;ribonuclease activity	RPP14
+Cre01.g033763			Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre01.g063267						BLP1
+Cre01.g020223	GMM:8.1.8	TCA / organic transformation.TCA.fumarase		GO:0016829;GO:0006099	lyase activity;tricarboxylic acid cycle	FUM2
+Cre01.g012850	GMM:34.15	transport.potassium	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	KCN8
+Cre01.g044900			Mitochondrion			
+Cre01.g048300						
+Cre01.g031800			Secretory pathway			
+Cre01.g054250	GMM:26.10;GMM:26.1;GMM:25.4;GMM:17.2.2	misc.cytochrome P450;misc.misc2;C1-metabolism.5-formyltetrahydrofolate cyclo-ligase;hormone metabolism.auxin.signal transduction	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP743A1
+Cre01.g003751			Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
+Cre01.g039400						
+Cre01.g010250	GMM:29.4;GMM:26.13	protein.postranslational modification;misc.acid and other phosphatases	Chloroplast	GO:0003824	catalytic activity	
+Cre01.g035000				GO:0005515	protein binding	
+Cre01.g001700	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g027650			Mitochondrion			
+Cre01.g006900						
+Cre01.g052400	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast	GO:0016020	membrane	CCB3
+Cre01.g043350	GMM:19.16	tetrapyrrole synthesis.chlorophyll b synthase	Chloroplast	GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	CAO1
+Cre01.g052050	GMM:9.5;GMM:29.3.99	mitochondrial electron transport / ATP synthesis.cytochrome c reductase;protein.targeting.unknown	Mitochondrion			UQCC1
+Cre01.g021850	GMM:28.99	DNA.unspecified	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL2
+Cre01.g004500	GMM:16.5.1.1.1.3;GMM:13.1.4.4.3	secondary metabolism.sulfur-containing.glucosinolates.synthesis.aliphatic.methylthioalkylmalate isomerase large subunit (MAM-IL);amino acid metabolism.synthesis.branched chain group.leucine specific.3-isopropylmalate dehydrogenase	Chloroplast	GO:0008152	metabolic process	LEU1
+Cre01.g014450						
+Cre01.g005300				GO:0006865	amino acid transport	
+Cre01.g018150						
+Cre01.g003250	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB1
+Cre01.g039200	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	IFT22
+Cre01.g014050	GMM:27.3.99;GMM:27.3.12	RNA.regulation of transcription.unclassified;RNA.regulation of transcription.C3H zinc finger family				
+Cre01.g072027						
+Cre01.g036950			Chloroplast	GO:0051073;GO:0009236;GO:0008818	adenosylcobinamide-GDP ribazoletransferase activity;cobalamin biosynthetic process;cobalamin 5'-phosphate synthase activity	CBA1
+Cre01.g008891			Chloroplast			
+Cre01.g053350			Mitochondrion			
+Cre01.g023000	GMM:34.7	transport.phosphate	Chloroplast			PHT1
+Cre01.g050850	GMM:29.5.11.4.3.2;GMM:29.4	protein.degradation.ubiquitin.E3.SCF.FBOX;protein.postranslational modification		GO:0016787	hydrolase activity	PKL1
+Cre01.g011376						
+Cre01.g017350						
+Cre01.g048750			Chloroplast			PPR7
+Cre01.g044750			Secretory pathway			
+Cre01.g002451	GMM:35.1.19	not assigned.no ontology.C2 domain-containing protein	Mitochondrion	GO:0005515	protein binding	
+Cre01.g001300	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway			
+Cre01.g040250	GMM:29.9	protein.co-chaperones	Cytosol			DNJ9
+Cre01.g024150			Mitochondrion			
+Cre01.g034700			Secretory pathway			
+Cre01.g048650	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g024601			Mitochondrion			
+Cre01.g042300	GMM:29.4.1	protein.postranslational modification.kinase	Chloroplast	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR6
+Cre01.g051450			Chloroplast	GO:0005515	protein binding	
+Cre01.g021000			Secretory pathway	GO:0031083	BLOC-1 complex	
+Cre01.g015350	GMM:19.14	tetrapyrrole synthesis.protochlorophyllide reductase	Chloroplast	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	POR1
+Cre01.g010950				GO:0005515	protein binding	
+Cre01.g037200			Chloroplast			
+Cre01.g052250	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXx
+Cre01.g049400						
+Cre01.g028850	GMM:26.23	misc.rhodanese	Secretory pathway			
+Cre01.g030350			Secretory pathway			CGL41
+Cre01.g005543						
+Cre01.g042750	GMM:8.1.3	TCA / organic transformation.TCA.aconitase	Chloroplast	GO:0008152	metabolic process	ACH1
+Cre01.g041855	GMM:29.5.7;GMM:29.5	protein.degradation.metalloprotease;protein.degradation	Chloroplast			
+Cre01.g028350	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0005515	protein binding	DEG8
+Cre01.g010000	GMM:30.6;GMM:3.6;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPK8
+Cre01.g050050	GMM:31.1	cell.organisation				GUM1
+Cre01.g043000	GMM:29.2.2.3.3	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases	Mitochondrion	GO:0051536;GO:0008173;GO:0006364;GO:0005737;GO:0003824	iron-sulfur cluster binding;RNA methyltransferase activity;rRNA processing;cytoplasm;catalytic activity	
+Cre01.g067282						
+Cre01.g011100	GMM:17.3.1.2.99;GMM:16.1.5;GMM:11.8.6	"hormone metabolism.brassinosteroid.synthesis-degradation.sterols.other;secondary metabolism.isoprenoids.terpenoids;lipid metabolism.exotics (steroids, squalene etc).cycloartenol synthase"		GO:0003824	catalytic activity	CAS1
+Cre01.g038450			Chloroplast			
+Cre01.g071297						
+Cre01.g051350			Chloroplast			
+Cre01.g005001			Mitochondrion			CPLD9
+Cre01.g040650						
+Cre01.g016350						
+Cre01.g009700			Chloroplast	GO:0003824	catalytic activity	
+Cre01.g000600	GMM:33.99	development.unspecified		GO:0005515	protein binding	
+Cre01.g046502			Chloroplast			
+Cre01.g017100	GMM:26.5;GMM:11.7	misc.acyl transferases;lipid metabolism.unassigned	Chloroplast			
+Cre01.g010816						
+Cre01.g044350			Secretory pathway			
+Cre01.g022681						
+Cre01.g002650						
+Cre01.g021500	GMM:34.99	transport.misc	Secretory pathway			
+Cre01.g033400	GMM:29.3.2	protein.targeting.mitochondria				TIM9
+Cre01.g021150				GO:0008173;GO:0006396	RNA methyltransferase activity;RNA processing	
+Cre01.g008200			Secretory pathway			
+Cre01.g003516			Mitochondrion			
+Cre01.g015050						AGK1
+Cre01.g001664						
+Cre01.g054400						
+Cre01.g040400						
+Cre01.g046652	GMM:29.1.10;GMM:27.4	protein.aa activation.methionine-tRNA ligase;RNA.RNA binding	Chloroplast	GO:0000049	tRNA binding	
+Cre01.g020850			Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG49
+Cre01.g009350	GMM:22.1.4	polyamine metabolism.synthesis.agmatine deiminase	Mitochondrion	GO:0009446;GO:0004668	putrescine biosynthetic process;protein-arginine deiminase activity	AIH2
+Cre01.g025750						
+Cre01.g051482						
+Cre01.g007450			Mitochondrion			
+Cre01.g044800			Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	PFL1
+Cre01.g029150	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm				DAU1
+Cre01.g031300	GMM:30.3;GMM:3.3;GMM:29.4.1	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CDPK4
+Cre01.g018400	GMM:30.4.5;GMM:29.4.1	signalling.phosphinositides.inositol-tetrakisphosphate 1-kinase;protein.postranslational modification.kinase		GO:0052726;GO:0052725;GO:0047325;GO:0032957;GO:0005622;GO:0005524;GO:0000287	"inositol-1,3,4-trisphosphate 5-kinase activity;inositol-1,3,4-trisphosphate 6-kinase activity;inositol tetrakisphosphate 1-kinase activity;inositol trisphosphate metabolic process;intracellular;ATP binding;magnesium ion binding"	ITPK2
+Cre01.g055350			Chloroplast			
+Cre01.g006100	GMM:21.99	redox.misc		GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX7
+Cre01.g020751			Mitochondrion			
+Cre01.g034325			Chloroplast			
+Cre01.g045100			Secretory pathway			
+Cre01.g023787	GMM:29.2.2.1	protein.synthesis.ribosome biogenesis.export from nucleus		GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre01.g001650			Secretory pathway			
+Cre01.g033450			Mitochondrion			
+Cre01.g026900			Chloroplast	GO:0071949	FAD binding	SSA14
+Cre01.g052601			Chloroplast	GO:0008233;GO:0006508	peptidase activity;proteolysis	
+Cre01.g068742			Mitochondrion	GO:0003676	nucleic acid binding	
+Cre01.g025551			Chloroplast			
+Cre01.g038750						MOT7
+Cre01.g018350	GMM:11.9.2	lipid metabolism.lipid degradation.lipases				
+Cre01.g044700	GMM:21.2.2;GMM:21.2.1	redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione.ascorbate		GO:0005515	protein binding	
+Cre01.g031600			Secretory pathway			
+Cre01.g011850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g032850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK23
+Cre01.g013250						
+Cre01.g036300	GMM:3.3	minor CHO metabolism.sugar alcohols				
+Cre01.g055453	GMM:13.1.4.1.1	amino acid metabolism.synthesis.branched chain group.common.acetolactate synthase	Chloroplast	GO:0016597;GO:0008152	amino acid binding;metabolic process	ALS2
+Cre01.g062537						
+Cre01.g015600	GMM:29.2	protein.synthesis				
+Cre01.g011550						
+Cre01.g032100				GO:0005515	protein binding	
+Cre01.g049650				GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	
+Cre01.g054150	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0055114;GO:0045454;GO:0016491	oxidation-reduction process;cell redox homeostasis;oxidoreductase activity	NTRC1
+Cre01.g013801	GMM:16.1.3.4	secondary metabolism.isoprenoids.tocopherol biosynthesis.tocopherol cyclase	Chloroplast	GO:0009976	tocopherol cyclase activity	
+Cre01.g030650	GMM:30.11;GMM:28.2	signalling.light;DNA.repair	Secretory pathway			PHR5
+Cre01.g035100			Chloroplast	GO:0006189	'de novo' IMP biosynthetic process	
+Cre01.g006614						
+Cre01.g013400			Secretory pathway	GO:0042765;GO:0016255	GPI-anchor transamidase complex;attachment of GPI anchor to protein	PIGS
+Cre01.g041583				GO:0006355	"regulation of transcription, DNA-templated"	
+Cre01.g018075						
+Cre01.g059252			Chloroplast			
+Cre01.g004050			Mitochondrion			
+Cre01.g037550						
+Cre01.g026750			Mitochondrion			
+Cre01.g051750	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
+Cre01.g061442	GMM:29.5.11.4.3.1	protein.degradation.ubiquitin.E3.SCF.SKP		GO:0006511	ubiquitin-dependent protein catabolic process	
+Cre01.g019500						
+Cre01.g008650	GMM:29.4.1	protein.postranslational modification.kinase		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDK1
+Cre01.g047001			Chloroplast			
+Cre01.g017050						MCP1
+Cre01.g005250						
+Cre01.g002550	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	FAP335
+Cre01.g023773			Chloroplast	GO:0005515	protein binding	
+Cre01.g017650						FAP34
+Cre01.g053900	GMM:29.5	protein.degradation	Mitochondrion			
+Cre01.g019051			Secretory pathway			
+Cre01.g026300						
+Cre01.g023850						
+Cre01.g039800						
+Cre01.g032500	GMM:29.9;GMM:29.6.2.6;GMM:20.2.1	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat	Cytosol	GO:0005515	protein binding	DNJ8
+Cre01.g045601			Chloroplast	GO:0016020;GO:0006508;GO:0005044;GO:0004252	membrane;proteolysis;scavenger receptor activity;serine-type endopeptidase activity	
+Cre01.g047750	GMM:29.2.1.2.2.518;GMM:29.2.1.2.2.0518	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L18A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L18A		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL18A
+Cre01.g034900	GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4;GMM:29.2.2	signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CDPK5
+Cre01.g039150	GMM:29.3.3	protein.targeting.chloroplast				TIC21
+Cre01.g029750	GMM:23.4.3;GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.uridylate kinase;nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase		GO:0019205;GO:0006139;GO:0005524	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding	DAAK1
+Cre01.g012300			Chloroplast			
+Cre01.g035600			Chloroplast	GO:0055085;GO:0016020	transmembrane transport;membrane	MSC2
+Cre01.g005813						
+Cre01.g024750	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre01.g003826	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification				
+Cre01.g052950	GMM:28.2	DNA.repair				PSO2
+Cre01.g013650						
+Cre01.g020100			Secretory pathway			
+Cre01.g047050	GMM:11.9.3.2	lipid metabolism.lipid degradation.lysophospholipases.carboxylesterase	Mitochondrion			
+Cre01.g025050	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre01.g003550	GMM:26.23	misc.rhodanese	Chloroplast			
+Cre01.g003600			Mitochondrion			
+Cre01.g020305						SDH4
+Cre01.g044050	GMM:34.1	transport.p- and v-ATPases		GO:0033179;GO:0015991;GO:0015078	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	
+Cre01.g003850	GMM:26.10;GMM:26.1	misc.cytochrome P450;misc.misc2		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP747A1
+Cre29.g757797			Chloroplast			
+Cre29.g757947						
+Cre29.g757897			Secretory pathway			
+Cre29.g757847						
+Cre10.g427900	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre10.g466050			Mitochondrion;Chloroplast			
+Cre10.g419250						
+Cre10.g455500	GMM:27.3.42	RNA.regulation of transcription.bromodomain proteins		GO:0005515	protein binding	
+Cre10.g443850	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast			
+Cre10.g438783			Mitochondrion			
+Cre10.g434750	GMM:13.1.4.1.2;GMM:13.1.4.1	amino acid metabolism.synthesis.branched chain group.common.ketol-acid reductoisomerase;amino acid metabolism.synthesis.branched chain group.common	Chloroplast	GO:0055114;GO:0016491;GO:0009082;GO:0004455	oxidation-reduction process;oxidoreductase activity;branched-chain amino acid biosynthetic process;ketol-acid reductoisomerase activity	AAI1
+Cre10.g425400			Secretory pathway			
+Cre10.g444044			Chloroplast			
+Cre10.g434300						
+Cre10.g433650			Mitochondrion	GO:0008168	methyltransferase activity	
+Cre10.g421079						
+Cre10.g428525						
+Cre10.g441350						
+Cre10.g465600						
+Cre10.g423600	GMM:33.99	development.unspecified	Chloroplast	GO:0005515;GO:0005509	protein binding;calcium ion binding	
+Cre10.g426292	GMM:4.1.14	glycolysis.cytosolic branch.pyruvate kinase (PK)		GO:0030955;GO:0006096;GO:0004743;GO:0000287	potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding	PYK6
+Cre10.g443650			Secretory pathway			
+Cre10.g462350	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre10.g427350	GMM:26.10;GMM:26.1;GMM:17.6.1.4	misc.cytochrome P450;misc.misc2;hormone metabolism.gibberelin.synthesis-degradation.ent-kaurenoic acid hydroxylase/oxygenase		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP39A2
+Cre10.g419150			Mitochondrion			
+Cre10.g453850			Secretory pathway			
+Cre10.g422250						
+Cre10.g451450	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g461874						
+Cre10.g453800						TSP3
+Cre10.g422700				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre10.g426850				GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
+Cre10.g464450			Mitochondrion	GO:0005515	protein binding	
+Cre10.g424400	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	PBB1
+Cre10.g444950						
+Cre10.g450650				GO:0005515	protein binding	
+Cre10.g454700						
+Cre10.g426350			Chloroplast			
+Cre10.g436650	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL45
+Cre10.g458500	GMM:13.1.3.6.1.1	amino acid metabolism.synthesis.aspartate family.misc.homoserine.aspartate kinase	Chloroplast			ASK1
+Cre10.g445000			Secretory pathway	GO:0055085;GO:0016020;GO:0008324;GO:0006814;GO:0006813;GO:0005215	transmembrane transport;membrane;cation transmembrane transporter activity;sodium ion transport;potassium ion transport;transporter activity	SLT2
+Cre10.g454450	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre10.g441700						
+Cre10.g419350						
+Cre10.g433550	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0051103;GO:0006310;GO:0006281;GO:0005524;GO:0003910;GO:0003677	DNA ligation involved in DNA repair;DNA recombination;DNA repair;ATP binding;DNA ligase (ATP) activity;DNA binding	DNL4
+Cre10.g456150	GMM:28.2	DNA.repair				HLD3
+Cre10.g458600	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP245
+Cre10.g427896			Secretory pathway			CSB38
+Cre10.g450000						
+Cre10.g459450	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB10
+Cre10.g447300	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	protein binding	DDI1
+Cre10.g428734				GO:0055114	oxidation-reduction process	
+Cre10.g417650	GMM:27.1	RNA.processing	Mitochondrion	GO:0008173;GO:0006396;GO:0003723	RNA methyltransferase activity;RNA processing;RNA binding	
+Cre10.g449020			Mitochondrion	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	
+Cre10.g433800	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				CSE21
+Cre10.g461100						
+Cre10.g422650			Mitochondrion			
+Cre10.g431650	GMM:20.2.5;GMM:18	stress.abiotic.light;Co-factor and vitamine metabolism		GO:0008152;GO:0006741;GO:0003951	metabolic process;NADP biosynthetic process;NAD+ kinase activity	
+Cre10.g428650	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification				CDPKK1
+Cre10.g451800	GMM:29.5	protein.degradation				
+Cre10.g451400	GMM:18.1.1;GMM:18	Co-factor and vitamine metabolism.molybdenum cofactor.gephyrin;Co-factor and vitamine metabolism		GO:0032324	molybdopterin cofactor biosynthetic process	CNX1E
+Cre10.g443900	GMM:34.18	transport.unspecified anions	Secretory pathway	GO:0016021;GO:0016020;GO:0006820;GO:0005452	integral component of membrane;membrane;anion transport;inorganic anion exchanger activity	BOR1
+Cre10.g465026						
+Cre10.g428000						
+Cre10.g418100	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0019773;GO:0006511;GO:0005839;GO:0004298;GO:0004175	"proteolysis involved in cellular protein catabolic process;proteasome core complex, alpha-subunit complex;ubiquitin-dependent protein catabolic process;proteasome core complex;threonine-type endopeptidase activity;endopeptidase activity"	POA3
+Cre10.g445177			Mitochondrion			
+Cre10.g465850						
+Cre10.g440300	GMM:31.2	cell.division		GO:0030915;GO:0006281;GO:0000724	Smc5-Smc6 complex;DNA repair;double-strand break repair via homologous recombination	SMC5A
+Cre10.g446550	GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase		GO:0046961;GO:0034220;GO:0033180;GO:0015991	"proton-transporting ATPase activity, rotational mechanism;ion transmembrane transport;proton-transporting V-type ATPase, V1 domain;ATP hydrolysis coupled proton transport"	ATPVF
+Cre10.g430700						FAP308
+Cre10.g435650	GMM:34.99	transport.misc		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	HPT1
+Cre10.g432200						
+Cre10.g425650			Secretory pathway	GO:0016021	integral component of membrane	
+Cre10.g445251						
+Cre10.g443500			Mitochondrion			PCD3
+Cre10.g449100	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Chloroplast			MCP25
+Cre10.g455750	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0046872;GO:0005524	metal ion binding;ATP binding	
+Cre10.g427550			Secretory pathway	GO:0016757;GO:0006486	"transferase activity, transferring glycosyl groups;protein glycosylation"	
+Cre10.g461950	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	PBE1
+Cre10.g427500	GMM:26.1	misc.misc2		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A1
+Cre10.g465101						
+Cre10.g463350			Secretory pathway			HRP3
+Cre10.g453250			Secretory pathway			
+Cre10.g466450	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre10.g446900	GMM:33.99;GMM:30.1;GMM:3.1;GMM:29.4	development.unspecified;signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family;protein.postranslational modification		GO:0005515	protein binding	
+Cre10.g456350	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN7-2
+Cre10.g439700	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	CGL28
+Cre10.g459050	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0070008;GO:0008236;GO:0006508;GO:0004252	serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity	
+Cre10.g432301			Chloroplast			
+Cre10.g419850			Mitochondrion			
+Cre10.g442050						
+Cre10.g427000				GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	MOC2
+Cre10.g453450	GMM:27.1	RNA.processing		GO:0030532;GO:0008380	small nuclear ribonucleoprotein complex;RNA splicing	SMP4
+Cre10.g418000						
+Cre10.g427050	GMM:29.8	protein.assembly and cofactor ligation	Mitochondrion			MNP1
+Cre10.g428800			Secretory pathway			
+Cre10.g435100						
+Cre10.g439250						
+Cre10.g441850						
+Cre10.g437650			Mitochondrion			
+Cre10.g455400						RME2
+Cre10.g450100	GMM:34.15	transport.potassium	Mitochondrion	GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
+Cre10.g458626			Chloroplast			
+Cre10.g431000						
+Cre10.g457900						
+Cre10.g424500	GMM:3.5	minor CHO metabolism.others				CPK4
+Cre10.g433100	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast	GO:0005525;GO:0000166	GTP binding;nucleotide binding	
+Cre10.g465450			Secretory pathway	GO:0008476;GO:0006478	protein-tyrosine sulfotransferase activity;peptidyl-tyrosine sulfation	
+Cre10.g442300			Chloroplast			
+Cre10.g420950			Chloroplast			
+Cre10.g417900						
+Cre10.g448051	GMM:34.99	transport.misc				
+Cre10.g435850						CPLD24
+Cre10.g420400						
+Cre10.g437400			Secretory pathway			
+Cre10.g418626			Chloroplast			
+Cre10.g459226						
+Cre10.g430400	GMM:29.2.1.2.2.37	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L37		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL37
+Cre10.g464650			Chloroplast			CGL36
+Cre10.g442700	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure		GO:0043141;GO:0005524;GO:0003678	ATP-dependent 5'-3' DNA helicase activity;ATP binding;DNA helicase activity	
+Cre10.g451100						
+Cre10.g462950			Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL33
+Cre10.g423300	GMM:29.5	protein.degradation				
+Cre10.g449300						
+Cre10.g452850						
+Cre10.g456650						AOF6
+Cre10.g449750	GMM:26.22;GMM:11.1.12	misc.short chain dehydrogenase/reductase (SDR);lipid metabolism.FA synthesis and FA elongation.ACP protein		GO:0055114;GO:0016788;GO:0009058;GO:0008152;GO:0003824	"oxidation-reduction process;hydrolase activity, acting on ester bonds;biosynthetic process;metabolic process;catalytic activity"	PKS1
+Cre10.g440900	GMM:27.1.19	RNA.processing.ribonucleases				RRP43
+Cre10.g432900	GMM:3.5	minor CHO metabolism.others				
+Cre10.g431950	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre10.g421150			Secretory pathway			
+Cre10.g441250			Secretory pathway			
+Cre10.g466650				GO:0005509	calcium ion binding	FAP252
+Cre10.g440650				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre10.g427950	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre10.g462300	GMM:31.4;GMM:17.2.2	cell.vesicle transport;hormone metabolism.auxin.signal transduction		GO:0035091	phosphatidylinositol binding	
+Cre10.g449650			Chloroplast			
+Cre10.g440400			Mitochondrion			
+Cre10.g437700	GMM:29.4	protein.postranslational modification				
+Cre10.g434650	GMM:34.12	transport.metal	Secretory pathway	GO:0035434;GO:0016021;GO:0005375	copper ion transmembrane transport;integral component of membrane;copper ion transmembrane transporter activity	CTR3
+Cre10.g451300	GMM:28.99	DNA.unspecified	Chloroplast	GO:0008408;GO:0006139;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding	EXN13
+Cre10.g448350			Secretory pathway	GO:0016020	membrane	
+Cre10.g425550	GMM:3.5	minor CHO metabolism.others				
+Cre10.g438450						LTH1
+Cre10.g444150	GMM:29.5.11.4.2;GMM:29.4.1.59	protein.degradation.ubiquitin.E3.RING;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX		GO:0016020;GO:0005525	membrane;GTP binding	
+Cre10.g431750			Secretory pathway			
+Cre10.g427150						
+Cre10.g457050			Secretory pathway			
+Cre10.g430350			Chloroplast			
+Cre10.g422750				GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	MOT10
+Cre10.g421250	GMM:31.4	cell.vesicle transport	Mitochondrion	GO:0006887;GO:0000145	exocytosis;exocyst	EXO70
+Cre10.g456420			Secretory pathway			
+Cre10.g456460			Chloroplast			
+Cre10.g466000				GO:0005739;GO:0004129	mitochondrion;cytochrome-c oxidase activity	
+Cre10.g426950	GMM:26.1	misc.misc2		GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A3
+Cre10.g428600						
+Cre10.g445100			Chloroplast	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	CGL50
+Cre10.g426200			Mitochondrion			OPR44
+Cre10.g450254			Chloroplast			
+Cre10.g446850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
+Cre10.g446450			Mitochondrion	GO:0000160	phosphorelay signal transduction system	
+Cre10.g436150	GMM:18.4.9	Co-factor and vitamine metabolism.pantothenate.dephospho-CoA kinase (DPCK)		GO:0015937;GO:0005524;GO:0004140	coenzyme A biosynthetic process;ATP binding;dephospho-CoA kinase activity	COA6
+Cre10.g464325			Secretory pathway			
+Cre10.g459950						
+Cre10.g431850						PGM18
+Cre10.g421750			Secretory pathway;Chloroplast	GO:0016020	membrane	CGL32
+Cre10.g426632			Chloroplast			
+Cre10.g454550	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase				COX19
+Cre10.g450600	GMM:29.2.2.50	protein.synthesis.ribosome biogenesis.BRIX	Chloroplast	GO:0005515	protein binding	
+Cre10.g417450						
+Cre10.g462250	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	REF1
+Cre10.g459350			Chloroplast			OPR49
+Cre10.g452650	GMM:29.3.2	protein.targeting.mitochondria		GO:0015450;GO:0006886;GO:0005744	P-P-bond-hydrolysis-driven protein transmembrane transporter activity;intracellular protein transport;mitochondrial inner membrane presequence translocase complex	TIM17
+Cre10.g455300	GMM:27.1	RNA.processing		GO:0006396	RNA processing	SMP1
+Cre10.g452300			Chloroplast	GO:0008168;GO:0006139	methyltransferase activity;nucleobase-containing compound metabolic process	
+Cre10.g437100						
+Cre10.g454025				GO:0016560;GO:0005778;GO:0005515	"protein import into peroxisome matrix, docking;peroxisomal membrane;protein binding"	
+Cre10.g430626			Mitochondrion			
+Cre10.g445153			Chloroplast			
+Cre10.g442600	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	XUV5
+Cre10.g442900	GMM:28.1.1	DNA.synthesis/chromatin structure.retrotransposon/transposase				tnp25
+Cre10.g449950						
+Cre10.g445226	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre10.g430900	GMM:31.1	cell.organisation		GO:0005815;GO:0000922;GO:0000226	microtubule organizing center;spindle pole;microtubule cytoskeleton organization	
+Cre10.g435550						DOH1
+Cre10.g418500						
+Cre10.g461850						
+Cre10.g465793			Mitochondrion			
+Cre10.g467200	GMM:33.3.1;GMM:31.3	development.multitarget.target of rapamycin;cell.cycle	Mitochondrion	GO:0016773;GO:0005515	"phosphotransferase activity, alcohol group as acceptor;protein binding"	ATR1
+Cre10.g459550						
+Cre10.g462650						
+Cre10.g421021						
+Cre10.g446700	GMM:31.1;GMM:27.3.99	cell.organisation;RNA.regulation of transcription.unclassified		GO:0008270	zinc ion binding	ANK28
+Cre10.g447450						
+Cre10.g439850	GMM:28.99	DNA.unspecified	Secretory pathway	GO:0016021	integral component of membrane	
+Cre10.g420250			Mitochondrion			
+Cre10.g448850	GMM:29.5.3	protein.degradation.cysteine protease	Chloroplast	GO:0006508;GO:0005622;GO:0004198	proteolysis;intracellular;calcium-dependent cysteine-type endopeptidase activity	FAP135
+Cre10.g436500	GMM:26.13	misc.acid and other phosphatases		GO:0016787	hydrolase activity	
+Cre10.g456440			Chloroplast			
+Cre10.g463100						
+Cre10.g454951						
+Cre10.g447400						
+Cre10.g430250	GMM:26.2;GMM:10.3.2	misc.UDP glucosyl and glucoronyl transferases;cell wall.hemicellulose synthesis.glucuronoxylan				ELG21
+Cre10.g460250			Secretory pathway			
+Cre10.g446100	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXy
+Cre10.g420512			Secretory pathway			
+Cre10.g465200						
+Cre10.g448600						
+Cre10.g429350						
+Cre10.g439050	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Chloroplast			MCP7
+Cre10.g455600	GMM:31.2;GMM:28.99;GMM:28.1;GMM:27.3.63	cell.division;DNA.unspecified;DNA.synthesis/chromatin structure;RNA.regulation of transcription.PHD finger transcription factor	Chloroplast	GO:0005524;GO:0005515	ATP binding;protein binding	ORC1
+Cre10.g460466	GMM:29.5.11.4.4	protein.degradation.ubiquitin.E3.APC				APC2:3frag
+Cre10.g424050			Mitochondrion			
+Cre10.g442800	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	XUV6
+Cre10.g438400						LTH2
+Cre10.g417675			Secretory pathway			
+Cre10.g439800			Secretory pathway			
+Cre10.g447650						
+Cre10.g417700	GMM:29.2.1.2.2.3	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L3	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL3
+Cre10.g427800	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI	Secretory pathway			
+Cre10.g452950				GO:0070588;GO:0055085;GO:0034704;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;calcium channel complex;membrane;ion transport;calcium channel activity;ion channel activity	TRP1
+Cre10.g453350				GO:0046872	metal ion binding	
+Cre10.g448750			Chloroplast			
+Cre10.g459300			Mitochondrion			
+Cre10.g458000			Secretory pathway			
+Cre10.g458183			Mitochondrion	GO:0055114;GO:0045300;GO:0006631	oxidation-reduction process;acyl-[acyl-carrier-protein] desaturase activity;fatty acid metabolic process	
+Cre10.g434150			Chloroplast			
+Cre10.g463500	GMM:29.4.1;GMM:29.4;GMM:28.1	protein.postranslational modification.kinase;protein.postranslational modification;DNA.synthesis/chromatin structure		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre10.g439026						
+Cre10.g423700						
+Cre10.g463400			Mitochondrion			
+Cre10.g430550						
+Cre10.g456554						CSC5
+Cre10.g419050	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase	Mitochondrion	GO:0046961;GO:0046933;GO:0045261;GO:0015986;GO:0005524	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;proton-transporting ATP synthase complex, catalytic core F(1);ATP synthesis coupled proton transport;ATP binding"	ATP1B
+Cre10.g445419						
+Cre10.g453700						
+Cre10.g429650						
+Cre10.g447735						
+Cre10.g418700				GO:0008168	methyltransferase activity	DMA4
+Cre10.g419443						
+Cre10.g446275						
+Cre10.g464133	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion;Chloroplast			
+Cre10.g455100						SOUL6
+Cre10.g463750	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG27
+Cre10.g466526			Secretory pathway			
+Cre10.g450500	GMM:2	major CHO metabolism	Chloroplast	GO:2001070	starch binding	
+Cre10.g458900						SRR33
+Cre10.g450950						
+Cre10.g442150			Mitochondrion			
+Cre10.g439350			Chloroplast			
+Cre10.g452750	GMM:34.8	transport.metabolite transporters at the envelope membrane				
+Cre10.g456800						
+Cre10.g422500						
+Cre10.g449138						
+Cre10.g456050	GMM:26.7;GMM:11.8	"misc.oxidases - copper, flavone etc;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016491	oxidoreductase activity	
+Cre10.g453766			Mitochondrion			
+Cre10.g420600						
+Cre10.g438700	GMM:33.99;GMM:29.2.2.3.4	development.unspecified;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins		GO:0005515	protein binding	
+Cre10.g438883			Chloroplast			
+Cre10.g462816			Chloroplast			
+Cre10.g460800	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g461300			Mitochondrion			
+Cre10.g427750	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN9-3
+Cre10.g453050	GMM:31.3	cell.cycle		GO:0019901;GO:0006355;GO:0000079	"protein kinase binding;regulation of transcription, DNA-templated;regulation of cyclin-dependent protein serine/threonine kinase activity"	CYCM1
+Cre10.g429850						
+Cre10.g424600						
+Cre10.g457750	GMM:34.6	transport.sulphate		GO:0055085;GO:0016021;GO:0016020;GO:0015116;GO:0008272;GO:0008271	transmembrane transport;integral component of membrane;membrane;sulfate transmembrane transporter activity;sulfate transport;secondary active sulfate transmembrane transporter activity	SULTR1
+Cre10.g436450						
+Cre10.g465300			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre10.g440550						
+Cre10.g428400	GMM:29.1.30;GMM:23.5.2	protein.aa activation.pseudouridylate synthase;nucleotide metabolism.deoxynucleotide metabolism.pseudouridine synthase	Mitochondrion	GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS7
+Cre10.g435350						ESU1
+Cre10.g435500	GMM:29.2.4	protein.synthesis.elongation	Mitochondrion	GO:0006414;GO:0005622;GO:0003746	translational elongation;intracellular;translation elongation factor activity	EFT2
+Cre10.g455625			Chloroplast			
+Cre10.g442350						
+Cre10.g457600						
+Cre10.g447500	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN16-2
+Cre10.g417730			Mitochondrion			
+Cre10.g442500			Chloroplast			
+Cre10.g455900						
+Cre10.g429100	GMM:29.1.40;GMM:29.1.15	protein.aa activation.bifunctional aminoacyl-tRNA synthetase;protein.aa activation.proline-tRNA ligase		GO:0006433;GO:0006418;GO:0005737;GO:0005524;GO:0004827;GO:0004812;GO:0000166	prolyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;proline-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	
+Cre10.g431800	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS5
+Cre10.g434250	GMM:29.3.2	protein.targeting.mitochondria				
+Cre10.g444650						
+Cre10.g423350						
+Cre10.g452900						SMY2
+Cre10.g449850	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre10.g420150			Chloroplast			
+Cre10.g426500			Mitochondrion			
+Cre10.g461400	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
+Cre10.g463250						
+Cre10.g426000				GO:0034227;GO:0005737	tRNA thio-modification;cytoplasm	URM1
+Cre10.g438100	GMM:3.99;GMM:1.2.1	minor CHO metabolism.misc;PS.photorespiration.phosphoglycolate phosphatase				PGP2
+Cre10.g449200	GMM:31.1	cell.organisation		GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	ANK5
+Cre10.g448900			Secretory pathway			
+Cre10.g463934						
+Cre10.g445150	GMM:28.99	DNA.unspecified		GO:0008408;GO:0006139;GO:0003676;GO:0002161	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;nucleic acid binding;aminoacyl-tRNA editing activity	EXN12
+Cre10.g437829	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family				CGL89
+Cre10.g466200	GMM:31.3;GMM:31.2	cell.cycle;cell.division	Mitochondrion	GO:0005634	nucleus	CYCAB1
+Cre10.g430501	GMM:27.1	RNA.processing		GO:0005515	protein binding	
+Cre10.g454800			Mitochondrion			
+Cre10.g421800			Mitochondrion			
+Cre10.g443400						
+Cre10.g458850			Chloroplast			SRR32
+Cre10.g456226						
+Cre10.g434850			Secretory pathway			
+Cre10.g462750				GO:0005515	protein binding	
+Cre10.g453400	GMM:34.99;GMM:30.99;GMM:27.3.67	transport.misc;signalling.unspecified;RNA.regulation of transcription.putative transcription regulator		GO:0055085;GO:0016020;GO:0005509	transmembrane transport;membrane;calcium ion binding	MSC4
+Cre10.g431250	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Chloroplast	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG5
+Cre10.g419000	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre10.g437550			Chloroplast			
+Cre10.g453750						
+Cre10.g436300			Secretory pathway			
+Cre10.g462000			Mitochondrion			
+Cre10.g445850	GMM:34.99;GMM:34.16	transport.misc;transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
+Cre10.g460400			Chloroplast	GO:0046872	metal ion binding	
+Cre10.g456950	GMM:29.5.3	protein.degradation.cysteine protease		GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP10
+Cre10.g454250	GMM:29.6.3.1	protein.folding.immunophilins (IMM).FKBPs	Chloroplast	GO:0006457	protein folding	FKB16-9
+Cre10.g420800	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP46
+Cre10.g446300	GMM:29.5;GMM:13.1.3.4.12	protein.degradation;amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase		GO:0008168;GO:0008152	methyltransferase activity;metabolic process	smm36
+Cre10.g450900			Chloroplast			
+Cre10.g451600	GMM:26.16	misc.myrosinases-lectin-jacalin	Chloroplast	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	SRR28B
+Cre10.g436550	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Chloroplast.Stroma			LCI5
+Cre10.g450879	GMM:29.2.2.50	protein.synthesis.ribosome biogenesis.BRIX				
+Cre10.g421576						
+Cre10.g460532	GMM:29.5.11.4.4	protein.degradation.ubiquitin.E3.APC	Mitochondrion	GO:0031625;GO:0006511	ubiquitin protein ligase binding;ubiquitin-dependent protein catabolic process	APC2
+Cre10.g432700				GO:0006397	mRNA processing	SMP10
+Cre10.g441200						LAL3
+Cre10.g456000	GMM:31.6.1.10;GMM:11.8	"cell.motility.eukaryotes.flagellar associated proteins;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016491	oxidoreductase activity	FAP191
+Cre10.g442041						
+Cre10.g424700	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g455050						
+Cre10.g447850			Chloroplast			YEE2
+Cre10.g465700			Secretory pathway	GO:0055114;GO:0016715;GO:0005507;GO:0004497	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;copper ion binding;monooxygenase activity"	
+Cre10.g418350			Secretory pathway			
+Cre10.g437000			Secretory pathway			
+Cre10.g425501	GMM:27.3.54	RNA.regulation of transcription.histone acetyltransferases		GO:0005515	protein binding	
+Cre10.g454600						
+Cre10.g423550	GMM:13.2.5.2.11;GMM:13.2.5.2;GMM:13.1.5.2.11	amino acid metabolism.degradation.serine-glycine-cysteine group.glycine.threonine aldolase;amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.threonine aldolase		GO:0016829;GO:0006520	lyase activity;cellular amino acid metabolic process	
+Cre10.g445050			Secretory pathway	GO:0055085;GO:0016020;GO:0008324;GO:0006814;GO:0006813;GO:0005215	transmembrane transport;membrane;cation transmembrane transporter activity;sodium ion transport;potassium ion transport;transporter activity	SLT3
+Cre10.g430950	GMM:28.2;GMM:27.3.44	DNA.repair;RNA.regulation of transcription.chromatin remodeling factors		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	RAD54B
+Cre10.g422150	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Secretory pathway	GO:0008236;GO:0006508	serine-type peptidase activity;proteolysis	
+Cre10.g425251						
+Cre10.g452076			Secretory pathway			
+Cre10.g438650	GMM:23.4.3;GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.uridylate kinase;nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase	Chloroplast	GO:0019205;GO:0006139;GO:0005524	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding	ADK2
+Cre10.g465757			Mitochondrion			
+Cre10.g466800						
+Cre10.g443700			Secretory pathway	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre10.g456480			Mitochondrion			
+Cre10.g439450						
+Cre10.g466350	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g456851			Mitochondrion			
+Cre10.g441050	GMM:27.3.2	RNA.regulation of transcription.alfin-like		GO:0042393;GO:0006355	"histone binding;regulation of transcription, DNA-templated"	
+Cre10.g444300			Chloroplast			IQA4
+Cre10.g461750	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases				DMC5
+Cre10.g419500						
+Cre10.g445347			Secretory pathway			
+Cre10.g433150				GO:0005515	protein binding	
+Cre10.g464264			Chloroplast	GO:0008080	N-acetyltransferase activity	
+Cre10.g424775	GMM:34.12	transport.metal	Secretory pathway;Chloroplast	GO:0046872;GO:0030001;GO:0000166	metal ion binding;metal ion transport;nucleotide binding	CTP2
+Cre10.g451700			Chloroplast			
+Cre10.g418950	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN10-2
+Cre10.g433300						
+Cre10.g459100						
+Cre10.g421400			Secretory pathway			
+Cre10.g429750	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified				
+Cre10.g425800	GMM:28.99	DNA.unspecified				ORN1
+Cre10.g433700			Secretory pathway			
+Cre10.g426650			Secretory pathway			
+Cre10.g458050	GMM:26.26.1	misc.aminotransferases.aminotransferase class IV family protein		GO:0008152;GO:0003824	metabolic process;catalytic activity	BCA3
+Cre10.g444850	GMM:34.21	transport.calcium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV7
+Cre10.g432500	GMM:28.1	DNA.synthesis/chromatin structure		GO:0007076	mitotic chromosome condensation	
+Cre10.g432050						FAP284
+Cre10.g429600	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway	GO:0008270	zinc ion binding	
+Cre10.g420450						
+Cre10.g420050	GMM:28.1.1	DNA.synthesis/chromatin structure.retrotransposon/transposase				
+Cre10.g429500			Mitochondrion			
+Cre10.g446000						
+Cre10.g434700			Chloroplast			
+Cre10.g433350	GMM:33.3;GMM:27.3.28	development.squamosa promoter binding like (SPL);RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre10.g430150	GMM:35.1.5;GMM:1.1.1.3	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			LPA1
+Cre10.g441450						
+Cre10.g426750	GMM:26.10;GMM:26.1	misc.cytochrome P450;misc.misc2	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A5
+Cre10.g452200			Secretory pathway			
+Cre10.g428350			Chloroplast			
+Cre10.g449550	GMM:21.5	redox.peroxiredoxin		GO:0055114;GO:0016491;GO:0016209	oxidation-reduction process;oxidoreductase activity;antioxidant activity	PRX3
+Cre10.g439100	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0005524	ATP binding	CCT1
+Cre10.g464250			Chloroplast			
+Cre10.g440100						
+Cre10.g423050	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				
+Cre10.g466750	GMM:15.2;GMM:13.1.5.3.2	"metal handling.binding, chelation and storage;amino acid metabolism.synthesis.serine-glycine-cysteine group.cysteine.SAT"	Chloroplast	GO:0009001;GO:0006535;GO:0005737	serine O-acetyltransferase activity;cysteine biosynthetic process from serine;cytoplasm	SAT1
+Cre10.g435250	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Secretory pathway	GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	NIC13
+Cre10.g465226			Secretory pathway			
+Cre10.g454100	GMM:29.2.2.50	protein.synthesis.ribosome biogenesis.BRIX				
+Cre10.g464950			Chloroplast			
+Cre10.g458350	GMM:26.16	misc.myrosinases-lectin-jacalin	Secretory pathway	GO:0016020;GO:0005975;GO:0005044;GO:0004553	"membrane;carbohydrate metabolic process;scavenger receptor activity;hydrolase activity, hydrolyzing O-glycosyl compounds"	SRR16
+Cre10.g445650	GMM:31.2	cell.division		GO:0051276;GO:0005694;GO:0005524;GO:0005515	chromosome organization;chromosome;ATP binding;protein binding	SMC3
+Cre10.g450300				GO:0055114	oxidation-reduction process	
+Cre10.g444450	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	protein binding	SSA17
+Cre10.g420700	GMM:9.9	mitochondrial electron transport / ATP synthesis.F1-ATPase		GO:0046961;GO:0046933;GO:0015986;GO:0000275	"proton-transporting ATPase activity, rotational mechanism;proton-transporting ATP synthase activity, rotational mechanism;ATP synthesis coupled proton transport;mitochondrial proton-transporting ATP synthase complex, catalytic core F(1)"	ATP15
+Cre10.g422800			Mitochondrion	GO:0005622;GO:0003676	intracellular;nucleic acid binding	
+Cre10.g462500						PUS16
+Cre10.g422850			Chloroplast			
+Cre10.g439950						
+Cre10.g464800	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre10.g460950						
+Cre10.g459900	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway			PFH4
+Cre10.g443050	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH3
+Cre10.g448250			Mitochondrion	GO:0005515	protein binding	
+Cre10.g457500	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0005515	protein binding	
+Cre10.g459700						
+Cre10.g454000				GO:0007165;GO:0005515	signal transduction;protein binding	
+Cre10.g421900	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR27
+Cre10.g466850	GMM:31.3.1;GMM:29.6.3.1	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).FKBPs		GO:0006457	protein folding	FKB18
+Cre10.g438950						
+Cre10.g425900	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA5
+Cre10.g449350			Mitochondrion	GO:0004045	aminoacyl-tRNA hydrolase activity	
+Cre10.g434950						
+Cre10.g459800	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
+Cre10.g444550	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation	Mitochondrion	GO:0008233;GO:0006508	peptidase activity;proteolysis	SPP1A
+Cre10.g434400	GMM:31.6.1.6.1	cell.motility.eukaryotes.central pair.C1a				PF6
+Cre10.g465900	GMM:31.3;GMM:31.2;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CDKA1
+Cre10.g420226			Mitochondrion			
+Cre10.g461900	GMM:3.5;GMM:17.2.3	minor CHO metabolism.others;hormone metabolism.auxin.induced-regulated-responsive-activated	Chloroplast			
+Cre10.g440450	GMM:1.1.1.3;GMM:1.1.1.2	PS.lightreaction.photosystem II.biogenesis;PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast.Stroma.Thylakoid.Membrane	GO:0016020;GO:0015979;GO:0009654;GO:0009523	membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II	PSB28
+Cre10.g434983						
+Cre10.g457650			Chloroplast			
+Cre10.g458700						
+Cre10.g428100	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008033;GO:0004809;GO:0003723	tRNA processing;tRNA (guanine-N2-)-methyltransferase activity;RNA binding	tmg5
+Cre10.g436950	GMM:28.1	DNA.synthesis/chromatin structure				
+Cre10.g467050	GMM:31.6.1.11	cell.motility.eukaryotes.other				DAP2
+Cre10.g442250						
+Cre10.g456300	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast			MBD1
+Cre10.g420350	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0015979;GO:0009538;GO:0009522	photosynthesis;photosystem I reaction center;photosystem I	PSAE
+Cre10.g461319						
+Cre10.g466500	GMM:24.2	biodegradation of xenobiotics.lactoylglutathione lyase	Chloroplast			CPL12
+Cre10.g429200	GMM:29.4.1	protein.postranslational modification.kinase	Mitochondrion	GO:0005515	protein binding	
+Cre10.g431450			Chloroplast	GO:0008080	N-acetyltransferase activity	
+Cre10.g436000	GMM:31.6.1.11	cell.motility.eukaryotes.other		GO:0005515	protein binding	
+Cre10.g446650	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0005524;GO:0003676	ATP binding;nucleic acid binding	
+Cre10.g433450				GO:0005515	protein binding	
+Cre10.g448977			Secretory pathway			
+Cre10.g457297	GMM:3.3	minor CHO metabolism.sugar alcohols				tnp27
+Cre10.g426600	GMM:26.1;GMM:17.3.1.1.99	misc.misc2;hormone metabolism.brassinosteroid.synthesis-degradation.BRs.other	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A6
+Cre10.g451900	GMM:13.1.3.2.1	amino acid metabolism.synthesis.aspartate family.threonine.threonine synthase	Chloroplast			THS1
+Cre10.g460326			Secretory pathway			
+Cre10.g422400			Secretory pathway			
+Cre10.g465550	GMM:20.2.1	stress.abiotic.heat	Chloroplast	GO:0019538;GO:0016887;GO:0005524	protein metabolic process;ATPase activity;ATP binding	CLPD1
+Cre10.g461500						
+Cre10.g420900	GMM:29.2.2.2.1;GMM:28.1;GMM:27.1.2	protein.synthesis.ribosome biogenesis.assembly factors.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL44
+Cre10.g453550			Mitochondrion			
+Cre10.g448550			Mitochondrion			
+Cre10.g418250	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				BLD10
+Cre10.g451477						
+Cre10.g436800			Secretory pathway	GO:0005515	protein binding	
+Cre10.g445750			Mitochondrion			
+Cre10.g463850						
+Cre10.g431550	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH6
+Cre10.g424900	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH1
+Cre10.g448650	GMM:11.3.5	lipid metabolism.phospholipid synthesis.diacylglycerol kinase		GO:0016301	kinase activity	KDG5
+Cre10.g457194			Chloroplast			
+Cre10.g453650				GO:0006281	DNA repair	
+Cre10.g451150			Chloroplast			
+Cre10.g445151						
+Cre10.g448450	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006863;GO:0006810;GO:0005345;GO:0005215	transmembrane transport;membrane;purine nucleobase transport;transport;purine nucleobase transmembrane transporter activity;transporter activity	XUV2
+Cre10.g445900						
+Cre10.g427700	GMM:27.1.2	RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL47
+Cre10.g431150	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP256
+Cre10.g421500			Mitochondrion			
+Cre10.g455800			Secretory pathway			
+Cre10.g424350	GMM:33.99;GMM:29.5.7;GMM:29.5.11	development.unspecified;protein.degradation.metalloprotease;protein.degradation.ubiquitin	Chloroplast	GO:0008270	zinc ion binding	
+Cre10.g447600			Chloroplast			
+Cre10.g462901			Secretory pathway			
+Cre10.g433866			Chloroplast			
+Cre10.g447000						
+Cre10.g417750			Mitochondrion	GO:0006629	lipid metabolic process	
+Cre10.g423650	GMM:29.2.1.1.4.2;GMM:29.2.1.1.1.2.11	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit;protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L11	Chloroplast	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	PRPL11
+Cre10.g432600	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS18
+Cre10.g437950				GO:0015923;GO:0008270;GO:0006013;GO:0005975;GO:0004559;GO:0004553	"mannosidase activity;zinc ion binding;mannose metabolic process;carbohydrate metabolic process;alpha-mannosidase activity;hydrolase activity, hydrolyzing O-glycosyl compounds"	
+Cre10.g462100						
+Cre10.g430800	GMM:35.1.1	not assigned.no ontology.ABC1 family protein	Chloroplast			
+Cre10.g452000	GMM:34.14	transport.unspecified cations				
+Cre10.g464050			Chloroplast			
+Cre10.g422350	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				
+Cre10.g444000	GMM:29.5.11.4.2;GMM:29.4.1.59	protein.degradation.ubiquitin.E3.RING;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX		GO:0016020;GO:0005525	membrane;GTP binding	
+Cre10.g445299			Mitochondrion			
+Cre10.g450800						
+Cre10.g465750						
+Cre10.g458250						
+Cre10.g428900	GMM:27.4	RNA.RNA binding		GO:0032259;GO:0008168;GO:0003723	methylation;methyltransferase activity;RNA binding	CGL72
+Cre10.g419950				GO:0005515	protein binding	
+Cre10.g423450	GMM:3.8;GMM:20.2.3;GMM:18.4.7;GMM:18.4	minor CHO metabolism.galactose;stress.abiotic.drought/salt;Co-factor and vitamine metabolism.pantothenate.phosphopantothenoylcysteine decarboxylase (PPCDC);Co-factor and vitamine metabolism.pantothenate	Secretory pathway	GO:0003824	catalytic activity	COA4
+Cre10.g435050			Mitochondrion			
+Cre10.g443000	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	ATM3
+Cre10.g419700			Secretory pathway	GO:0016021;GO:0015693;GO:0015095	integral component of membrane;magnesium ion transport;magnesium ion transmembrane transporter activity	CGL6
+Cre10.g441550			Secretory pathway			MAM3B
+Cre10.g444094						
+Cre10.g444800						CGL63
+Cre10.g454150						SAT3
+Cre10.g430050	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC20
+Cre10.g422326			Mitochondrion			
+Cre10.g464750				GO:0008080	N-acetyltransferase activity	
+Cre10.g435775						
+Cre10.g459500	GMM:30.5;GMM:3.5;GMM:29.2.2.1	signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0005525	GTP binding	NGB1
+Cre10.g419600				GO:0004112	cyclic-nucleotide phosphodiesterase activity	
+Cre10.g438200						
+Cre10.g438550	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0015031;GO:0008565	protein transport;protein transporter activity	TATA
+Cre10.g441000	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0006351;GO:0005634;GO:0003677	"transcription, DNA-templated;nucleus;DNA binding"	
+Cre10.g422050	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre10.g464850	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0055114;GO:0030091;GO:0016671;GO:0008113;GO:0006979	"oxidation-reduction process;protein repair;oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor;peptide-methionine (S)-S-oxide reductase activity;response to oxidative stress"	MSRA5
+Cre10.g424200	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0003887;GO:0003677	DNA replication;DNA-directed DNA polymerase activity;DNA binding	
+Cre10.g453707						
+Cre10.g433600	GMM:25.6;GMM:25	C1-metabolism.methylenetetrahydrofolate reductase;C1-metabolism		GO:0055114;GO:0006555;GO:0004489	oxidation-reduction process;methionine metabolic process;methylenetetrahydrofolate reductase (NAD(P)H) activity	
+Cre10.g461050	GMM:34.1.1;GMM:34.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase;transport.p- and v-ATPases		GO:0046034;GO:0033178;GO:0016820;GO:0015992;GO:0015991;GO:0005524	"ATP metabolic process;proton-transporting two-sector ATPase complex, catalytic domain;hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances;proton transport;ATP hydrolysis coupled proton transport;ATP binding"	ATPVA1
+Cre10.g425700						
+Cre10.g446250	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	
+Cre10.g456750	GMM:21.2.1	redox.ascorbate and glutathione.ascorbate		GO:0005515	protein binding	
+Cre10.g452150			Secretory pathway			
+Cre10.g423950	GMM:31.4	cell.vesicle transport	Secretory pathway			
+Cre10.g432400			Chloroplast			OPR46
+Cre10.g452500				GO:0005634	nucleus	
+Cre10.g438000						
+Cre10.g441800				GO:0006355;GO:0006351	"regulation of transcription, DNA-templated;transcription, DNA-templated"	
+Cre10.g422900	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g423150	GMM:29.4.1	protein.postranslational modification.kinase				
+Cre10.g441950	GMM:27.1	RNA.processing		GO:0006397	mRNA processing	LSM2
+Cre10.g432150	GMM:31.3;GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	cell.cycle;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre10.g427250	GMM:31.1	cell.organisation				PRO1
+Cre10.g461650			Mitochondrion			
+Cre10.g428750	GMM:35.1.14	not assigned.no ontology.S RNA-binding domain-containing protein		GO:0006397;GO:0005634;GO:0003676	mRNA processing;nucleus;nucleic acid binding	
+Cre10.g453200			Chloroplast			
+Cre10.g445443			Chloroplast			
+Cre10.g464550	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	LAT1
+Cre10.g436400			Chloroplast			
+Cre10.g428706				GO:0055114	oxidation-reduction process	
+Cre10.g449450						
+Cre10.g439200	GMM:23.5.3	nucleotide metabolism.deoxynucleotide metabolism.cytosine deaminase	Secretory pathway	GO:0008270	zinc ion binding	CDD5
+Cre10.g428250			Chloroplast			
+Cre10.g457801			Chloroplast			
+Cre10.g437300			Secretory pathway			
+Cre10.g463600	GMM:11.9.2	lipid metabolism.lipid degradation.lipases		GO:0006629	lipid metabolic process	TGL17
+Cre10.g439550	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway			
+Cre10.g455190			Chloroplast	GO:0008610;GO:0008168	lipid biosynthetic process;methyltransferase activity	
+Cre10.g465375			Mitochondrion			
+Cre10.g422600	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0051539	"4 iron, 4 sulfur cluster binding"	NUO6
+Cre10.g418800				GO:0005515	protein binding	
+Cre10.g462700	GMM:27.1.3.13	RNA.processing.3' end processing.CFIm25		GO:0006378;GO:0005849;GO:0003729	mRNA polyadenylation;mRNA cleavage factor complex;mRNA binding	
+Cre10.g422450	GMM:26.2;GMM:2.1.2	misc.UDP glucosyl and glucoronyl transferases;major CHO metabolism.synthesis.starch	Secretory pathway			GGT1
+Cre10.g467150			Mitochondrion			ROC69
+Cre10.g456600						
+Cre10.g421600	GMM:29.1.3	protein.aa activation.threonine-tRNA ligase	Secretory pathway	GO:0043039;GO:0016876;GO:0006418;GO:0005524;GO:0004812;GO:0000166	"tRNA aminoacylation;ligase activity, forming aminoacyl-tRNA and related compounds;tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding"	TST2
+Cre10.g466550				GO:0006351;GO:0006289;GO:0000439	"transcription, DNA-templated;nucleotide-excision repair;core TFIIH complex"	
+Cre10.g463026				GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	
+Cre10.g460201			Mitochondrion			
+Cre10.g439300			Mitochondrion	GO:0055114	oxidation-reduction process	
+Cre10.g449127			Mitochondrion			
+Cre10.g464600			Chloroplast	GO:0005509	calcium ion binding	CAM14
+Cre10.g424750	GMM:6.5	gluconeogenesis / glyoxylate cycle.pyruvate dikinase		GO:0016772;GO:0016310;GO:0016301;GO:0005524	"transferase activity, transferring phosphorus-containing groups;phosphorylation;kinase activity;ATP binding"	PPD1
+Cre10.g455350			Chloroplast			
+Cre10.g440950				GO:0005515	protein binding	FAP192
+Cre10.g465822			Chloroplast			
+Cre10.g459200	GMM:34.1.2;GMM:34.1	transport.p- and v-ATPases.H+-exporting ATPase;transport.p- and v-ATPases		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	PMA2
+Cre10.g465400				GO:0034244;GO:0032021	negative regulation of transcription elongation from RNA polymerase II promoter;NELF complex	
+Cre10.g456100	GMM:31.6.1.9;GMM:11.8	"cell.motility.eukaryotes.flagellar adhesion and gamete fusion;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016491	oxidoreductase activity	AGG3
+Cre10.g425150	GMM:29.4	protein.postranslational modification				
+Cre10.g429702						
+Cre10.g460700	GMM:29.4.1	protein.postranslational modification.kinase		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g423000			Secretory pathway			
+Cre10.g436850						
+Cre10.g420551			Secretory pathway			
+Cre10.g449250	GMM:31.6.1.3.1.1	cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.kinesin-2 subunits		GO:0019894;GO:0005871	kinesin binding;kinesin complex	KAP1
+Cre10.g439750						
+Cre10.g438300						LTH4
+Cre10.g419900			Chloroplast			
+Cre10.g460901						
+Cre10.g430300			Mitochondrion			
+Cre10.g444726			Mitochondrion			
+Cre10.g446150			Secretory pathway			
+Cre10.g442950			Chloroplast			
+Cre10.g466950			Mitochondrion			
+Cre10.g433050	GMM:26.17	misc.dynamin	Mitochondrion			DRP8
+Cre10.g417550			Chloroplast			CLPT3
+Cre10.g457850						
+Cre10.g463450	GMM:29.4.1;GMM:28.1	protein.postranslational modification.kinase;DNA.synthesis/chromatin structure	Chloroplast			
+Cre10.g425675			Mitochondrion	GO:0006810;GO:0005643	transport;nuclear pore	
+Cre10.g440800						
+Cre10.g435800	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast	GO:0050662;GO:0003824	coenzyme binding;catalytic activity	CSP41B
+Cre10.g425600			Chloroplast			
+Cre10.g417850			Chloroplast	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre10.g458750						
+Cre10.g439000	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016021;GO:0006810;GO:0005524;GO:0005215	ATPase activity;integral component of membrane;transport;ATP binding;transporter activity	
+Cre10.g428200	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre10.g440200	GMM:31.2	cell.division		GO:0030915;GO:0006281;GO:0000724	Smc5-Smc6 complex;DNA repair;double-strand break repair via homologous recombination	SMC5B
+Cre10.g441326						
+Cre10.g430376						
+Cre10.g424450	GMM:34.9;GMM:34.20;GMM:29.3.2	transport.metabolite transporters at the mitochondrial membrane;transport.porins;protein.targeting.mitochondria		GO:0055085;GO:0005741	transmembrane transport;mitochondrial outer membrane	TOM40
+Cre10.g456550						
+Cre10.g418150	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family	Chloroplast			FAP178
+Cre10.g448300						
+Cre10.g451000				GO:0008616;GO:0008479;GO:0006400	queuosine biosynthetic process;queuine tRNA-ribosyltransferase activity;tRNA modification	
+Cre10.g447950			Chloroplast			
+Cre10.g441400	GMM:29.2.2.3.1;GMM:27.3.67	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;RNA.regulation of transcription.putative transcription regulator				NOP58
+Cre10.g445395						
+Cre10.g429300			Secretory pathway	GO:0005515	protein binding	
+Cre10.g452100			Chloroplast	GO:0030145;GO:0016021;GO:0015979;GO:0009523	manganese ion binding;integral component of membrane;photosynthesis;photosystem II	PSBY
+Cre10.g425350	GMM:29.4.1.57;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre10.g452350			Chloroplast			
+Cre10.g457400	GMM:31.6.1.10;GMM:30.99	cell.motility.eukaryotes.flagellar associated proteins;signalling.unspecified				
+Cre10.g431050	GMM:26.16	misc.myrosinases-lectin-jacalin		GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR13
+Cre10.g439400	GMM:19.1	tetrapyrrole synthesis.glu-tRNA synthetase	Chloroplast	GO:0016884	"carbon-nitrogen ligase activity, with glutamine as amido-N-donor"	GAT1
+Cre10.g457450	GMM:30.99	signalling.unspecified				
+Cre10.g455700	GMM:27.1	RNA.processing				PAP5
+Cre10.g451050			Secretory pathway			
+Cre10.g432950						
+Cre10.g438050	GMM:11.1.3	lipid metabolism.FA synthesis and FA elongation.ketoacyl ACP synthase	Secretory pathway			KAS3
+Cre10.g453100			Secretory pathway			
+Cre10.g443250	GMM:29.6.2.2;GMM:29.6	protein.folding.chaperones and co-chaperones.HSP60s;protein.folding	Cytosol	GO:0051082;GO:0006457;GO:0005524	unfolded protein binding;protein folding;ATP binding	CCT3
+Cre10.g450550	GMM:31.5.1;GMM:26.30;GMM:26.3	"cell.cell death.plants;misc.other Ferredoxins and Rieske domain;misc.gluco-, galacto- and mannosidases"		GO:0055114;GO:0051537;GO:0016491;GO:0010277	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity;chlorophyllide a oxygenase [overall] activity"	PAO3
+Cre10.g443600						
+Cre10.g418600	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Chloroplast			RLS3
+Cre10.g453782			Mitochondrion			
+Cre10.g458400						
+Cre10.g419200						
+Cre10.g449000			Secretory pathway			LZY1
+Cre10.g438850	GMM:27.3.35	RNA.regulation of transcription.bZIP transcription factor family	Mitochondrion	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	ROC76
+Cre10.g444500	GMM:26.23	misc.rhodanese	Chloroplast			
+Cre10.g446500			Chloroplast			CPL24
+Cre10.g431100			Mitochondrion			
+Cre10.g421100			Mitochondrion			
+Cre10.g464400	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SSA20
+Cre10.g442200	GMM:16.8.4;GMM:16.8.3;GMM:11.8.4	"secondary metabolism.flavonoids.flavonols;secondary metabolism.flavonoids.dihydroflavonols;lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"	Secretory pathway			ERG6
+Cre10.g444086			Chloroplast			
+Cre10.g450700	GMM:3.3	minor CHO metabolism.sugar alcohols	Mitochondrion			CSB39
+Cre10.g461350						BUG23
+Cre10.g422718						
+Cre10.g427400						
+Cre10.g453807	GMM:29.5	protein.degradation	Chloroplast	GO:0008236;GO:0006508;GO:0005515	serine-type peptidase activity;proteolysis;protein binding	
+Cre10.g434350	GMM:34.12	transport.metal	Mitochondrion	GO:0035434;GO:0016021;GO:0005375	copper ion transmembrane transport;integral component of membrane;copper ion transmembrane transporter activity	CTR2
+Cre10.g454650				GO:0006351;GO:0005634;GO:0003899	"transcription, DNA-templated;nucleus;DNA-directed RNA polymerase activity"	RPC5
+Cre10.g441650			Secretory pathway			
+Cre10.g426335				GO:0008270	zinc ion binding	
+Cre10.g450150			Secretory pathway			
+Cre10.g455451			Chloroplast			
+Cre10.g428966						
+Cre10.g457100			Secretory pathway			
+Cre10.g421450						
+Cre10.g432250	GMM:31.3;GMM:30.6;GMM:3.6;GMM:29.4.1	cell.cycle;signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre10.g466100						
+Cre10.g465050			Chloroplast	GO:0003676	nucleic acid binding	
+Cre10.g421950						TEF26
+Cre10.g418400						
+Cre10.g433500						PWR10
+Cre10.g459400						
+Cre10.g425050	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Mitochondrion	GO:0005515	protein binding	ROC59
+Cre10.g427850	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast	GO:0006355	"regulation of transcription, DNA-templated"	
+Cre10.g458150						
+Cre10.g437250						
+Cre10.g451850	GMM:33.99;GMM:31.1;GMM:29.5.9;GMM:29.5.11.20	development.unspecified;cell.organisation;protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom	Mitochondrion	GO:0005524	ATP binding	
+Cre10.g426400				GO:0045454	cell redox homeostasis	TRX22
+Cre10.g458550			Chloroplast			
+Cre10.g450450						FAP18
+Cre10.g434600	GMM:33.99;GMM:31.6.1.10;GMM:30.5	development.unspecified;cell.motility.eukaryotes.flagellar associated proteins;signalling.G-proteins		GO:0055085;GO:0016020;GO:0006811;GO:0005515;GO:0005216	transmembrane transport;membrane;ion transport;protein binding;ion channel activity	FAP148
+Cre10.g423850	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR26
+Cre10.g435600						
+Cre10.g465575			Chloroplast			
+Cre10.g462200	GMM:27.3.55	RNA.regulation of transcription.HDA		GO:0070403	NAD+ binding	HDA17
+Cre10.g444100	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0016567;GO:0016020;GO:0005525;GO:0004842	protein ubiquitination;membrane;GTP binding;ubiquitin-protein transferase activity	
+Cre10.g428150	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems	Mitochondrion			
+Cre10.g463900			Secretory pathway			
+Cre10.g431602			Chloroplast			
+Cre10.g440250						PGM19
+Cre10.g428692				GO:0055114	oxidation-reduction process	
+Cre10.g424000						
+Cre10.g450050						
+Cre10.g461150	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g443950	GMM:29.5.11.4.2;GMM:29.4.1.59	protein.degradation.ubiquitin.E3.RING;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX	Secretory pathway	GO:0016567;GO:0016020;GO:0005525;GO:0004842	protein ubiquitination;membrane;GTP binding;ubiquitin-protein transferase activity	
+Cre10.g452400			Secretory pathway			CSF1
+Cre10.g424100	GMM:23.4.99	nucleotide metabolism.phosphotransfer and pyrophosphatases.misc	Chloroplast	GO:0006796;GO:0005737;GO:0004427;GO:0000287	phosphate-containing compound metabolic process;cytoplasm;inorganic diphosphatase activity;magnesium ion binding	IPY1
+Cre10.g436100	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	MLK1
+Cre10.g417600			Chloroplast			
+Cre10.g464350				GO:0008270;GO:0003676	zinc ion binding;nucleic acid binding	
+Cre10.g428720			Secretory pathway			
+Cre10.g430650						
+Cre10.g461000						
+Cre10.g454400	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast	GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre10.g446400	GMM:31.1;GMM:29.5.9;GMM:29.5.11.20	cell.organisation;protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom		GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	KAT3
+Cre10.g445275	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre10.g443350						
+Cre10.g419800	GMM:11.3.4	lipid metabolism.phospholipid synthesis.CDP-diacylglycerol-inositol 3-phosphatidyltransferase	Secretory pathway	GO:0016780;GO:0016020;GO:0008654	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	PIS1
+Cre10.g452800	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Chloroplast			LCIB
+Cre10.g465763			Mitochondrion			CSB40
+Cre10.g448800			Mitochondrion			
+Cre10.g453500			Mitochondrion			
+Cre10.g434200						
+Cre10.g423083	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre10.g462783			Secretory pathway			
+Cre10.g453300						
+Cre10.g459250	GMM:29.2.1.2.2.535;GMM:29.2.1.2.2.0535	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L35A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L35A		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL35A
+Cre10.g439900	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Secretory pathway			HSP70G
+Cre10.g454900	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE29
+Cre10.g447050						
+Cre10.g420537	GMM:34.99	transport.misc				
+Cre10.g447350	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Chloroplast	GO:0030127;GO:0008270;GO:0006888;GO:0006886	COPII vesicle coat;zinc ion binding;ER to Golgi vesicle-mediated transport;intracellular protein transport	SEC23B
+Cre10.g431900						
+Cre10.g448700	GMM:31.1;GMM:27.3.44	cell.organisation;RNA.regulation of transcription.chromatin remodeling factors	Mitochondrion	GO:0005515	protein binding	
+Cre10.g463800						
+Cre10.g418650			Mitochondrion			
+Cre10.g426102			Mitochondrion			
+Cre10.g457950	GMM:29.5	protein.degradation	Chloroplast			
+Cre10.g459000						
+Cre10.g430200	GMM:14.1	S-assimilation.APS	Secretory pathway	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS3
+Cre10.g429601	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0016888	"endodeoxyribonuclease activity, producing 5'-phosphomonoesters"	
+Cre10.g432350						
+Cre10.g463370			Secretory pathway			
+Cre10.g436700						
+Cre10.g424850	GMM:27.1.1;GMM:27.1	RNA.processing.splicing;RNA.processing		GO:0046540;GO:0000398;GO:0000244	"U4/U6 x U5 tri-snRNP complex;mRNA splicing, via spliceosome;spliceosomal tri-snRNP complex assembly"	
+Cre10.g438350			Secretory pathway			LTH3
+Cre10.g455250			Mitochondrion			
+Cre10.g464100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g451752	GMM:1.5	PS.carbon concentrating mechanism	Mitochondrion			PHC25
+Cre10.g427600	GMM:33.99;GMM:31.1;GMM:29.5.11.20	development.unspecified;cell.organisation;protein.degradation.ubiquitin.proteasom		GO:0009378;GO:0006310;GO:0006281	four-way junction helicase activity;DNA recombination;DNA repair	KAT1
+Cre10.g463700						
+Cre10.g460000			Mitochondrion			
+Cre10.g419400						
+Cre10.g441150			Mitochondrion;Chloroplast			
+Cre10.g449150			Secretory pathway			
+Cre10.g429450						
+Cre10.g460100	GMM:33.99	development.unspecified	Mitochondrion	GO:0005515	protein binding	
+Cre10.g429400						MCG1
+Cre10.g448000						
+Cre10.g442750	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre10.g458650						
+Cre10.g463200						
+Cre10.g450926						
+Cre10.g419100						
+Cre10.g432850						FAP77
+Cre10.g458950	GMM:29.8	protein.assembly and cofactor ligation	Secretory pathway			
+Cre10.g466300						
+Cre10.g461700			Mitochondrion			
+Cre10.g428850	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm				DLT1
+Cre10.g447700			Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre10.g446050			Secretory pathway			
+Cre10.g454350			Mitochondrion			
+Cre10.g465000				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g417500	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Secretory pathway	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN20-5
+Cre10.g437150	GMM:35.1.5;GMM:33.99	not assigned.no ontology.pentatricopeptide (PPR) repeat-containing protein;development.unspecified	Mitochondrion			PPR6
+Cre10.g435400						
+Cre10.g426250						
+Cre10.g418851			Secretory pathway			
+Cre10.g421000				GO:0005515	protein binding	
+Cre10.g421200			Mitochondrion	GO:0003723	RNA binding	
+Cre10.g449700				GO:0006950	response to stress	
+Cre10.g445600	GMM:29.2.2.3.99;GMM:29.2.2.2.2	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.misc;protein.synthesis.ribosome biogenesis.assembly factors.GTPases		GO:0042254;GO:0005634	ribosome biogenesis;nucleus	
+Cre10.g443801			Secretory pathway			
+Cre10.g427453			Mitochondrion			
+Cre10.g428500	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH2
+Cre10.g465950						CGL148
+Cre10.g427200						
+Cre10.g422201	GMM:34.12	transport.metal	Mitochondrion	GO:0046872;GO:0030001;GO:0000166	metal ion binding;metal ion transport;nucleotide binding	CTP4
+Cre10.g442550			Chloroplast			
+Cre10.g462600				GO:0009982;GO:0009451;GO:0003723;GO:0001522	pseudouridine synthase activity;RNA modification;RNA binding;pseudouridine synthesis	PUS15
+Cre10.g423750	GMM:18.8.1	Co-factor and vitamine metabolism.ubiquinone.hexaprenyldihydroxybenzoate methyltransferase	Chloroplast			COQ3
+Cre10.g443150						
+Cre10.g424550			Mitochondrion			
+Cre10.g455551			Chloroplast			
+Cre10.g428050			Mitochondrion			
+Cre10.g421850						
+Cre10.g441300	GMM:33.99;GMM:27.3.3	"development.unspecified;RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family"		GO:0007275;GO:0006355;GO:0003700	"multicellular organismal development;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre10.g444400						
+Cre10.g445371						
+Cre10.g428664						DIC6
+Cre10.g440700			Secretory pathway			
+Cre10.g461895						
+Cre10.g424250						FAP90
+Cre10.g431700						
+Cre10.g457000	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN65
+Cre10.g432750						
+Cre10.g444183			Secretory pathway			
+Cre10.g452700						
+Cre10.g421550	GMM:27.3.28	RNA.regulation of transcription.squamosa promoter binding protein family (SBP)		GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre10.g429017			Mitochondrion			
+Cre10.g436250			Secretory pathway			
+Cre10.g459600	GMM:27.3.13	"RNA.regulation of transcription.CCAAT box binding factor family, DR1"				
+Cre10.g458450	GMM:21.2.2;GMM:21.2	redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione		GO:0055114;GO:0006979;GO:0004602	oxidation-reduction process;response to oxidative stress;glutathione peroxidase activity	GPX5
+Cre10.g423500	GMM:19.21	tetrapyrrole synthesis.heme oxygenase	Chloroplast	GO:0055114;GO:0006788;GO:0004392	oxidation-reduction process;heme oxidation;heme oxygenase (decyclizing) activity	HMO1
+Cre10.g426616			Mitochondrion			
+Cre10.g435900			Mitochondrion			
+Cre10.g437601			Mitochondrion			
+Cre10.g417426			Mitochondrion			
+Cre10.g444216						
+Cre10.g450200						
+Cre10.g460600	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN53
+Cre10.g421700	GMM:11.5.2	lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)	Chloroplast	GO:0055114;GO:0051287;GO:0046168;GO:0016616;GO:0009331;GO:0006072;GO:0005975;GO:0004367	"oxidation-reduction process;NAD binding;glycerol-3-phosphate catabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;glycerol-3-phosphate dehydrogenase complex;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity"	GPD4
+Cre10.g436200			Mitochondrion			
+Cre10.g421300						
+Cre10.g444600			Mitochondrion			
+Cre10.g465650	GMM:33.99	development.unspecified		GO:0005515	protein binding	
+Cre10.g442850	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0006265;GO:0005694;GO:0003917;GO:0003916;GO:0003677	DNA topological change;chromosome;DNA topoisomerase type I activity;DNA topoisomerase activity;DNA binding	TOP1A
+Cre10.g434500	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g438150						
+Cre10.g450626			Chloroplast			
+Cre10.g465150						
+Cre10.g451350						
+Cre10.g432770						
+Cre10.g454500			Mitochondrion			
+Cre10.g446800	GMM:16.8.2	secondary metabolism.flavonoids.chalcones				
+Cre10.g446950			Mitochondrion	GO:0005515	protein binding	
+Cre10.g451250	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre10.g433750	GMM:27.1.3.1;GMM:27.1	RNA.processing.3' end processing.PAP;RNA.processing		GO:0043631;GO:0016779;GO:0005634;GO:0004652;GO:0003723	RNA polyadenylation;nucleotidyltransferase activity;nucleus;polynucleotide adenylyltransferase activity;RNA binding	PAP1
+Cre10.g444750			Mitochondrion			
+Cre10.g445323			Secretory pathway			
+Cre10.g438600						
+Cre10.g433250	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	XUV4
+Cre10.g447800				GO:0003723	RNA binding	
+Cre10.g465726						
+Cre10.g464200			Secretory pathway			
+Cre10.g447200						
+Cre10.g452550	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Mitochondrion			HOP1
+Cre10.g422100						
+Cre10.g443450			Secretory pathway			
+Cre10.g462150			Chloroplast			
+Cre10.g440350				GO:0006950;GO:0005516	response to stress;calmodulin binding	
+Cre10.g456500						
+Cre10.g441100			Secretory pathway	GO:0042765;GO:0016255	GPI-anchor transamidase complex;attachment of GPI anchor to protein	PIGT
+Cre10.g451200						
+Cre10.g444250	GMM:34.99;GMM:29.3.4.99;GMM:28.99	transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified				
+Cre10.g442000						
+Cre10.g464300			Mitochondrion			
+Cre10.g464900	GMM:11.9.3	lipid metabolism.lipid degradation.lysophospholipases				
+Cre10.g447767	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion			AOF2
+Cre10.g425450			Mitochondrion			AOF5
+Cre10.g445700	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g432000	GMM:29.5.11.4.6;GMM:28.2;GMM:20.2.5	protein.degradation.ubiquitin.E3.DCX;DNA.repair;stress.abiotic.light		GO:0006281;GO:0005634;GO:0003676	DNA repair;nucleus;nucleic acid binding	DDB1
+Cre10.g422000	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0008033;GO:0004809;GO:0003723	tRNA processing;tRNA (guanine-N2-)-methyltransferase activity;RNA binding	
+Cre10.g423900				GO:0003677	DNA binding	
+Cre10.g421350	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			MMP25
+Cre10.g431350			Chloroplast			TGL16
+Cre10.g440850	GMM:21.2.2;GMM:21.2	redox.ascorbate and glutathione.glutathione;redox.ascorbate and glutathione	Chloroplast	GO:0055114;GO:0016491;GO:0016209;GO:0006979;GO:0004602	oxidation-reduction process;oxidoreductase activity;antioxidant activity;response to oxidative stress;glutathione peroxidase activity	GPX4
+Cre10.g449050			Mitochondrion			
+Cre10.g452600						
+Cre10.g425200	GMM:29.4	protein.postranslational modification		GO:0055114;GO:0030328;GO:0016670;GO:0001735	"oxidation-reduction process;prenylcysteine catabolic process;oxidoreductase activity, acting on a sulfur group of donors, oxygen as acceptor;prenylcysteine oxidase activity"	
+Cre10.g455000						
+Cre10.g435300	GMM:29.5.4	protein.degradation.aspartate protease		GO:0008270;GO:0006508;GO:0004177	zinc ion binding;proteolysis;aminopeptidase activity	AAP1
+Cre10.g464776						
+Cre10.g432550				GO:0008076;GO:0006813;GO:0005249	voltage-gated potassium channel complex;potassium ion transport;voltage-gated potassium channel activity	KCN2
+Cre10.g438750						
+Cre10.g463650						
+Cre10.g439500			Secretory pathway			
+Cre10.g425850						
+Cre10.g465250	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP11
+Cre10.g440000			Chloroplast			RAA8
+Cre10.g419450	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre10.g466400						
+Cre10.g418450			Secretory pathway			
+Cre10.g435950			Secretory pathway			OPR47
+Cre10.g450350						IFT25
+Cre10.g429050	GMM:28.2	DNA.repair		GO:0006289;GO:0006281;GO:0005634;GO:0004519;GO:0004518;GO:0003697	nucleotide-excision repair;DNA repair;nucleus;endonuclease activity;nuclease activity;single-stranded DNA binding	
+Cre10.g430100	GMM:26.2;GMM:10.3.2	misc.UDP glucosyl and glucoronyl transferases;cell wall.hemicellulose synthesis.glucuronoxylan	Secretory pathway			ELG22
+Cre10.g420561	GMM:29.5.5	protein.degradation.serine protease				
+Cre10.g426800			Secretory pathway	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
+Cre10.g420500				GO:0070588;GO:0055085;GO:0016020;GO:0006811;GO:0005262;GO:0005216	calcium ion transmembrane transport;transmembrane transport;membrane;ion transport;calcium channel activity;ion channel activity	
+Cre10.g433400				GO:0006850;GO:0005743	mitochondrial pyruvate transport;mitochondrial inner membrane	
+Cre10.g420100	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ35
+Cre10.g418750						
+Cre10.g462550						
+Cre10.g420200			Secretory pathway			PHC55
+Cre10.g434967						
+Cre10.g434550			Secretory pathway			
+Cre10.g429550				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	MRPS16
+Cre10.g442400				GO:0005634	nucleus	
+Cre10.g466600			Chloroplast			
+Cre10.g423200	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre10.g446750						
+Cre10.g461575			Mitochondrion			
+Cre10.g427300	GMM:31.6.1.5.2	cell.motility.eukaryotes.radial spoke.stalk				RSP2
+Cre10.g426700	GMM:26.1	misc.misc2	Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP739A4
+Cre10.g439150	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0016887;GO:0005524	ATPase activity;ATP binding	RPT5
+Cre10.g443100			Chloroplast			
+Cre10.g434726			Chloroplast			
+Cre10.g458300						
+Cre10.g445952			Secretory pathway			
+Cre10.g449501			Mitochondrion			
+Cre10.g444900	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	MFT4
+Cre10.g448200	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	ARL9
+Cre10.g455650	GMM:13.1.3.4.12;GMM:13.1.3.4	amino acid metabolism.synthesis.aspartate family.methionine.homocysteine S-methyltransferase;amino acid metabolism.synthesis.aspartate family.methionine				
+Cre10.g455231						CSR4
+Cre10.g425000	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g461851			Mitochondrion			
+Cre10.g433900	GMM:29.5.11.4.1;GMM:29.4.1.59	protein.degradation.ubiquitin.E3.HECT;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX	Mitochondrion	GO:0006464;GO:0005515;GO:0004842;GO:0004719	cellular protein modification process;protein binding;ubiquitin-protein transferase activity;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	
+Cre10.g453900	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0005515;GO:0003755;GO:0000413	protein folding;protein binding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN71
+Cre10.g434001			Chloroplast			
+Cre10.g463150	GMM:13.2.6.3;GMM:13.2.4.1;GMM:13.2.3.5;GMM:11.9.4.14	amino acid metabolism.degradation.aromatic aa.tryptophan;amino acid metabolism.degradation.branched chain group.shared;amino acid metabolism.degradation.aspartate family.lysine;lipid metabolism.lipid degradation.beta-oxidation.enoyl isomerase		GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre10.g447550			Chloroplast			
+Cre10.g432800	GMM:29.2.1.2.1.31	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.SA		GO:0015935;GO:0006412;GO:0005840;GO:0005622;GO:0003735	small ribosomal subunit;translation;ribosome;intracellular;structural constituent of ribosome	RPSA
+Cre10.g420650	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	protein binding	
+Cre10.g426050	GMM:29.5.5;GMM:29.5	protein.degradation.serine protease;protein.degradation		GO:0008236;GO:0006508;GO:0005515	serine-type peptidase activity;proteolysis;protein binding	TSP1
+Cre10.g460850			Chloroplast			
+Cre10.g442450			Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre10.g457700	GMM:4.1.16;GMM:31.6.1.6.3;GMM:30.3;GMM:30.1;GMM:29.4.1;GMM:29.4	glycolysis.cytosolic branch.phosphoenolpyruvate carboxykinase (PEPCK);cell.motility.eukaryotes.central pair.C1;signalling.calcium;signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g463300			Secretory pathway			
+Cre10.g441500						
+Cre10.g437800			Mitochondrion	GO:0006810;GO:0005215	transport;transporter activity	
+Cre10.g455950	GMM:31.6.1.10;GMM:11.8	"cell.motility.eukaryotes.flagellar associated proteins;lipid metabolism.exotics (steroids, squalene etc)"		GO:0016491	oxidoreductase activity	FAP407
+Cre10.g431400	GMM:27.1.19	RNA.processing.ribonucleases				TRZ1
+Cre10.g466900						
+Cre10.g434900	GMM:26.7	"misc.oxidases - copper, flavone etc"	Mitochondrion	GO:0055114;GO:0050660;GO:0016491;GO:0003824	oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity;catalytic activity	
+Cre10.g459650			Mitochondrion			
+Cre10.g433476						
+Cre10.g461250	GMM:29.5.9;GMM:29.5.11.20	protein.degradation.AAA type;protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	
+Cre10.g426550						
+Cre10.g418050						
+Cre10.g457262			Secretory pathway			
+Cre10.g461200						
+Cre10.g443300	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CNK5
+Cre10.g453000						
+Cre10.g454850			Mitochondrion	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre10.g448100			Secretory pathway	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	
+Cre10.g443750						
+Cre10.g419750	GMM:27.2	RNA.transcription		GO:0046983;GO:0006351;GO:0003899	"protein dimerization activity;transcription, DNA-templated;DNA-directed RNA polymerase activity"	RPB3
+Cre10.g420750	GMM:29.2.1.2.2.30	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L30		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL30
+Cre10.g457550	GMM:34.99	transport.misc				ATG18
+Cre10.g449600	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Mitochondrion			SPR1
+Cre10.g428550	GMM:25.3	C1-metabolism.dihydropteridine diphosphokinase	Mitochondrion	GO:0042558;GO:0009396;GO:0003848	pteridine-containing compound metabolic process;folic acid-containing compound biosynthetic process;2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity	
+Cre10.g462850			Secretory pathway	GO:0016021;GO:0015700;GO:0015105	integral component of membrane;arsenite transport;arsenite transmembrane transporter activity	
+Cre10.g437500	GMM:29.3.2	protein.targeting.mitochondria		GO:0030150;GO:0005742	protein import into mitochondrial matrix;mitochondrial outer membrane translocase complex	TOM7
+Cre10.g436050	GMM:21.6	redox.dismutases and catalases	Chloroplast	GO:0055114;GO:0046872;GO:0006801;GO:0004784	oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity	FSD1
+Cre10.g456900	GMM:29.5.3;GMM:23.3	protein.degradation.cysteine protease;nucleotide metabolism.salvage	Mitochondrion			
+Cre10.g430600			Chloroplast			
+Cre10.g458800			Secretory pathway			SRR31
+Cre10.g424300	GMM:31.1	cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	KIN16-1
+Cre10.g466250	GMM:29.2.2.3.4	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins		GO:0032040;GO:0006364;GO:0005515	small-subunit processome;rRNA processing;protein binding	PRP20
+Cre10.g430450	GMM:18.5.1;GMM:1.2	Co-factor and vitamine metabolism.folate and vitamine K.folate;PS.photorespiration	Chloroplast	GO:0016742;GO:0009058;GO:0008864;GO:0006189	"hydroxymethyl-, formyl- and related transferase activity;biosynthetic process;formyltetrahydrofolate deformylase activity;'de novo' IMP biosynthetic process"	
+Cre10.g450750			Secretory pathway			
+Cre10.g449800			Mitochondrion			
+Cre10.g436600	GMM:33.99	development.unspecified	Chloroplast	GO:0005525;GO:0003924	GTP binding;GTPase activity	
+Cre10.g418976						
+Cre10.g460350	GMM:3.3;GMM:26.5	minor CHO metabolism.sugar alcohols;misc.acyl transferases	Secretory pathway	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	PGA4
+Cre10.g446350	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	CGLD14
+Cre10.g460150	GMM:20.2.3	stress.abiotic.drought/salt		GO:0016020	membrane	ERM9
+Cre10.g435450	GMM:27.3.9	RNA.regulation of transcription.C2C2(Zn) GATA transcription factor family		GO:0043565;GO:0008270;GO:0006355;GO:0003700	"sequence-specific DNA binding;zinc ion binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	CPL2
+Cre10.g448500				GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre10.g440600						
+Cre10.g436900	GMM:29.3.2	protein.targeting.mitochondria				TAM41
+Cre10.g457228						
+Cre10.g456200	GMM:29.2.1.2.1.24	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S24		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS24
+Cre10.g451950	GMM:13.1.5.2.2;GMM:13.1.1.3.1;GMM:1.2.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.glycine transaminase;amino acid metabolism.synthesis.central amino acid metabolism.alanine.alanine aminotransferase;PS.photorespiration.aminotransferases peroxisomal	Mitochondrion	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	AAT1
+Cre10.g436350	GMM:13.1.6.1.5	amino acid metabolism.synthesis.aromatic aa.chorismate.shikimate kinase	Chloroplast			SHKF1
+Cre10.g424150	GMM:27.2	RNA.transcription		GO:0006367;GO:0005672	transcription initiation from RNA polymerase II promoter;transcription factor TFIIA complex	TF2A4
+Cre10.g464037						
+Cre10.g425300	GMM:13.1.3.1	amino acid metabolism.synthesis.aspartate family.asparagine	Secretory pathway	GO:0006529;GO:0004066	asparagine biosynthetic process;asparagine synthase (glutamine-hydrolyzing) activity	
+Cre10.g432650				GO:0016787;GO:0000290	hydrolase activity;deadenylation-dependent decapping of nuclear-transcribed mRNA	
+Cre10.g435750	GMM:30.2.7;GMM:30.2.25;GMM:30.2.13;GMM:29.4	signalling.receptor kinases.leucine rich repeat VII;signalling.receptor kinases.wall associated kinase;signalling.receptor kinases.leucine rich repeat XIII;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g433000	GMM:29.1.14;GMM:29.1	protein.aa activation.glycine-tRNA ligase;protein.aa activation	Chloroplast	GO:0006426;GO:0005737;GO:0005524;GO:0004820;GO:0000166	glycyl-tRNA aminoacylation;cytoplasm;ATP binding;glycine-tRNA ligase activity;nucleotide binding	TSG2
+Cre10.g453728			Mitochondrion			
+Cre10.g443550	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672;GO:0003824	protein phosphorylation;protein kinase activity;catalytic activity	
+Cre10.g437900						
+Cre10.g458216						
+Cre10.g419650			Chloroplast			
+Cre10.g420000						
+Cre10.g432100			Chloroplast			
+Cre10.g417741						
+Cre10.g466175			Mitochondrion			
+Cre10.g429000	GMM:29.5.11.3	protein.degradation.ubiquitin.E2	Chloroplast			
+Cre10.g460050	GMM:19.40;GMM:19.4	tetrapyrrole synthesis.regulation;tetrapyrrole synthesis.ALA dehydratase	Chloroplast			FLU
+Cre10.g454300	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre10.g422300	GMM:21.5	redox.peroxiredoxin	Chloroplast	GO:0016491	oxidoreductase activity	PRX6
+Cre10.g418550						
+Cre10.g445201						
+Cre10.g454200			Chloroplast			
+Cre10.g430850						
+Cre10.g437050			Mitochondrion	GO:0006461;GO:0005739	protein complex assembly;mitochondrion	ATP11
+Cre10.g434450	GMM:9.1.2;GMM:11.8	"mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;lipid metabolism.exotics (steroids, squalene etc)"	Mitochondrion			NUOA9
+Cre10.g419550			Secretory pathway	GO:0004112	cyclic-nucleotide phosphodiesterase activity	
+Cre10.g430000			Chloroplast			
+Cre10.g447100			Mitochondrion	GO:0005759	mitochondrial matrix	
+Cre10.g463355			Chloroplast			
+Cre10.g444317						
+Cre10.g437850	GMM:27.4;GMM:27.1.1	RNA.RNA binding;RNA.processing.splicing		GO:0045292;GO:0005846;GO:0003676;GO:0000339	"mRNA cis splicing, via spliceosome;nuclear cap binding complex;nucleic acid binding;RNA cap binding"	
+Cre10.g437201				GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre10.g444700	GMM:2.1.2.3	major CHO metabolism.synthesis.starch.starch branching	Chloroplast	GO:0043169;GO:0005975;GO:0004553;GO:0003824	"cation binding;carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds;catalytic activity"	SBE3
+Cre10.g452050	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA4
+Cre10.g429800	GMM:9.99;GMM:34.16;GMM:29.4.1	mitochondrial electron transport / ATP synthesis.unspecified;transport.ABC transporters and multidrug resistance systems;protein.postranslational modification.kinase				COQ8
+Cre10.g464500			Chloroplast	GO:0015035	protein disulfide oxidoreductase activity	PDO1
+Cre10.g433200	GMM:34.99	transport.misc		GO:0055085;GO:0016020;GO:0006810;GO:0005215	transmembrane transport;membrane;transport;transporter activity	XUV3
+Cre10.g439600	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others				
+Cre10.g426900			Chloroplast	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
+Cre10.g445467			Chloroplast			
+Cre10.g425100	GMM:29.4	protein.postranslational modification		GO:0005515	protein binding	
+Cre10.g435200						
+Cre10.g428300			Chloroplast			
+Cre10.g466700	GMM:17.6.1;GMM:16.4.1	hormone metabolism.gibberelin.synthesis-degradation;secondary metabolism.N misc.alkaloid-like		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	
+Cre10.g462400			Mitochondrion			
+Cre10.g446200			Secretory pathway			
+Cre10.g455150			Secretory pathway			
+Cre10.g438250						LAT2
+Cre10.g456700						EJC1
+Cre10.g424650			Mitochondrion			
+Cre10.g432450						
+Cre10.g450850				GO:0005515	protein binding	
+Cre10.g465350			Secretory pathway			
+Cre10.g437450						
+Cre10.g420550	GMM:29.5.5	protein.degradation.serine protease	Chloroplast	GO:0008236;GO:0006508;GO:0005515	serine-type peptidase activity;proteolysis;protein binding	TSP4
+Cre10.g435000						
+Cre10.g439650	GMM:3.5;GMM:29.3.4.2	minor CHO metabolism.others;protein.targeting.secretory pathway.golgi		GO:0017119	Golgi transport complex	COG8
+Cre10.g462450						
+Cre10.g452450	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast			TIC110
+Cre10.g450400	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion			NUO5
+Cre10.g423800	GMM:28.2	DNA.repair	Secretory pathway	GO:0016817;GO:0006303;GO:0003677	"hydrolase activity, acting on acid anhydrides;double-strand break repair via nonhomologous end joining;DNA binding"	
+Cre10.g423250	GMM:8.2.9;GMM:8.1.9;GMM:6.3	TCA / organic transformation.other organic acid transformations.cyt MDH;TCA / organic transformation.TCA.malate DH;gluconeogenesis / glyoxylate cycle.malate dehydrogenase		GO:0055114;GO:0019752;GO:0016616;GO:0016491	"oxidation-reduction process;carboxylic acid metabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;oxidoreductase activity"	MDN2
+Cre10.g422550						
+Cre10.g441600			Chloroplast			OPR48
+Cre10.g441900			Chloroplast			FAP145
+Cre10.g437350	GMM:34.9;GMM:34.8	transport.metabolite transporters at the mitochondrial membrane;transport.metabolite transporters at the envelope membrane	Mitochondrion			MCP12
+Cre10.g428678	GMM:30.1;GMM:3.1	signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family	Mitochondrion	GO:0050660;GO:0008033	flavin adenine dinucleotide binding;tRNA processing	GID1
+Cre10.g458100			Chloroplast			YEE1
+Cre10.g429250	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre10.g422876						
+Cre10.g464700			Chloroplast			
+Cre10.g421650	GMM:33.99	development.unspecified	Secretory pathway			
+Cre10.g456250			Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRX25
+Cre10.g422419			Mitochondrion			
+Cre10.g429880	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0003677	DNA binding	CGL156
+Cre10.g431200			Secretory pathway			
+Cre10.g452250			Mitochondrion			FAP41
+Cre10.g440050	GMM:27.3.99	RNA.regulation of transcription.unclassified	Chloroplast	GO:0050662;GO:0003824	coenzyme binding;catalytic activity	CSP41A
+Cre10.g448150						
+Cre10.g419300			Secretory pathway			
+Cre10.g463968			Secretory pathway			
+Cre10.g436053						
+Cre10.g417950	GMM:33.99;GMM:29.2.2.3.4	development.unspecified;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.WD-repeat proteins		GO:0006364;GO:0005515	rRNA processing;protein binding	
+Cre10.g467000	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B				IFT57
+Cre10.g425950	GMM:29.1.15	protein.aa activation.proline-tRNA ligase		GO:0002161	aminoacyl-tRNA editing activity	
+Cre10.g459850						
+Cre10.g455850	GMM:28.1	DNA.synthesis/chromatin structure		GO:0042555;GO:0006270;GO:0006260;GO:0005634;GO:0005524;GO:0003678;GO:0003677	MCM complex;DNA replication initiation;DNA replication;nucleus;ATP binding;DNA helicase activity;DNA binding	MCM7
+Cre10.g417576			Mitochondrion			
+Cre10.g441750						
+Cre10.g428433	GMM:28.2	DNA.repair		GO:0016799;GO:0008270;GO:0006289;GO:0006284;GO:0003906;GO:0003684	"hydrolase activity, hydrolyzing N-glycosyl compounds;zinc ion binding;nucleotide-excision repair;base-excision repair;DNA-(apurinic or apyrimidinic site) lyase activity;damaged DNA binding"	
+Cre10.g425750	GMM:34.99;GMM:29.5.2	transport.misc;protein.degradation.autophagy				
+Cre10.g434800			Chloroplast	GO:0005515	protein binding	
+Cre10.g460750			Chloroplast			
+Cre10.g465500						
+Cre10.g446600	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor	Chloroplast	GO:0015074;GO:0005515	DNA integration;protein binding	
+Cre10.g440150						
+Cre10.g442650	GMM:28.99	DNA.unspecified	Chloroplast	GO:0003676	nucleic acid binding	
+Cre10.g426450			Chloroplast			
+Cre10.g460300	GMM:4.1.12	glycolysis.cytosolic branch.phosphoglycerate mutase	Chloroplast			PGM2
+Cre10.g460650	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Secretory pathway	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN52
+Cre10.g429150	GMM:13.1.6.5.2	amino acid metabolism.synthesis.aromatic aa.tryptophan.anthranilate phosphoribosyltransferase	Secretory pathway	GO:0016757;GO:0008152	"transferase activity, transferring glycosyl groups;metabolic process"	PRT1
+Cre10.g463550	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre10.g447250			Mitochondrion			
+Cre10.g449901			Secretory pathway			
+Cre10.g457331	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				
+Cre10.g467100				GO:0042254;GO:0001522	ribosome biogenesis;pseudouridine synthesis	
+Cre10.g461450						
+Cre10.g445800			Chloroplast			
+Cre10.g466150			Secretory pathway	GO:0005515	protein binding	
+Cre10.g430750	GMM:27.3.26	RNA.regulation of transcription.MYB-related transcription factor family				
+Cre10.g420850			Secretory pathway			
+Cre10.g456400			Mitochondrion	GO:0017153;GO:0016020;GO:0006835	sodium:dicarboxylate symporter activity;membrane;dicarboxylic acid transport	DAT1
+Cre10.g459151			Secretory pathway			
+Cre10.g431500						
+Cre10.g447225						
+Cre10.g449400			Secretory pathway			
+Cre10.g438500	GMM:33.99	development.unspecified				FAP264
+Cre10.g454734	GMM:1.1.2.1;GMM:1.1.1.1	PS.lightreaction.photosystem I.LHC-I;PS.lightreaction.photosystem II.LHC-II	Chloroplast			LHCP2
+Cre10.g421050						
+Cre10.g433850	GMM:27.3.99	RNA.regulation of transcription.unclassified				
+Cre10.g447900						
+Cre10.g433950	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			CURTL2
+Cre10.g448950			Chloroplast			
+Cre10.g457150						
+Cre10.g448400			Mitochondrion			
+Cre10.g453600	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase		GO:0006629	lipid metabolic process	
+Cre10.g428950			Secretory pathway			
+Cre10.g451500				GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR28A
+Cre10.g459750						NUOA1
+Cre10.g440750	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure		GO:0006265;GO:0005524;GO:0003918;GO:0003677	DNA topological change;ATP binding;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA binding	TOP3
+Cre10.g440500						
+Cre10.g462050	GMM:30.2.8.2;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 2;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK20
+Cre10.g418300						
+Cre10.g418900	GMM:30.3;GMM:3.3;GMM:29.4.1;GMM:29.4	signalling.calcium;minor CHO metabolism.sugar alcohols;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre10.g427650						
+Cre10.g418200			Secretory pathway			
+Cre10.g426152	GMM:13.2.3.4.1	amino acid metabolism.degradation.aspartate family.methionine.methionine gamma-lyase		GO:0030170	pyridoxal phosphate binding	MGL1
+Cre10.g423400	GMM:27.3.12;GMM:12.4	RNA.regulation of transcription.C3H zinc finger family;N-metabolism.misc	Chloroplast	GO:0055114;GO:0050660;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing	
+Cre10.g461550			Mitochondrion			
+Cre04.g224450	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre04.g212100	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre04.g228700			Mitochondrion			
+Cre04.g229800						
+Cre04.g225200	GMM:33.99	development.unspecified	Mitochondrion			FAP311
+Cre04.g220387			Secretory pathway	GO:0055114;GO:0020037;GO:0016705;GO:0005506	"oxidation-reduction process;heme binding;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen;iron ion binding"	CYP770A1
+Cre04.g231418			Chloroplast			
+Cre04.g213652	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway	GO:0003964	RNA-directed DNA polymerase activity	
+Cre04.g214433			Mitochondrion			
+Cre04.g213250	GMM:29.5	protein.degradation		GO:0006508	proteolysis	
+Cre04.g213152			Chloroplast			
+Cre04.g220750			Mitochondrion			
+Cre04.g218300	GMM:29.2.2.3.5	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases	Mitochondrion	GO:0005634	nucleus	
+Cre04.g223375						
+Cre04.g217975			Secretory pathway			
+Cre04.g226001			Mitochondrion			
+Cre04.g224947						
+Cre04.g223550			Chloroplast			
+Cre04.g214504			Mitochondrion	GO:0016020;GO:0005044	membrane;scavenger receptor activity	
+Cre04.g219851			Mitochondrion			
+Cre04.g217932	GMM:29.2.1.1.4.2	protein.synthesis.ribosomal protein.prokaryotic.non-organellar.50S subunit	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL35
+Cre04.g226350	GMM:3.3	minor CHO metabolism.sugar alcohols	Chloroplast			CSB23
+Cre04.g217953	GMM:27.4	RNA.RNA binding	Mitochondrion	GO:0003676	nucleic acid binding	
+Cre04.g226500			Mitochondrion			
+Cre04.g223050	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Secretory pathway			CAH2
+Cre04.g227500			Mitochondrion	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR18
+Cre04.g232602	GMM:21.4;GMM:21.1	redox.glutaredoxins;redox.thioredoxin		GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	GRX4
+Cre04.g222100	GMM:28.1.3	DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0006366	transcription from RNA polymerase II promoter	
+Cre04.g219000	GMM:31.1;GMM:28.1	cell.organisation;DNA.synthesis/chromatin structure	Secretory pathway	GO:0005524	ATP binding	
+Cre04.g224750	GMM:31.4	cell.vesicle transport	Mitochondrion	GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	VAM1
+Cre04.g215800						
+Cre04.g217986						
+Cre04.g227450	GMM:34.8	transport.metabolite transporters at the envelope membrane				
+Cre04.g220600			Mitochondrion			
+Cre04.g212801						
+Cre04.g224800	GMM:31.4	cell.vesicle transport		GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	VAM4
+Cre04.g226811			Mitochondrion			
+Cre04.g225500			Chloroplast			
+Cre04.g217960						
+Cre04.g217903	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0004519;GO:0003676	endonuclease activity;nucleic acid binding	
+Cre04.g217925	GMM:26.16	misc.myrosinases-lectin-jacalin				
+Cre04.g217100						
+Cre04.g215400	GMM:35.1.1;GMM:34.16	not assigned.no ontology.ABC1 family protein;transport.ABC transporters and multidrug resistance systems	Chloroplast			AKC3
+Cre04.g222200						
+Cre04.g223700						
+Cre04.g228208	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre04.g211900	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG37
+Cre04.g229163						
+Cre04.g233003			Mitochondrion			
+Cre04.g226650			Secretory pathway			
+Cre04.g214351			Chloroplast			
+Cre04.g233302				GO:0008716;GO:0005737;GO:0005515	D-alanine-D-alanine ligase activity;cytoplasm;protein binding	
+Cre04.g215702			Mitochondrion			
+Cre04.g217943			Chloroplast	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre04.g211800	GMM:29.2.1.2.2.23	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L23		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL23
+Cre04.g228900	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	protein binding	
+Cre04.g217910	GMM:26.23	misc.rhodanese	Chloroplast			
+Cre04.g229472						CSB25
+Cre04.g218700	GMM:29.2.3	protein.synthesis.initiation	Chloroplast	GO:0006413;GO:0003743;GO:0003723	translational initiation;translation initiation factor activity;RNA binding	INFA
+Cre04.g217987			Mitochondrion			
+Cre04.g219600	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre04.g212401	GMM:29.5.11.3;GMM:29.5.11	protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin	Mitochondrion			
+Cre04.g216650			Chloroplast			
+Cre04.g229750			Chloroplast			
+Cre04.g229536			Secretory pathway			
+Cre04.g221550			Chloroplast			
+Cre04.g229776			Mitochondrion			
+Cre04.g216600	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0005524	ATP binding	RPT6
+Cre04.g221100			Chloroplast			
+Cre04.g228100						
+Cre04.g220350	GMM:34.1	transport.p- and v-ATPases		GO:0033179;GO:0015991;GO:0015078	"proton-transporting V-type ATPase, V0 domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVA3
+Cre04.g218250	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified				FAP313
+Cre04.g231320						
+Cre04.g213985						
+Cre04.g229398						
+Cre04.g218500			Secretory pathway			
+Cre04.g227800			Secretory pathway			
+Cre04.g217931	GMM:26.7	"misc.oxidases - copper, flavone etc"	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PFH14
+Cre04.g225450			Chloroplast			FDX10
+Cre04.g224500	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre04.g224700	GMM:34.3;GMM:34.13	transport.amino acids;transport.peptides and oligopeptides		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NRT1.1
+Cre04.g227350	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0006355;GO:0005634	"regulation of transcription, DNA-templated;nucleus"	CCR4
+Cre04.g224867			Mitochondrion			
+Cre04.g218750				GO:0019825	oxygen binding	THB4
+Cre04.g226700			Secretory pathway			
+Cre04.g218950						
+Cre04.g214503	GMM:29.2.1.2.1.12	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S12		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	
+Cre04.g218350						
+Cre04.g222150			Mitochondrion			
+Cre04.g219800	GMM:16.1	secondary metabolism.isoprenoids	Mitochondrion			
+Cre04.g219576						
+Cre04.g213150	GMM:34.99;GMM:15.1	transport.misc;metal handling.acquisition	Secretory pathway	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
+Cre04.g226450	GMM:27.1	RNA.processing		GO:0005515	protein binding	PRP17
+Cre04.g212800						
+Cre04.g226926						
+Cre04.g215750	GMM:31.2	cell.division		GO:0005515	protein binding	
+Cre04.g214750	GMM:31.4	cell.vesicle transport		GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	VMP7
+Cre04.g219925						
+Cre04.g217979			Chloroplast			
+Cre04.g217904			Mitochondrion			
+Cre04.g214550			Secretory pathway			
+Cre04.g214150	GMM:18.2	Co-factor and vitamine metabolism.thiamine	Chloroplast			THI4
+Cre04.g217989						
+Cre04.g215350	GMM:33.99	development.unspecified		GO:0005515	protein binding	
+Cre04.g223750				GO:0005515;GO:0003677	protein binding;DNA binding	
+Cre04.g221301	GMM:31.3	cell.cycle				CYCD5
+Cre04.g219950	GMM:29.4.1.59	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX	Mitochondrion			
+Cre04.g212700	GMM:33.99;GMM:27.3.28	development.unspecified;RNA.regulation of transcription.squamosa promoter binding protein family (SBP)	Chloroplast	GO:0005634;GO:0003677	nucleus;DNA binding	
+Cre04.g225650			Secretory pathway	GO:0004869	cysteine-type endopeptidase inhibitor activity	
+Cre04.g224826						
+Cre04.g225950	GMM:27.3.42	RNA.regulation of transcription.bromodomain proteins	Chloroplast	GO:0005515	protein binding	
+Cre04.g215700	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins				
+Cre04.g221250			Chloroplast			
+Cre04.g222550						
+Cre04.g217050						
+Cre04.g218000			Mitochondrion			
+Cre04.g232202			Secretory pathway			
+Cre04.g217909			Chloroplast			
+Cre04.g220550						
+Cre04.g229494				GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre04.g228250	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB24
+Cre04.g211650			Chloroplast			
+Cre04.g217917						
+Cre04.g230242						MOT40
+Cre04.g222500						
+Cre04.g217974	GMM:20.2.3	stress.abiotic.drought/salt	Mitochondrion			
+Cre04.g222450						
+Cre04.g217929	GMM:14.5;GMM:12.1.1	S-assimilation.sulfite oxidase;N-metabolism.nitrate metabolism.NR	Mitochondrion	GO:0055114;GO:0042128;GO:0030151;GO:0016491	oxidation-reduction process;nitrate assimilation;molybdenum ion binding;oxidoreductase activity	
+Cre04.g229700	GMM:4.1.1	glycolysis.cytosolic branch.UGPase		GO:0070569;GO:0008152	uridylyltransferase activity;metabolic process	UGP1
+Cre04.g230536	GMM:29.4	protein.postranslational modification		GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR25
+Cre04.g225100						
+Cre04.g229374			Secretory pathway			
+Cre04.g218450	GMM:17.1.2	hormone metabolism.abscisic acid.signal transduction				
+Cre04.g223150			Mitochondrion			NCL1
+Cre04.g220787			Chloroplast			
+Cre04.g228050			Secretory pathway			
+Cre04.g231222	GMM:29.6.2.2;GMM:1.3.13	protein.folding.chaperones and co-chaperones.HSP60s;PS.calvin cycle.rubisco interacting	Chloroplast.Stroma;Chloroplast	GO:0016020;GO:0005524;GO:0005044	membrane;ATP binding;scavenger receptor activity	CPN60A
+Cre04.g225750			Chloroplast	GO:0016791;GO:0009117;GO:0000287	phosphatase activity;nucleotide metabolic process;magnesium ion binding	
+Cre04.g229948	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family		GO:0055114;GO:0050660;GO:0046872;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;metal ion binding;tRNA dihydrouridine synthase activity;tRNA processing	
+Cre04.g224883			Mitochondrion			
+Cre04.g212850						
+Cre04.g224550			Secretory pathway			
+Cre04.g229250						
+Cre04.g230634	GMM:29.4	protein.postranslational modification	Secretory pathway			
+Cre04.g217937	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Chloroplast			
+Cre04.g232402			Secretory pathway			
+Cre04.g217965			Secretory pathway			
+Cre04.g213400	GMM:29.5.1	protein.degradation.subtilases	Secretory pathway	GO:0006508;GO:0004252	proteolysis;serine-type endopeptidase activity	SUB7
+Cre04.g216000						
+Cre04.g214500	GMM:8.1.4	TCA / organic transformation.TCA.IDH	Mitochondrion	GO:0055114;GO:0016616;GO:0006102;GO:0004450	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;isocitrate metabolic process;isocitrate dehydrogenase (NADP+) activity"	IDH3
+Cre04.g223300	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				CCP1
+Cre04.g211600	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification				SNF1
+Cre04.g228450	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Chloroplast			CPL10
+Cre04.g216050	GMM:30.2.7;GMM:30.2.11;GMM:30.2.10	signalling.receptor kinases.leucine rich repeat VII;signalling.receptor kinases.leucine rich repeat XI;signalling.receptor kinases.leucine rich repeat X	Secretory pathway	GO:0005515	protein binding	
+Cre04.g225700			Chloroplast			
+Cre04.g217907						
+Cre04.g220461						
+Cre04.g213050						
+Cre04.g227550						
+Cre04.g222650	GMM:31.6.1.11	cell.motility.eukaryotes.other				
+Cre04.g227750			Mitochondrion	GO:0006281;GO:0000077;GO:0000014	DNA repair;DNA damage checkpoint;single-stranded DNA endodeoxyribonuclease activity	
+Cre04.g219700				GO:0034464	BBSome	BBS9
+Cre04.g229350				GO:0032259;GO:0008168	methylation;methyltransferase activity	
+Cre04.g217400			Mitochondrion			
+Cre04.g219796						
+Cre04.g227200			Secretory pathway			
+Cre04.g224150	GMM:11.5.1	lipid metabolism.glycerol metabolism.glycerol kinase		GO:0016773;GO:0005975	"phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process"	
+Cre04.g216902	GMM:33.99;GMM:30.5	development.unspecified;signalling.G-proteins		GO:0005515	protein binding	DAW1
+Cre04.g221700	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Mitochondrion	GO:0019646;GO:0016020;GO:0015002	aerobic electron transport chain;membrane;heme-copper terminal oxidase activity	COX3
+Cre04.g228750			Chloroplast			
+Cre04.g217951						LCI33
+Cre04.g217952	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Chloroplast			
+Cre04.g223250	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Mitochondrion			LCIE
+Cre04.g218900	GMM:31.1;GMM:28.1	cell.organisation;DNA.synthesis/chromatin structure		GO:0005524	ATP binding	
+Cre04.g217921	GMM:31.4	cell.vesicle transport		GO:0030126;GO:0016192;GO:0006886;GO:0005737;GO:0005198	COPI vesicle coat;vesicle-mediated transport;intracellular protein transport;cytoplasm;structural molecule activity	COPB1
+Cre04.g217946			Chloroplast	GO:0016787	hydrolase activity	
+Cre04.g220100						
+Cre04.g216700			Secretory pathway			PHO5
+Cre04.g217981			Chloroplast			
+Cre04.g214200						
+Cre04.g216203						FAP339
+Cre04.g213873						
+Cre04.g217912	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Secretory pathway	GO:0016811	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides"	
+Cre04.g217967				GO:0046983	protein dimerization activity	
+Cre04.g231908						
+Cre04.g212150	GMM:27.1	RNA.processing				
+Cre04.g213750			Mitochondrion			
+Cre04.g214800				GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	VMP6
+Cre04.g217961						
+Cre04.g217000						
+Cre04.g219150	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway			
+Cre04.g218200	GMM:29.4	protein.postranslational modification				
+Cre04.g225350			Mitochondrion	GO:0005515	protein binding	
+Cre04.g217750	GMM:33.99;GMM:27.3.67	development.unspecified;RNA.regulation of transcription.putative transcription regulator	Mitochondrion	GO:0005515	protein binding	
+Cre04.g219250	GMM:31.6.1.3.2.2	cell.motility.eukaryotes.intraflagellar transport.IFT particle protein.complex B				IFT52
+Cre04.g225050	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast			
+Cre04.g217988						
+Cre04.g226138						
+Cre04.g215250						FAP26
+Cre04.g221750						
+Cre04.g215100			Chloroplast			
+Cre04.g221950			Secretory pathway			
+Cre04.g223500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre04.g219650			Secretory pathway			
+Cre04.g223000						HLM9
+Cre04.g217968			Mitochondrion			
+Cre04.g217200						
+Cre04.g224200						
+Cre04.g217949						AXL6
+Cre04.g217918			Chloroplast			
+Cre04.g220424			Secretory pathway			
+Cre04.g220500						
+Cre04.g217984			Mitochondrion			
+Cre04.g218600						
+Cre04.g217300						
+Cre04.g230732	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0008146	sulfotransferase activity	CSR2
+Cre04.g216976						
+Cre04.g226301						
+Cre04.g216200				GO:0046983	protein dimerization activity	
+Cre04.g213900			Chloroplast			
+Cre04.g218400	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre04.g213100			Chloroplast			CGLD7
+Cre04.g225600			Chloroplast	GO:0005759	mitochondrial matrix	CGL104
+Cre04.g229226						
+Cre04.g212900						
+Cre04.g217450				GO:0043666;GO:0009966;GO:0004864	regulation of phosphoprotein phosphatase activity;regulation of signal transduction;protein phosphatase inhibitor activity	
+Cre04.g229518						
+Cre04.g226550	GMM:14.1	S-assimilation.APS		GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS11
+Cre04.g217959	GMM:13.1.5.1.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoserine phosphatase		GO:0006564;GO:0004647	L-serine biosynthetic process;phosphoserine phosphatase activity	PSP1
+Cre04.g221650	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0006265;GO:0005694;GO:0005524;GO:0003918;GO:0003916;GO:0003677	DNA topological change;chromosome;ATP binding;DNA topoisomerase type II (ATP-hydrolyzing) activity;DNA topoisomerase activity;DNA binding	TOP4
+Cre04.g228500						
+Cre04.g213450	GMM:27.3.71	RNA.regulation of transcription.SNF7		GO:0007034	vacuolar transport	VPS2A
+Cre04.g222600			Mitochondrion			PHC46
+Cre04.g226600	GMM:14.1	S-assimilation.APS	Chloroplast	GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS12
+Cre04.g221400						
+Cre04.g223800				GO:0008124;GO:0006729	4-alpha-hydroxytetrahydrobiopterin dehydratase activity;tetrahydrobiopterin biosynthetic process	
+Cre04.g225400	GMM:3.3	minor CHO metabolism.sugar alcohols	Chloroplast			
+Cre04.g228150	GMM:16.7;GMM:16.1;GMM:11.1.11;GMM:11.1.10	secondary metabolism.wax;secondary metabolism.isoprenoids;lipid metabolism.FA synthesis and FA elongation.fatty acid elongase;lipid metabolism.FA synthesis and FA elongation.beta ketoacyl CoA synthase		GO:0016747;GO:0016020;GO:0008610;GO:0006633	"transferase activity, transferring acyl groups other than amino-acyl groups;membrane;lipid biosynthetic process;fatty acid biosynthetic process"	FAE1
+Cre04.g211599			Secretory pathway			
+Cre04.g228000				GO:0005096	GTPase activator activity	
+Cre04.g229050						
+Cre04.g213002						
+Cre04.g212200	GMM:27.1	RNA.processing				
+Cre04.g217650			Secretory pathway			
+Cre04.g214000			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	
+Cre04.g226900						
+Cre04.g225301			Chloroplast			
+Cre04.g214505						
+Cre04.g211700	GMM:31.1	cell.organisation	Mitochondrion	GO:0005515	protein binding	
+Cre04.g215200			Secretory pathway			
+Cre04.g217966						
+Cre04.g229100				GO:0035299;GO:0005524	inositol pentakisphosphate 2-kinase activity;ATP binding	
+Cre04.g220700	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0007049;GO:0006468;GO:0005524;GO:0004672	cell cycle;protein phosphorylation;ATP binding;protein kinase activity	ALK2
+Cre04.g217980						
+Cre04.g232006						
+Cre04.g224899						
+Cre04.g226114			Mitochondrion			
+Cre04.g217908	GMM:31.1;GMM:29.4.1	cell.organisation;protein.postranslational modification.kinase				FAP79
+Cre04.g233102						
+Cre04.g213800	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0046872	metal ion binding	
+Cre04.g217962						LCI12
+Cre04.g217800	GMM:33.99	development.unspecified	Mitochondrion			
+Cre04.g217922	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre04.g214801			Chloroplast			
+Cre04.g221900				GO:0005515	protein binding	
+Cre04.g232902						
+Cre04.g213904	GMM:29.4;GMM:27.3.99	protein.postranslational modification;RNA.regulation of transcription.unclassified		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre04.g218650	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Mitochondrion			UCP3
+Cre04.g217150						
+Cre04.g217911	GMM:27.1	RNA.processing				
+Cre04.g231810	GMM:3.5	minor CHO metabolism.others				
+Cre04.g215650				GO:0030915;GO:0006281;GO:0005634	Smc5-Smc6 complex;DNA repair;nucleus	
+Cre04.g226126			Mitochondrion			
+Cre04.g218150	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre04.g227700			Secretory pathway			
+Cre04.g219787	GMM:28.1;GMM:18.5.2.7	DNA.synthesis/chromatin structure;Co-factor and vitamine metabolism.folate and vitamine K.vitamine K.DHNA phytyltransferase	Mitochondrion	GO:0016021;GO:0004659	integral component of membrane;prenyltransferase activity	
+Cre04.g214209						
+Cre04.g217969						
+Cre04.g224667						
+Cre04.g217915	GMM:34.4;GMM:1.5.3	transport.nitrate;PS.carbon concentrating mechanism.algal	Mitochondrion	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NAR1.3
+Cre04.g230830			Secretory pathway	GO:0005515	protein binding	
+Cre04.g225800						CPLD71
+Cre04.g220050				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre04.g211950						ELG32
+Cre04.g212000			Chloroplast			
+Cre04.g217500						URN3
+Cre04.g223540			Chloroplast			CSB22
+Cre04.g217920			Secretory pathway			
+Cre04.g222850						
+Cre04.g226200	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre04.g233202			Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre04.g224250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP147
+Cre04.g215952			Chloroplast			
+Cre04.g222300	GMM:27.1	RNA.processing		GO:0006396;GO:0003723	RNA processing;RNA binding	
+Cre04.g212300	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006470;GO:0005515;GO:0004722;GO:0004721;GO:0003824	protein dephosphorylation;protein binding;protein serine/threonine phosphatase activity;phosphoprotein phosphatase activity;catalytic activity	
+Cre04.g219200						CPL19
+Cre04.g231026	GMM:29.3.3;GMM:28.1	protein.targeting.chloroplast;DNA.synthesis/chromatin structure	Chloroplast	GO:0080085;GO:0045038;GO:0009507;GO:0009416	"signal recognition particle, chloroplast targeting;protein import into chloroplast thylakoid membrane;chloroplast;response to light stimulus"	SRP43
+Cre04.g217240			Mitochondrion			
+Cre04.g229000				GO:0035299;GO:0005524	inositol pentakisphosphate 2-kinase activity;ATP binding	IPK1
+Cre04.g216250						FAP276
+Cre04.g212250			Secretory pathway			
+Cre04.g217957						
+Cre04.g220850	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre04.g226226						
+Cre04.g223200	GMM:31.3;GMM:31.2	cell.cycle;cell.division		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre04.g216102			Mitochondrion			
+Cre04.g227950						
+Cre04.g217971						
+Cre04.g228350	GMM:13.2.4.1	amino acid metabolism.degradation.branched chain group.shared	Mitochondrion	GO:0016746;GO:0008152	"transferase activity, transferring acyl groups;metabolic process"	DLA4
+Cre04.g214600			Secretory pathway			
+Cre04.g212500			Chloroplast			CGL42
+Cre04.g217939	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase				FAD5C
+Cre04.g219350	GMM:29.9	protein.co-chaperones	Chloroplast			
+Cre04.g221350						
+Cre04.g224915						
+Cre04.g217700				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre04.g224683				GO:0016459;GO:0005524;GO:0003774	myosin complex;ATP binding;motor activity	
+Cre04.g212550			Chloroplast	GO:0006464	cellular protein modification process	TTL7
+Cre04.g215150	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase	Chloroplast			SSS1
+Cre04.g222750	GMM:34.9;GMM:1.5.3	transport.metabolite transporters at the mitochondrial membrane;PS.carbon concentrating mechanism.algal				CCP2
+Cre04.g230928	GMM:21.1.2;GMM:21.1	redox.thioredoxin.QSOX;redox.thioredoxin		GO:0055114;GO:0045454;GO:0016972	oxidation-reduction process;cell redox homeostasis;thiol oxidase activity	
+Cre04.g214900			Mitochondrion			
+Cre04.g220200	GMM:34.15	transport.potassium	Chloroplast	GO:0055085;GO:0016021;GO:0015299;GO:0006813;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;potassium ion transport;cation transport	
+Cre04.g230144	GMM:11.8.1.2	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids.serine C-palmitoyltransferase"	Secretory pathway	GO:0030170;GO:0009058	pyridoxal phosphate binding;biosynthetic process	SPT1
+Cre04.g216774			Chloroplast			
+Cre04.g220576			Mitochondrion			
+Cre04.g217948			Mitochondrion;Chloroplast			
+Cre04.g214612			Chloroplast			
+Cre04.g227650			Secretory pathway			
+Cre04.g217958						
+Cre04.g227000	GMM:28.2	DNA.repair		GO:0032300;GO:0030983;GO:0006298;GO:0005524	mismatch repair complex;mismatched DNA binding;mismatch repair;ATP binding	MLH2
+Cre04.g227251	GMM:31.6.1.11	cell.motility.eukaryotes.other				
+Cre04.g228550			Mitochondrion			
+Cre04.g231124	GMM:27.4	RNA.RNA binding		GO:0046872;GO:0005515	metal ion binding;protein binding	
+Cre04.g214097	GMM:33.99	development.unspecified	Secretory pathway			
+Cre04.g220800						
+Cre04.g215050	GMM:16.1.4.6;GMM:16.1.4	secondary metabolism.isoprenoids.carotenoids.carotenoid beta ring hydroxylase;secondary metabolism.isoprenoids.carotenoids	Chloroplast	GO:0055114;GO:0016491;GO:0006633;GO:0005506	oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding	CHYB
+Cre04.g216875						
+Cre04.g213905	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre04.g217916	GMM:34.15	transport.potassium				
+Cre04.g217905			Mitochondrion			
+Cre04.g224931						
+Cre04.g220900			Secretory pathway			
+Cre04.g223850	GMM:28.1	DNA.synthesis/chromatin structure		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL23
+Cre04.g218100	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP25
+Cre04.g223100	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Secretory pathway			CAH1
+Cre04.g215600	GMM:13.1.3.4.13	amino acid metabolism.synthesis.aspartate family.methionine.methionine S-methyltransferase		GO:0008757	S-adenosylmethionine-dependent methyltransferase activity	
+Cre04.g229850						
+Cre04.g217850	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre04.g227526			Mitochondrion			
+Cre04.g224850						
+Cre04.g224300						CGL84
+Cre04.g215950	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN57
+Cre04.g232303						
+Cre04.g228950						
+Cre04.g214690	GMM:3.6	minor CHO metabolism.callose		GO:0006396;GO:0004526;GO:0001682	RNA processing;ribonuclease P activity;tRNA 5'-leader removal	
+Cre04.g216300			Chloroplast			
+Cre04.g217935	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				
+Cre04.g217919			Mitochondrion			
+Cre04.g213950				GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR23
+Cre04.g217906						
+Cre04.g217550	GMM:29.2.3	protein.synthesis.initiation		GO:0031369;GO:0006413;GO:0005852;GO:0005515;GO:0003743	translation initiation factor binding;translational initiation;eukaryotic translation initiation factor 3 complex;protein binding;translation initiation factor activity	EIF3C
+Cre04.g220768			Mitochondrion			
+Cre04.g221500			Mitochondrion			
+Cre04.g212350			Chloroplast			
+Cre04.g221850			Chloroplast			
+Cre04.g213000	GMM:34.99;GMM:15.1	transport.misc;metal handling.acquisition	Mitochondrion;Secretory pathway	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
+Cre04.g217923	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre04.g223600						
+Cre04.g228400	GMM:27.3.32	RNA.regulation of transcription.WRKY domain transcription factor family	Mitochondrion	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	WRK1
+Cre04.g217990						
+Cre04.g212450						
+Cre04.g225776						
+Cre04.g215550						
+Cre04.g229026			Mitochondrion			
+Cre04.g216950	GMM:11.1.3	lipid metabolism.FA synthesis and FA elongation.ketoacyl ACP synthase	Chloroplast	GO:0016747;GO:0008610;GO:0008152	"transferase activity, transferring acyl groups other than amino-acyl groups;lipid biosynthetic process;metabolic process"	
+Cre04.g217913	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane	Secretory pathway			MCP19
+Cre04.g216100	GMM:24.2;GMM:13.2.3.2	biodegradation of xenobiotics.lactoylglutathione lyase;amino acid metabolism.degradation.aspartate family.threonine	Chloroplast			
+Cre04.g226800						
+Cre04.g220150			Mitochondrion			
+Cre04.g217945	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase	Chloroplast	GO:0006629	lipid metabolic process	
+Cre04.g229550			Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR15
+Cre04.g228600			Mitochondrion			
+Cre04.g217220			Mitochondrion			
+Cre04.g217942						
+Cre04.g227301						
+Cre04.g214545	GMM:34.15	transport.potassium	Chloroplast			
+Cre04.g221000				GO:0016787;GO:0008152	hydrolase activity;metabolic process	
+Cre04.g214502	GMM:10.1.2	cell wall.precursor synthesis.UGE		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	UGE
+Cre04.g217938			Chloroplast	GO:0005515	protein binding	
+Cre04.g217940	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre04.g222250			Mitochondrion			
+Cre04.g225176			Mitochondrion			
+Cre04.g226950						
+Cre04.g227600	GMM:30.2.8.2;GMM:30.2.11;GMM:17.3.2.1	signalling.receptor kinases.leucine rich repeat VIII.type 2;signalling.receptor kinases.leucine rich repeat XI;hormone metabolism.brassinosteroid.signal transduction.BRI	Chloroplast	GO:0005515	protein binding	
+Cre04.g213650	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre04.g226150	GMM:34.3	transport.amino acids		GO:0055085;GO:0016020;GO:0015171;GO:0006810;GO:0003333	transmembrane transport;membrane;amino acid transmembrane transporter activity;transport;amino acid transmembrane transport	AOC1
+Cre04.g224650	GMM:29.3.1	protein.targeting.nucleus		GO:0005515	protein binding	FAP296
+Cre04.g218550						
+Cre04.g217928	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre04.g227050			Secretory pathway			
+Cre04.g231712	GMM:1.5	PS.carbon concentrating mechanism	Chloroplast			
+Cre04.g217976						
+Cre04.g223876	GMM:29.2.3	protein.synthesis.initiation				
+Cre04.g214850						
+Cre04.g217350	GMM:34.15	transport.potassium		GO:0071805;GO:0016020;GO:0015079	potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity	KUP4
+Cre04.g218050	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator				RWP8
+Cre04.g222000	GMM:33.99	development.unspecified	Chloroplast	GO:0005515	protein binding	
+Cre04.g211850	GMM:1.1.99	PS.lightreaction.unspecified	Chloroplast			ELIP5
+Cre04.g227900	GMM:31.6.1.6.6	cell.motility.eukaryotes.central pair.C1-C2 bridge		GO:0005515	protein binding	PF20
+Cre04.g217991			Secretory pathway	GO:0005515	protein binding	
+Cre04.g213300			Secretory pathway			
+Cre04.g219300						
+Cre04.g232702			Mitochondrion			
+Cre04.g216840						
+Cre04.g216737						
+Cre04.g220300				GO:0005515	protein binding	
+Cre04.g213350			Mitochondrion			
+Cre04.g215850	GMM:29.3.1	protein.targeting.nucleus		GO:0008565;GO:0006606;GO:0005737;GO:0005634;GO:0005515	protein transporter activity;protein import into nucleus;cytoplasm;nucleus;protein binding	IPA1
+Cre04.g224600				GO:0046983	protein dimerization activity	
+Cre04.g219750	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure		GO:0043140;GO:0006281;GO:0006260;GO:0005524;GO:0003676	ATP-dependent 3'-5' DNA helicase activity;DNA repair;DNA replication;ATP binding;nucleic acid binding	HEL22
+Cre04.g226250						
+Cre04.g216550						
+Cre04.g224350			Secretory pathway			MOT55
+Cre04.g232802	GMM:29.4;GMM:17.1.3;GMM:17.1.2	protein.postranslational modification;hormone metabolism.abscisic acid.induced-regulated-responsive-activated;hormone metabolism.abscisic acid.signal transduction		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre04.g225150			Secretory pathway			
+Cre04.g228650	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	
+Cre04.g218800			Mitochondrion	GO:0019825	oxygen binding	THB3
+Cre04.g215000	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase		GO:0006629	lipid metabolic process	BKT1
+Cre04.g219100			Secretory pathway			
+Cre04.g230340						FAP206
+Cre04.g221800			Mitochondrion			
+Cre04.g220825			Mitochondrion			
+Cre04.g218526			Secretory pathway			
+Cre04.g218850	GMM:29.2.2.50	protein.synthesis.ribosome biogenesis.BRIX				
+Cre04.g212400						UBC15
+Cre04.g221150			Secretory pathway			
+Cre04.g220633			Mitochondrion			
+Cre04.g216350	GMM:3.5	minor CHO metabolism.others				CPLD3
+Cre04.g217924	GMM:11.2.1	lipid metabolism.FA desaturation.desaturase	Chloroplast			
+Cre04.g225900	GMM:31.4	cell.vesicle transport		GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	VAMP72
+Cre04.g214100	GMM:19.32	tetrapyrrole synthesis.sirohydrochlorin ferrochelatase	Chloroplast	GO:0016852;GO:0009236	sirohydrochlorin cobaltochelatase activity;cobalamin biosynthetic process	SIRB
+Cre04.g214657	GMM:34.15	transport.potassium	Mitochondrion	GO:0071805;GO:0016020;GO:0015079	potassium ion transmembrane transport;membrane;potassium ion transmembrane transporter activity	
+Cre04.g222950						SUR2
+Cre04.g228925			Mitochondrion			
+Cre04.g228625	GMM:27.3.41	RNA.regulation of transcription.B3 transcription factor family	Secretory pathway			
+Cre04.g217978						
+Cre04.g217934				GO:0009116	nucleoside metabolic process	
+Cre04.g217950	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre04.g217941	GMM:29.4	protein.postranslational modification				
+Cre04.g228800	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre04.g212650				GO:0003924	GTPase activity	
+Cre04.g222402						
+Cre04.g219550						
+Cre04.g214501	GMM:27.1	RNA.processing	Chloroplast	GO:0006402;GO:0004654;GO:0003723	mRNA catabolic process;polyribonucleotide nucleotidyltransferase activity;RNA binding	PNP1
+Cre04.g214350	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast	GO:0008408;GO:0006260;GO:0003887;GO:0003677;GO:0001882;GO:0000166	3'-5' exonuclease activity;DNA replication;DNA-directed DNA polymerase activity;DNA binding;nucleoside binding;nucleotide binding	POLA1
+Cre04.g215500						
+Cre04.g226100						
+Cre04.g219450				GO:0055114;GO:0051537;GO:0016491	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"	
+Cre04.g229422						
+Cre04.g217985						
+Cre04.g217956						
+Cre04.g214700			Secretory pathway			
+Cre04.g220000	GMM:29.4.1.59;GMM:29.4	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre04.g229650			Mitochondrion;Chloroplast	GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	ADH10
+Cre04.g213751						
+Cre04.g220076	GMM:29.4	protein.postranslational modification				
+Cre04.g217900			Chloroplast			
+Cre04.g217977						CSU3
+Cre04.g219725						
+Cre04.g217973						
+Cre04.g231614	GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XI		GO:0005515	protein binding	
+Cre04.g217963			Secretory pathway			
+Cre04.g216811			Mitochondrion			
+Cre04.g221450			Mitochondrion			PHC54
+Cre04.g216826			Mitochondrion			
+Cre04.g220950			Mitochondrion			
+Cre04.g226750			Secretory pathway			
+Cre04.g223400						
+Cre04.g216150						
+Cre04.g226400	GMM:28.1.3	DNA.synthesis/chromatin structure.histone				
+Cre04.g223900				GO:0030173;GO:0006891	integral component of Golgi membrane;intra-Golgi vesicle-mediated transport	
+Cre04.g217930						
+Cre04.g232502			Secretory pathway			
+Cre04.g219050	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	SRR10
+Cre04.g217936						
+Cre04.g217982			Mitochondrion			
+Cre04.g217927	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
+Cre04.g227568			Chloroplast			
+Cre04.g223350	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG62
+Cre04.g224400	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Mitochondrion	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre04.g219400	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre04.g213251	GMM:29.5.31;GMM:29.5	protein.degradation.alanine protease;protein.degradation	Mitochondrion	GO:0006508	proteolysis	
+Cre04.g214050				GO:0016021;GO:0015689;GO:0015098	integral component of membrane;molybdate ion transport;molybdate ion transmembrane transporter activity	SULTR4
+Cre04.g226850	GMM:29.5.4	protein.degradation.aspartate protease	Secretory pathway	GO:0006629;GO:0006508;GO:0004190	lipid metabolic process;proteolysis;aspartic-type endopeptidase activity	ASP1
+Cre04.g222050			Mitochondrion			
+Cre04.g217964			Mitochondrion			
+Cre04.g229300	GMM:1.3.13	PS.calvin cycle.rubisco interacting	Chloroplast	GO:0005524	ATP binding	RCA1
+Cre04.g227850			Secretory pathway			
+Cre04.g226050	GMM:14.1	S-assimilation.APS		GO:0008484;GO:0008152	sulfuric ester hydrolase activity;metabolic process	ARS10
+Cre04.g228675			Secretory pathway			
+Cre04.g225250						
+Cre04.g226176			Chloroplast			
+Cre04.g213500			Chloroplast	GO:0008176;GO:0006400	tRNA (guanine-N7-)-methyltransferase activity;tRNA modification	
+Cre04.g232104	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM3
+Cre04.g223650			Secretory pathway			FAP30
+Cre04.g217926						
+Cre04.g225000						
+Cre04.g223225	GMM:3.6;GMM:29.4	minor CHO metabolism.callose;protein.postranslational modification				
+Cre04.g219900			Chloroplast			
+Cre04.g230438	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre04.g217970						
+Cre04.g219500	GMM:29.9	protein.co-chaperones	Mitochondrion			DNJ30
+Cre04.g225850	GMM:31.4	cell.vesicle transport	Secretory pathway	GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	VAM3
+Cre04.g220250	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre04.g222800	GMM:1.5.3	PS.carbon concentrating mechanism.algal	Mitochondrion			LCID
+Cre04.g215001						
+Cre04.g214250	GMM:33.99;GMM:32;GMM:29.2.3;GMM:27.3.36	"development.unspecified;micro RNA, natural antisense etc;protein.synthesis.initiation;RNA.regulation of transcription.argonaute transcription factor family"		GO:0005515;GO:0003676	protein binding;nucleic acid binding	AGO2
+Cre04.g221200	GMM:27.3.63	RNA.regulation of transcription.PHD finger transcription factor				CGL109
+Cre04.g221770				GO:0005515	protein binding	
+Cre04.g217914				GO:0005515	protein binding	FAP57
+Cre04.g212600			Chloroplast			
+Cre04.g213761	GMM:11.9.4.5	lipid metabolism.lipid degradation.beta-oxidation.acyl-CoA thioesterase	Chloroplast			
+Cre04.g221600						
+Cre04.g224002				GO:0008168;GO:0008152	methyltransferase activity;metabolic process	
+Cre04.g217947						
+Cre04.g215450	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre04.g228850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre04.g217933						
+Cre04.g230046			Secretory pathway			
+Cre04.g211750			Chloroplast	GO:0016021	integral component of membrane	
+Cre04.g217955	GMM:13.1.5.1.3	amino acid metabolism.synthesis.serine-glycine-cysteine group.serine.phosphoserine phosphatase		GO:0006564;GO:0004647	L-serine biosynthetic process;phosphoserine phosphatase activity	
+Cre04.g222350						
+Cre04.g217954	GMM:34.21;GMM:30.3;GMM:3.3	transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols	Chloroplast	GO:0046872;GO:0000166	metal ion binding;nucleotide binding	
+Cre04.g217944	GMM:29.4	protein.postranslational modification				
+Cre04.g214769			Mitochondrion			
+Cre04.g217972						
+Cre04.g228300	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre04.g224100	GMM:23.2	nucleotide metabolism.degradation				URN2
+Cre04.g212050	GMM:27.3.48	RNA.regulation of transcription.FHA transcription factor	Secretory pathway	GO:0005515	protein binding	
+Cre04.g222700	GMM:34.16;GMM:29.2.4;GMM:29.2.2.1	transport.ABC transporters and multidrug resistance systems;protein.synthesis.elongation;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre04.g216204				GO:0046983	protein dimerization activity	
+Cre04.g216850	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007017;GO:0005874;GO:0003924	microtubule-based process;microtubule;GTPase activity	TUA2
+Cre04.g216500						
+Cre04.g214650	GMM:3.6	minor CHO metabolism.callose		GO:0016020;GO:0006075;GO:0003843;GO:0000148	"membrane;(1->3)-beta-D-glucan biosynthetic process;1,3-beta-D-glucan synthase activity;1,3-beta-D-glucan synthase complex"	GSL1
+Cre04.g229450			Secretory pathway			
+Cre04.g221050	GMM:30.9;GMM:20.1;GMM:2.1	signalling.lipids;stress.biotic;major CHO metabolism.synthesis				
+Cre04.g223450						
+Cre04.g217983						
+Cre04.g231516	GMM:35.1.3	not assigned.no ontology.armadillo/beta-catenin repeat family protein	Mitochondrion	GO:0005515	protein binding	
+Cre04.g214321			Secretory pathway			
+Cre04.g227400	GMM:15.1	metal handling.acquisition	Secretory pathway	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	FRE1
+Cre04.g215900	GMM:31.6.1.8	cell.motility.eukaryotes.flagellar membrane proteins	Secretory pathway			
+Cre21.g752947						
+Cre21.g753297			Chloroplast			
+Cre21.g752397						
+Cre21.g753097			Mitochondrion			
+Cre21.g752997				GO:0032775;GO:0009007;GO:0003677	DNA methylation on adenine;site-specific DNA-methyltransferase (adenine-specific) activity;DNA binding	
+Cre21.g752247						
+Cre21.g751947						
+Cre21.g752147			Chloroplast			
+Cre21.g752197			Chloroplast			
+Cre21.g752597			Secretory pathway			
+Cre21.g752847						
+Cre21.g752447						
+Cre21.g751897			Secretory pathway			
+Cre21.g752547			Secretory pathway			
+Cre21.g753147	GMM:20.2.3	stress.abiotic.drought/salt				
+Cre21.g752497						
+Cre21.g753247			Mitochondrion			
+Cre21.g752897			Mitochondrion			
+Cre21.g752647						
+Cre21.g753197			Mitochondrion			
+Cre21.g752797						
+Cre21.g752297			Secretory pathway			
+Cre21.g753047			Chloroplast			
+Cre21.g752347						
+Cre21.g751847			Secretory pathway			
+Cre21.g752697			Mitochondrion			
+Cre21.g752747			Chloroplast			
+Cre21.g752097						
+Cre21.g751997			Chloroplast			
+Cre21.g752047			Mitochondrion			
+Cre12.g511400	GMM:33.99;GMM:27.3	development.unspecified;RNA.regulation of transcription				PPR4
+Cre12.g526131				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g498950						
+Cre12.g497350						PPR13
+Cre12.g500850						
+Cre12.g544752						
+Cre12.g546300			Mitochondrion	GO:0019905	syntaxin binding	
+Cre12.g521450	GMM:29.5.5	protein.degradation.serine protease				CLPP2
+Cre12.g497652	GMM:26.11.1	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	
+Cre12.g505750	GMM:27.2	RNA.transcription		GO:0008270;GO:0006351;GO:0003899;GO:0003677;GO:0003676	"zinc ion binding;transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding;nucleic acid binding"	RPB9
+Cre12.g543303	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator	Chloroplast	GO:0008270;GO:0005634	zinc ion binding;nucleus	CGLD6
+Cre12.g554300	GMM:991.1	Mineral Nutrition.phosphatie				NSS6
+Cre12.g528200	GMM:28.1	DNA.synthesis/chromatin structure				
+Cre12.g513400	GMM:20.1;GMM:2.1	stress.biotic;major CHO metabolism.synthesis		GO:0052862;GO:0052861;GO:0016998	"glucan endo-1,4-beta-glucanase activity, C-3 substituted reducing group;glucan endo-1,3-beta-glucanase activity, C-3 substituted reducing group;cell wall macromolecule catabolic process"	EBG1
+Cre12.g542450	GMM:28.1;GMM:27.3.11;GMM:27.1.2	DNA.synthesis/chromatin structure;RNA.regulation of transcription.C2H2 zinc finger family;RNA.processing.RNA helicase	Chloroplast			
+Cre12.g526326			Chloroplast	GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g526883			Secretory pathway	GO:0008270	zinc ion binding	
+Cre12.g511650	GMM:31.4;GMM:20.2.5	cell.vesicle transport;stress.abiotic.light				
+Cre12.g507700						
+Cre12.g509050	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP3
+Cre12.g486850			Chloroplast			
+Cre12.g487850	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	CGL49
+Cre12.g559553						
+Cre12.g508750	GMM:1.1.2.1	PS.lightreaction.photosystem I.LHC-I	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCA2
+Cre12.g510800	GMM:19.10;GMM:19.1	tetrapyrrole synthesis.magnesium chelatase;tetrapyrrole synthesis.glu-tRNA synthetase	Chloroplast	GO:0016851;GO:0015995;GO:0015979	magnesium chelatase activity;chlorophyll biosynthetic process;photosynthesis	CHLI2
+Cre12.g547450	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole				VPS9
+Cre12.g544327			Mitochondrion	GO:0008270;GO:0005515	zinc ion binding;protein binding	
+Cre12.g552350			Secretory pathway			
+Cre12.g560668	GMM:31.3;GMM:30.6;GMM:29.4	cell.cycle;signalling.MAP kinases;protein.postranslational modification				
+Cre12.g532550	GMM:29.2.1.2.2.513;GMM:29.2.1.2.2.0513	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L13A;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L13A		GO:0015934;GO:0006412;GO:0005840;GO:0003735	large ribosomal subunit;translation;ribosome;structural constituent of ribosome	RPL13A
+Cre12.g538700			Chloroplast			CPLD62
+Cre12.g537300						
+Cre12.g516750	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g525400	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	PTK15
+Cre12.g512950			Mitochondrion	GO:0015703;GO:0015109	chromate transport;chromate transmembrane transporter activity	CIT1
+Cre12.g494400	GMM:29.8;GMM:18.7	protein.assembly and cofactor ligation;Co-factor and vitamine metabolism.iron-sulphur clusters				MNP2
+Cre12.g556911	GMM:28.2	DNA.repair		GO:0030145;GO:0016787;GO:0006302;GO:0006259;GO:0005634;GO:0004527;GO:0004519	manganese ion binding;hydrolase activity;double-strand break repair;DNA metabolic process;nucleus;exonuclease activity;endonuclease activity	
+Cre12.g540927	GMM:28.1	DNA.synthesis/chromatin structure	Secretory pathway	GO:0016887;GO:0006260;GO:0005524;GO:0003677	ATPase activity;DNA replication;ATP binding;DNA binding	
+Cre12.g510100	GMM:29.5.2	protein.degradation.autophagy	Mitochondrion			ATG4
+Cre12.g544450	GMM:34.16;GMM:31.6.1.10	transport.ABC transporters and multidrug resistance systems;cell.motility.eukaryotes.flagellar associated proteins	Secretory pathway			CSE20
+Cre12.g517600	GMM:30.2.18;GMM:29.4.1.59;GMM:29.4.1.57;GMM:29.4;GMM:20.1	signalling.receptor kinases.extensin;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification;stress.biotic				
+Cre12.g555100						
+Cre12.g517950			Mitochondrion			
+Cre12.g539200						
+Cre12.g525500	GMM:31.1	cell.organisation	Chloroplast	GO:0005815;GO:0000922;GO:0000226	microtubule organizing center;spindle pole;microtubule cytoskeleton organization	GCP2
+Cre12.g561601						
+Cre12.g500000						
+Cre12.g500100			Secretory pathway			
+Cre12.g492050						
+Cre12.g516700						
+Cre12.g517800	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	zinc ion binding	
+Cre12.g498550	GMM:19.11	tetrapyrrole synthesis.magnesium protoporphyrin IX methyltransferase	Chloroplast			CHLM
+Cre12.g544110						
+Cre12.g487750			Mitochondrion			
+Cre12.g538750	GMM:27.1	RNA.processing				LSM1
+Cre12.g537371			Secretory pathway			
+Cre12.g511700	GMM:16.1.2.8;GMM:16.1.1.10	secondary metabolism.isoprenoids.mevalonate pathway.geranyl diphosphate synthase;secondary metabolism.isoprenoids.non-mevalonate pathway.geranylgeranyl pyrophosphate synthase	Mitochondrion	GO:0008299	isoprenoid biosynthetic process	
+Cre12.g553252			Mitochondrion			
+Cre12.g495950						
+Cre12.g503000	GMM:34.98;GMM:34.9	transport.membrane system unknown;transport.metabolite transporters at the mitochondrial membrane		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	GPT3
+Cre12.g503450			Secretory pathway	GO:0005515	protein binding	
+Cre12.g551500	GMM:29.9	protein.co-chaperones	Cytosol			DNJ14
+Cre12.g542850	GMM:15.3	metal handling.regulation		GO:0055114;GO:0010309	oxidation-reduction process;acireductone dioxygenase [iron(II)-requiring] activity	ARD1
+Cre12.g523800						
+Cre12.g502100						
+Cre12.g553950			Secretory pathway			
+Cre12.g548702						
+Cre12.g520550	GMM:29.3.1	protein.targeting.nucleus		GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	TRN1
+Cre12.g550850	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0019898;GO:0015979;GO:0009654;GO:0009523;GO:0005509	extrinsic component of membrane;photosynthesis;photosystem II oxygen evolving complex;photosystem II;calcium ion binding	PSBP1
+Cre12.g558352						
+Cre12.g505400	GMM:19.99	tetrapyrrole synthesis.unspecified		GO:0016042;GO:0003847	lipid catabolic process;1-alkyl-2-acetylglycerophosphocholine esterase activity	
+Cre12.g519180	GMM:29.2.4	protein.synthesis.elongation	Chloroplast	GO:0006414;GO:0005622;GO:0003746;GO:0003676	translational elongation;intracellular;translation elongation factor activity;nucleic acid binding	EFT1a
+Cre12.g530200						
+Cre12.g492300	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I		GO:0055114;GO:0051536	oxidation-reduction process;iron-sulfur cluster binding	NUO10
+Cre12.g557450	GMM:28.2	DNA.repair	Mitochondrion			
+Cre12.g513300						CGL23
+Cre12.g516333			Chloroplast	GO:0003677	DNA binding	
+Cre12.g531100	GMM:29.5.11.20	protein.degradation.ubiquitin.proteasom		GO:0051603;GO:0005839;GO:0004298	proteolysis involved in cellular protein catabolic process;proteasome core complex;threonine-type endopeptidase activity	PBA2
+Cre12.g506400						
+Cre12.g544802			Chloroplast			
+Cre12.g555350	GMM:31.4;GMM:29.3.4.1	cell.vesicle transport;protein.targeting.secretory pathway.ER	Secretory pathway	GO:0016021	integral component of membrane	RER1
+Cre12.g487601			Chloroplast			
+Cre12.g554100			Chloroplast			
+Cre12.g535550						
+Cre12.g549852	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)		GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre12.g488600	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0006810;GO:0005215	transport;transporter activity	
+Cre12.g536050	GMM:34.99;GMM:34.1;GMM:27.3.35	transport.misc;transport.p- and v-ATPases;RNA.regulation of transcription.bZIP transcription factor family		GO:0046872;GO:0016021;GO:0015914;GO:0005524;GO:0004012;GO:0000287;GO:0000166	metal ion binding;integral component of membrane;phospholipid transport;ATP binding;phospholipid-translocating ATPase activity;magnesium ion binding;nucleotide binding	ALA1
+Cre12.g508550	GMM:18.4.2	"Co-factor and vitamine metabolism.pantothenate.3-methyl-2-oxobutanoate hydroxymethyltransferase (KPHMT,PANB)"	Chloroplast	GO:0015940;GO:0003864	pantothenate biosynthetic process;3-methyl-2-oxobutanoate hydroxymethyltransferase activity	PAN2
+Cre12.g546450			Mitochondrion	GO:0043087	regulation of GTPase activity	
+Cre12.g535300						
+Cre12.g530500			Chloroplast			
+Cre12.g552150	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0005524;GO:0005515;GO:0004672	protein phosphorylation;ATP binding;protein binding;protein kinase activity	
+Cre12.g537150			Secretory pathway			
+Cre12.g519900	GMM:33.99	development.unspecified	Chloroplast	GO:0016874;GO:0009058;GO:0005524	ligase activity;biosynthetic process;ATP binding	
+Cre12.g553678			Chloroplast			
+Cre12.g486650						
+Cre12.g502350	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL50
+Cre12.g494450	GMM:29.2.1.1.1.1.16	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S16	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPS16
+Cre12.g504302						
+Cre12.g530934						
+Cre12.g546800			Mitochondrion			PHC53
+Cre12.g548250	GMM:27.3.48	RNA.regulation of transcription.FHA transcription factor		GO:0005515	protein binding	
+Cre12.g541550						
+Cre12.g537800	GMM:29.2.1.2.2.7	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7				RPL7
+Cre12.g514600			Chloroplast	GO:0016772;GO:0005524	"transferase activity, transferring phosphorus-containing groups;ATP binding"	
+Cre12.g513701	GMM:29.2.3;GMM:29.2.2.3.5;GMM:29.2.2.2.1;GMM:28.1	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;protein.synthesis.ribosome biogenesis.assembly factors.DExD-box helicases;DNA.synthesis/chromatin structure		GO:0016818;GO:0016787;GO:0005634;GO:0005524;GO:0003723;GO:0003677	"hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;hydrolase activity;nucleus;ATP binding;RNA binding;DNA binding"	
+Cre12.g533500			Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre12.g509850	GMM:31.9	cell.eyespot				MLT1
+Cre12.g495850	GMM:26.8;GMM:26.22;GMM:11.1.4	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases;misc.short chain dehydrogenase/reductase (SDR);lipid metabolism.FA synthesis and FA elongation.ACP oxoacyl reductase"	Mitochondrion			HBD1
+Cre12.g539202			Secretory pathway			
+Cre12.g518150						
+Cre12.g514200	GMM:26.8	"misc.nitrilases, nitrile lyases, berberine bridge enzymes, reticuline oxidases, troponine reductases"	Chloroplast	GO:0055114;GO:0050660;GO:0016614	"oxidation-reduction process;flavin adenine dinucleotide binding;oxidoreductase activity, acting on CH-OH group of donors"	
+Cre12.g523550						UMM11
+Cre12.g534250			Chloroplast			
+Cre12.g493400	GMM:31.2	cell.division		GO:0051276;GO:0005694;GO:0005524;GO:0005515	chromosome organization;chromosome;ATP binding;protein binding	SMC4
+Cre12.g518300						
+Cre12.g557928			Secretory pathway			
+Cre12.g531400	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies	Mitochondrion	GO:0090090;GO:0031513;GO:0005856;GO:0005515	negative regulation of canonical Wnt signaling pathway;nonmotile primary cilium;cytoskeleton;protein binding	NPHP4
+Cre12.g527450						CAM17
+Cre12.g526515						
+Cre12.g534750			Mitochondrion			
+Cre12.g539900	GMM:13.2.4.1	amino acid metabolism.degradation.branched chain group.shared	Mitochondrion	GO:0016624;GO:0008152	"oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor;metabolic process"	
+Cre12.g527500	GMM:33.99;GMM:27.3.55;GMM:20.2.2	development.unspecified;RNA.regulation of transcription.HDA;stress.abiotic.cold		GO:0005515	protein binding	
+Cre12.g559350	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				
+Cre12.g501717						
+Cre12.g534450			Chloroplast	GO:0005515	protein binding	CGL86
+Cre12.g518350	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG18
+Cre12.g521900			Chloroplast			
+Cre12.g484750			Chloroplast	GO:0047746;GO:0015996	chlorophyllase activity;chlorophyll catabolic process	
+Cre12.g531550	GMM:29.2.3	protein.synthesis.initiation		GO:0006413;GO:0003743	translational initiation;translation initiation factor activity	EIF5B3
+Cre12.g557050			Mitochondrion	GO:0016020	membrane	YGG2
+Cre12.g495550						FAP385
+Cre12.g489600			Chloroplast	GO:0003676	nucleic acid binding	
+Cre12.g533000	GMM:28.2	DNA.repair		GO:0006281;GO:0003904	DNA repair;deoxyribodipyrimidine photo-lyase activity	PHR1
+Cre12.g498000			Mitochondrion			
+Cre12.g536650						
+Cre12.g535650						
+Cre12.g523276			Secretory pathway			
+Cre12.g527750	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm				DLT2
+Cre12.g487350						CEP19
+Cre12.g545900	GMM:3.6	minor CHO metabolism.callose				
+Cre12.g484834						
+Cre12.g485900						
+Cre12.g502600			Secretory pathway	GO:0055085;GO:0016020;GO:0008324;GO:0006814;GO:0006813;GO:0005215	transmembrane transport;membrane;cation transmembrane transporter activity;sodium ion transport;potassium ion transport;transporter activity	SLT1
+Cre12.g532450	GMM:3.5;GMM:10.1.4	minor CHO metabolism.others;cell wall.precursor synthesis.UGD		GO:0055114;GO:0051287;GO:0016616;GO:0003979	"oxidation-reduction process;NAD binding;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;UDP-glucose 6-dehydrogenase activity"	
+Cre12.g532000						
+Cre12.g560450						
+Cre12.g540480			Chloroplast			
+Cre12.g514700	GMM:28.2	DNA.repair				
+Cre12.g547950						
+Cre12.g492700			Mitochondrion			FAS1
+Cre12.g504900	GMM:29.5.11.4.3.2	protein.degradation.ubiquitin.E3.SCF.FBOX	Chloroplast	GO:0005515	protein binding	
+Cre12.g507300	GMM:29.2.1.2.1.8	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S8				LCI30
+Cre12.g554600			Chloroplast			CGL146
+Cre12.g534300			Mitochondrion			
+Cre12.g512300	GMM:17.7.1.2	hormone metabolism.jasmonate.synthesis-degradation.lipoxygenase	Mitochondrion	GO:0055114;GO:0046872;GO:0016702	"oxidation-reduction process;metal ion binding;oxidoreductase activity, acting on single donors with incorporation of molecular oxygen, incorporation of two atoms of oxygen"	
+Cre12.g517100	GMM:16.8.2	secondary metabolism.flavonoids.chalcones	Chloroplast	GO:0016872	intramolecular lyase activity	
+Cre12.g509400	GMM:23.5.4	nucleotide metabolism.deoxynucleotide metabolism.ribonucleoside-diphosphate reductase		GO:0055114;GO:0009186	oxidation-reduction process;deoxyribonucleoside diphosphate metabolic process	RIR2L
+Cre12.g500300						
+Cre12.g513800						
+Cre12.g528614	GMM:3.3	minor CHO metabolism.sugar alcohols				tnp31
+Cre12.g547400						
+Cre12.g501850	GMM:3.5;GMM:2.2.1.3.2	minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.cell wall	Chloroplast			FFT1
+Cre12.g552900	GMM:33.99;GMM:30.5	development.unspecified;signalling.G-proteins	Mitochondrion	GO:0005515	protein binding	DOI1
+Cre12.g560000			Chloroplast			
+Cre12.g489750	GMM:33.99;GMM:31.6.1.10	development.unspecified;cell.motility.eukaryotes.flagellar associated proteins		GO:0005515	protein binding	FAP52
+Cre12.g528350	GMM:31.2;GMM:20.2.5	cell.division;stress.abiotic.light	Chloroplast			
+Cre12.g556350	GMM:3.5;GMM:10.6.3	minor CHO metabolism.others;cell wall.degradation.pectate lyases and polygalacturonases		GO:0005975;GO:0004650	carbohydrate metabolic process;polygalacturonase activity	
+Cre12.g556200			Secretory pathway			
+Cre12.g553702						
+Cre12.g495175			Chloroplast			
+Cre12.g543700	GMM:28.1.1	DNA.synthesis/chromatin structure.retrotransposon/transposase				tnp32
+Cre12.g534350	GMM:24.3;GMM:11.9.4.9	biodegradation of xenobiotics.3-hydroxybutyryl-CoA dehydrogenase;lipid metabolism.lipid degradation.beta-oxidation.multifunctional		GO:0055114;GO:0016491;GO:0006631;GO:0004616;GO:0003857	oxidation-reduction process;oxidoreductase activity;fatty acid metabolic process;phosphogluconate dehydrogenase (decarboxylating) activity;3-hydroxyacyl-CoA dehydrogenase activity	HCD2
+Cre12.g502900						
+Cre12.g509500			Mitochondrion	GO:0005509	calcium ion binding	
+Cre12.g490500			Chloroplast			CGL78
+Cre12.g524750						
+Cre12.g551552			Secretory pathway			PHC60
+Cre12.g545450			Mitochondrion			
+Cre12.g515350	GMM:26.16	misc.myrosinases-lectin-jacalin	Secretory pathway	GO:0030246;GO:0007155	carbohydrate binding;cell adhesion	
+Cre12.g526220				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g552600			Secretory pathway			
+Cre12.g525300	GMM:30.2.8.2;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 2;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g522050	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			
+Cre12.g541211	GMM:34.4;GMM:1.5.3	transport.nitrate;PS.carbon concentrating mechanism.algal				
+Cre12.g560500						
+Cre12.g506750	GMM:1.5	PS.carbon concentrating mechanism	Mitochondrion			PHC41
+Cre12.g515050	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515;GO:0003677	protein binding;DNA binding	
+Cre12.g524450	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006470;GO:0004725	protein dephosphorylation;protein tyrosine phosphatase activity	PTP3
+Cre12.g491150	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole	Secretory pathway			VPS55
+Cre12.g522600	GMM:9.6	mitochondrial electron transport / ATP synthesis.cytochrome c		GO:0020037;GO:0009055	heme binding;electron carrier activity	CYC2
+Cre12.g522750			Mitochondrion			
+Cre12.g493250	GMM:29.4;GMM:29.2.2	protein.postranslational modification;protein.synthesis.ribosome biogenesis		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	FAP358
+Cre12.g489950						
+Cre12.g507950			Mitochondrion	GO:0016021;GO:0016020	integral component of membrane;membrane	CGL98
+Cre12.g491250						
+Cre12.g544900				GO:0005515	protein binding	
+Cre12.g529751			Secretory pathway			
+Cre12.g486207			Mitochondrion			
+Cre12.g529301				GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre12.g545101	GMM:23.2	nucleotide metabolism.degradation		GO:0055114;GO:0051536;GO:0046872;GO:0016491;GO:0009055	oxidation-reduction process;iron-sulfur cluster binding;metal ion binding;oxidoreductase activity;electron carrier activity	XDH1
+Cre12.g524200	GMM:29.3.4.1	protein.targeting.secretory pathway.ER		GO:0016021;GO:0008233;GO:0006465;GO:0005787	integral component of membrane;peptidase activity;signal peptide processing;signal peptidase complex	SPC25
+Cre12.g494950			Chloroplast			
+Cre12.g525750	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g494200	GMM:27.3.44	RNA.regulation of transcription.chromatin remodeling factors	Chloroplast			
+Cre12.g487100	GMM:29.1.10	protein.aa activation.methionine-tRNA ligase	Chloroplast	GO:0006418;GO:0005524;GO:0004812;GO:0000166	tRNA aminoacylation for protein translation;ATP binding;aminoacyl-tRNA ligase activity;nucleotide binding	TSM2
+Cre12.g526000				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g550152			Secretory pathway			
+Cre12.g486000			Secretory pathway			
+Cre12.g540700			Chloroplast			
+Cre12.g543450	GMM:29.5.11.4.3.4	protein.degradation.ubiquitin.E3.SCF.RBX		GO:0008270	zinc ion binding	RBX1
+Cre12.g500350	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	
+Cre12.g485400			Secretory pathway			
+Cre12.g505000						
+Cre12.g499800						
+Cre12.g511902						
+Cre12.g507800			Secretory pathway			
+Cre12.g538350	GMM:33.99	development.unspecified	Secretory pathway	GO:0016226;GO:0008199	iron-sulfur cluster assembly;ferric iron binding	FTX1
+Cre12.g492851	GMM:26.3;GMM:10.6.2	"misc.gluco-, galacto- and mannosidases;cell wall.degradation.mannan-xylose-arabinose-fucose"	Mitochondrion	GO:0005975;GO:0004553	"carbohydrate metabolic process;hydrolase activity, hydrolyzing O-glycosyl compounds"	EBM7
+Cre12.g490850	GMM:29.3.1	protein.targeting.nucleus		GO:0008536;GO:0006886	Ran GTPase binding;intracellular protein transport	
+Cre12.g549650			Mitochondrion			
+Cre12.g561150			Secretory pathway			
+Cre12.g559800	GMM:26.9	misc.glutathione S transferases				
+Cre12.g507200			Mitochondrion	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre12.g519000	GMM:13.1.6.5.3	amino acid metabolism.synthesis.aromatic aa.tryptophan.phosphoribosyanthranilate isomerase	Chloroplast	GO:0006568;GO:0004640	tryptophan metabolic process;phosphoribosylanthranilate isomerase activity	ASB2
+Cre12.g496650	GMM:11.8.1;GMM:11.2.2	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids;lipid metabolism.FA desaturation.a hydroxylase"	Mitochondrion	GO:0055114;GO:0016491;GO:0006633;GO:0005506	oxidation-reduction process;oxidoreductase activity;fatty acid biosynthetic process;iron ion binding	
+Cre12.g551001			Chloroplast			
+Cre12.g519401			Secretory pathway			
+Cre12.g486750			Chloroplast			
+Cre12.g497101			Mitochondrion			
+Cre12.g522550	GMM:31.6.1.3.1.1;GMM:31.1	cell.motility.eukaryotes.intraflagellar transport.IFT motor protein.kinesin-2 subunits;cell.organisation		GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	FLA8
+Cre12.g545300						
+Cre12.g483600						
+Cre12.g559600						
+Cre12.g495959			Chloroplast			
+Cre12.g485300			Secretory pathway			CSV6
+Cre12.g498800						
+Cre12.g527150			Mitochondrion			
+Cre12.g541904			Secretory pathway	GO:0003677	DNA binding	
+Cre12.g539203						
+Cre12.g552450						
+Cre12.g501600			Chloroplast	GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre12.g504650	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR15
+Cre12.g490600						
+Cre12.g494750	GMM:29.2.1.1.1.1.20	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S20	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723	translation;ribosome;intracellular;structural constituent of ribosome;RNA binding	PRPS20
+Cre12.g546600			Secretory pathway			FEA2
+Cre12.g555950	GMM:31.6.1.4.2.1	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC11
+Cre12.g516100				GO:0016021;GO:0005789	integral component of membrane;endoplasmic reticulum membrane	
+Cre12.g553250	GMM:4.2.4;GMM:4.1.4	glycolysis.plastid branch.phosphofructokinase (PFK);glycolysis.cytosolic branch.phosphofructokinase (PFK)	Chloroplast	GO:0006096;GO:0003872	glycolytic process;6-phosphofructokinase activity	PFK2
+Cre12.g533600						
+Cre12.g537450	GMM:9.7	mitochondrial electron transport / ATP synthesis.cytochrome c oxidase	Mitochondrion			COX13
+Cre12.g535476			Mitochondrion			
+Cre12.g498350						SRE1
+Cre12.g513500	GMM:28.2	DNA.repair				XAB2
+Cre12.g532650						
+Cre12.g549250			Chloroplast	GO:0016567;GO:0004842	protein ubiquitination;ubiquitin-protein transferase activity	
+Cre12.g525600			Chloroplast			
+Cre12.g540900			Secretory pathway			
+Cre12.g487050			Secretory pathway			
+Cre12.g544112						
+Cre12.g558300	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g538850	GMM:31.6.1.11	cell.motility.eukaryotes.other				
+Cre12.g544150	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN20-2
+Cre12.g535201			Mitochondrion			
+Cre12.g497700	GMM:26.11.1;GMM:26.11;GMM:16.8.3	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SNE8
+Cre12.g501351			Secretory pathway			
+Cre12.g542950			Mitochondrion	GO:0005643	nuclear pore	CGL137
+Cre12.g551050						
+Cre12.g523832						
+Cre12.g513000				GO:0016020;GO:0008378;GO:0006486	membrane;galactosyltransferase activity;protein glycosylation	GTR17
+Cre12.g509750	GMM:29.5;GMM:29.3.2	protein.degradation;protein.targeting.mitochondria	Mitochondrion			MPPA2
+Cre12.g510950						
+Cre12.g524900			Secretory pathway			
+Cre12.g505700	GMM:27.2	RNA.transcription		GO:0006352;GO:0003677	"DNA-templated transcription, initiation;DNA binding"	
+Cre12.g545700						
+Cre12.g503600	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin		GO:0005515	protein binding	
+Cre12.g531900			Chloroplast	GO:0010181	FMN binding	FLVA
+Cre12.g510900	GMM:29.6.2.5;GMM:29.5.5	protein.folding.chaperones and co-chaperones.HSP100s;protein.degradation.serine protease	Mitochondrion	GO:0070011;GO:0016887;GO:0009376;GO:0005737;GO:0005524	"peptidase activity, acting on L-amino acid peptides;ATPase activity;HslUV protease complex;cytoplasm;ATP binding"	HSLU1
+Cre12.g484450			Mitochondrion			
+Cre12.g549300	GMM:34.19.2;GMM:34.19.1	transport.major intrinsic proteins.TIP;transport.major intrinsic proteins.PIP		GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	MIP1
+Cre12.g485500	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0070008;GO:0008236;GO:0006508;GO:0004252	serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity	
+Cre12.g486100	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			CLPP5
+Cre12.g533650			Mitochondrion	GO:0016021	integral component of membrane	
+Cre12.g541777	GMM:35.1.13;GMM:27.3.69	not assigned.no ontology.SET domain-containing protein;RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	CGL95
+Cre12.g486400	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Chloroplast			
+Cre12.g517700	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)				NYC1
+Cre12.g549700				GO:0003723	RNA binding	
+Cre12.g507600						
+Cre12.g527000	GMM:30.3;GMM:29.4.1;GMM:29.4	signalling.calcium;protein.postranslational modification.kinase;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005509;GO:0004672	protein phosphorylation;calcium ion binding;protein kinase activity	
+Cre12.g508250	GMM:29.5.11	protein.degradation.ubiquitin		GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
+Cre12.g485800	GMM:29.5.7	protein.degradation.metalloprotease	Chloroplast	GO:0006508;GO:0005524;GO:0004222	proteolysis;ATP binding;metalloendopeptidase activity	FTSH1
+Cre12.g484200	GMM:16.1.1.10	secondary metabolism.isoprenoids.non-mevalonate pathway.geranylgeranyl pyrophosphate synthase	Chloroplast	GO:0008299	isoprenoid biosynthetic process	GGPS
+Cre12.g530400	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	IRT1
+Cre12.g523650	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0005515	protein binding	HLM19
+Cre12.g551650			Secretory pathway			
+Cre12.g488450	GMM:10.5.2	cell wall.cell wall proteins.proline rich proteins	Secretory pathway			VSP3
+Cre12.g546250	GMM:29.3.4.1	protein.targeting.secretory pathway.ER		GO:0048500;GO:0045900;GO:0008312;GO:0006614	signal recognition particle;negative regulation of translational elongation;7S RNA binding;SRP-dependent cotranslational protein targeting to membrane	SRP9
+Cre12.g490200	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g529000			Chloroplast			
+Cre12.g550553			Mitochondrion			
+Cre12.g561550	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0042626;GO:0016887;GO:0016021;GO:0006810;GO:0005524	"transmembrane transport;ATPase activity, coupled to transmembrane movement of substances;ATPase activity;integral component of membrane;transport;ATP binding"	CDS1
+Cre12.g514750	GMM:8.1.2	TCA / organic transformation.TCA.CS	Mitochondrion	GO:0046912	"transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer"	CIS1
+Cre12.g537050						
+Cre12.g550600				GO:0016021	integral component of membrane	
+Cre12.g555378						
+Cre12.g511952						
+Cre12.g534650	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre12.g545619	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING				
+Cre12.g544700	GMM:35.1.12;GMM:27.4	not assigned.no ontology.pumilio/Puf RNA-binding domain-containing protein;RNA.RNA binding		GO:0003723	RNA binding	PUF3
+Cre12.g489450			Chloroplast			
+Cre12.g541450						
+Cre12.g500950	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			CLPP4
+Cre12.g487652			Chloroplast			
+Cre12.g512788			Chloroplast			
+Cre12.g500750						CSB45
+Cre12.g554700	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified		GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	SEC22
+Cre12.g513200	GMM:4.1.13	glycolysis.cytosolic branch.enolase		GO:0006096;GO:0004634;GO:0000287;GO:0000015	glycolytic process;phosphopyruvate hydratase activity;magnesium ion binding;phosphopyruvate hydratase complex	PGH1
+Cre12.g537700			Mitochondrion			
+Cre12.g493903			Secretory pathway			CSC7
+Cre12.g543000						
+Cre12.g545602			Mitochondrion			
+Cre12.g555450	GMM:3.4.2	minor CHO metabolism.myo-inositol.InsP kinases	Mitochondrion	GO:0008440	"inositol-1,4,5-trisphosphate 3-kinase activity"	PMK
+Cre12.g484950			Mitochondrion			
+Cre12.g547350						CYG31
+Cre12.g487000			Mitochondrion			CSV8
+Cre12.g494550	GMM:27.4	RNA.RNA binding				RNP10
+Cre12.g506550						
+Cre12.g542400			Mitochondrion			
+Cre12.g486900	GMM:12.4	N-metabolism.misc		GO:0055114;GO:0050660;GO:0017150;GO:0008033	oxidation-reduction process;flavin adenine dinucleotide binding;tRNA dihydrouridine synthase activity;tRNA processing	
+Cre12.g503950	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified				
+Cre12.g503800	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
+Cre12.g534550	GMM:30.11;GMM:28.2	signalling.light;DNA.repair	Secretory pathway			PHR4
+Cre12.g516851			Mitochondrion			
+Cre12.g539800			Mitochondrion			
+Cre12.g502450	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG8
+Cre12.g506000	GMM:31.6.1.4.2;GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.inner arm;cell.motility.eukaryotes.axonemal dyneins.outer arm				DIC2
+Cre12.g541851			Chloroplast	GO:0019478;GO:0016788;GO:0005737	"D-amino acid catabolic process;hydrolase activity, acting on ester bonds;cytoplasm"	
+Cre12.g515650	GMM:29.2.3	protein.synthesis.initiation		GO:0005852;GO:0005737;GO:0003743	eukaryotic translation initiation factor 3 complex;cytoplasm;translation initiation factor activity	EIF3K
+Cre12.g522900			Chloroplast			LYR4
+Cre12.g499205			Mitochondrion			
+Cre12.g535800			Mitochondrion			
+Cre12.g529700						FAP401
+Cre12.g523340			Chloroplast			
+Cre12.g540550			Secretory pathway			
+Cre12.g554528			Mitochondrion			PPR10
+Cre12.g498100	GMM:29.2.3	protein.synthesis.initiation		GO:0005852;GO:0005737;GO:0005515;GO:0003743	eukaryotic translation initiation factor 3 complex;cytoplasm;protein binding;translation initiation factor activity	EIF3E
+Cre12.g533150			Secretory pathway			
+Cre12.g515900	GMM:31.3;GMM:28.2	cell.cycle;DNA.repair	Mitochondrion			TOPBP1
+Cre12.g502678			Chloroplast			
+Cre12.g531283			Mitochondrion			
+Cre12.g495450			Mitochondrion			
+Cre12.g560950	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0016020;GO:0015979;GO:0009522	membrane;photosynthesis;photosystem I	PSAG
+Cre12.g551502			Mitochondrion			
+Cre12.g541250	GMM:34.4;GMM:1.5.3	transport.nitrate;PS.carbon concentrating mechanism.algal	Chloroplast	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	NAR1.5
+Cre12.g558400			Chloroplast	GO:0008616;GO:0008479;GO:0006400	queuosine biosynthetic process;queuine tRNA-ribosyltransferase activity;tRNA modification	
+Cre12.g522850	GMM:29.2.3;GMM:28.1;GMM:27.1.2	protein.synthesis.initiation;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL55
+Cre12.g560900	GMM:16.1.4	secondary metabolism.isoprenoids.carotenoids	Chloroplast			AOF7
+Cre12.g534900						
+Cre12.g526210						
+Cre12.g484550			Mitochondrion			
+Cre12.g510500			Secretory pathway			
+Cre12.g519500	GMM:34.21	transport.calcium	Chloroplast	GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	CAX1
+Cre12.g552952						
+Cre12.g531200			Mitochondrion	GO:0055114;GO:0016491;GO:0005507	oxidation-reduction process;oxidoreductase activity;copper ion binding	FOX2
+Cre12.g506900						
+Cre12.g514950			Mitochondrion	GO:0043139;GO:0003697	5'-3' DNA helicase activity;single-stranded DNA binding	CGLD17
+Cre12.g487950			Secretory pathway			
+Cre12.g552550						
+Cre12.g546900			Chloroplast			
+Cre12.g490300	GMM:21.6	redox.dismutases and catalases	Secretory pathway	GO:0055114;GO:0046872;GO:0006801;GO:0004784	oxidation-reduction process;metal ion binding;superoxide metabolic process;superoxide dismutase activity	MSD4
+Cre12.g504200	GMM:29.2.1.2.1.23	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S23		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS23
+Cre12.g549950				GO:0016192;GO:0016021;GO:0006810	vesicle-mediated transport;integral component of membrane;transport	
+Cre12.g539150						
+Cre12.g517500						
+Cre12.g558526			Mitochondrion			
+Cre12.g519100	GMM:16.99;GMM:11.1.1.2.1	secondary metabolism.unspecified;lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.alpha carboxyltransferase	Chloroplast			ACC1
+Cre12.g501950			Secretory pathway	GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	
+Cre12.g556653						
+Cre12.g548800			Chloroplast			
+Cre12.g507900						
+Cre12.g517900	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast	GO:0017038;GO:0016020;GO:0005524	protein import;membrane;ATP binding	SECA1
+Cre12.g528300			Mitochondrion			
+Cre12.g536550	GMM:31.6.1.4.2;GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.inner arm;cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0005515	protein binding	DIC1
+Cre12.g544950						
+Cre12.g558650	GMM:29.2.3	protein.synthesis.initiation		GO:0044237	cellular metabolic process	EIF2BD
+Cre12.g557350				GO:0055114;GO:0051537;GO:0016491	"oxidation-reduction process;2 iron, 2 sulfur cluster binding;oxidoreductase activity"	
+Cre12.g494252			Mitochondrion			
+Cre12.g498900	GMM:29.2.1.2.1.7	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S7		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS7
+Cre12.g520072						
+Cre12.g491950						
+Cre12.g546550	GMM:15.2	"metal handling.binding, chelation and storage"	Secretory pathway			FEA1
+Cre12.g534850			Mitochondrion			
+Cre12.g545150			Mitochondrion			
+Cre12.g556450				GO:0016592;GO:0006357;GO:0001104	mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity	
+Cre12.g523900						
+Cre12.g546950						
+Cre12.g553600	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
+Cre12.g484050	GMM:29.2.1.2.2.36	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L36		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL36
+Cre12.g485600	GMM:30.1;GMM:29.4.1;GMM:29.4	signalling.in sugar and nutrient physiology;protein.postranslational modification.kinase;protein.postranslational modification	Chloroplast	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre12.g517350	GMM:27.3.99	RNA.regulation of transcription.unclassified				LSD1
+Cre12.g499902			Mitochondrion			
+Cre12.g556950						
+Cre12.g526339				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g523150	GMM:29.6.1	protein.folding.prefoldin and trigger factor	Mitochondrion			PFD5
+Cre12.g551350			Secretory pathway			LAO2
+Cre12.g497450						
+Cre12.g526603			Chloroplast	GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g515250						ROC7
+Cre12.g529600	GMM:27.2	RNA.transcription		GO:0008270;GO:0006351;GO:0005634;GO:0003899;GO:0003677	"zinc ion binding;transcription, DNA-templated;nucleus;DNA-directed RNA polymerase activity;DNA binding"	RPA1
+Cre12.g487450						
+Cre12.g529950	GMM:29.2.3	protein.synthesis.initiation		GO:0005515;GO:0003723	protein binding;RNA binding	EIF4G1
+Cre12.g491952	GMM:30.2.12	signalling.receptor kinases.leucine rich repeat XII	Secretory pathway			
+Cre12.g529550	GMM:29.4	protein.postranslational modification				ALK1
+Cre12.g535100	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g517000	GMM:30.2.20;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.wheat LRK10 like;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPKKK7
+Cre12.g544401						
+Cre12.g527350						
+Cre12.g543800			Mitochondrion			
+Cre12.g522200						
+Cre12.g509150			Mitochondrion			
+Cre12.g507005			Chloroplast			
+Cre12.g523850	GMM:9.5;GMM:29.3.2	mitochondrial electron transport / ATP synthesis.cytochrome c reductase;protein.targeting.mitochondria	Mitochondrion			MPPB
+Cre12.g556802	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre12.g521350	GMM:29.3.4.4	protein.targeting.secretory pathway.plasma membrane		GO:0016192;GO:0006904	vesicle-mediated transport;vesicle docking involved in exocytosis	SLY1
+Cre12.g483500	GMM:35.1.19	not assigned.no ontology.C2 domain-containing protein				
+Cre12.g526750	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	RBM8
+Cre12.g495250	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Chloroplast			FAP31
+Cre12.g485250			Secretory pathway			CSV5
+Cre12.g542200						
+Cre12.g495957						
+Cre12.g534200			Chloroplast			
+Cre12.g490050	GMM:34.2;GMM:34.11	transport.sugars;transport.NDP-sugars at the ER	Chloroplast			
+Cre12.g532050	GMM:29.4.1.59;GMM:29.4.1.57;GMM:29.4;GMM:20.1	protein.postranslational modification.kinase.receptor like cytoplasmatic kinase IX;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification;stress.biotic		GO:0016567;GO:0006468;GO:0005524;GO:0004842;GO:0004672	protein ubiquitination;protein phosphorylation;ATP binding;ubiquitin-protein transferase activity;protein kinase activity	
+Cre12.g555000			Secretory pathway			
+Cre12.g489200	GMM:33.99;GMM:33.2	development.unspecified;development.late embryogenesis abundant	Secretory pathway			
+Cre12.g492504						
+Cre12.g495050			Secretory pathway			OPR51
+Cre12.g521050						
+Cre12.g489002			Chloroplast			
+Cre12.g544650						
+Cre12.g512790						
+Cre12.g558000	GMM:29.2.1.99.1.6	protein.synthesis.ribosomal protein.unknown.small subunit.S6		GO:0019843;GO:0006412;GO:0005840;GO:0003735	rRNA binding;translation;ribosome;structural constituent of ribosome	MRPS6
+Cre12.g505100			Mitochondrion	GO:0009411;GO:0006289;GO:0004519	response to UV;nucleotide-excision repair;endonuclease activity	
+Cre12.g528550	GMM:17.3.1.1.1	hormone metabolism.brassinosteroid.synthesis-degradation.BRs.DET2	Secretory pathway			
+Cre12.g560750			Mitochondrion	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	
+Cre12.g500200	GMM:26.13	misc.acid and other phosphatases	Secretory pathway	GO:0016787	hydrolase activity	MPA2
+Cre12.g504450			Mitochondrion			
+Cre12.g556050	GMM:29.2.1.1.1.2.9	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L9	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	PRPL9
+Cre12.g514300				GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	
+Cre12.g533201			Secretory pathway			
+Cre12.g496850			Mitochondrion			
+Cre12.g512200	GMM:34.99;GMM:34.2;GMM:34.16	transport.misc;transport.sugars;transport.ABC transporters and multidrug resistance systems		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	MFT26
+Cre12.g560200	GMM:26.24	misc.GCN5-related N-acetyltransferase		GO:0008080	N-acetyltransferase activity	NAT2
+Cre12.g498200						FAP128
+Cre12.g493854			Secretory pathway			
+Cre12.g512650						
+Cre12.g490950			Chloroplast			
+Cre12.g522950	GMM:31.2.5	cell.division.plastid	Chloroplast			MIND1
+Cre12.g510650	GMM:1.3.7	PS.calvin cycle.FBPase	Chloroplast	GO:0042578;GO:0042132;GO:0005975	"phosphoric ester hydrolase activity;fructose 1,6-bisphosphate 1-phosphatase activity;carbohydrate metabolic process"	FBP2
+Cre12.g536412			Mitochondrion			
+Cre12.g518550	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP54
+Cre12.g523600						
+Cre12.g560350	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	CNK2
+Cre12.g508300						CGL144
+Cre12.g557300				GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre12.g540800			Mitochondrion			
+Cre12.g538100	GMM:26.9	misc.glutathione S transferases		GO:0005515	protein binding	
+Cre12.g555500				GO:0009236;GO:0008939	cobalamin biosynthetic process;nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity	
+Cre12.g535700	GMM:29.6.2.3;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP70s;stress.abiotic.heat	Chloroplast			HSP70D
+Cre12.g518500						
+Cre12.g530250						
+Cre12.g515550	GMM:29.3.4.3	protein.targeting.secretory pathway.vacuole		GO:0016192;GO:0006904	vesicle-mediated transport;vesicle docking involved in exocytosis	VPS33
+Cre12.g548901			Mitochondrion			
+Cre12.g494650			Secretory pathway			CSV10
+Cre12.g552200	GMM:2.2.2.2	major CHO metabolism.degradation.starch.starch phosphorylase	Chloroplast	GO:0008184;GO:0005975	glycogen phosphorylase activity;carbohydrate metabolic process	STA4
+Cre12.g527250			Chloroplast			
+Cre12.g492750			Chloroplast	GO:2001070	starch binding	
+Cre12.g499500	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	SAC3
+Cre12.g501900	GMM:3.5;GMM:2.2.1.3.2	minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.cell wall	Mitochondrion			FFT2
+Cre12.g520900						
+Cre12.g507556						
+Cre12.g510250						VTC1
+Cre12.g544250						
+Cre12.g488800			Mitochondrion			
+Cre12.g488050	GMM:3.5;GMM:2.2.1.3.2	minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.cell wall				FFT5
+Cre12.g491050	GMM:23.5.4	nucleotide metabolism.deoxynucleotide metabolism.ribonucleoside-diphosphate reductase	Chloroplast	GO:0055114;GO:0009186	oxidation-reduction process;deoxyribonucleoside diphosphate metabolic process	RIR2
+Cre12.g552700	GMM:31.6.1.11	cell.motility.eukaryotes.other	Secretory pathway	GO:0016020;GO:0005044	membrane;scavenger receptor activity	
+Cre12.g548955						
+Cre12.g540200	GMM:29.2.3;GMM:27.1.2;GMM:27.1;GMM:17.5.3	protein.synthesis.initiation;RNA.processing.RNA helicase;RNA.processing;hormone metabolism.ethylene.induced-regulated-responsive-activated		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL58
+Cre12.g553000						
+Cre12.g531500						DRC3
+Cre12.g524550						
+Cre12.g534302						
+Cre12.g545600				GO:0046872	metal ion binding	
+Cre12.g532800			Secretory pathway			
+Cre12.g488200			Chloroplast			
+Cre12.g497800			Chloroplast			
+Cre12.g508644	GMM:27.3.22	RNA.regulation of transcription.homeobox transcription factor family (HB)	Secretory pathway	GO:0006355;GO:0003677	"regulation of transcription, DNA-templated;DNA binding"	HDG1
+Cre12.g488400	GMM:29.5.9	protein.degradation.AAA type	Secretory pathway	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre12.g527650			Secretory pathway			
+Cre12.g558200			Chloroplast			
+Cre12.g488000	GMM:3.5;GMM:2.2.1.3.3;GMM:2.2.1.3.2	minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.vacuolar;major CHO metabolism.degradation.sucrose.invertases.cell wall	Chloroplast			FFT4
+Cre12.g561101	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases				ELG42
+Cre12.g511100	GMM:29.3.2	protein.targeting.mitochondria	Mitochondrion			
+Cre12.g526201				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g526559				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g544114	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN20-6
+Cre12.g503850	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	ARL12
+Cre12.g551852			Mitochondrion			
+Cre12.g505300						
+Cre12.g539204			Mitochondrion			
+Cre12.g549800	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	CSK5
+Cre12.g511550						
+Cre12.g520050			Secretory pathway			
+Cre12.g554150			Chloroplast	GO:0008270	zinc ion binding	
+Cre12.g504750	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA16
+Cre12.g508642						
+Cre12.g525650	GMM:30.1.1;GMM:30.1	signalling.in sugar and nutrient physiology.misc;signalling.in sugar and nutrient physiology				SUFS1
+Cre12.g543052				GO:0071949	FAD binding	
+Cre12.g536950						
+Cre12.g554350						
+Cre12.g529500	GMM:29.2.6;GMM:29.2.2.3.3;GMM:27.3.67	protein.synthesis.ribosomal RNA;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.methylotransferases;RNA.regulation of transcription.putative transcription regulator		GO:0032259;GO:0031167;GO:0008649;GO:0008168;GO:0006364;GO:0005634;GO:0001510	methylation;rRNA methylation;rRNA methyltransferase activity;methyltransferase activity;rRNA processing;nucleus;RNA methylation	
+Cre12.g496450	GMM:28.99;GMM:27.1.19	DNA.unspecified;RNA.processing.ribonucleases	Chloroplast	GO:0003723;GO:0000178	RNA binding;exosome (RNase complex)	RRP4
+Cre12.g545250				GO:0055114	oxidation-reduction process	
+Cre12.g513650						FAP342
+Cre12.g486478						
+Cre12.g486702			Mitochondrion			
+Cre12.g511250						
+Cre12.g508200	GMM:27.4	RNA.RNA binding				
+Cre12.g551977						PHC74
+Cre12.g558050						
+Cre12.g546100	GMM:31.1	cell.organisation	Chloroplast	GO:0008017;GO:0007018;GO:0005871;GO:0005524;GO:0003777	microtubule binding;microtubule-based movement;kinesin complex;ATP binding;microtubule motor activity	FAP125
+Cre12.g550501						
+Cre12.g483720			Chloroplast	GO:0006260;GO:0003697	DNA replication;single-stranded DNA binding	
+Cre12.g536750			Mitochondrion			
+Cre12.g504100			Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PHX20
+Cre12.g534600	GMM:29.3.2	protein.targeting.mitochondria		GO:0045040;GO:0005742	protein import into mitochondrial outer membrane;mitochondrial outer membrane translocase complex	TOM20
+Cre12.g500150	GMM:5.10;GMM:5.1;GMM:16.4.2.1	fermentation.aldehyde dehydrogenase;fermentation.LDH;secondary metabolism.N misc.betaine.betaine-aldehyde dehydrogenase	Mitochondrion	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	ALD5
+Cre12.g509700						
+Cre12.g554929			Chloroplast			
+Cre12.g525950	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g508900	GMM:30.6;GMM:3.6;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPK6
+Cre12.g537500	GMM:30.4;GMM:3.4	signalling.phosphinositides;minor CHO metabolism.myo-inositol		GO:0042578	phosphoric ester hydrolase activity	
+Cre12.g490450			Chloroplast			
+Cre12.g486550						
+Cre12.g550702	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF13
+Cre12.g559054						
+Cre12.g521336						
+Cre12.g492950	GMM:23.5.4	nucleotide metabolism.deoxynucleotide metabolism.ribonucleoside-diphosphate reductase		GO:0055114;GO:0006260;GO:0005524;GO:0004748	"oxidation-reduction process;DNA replication;ATP binding;ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor"	RIR1
+Cre12.g521750						
+Cre12.g545800						ROC55
+Cre12.g497400	GMM:27.2	RNA.transcription		GO:0006383;GO:0005666;GO:0003899;GO:0003677	transcription from RNA polymerase III promoter;DNA-directed RNA polymerase III complex;DNA-directed RNA polymerase activity;DNA binding	CGL119
+Cre12.g516550				GO:0016757	"transferase activity, transferring glycosyl groups"	GTR16
+Cre12.g540351						SELW2
+Cre12.g548051						
+Cre12.g533800	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN22
+Cre12.g487700			Secretory pathway			
+Cre12.g543350	GMM:5.3;GMM:26.11	fermentation.ADH;misc.alcohol dehydrogenases		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	FDH2
+Cre12.g517750			Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g558700	GMM:23.4.10	nucleotide metabolism.phosphotransfer and pyrophosphatases.nucleoside diphosphate kinase		GO:0006241;GO:0006228;GO:0006183;GO:0006165;GO:0004550	CTP biosynthetic process;UTP biosynthetic process;GTP biosynthetic process;nucleoside diphosphate phosphorylation;nucleoside diphosphate kinase activity	FAP67
+Cre12.g559950	GMM:9.99;GMM:26.30	mitochondrial electron transport / ATP synthesis.unspecified;misc.other Ferredoxins and Rieske domain	Mitochondrion	GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	MFDX
+Cre12.g522350	GMM:29.1.13;GMM:29.1	protein.aa activation.tryptophan-tRNA ligase;protein.aa activation		GO:0006436;GO:0006418;GO:0005737;GO:0005524;GO:0004830;GO:0004812;GO:0000166	tryptophanyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;cytoplasm;ATP binding;tryptophan-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	TSW1
+Cre12.g497100						
+Cre12.g485150	GMM:4.2.8;GMM:4.1.8	glycolysis.plastid branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH);glycolysis.cytosolic branch.glyceraldehyde 3-phosphate dehydrogenase (GAP-DH)	Chloroplast	GO:0055114;GO:0016620	"oxidation-reduction process;oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor"	GAP1
+Cre12.g500500	GMM:17.3.1.2.2	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.SMT2		GO:0008168;GO:0008152;GO:0006694	methyltransferase activity;metabolic process;steroid biosynthetic process	SMT1
+Cre12.g542300	GMM:1.2.7	PS.photorespiration.glycerate kinase	Chloroplast			GLYK1
+Cre12.g493050				GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
+Cre12.g546650	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC23
+Cre12.g541950			Mitochondrion			
+Cre12.g535150			Mitochondrion			
+Cre12.g485550	GMM:13.2.4.4	amino acid metabolism.degradation.branched chain group.leucine	Mitochondrion	GO:0003824	catalytic activity	
+Cre12.g492450	GMM:28.1	DNA.synthesis/chromatin structure		GO:0004386	helicase activity	
+Cre12.g506300	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR18
+Cre12.g515750	GMM:34.7;GMM:34.2	transport.phosphate;transport.sugars		GO:0055085;GO:0016021	transmembrane transport;integral component of membrane	NTP5
+Cre12.g493550				GO:0006412;GO:0005840;GO:0005622;GO:0005515;GO:0003735	translation;ribosome;intracellular;protein binding;structural constituent of ribosome	THK3
+Cre12.g539207						
+Cre12.g494900	GMM:29.4	protein.postranslational modification		GO:0016787	hydrolase activity	
+Cre12.g550300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g519700	GMM:33.99	development.unspecified	Chloroplast	GO:0005525	GTP binding	
+Cre12.g496250			Mitochondrion			
+Cre12.g504300			Mitochondrion			
+Cre12.g505600	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB17
+Cre12.g520400	GMM:29.2.1.1.3.2.4	protein.synthesis.ribosomal protein.prokaryotic.unknown organellar.50S subunit.L4	Mitochondrion	GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPL4
+Cre12.g561400			Secretory pathway			
+Cre12.g533850			Secretory pathway			
+Cre12.g489550						
+Cre12.g531750			Secretory pathway			
+Cre12.g485276			Secretory pathway			
+Cre12.g491600	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB1
+Cre12.g499200			Chloroplast			
+Cre12.g486050				GO:0008270;GO:0005515;GO:0003676	zinc ion binding;protein binding;nucleic acid binding	
+Cre12.g549450	GMM:13.2.6.2	amino acid metabolism.degradation.aromatic aa.tyrosine		GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre12.g503200						
+Cre12.g547651			Mitochondrion			
+Cre12.g549500			Chloroplast			
+Cre12.g513550	GMM:29.5.11.2	protein.degradation.ubiquitin.E1	Mitochondrion			
+Cre12.g495953				GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	
+Cre12.g547734			Secretory pathway			
+Cre12.g560550	GMM:13.2.3.4	amino acid metabolism.degradation.aspartate family.methionine	Chloroplast	GO:0016742;GO:0009058	"hydroxymethyl-, formyl- and related transferase activity;biosynthetic process"	MTF1
+Cre12.g551127			Mitochondrion			
+Cre12.g523050	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase	Mitochondrion	GO:0046488;GO:0016307;GO:0005524	phosphatidylinositol metabolic process;phosphatidylinositol phosphate kinase activity;ATP binding	CCT11
+Cre12.g504550	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB15
+Cre12.g532327	GMM:29.5.7	protein.degradation.metalloprotease				APG10
+Cre12.g515150						
+Cre12.g536150						
+Cre12.g539121						
+Cre12.g510450				GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS28
+Cre12.g529100	GMM:34.1.1.2;GMM:34.1.1	transport.p- and v-ATPases.H+-transporting two-sector ATPase.subunit C;transport.p- and v-ATPases.H+-transporting two-sector ATPase		GO:0033177;GO:0015991;GO:0015078	"proton-transporting two-sector ATPase complex, proton-transporting domain;ATP hydrolysis coupled proton transport;hydrogen ion transmembrane transporter activity"	ATPVL2
+Cre12.g556400	GMM:28.1.3;GMM:27.3.16	"DNA.synthesis/chromatin structure.histone;RNA.regulation of transcription.CCAAT box binding factor family, HAP5"				
+Cre12.g501150						MLT2
+Cre12.g551353			Secretory pathway			LAO1
+Cre12.g505450	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO17
+Cre12.g556550						
+Cre12.g526010				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g512550						
+Cre12.g525802	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g503250			Secretory pathway			
+Cre12.g529150	GMM:29.4	protein.postranslational modification		GO:0006470;GO:0004722;GO:0003824	protein dephosphorylation;protein serine/threonine phosphatase activity;catalytic activity	FAP314
+Cre12.g519600			Secretory pathway			
+Cre12.g494052			Mitochondrion			
+Cre12.g532151	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM7
+Cre12.g509250	GMM:21.1	redox.thioredoxin	Mitochondrion	GO:0045454	cell redox homeostasis	EYE2
+Cre12.g539208			Secretory pathway			
+Cre12.g498700			Chloroplast			CPLD13
+Cre12.g512600	GMM:29.2.1.2.2.18	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L18	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL18
+Cre12.g551100						
+Cre12.g553052			Secretory pathway			
+Cre12.g557078			Secretory pathway	GO:0055114;GO:0016715;GO:0005507;GO:0004497	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, reduced ascorbate as one donor, and incorporation of one atom of oxygen;copper ion binding;monooxygenase activity"	
+Cre12.g490100	GMM:34.2;GMM:34.11	transport.sugars;transport.NDP-sugars at the ER				
+Cre12.g514900	GMM:29.3.2	protein.targeting.mitochondria		GO:0045039	protein import into mitochondrial inner membrane	TIM10
+Cre12.g484375						
+Cre12.g530700	GMM:28.1.3	DNA.synthesis/chromatin structure.histone		GO:0006352;GO:0005669	"DNA-templated transcription, initiation;transcription factor TFIID complex"	
+Cre12.g484650						
+Cre12.g537226			Secretory pathway			
+Cre12.g534915						
+Cre12.g539141						
+Cre12.g557850	GMM:24.1	biodegradation of xenobiotics.hydroxyacylglutathione hydrolase	Secretory pathway	GO:0005515	protein binding	
+Cre12.g557600	GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase		GO:0019205;GO:0006139;GO:0005524;GO:0004017	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding;adenylate kinase activity	ADK4
+Cre12.g560902						
+Cre12.g553300	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre12.g547000			Chloroplast	GO:0002949	tRNA threonylcarbamoyladenosine modification	
+Cre12.g510034	GMM:35.1.27	not assigned.no ontology.tetratricopeptide repeat (TPR)	Mitochondrion			
+Cre12.g557800			Mitochondrion	GO:0003677	DNA binding	
+Cre12.g521150	GMM:27.3.8	RNA.regulation of transcription.C2C2(Zn) DOF zinc finger family		GO:0006355;GO:0003677	"regulation of transcription, DNA-templated;DNA binding"	CGL19
+Cre12.g543550			Mitochondrion			
+Cre12.g506600			Chloroplast			LPN1
+Cre12.g527850			Secretory pathway	GO:0043565	sequence-specific DNA binding	
+Cre12.g543900			Chloroplast	GO:0006470;GO:0004725	protein dephosphorylation;protein tyrosine phosphatase activity	PTP6
+Cre12.g528850	GMM:31.6.1.4.1	cell.motility.eukaryotes.axonemal dyneins.outer arm		GO:0045454	cell redox homeostasis	DLX1
+Cre12.g556750	GMM:26.22	misc.short chain dehydrogenase/reductase (SDR)	Chloroplast	GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre12.g550650	GMM:29.2.1	protein.synthesis.ribosomal protein		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	MRPL14
+Cre12.g485200	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0005515	protein binding	
+Cre12.g559400	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE12
+Cre12.g492151			Mitochondrion			
+Cre12.g537950			Chloroplast			
+Cre12.g553850			Chloroplast			TUL1
+Cre12.g536776						
+Cre12.g512450			Secretory pathway			
+Cre12.g541650						
+Cre12.g547250			Chloroplast			
+Cre12.g526800	GMM:7.1.3	OPP.oxidative PP.6-phosphogluconate dehydrogenase	Chloroplast	GO:0055114;GO:0050661;GO:0006098;GO:0004616	oxidation-reduction process;NADP binding;pentose-phosphate shunt;phosphogluconate dehydrogenase (decarboxylating) activity	GND1
+Cre12.g531450						HPAT3
+Cre12.g551900						
+Cre12.g559850				GO:0005515	protein binding	
+Cre12.g512202			Chloroplast			
+Cre12.g497500	GMM:26.11.1;GMM:26.11;GMM:16.8.3	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SNE7
+Cre12.g503100			Secretory pathway			
+Cre12.g550450						
+Cre12.g512750	GMM:33.99;GMM:30.5;GMM:3.5;GMM:27.1	development.unspecified;signalling.G-proteins;minor CHO metabolism.others;RNA.processing		GO:0005515	protein binding	TEF20
+Cre12.g509600	GMM:23.5.3	nucleotide metabolism.deoxynucleotide metabolism.cytosine deaminase	Secretory pathway	GO:0008270	zinc ion binding	CDD2
+Cre12.g495955						
+Cre12.g503350						
+Cre12.g500650	GMM:27.1.19	RNA.processing.ribonucleases	Chloroplast			RNB2
+Cre12.g537581	GMM:23.1.2.9	nucleotide metabolism.synthesis.purine.AICAR transformylase and IMP synthase	Chloroplast	GO:0006164;GO:0004643;GO:0003937	purine nucleotide biosynthetic process;phosphoribosylaminoimidazolecarboxamide formyltransferase activity;IMP cyclohydrolase activity	
+Cre12.g484000	GMM:11.1.1.2.2	lipid metabolism.FA synthesis and FA elongation.acetyl CoA carboxylation.heteromeric complex.beta carboxyltransferase	Chloroplast			BCX1
+Cre12.g537850			Chloroplast			CCB2
+Cre12.g523700			Chloroplast			
+Cre12.g537641			Secretory pathway			
+Cre12.g525850						
+Cre12.g497950						
+Cre12.g535019	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Secretory pathway			
+Cre12.g555600			Mitochondrion			
+Cre12.g496100						FAP149
+Cre12.g488152			Secretory pathway			
+Cre12.g495750						
+Cre12.g504850	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO16
+Cre12.g534100	GMM:33.99;GMM:27.3.7	development.unspecified;RNA.regulation of transcription.C2C2(Zn) Constans-like zinc finger family (CO-like)	Secretory pathway	GO:0005515	protein binding	CON2
+Cre12.g499150						
+Cre12.g558850			Mitochondrion			
+Cre12.g535600			Mitochondrion			DNJ17
+Cre12.g500600				GO:0070072	vacuolar proton-transporting V-type ATPase complex assembly	VMA21
+Cre12.g502250	GMM:31.1	cell.organisation	Chloroplast			PLAP4
+Cre12.g509000	GMM:30.6;GMM:3.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;minor CHO metabolism.callose;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	MAPK3
+Cre12.g499050	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB44
+Cre12.g521550	GMM:30.4.1	signalling.phosphinositides.phosphatidylinositol-4-phosphate 5-kinase	Mitochondrion			
+Cre12.g508100						
+Cre12.g542569	GMM:30.1;GMM:3.1;GMM:27.3.99	signalling.in sugar and nutrient physiology;minor CHO metabolism.raffinose family;RNA.regulation of transcription.unclassified		GO:0016020;GO:0004970	membrane;ionotropic glutamate receptor activity	
+Cre12.g494050	GMM:29.2.2;GMM:29.2.1.2.2.9	protein.synthesis.ribosome biogenesis;protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L9		GO:0019843;GO:0006412;GO:0005840;GO:0003735	rRNA binding;translation;ribosome;structural constituent of ribosome	RPL9
+Cre12.g518700	GMM:27.1.1	RNA.processing.splicing	Secretory pathway			
+Cre12.g554850	GMM:21.1	redox.thioredoxin		GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRXH1
+Cre12.g499350	GMM:30.3;GMM:3.3	signalling.calcium;minor CHO metabolism.sugar alcohols	Mitochondrion	GO:0005509	calcium ion binding	EFH7
+Cre12.g538500						
+Cre12.g531050	GMM:34.5	transport.ammonium	Chloroplast			RAA3
+Cre12.g547727			Chloroplast			
+Cre12.g549050	GMM:16.4.1	secondary metabolism.N misc.alkaloid-like	Secretory pathway	GO:0016844;GO:0009058	strictosidine synthase activity;biosynthetic process	STR1
+Cre12.g509950			Secretory pathway			
+Cre12.g541200			Secretory pathway	GO:0016020;GO:0006810;GO:0005215	membrane;transport;transporter activity	
+Cre12.g490891	GMM:29.3.1	protein.targeting.nucleus				
+Cre12.g561350						
+Cre12.g554050						
+Cre12.g553400			Mitochondrion;Chloroplast			
+Cre12.g538300	GMM:31.3;GMM:31.2;GMM:30.6;GMM:29.4	cell.cycle;cell.division;signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	LF5
+Cre12.g495951	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN20-3
+Cre12.g511800						
+Cre12.g539205						
+Cre12.g548550						
+Cre12.g559050						
+Cre12.g536850			Mitochondrion			
+Cre12.g544111						CSB49
+Cre12.g517681			Chloroplast			
+Cre12.g539000	GMM:33.99;GMM:31.2;GMM:11.3.6	development.unspecified;cell.division;lipid metabolism.phospholipid synthesis.choline-phosphate cytidylyltransferase	Secretory pathway	GO:0009058;GO:0003824	biosynthetic process;catalytic activity	ECT1
+Cre12.g520750						
+Cre12.g554200	GMM:31.4;GMM:29.3.4.2	cell.vesicle transport;protein.targeting.secretory pathway.golgi	Mitochondrion			VTI4
+Cre12.g520173			Chloroplast			
+Cre12.g496402						
+Cre12.g484700						
+Cre12.g516650	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g524000	GMM:2.1.1.1	major CHO metabolism.synthesis.sucrose.SPS	Mitochondrion	GO:0016157;GO:0005985	sucrose synthase activity;sucrose metabolic process	SUC1
+Cre12.g521250				GO:0052689;GO:0006482	carboxylic ester hydrolase activity;protein demethylation	PPE1
+Cre12.g495350	GMM:31.6.1.2;GMM:31.6.1.1	cell.motility.eukaryotes.deflagellation;cell.motility.eukaryotes.basal bodies				POC12
+Cre12.g502750	GMM:29.6.1	protein.folding.prefoldin and trigger factor		GO:0051082;GO:0016272;GO:0006457	unfolded protein binding;prefoldin complex;protein folding	PFD6
+Cre12.g487800						
+Cre12.g530800			Mitochondrion			
+Cre12.g556913			Chloroplast			
+Cre12.g548651			Mitochondrion			
+Cre12.g515450	GMM:29.5.11.3	protein.degradation.ubiquitin.E2				UBC22
+Cre12.g520650	GMM:31.1;GMM:29.5.11.4.3.2;GMM:27.3.31	cell.organisation;protein.degradation.ubiquitin.E3.SCF.FBOX;RNA.regulation of transcription.TUB transcription factor family				TLP1
+Cre12.g549100			Chloroplast			UAF3
+Cre12.g513950	GMM:34.16;GMM:29.8	transport.ABC transporters and multidrug resistance systems;protein.assembly and cofactor ligation	Chloroplast	GO:0016226	iron-sulfur cluster assembly	SUFD
+Cre12.g507050						
+Cre12.g499601			Mitochondrion			
+Cre12.g560100			Mitochondrion			
+Cre12.g533400						
+Cre12.g489300			Secretory pathway			
+Cre12.g538200	GMM:3.5	minor CHO metabolism.others		GO:0005525;GO:0005515	GTP binding;protein binding	
+Cre12.g517300			Secretory pathway			
+Cre12.g529400	GMM:29.2.1.2.1.27	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S27		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS27E1
+Cre12.g530876						
+Cre12.g485632						CSB41
+Cre12.g496350			Secretory pathway	GO:0016020;GO:0008158	membrane;hedgehog receptor activity	SSD2
+Cre12.g545000	GMM:31.1	cell.organisation				ARP7
+Cre12.g499900	GMM:26.27	misc.calcineurin-like phosphoesterase family protein				VPS29
+Cre12.g557252						
+Cre12.g502200	GMM:29.2.3;GMM:27.3.38	protein.synthesis.initiation;RNA.regulation of transcription.AT-rich interaction domain containing transcription factor family		GO:0016779;GO:0009058;GO:0005515	nucleotidyltransferase activity;biosynthetic process;protein binding	
+Cre12.g502000	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP253
+Cre12.g559200			Mitochondrion			
+Cre12.g507559	GMM:20.2.1	stress.abiotic.heat	Mitochondrion	GO:0051259;GO:0051087;GO:0006457	protein oligomerization;chaperone binding;protein folding	HSC20B
+Cre12.g501700						
+Cre12.g545401			Secretory pathway			
+Cre12.g529376			Chloroplast			
+Cre12.g496900			Chloroplast	GO:0004519;GO:0003676	endonuclease activity;nucleic acid binding	
+Cre12.g483650	GMM:29.4;GMM:1.1.30	protein.postranslational modification;PS.lightreaction.state transition		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g494300			Chloroplast			
+Cre12.g484350	GMM:29.4	protein.postranslational modification				
+Cre12.g497200	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP216
+Cre12.g506650						
+Cre12.g483900			Mitochondrion	GO:0008324;GO:0006812	cation transmembrane transporter activity;cation transport	
+Cre12.g559250	GMM:31.6.1.1;GMM:30.7;GMM:3.7	cell.motility.eukaryotes.basal bodies;signalling.14-3-3 proteins;minor CHO metabolism.sugar kinases		GO:0019904	protein domain specific binding	FTT1
+Cre12.g520300			Secretory pathway			
+Cre12.g543902	GMM:3.3	minor CHO metabolism.sugar alcohols		GO:0016857;GO:0016773;GO:0005975	"racemase and epimerase activity, acting on carbohydrates and derivatives;phosphotransferase activity, alcohol group as acceptor;carbohydrate metabolic process"	
+Cre12.g535400			Secretory pathway			
+Cre12.g487150	GMM:26.13	misc.acid and other phosphatases	Chloroplast			PGM20
+Cre12.g548450			Secretory pathway			
+Cre12.g531651						
+Cre12.g526240				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g504000	GMM:28.1	DNA.synthesis/chromatin structure	Chloroplast			
+Cre12.g544050	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre12.g493650						
+Cre12.g546750						
+Cre12.g514400	GMM:27.3.26;GMM:27.3.25	RNA.regulation of transcription.MYB-related transcription factor family;RNA.regulation of transcription.MYB domain transcription factor family				
+Cre12.g491500	GMM:29.5.11.2	protein.degradation.ubiquitin.E1		GO:0045116;GO:0019781;GO:0016881;GO:0008641;GO:0005524	protein neddylation;NEDD8 activating enzyme activity;acid-amino acid ligase activity;small protein activating enzyme activity;ATP binding	UBC1
+Cre12.g528926						
+Cre12.g555200			Chloroplast			
+Cre12.g553800						
+Cre12.g491400	GMM:29.5.11.1	protein.degradation.ubiquitin.ubiquitin	Chloroplast	GO:0005515	protein binding	
+Cre12.g541400						
+Cre12.g532900	GMM:31.1	cell.organisation		GO:0005515	protein binding	
+Cre12.g526950	GMM:27.3.99;GMM:27.3.51	"RNA.regulation of transcription.unclassified;RNA.regulation of transcription.general transcription, TBP-binding protein"		GO:0006355;GO:0005634;GO:0005515	"regulation of transcription, DNA-templated;nucleus;protein binding"	
+Cre12.g510050	GMM:19.12	tetrapyrrole synthesis.magnesium-protoporphyrin IX monomethyl ester (oxidative) cyclase	Chloroplast	GO:0055114;GO:0046872;GO:0016491	oxidation-reduction process;metal ion binding;oxidoreductase activity	CTH1
+Cre12.g523026	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family				
+Cre12.g485850			Chloroplast			CPLD64
+Cre12.g498600	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	GTP binding	EEF1A1
+Cre12.g560650						
+Cre12.g551801			Secretory pathway	GO:0048278;GO:0006887;GO:0005737	vesicle docking;exocytosis;cytoplasm	
+Cre12.g492500						
+Cre12.g510752						
+Cre12.g508350			Mitochondrion			TPR2
+Cre12.g549600						
+Cre12.g488750			Chloroplast			
+Cre12.g516200	GMM:29.2.4	protein.synthesis.elongation		GO:0005525	GTP binding	EFG2
+Cre12.g507750	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g487400						
+Cre12.g548350			Mitochondrion			
+Cre12.g515950			Chloroplast			
+Cre12.g542650			Mitochondrion	GO:0005515	protein binding	
+Cre12.g501400						CSB46
+Cre12.g512850						
+Cre12.g493100						
+Cre12.g557700	GMM:24.1	biodegradation of xenobiotics.hydroxyacylglutathione hydrolase		GO:0019243;GO:0004416	methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione;hydroxyacylglutathione hydrolase activity	
+Cre12.g492600	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			FAP346
+Cre12.g493700	GMM:26.7;GMM:17.1.1.1.1	"misc.oxidases - copper, flavone etc;hormone metabolism.abscisic acid.synthesis-degradation.synthesis.zeaxanthin epoxidase"	Chloroplast	GO:0071949	FAD binding	ZXE2
+Cre12.g544109				GO:0003676	nucleic acid binding	
+Cre12.g510200			Mitochondrion			
+Cre12.g555152			Secretory pathway			
+Cre12.g495650				GO:0005515	protein binding	
+Cre12.g485050	GMM:8.3	TCA / organic transformation.carbonic anhydrases	Chloroplast	GO:0008270;GO:0004089	zinc ion binding;carbonate dehydratase activity	CAH6
+Cre12.g511350						
+Cre12.g525200	GMM:29.2.2.3.1;GMM:27.3.67	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs;RNA.regulation of transcription.putative transcription regulator				NOP56
+Cre12.g489152			Mitochondrion			
+Cre12.g489250						
+Cre12.g526650	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g510350	GMM:26.16	misc.myrosinases-lectin-jacalin	Chloroplast			
+Cre12.g526427			Chloroplast			
+Cre12.g527950			Secretory pathway	GO:0030259;GO:0016758;GO:0005975	"lipid glycosylation;transferase activity, transferring hexosyl groups;carbohydrate metabolic process"	
+Cre12.g546877						
+Cre12.g556100				GO:0005515	protein binding	SPAG1
+Cre12.g516400	GMM:27.4;GMM:27.3.99	RNA.RNA binding;RNA.regulation of transcription.unclassified				
+Cre12.g496150	GMM:29.5	protein.degradation	Chloroplast	GO:0005524	ATP binding	
+Cre12.g492250			Mitochondrion			TRZ3
+Cre12.g514500	GMM:29.2.1.2.1.11	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S11		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS11
+Cre12.g552050			Chloroplast			
+Cre12.g526051			Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g550000						
+Cre12.g555850						
+Cre12.g511200	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOS5
+Cre12.g522450	GMM:29.3.4.99	protein.targeting.secretory pathway.unspecified	Secretory pathway			SEC31
+Cre12.g553100			Mitochondrion			
+Cre12.g521800			Mitochondrion			
+Cre12.g542050			Chloroplast			
+Cre12.g493350						
+Cre12.g501703			Secretory pathway			
+Cre12.g539650	GMM:26.16	misc.myrosinases-lectin-jacalin	Secretory pathway	GO:0055114	oxidation-reduction process	
+Cre12.g550400	GMM:21.4	redox.glutaredoxins		GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	GRX2
+Cre12.g542550			Secretory pathway	GO:0008270	zinc ion binding	
+Cre12.g501750						
+Cre12.g541050			Secretory pathway			
+Cre12.g527550						
+Cre12.g545750	GMM:29.4.1	protein.postranslational modification.kinase	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g559555	GMM:11.8.10	"lipid metabolism.exotics (steroids, squalene etc).phosphatidylcholine-sterol O-acyltransferase"	Mitochondrion	GO:0008374;GO:0006629	O-acyltransferase activity;lipid metabolic process	
+Cre12.g554450			Mitochondrion			
+Cre12.g504250	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre12.g536350						
+Cre12.g486209	GMM:20.2.1	stress.abiotic.heat				
+Cre12.g485438				GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	
+Cre12.g545500						
+Cre12.g525000				GO:0055114	oxidation-reduction process	
+Cre12.g547150						
+Cre12.g544600			Secretory pathway			
+Cre12.g514050	GMM:12.2.1.1	N-metabolism.ammonia metabolism.glutamate synthase.ferredoxin dependent	Chloroplast	GO:0055114;GO:0016638;GO:0016491;GO:0015930;GO:0008152;GO:0006807;GO:0006537	"oxidation-reduction process;oxidoreductase activity, acting on the CH-NH2 group of donors;oxidoreductase activity;glutamate synthase activity;metabolic process;nitrogen compound metabolic process;glutamate biosynthetic process"	GSF1
+Cre12.g493950	GMM:29.2.1.1.1.1.13	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S13	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735;GO:0003723	translation;ribosome;intracellular;structural constituent of ribosome;RNA binding	PRPS13
+Cre12.g550750			Mitochondrion			
+Cre12.g534945			Secretory pathway			
+Cre12.g518000	GMM:29.3.3	protein.targeting.chloroplast		GO:0017038;GO:0016020;GO:0005524	protein import;membrane;ATP binding	SECA2
+Cre12.g523400						
+Cre12.g538550			Mitochondrion			
+Cre12.g507002			Secretory pathway			
+Cre12.g518900	GMM:3.5	minor CHO metabolism.others	Chloroplast			
+Cre12.g540350	GMM:27.3.99	RNA.regulation of transcription.unclassified	Secretory pathway	GO:0030014;GO:0006402	CCR4-NOT complex;mRNA catabolic process	RCD2
+Cre12.g551200			Chloroplast	GO:2001070	starch binding	
+Cre12.g551550			Chloroplast	GO:0008270;GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0003676;GO:0000723	zinc ion binding;DNA repair;ATP binding;helicase activity;DNA helicase activity;nucleic acid binding;telomere maintenance	
+Cre12.g528450	GMM:13.2.1.2	amino acid metabolism.degradation.central amino acid metabolism.aspartate	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	ASO1
+Cre12.g509450			Secretory pathway			
+Cre12.g517050						FAP117
+Cre12.g489001	GMM:29.4	protein.postranslational modification				
+Cre12.g548391			Chloroplast			
+Cre12.g505950	GMM:34.9;GMM:29.3.99	transport.metabolite transporters at the mitochondrial membrane;protein.targeting.unknown	Mitochondrion	GO:0015031;GO:0005744;GO:0005743	protein transport;mitochondrial inner membrane presequence translocase complex;mitochondrial inner membrane	TIM50
+Cre12.g551950			Chloroplast			CGL38
+Cre12.g506850						
+Cre12.g489900	GMM:30.1.1;GMM:23.1.2	signalling.in sugar and nutrient physiology.misc;nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG54
+Cre12.g540500	GMM:31.1	cell.organisation		GO:0016559;GO:0005779	peroxisome fission;integral component of peroxisomal membrane	CGL108
+Cre12.g524300	GMM:35.1.27	not assigned.no ontology.tetratricopeptide repeat (TPR)	Chloroplast			CGL71
+Cre12.g523300	GMM:29.7	protein.glycosylation	Secretory pathway	GO:0016021;GO:0006486;GO:0005783;GO:0004579	integral component of membrane;protein glycosylation;endoplasmic reticulum;dolichyl-diphosphooligosaccharide-protein glycotransferase activity	GTR22
+Cre12.g531350			Mitochondrion			CGL62
+Cre12.g502901	GMM:30.2.12;GMM:30.2.11	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI	Mitochondrion			
+Cre12.g512250	GMM:28.1	DNA.synthesis/chromatin structure		GO:0008408;GO:0006139;GO:0005622;GO:0003676	3'-5' exonuclease activity;nucleobase-containing compound metabolic process;intracellular;nucleic acid binding	RRP7
+Cre12.g526150			Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g518107	GMM:31.6.1.10;GMM:27.3.67	cell.motility.eukaryotes.flagellar associated proteins;RNA.regulation of transcription.putative transcription regulator				
+Cre12.g528650			Chloroplast			
+Cre12.g500715	GMM:11.1.9	lipid metabolism.FA synthesis and FA elongation.long chain fatty acid CoA ligase	Chloroplast	GO:0008152;GO:0003824	metabolic process;catalytic activity	
+Cre12.g498050	GMM:27.1.3.4;GMM:27.1	RNA.processing.3' end processing.CPSF73a;RNA.processing				CPS3
+Cre12.g541300	GMM:33.99;GMM:31.1;GMM:29.5.9	development.unspecified;cell.organisation;protein.degradation.AAA type	Mitochondrion	GO:0005524	ATP binding	
+Cre12.g539100	GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL57
+Cre12.g484800	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g545100			Mitochondrion			
+Cre12.g489850	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre12.g519950	GMM:31.6.1.6.2;GMM:23.4.1	cell.motility.eukaryotes.central pair.C1b;nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase		GO:0019205;GO:0006508;GO:0006139;GO:0005622;GO:0005524;GO:0004198	nucleobase-containing compound kinase activity;proteolysis;nucleobase-containing compound metabolic process;intracellular;ATP binding;calcium-dependent cysteine-type endopeptidase activity	FAP42
+Cre12.g527700	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG19
+Cre12.g527400	GMM:4.1.12	glycolysis.cytosolic branch.phosphoglycerate mutase		GO:0046872;GO:0046537;GO:0003824	"metal ion binding;2,3-bisphosphoglycerate-independent phosphoglycerate mutase activity;catalytic activity"	PGM9
+Cre12.g541252						
+Cre12.g550500						
+Cre12.g493750	GMM:29.4	protein.postranslational modification	Secretory pathway			
+Cre12.g509350			Chloroplast			FAP238
+Cre12.g513852						
+Cre12.g559704			Mitochondrion			
+Cre12.g556300	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				CFAP300
+Cre12.g551503			Mitochondrion			
+Cre12.g556650	GMM:31.2;GMM:29.5.11.4.4	cell.division;protein.degradation.ubiquitin.E3.APC		GO:0031145;GO:0030071;GO:0005680	anaphase-promoting complex-dependent proteasomal ubiquitin-dependent protein catabolic process;regulation of mitotic metaphase/anaphase transition;anaphase-promoting complex	APC4
+Cre12.g528400	GMM:29.5.11.4.2;GMM:27.3.11	protein.degradation.ubiquitin.E3.RING;RNA.regulation of transcription.C2H2 zinc finger family				
+Cre12.g497300	GMM:3.3;GMM:1.1.40	minor CHO metabolism.sugar alcohols;PS.lightreaction.cyclic electron flow-chlororespiration	Chloroplast			CAS1
+Cre12.g497750	GMM:3.2.2	minor CHO metabolism.trehalose.TPP	Mitochondrion	GO:0005992;GO:0003824	trehalose biosynthetic process;catalytic activity	TPS2
+Cre12.g506500	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR19
+Cre12.g550800	GMM:28.2;GMM:28.1	DNA.repair;DNA.synthesis/chromatin structure	Mitochondrion	GO:0006281;GO:0003684	DNA repair;damaged DNA binding	REV1
+Cre12.g543650			Mitochondrion			
+Cre12.g546500			Secretory pathway	GO:0016021	integral component of membrane	TEF22
+Cre12.g533950	GMM:34.12	transport.metal	Mitochondrion			COT1
+Cre12.g514100				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g503650			Mitochondrion			
+Cre12.g489700	GMM:13.1.2.3.21;GMM:13.1.2.3	amino acid metabolism.synthesis.glutamate family.arginine.ornithine carbamoyltransferase;amino acid metabolism.synthesis.glutamate family.arginine	Chloroplast	GO:0016743;GO:0016597;GO:0006520	carboxyl- or carbamoyltransferase activity;amino acid binding;cellular amino acid metabolic process	OTC1
+Cre12.g495000						
+Cre12.g491300			Chloroplast			
+Cre12.g499450						
+Cre12.g517925			Mitochondrion			
+Cre12.g528050			Chloroplast			
+Cre12.g505900			Secretory pathway			
+Cre12.g507004			Secretory pathway			
+Cre12.g521500						
+Cre12.g538376			Mitochondrion			
+Cre12.g506851	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	BBS3A
+Cre12.g522250	GMM:26.17	misc.dynamin				
+Cre12.g513254	GMM:28.2	DNA.repair				
+Cre12.g517200						
+Cre12.g484150	GMM:26.13;GMM:15.2	"misc.acid and other phosphatases;metal handling.binding, chelation and storage"				
+Cre12.g558800						
+Cre12.g544662			Secretory pathway			
+Cre12.g524150	GMM:28.2	DNA.repair		GO:0006281;GO:0003684	DNA repair;damaged DNA binding	POLH2
+Cre12.g485418						
+Cre12.g515100			Mitochondrion			
+Cre12.g546633			Mitochondrion			
+Cre12.g545400						
+Cre12.g496700	GMM:21.1	redox.thioredoxin	Chloroplast	GO:0045454;GO:0015035;GO:0006662	cell redox homeostasis;protein disulfide oxidoreductase activity;glycerol ether metabolic process	TRX17
+Cre12.g539076			Mitochondrion			
+Cre12.g559750	GMM:20.2.99;GMM:20.1.7;GMM:20.1;GMM:2.1	stress.abiotic.unspecified;stress.biotic.PR-proteins;stress.biotic;major CHO metabolism.synthesis	Secretory pathway			PRL2
+Cre12.g557950	GMM:29.9;GMM:20.2.1	protein.co-chaperones;stress.abiotic.heat	Cytosol			DNJ27
+Cre12.g508000	GMM:29.3.3	protein.targeting.chloroplast	Chloroplast.Membrane.Inner			TIC40
+Cre12.g493200			Mitochondrion			
+Cre12.g539181						
+Cre12.g500250						
+Cre12.g503050			Secretory pathway			
+Cre12.g507450	GMM:31.4	cell.vesicle transport		GO:0005515	protein binding	SYP4
+Cre12.g524700						HAD4
+Cre12.g518200	GMM:21.1.1;GMM:21.1	redox.thioredoxin.PDIL;redox.thioredoxin	Secretory pathway	GO:0045454	cell redox homeostasis	DNJ3
+Cre12.g494150			Chloroplast			
+Cre12.g518750	GMM:27.1.1	RNA.processing.splicing	Secretory pathway			
+Cre12.g513350			Secretory pathway			
+Cre12.g515400						
+Cre12.g495138			Secretory pathway			
+Cre12.g517550	GMM:27.1	RNA.processing				
+Cre12.g483550	GMM:29.5.3;GMM:29.3.4.3	protein.degradation.cysteine protease;protein.targeting.secretory pathway.vacuole	Mitochondrion	GO:0008233;GO:0006508	peptidase activity;proteolysis	VPE1
+Cre12.g550250	GMM:27.3.17	RNA.regulation of transcription.CPP(Zn) CPP1-related transcription factor family	Secretory pathway			
+Cre12.g546000			Mitochondrion			MRPL54
+Cre12.g540502			Secretory pathway			
+Cre12.g547800	GMM:26.11.1;GMM:26.11;GMM:16.8.3	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols		GO:0055114;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	SNE15
+Cre12.g499300	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc	Chloroplast	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE31
+Cre12.g485350						
+Cre12.g485950	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family	Secretory pathway			
+Cre12.g522700			Secretory pathway			
+Cre12.g558450	GMM:22.1.6	polyamine metabolism.synthesis.spermidine synthase				SPD1
+Cre12.g532300			Chloroplast			ATG10
+Cre12.g483850						
+Cre12.g508700	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases		GO:0016021;GO:0015012;GO:0006024	integral component of membrane;heparan sulfate proteoglycan biosynthetic process;glycosaminoglycan biosynthetic process	ELG2
+Cre12.g519350	GMM:31.3;GMM:31.2	cell.cycle;cell.division		GO:0016020	membrane	PHB2
+Cre12.g545550			Chloroplast			
+Cre12.g505151						
+Cre12.g495600						
+Cre12.g499650						
+Cre12.g511900	GMM:1.3.11	PS.calvin cycle.RPE	Chloroplast	GO:0016857;GO:0005975	"racemase and epimerase activity, acting on carbohydrates and derivatives;carbohydrate metabolic process"	RPE1
+Cre12.g498300			Chloroplast			
+Cre12.g518950	GMM:4.1.12;GMM:26.13	glycolysis.cytosolic branch.phosphoglycerate mutase;misc.acid and other phosphatases				PGM13
+Cre12.g487402						CSB43
+Cre12.g549400			Chloroplast			
+Cre12.g532100						
+Cre12.g544850						
+Cre12.g522500			Mitochondrion			
+Cre12.g485750						CGL128
+Cre12.g545177	GMM:31.2	cell.division	Mitochondrion	GO:0006412	translation	
+Cre12.g500900	GMM:27.3.67	RNA.regulation of transcription.putative transcription regulator		GO:0031668;GO:0019789;GO:0016925;GO:0016049;GO:0008270;GO:0005634;GO:0005515	cellular response to extracellular stimulus;SUMO transferase activity;protein sumoylation;cell growth;zinc ion binding;nucleus;protein binding	
+Cre12.g556905	GMM:28.2	DNA.repair	Chloroplast			
+Cre12.g542800	GMM:27.2	RNA.transcription		GO:0032549;GO:0006351;GO:0003899;GO:0003677	"ribonucleoside binding;transcription, DNA-templated;DNA-directed RNA polymerase activity;DNA binding"	RPC2
+Cre12.g507150						
+Cre12.g543100	GMM:29.2.3	protein.synthesis.initiation		GO:0031515;GO:0030488	tRNA (m1A) methyltransferase complex;tRNA methylation	
+Cre12.g486800						
+Cre12.g525350			Secretory pathway			
+Cre12.g501550			Chloroplast			
+Cre12.g502950	GMM:35.1.14	not assigned.no ontology.S RNA-binding domain-containing protein		GO:0003723	RNA binding	CPL15
+Cre12.g540950			Chloroplast			
+Cre12.g499000						
+Cre12.g527050	GMM:34.99;GMM:29.3.4.99;GMM:28.99	transport.misc;protein.targeting.secretory pathway.unspecified;DNA.unspecified				
+Cre12.g561602						
+Cre12.g556600	GMM:4.1.9	glycolysis.cytosolic branch.non-phosphorylating glyceraldehyde 3-phosphate dehydrogenase (NPGAP-DH)		GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	GAPN1
+Cre12.g551501						
+Cre12.g537350			Secretory pathway			NZP1
+Cre12.g510750			Mitochondrion			
+Cre12.g530050	GMM:3.4.5;GMM:28.1	minor CHO metabolism.myo-inositol.inositol phosphatase;DNA.synthesis/chromatin structure	Mitochondrion			
+Cre12.g561300			Chloroplast	GO:0005815	microtubule organizing center	
+Cre12.g549200						
+Cre12.g559550			Chloroplast			
+Cre12.g537900						
+Cre12.g516300						CGL154
+Cre12.g488351			Secretory pathway			
+Cre12.g544113			Mitochondrion	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	
+Cre12.g533550	GMM:4.3.14;GMM:4.2.14;GMM:4.1.14;GMM:11.1.30	glycolysis.unclear/dually targeted.pyruvate kinase (PK);glycolysis.plastid branch.pyruvate kinase (PK);glycolysis.cytosolic branch.pyruvate kinase (PK);lipid metabolism.FA synthesis and FA elongation.pyruvate kinase		GO:0030955;GO:0006096;GO:0004743;GO:0000287	potassium ion binding;glycolytic process;pyruvate kinase activity;magnesium ion binding	PYK1
+Cre12.g555050	GMM:28.1	DNA.synthesis/chromatin structure		GO:0004518;GO:0003677	nuclease activity;DNA binding	MUS81
+Cre12.g525450						
+Cre12.g512400				GO:0008134;GO:0006355;GO:0005524	"transcription factor binding;regulation of transcription, DNA-templated;ATP binding"	
+Cre12.g492350						
+Cre12.g503400	GMM:27.1.1;GMM:27.1	RNA.processing.splicing;RNA.processing				PRP38
+Cre12.g537400	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g555300			Mitochondrion			
+Cre12.g545703			Chloroplast			
+Cre12.g526383				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g484500	GMM:31.1	cell.organisation				
+Cre12.g505650						
+Cre12.g542750						
+Cre12.g520700						
+Cre12.g505800	GMM:30.99;GMM:27.3.67	signalling.unspecified;RNA.regulation of transcription.putative transcription regulator		GO:0055085;GO:0016020	transmembrane transport;membrane	MSC6
+Cre12.g500050				GO:0005515	protein binding	
+Cre12.g517850	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0008270	zinc ion binding	
+Cre12.g521000			Chloroplast			
+Cre12.g553700				GO:0015035	protein disulfide oxidoreductase activity	PDO2
+Cre12.g507650	GMM:29.9;GMM:29.6.2.6;GMM:20.2.1	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;stress.abiotic.heat	Chloroplast	GO:0051082;GO:0031072	unfolded protein binding;heat shock protein binding	CDJ1
+Cre12.g527800	GMM:31.6.1.4.1;GMM:31.1	cell.motility.eukaryotes.axonemal dyneins.outer arm;cell.organisation		GO:0007017;GO:0005875	microtubule-based process;microtubule associated complex	DLL3
+Cre12.g486450			Chloroplast			
+Cre12.g507333						
+Cre12.g559150	GMM:29.5	protein.degradation	Chloroplast	GO:0030163	protein catabolic process	CLPS2
+Cre12.g551250	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g530900	GMM:34.16	transport.ABC transporters and multidrug resistance systems		GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre12.g535050	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Mitochondrion	GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity	
+Cre12.g508500	GMM:29.5.7	protein.degradation.metalloprotease	Secretory pathway			
+Cre12.g532500	GMM:34.14	transport.unspecified cations	Chloroplast	GO:0016020	membrane	
+Cre12.g517976						
+Cre12.g548650						BBS4
+Cre12.g539201			Secretory pathway			
+Cre12.g491951			Secretory pathway			
+Cre12.g502400			Secretory pathway			
+Cre12.g514550			Chloroplast			
+Cre12.g486851			Chloroplast			
+Cre12.g520600	GMM:29.2.1.99.1.6	protein.synthesis.ribosomal protein.unknown.small subunit.S6	Chloroplast	GO:0019843;GO:0006412;GO:0005840;GO:0003735	rRNA binding;translation;ribosome;structural constituent of ribosome	PRPS6
+Cre12.g511750						FAP105
+Cre12.g490800	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g510550	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family	Chloroplast	GO:0005515	protein binding	
+Cre12.g490250	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation				
+Cre12.g546850	GMM:27.3.6	RNA.regulation of transcription.basic helix-loop-helix family (bHLH)	Mitochondrion	GO:0016021	integral component of membrane	
+Cre12.g526701	GMM:34.14	transport.unspecified cations	Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	RBL9
+Cre12.g542500	GMM:27.2	RNA.transcription	Mitochondrion	GO:0006355;GO:0005739;GO:0003690	"regulation of transcription, DNA-templated;mitochondrion;double-stranded DNA binding"	MOC1
+Cre12.g519150	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING		GO:0016567;GO:0005515;GO:0004842	protein ubiquitination;protein binding;ubiquitin-protein transferase activity	
+Cre12.g553500			Mitochondrion			ANK15
+Cre12.g555750			Secretory pathway			CPK7
+Cre12.g558550	GMM:28.2	DNA.repair	Chloroplast			CPLD60
+Cre12.g541800	GMM:29.5	protein.degradation	Chloroplast	GO:0070008;GO:0008236;GO:0006508;GO:0004252	serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity	
+Cre12.g544750			Chloroplast			
+Cre12.g488752						
+Cre12.g525100	GMM:31.2	cell.division				SMC6B
+Cre12.g501702						
+Cre12.g554750				GO:0005515	protein binding	
+Cre12.g538650	GMM:19.30;GMM:19.3	tetrapyrrole synthesis.urogen III methylase;tetrapyrrole synthesis.GSA	Mitochondrion	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	HEM4
+Cre12.g556000			Secretory pathway			ECP88
+Cre12.g495900			Mitochondrion			
+Cre12.g535900	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	ARL1
+Cre12.g542350	GMM:20	stress		GO:0006950	response to stress	
+Cre12.g522000			Mitochondrion;Chloroplast			
+Cre12.g526200			Chloroplast			
+Cre12.g498450	GMM:31.2;GMM:27.3.99;GMM:20.2.5	cell.division;RNA.regulation of transcription.unclassified;stress.abiotic.light				
+Cre12.g532600	GMM:3.5	minor CHO metabolism.others	Chloroplast			CGL44
+Cre12.g541600			Chloroplast			
+Cre12.g531950	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	
+Cre12.g537200	GMM:8.1.5	TCA / organic transformation.TCA.2-oxoglutarate dehydrogenase	Mitochondrion	GO:0055114;GO:0030976;GO:0016624;GO:0008152;GO:0006099;GO:0004591	"oxidation-reduction process;thiamine pyrophosphate binding;oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor;metabolic process;tricarboxylic acid cycle;oxoglutarate dehydrogenase (succinyl-transferring) activity"	OGD1
+Cre12.g504150	GMM:29.8	protein.assembly and cofactor ligation	Mitochondrion	GO:0051536;GO:0016226;GO:0005506	iron-sulfur cluster binding;iron-sulfur cluster assembly;iron ion binding	NFU2
+Cre12.g526388						
+Cre12.g536251						
+Cre12.g544551						
+Cre12.g509800	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP286
+Cre12.g544200	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Mitochondrion	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN13
+Cre12.g530150			Mitochondrion			
+Cre12.g528950	GMM:27.4	RNA.RNA binding		GO:0003723	RNA binding	PUF1
+Cre12.g520800						
+Cre12.g537750	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others				
+Cre12.g512050				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g532850			Secretory pathway	GO:0016020;GO:0004970	membrane;ionotropic glutamate receptor activity	PHR3
+Cre12.g560700	GMM:29.9;GMM:29.6.2.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones	Mitochondrion			CDJ6
+Cre12.g515600			Secretory pathway			
+Cre12.g551700						
+Cre12.g528150			Secretory pathway			OST3
+Cre12.g520150	GMM:27.1.2	RNA.processing.RNA helicase		GO:0005524;GO:0004386;GO:0003676	ATP binding;helicase activity;nucleic acid binding	
+Cre12.g558353			Secretory pathway			
+Cre12.g513750	GMM:21.4	redox.glutaredoxins		GO:0045454;GO:0015035;GO:0009055	cell redox homeostasis;protein disulfide oxidoreductase activity;electron carrier activity	GRX1
+Cre12.g548577						
+Cre12.g531700	GMM:23.2	nucleotide metabolism.degradation	Mitochondrion	GO:0032264;GO:0019239;GO:0003876	IMP salvage;deaminase activity;AMP deaminase activity	
+Cre12.g502650						
+Cre12.g548300			Secretory pathway			
+Cre12.g530450	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway			
+Cre12.g492954			Mitochondrion			
+Cre12.g552827	GMM:29.5.7	protein.degradation.metalloprotease				umm15
+Cre12.g490350	GMM:16.1.1.6	secondary metabolism.isoprenoids.non-mevalonate pathway.HDS		GO:0055114;GO:0046429;GO:0016114	oxidation-reduction process;4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase activity;terpenoid biosynthetic process	HDS1
+Cre12.g540100						
+Cre12.g523500	GMM:9.1.2;GMM:29.5	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;protein.degradation	Secretory pathway			DER1
+Cre12.g532350	GMM:29.5.7	protein.degradation.metalloprotease		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CAV8
+Cre12.g540450						
+Cre12.g536600	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				FAP78
+Cre12.g524600			Secretory pathway			
+Cre12.g507001						
+Cre12.g520100	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG66
+Cre12.g526471						
+Cre12.g523250	GMM:34.99;GMM:34.16	transport.misc;transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	
+Cre12.g496302						
+Cre12.g498150						
+Cre12.g536450			Chloroplast			
+Cre12.g506050	GMM:27.1.3.8	RNA.processing.3' end processing.CstF77		GO:0006397;GO:0005634	mRNA processing;nucleus	
+Cre12.g531250			Mitochondrion	GO:0071949	FAD binding	
+Cre12.g495100	GMM:27.3.26;GMM:27.3.25;GMM:27.3.20	RNA.regulation of transcription.MYB-related transcription factor family;RNA.regulation of transcription.MYB domain transcription factor family;RNA.regulation of transcription.G2-like transcription factor family (GARP)				PSR1
+Cre12.g524250			Chloroplast			
+Cre12.g547700	GMM:27.3.3;GMM:17.5.2	"RNA.regulation of transcription.AP2/EREBP, APETALA2/ethylene-responsive element binding protein family;hormone metabolism.ethylene.signal transduction"		GO:0006464	cellular protein modification process	TTL14
+Cre12.g558600						
+Cre12.g487900	GMM:21.99	redox.misc		GO:0051536;GO:0009055	iron-sulfur cluster binding;electron carrier activity	FDX9
+Cre12.g484600	GMM:27.3.46	RNA.regulation of transcription.DNA methyltransferases	Chloroplast			DMC6
+Cre12.g495958						
+Cre12.g557400	GMM:28.2	DNA.repair		GO:0006289;GO:0005634;GO:0003684;GO:0003677	nucleotide-excision repair;nucleus;damaged DNA binding;DNA binding	
+Cre12.g559300			Chloroplast			ARM1
+Cre12.g519450	GMM:11.6	lipid metabolism.lipid transfer proteins etc		GO:0051861;GO:0046836;GO:0017089;GO:0005737	glycolipid binding;glycolipid transport;glycolipid transporter activity;cytoplasm	
+Cre12.g526500				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g534876						
+Cre12.g550150						
+Cre12.g497150						
+Cre12.g554103			Mitochondrion	GO:0005515	protein binding	CGL74
+Cre12.g515000			Mitochondrion			
+Cre12.g537671	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors		GO:0008270;GO:0005524	zinc ion binding;ATP binding	
+Cre12.g503900			Chloroplast			
+Cre12.g518800			Secretory pathway			
+Cre12.g519050			Chloroplast			
+Cre12.g495500			Chloroplast			
+Cre12.g553650				GO:0015035	protein disulfide oxidoreductase activity	
+Cre12.g507350						
+Cre12.g524350				GO:0030896;GO:0006281;GO:0000077	checkpoint clamp complex;DNA repair;DNA damage checkpoint	HUS1
+Cre12.g501800						
+Cre12.g539209			Mitochondrion			
+Cre12.g519750			Mitochondrion			
+Cre12.g552500			Chloroplast			
+Cre12.g533100			Secretory pathway			
+Cre12.g530100						CGL83
+Cre12.g489650			Mitochondrion			
+Cre12.g493500	GMM:13.1.5.2.41	amino acid metabolism.synthesis.serine-glycine-cysteine group.glycine.sarcosine oxidase	Chloroplast	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	SOX1
+Cre12.g548201						
+Cre12.g493450						
+Cre12.g531600			Secretory pathway			
+Cre12.g548750						
+Cre12.g523200	GMM:33.99	development.unspecified		GO:0005515	protein binding	NURF55
+Cre12.g551352						
+Cre12.g547351			Mitochondrion	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	
+Cre12.g547302			Secretory pathway			
+Cre12.g507909			Mitochondrion			
+Cre12.g561000	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins	Chloroplast	GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN28
+Cre12.g550468			Mitochondrion			
+Cre12.g516950	GMM:31.6.1.1	cell.motility.eukaryotes.basal bodies				SAS6
+Cre12.g531150						
+Cre12.g509550	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE5
+Cre12.g500400						
+Cre12.g497900			Secretory pathway			
+Cre12.g507558			Chloroplast	GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	
+Cre12.g534151	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006281;GO:0004518	DNA repair;nuclease activity	
+Cre12.g489050	GMM:11.3.3;GMM:11.3	lipid metabolism.phospholipid synthesis.phosphatidate cytidylyltransferase;lipid metabolism.phospholipid synthesis				PCT2
+Cre12.g507007			Mitochondrion			
+Cre12.g544952						
+Cre12.g511640			Secretory pathway	GO:0006506;GO:0005789	GPI anchor biosynthetic process;endoplasmic reticulum membrane	PIGX
+Cre12.g517451	GMM:29.5	protein.degradation		GO:0006508;GO:0004197	proteolysis;cysteine-type endopeptidase activity	
+Cre12.g529725			Secretory pathway			
+Cre12.g521650	GMM:11.7	lipid metabolism.unassigned	Chloroplast	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	
+Cre12.g532867						
+Cre12.g560300	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre12.g526295				GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g522800						
+Cre12.g492850			Secretory pathway			
+Cre12.g490000	GMM:29.2.3	protein.synthesis.initiation		GO:0005850;GO:0003743;GO:0003723;GO:0003676	eukaryotic translation initiation factor 2 complex;translation initiation factor activity;RNA binding;nucleic acid binding	EIF2A
+Cre12.g492152						
+Cre12.g515301			Mitochondrion			
+Cre12.g521400				GO:0009236;GO:0003824	cobalamin biosynthetic process;catalytic activity	
+Cre12.g483476			Mitochondrion			
+Cre12.g557500			Secretory pathway	GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	
+Cre12.g514250	GMM:27.3.57	RNA.regulation of transcription.JUMONJI family		GO:0055114;GO:0016706;GO:0005515;GO:0003677	"oxidation-reduction process;oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors;protein binding;DNA binding"	HLM17
+Cre12.g560400	GMM:27.4	RNA.RNA binding	Chloroplast	GO:0003723	RNA binding	DNJ16
+Cre12.g525550				GO:0016787	hydrolase activity	MPA10
+Cre12.g530000	GMM:30.6;GMM:3.6	signalling.MAP kinases;minor CHO metabolism.callose		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g489150						SHD1
+Cre12.g529250						
+Cre12.g508853						BPL2
+Cre12.g529200			Mitochondrion			
+Cre12.g522626			Mitochondrion			
+Cre12.g542627			Mitochondrion			
+Cre12.g552850	GMM:13.2.5.2	amino acid metabolism.degradation.serine-glycine-cysteine group.glycine	Mitochondrion			CGL77
+Cre12.g522100	GMM:34.99;GMM:29.3.4.99	transport.misc;protein.targeting.secretory pathway.unspecified				
+Cre12.g518100						
+Cre12.g505200	GMM:29.2.3;GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2	protein.synthesis.initiation;protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0005524;GO:0003676	ATP binding;nucleic acid binding	HEL51
+Cre12.g538450	GMM:26.1;GMM:11.3	misc.misc2;lipid metabolism.phospholipid synthesis	Secretory pathway	GO:0016780;GO:0016020;GO:0008654	"phosphotransferase activity, for other substituted phosphate groups;membrane;phospholipid biosynthetic process"	EPT1
+Cre12.g528600						CSB47
+Cre12.g543050						
+Cre12.g543302	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	
+Cre12.g495300	GMM:13.1.7.4;GMM:13.1.7.3	amino acid metabolism.synthesis.histidine.bifunctional phosphoribosyl-ATP pyrophosphatase / phosphoribosyl-AMP cyclohydrolase;amino acid metabolism.synthesis.histidine.phosphoribosyl-AMP cyclohydrolase	Chloroplast	GO:0000105	histidine biosynthetic process	HIS6
+Cre12.g485478						
+Cre12.g487250	GMM:27.3.99;GMM:20.1;GMM:2.1	RNA.regulation of transcription.unclassified;stress.biotic;major CHO metabolism.synthesis	Mitochondrion			
+Cre12.g507250	GMM:31.2;GMM:27.1.19	cell.division;RNA.processing.ribonucleases				
+Cre12.g538492			Mitochondrion			
+Cre12.g545950	GMM:30.2.23;GMM:29.4.1.57;GMM:29.4.1.56;GMM:29.4.1;GMM:29.4	signalling.receptor kinases.RKF3 like;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VII;protein.postranslational modification.kinase.receptor like cytoplasmatic kinase VI;protein.postranslational modification.kinase;protein.postranslational modification	Secretory pathway	GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	MAPKKK9
+Cre12.g527300	GMM:28.1	DNA.synthesis/chromatin structure		GO:0005524	ATP binding	RFC5
+Cre12.g510600	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g530950	GMM:33.1	development.storage proteins		GO:0006629	lipid metabolic process	TGL18
+Cre12.g492400						
+Cre12.g531850			Chloroplast			
+Cre12.g555650			Chloroplast			
+Cre12.g498850	GMM:29.5.3	protein.degradation.cysteine protease	Secretory pathway	GO:0008234;GO:0006508	cysteine-type peptidase activity;proteolysis	CEP12
+Cre12.g510252			Mitochondrion			
+Cre12.g541352	GMM:11.9.2.1;GMM:11.9.2	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase;lipid metabolism.lipid degradation.lipases	Secretory pathway	GO:0006629	lipid metabolic process	LIP1
+Cre12.g488550						
+Cre12.g524850			Mitochondrion			
+Cre12.g501050	GMM:27.1	RNA.processing				ALD6
+Cre12.g508233			Secretory pathway			
+Cre12.g544300						
+Cre12.g494800						DII1
+Cre12.g561500			Chloroplast			
+Cre12.g499100	GMM:29.3.4.2	protein.targeting.secretory pathway.golgi		GO:0005515;GO:0000042	protein binding;protein targeting to Golgi	
+Cre12.g497000						FAP14
+Cre12.g512350			Mitochondrion			
+Cre12.g486700						FAP271
+Cre12.g541850						
+Cre12.g504600	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO15
+Cre12.g555951	GMM:23.5.3	nucleotide metabolism.deoxynucleotide metabolism.cytosine deaminase		GO:0008270	zinc ion binding	RFD1
+Cre12.g545704						
+Cre12.g527100	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Secretory pathway	GO:0016887;GO:0005524	ATPase activity;ATP binding	
+Cre12.g511000			Mitochondrion			
+Cre12.g496500			Secretory pathway			PHC70
+Cre12.g501250						
+Cre12.g524950	GMM:33.99;GMM:3.5	development.unspecified;minor CHO metabolism.others	Mitochondrion	GO:0005525	GTP binding	
+Cre12.g516800	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g559700			Chloroplast			
+Cre12.g521600						
+Cre12.g556800			Mitochondrion			
+Cre12.g508643			Chloroplast			
+Cre12.g530600	GMM:12.2.2	N-metabolism.ammonia metabolism.glutamine synthetase	Chloroplast	GO:0006807;GO:0006542;GO:0004356	nitrogen compound metabolic process;glutamine biosynthetic process;glutamate-ammonia ligase activity	GLN3
+Cre12.g488173			Chloroplast			
+Cre12.g516717			Secretory pathway			
+Cre12.g513450	GMM:31.1	cell.organisation	Mitochondrion	GO:0007017;GO:0005874;GO:0003924	microtubule-based process;microtubule;GTPase activity	TUH1
+Cre12.g484100	GMM:27.2	RNA.transcription				RPC19
+Cre12.g525990			Chloroplast			HCS5
+Cre12.g504400			Mitochondrion			
+Cre12.g526111				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g533700	GMM:27.3.69	RNA.regulation of transcription.SET-domain transcriptional regulator family		GO:0035556;GO:0016849;GO:0009190;GO:0006810;GO:0005215	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process;transport;transporter activity	cya12
+Cre12.g554250			Chloroplast	GO:0070569;GO:0008152	uridylyltransferase activity;metabolic process	LPB1
+Cre12.g511050	GMM:31.6.1.5.2;GMM:20.2.1	cell.motility.eukaryotes.radial spoke.stalk;stress.abiotic.heat				RSP16
+Cre12.g542900	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g541500						
+Cre12.g499750	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre12.g532700						
+Cre12.g549350			Chloroplast			
+Cre12.g528250						FAP379
+Cre12.g537100	GMM:29.1.9;GMM:29.1	protein.aa activation.valine-tRNA ligase;protein.aa activation		GO:0006438;GO:0006418;GO:0005524;GO:0004832;GO:0004812;GO:0000166	valyl-tRNA aminoacylation;tRNA aminoacylation for protein translation;ATP binding;valine-tRNA ligase activity;aminoacyl-tRNA ligase activity;nucleotide binding	TSV2
+Cre12.g555400			Chloroplast			CGLD32
+Cre12.g552005	GMM:29.5.7	protein.degradation.metalloprotease	Mitochondrion			
+Cre12.g550550	GMM:23.1.2	nucleotide metabolism.synthesis.purine	Secretory pathway	GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG48
+Cre12.g513600	GMM:29.5.11.2;GMM:29.4	protein.degradation.ubiquitin.E1;protein.postranslational modification		GO:0005515	protein binding	
+Cre12.g513150	GMM:29.3.2	protein.targeting.mitochondria				MIA40
+Cre12.g559000	GMM:27.1	RNA.processing	Secretory pathway			
+Cre12.g530350	GMM:34.12	transport.metal	Secretory pathway	GO:0055085;GO:0046873;GO:0030001;GO:0016020	transmembrane transport;metal ion transmembrane transporter activity;metal ion transport;membrane	IRT2
+Cre12.g554953	GMM:9.3	mitochondrial electron transport / ATP synthesis.electron transfer flavoprotein		GO:0009055	electron carrier activity	ETF2
+Cre12.g547300	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre12.g519850			Mitochondrion			
+Cre12.g489400	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	PTB7
+Cre12.g486950			Secretory pathway			CSV7
+Cre12.g501403	GMM:3.3	minor CHO metabolism.sugar alcohols	Secretory pathway	GO:0016021;GO:0006952	integral component of membrane;defense response	MLO2
+Cre12.g514800			Chloroplast	GO:0005737	cytoplasm	
+Cre12.g503550	GMM:16.1.1.5	secondary metabolism.isoprenoids.non-mevalonate pathway.MCS	Chloroplast	GO:0016114;GO:0008685	"terpenoid biosynthetic process;2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase activity"	MEC1
+Cre12.g484300						
+Cre12.g516350	GMM:29.8;GMM:19.99	protein.assembly and cofactor ligation;tetrapyrrole synthesis.unspecified	Secretory pathway	GO:0016021;GO:0004659	integral component of membrane;prenyltransferase activity	COX10
+Cre12.g504050			Secretory pathway	GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	LAG2
+Cre12.g490700				GO:0005515	protein binding	MIN1
+Cre12.g538801						
+Cre12.g507550			Chloroplast			OPR3
+Cre12.g503500			Secretory pathway	GO:0016020	membrane	
+Cre12.g499301			Secretory pathway			
+Cre12.g503750						FMO14
+Cre12.g490150	GMM:28.99;GMM:28.1	DNA.unspecified;DNA.synthesis/chromatin structure	Mitochondrion	GO:0043140;GO:0006281;GO:0006260;GO:0005622;GO:0005524;GO:0003676	ATP-dependent 3'-5' DNA helicase activity;DNA repair;DNA replication;intracellular;ATP binding;nucleic acid binding	HEL48
+Cre12.g511950	GMM:30.2.12;GMM:30.2.11;GMM:29.4.1	signalling.receptor kinases.leucine rich repeat XII;signalling.receptor kinases.leucine rich repeat XI;protein.postranslational modification.kinase	Secretory pathway			
+Cre12.g520500	GMM:29.2.1.2.2.80	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.P0		GO:0042254;GO:0005622	ribosome biogenesis;intracellular	RPP0
+Cre12.g501000	GMM:34.8	transport.metabolite transporters at the envelope membrane	Secretory pathway	GO:0055085	transmembrane transport	
+Cre12.g529050			Mitochondrion			
+Cre12.g520950	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm		GO:0005515	protein binding	DIC4
+Cre12.g535250			Mitochondrion			
+Cre12.g502500	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG34
+Cre12.g536000	GMM:34.99;GMM:34.1;GMM:27.3.35	transport.misc;transport.p- and v-ATPases;RNA.regulation of transcription.bZIP transcription factor family		GO:0046872;GO:0016021;GO:0015914;GO:0005524;GO:0004012;GO:0000287;GO:0000166	metal ion binding;integral component of membrane;phospholipid transport;ATP binding;phospholipid-translocating ATPase activity;magnesium ion binding;nucleotide binding	ALA2
+Cre12.g518400			Mitochondrion			
+Cre12.g484900						FAP83
+Cre12.g499550			Chloroplast			
+Cre12.g496550						
+Cre12.g547900	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				MCP27
+Cre12.g558350						
+Cre12.g552100			Chloroplast			
+Cre12.g535500						
+Cre12.g554051	GMM:30.2.8.1;GMM:30.2.20;GMM:30.2.19;GMM:30.2.10;GMM:30.2.1;GMM:29.4	signalling.receptor kinases.leucine rich repeat VIII.type 1;signalling.receptor kinases.wheat LRK10 like;signalling.receptor kinases.legume-lectin;signalling.receptor kinases.leucine rich repeat X;signalling.receptor kinases.leucine rich repeat I;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g494500	GMM:31.3;GMM:31.2;GMM:29.4.1;GMM:29.4	cell.cycle;cell.division;protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	LF2
+Cre12.g516050				GO:0005515	protein binding	
+Cre12.g546027			Secretory pathway			
+Cre12.g558900	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast			PETO
+Cre12.g488500	GMM:20.2.1	stress.abiotic.heat	Chloroplast			ARC6
+Cre12.g549427			Mitochondrion			
+Cre12.g507850			Chloroplast			
+Cre12.g515700			Chloroplast			
+Cre12.g558250				GO:0016192;GO:0016021	vesicle-mediated transport;integral component of membrane	SNR7
+Cre12.g561200						COPZ2
+Cre12.g509100						FAP307
+Cre12.g490650			Mitochondrion			
+Cre12.g544115						
+Cre12.g534400						
+Cre12.g505550	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA17
+Cre12.g514650	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Chloroplast			CNK6
+Cre12.g555001			Mitochondrion			
+Cre12.g548700			Chloroplast			
+Cre12.g510850			Chloroplast			CGL73
+Cre12.g520200			Chloroplast			CPL8
+Cre12.g539750						
+Cre12.g487500			Chloroplast			NYE1
+Cre12.g540051			Secretory pathway			
+Cre12.g553552			Mitochondrion			
+Cre12.g500450	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion			TPD1
+Cre12.g487600	GMM:27.1.3.3;GMM:27.1	RNA.processing.3' end processing.CPSF100;RNA.processing		GO:0006379;GO:0006378;GO:0005847	mRNA cleavage;mRNA polyadenylation;mRNA cleavage and polyadenylation specificity factor complex	CPS2
+Cre12.g546150	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast	GO:0009512	cytochrome b6f complex	PETM
+Cre12.g546700	GMM:27.4	RNA.RNA binding		GO:0003676	nucleic acid binding	
+Cre12.g527918						
+Cre12.g532950				GO:0016020;GO:0004970	membrane;ionotropic glutamate receptor activity	
+Cre12.g514350						
+Cre12.g550277	GMM:34.14	transport.unspecified cations				MRS2
+Cre12.g511850	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0004672	protein phosphorylation;protein kinase activity	GSK3
+Cre12.g531800	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			FAP7
+Cre12.g506250	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA18
+Cre12.g533900						
+Cre12.g522300			Secretory pathway			
+Cre12.g491200			Secretory pathway			
+Cre12.g552950						
+Cre12.g522650						
+Cre12.g515901			Chloroplast			
+Cre12.g538400	GMM:27.2	RNA.transcription		GO:0006351;GO:0003899	"transcription, DNA-templated;DNA-directed RNA polymerase activity"	RPB4
+Cre12.g520450						SGT1
+Cre12.g547650						
+Cre12.g534700	GMM:29.6.3.1	protein.folding.immunophilins (IMM).FKBPs	Secretory pathway	GO:0006457	protein folding	FKB19
+Cre12.g495401	GMM:29.4	protein.postranslational modification	Chloroplast			
+Cre12.g493150	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast.Stroma.Thylakoid.Membrane			VKE1
+Cre12.g486208			Mitochondrion			
+Cre12.g539206			Mitochondrion			
+Cre12.g499950				GO:0016788;GO:0006886;GO:0006505	"hydrolase activity, acting on ester bonds;intracellular protein transport;GPI anchor metabolic process"	CPL18
+Cre12.g557750	GMM:11.4	lipid metabolism.TAG synthesis	Secretory pathway	GO:0016747	"transferase activity, transferring acyl groups other than amino-acyl groups"	DGTT1
+Cre12.g499204						
+Cre12.g501100	GMM:27.1.21;GMM:27.1	RNA.processing.siRNA methyltransferase;RNA.processing	Mitochondrion	GO:0008173;GO:0006396	RNA methyltransferase activity;RNA processing	
+Cre12.g532400						
+Cre12.g514850	GMM:29.6.2.4;GMM:20.2.1	protein.folding.chaperones and co-chaperones.HSP90s;stress.abiotic.heat	Chloroplast.Stroma	GO:0051082;GO:0006950;GO:0006457;GO:0005524	unfolded protein binding;response to stress;protein folding;ATP binding	HSP90C
+Cre12.g506200	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB18
+Cre12.g487300	GMM:3.3	minor CHO metabolism.sugar alcohols				CSB42
+Cre12.g523100	GMM:34.1	transport.p- and v-ATPases		GO:0016021;GO:0015693;GO:0015095	integral component of membrane;magnesium ion transport;magnesium ion transmembrane transporter activity	
+Cre12.g510400	GMM:29.8	protein.assembly and cofactor ligation	Chloroplast			CPLD30
+Cre12.g532314			Secretory pathway			
+Cre12.g559703						
+Cre12.g497250				GO:0005813;GO:0000922	centrosome;spindle pole	
+Cre12.g533750	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT	Mitochondrion	GO:0004842	ubiquitin-protein transferase activity	
+Cre12.g536100						FAP126
+Cre12.g526250	GMM:29.4.1;GMM:29.4	protein.postranslational modification.kinase;protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g545650			Chloroplast			
+Cre12.g539700			Mitochondrion			
+Cre12.g523950			Secretory pathway	GO:0016021	integral component of membrane	
+Cre12.g516150			Mitochondrion	GO:0008080	N-acetyltransferase activity	
+Cre12.g542000	GMM:27.3.34	RNA.regulation of transcription.orphan family		GO:0019478;GO:0016788;GO:0005737	"D-amino acid catabolic process;hydrolase activity, acting on ester bonds;cytoplasm"	
+Cre12.g489500						
+Cre12.g505150			Mitochondrion			OPR52
+Cre12.g547750			Mitochondrion	GO:0097056;GO:0016785;GO:0016740	"selenocysteinyl-tRNA(Sec) biosynthetic process;transferase activity, transferring selenium-containing groups;transferase activity"	SPCS
+Cre12.g560250			Mitochondrion			
+Cre12.g496200	GMM:34.99	transport.misc				
+Cre12.g519550			Mitochondrion			OPR53
+Cre12.g553550						
+Cre12.g499850	GMM:29.4	protein.postranslational modification				CNK7
+Cre12.g540400	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0030014;GO:0006402	CCR4-NOT complex;mRNA catabolic process	RCD1
+Cre12.g526030				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g490750			Chloroplast			
+Cre12.g555803	GMM:9.2.2	mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NDA6
+Cre12.g507872			Chloroplast			
+Cre12.g548200						
+Cre12.g541150			Chloroplast			
+Cre12.g504500	GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677	DNA binding	HTA15
+Cre12.g555800	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g527600			Mitochondrion	GO:0005515	protein binding	
+Cre12.g548500	GMM:29.4	protein.postranslational modification	Secretory pathway			
+Cre12.g553750	GMM:27.4;GMM:27.1.1	RNA.RNA binding;RNA.processing.splicing		GO:0045131;GO:0003723;GO:0003676;GO:0000398	"pre-mRNA branch point binding;RNA binding;nucleic acid binding;mRNA splicing, via spliceosome"	
+Cre12.g541100	GMM:29.5.3	protein.degradation.cysteine protease				OTU7
+Cre12.g528750	GMM:29.2.1.2.2.12	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L12		GO:0006412;GO:0005840;GO:0003735	translation;ribosome;structural constituent of ribosome	RPL12
+Cre12.g552400			Mitochondrion			
+Cre12.g556500			Chloroplast			
+Cre12.g536301						
+Cre12.g486252						
+Cre12.g560800	GMM:17.2.1	hormone metabolism.auxin.synthesis-degradation	Secretory pathway	GO:0016787;GO:0008152	hydrolase activity;metabolic process	
+Cre12.g501450	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Secretory pathway	GO:0008270;GO:0005515	zinc ion binding;protein binding	SDIR1
+Cre12.g525050	GMM:31.2	cell.division				SMC6A
+Cre12.g494850	GMM:23.4.1	nucleotide metabolism.phosphotransfer and pyrophosphatases.adenylate kinase	Chloroplast	GO:0019205;GO:0006139;GO:0005524	nucleobase-containing compound kinase activity;nucleobase-containing compound metabolic process;ATP binding	ADK3
+Cre12.g551201			Secretory pathway	GO:0008080	N-acetyltransferase activity	
+Cre12.g504950	GMM:23.2	nucleotide metabolism.degradation				UOX1
+Cre12.g541350			Chloroplast			
+Cre12.g529651	GMM:29.2.1.2.2.57	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L7A				RPL7A
+Cre12.g484400			Secretory pathway			
+Cre12.g528800						
+Cre12.g554550						
+Cre12.g494000	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease		GO:0005515	protein binding	CGL82
+Cre12.g561450			Chloroplast	GO:0051536;GO:0003824	iron-sulfur cluster binding;catalytic activity	
+Cre12.g530650	GMM:12.2.2	N-metabolism.ammonia metabolism.glutamine synthetase	Chloroplast	GO:0006807;GO:0006542;GO:0004356	nitrogen compound metabolic process;glutamine biosynthetic process;glutamate-ammonia ligase activity	GLN2
+Cre12.g503300	GMM:23.1.2.6	nucleotide metabolism.synthesis.purine.AIR carboxylase	Chloroplast	GO:0006189	'de novo' IMP biosynthetic process	
+Cre12.g518450				GO:0003677	DNA binding	
+Cre12.g498750	GMM:11.9.2.1	lipid metabolism.lipid degradation.lipases.triacylglycerol lipase	Secretory pathway	GO:0006629	lipid metabolic process	LIP2
+Cre12.g540850			Secretory pathway			
+Cre12.g550700	GMM:23.1.2.3	nucleotide metabolism.synthesis.purine.GAR transformylase	Chloroplast	GO:0016742;GO:0009058	"hydroxymethyl-, formyl- and related transferase activity;biosynthetic process"	
+Cre12.g534930						
+Cre12.g550350			Mitochondrion			
+Cre12.g542250	GMM:31.1.1.2;GMM:31.1	cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007017;GO:0005874;GO:0003924	microtubule-based process;microtubule;GTPase activity	TUB1
+Cre12.g492550			Chloroplast			
+Cre12.g539161						
+Cre12.g532200	GMM:33.99	development.unspecified				
+Cre12.g556228	GMM:9.2.2	mitochondrial electron transport / ATP synthesis.NADH-DH (type II).external		GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	NDA7
+Cre12.g498400			Chloroplast			
+Cre12.g559450				GO:0005515	protein binding	
+Cre12.g547001			Mitochondrion			
+Cre12.g544400	GMM:30.6;GMM:29.4.1;GMM:29.4	signalling.MAP kinases;protein.postranslational modification.kinase;protein.postranslational modification				
+Cre12.g543850				GO:0016592;GO:0006357;GO:0001104	mediator complex;regulation of transcription from RNA polymerase II promoter;RNA polymerase II transcription cofactor activity	
+Cre12.g538000						EZY5
+Cre12.g542202			Chloroplast			
+Cre12.g552001			Chloroplast	GO:0006508;GO:0004222	proteolysis;metalloendopeptidase activity	
+Cre12.g553302						
+Cre12.g537550			Mitochondrion			
+Cre12.g521100						
+Cre12.g529850	GMM:34.99	transport.misc				
+Cre12.g534050				GO:0009395;GO:0004620	phospholipid catabolic process;phospholipase activity	FAP366
+Cre12.g518650	GMM:11.8.4	"lipid metabolism.exotics (steroids, squalene etc).3-beta hydroxysteroid dehydrogenase/isomerase"				BSD1
+Cre12.g552250			Mitochondrion			
+Cre12.g536500			Chloroplast			CGL10
+Cre12.g488100	GMM:27.1	RNA.processing				UPF3
+Cre12.g540050			Chloroplast			
+Cre12.g486250	GMM:29.4;GMM:29.3.4.99	protein.postranslational modification;protein.targeting.secretory pathway.unspecified		GO:0007264;GO:0005525	small GTPase mediated signal transduction;GTP binding	FAP333
+Cre12.g557900	GMM:17.3.1.2.5	hormone metabolism.brassinosteroid.synthesis-degradation.sterols.HYD1		GO:0047750;GO:0016125;GO:0016021	cholestenol delta-isomerase activity;sterol metabolic process;integral component of membrane	CDI1
+Cre12.g494600			Secretory pathway			
+Cre12.g504700	GMM:28.1.3.2.2;GMM:28.1.3.2.1;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H2B;DNA.synthesis/chromatin structure.histone.core.H2A;DNA.synthesis/chromatin structure.histone		GO:0003677;GO:0000786	DNA binding;nucleosome	HTB16
+Cre12.g529450	GMM:26.17	misc.dynamin				DRP5
+Cre12.g561050	GMM:26.2	misc.UDP glucosyl and glucoronyl transferases	Secretory pathway			ELG18
+Cre12.g497653	GMM:26.11.1;GMM:26.11;GMM:16.8.3	misc.alcohol dehydrogenases.cinnamyl alcohol dehydrogenase;misc.alcohol dehydrogenases;secondary metabolism.flavonoids.dihydroflavonols		GO:0050662;GO:0003824	coenzyme binding;catalytic activity	SNE13
+Cre12.g552851	GMM:17.6.2	hormone metabolism.gibberelin.signal transduction				OGT1
+Cre12.g535450						
+Cre12.g540750						
+Cre12.g542150						
+Cre12.g515500			Secretory pathway			
+Cre12.g538050						
+Cre12.g491100				GO:0016491;GO:0008152	oxidoreductase activity;metabolic process	
+Cre12.g520850	GMM:27.3.99	RNA.regulation of transcription.unclassified		GO:0016592;GO:0006355;GO:0001104	"mediator complex;regulation of transcription, DNA-templated;RNA polymerase II transcription cofactor activity"	
+Cre12.g508150	GMM:28.1;GMM:27.3.44	DNA.synthesis/chromatin structure;RNA.regulation of transcription.chromatin remodeling factors		GO:0043044;GO:0031491;GO:0016818;GO:0016787;GO:0006338;GO:0005634;GO:0005524;GO:0003677;GO:0003676	"ATP-dependent chromatin remodeling;nucleosome binding;hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides;hydrolase activity;chromatin remodeling;nucleus;ATP binding;DNA binding;nucleic acid binding"	
+Cre12.g493404	GMM:34.7	transport.phosphate	Secretory pathway	GO:0016020;GO:0006817;GO:0005315	membrane;phosphate ion transport;inorganic phosphate transmembrane transporter activity	
+Cre12.g533351	GMM:20.2.1	stress.abiotic.heat	Chloroplast	GO:0016887;GO:0005524	ATPase activity;ATP binding	CLPB5
+Cre12.g553350	GMM:1.5.3	PS.carbon concentrating mechanism.algal				LCI6
+Cre12.g550153			Chloroplast			
+Cre12.g553253			Chloroplast	GO:0006260;GO:0003896	DNA replication;DNA primase activity	
+Cre12.g513100						
+Cre12.g533250	GMM:29.5.11.5	protein.degradation.ubiquitin.ubiquitin protease	Mitochondrion	GO:0036459;GO:0016579	thiol-dependent ubiquitinyl hydrolase activity;protein deubiquitination	
+Cre12.g526264				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g524500	GMM:27.3.69;GMM:1.3.13	RNA.regulation of transcription.SET-domain transcriptional regulator family;PS.calvin cycle.rubisco interacting				RMT2
+Cre12.g518772	GMM:27.1.1	RNA.processing.splicing		GO:0003676	nucleic acid binding	
+Cre12.g499400	GMM:31.3.1;GMM:29.6.3.2	cell.cycle.peptidylprolyl isomerase;protein.folding.immunophilins (IMM).cyclophilins		GO:0006457;GO:0003755;GO:0000413	protein folding;peptidyl-prolyl cis-trans isomerase activity;protein peptidyl-prolyl isomerization	CYN18-2
+Cre12.g538900						
+Cre12.g503150			Chloroplast	GO:0043139;GO:0003697	5'-3' DNA helicase activity;single-stranded DNA binding	
+Cre12.g517400	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others	Secretory pathway	GO:0005525	GTP binding	RAB5
+Cre12.g525700	GMM:9.6	mitochondrial electron transport / ATP synthesis.cytochrome c		GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	HCS1
+Cre12.g552750						
+Cre12.g515200	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins				DRC6
+Cre12.g483950	GMM:8.1.9;GMM:6.3	TCA / organic transformation.TCA.malate DH;gluconeogenesis / glyoxylate cycle.malate dehydrogenase	Chloroplast	GO:0055114;GO:0019752;GO:0016616;GO:0006694;GO:0003854	"oxidation-reduction process;carboxylic acid metabolic process;oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor;steroid biosynthetic process;3-beta-hydroxy-delta5-steroid dehydrogenase activity"	MDN4
+Cre12.g507000			Mitochondrion			FFT6
+Cre12.g549000	GMM:1.5	PS.carbon concentrating mechanism	Secretory pathway			PHC4
+Cre12.g540150			Secretory pathway			
+Cre12.g526450	GMM:29.4	protein.postranslational modification	Secretory pathway	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g497850			Chloroplast			
+Cre12.g524800						
+Cre12.g516450	GMM:9.1.1.5	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I.carbonic anhydrase	Mitochondrion			CAG1
+Cre12.g551800	GMM:23.3.3	nucleotide metabolism.salvage.NUDIX hydrolases		GO:0016787	hydrolase activity	
+Cre12.g499600						CSD5
+Cre12.g555550	GMM:31.1.1.1.3;GMM:31.1	cell.organisation.cytoskeleton.actin.actin binding;cell.organisation		GO:0003779	actin binding	
+Cre12.g549750	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	FAP4
+Cre12.g502550			Chloroplast			
+Cre12.g548152	GMM:34.9	transport.metabolite transporters at the mitochondrial membrane				
+Cre12.g486551				GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	PHX19
+Cre12.g538950						
+Cre12.g483800			Mitochondrion			
+Cre12.g554116			Mitochondrion			
+Cre12.g509200						
+Cre12.g557250	GMM:26.17	misc.dynamin				
+Cre12.g485000						FAP182
+Cre12.g520000	GMM:31.1	cell.organisation	Mitochondrion	GO:0005515	protein binding	
+Cre12.g521300						
+Cre12.g494250			Mitochondrion			
+Cre12.g518050	GMM:31.6.1.10	cell.motility.eukaryotes.flagellar associated proteins	Mitochondrion			FAP261
+Cre12.g508850			Chloroplast	GO:0005515	protein binding	
+Cre12.g554400			Mitochondrion			
+Cre12.g557000	GMM:29.5.2	protein.degradation.autophagy	Chloroplast	GO:0005737;GO:0000045	cytoplasm;autophagosome assembly	ATG12
+Cre12.g521700	GMM:2.1.2.2	major CHO metabolism.synthesis.starch.starch synthase	Chloroplast			SSS6
+Cre12.g558150						
+Cre12.g516500	GMM:29.5.11.4.3.3	protein.degradation.ubiquitin.E3.SCF.cullin	Mitochondrion	GO:0031625;GO:0006511	ubiquitin protein ligase binding;ubiquitin-dependent protein catabolic process	CUL2
+Cre12.g505350	GMM:34.21;GMM:30.3;GMM:3.3	transport.calcium;signalling.calcium;minor CHO metabolism.sugar alcohols		GO:0046872;GO:0000166	metal ion binding;nucleotide binding	FAP10
+Cre12.g502251			Chloroplast			
+Cre12.g542600			Chloroplast			
+Cre12.g530550	GMM:11.8.1;GMM:11.3.5	"lipid metabolism.exotics (steroids, squalene etc).sphingolipids;lipid metabolism.phospholipid synthesis.diacylglycerol kinase"		GO:0016301	kinase activity	KDG2
+Cre12.g543477			Mitochondrion			
+Cre12.g508650			Secretory pathway			
+Cre12.g526091						
+Cre12.g511300			Mitochondrion			
+Cre12.g559053						CSB50
+Cre12.g504350	GMM:11.9.2.2;GMM:11.9.2	lipid metabolism.lipid degradation.lipases.acylglycerol lipase;lipid metabolism.lipid degradation.lipases				
+Cre12.g537000			Secretory pathway	GO:0004872	receptor activity	
+Cre12.g534500			Secretory pathway	GO:0007029;GO:0005789	endoplasmic reticulum organization;endoplasmic reticulum membrane	
+Cre12.g486481			Secretory pathway			
+Cre12.g516900			Chloroplast	GO:0005515	protein binding	
+Cre12.g489000				GO:0043565;GO:0006355;GO:0003700	"sequence-specific DNA binding;regulation of transcription, DNA-templated;transcription factor activity, sequence-specific DNA binding"	
+Cre12.g526850	GMM:29.2.2.3.5;GMM:28.1;GMM:27.1.2	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.DExD-box helicases;DNA.synthesis/chromatin structure;RNA.processing.RNA helicase		GO:0016787;GO:0005524;GO:0003677	hydrolase activity;ATP binding;DNA binding	HEL56
+Cre12.g541750	GMM:16.1.4	secondary metabolism.isoprenoids.carotenoids	Mitochondrion	GO:0055114;GO:0016491	oxidation-reduction process;oxidoreductase activity	ZPD1
+Cre12.g489350						
+Cre12.g553900	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CNG2
+Cre12.g491000	GMM:29.3.1	protein.targeting.nucleus	Secretory pathway	GO:0016757	"transferase activity, transferring glycosyl groups"	
+Cre12.g486300	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast	GO:0015979;GO:0009538;GO:0009522	photosynthesis;photosystem I reaction center;photosystem I	PSAL
+Cre12.g549850	GMM:29.1	protein.aa activation		GO:0009452;GO:0008168;GO:0001510	7-methylguanosine RNA capping;methyltransferase activity;RNA methylation	
+Cre12.g543301			Mitochondrion			CSV11
+Cre12.g506450	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO19
+Cre12.g483750						
+Cre12.g535851	GMM:29.2.1.2.2.8	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L8	Chloroplast	GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL8
+Cre12.g548000	GMM:29.2.2.3.1	protein.synthesis.ribosome biogenesis.pre-rRNA processing and modifications.snoRNPs	Mitochondrion			
+Cre12.g505850	GMM:29.9;GMM:29.6.2.6;GMM:29.6	protein.co-chaperones;protein.folding.chaperones and co-chaperones.co-chaperones;protein.folding	Chloroplast	GO:0006457;GO:0005737	protein folding;cytoplasm	CPN23
+Cre12.g519300	GMM:1.1.99.1	PS.lightreaction.unspecified.TEF	Chloroplast			TEF9
+Cre12.g502700						
+Cre12.g558750				GO:0015934;GO:0006412;GO:0003735	large ribosomal subunit;translation;structural constituent of ribosome	
+Cre12.g507051	GMM:3.5;GMM:2.2.1.3.3;GMM:2.2.1.3.2	minor CHO metabolism.others;major CHO metabolism.degradation.sucrose.invertases.vacuolar;major CHO metabolism.degradation.sucrose.invertases.cell wall	Chloroplast			
+Cre12.g555150	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOB10
+Cre12.g517250			Chloroplast			
+Cre12.g496400						
+Cre12.g556912			Chloroplast			
+Cre12.g545850	GMM:20.2.1	stress.abiotic.heat				FAP363
+Cre12.g543500						FAP364
+Cre12.g543300			Mitochondrion			
+Cre12.g508852			Chloroplast	GO:0006464;GO:0004077	cellular protein modification process;biotin-[acetyl-CoA-carboxylase] ligase activity	
+Cre12.g517650						
+Cre12.g495952			Chloroplast			
+Cre12.g500550	GMM:29.5.11.4.2	protein.degradation.ubiquitin.E3.RING	Mitochondrion			
+Cre12.g507500						
+Cre12.g521851						
+Cre12.g524650	GMM:27.3.55	RNA.regulation of transcription.HDA	Mitochondrion	GO:0070403	NAD+ binding	HDA18
+Cre12.g525970				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g560150	GMM:30.5;GMM:3.5	signalling.G-proteins;minor CHO metabolism.others		GO:0005525	GTP binding	FAP353
+Cre12.g511600						
+Cre12.g546200			Chloroplast	GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL5
+Cre12.g490451			Mitochondrion			
+Cre12.g495956						
+Cre12.g510751						
+Cre12.g539850						
+Cre12.g520250				GO:0016593;GO:0016570;GO:0006368	Cdc73/Paf1 complex;histone modification;transcription elongation from RNA polymerase II promoter	PAF1
+Cre12.g509650	GMM:16.1.4.2	secondary metabolism.isoprenoids.carotenoids.phytoene dehydrogenase	Chloroplast			PDS1
+Cre12.g506700						
+Cre12.g506350	GMM:28.1.3.2.4;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H4;DNA.synthesis/chromatin structure.histone				HFO18
+Cre12.g560600	GMM:18	Co-factor and vitamine metabolism		GO:0008152;GO:0006741;GO:0003951	metabolic process;NADP biosynthetic process;NAD+ kinase activity	
+Cre12.g515850	GMM:28.1;GMM:27.3.67	DNA.synthesis/chromatin structure;RNA.regulation of transcription.putative transcription regulator		GO:0030896;GO:0030337;GO:0006275;GO:0003677;GO:0000077	checkpoint clamp complex;DNA polymerase processivity factor activity;regulation of DNA replication;DNA binding;DNA damage checkpoint	PCN1
+Cre12.g489153	GMM:29.2.1.2.2.31	protein.synthesis.ribosomal protein.eukaryotic.60S subunit.L31		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPL31
+Cre12.g487650						
+Cre12.g519651			Mitochondrion			
+Cre12.g491450			Mitochondrion			
+Cre12.g520350	GMM:13.2.2.2	amino acid metabolism.degradation.glutamate family.proline	Mitochondrion	GO:0055114;GO:0016491;GO:0008152	oxidation-reduction process;oxidoreductase activity;metabolic process	ALD1
+Cre12.g528500			Chloroplast	GO:0016787	hydrolase activity	
+Cre12.g552402			Mitochondrion			
+Cre12.g534800	GMM:25;GMM:13.2.5.2;GMM:1.2.4.1	C1-metabolism;amino acid metabolism.degradation.serine-glycine-cysteine group.glycine;PS.photorespiration.glycine cleavage.P subunit	Mitochondrion	GO:0055114;GO:0006546;GO:0004375	oxidation-reduction process;glycine catabolic process;glycine dehydrogenase (decarboxylating) activity	GCSP
+Cre12.g532250						
+Cre12.g551802				GO:0048278;GO:0006887;GO:0005737	vesicle docking;exocytosis;cytoplasm	
+Cre12.g555250	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I				NUOB14
+Cre12.g516000						
+Cre12.g544800						
+Cre12.g492503			Chloroplast			
+Cre12.g549900			Chloroplast			
+Cre12.g535350						
+Cre12.g502179			Mitochondrion			
+Cre12.g554650				GO:0005515;GO:0000228	protein binding;nuclear chromosome	REC8
+Cre12.g546050	GMM:16.1.1.2	secondary metabolism.isoprenoids.non-mevalonate pathway.DXR	Chloroplast	GO:0070402;GO:0055114;GO:0046872;GO:0030604;GO:0008299;GO:0005515	NADPH binding;oxidation-reduction process;metal ion binding;1-deoxy-D-xylulose-5-phosphate reductoisomerase activity;isoprenoid biosynthetic process;protein binding	DXR1
+Cre12.g543950						
+Cre12.g544100						
+Cre12.g551600			Secretory pathway			
+Cre12.g484250	GMM:31.6.1.4.2.1;GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm.monomeric species;cell.motility.eukaryotes.axonemal dyneins.inner arm		GO:0030286;GO:0016887;GO:0007018;GO:0005524;GO:0003777	dynein complex;ATPase activity;microtubule-based movement;ATP binding;microtubule motor activity	DHC1
+Cre12.g493600			Secretory pathway			
+Cre12.g536683						
+Cre12.g516250			Mitochondrion			
+Cre12.g540076	GMM:27.3.52	RNA.regulation of transcription.global transcription factor group				
+Cre12.g498650	GMM:29.4	protein.postranslational modification				ALK3
+Cre12.g522400	GMM:27.3.25	RNA.regulation of transcription.MYB domain transcription factor family				
+Cre12.g547100			Chloroplast	GO:0008168;GO:0008152	methyltransferase activity;metabolic process	CGL2
+Cre12.g491550			Mitochondrion			
+Cre12.g549002						
+Cre12.g549550	GMM:31.6.1.5.2;GMM:31.1.1.2;GMM:31.1	cell.motility.eukaryotes.radial spoke.stalk;cell.organisation.cytoskeleton.mikrotubuli;cell.organisation		GO:0007017;GO:0005874;GO:0003924	microtubule-based process;microtubule;GTPase activity	TUB2
+Cre12.g544000	GMM:31.6.1.5.2;GMM:3.5	cell.motility.eukaryotes.radial spoke.stalk;minor CHO metabolism.others				RSP5
+Cre12.g492900						
+Cre12.g528700	GMM:13.1.6.5.5;GMM:13.1.6.5	amino acid metabolism.synthesis.aromatic aa.tryptophan.tryptophan synthase;amino acid metabolism.synthesis.aromatic aa.tryptophan	Chloroplast	GO:0006568;GO:0004834	tryptophan metabolic process;tryptophan synthase activity	TRPA1
+Cre12.g507006			Mitochondrion			
+Cre12.g487200	GMM:33.99	development.unspecified		GO:0005515	protein binding	
+Cre12.g542700						FAP373
+Cre12.g526700			Chloroplast	GO:0016021;GO:0006508;GO:0004252	integral component of membrane;proteolysis;serine-type endopeptidase activity	RBL9
+Cre12.g534000						
+Cre12.g540650	GMM:34.16	transport.ABC transporters and multidrug resistance systems	Chloroplast	GO:0016887;GO:0016020;GO:0005524	ATPase activity;membrane;ATP binding	
+Cre12.g528100				GO:0008270;GO:0006508;GO:0004181	zinc ion binding;proteolysis;metallocarboxypeptidase activity	
+Cre12.g557650						
+Cre12.g556250	GMM:31.2	cell.division		GO:0005525	GTP binding	
+Cre12.g499250	GMM:30.1.1	signalling.in sugar and nutrient physiology.misc		GO:0007165;GO:0004114	"signal transduction;3',5'-cyclic-nucleotide phosphodiesterase activity"	PDE10
+Cre12.g502150						
+Cre12.g505050			Chloroplast	GO:0005515	protein binding	
+Cre12.g550900			Chloroplast	GO:0016020;GO:0008158	membrane;hedgehog receptor activity	SSD3
+Cre12.g548400	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM2
+Cre12.g546452			Chloroplast			
+Cre12.g501200	GMM:29.5.11.4.3.1	protein.degradation.ubiquitin.E3.SCF.SKP		GO:0006511	ubiquitin-dependent protein catabolic process	SKP1
+Cre12.g508450			Secretory pathway			
+Cre12.g488850	GMM:31.4	cell.vesicle transport		GO:0030131;GO:0030117;GO:0016192;GO:0006886	clathrin adaptor complex;membrane coat;vesicle-mediated transport;intracellular protein transport	AP2A1
+Cre12.g499451				GO:0003676	nucleic acid binding	
+Cre12.g556700			Mitochondrion			
+Cre12.g551000						
+Cre12.g514000			Secretory pathway	GO:0016021;GO:0005783	integral component of membrane;endoplasmic reticulum	LAG1
+Cre12.g488250	GMM:17.2.2	hormone metabolism.auxin.signal transduction				
+Cre12.g525150			Mitochondrion			
+Cre12.g510150	GMM:27.3.12	RNA.regulation of transcription.C3H zinc finger family		GO:0005515	protein binding	
+Cre12.g525776			Mitochondrion	GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g545752			Secretory pathway			
+Cre12.g492200	GMM:27.3.63;GMM:27.3.22;GMM:20.1	RNA.regulation of transcription.PHD finger transcription factor;RNA.regulation of transcription.homeobox transcription factor family (HB);stress.biotic		GO:0005515	protein binding	
+Cre12.g492150			Secretory pathway			
+Cre12.g548100	GMM:29.5.11.4.1	protein.degradation.ubiquitin.E3.HECT		GO:0004842	ubiquitin-protein transferase activity	UBC7
+Cre12.g526068						
+Cre12.g495701			Mitochondrion	GO:0016020;GO:0005044	membrane;scavenger receptor activity	
+Cre12.g487101			Mitochondrion			CSV9
+Cre12.g493900						
+Cre12.g547050			Secretory pathway			
+Cre12.g526230				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g493300	GMM:34.99	transport.misc				
+Cre12.g530750			Secretory pathway			
+Cre12.g489800			Mitochondrion	GO:0000062	fatty-acyl-CoA binding	
+Cre12.g527200			Mitochondrion			
+Cre12.g511150	GMM:11.5.2	lipid metabolism.glycerol metabolism.glycerol-3-phosphate dehydrogenase (NAD+)		GO:0055114;GO:0009331;GO:0008677;GO:0006072;GO:0005975;GO:0004367	oxidation-reduction process;glycerol-3-phosphate dehydrogenase complex;2-dehydropantoate 2-reductase activity;glycerol-3-phosphate metabolic process;carbohydrate metabolic process;glycerol-3-phosphate dehydrogenase [NAD+] activity	GPD1
+Cre12.g548950	GMM:1.1.1.1	PS.lightreaction.photosystem II.LHC-II	Chloroplast	GO:0016020;GO:0009765	"membrane;photosynthesis, light harvesting"	LHCBM7
+Cre12.g510000			Chloroplast			
+Cre12.g510300	GMM:29.5.11.3;GMM:29.5.11	protein.degradation.ubiquitin.E2;protein.degradation.ubiquitin	Chloroplast	GO:0034450;GO:0016567;GO:0006511;GO:0000151	ubiquitin-ubiquitin ligase activity;protein ubiquitination;ubiquitin-dependent protein catabolic process;ubiquitin ligase complex	UBC21
+Cre12.g548900				GO:0005515	protein binding	ROC23
+Cre12.g505500	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR17
+Cre12.g557503				GO:0007165;GO:0005515	signal transduction;protein binding	
+Cre12.g555700	GMM:29.9	protein.co-chaperones	Chloroplast			DNJ15
+Cre12.g534961			Secretory pathway			
+Cre12.g518002	GMM:29.3.3	protein.targeting.chloroplast				
+Cre12.g528000			Mitochondrion			FAP303
+Cre12.g494350	GMM:28.99	DNA.unspecified	Secretory pathway	GO:0016021	integral component of membrane	
+Cre12.g523816						
+Cre12.g528900	GMM:29.2.2	protein.synthesis.ribosome biogenesis				RBG1
+Cre12.g559554						
+Cre12.g541000			Secretory pathway			
+Cre12.g483926						
+Cre12.g524400	GMM:31.1	cell.organisation	Chloroplast	GO:0051014;GO:0030036;GO:0007010;GO:0003779	actin filament severing;actin cytoskeleton organization;cytoskeleton organization;actin binding	
+Cre12.g536200						
+Cre12.g542100	GMM:29.5.30;GMM:29.5	protein.degradation.prolyl protease;protein.degradation	Chloroplast	GO:0070008;GO:0008236;GO:0006508;GO:0004252	serine-type exopeptidase activity;serine-type peptidase activity;proteolysis;serine-type endopeptidase activity	
+Cre12.g535950	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion	GO:0055114;GO:0051536;GO:0016651;GO:0016491	"oxidation-reduction process;iron-sulfur cluster binding;oxidoreductase activity, acting on NAD(P)H;oxidoreductase activity"	NUOS1
+Cre12.g553050						
+Cre12.g558950						
+Cre12.g518851						
+Cre12.g538600			Secretory pathway	GO:0005515	protein binding	
+Cre12.g512000			Secretory pathway	GO:0016020	membrane	
+Cre12.g492650			Secretory pathway			FAS2
+Cre12.g497650						THY28
+Cre12.g485458						
+Cre12.g552650	GMM:27.1	RNA.processing				PAP8
+Cre12.g547200	GMM:30.6;GMM:29.4	signalling.MAP kinases;protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	PTK6
+Cre12.g488350	GMM:17.1.1.1.10	hormone metabolism.abscisic acid.synthesis-degradation.synthesis.9-cis-epoxycarotenoid dioxygenase	Chloroplast			
+Cre12.g546350	GMM:34.99;GMM:34.10;GMM:34.1	transport.misc;transport.nucleotides;transport.p- and v-ATPases		GO:0016021;GO:0015693;GO:0015095	integral component of membrane;magnesium ion transport;magnesium ion transmembrane transporter activity	
+Cre12.g523000				GO:0046872	metal ion binding	
+Cre12.g556803						
+Cre12.g512100	GMM:28.1	DNA.synthesis/chromatin structure	Mitochondrion	GO:0006281;GO:0005524;GO:0004386;GO:0003678;GO:0000723	DNA repair;ATP binding;helicase activity;DNA helicase activity;telomere maintenance	PIF1
+Cre12.g536800			Chloroplast			CGL52
+Cre12.g512700			Chloroplast	GO:0006367	transcription initiation from RNA polymerase II promoter	
+Cre12.g525827						
+Cre12.g504800	GMM:28.1.3.2.3;GMM:28.1.3	DNA.synthesis/chromatin structure.histone.core.H3;DNA.synthesis/chromatin structure.histone	Chloroplast	GO:0003677;GO:0000786	DNA binding;nucleosome	HTR16
+Cre12.g537611			Secretory pathway			
+Cre12.g547500			Chloroplast			
+Cre12.g551850	GMM:26.1;GMM:19.99;GMM:16.2	misc.misc2;tetrapyrrole synthesis.unspecified;secondary metabolism.phenylpropanoids		GO:0055114;GO:0016491;GO:0010181	oxidation-reduction process;oxidoreductase activity;FMN binding	NFR1
+Cre12.g535750	GMM:22.1.5	polyamine metabolism.synthesis.N-carbamoylputrescine amidohydrolase		GO:0016810;GO:0006807	"hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds;nitrogen compound metabolic process"	CPA1
+Cre12.g534980						
+Cre12.g530300	GMM:29.6.3.1;GMM:29.6	protein.folding.immunophilins (IMM).FKBPs;protein.folding	Chloroplast	GO:0006457	protein folding	FKB16-3
+Cre12.g530850			Secretory pathway;Chloroplast			
+Cre12.g508302						
+Cre12.g499152						
+Cre12.g494100	GMM:27.1.1	RNA.processing.splicing				
+Cre12.g523750						
+Cre12.g488150						
+Cre12.g561100				GO:0008270	zinc ion binding	
+Cre12.g544550	GMM:29.4	protein.postranslational modification		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g500700			Mitochondrion			LCL2
+Cre12.g559900			Chloroplast			
+Cre12.g486350	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g508050				GO:0003677	DNA binding	
+Cre12.g522150	GMM:31.6.1.6.3	cell.motility.eukaryotes.central pair.C1				FAP194
+Cre12.g509300			Chloroplast			
+Cre12.g495954			Mitochondrion			
+Cre12.g542601						CSB48
+Cre12.g496800						
+Cre12.g531000	GMM:34.5	transport.ammonium	Secretory pathway	GO:0072488;GO:0016020;GO:0015696;GO:0008519	ammonium transmembrane transport;membrane;ammonium transport;ammonium transmembrane transporter activity	AMT8
+Cre12.g529800						
+Cre12.g553450	GMM:34.15	transport.potassium		GO:0055085;GO:0016020;GO:0006811;GO:0005216	transmembrane transport;membrane;ion transport;ion channel activity	CNG1
+Cre12.g498500	GMM:29.5.5	protein.degradation.serine protease	Mitochondrion	GO:0006508;GO:0005515;GO:0004252	proteolysis;protein binding;serine-type endopeptidase activity	DEG1C
+Cre12.g537250			Secretory pathway			
+Cre12.g495800			Chloroplast			
+Cre12.g556150	GMM:29.5	protein.degradation		GO:0016020	membrane	CGL100
+Cre12.g554800	GMM:1.3.12	PS.calvin cycle.PRK	Chloroplast	GO:0016301;GO:0008152;GO:0005524	kinase activity;metabolic process;ATP binding	PRK1
+Cre12.g503700			Mitochondrion			
+Cre12.g552006						
+Cre12.g502800	GMM:33.99;GMM:31.3	development.unspecified;cell.cycle		GO:0005515	protein binding	
+Cre12.g548050	GMM:23.1.2	nucleotide metabolism.synthesis.purine		GO:0035556;GO:0016849;GO:0009190	intracellular signal transduction;phosphorus-oxygen lyase activity;cyclic nucleotide biosynthetic process	CYG32
+Cre12.g541700						OPR54
+Cre12.g512500			Chloroplast	GO:0048478;GO:0007049;GO:0006974;GO:0005634	replication fork protection;cell cycle;cellular response to DNA damage stimulus;nucleus	
+Cre12.g546770			Mitochondrion	GO:0016021	integral component of membrane	
+Cre12.g523320			Mitochondrion			
+Cre12.g505250				GO:0005509	calcium ion binding	FAP288
+Cre12.g534576						
+Cre12.g539050			Chloroplast			
+Cre12.g550200						
+Cre12.g486600	GMM:34.8;GMM:2.2.2.6	transport.metabolite transporters at the envelope membrane;major CHO metabolism.degradation.starch.transporter	Chloroplast			MEX1
+Cre12.g559100						
+Cre12.g496300			Chloroplast			
+Cre12.g558100	GMM:31.3;GMM:26.6	cell.cycle;misc.O-methyl transferases		GO:0008168;GO:0006479	methyltransferase activity;protein methylation	PRMT2
+Cre12.g502300						
+Cre12.g521200	GMM:28.1	DNA.synthesis/chromatin structure		GO:0006260;GO:0005663;GO:0005524;GO:0003689	DNA replication;DNA replication factor C complex;ATP binding;DNA clamp loader activity	RFC1
+Cre12.g552300			Secretory pathway			CTL3
+Cre12.g493000	GMM:34.15	transport.potassium	Secretory pathway	GO:0055085;GO:0016021;GO:0015299;GO:0006812	transmembrane transport;integral component of membrane;solute:proton antiporter activity;cation transport	
+Cre12.g509001	GMM:30.6;GMM:3.6	signalling.MAP kinases;minor CHO metabolism.callose		GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	RPK2
+Cre12.g526071				GO:0005739;GO:0004408	mitochondrion;holocytochrome-c synthase activity	
+Cre12.g490550						
+Cre12.g514450	GMM:27.1.1	RNA.processing.splicing		GO:0005634	nucleus	
+Cre12.g496950	GMM:29.5.7	protein.degradation.metalloprotease		GO:0016787;GO:0008152;GO:0005515	hydrolase activity;metabolic process;protein binding	
+Cre12.g516600	GMM:29.4	protein.postranslational modification	Mitochondrion	GO:0006468;GO:0005524;GO:0004672	protein phosphorylation;ATP binding;protein kinase activity	
+Cre12.g538250			Chloroplast			
+Cre12.g499352						
+Cre12.g536900	GMM:31.1;GMM:27.2	cell.organisation;RNA.transcription				
+Cre12.g513700			Chloroplast			HEL52
+Cre12.g498250	GMM:29.2.1.2.1.17	protein.synthesis.ribosomal protein.eukaryotic.40S subunit.S17		GO:0006412;GO:0005840;GO:0005622;GO:0003735	translation;ribosome;intracellular;structural constituent of ribosome	RPS17
+Cre12.g496750	GMM:9.1.2;GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).localisation not clear;mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion			NUO8
+Cre12.g501350			Secretory pathway			
+Cre12.g546400	GMM:31.6.1.4.2	cell.motility.eukaryotes.axonemal dyneins.inner arm				DLR2
+Cre12.g533450						
+Cre12.g524050						
+Cre12.g538150	GMM:34.18	transport.unspecified anions		GO:0034715;GO:0034709;GO:0006884;GO:0006821;GO:0005886;GO:0005829;GO:0000387	pICln-Sm protein complex;methylosome;cell volume homeostasis;chloride transport;plasma membrane;cytosol;spliceosomal snRNP assembly	
+Cre12.g513900			Secretory pathway			
+Cre12.g507100						
+Cre12.g533050	GMM:30.5;GMM:3.5;GMM:29.2.2.1	signalling.G-proteins;minor CHO metabolism.others;protein.synthesis.ribosome biogenesis.export from nucleus		GO:0005525	GTP binding	
+Cre12.g547850						
+Cre12.g509900						
+Cre12.g549150						
+Cre12.g533426			Secretory pathway			
+Cre12.g502050						
+Cre12.g536716						
+Cre12.g524100	GMM:29.2.3;GMM:27.4	protein.synthesis.initiation;RNA.RNA binding		GO:0051028;GO:0045292;GO:0016070;GO:0005846;GO:0000339	"mRNA transport;mRNA cis splicing, via spliceosome;RNA metabolic process;nuclear cap binding complex;RNA cap binding"	CBP80
+Cre12.g529350			Chloroplast			
+Cre12.g540250						SELW1
+Cre12.g485100						FAP326
+Cre12.g507400	GMM:11.1.9	lipid metabolism.FA synthesis and FA elongation.long chain fatty acid CoA ligase	Mitochondrion	GO:0008152;GO:0003824	metabolic process;catalytic activity	CGL105
+Cre12.g521950			Secretory pathway			
+Cre12.g536425						
+Cre12.g560050	GMM:20.2.3	stress.abiotic.drought/salt	Secretory pathway	GO:0016020	membrane	ERM12
+Cre12.g525900	GMM:29.4	protein.postranslational modification	Mitochondrion			
+Cre12.g532750	GMM:28.1	DNA.synthesis/chromatin structure		GO:0008270;GO:0006281;GO:0004518	zinc ion binding;DNA repair;nuclease activity	
+Cre12.g483700	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast	GO:0006260;GO:0003697	DNA replication;single-stranded DNA binding	RB38
+Cre12.g499700	GMM:34.99	transport.misc	Mitochondrion	GO:0055085;GO:0016020;GO:0015297;GO:0015238;GO:0006855	transmembrane transport;membrane;antiporter activity;drug transmembrane transporter activity;drug transmembrane transport	MFT3
+Cre12.g517150	GMM:14.2;GMM:1.1.1.2	S-assimilation.APR;PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast	GO:0045454;GO:0008152;GO:0003824	cell redox homeostasis;metabolic process;catalytic activity	MET16
+Cre12.g501752						
+Cre12.g543400	GMM:5.3;GMM:26.11;GMM:25.1	fermentation.ADH;misc.alcohol dehydrogenases;C1-metabolism.glycine hydroxymethyltransferase		GO:0055114;GO:0016491;GO:0008270	oxidation-reduction process;oxidoreductase activity;zinc ion binding	FDH1
+Cre12.g533300			Chloroplast	GO:0003676	nucleic acid binding	SRE2
+Cre12.g507557			Chloroplast			
+Cre12.g557100	GMM:29.4	protein.postranslational modification	Chloroplast	GO:0006464;GO:0004719	cellular protein modification process;protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	
+Cre12.g515426	GMM:26.16	misc.myrosinases-lectin-jacalin	Secretory pathway			
+Cre12.g490141			Mitochondrion			
+Cre47.g761097			Secretory pathway			
+Cre-1.g2717034	GMM:1.1.4	PS.lightreaction.ATP synthase	Chloroplast			atpB
+Cre-1.g2716995			Chloroplast			psbL
+Cre-1.g2716992			Chloroplast			rpoB-2
+Cre-1.g2716994	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbF
+Cre-1.g2717015	GMM:29.5.5	protein.degradation.serine protease	Chloroplast			clpP
+Cre-2.g801494			Mitochondrion			nad4
+Cre-1.g2717009	GMM:1.1.2.3	PS.lightreaction.photosystem I.biogenesis	Chloroplast			ycf4
+Cre-1.g2716966	GMM:19.14	tetrapyrrole synthesis.protochlorophyllide reductase	Chloroplast			chlB
+Cre-1.g2717046	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast			psaC
+Cre-1.g2717012	GMM:29.2.1.1.1.2.20	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L20	Chloroplast			rpl20
+Cre-1.g2717058	GMM:29.2.1.1.1.2.14	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L14	Chloroplast			rpl14
+Cre-1.g2716962			Chloroplast			ORF2971
+Cre-1.g2716961	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbD
+Cre-1.g2717004			Chloroplast			rpoA
+Cre-1.g2717038	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast			psaB
+Cre-1.g2717030	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbH
+Cre-1.g2716976			Chloroplast			psbZ
+Cre-1.g2717050			Chloroplast			rpoC1a
+Cre-1.g2716955	GMM:29.2.1.1.1.1.4	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S4	Chloroplast			rps4
+Cre-1.g2716973	GMM:29.2.1.1.1.1.7	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S7	Chloroplast			rps7
+Cre-1.g2717031	GMM:1.1.1.3	PS.lightreaction.photosystem II.biogenesis	Chloroplast			psbN
+Cre-2.g801492	GMM:9.1.1	mitochondrial electron transport / ATP synthesis.NADH-DH (type I).complex I	Mitochondrion			nad5
+Cre-1.g2717056	GMM:29.2.1.1.1.1.19	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S19	Chloroplast			rps19
+Cre-1.g2717054	GMM:29.2.1.1.1.2.23	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L23	Chloroplast			rpl23
+Cre-1.g2716987	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbA
+Cre-1.g2717040	GMM:1.3.1	PS.calvin cycle.rubisco large subunit	Chloroplast			rbcL
+Cre-1.g000030			Chloroplast			ORF140b
+Cre-1.g2717055	GMM:29.2.1.1.1.2.2	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L2	Chloroplast			rpl2
+Cre-1.g2716958	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast			psaJ
+Cre-1.g2717049			Chloroplast			rpoC1b
+Cre-1.g2716996			Chloroplast			petG
+Cre-1.g2716990	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbE
+Cre-1.g2717007	GMM:29.2.1.1.1.1.18	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S18	Chloroplast			rps18
+Cre-1.g000010			Chloroplast			ORF140a
+Cre-1.g2717053			Chloroplast			rpl36
+Cre-1.g2716960			Chloroplast			psbJ
+Cre-1.g2716979	GMM:29.2.4	protein.synthesis.elongation	Chloroplast			tufA
+Cre-1.g000005			Chloroplast			ORF271
+Cre-2.g801495			Mitochondrion			cox1
+Cre-1.g2717005	GMM:29.2.1.1.1.1.2	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S2	Chloroplast			rps2
+Cre-1.g000035			Chloroplast			ORF1995
+Cre-2.g801499			Mitochondrion			nad1
+Cre-1.g2716971			Chloroplast			ycf12
+Cre-1.g2716959	GMM:1.1.4	PS.lightreaction.ATP synthase	Chloroplast			atpI
+Cre-1.g000045			Chloroplast			ORF58
+Cre-2.g801500			Mitochondrion			nad6
+Cre-1.g2717021	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast			petD
+Cre-2.g801489			Mitochondrion			rtl
+Cre-1.g2716978			Chloroplast			psbK
+Cre-1.g2716997	GMM:29.2.1.1.1.1.3	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S3	Chloroplast			rps3
+Cre-1.g2717044			Chloroplast			atpH
+Cre-1.g2717010	GMM:29.2.1.1.1.1.9	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S9	Chloroplast			rps9
+Cre-1.g2717047			Chloroplast			petL
+Cre-1.g2717052	GMM:19.14	tetrapyrrole synthesis.protochlorophyllide reductase	Chloroplast			chlL
+Cre-1.g2717042			Chloroplast			psbI
+Cre-1.g2716986	GMM:19.14	tetrapyrrole synthesis.protochlorophyllide reductase	Chloroplast			chlN
+Cre-1.g2717002	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbB
+Cre-1.g2717006	GMM:29.2.1.1.1.1.2	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S2	Chloroplast			rps2
+Cre-2.g801484			Mitochondrion			cob
+Cre-1.g2717027			Chloroplast			ccsA
+Cre-1.g2716952	GMM:29.2.1.1.1.1.8	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S8	Chloroplast			rps8
+Cre-1.g000020			Chloroplast			ORF59
+Cre-1.g2717041	GMM:1.1.4	PS.lightreaction.ATP synthase	Chloroplast			atpA
+Cre-2.g801491			Mitochondrion			nad2
+Cre-1.g2717036	GMM:29.2.1.1.1.1.12	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S12	Chloroplast			rps12
+Cre-1.g2717000	GMM:1.1.2.2	PS.lightreaction.photosystem I.PSI polypeptide subunits	Chloroplast			psaA
+Cre-1.g2716989	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast			petA
+Cre-1.g2716998	GMM:27.2	RNA.transcription	Chloroplast			rpoC2
+Cre-1.g2717008	GMM:1.1.2.3	PS.lightreaction.photosystem I.biogenesis	Chloroplast			ycf3
+Cre-1.g2716972	GMM:1.1.4	PS.lightreaction.ATP synthase	Chloroplast			atpE
+Cre-1.g2716993			Chloroplast			rpoB-1
+Cre-1.g2716983	GMM:1.1.4	PS.lightreaction.ATP synthase	Chloroplast			atpF
+Cre-1.g2716974	GMM:29.2.1.1.1.1.14	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S14	Chloroplast			rps14
+Cre-1.g2717057			Chloroplast			rpl16
+Cre-1.g2717043			Chloroplast			cemA
+Cre-1.g2717001	GMM:29.2.1.1.1.1.11	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.30S subunit.S11	Chloroplast			rps11
+Cre-1.g000015			Chloroplast			ORF112
+Cre-1.g000025			Chloroplast			ORF50
+Cre-1.g2716975			Chloroplast			psbM
+Cre-1.g2717032			Chloroplast			psbT
+Cre-1.g2717059	GMM:29.2.1.1.1.2.5	protein.synthesis.ribosomal protein.prokaryotic.chloroplast.50S subunit.L5	Chloroplast			rpl5
+Cre-1.g2717017	GMM:1.1.3	PS.lightreaction.cytochrome b6/f	Chloroplast			petB
+Cre-1.g2716963	GMM:1.1.1.2	PS.lightreaction.photosystem II.PSII polypeptide subunits	Chloroplast			psbC