forked from lmarmiesse/FlexFlux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsbml.log
4165 lines (4165 loc) · 560 KB
/
jsbml.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[14:19:15,523 ERROR SBMLCoreParser:181] - Cannot set size for compartment C_ext if the spatial dimensions are zero.
[14:19:15,533 INFO SBMLCoreParser:182] - Attribute = size, element = compartment
[14:19:15,540 WARN SBMLCoreParser:209] - Could not recognize the attribute "size" on the element compartment. Please check the specification for SBML.
[14:19:15,558 ERROR SBMLCoreParser:181] - Cannot set size for compartment C_v if the spatial dimensions are zero.
[14:19:15,559 INFO SBMLCoreParser:182] - Attribute = size, element = compartment
[14:19:15,559 WARN SBMLCoreParser:209] - Could not recognize the attribute "size" on the element compartment. Please check the specification for SBML.
[14:19:15,561 ERROR SBMLCoreParser:181] - Cannot set size for compartment C_x if the spatial dimensions are zero.
[14:19:15,561 INFO SBMLCoreParser:182] - Attribute = size, element = compartment
[14:19:15,562 WARN SBMLCoreParser:209] - Could not recognize the attribute "size" on the element compartment. Please check the specification for SBML.
[14:19:15,564 ERROR SBMLCoreParser:181] - Cannot set size for compartment C_biomass if the spatial dimensions are zero.
[14:19:15,564 INFO SBMLCoreParser:182] - Attribute = size, element = compartment
[14:19:15,565 WARN SBMLCoreParser:209] - Could not recognize the attribute "size" on the element compartment. Please check the specification for SBML.
[14:19:15,567 ERROR SBMLCoreParser:181] - Cannot set size for compartment C_acc if the spatial dimensions are zero.
[14:19:15,567 INFO SBMLCoreParser:182] - Attribute = size, element = compartment
[14:19:15,567 WARN SBMLCoreParser:209] - Could not recognize the attribute "size" on the element compartment. Please check the specification for SBML.
[14:19:15,568 ERROR SBMLCoreParser:181] - Cannot set size for compartment C_m if the spatial dimensions are zero.
[14:19:15,569 INFO SBMLCoreParser:182] - Attribute = size, element = compartment
[14:19:15,569 WARN SBMLCoreParser:209] - Could not recognize the attribute "size" on the element compartment. Please check the specification for SBML.
[14:19:15,570 ERROR SBMLCoreParser:181] - Cannot set size for compartment C_p if the spatial dimensions are zero.
[14:19:15,570 INFO SBMLCoreParser:182] - Attribute = size, element = compartment
[14:19:15,570 WARN SBMLCoreParser:209] - Could not recognize the attribute "size" on the element compartment. Please check the specification for SBML.
[14:19:15,571 ERROR SBMLCoreParser:181] - Cannot set size for compartment C_c if the spatial dimensions are zero.
[14:19:15,571 INFO SBMLCoreParser:182] - Attribute = size, element = compartment
[14:19:15,571 WARN SBMLCoreParser:209] - Could not recognize the attribute "size" on the element compartment. Please check the specification for SBML.
[14:19:17,182 ERROR Model:3920] - An element with the id "_AT1G74920" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,183 ERROR IdentifierException:61] - An element with the id "_AT1G74920" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,183 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G74920 for species.
[14:19:17,185 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,185 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,186 ERROR Model:3920] - An element with the id "_AT5G49650" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,186 ERROR IdentifierException:61] - An element with the id "_AT5G49650" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,186 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G49650 for species.
[14:19:17,187 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,187 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,187 ERROR Model:3920] - An element with the id "_AT5G17820" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,188 ERROR IdentifierException:61] - An element with the id "_AT5G17820" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,188 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G17820 for species.
[14:19:17,188 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,189 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,189 ERROR Model:3920] - An element with the id "_AT4G28860" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,189 ERROR IdentifierException:61] - An element with the id "_AT4G28860" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,190 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G28860 for species.
[14:19:17,190 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,190 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,191 ERROR Model:3920] - An element with the id "_AT4G34640" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,191 ERROR IdentifierException:61] - An element with the id "_AT4G34640" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,191 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G34640 for species.
[14:19:17,192 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,192 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,192 ERROR Model:3920] - An element with the id "_AT3G60750" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,193 ERROR IdentifierException:61] - An element with the id "_AT3G60750" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,193 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G60750 for species.
[14:19:17,193 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,193 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,194 ERROR Model:3920] - An element with the id "_AT1G80460" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,194 ERROR IdentifierException:61] - An element with the id "_AT1G80460" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,195 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G80460 for species.
[14:19:17,195 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,195 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,196 ERROR Model:3920] - An element with the id "_AT4G08800" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,196 ERROR IdentifierException:61] - An element with the id "_AT4G08800" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,196 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G08800 for species.
[14:19:17,196 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,197 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,197 ERROR Model:3920] - An element with the id "_AT1G20510" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,198 ERROR IdentifierException:61] - An element with the id "_AT1G20510" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,198 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G20510 for species.
[14:19:17,198 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,198 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,199 ERROR Model:3920] - An element with the id "_AT5G23580" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,199 ERROR IdentifierException:61] - An element with the id "_AT5G23580" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,199 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G23580 for species.
[14:19:17,200 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,200 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,200 ERROR Model:3920] - An element with the id "_AT5G10170" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,201 ERROR IdentifierException:61] - An element with the id "_AT5G10170" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,201 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G10170 for species.
[14:19:17,201 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,201 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,202 ERROR Model:3920] - An element with the id "_AT1G32380" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,202 ERROR IdentifierException:61] - An element with the id "_AT1G32380" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,202 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G32380 for species.
[14:19:17,203 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,203 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,203 ERROR Model:3920] - An element with the id "_AT1G80660" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,204 ERROR IdentifierException:61] - An element with the id "_AT1G80660" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,204 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G80660 for species.
[14:19:17,204 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,204 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,205 ERROR Model:3920] - An element with the id "_AT2G18230" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,205 ERROR IdentifierException:61] - An element with the id "_AT2G18230" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,205 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G18230 for species.
[14:19:17,206 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,206 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,206 ERROR Model:3920] - An element with the id "_AT5G65010" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,207 ERROR IdentifierException:61] - An element with the id "_AT5G65010" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,207 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G65010 for species.
[14:19:17,207 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,207 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,208 ERROR Model:3920] - An element with the id "_AT2G38910" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,208 ERROR IdentifierException:61] - An element with the id "_AT2G38910" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,208 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G38910 for species.
[14:19:17,209 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,209 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,209 ERROR Model:3920] - An element with the id "_AT4G13710" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,210 ERROR IdentifierException:61] - An element with the id "_AT4G13710" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,210 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G13710 for species.
[14:19:17,210 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,210 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,211 ERROR Model:3920] - An element with the id "_AT3G22740" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,211 ERROR IdentifierException:61] - An element with the id "_AT3G22740" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,211 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G22740 for species.
[14:19:17,211 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,212 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,212 ERROR Model:3920] - An element with the id "_AT2G30860" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,212 ERROR IdentifierException:61] - An element with the id "_AT2G30860" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,213 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G30860 for species.
[14:19:17,213 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,213 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,213 ERROR Model:3920] - An element with the id "_AT5G52840" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,214 ERROR IdentifierException:61] - An element with the id "_AT5G52840" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,214 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G52840 for species.
[14:19:17,214 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,214 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,215 ERROR Model:3920] - An element with the id "_AT3G13790" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,215 ERROR IdentifierException:61] - An element with the id "_AT3G13790" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,215 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G13790 for species.
[14:19:17,216 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,216 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,216 ERROR Model:3920] - An element with the id "_AT1G32780" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,217 ERROR IdentifierException:61] - An element with the id "_AT1G32780" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,217 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G32780 for species.
[14:19:17,217 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,217 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,218 ERROR Model:3920] - An element with the id "_AT5G65750" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,218 ERROR IdentifierException:61] - An element with the id "_AT5G65750" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,219 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G65750 for species.
[14:19:17,219 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,219 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,219 ERROR Model:3920] - An element with the id "_AT4G39280" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,220 ERROR IdentifierException:61] - An element with the id "_AT4G39280" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,220 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G39280 for species.
[14:19:17,220 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,220 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,221 ERROR Model:3920] - An element with the id "_AT5G04660" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,221 ERROR IdentifierException:61] - An element with the id "_AT5G04660" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,221 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G04660 for species.
[14:19:17,222 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,222 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,222 ERROR Model:3920] - An element with the id "_AT5G14740" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,223 ERROR IdentifierException:61] - An element with the id "_AT5G14740" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,223 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G14740 for species.
[14:19:17,223 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,224 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,224 ERROR Model:3920] - An element with the id "_AT1G26570" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,224 ERROR IdentifierException:61] - An element with the id "_AT1G26570" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,225 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G26570 for species.
[14:19:17,225 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,225 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,226 ERROR Model:3920] - An element with the id "_AT1G68850" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,226 ERROR IdentifierException:61] - An element with the id "_AT1G68850" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,226 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G68850 for species.
[14:19:17,227 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,227 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,227 ERROR Model:3920] - An element with the id "_AT3G25960" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,228 ERROR IdentifierException:61] - An element with the id "_AT3G25960" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,228 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G25960 for species.
[14:19:17,228 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,242 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,242 ERROR Model:3920] - An element with the id "_AT3G63080" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,243 ERROR IdentifierException:61] - An element with the id "_AT3G63080" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,243 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G63080 for species.
[14:19:17,243 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,243 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,244 ERROR Model:3920] - An element with the id "_AT3G25570" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,244 ERROR IdentifierException:61] - An element with the id "_AT3G25570" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,244 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G25570 for species.
[14:19:17,244 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,245 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,245 ERROR Model:3920] - An element with the id "_AT3G55140" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,245 ERROR IdentifierException:61] - An element with the id "_AT3G55140" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,246 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G55140 for species.
[14:19:17,246 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,246 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,246 ERROR Model:3920] - An element with the id "_AT1G68460" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,247 ERROR IdentifierException:61] - An element with the id "_AT1G68460" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,247 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G68460 for species.
[14:19:17,247 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,247 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,248 ERROR Model:3920] - An element with the id "_AT1G44820" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,248 ERROR IdentifierException:61] - An element with the id "_AT1G44820" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,248 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G44820 for species.
[14:19:17,248 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,249 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,249 ERROR Model:3920] - An element with the id "_AT2G04450" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,249 ERROR IdentifierException:61] - An element with the id "_AT2G04450" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,250 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G04450 for species.
[14:19:17,250 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,250 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,251 ERROR Model:3920] - An element with the id "_AT1G07420" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,251 ERROR IdentifierException:61] - An element with the id "_AT1G07420" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,251 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G07420 for species.
[14:19:17,251 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,252 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,252 ERROR Model:3920] - An element with the id "_AT5G03690" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,252 ERROR IdentifierException:61] - An element with the id "_AT5G03690" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,253 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G03690 for species.
[14:19:17,253 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,253 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,254 ERROR Model:3920] - An element with the id "_AT5G13930" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,254 ERROR IdentifierException:61] - An element with the id "_AT5G13930" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,254 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G13930 for species.
[14:19:17,255 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,255 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,255 ERROR Model:3920] - An element with the id "_AT2G25610" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,256 ERROR IdentifierException:61] - An element with the id "_AT2G25610" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,256 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G25610 for species.
[14:19:17,256 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,256 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,257 ERROR Model:3920] - An element with the id "_AT1G49430" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,257 ERROR IdentifierException:61] - An element with the id "_AT1G49430" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,257 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G49430 for species.
[14:19:17,258 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,258 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,258 ERROR Model:3920] - An element with the id "_AT4G28880" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,259 ERROR IdentifierException:61] - An element with the id "_AT4G28880" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,269 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G28880 for species.
[14:19:17,270 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,270 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,270 ERROR Model:3920] - An element with the id "_AT4G12440" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,271 ERROR IdentifierException:61] - An element with the id "_AT4G12440" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,271 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G12440 for species.
[14:19:17,271 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,271 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,272 ERROR Model:3920] - An element with the id "_AT5G04630" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,272 ERROR IdentifierException:61] - An element with the id "_AT5G04630" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,272 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G04630 for species.
[14:19:17,272 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,272 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,273 ERROR Model:3920] - An element with the id "_AT3G26830" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,273 ERROR IdentifierException:61] - An element with the id "_AT3G26830" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,273 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G26830 for species.
[14:19:17,274 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,274 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,274 ERROR Model:3920] - An element with the id "_AT4G34890" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,275 ERROR IdentifierException:61] - An element with the id "_AT4G34890" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,275 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G34890 for species.
[14:19:17,275 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,275 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,276 ERROR Model:3920] - An element with the id "_AT5G42590" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,276 ERROR IdentifierException:61] - An element with the id "_AT5G42590" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,276 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G42590 for species.
[14:19:17,276 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,276 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,277 ERROR Model:3920] - An element with the id "_AT5G20830" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,277 ERROR IdentifierException:61] - An element with the id "_AT5G20830" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,277 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G20830 for species.
[14:19:17,289 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,289 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,290 ERROR Model:3920] - An element with the id "_AT2G01290" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,290 ERROR IdentifierException:61] - An element with the id "_AT2G01290" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,290 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G01290 for species.
[14:19:17,290 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,290 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,291 ERROR Model:3920] - An element with the id "_AT2G20420" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,291 ERROR IdentifierException:61] - An element with the id "_AT2G20420" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,291 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G20420 for species.
[14:19:17,291 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,292 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,292 ERROR Model:3920] - An element with the id "_AT2G43360" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,292 ERROR IdentifierException:61] - An element with the id "_AT2G43360" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,292 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G43360 for species.
[14:19:17,293 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,293 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,293 ERROR Model:3920] - An element with the id "_AT4G09520" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,293 ERROR IdentifierException:61] - An element with the id "_AT4G09520" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,294 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G09520 for species.
[14:19:17,294 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,294 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,294 ERROR Model:3920] - An element with the id "_AT2G44490" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,295 ERROR IdentifierException:61] - An element with the id "_AT2G44490" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,295 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G44490 for species.
[14:19:17,295 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,295 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,295 ERROR Model:3920] - An element with the id "_AT4G26970" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,296 ERROR IdentifierException:61] - An element with the id "_AT4G26970" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,296 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G26970 for species.
[14:19:17,296 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,296 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,297 ERROR Model:3920] - An element with the id "_AT5G65720" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,298 ERROR IdentifierException:61] - An element with the id "_AT5G65720" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,298 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G65720 for species.
[14:19:17,298 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,298 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,298 ERROR Model:3920] - An element with the id "_AT3G27400" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,299 ERROR IdentifierException:61] - An element with the id "_AT3G27400" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,299 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G27400 for species.
[14:19:17,299 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,299 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,300 ERROR Model:3920] - An element with the id "_AT3G53520" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,300 ERROR IdentifierException:61] - An element with the id "_AT3G53520" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,300 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G53520 for species.
[14:19:17,300 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,300 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,301 ERROR Model:3920] - An element with the id "_AT5G56350" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,301 ERROR IdentifierException:61] - An element with the id "_AT5G56350" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,301 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G56350 for species.
[14:19:17,301 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,302 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,302 ERROR Model:3920] - An element with the id "_AT5G38830" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,302 ERROR IdentifierException:61] - An element with the id "_AT5G38830" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,302 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G38830 for species.
[14:19:17,303 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,303 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,303 ERROR Model:3920] - An element with the id "_AT2G35690" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,303 ERROR IdentifierException:61] - An element with the id "_AT2G35690" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,304 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G35690 for species.
[14:19:17,304 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,304 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,304 ERROR Model:3920] - An element with the id "_AT1G02640" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,304 ERROR IdentifierException:61] - An element with the id "_AT1G02640" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,305 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G02640 for species.
[14:19:17,305 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,305 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,305 ERROR Model:3920] - An element with the id "_AT1G07450" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,306 ERROR IdentifierException:61] - An element with the id "_AT1G07450" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,306 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G07450 for species.
[14:19:17,306 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,306 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,307 ERROR Model:3920] - An element with the id "_AT3G21230" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,307 ERROR IdentifierException:61] - An element with the id "_AT3G21230" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,307 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G21230 for species.
[14:19:17,307 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,308 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,308 ERROR Model:3920] - An element with the id "_AT4G29840" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,308 ERROR IdentifierException:61] - An element with the id "_AT4G29840" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,309 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G29840 for species.
[14:19:17,309 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,309 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,309 ERROR Model:3920] - An element with the id "_AT3G10700" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,310 ERROR IdentifierException:61] - An element with the id "_AT3G10700" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,310 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G10700 for species.
[14:19:17,310 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,310 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,311 ERROR Model:3920] - An element with the id "_AT1G14070" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,311 ERROR IdentifierException:61] - An element with the id "_AT1G14070" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,311 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G14070 for species.
[14:19:17,311 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,311 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,312 ERROR Model:3920] - An element with the id "_AT5G10160" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,312 ERROR IdentifierException:61] - An element with the id "_AT5G10160" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,312 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G10160 for species.
[14:19:17,312 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,312 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,313 ERROR Model:3920] - An element with the id "_AT3G07800" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,314 ERROR IdentifierException:61] - An element with the id "_AT3G07800" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,314 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G07800 for species.
[14:19:17,314 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,314 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,315 ERROR Model:3920] - An element with the id "_AT4G31400" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,315 ERROR IdentifierException:61] - An element with the id "_AT4G31400" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,315 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G31400 for species.
[14:19:17,315 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,316 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,316 ERROR Model:3920] - An element with the id "_AT3G55120" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,316 ERROR IdentifierException:61] - An element with the id "_AT3G55120" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,317 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G55120 for species.
[14:19:17,317 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,317 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,318 ERROR Model:3920] - An element with the id "_AT3G55650" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,318 ERROR IdentifierException:61] - An element with the id "_AT3G55650" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,318 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G55650 for species.
[14:19:17,318 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,319 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,319 ERROR Model:3920] - An element with the id "_AT1G69370" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,319 ERROR IdentifierException:61] - An element with the id "_AT1G69370" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,319 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G69370 for species.
[14:19:17,320 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,320 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,320 ERROR Model:3920] - An element with the id "_AT3G24503" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,320 ERROR IdentifierException:61] - An element with the id "_AT3G24503" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,321 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G24503 for species.
[14:19:17,321 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,321 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,321 ERROR Model:3920] - An element with the id "_AT1G55180" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,346 ERROR IdentifierException:61] - An element with the id "_AT1G55180" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,347 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G55180 for species.
[14:19:17,347 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,347 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,348 ERROR Model:3920] - An element with the id "_AT5G13520" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,364 ERROR IdentifierException:61] - An element with the id "_AT5G13520" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,364 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G13520 for species.
[14:19:17,365 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,365 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,365 ERROR Model:3920] - An element with the id "_AT4G26910" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,365 ERROR IdentifierException:61] - An element with the id "_AT4G26910" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,366 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G26910 for species.
[14:19:17,366 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,366 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,366 ERROR Model:3920] - An element with the id "_AT2G20360" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,367 ERROR IdentifierException:61] - An element with the id "_AT2G20360" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,367 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G20360 for species.
[14:19:17,367 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,367 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,368 ERROR Model:3920] - An element with the id "_AT1G35530" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,368 ERROR IdentifierException:61] - An element with the id "_AT1G35530" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,368 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G35530 for species.
[14:19:17,368 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,368 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,369 ERROR Model:3920] - An element with the id "_AT4G16210" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,369 ERROR IdentifierException:61] - An element with the id "_AT4G16210" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,369 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G16210 for species.
[14:19:17,369 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,369 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,370 ERROR Model:3920] - An element with the id "_AT1G78900" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,370 ERROR IdentifierException:61] - An element with the id "_AT1G78900" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,370 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G78900 for species.
[14:19:17,370 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,371 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,371 ERROR Model:3920] - An element with the id "_AT1G28440" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,371 ERROR IdentifierException:61] - An element with the id "_AT1G28440" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,371 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G28440 for species.
[14:19:17,371 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,372 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,372 ERROR Model:3920] - An element with the id "_AT5G22410" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,372 ERROR IdentifierException:61] - An element with the id "_AT5G22410" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,372 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G22410 for species.
[14:19:17,372 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,373 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,373 ERROR Model:3920] - An element with the id "_AT1G74960" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,373 ERROR IdentifierException:61] - An element with the id "_AT1G74960" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,380 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G74960 for species.
[14:19:17,380 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,380 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,386 ERROR Model:3920] - An element with the id "_AT1G62430" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,386 ERROR IdentifierException:61] - An element with the id "_AT1G62430" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,386 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G62430 for species.
[14:19:17,386 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,387 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,387 ERROR Model:3920] - An element with the id "_AT5G49160" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,387 ERROR IdentifierException:61] - An element with the id "_AT5G49160" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,387 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G49160 for species.
[14:19:17,387 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,388 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,388 ERROR Model:3920] - An element with the id "_AT5G18200" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,388 ERROR IdentifierException:61] - An element with the id "_AT5G18200" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,388 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G18200 for species.
[14:19:17,388 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,389 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,389 ERROR Model:3920] - An element with the id "_AT5G42740" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,389 ERROR IdentifierException:61] - An element with the id "_AT5G42740" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,389 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G42740 for species.
[14:19:17,389 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,397 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,398 ERROR Model:3920] - An element with the id "_AT1G10070" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,406 ERROR IdentifierException:61] - An element with the id "_AT1G10070" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,406 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G10070 for species.
[14:19:17,406 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,406 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,407 ERROR Model:3920] - An element with the id "_AT5G39320" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,407 ERROR IdentifierException:61] - An element with the id "_AT5G39320" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,407 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G39320 for species.
[14:19:17,407 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,407 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,407 ERROR Model:3920] - An element with the id "_AT5G58400" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,408 ERROR IdentifierException:61] - An element with the id "_AT5G58400" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,408 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G58400 for species.
[14:19:17,408 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,408 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,408 ERROR Model:3920] - An element with the id "_AT1G62640" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,409 ERROR IdentifierException:61] - An element with the id "_AT1G62640" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,409 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G62640 for species.
[14:19:17,409 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,409 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,409 ERROR Model:3920] - An element with the id "_AT3G14270" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,423 ERROR IdentifierException:61] - An element with the id "_AT3G14270" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,423 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G14270 for species.
[14:19:17,423 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,423 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,424 ERROR Model:3920] - An element with the id "_AT1G09780" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,424 ERROR IdentifierException:61] - An element with the id "_AT1G09780" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,424 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G09780 for species.
[14:19:17,424 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,424 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,425 ERROR Model:3920] - An element with the id "_ARTHCP080" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,425 ERROR IdentifierException:61] - An element with the id "_ARTHCP080" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,425 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _ARTHCP080 for species.
[14:19:17,431 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,432 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,433 ERROR Model:3920] - An element with the id "_AT3G27820" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,433 ERROR IdentifierException:61] - An element with the id "_AT3G27820" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,433 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G27820 for species.
[14:19:17,433 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,434 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,434 ERROR Model:3920] - An element with the id "_AT1G12840" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,434 ERROR IdentifierException:61] - An element with the id "_AT1G12840" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,434 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G12840 for species.
[14:19:17,435 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,435 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,435 ERROR Model:3920] - An element with the id "_AT3G17760" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,435 ERROR IdentifierException:61] - An element with the id "_AT3G17760" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,435 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G17760 for species.
[14:19:17,436 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,436 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,446 ERROR Model:3920] - An element with the id "_AT4G18360" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,447 ERROR IdentifierException:61] - An element with the id "_AT4G18360" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,448 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G18360 for species.
[14:19:17,448 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,448 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,449 ERROR Model:3920] - An element with the id "_AT5G49180" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,449 ERROR IdentifierException:61] - An element with the id "_AT5G49180" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,449 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G49180 for species.
[14:19:17,449 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,449 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,469 ERROR Model:3920] - An element with the id "_AT5G04620" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,469 ERROR IdentifierException:61] - An element with the id "_AT5G04620" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,469 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G04620 for species.
[14:19:17,469 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,473 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,473 ERROR Model:3920] - An element with the id "_AT1G72810" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,474 ERROR IdentifierException:61] - An element with the id "_AT1G72810" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,474 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G72810 for species.
[14:19:17,474 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,474 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,474 ERROR Model:3920] - An element with the id "_ARTHCP079" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,475 ERROR IdentifierException:61] - An element with the id "_ARTHCP079" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,475 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _ARTHCP079 for species.
[14:19:17,475 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,475 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,475 ERROR Model:3920] - An element with the id "_AT3G18030" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,475 ERROR IdentifierException:61] - An element with the id "_AT3G18030" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,476 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G18030 for species.
[14:19:17,476 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,476 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,476 ERROR Model:3920] - An element with the id "_AT1G67560" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,476 ERROR IdentifierException:61] - An element with the id "_AT1G67560" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,477 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G67560 for species.
[14:19:17,477 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,477 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,477 ERROR Model:3920] - An element with the id "_AT1G07670" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,477 ERROR IdentifierException:61] - An element with the id "_AT1G07670" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,477 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G07670 for species.
[14:19:17,486 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,486 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,489 ERROR Model:3920] - An element with the id "_AT4G38970" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,489 ERROR IdentifierException:61] - An element with the id "_AT4G38970" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,489 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G38970 for species.
[14:19:17,490 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,490 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,490 ERROR Model:3920] - An element with the id "_AT2G46860" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,490 ERROR IdentifierException:61] - An element with the id "_AT2G46860" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,490 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G46860 for species.
[14:19:17,491 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,491 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,491 ERROR Model:3920] - An element with the id "_AT5G41480" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,491 ERROR IdentifierException:61] - An element with the id "_AT5G41480" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,491 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G41480 for species.
[14:19:17,491 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,492 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,492 ERROR Model:3920] - An element with the id "_AT1G55880" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,492 ERROR IdentifierException:61] - An element with the id "_AT1G55880" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,492 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G55880 for species.
[14:19:17,492 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,493 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,493 ERROR Model:3920] - An element with the id "_AT5G03650" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,493 ERROR IdentifierException:61] - An element with the id "_AT5G03650" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,493 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G03650 for species.
[14:19:17,501 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,501 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,506 ERROR Model:3920] - An element with the id "_AT4G27070" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,506 ERROR IdentifierException:61] - An element with the id "_AT4G27070" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,506 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G27070 for species.
[14:19:17,506 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,507 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,507 ERROR Model:3920] - An element with the id "_AT2G18450" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,507 ERROR IdentifierException:61] - An element with the id "_AT2G18450" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,507 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G18450 for species.
[14:19:17,507 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,507 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,508 ERROR Model:3920] - An element with the id "_ARTHCP077" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,508 ERROR IdentifierException:61] - An element with the id "_ARTHCP077" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,508 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _ARTHCP077 for species.
[14:19:17,508 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,508 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,509 ERROR Model:3920] - An element with the id "_ARTHCP078" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,509 ERROR IdentifierException:61] - An element with the id "_ARTHCP078" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,636 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _ARTHCP078 for species.
[14:19:17,637 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,637 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,637 ERROR Model:3920] - An element with the id "_ARTHCP076" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,637 ERROR IdentifierException:61] - An element with the id "_ARTHCP076" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,637 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _ARTHCP076 for species.
[14:19:17,638 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,638 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,638 ERROR Model:3920] - An element with the id "_AT5G49190" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,638 ERROR IdentifierException:61] - An element with the id "_AT5G49190" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,638 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G49190 for species.
[14:19:17,638 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,639 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,639 ERROR Model:3920] - An element with the id "_AT4G17090" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,639 ERROR IdentifierException:61] - An element with the id "_AT4G17090" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,639 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G17090 for species.
[14:19:17,639 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,639 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,640 ERROR Model:3920] - An element with the id "_ARTHCP074" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,640 ERROR IdentifierException:61] - An element with the id "_ARTHCP074" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,640 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _ARTHCP074 for species.
[14:19:17,640 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,640 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,641 ERROR Model:3920] - An element with the id "_ARTHCP071" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,642 ERROR IdentifierException:61] - An element with the id "_ARTHCP071" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,642 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _ARTHCP071 for species.
[14:19:17,642 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,642 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,642 ERROR Model:3920] - An element with the id "_AT3G10340" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,642 ERROR IdentifierException:61] - An element with the id "_AT3G10340" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,643 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G10340 for species.
[14:19:17,643 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,643 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,643 ERROR Model:3920] - An element with the id "_AT5G43280" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,643 ERROR IdentifierException:61] - An element with the id "_AT5G43280" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,643 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G43280 for species.
[14:19:17,643 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,644 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,644 ERROR Model:3920] - An element with the id "_AT3G07850" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,644 ERROR IdentifierException:61] - An element with the id "_AT3G07850" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,644 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G07850 for species.
[14:19:17,644 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,644 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,645 ERROR Model:3920] - An element with the id "_AT5G13110" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,645 ERROR IdentifierException:61] - An element with the id "_AT5G13110" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,645 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G13110 for species.
[14:19:17,645 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,645 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,645 ERROR Model:3920] - An element with the id "_AT1G48860" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,646 ERROR IdentifierException:61] - An element with the id "_AT1G48860" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,646 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G48860 for species.
[14:19:17,646 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,646 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,646 ERROR Model:3920] - An element with the id "_AT3G24030" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,646 ERROR IdentifierException:61] - An element with the id "_AT3G24030" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,647 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G24030 for species.
[14:19:17,647 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,647 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,647 ERROR Model:3920] - An element with the id "_AT1G31230" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,647 ERROR IdentifierException:61] - An element with the id "_AT1G31230" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,647 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G31230 for species.
[14:19:17,647 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,825 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,826 ERROR Model:3920] - An element with the id "_ARTHCP068" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,826 ERROR IdentifierException:61] - An element with the id "_ARTHCP068" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,826 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _ARTHCP068 for species.
[14:19:17,826 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,826 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,826 ERROR Model:3920] - An element with the id "_AT2G11810" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,827 ERROR IdentifierException:61] - An element with the id "_AT2G11810" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,827 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G11810 for species.
[14:19:17,827 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,827 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,827 ERROR Model:3920] - An element with the id "_AT1G20575" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,827 ERROR IdentifierException:61] - An element with the id "_AT1G20575" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,828 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G20575 for species.
[14:19:17,828 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,828 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,829 ERROR Model:3920] - An element with the id "_AT4G09570" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,830 ERROR IdentifierException:61] - An element with the id "_AT4G09570" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,830 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G09570 for species.
[14:19:17,830 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,830 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,830 ERROR Model:3920] - An element with the id "_AT2G35390" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,830 ERROR IdentifierException:61] - An element with the id "_AT2G35390" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,830 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G35390 for species.
[14:19:17,831 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,831 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,831 ERROR Model:3920] - An element with the id "_AT1G15550" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,831 ERROR IdentifierException:61] - An element with the id "_AT1G15550" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,831 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G15550 for species.
[14:19:17,831 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,832 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,832 ERROR Model:3920] - An element with the id "_AT3G06200" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,832 ERROR IdentifierException:61] - An element with the id "_AT3G06200" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,832 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G06200 for species.
[14:19:17,832 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,832 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,833 ERROR Model:3920] - An element with the id "_AT3G20020" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,833 ERROR IdentifierException:61] - An element with the id "_AT3G20020" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,833 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G20020 for species.
[14:19:17,833 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,833 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,838 ERROR Model:3920] - An element with the id "_AT4G11150" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,838 ERROR IdentifierException:61] - An element with the id "_AT4G11150" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,838 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G11150 for species.
[14:19:17,838 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,839 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,839 ERROR Model:3920] - An element with the id "_AT1G15950" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,839 ERROR IdentifierException:61] - An element with the id "_AT1G15950" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,839 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G15950 for species.
[14:19:17,839 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,839 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,840 ERROR Model:3920] - An element with the id "_AT2G36230" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,840 ERROR IdentifierException:61] - An element with the id "_AT2G36230" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,840 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G36230 for species.
[14:19:17,840 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,840 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,844 ERROR Model:3920] - An element with the id "_AT5G66190" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:17,844 ERROR IdentifierException:61] - An element with the id "_AT5G66190" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:17,845 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G66190 for species.
[14:19:17,845 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:17,845 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:17,845 ERROR Model:3920] - An element with the id "_AT1G48850" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,098 ERROR IdentifierException:61] - An element with the id "_AT1G48850" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,098 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G48850 for species.
[14:19:18,098 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,098 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,099 ERROR Model:3920] - An element with the id "_AT1G31220" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,099 ERROR IdentifierException:61] - An element with the id "_AT1G31220" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,099 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G31220 for species.
[14:19:18,099 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,099 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,100 ERROR Model:3920] - An element with the id "_AT3G02470" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,101 ERROR IdentifierException:61] - An element with the id "_AT3G02470" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,101 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G02470 for species.
[14:19:18,101 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,101 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,101 ERROR Model:3920] - An element with the id "_AT5G03630" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,110 ERROR IdentifierException:61] - An element with the id "_AT5G03630" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,110 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G03630 for species.
[14:19:18,110 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,110 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,111 ERROR Model:3920] - An element with the id "_AT5G19360" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,111 ERROR IdentifierException:61] - An element with the id "_AT5G19360" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,111 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G19360 for species.
[14:19:18,111 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,112 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,112 ERROR Model:3920] - An element with the id "_AT4G14340" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,112 ERROR IdentifierException:61] - An element with the id "_AT4G14340" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,112 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G14340 for species.
[14:19:18,112 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,112 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,126 ERROR Model:3920] - An element with the id "_AT1G27880" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,126 ERROR IdentifierException:61] - An element with the id "_AT1G27880" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,126 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G27880 for species.
[14:19:18,126 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,126 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,127 ERROR Model:3920] - An element with the id "_AT1G09795" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,127 ERROR IdentifierException:61] - An element with the id "_AT1G09795" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,127 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G09795 for species.
[14:19:18,127 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,127 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,127 ERROR Model:3920] - An element with the id "_AT3G15020" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,128 ERROR IdentifierException:61] - An element with the id "_AT3G15020" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,128 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G15020 for species.
[14:19:18,128 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,128 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,128 ERROR Model:3920] - An element with the id "_AT2G19570" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,128 ERROR IdentifierException:61] - An element with the id "_AT2G19570" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,128 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G19570 for species.
[14:19:18,129 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,129 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,129 ERROR Model:3920] - An element with the id "_AT3G08560" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,129 ERROR IdentifierException:61] - An element with the id "_AT3G08560" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,129 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G08560 for species.
[14:19:18,129 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,133 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,134 ERROR Model:3920] - An element with the id "_AT5G10870" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,134 ERROR IdentifierException:61] - An element with the id "_AT5G10870" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,134 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G10870 for species.
[14:19:18,134 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,134 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,135 ERROR Model:3920] - An element with the id "_AT4G33030" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,135 ERROR IdentifierException:61] - An element with the id "_AT4G33030" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,135 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G33030 for species.
[14:19:18,462 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,463 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,464 ERROR Model:3920] - An element with the id "_AT3G53580" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,465 ERROR IdentifierException:61] - An element with the id "_AT3G53580" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,465 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G53580 for species.
[14:19:18,465 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,465 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,466 ERROR Model:3920] - An element with the id "_AT2G05990" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,466 ERROR IdentifierException:61] - An element with the id "_AT2G05990" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,466 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G05990 for species.
[14:19:18,466 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,466 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,467 ERROR Model:3920] - An element with the id "_AT4G17260" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,467 ERROR IdentifierException:61] - An element with the id "_AT4G17260" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,467 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G17260 for species.
[14:19:18,467 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,467 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,468 ERROR Model:3920] - An element with the id "_AT3G59850" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,468 ERROR IdentifierException:61] - An element with the id "_AT3G59850" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,468 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G59850 for species.
[14:19:18,468 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,468 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,469 ERROR Model:3920] - An element with the id "_AT3G02620" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,469 ERROR IdentifierException:61] - An element with the id "_AT3G02620" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,469 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G02620 for species.
[14:19:18,469 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,469 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,470 ERROR Model:3920] - An element with the id "_AT3G15730" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,470 ERROR IdentifierException:61] - An element with the id "_AT3G15730" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,470 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G15730 for species.
[14:19:18,470 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,470 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,494 ERROR Model:3920] - An element with the id "_AT1G31860" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,495 ERROR IdentifierException:61] - An element with the id "_AT1G31860" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,495 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G31860 for species.
[14:19:18,495 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,495 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,501 ERROR Model:3920] - An element with the id "_AT5G58240" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,502 ERROR IdentifierException:61] - An element with the id "_AT5G58240" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,502 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G58240 for species.
[14:19:18,502 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,502 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,503 ERROR Model:3920] - An element with the id "_AT2G26930" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,503 ERROR IdentifierException:61] - An element with the id "_AT2G26930" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,510 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G26930 for species.
[14:19:18,510 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,510 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,511 ERROR Model:3920] - An element with the id "_AT3G28710" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,511 ERROR IdentifierException:61] - An element with the id "_AT3G28710" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,511 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G28710 for species.
[14:19:18,511 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,512 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,512 ERROR Model:3920] - An element with the id "_AT4G37410" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,512 ERROR IdentifierException:61] - An element with the id "_AT4G37410" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,512 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G37410 for species.
[14:19:18,512 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,512 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,513 ERROR Model:3920] - An element with the id "_AT3G27870" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,515 ERROR IdentifierException:61] - An element with the id "_AT3G27870" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,515 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G27870 for species.
[14:19:18,515 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,515 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,846 ERROR Model:3920] - An element with the id "_AT3G28715" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,846 ERROR IdentifierException:61] - An element with the id "_AT3G28715" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,846 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G28715 for species.
[14:19:18,846 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,846 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,848 ERROR Model:3920] - An element with the id "_AT4G13780" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,848 ERROR IdentifierException:61] - An element with the id "_AT4G13780" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,848 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G13780 for species.
[14:19:18,848 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,848 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,849 ERROR Model:3920] - An element with the id "_AT3G57530" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,849 ERROR IdentifierException:61] - An element with the id "_AT3G57530" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,849 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G57530 for species.
[14:19:18,849 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,849 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,850 ERROR Model:3920] - An element with the id "_AT4G31870" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,850 ERROR IdentifierException:61] - An element with the id "_AT4G31870" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,850 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G31870 for species.
[14:19:18,850 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,850 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,851 ERROR Model:3920] - An element with the id "_AT5G57260" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,851 ERROR IdentifierException:61] - An element with the id "_AT5G57260" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,851 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G57260 for species.
[14:19:18,851 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,851 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,851 ERROR Model:3920] - An element with the id "_AT5G25900" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,852 ERROR IdentifierException:61] - An element with the id "_AT5G25900" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,852 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G25900 for species.
[14:19:18,852 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,852 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,852 ERROR Model:3920] - An element with the id "_AT2G32260" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,853 ERROR IdentifierException:61] - An element with the id "_AT2G32260" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,853 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G32260 for species.
[14:19:18,853 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,853 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,853 ERROR Model:3920] - An element with the id "_NF" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,853 ERROR IdentifierException:61] - An element with the id "_NF" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,853 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _NF for species.
[14:19:18,854 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,862 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,863 ERROR Model:3920] - An element with the id "_AT1G50090" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,863 ERROR IdentifierException:61] - An element with the id "_AT1G50090" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,864 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G50090 for species.
[14:19:18,864 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,864 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,864 ERROR Model:3920] - An element with the id "_AT3G15720" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,865 ERROR IdentifierException:61] - An element with the id "_AT3G15720" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,865 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G15720 for species.
[14:19:18,865 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,865 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,865 ERROR Model:3920] - An element with the id "_AT1G34430" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,869 ERROR IdentifierException:61] - An element with the id "_AT1G34430" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,869 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G34430 for species.
[14:19:18,869 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,869 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,870 ERROR Model:3920] - An element with the id "_AT3G55870" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,870 ERROR IdentifierException:61] - An element with the id "_AT3G55870" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:18,870 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G55870 for species.
[14:19:18,871 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:18,871 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:18,871 ERROR Model:3920] - An element with the id "_AT1G60550" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:18,871 ERROR IdentifierException:61] - An element with the id "_AT1G60550" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,267 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G60550 for species.
[14:19:19,268 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,268 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,268 ERROR Model:3920] - An element with the id "_AT3G02610" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,269 ERROR IdentifierException:61] - An element with the id "_AT3G02610" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,269 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G02610 for species.
[14:19:19,269 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,269 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,269 ERROR Model:3920] - An element with the id "_AT4G37930" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,270 ERROR IdentifierException:61] - An element with the id "_AT4G37930" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,270 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G37930 for species.
[14:19:19,270 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,270 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,270 ERROR Model:3920] - An element with the id "_AT3G13180" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,271 ERROR IdentifierException:61] - An element with the id "_AT3G13180" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,271 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G13180 for species.
[14:19:19,271 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,271 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,271 ERROR Model:3920] - An element with the id "_AT4G37400" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,271 ERROR IdentifierException:61] - An element with the id "_AT4G37400" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,272 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G37400 for species.
[14:19:19,272 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,272 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,272 ERROR Model:3920] - An element with the id "_AT3G55450" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,272 ERROR IdentifierException:61] - An element with the id "_AT3G55450" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,273 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT3G55450 for species.
[14:19:19,273 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,273 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,273 ERROR Model:3920] - An element with the id "_AT5G20280" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,273 ERROR IdentifierException:61] - An element with the id "_AT5G20280" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,274 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G20280 for species.
[14:19:19,274 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,274 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,274 ERROR Model:3920] - An element with the id "_AT5G09970" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,274 ERROR IdentifierException:61] - An element with the id "_AT5G09970" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,274 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G09970 for species.
[14:19:19,275 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,275 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,275 ERROR Model:3920] - An element with the id "_AT5G03080" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,275 ERROR IdentifierException:61] - An element with the id "_AT5G03080" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,275 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G03080 for species.
[14:19:19,275 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,276 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,276 ERROR Model:3920] - An element with the id "_AT1G13210" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,276 ERROR IdentifierException:61] - An element with the id "_AT1G13210" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,276 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G13210 for species.
[14:19:19,276 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,276 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,277 ERROR Model:3920] - An element with the id "_AT2G39040" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,277 ERROR IdentifierException:61] - An element with the id "_AT2G39040" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,277 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G39040 for species.
[14:19:19,277 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,277 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,278 ERROR Model:3920] - An element with the id "_AT4G02620" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,278 ERROR IdentifierException:61] - An element with the id "_AT4G02620" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,278 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G02620 for species.
[14:19:19,278 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,278 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,279 ERROR Model:3920] - An element with the id "_AT5G06340" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,279 ERROR IdentifierException:61] - An element with the id "_AT5G06340" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,279 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G06340 for species.
[14:19:19,279 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,797 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,798 ERROR Model:3920] - An element with the id "_AT1G62660" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,799 ERROR IdentifierException:61] - An element with the id "_AT1G62660" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,799 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G62660 for species.
[14:19:19,799 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,799 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,799 ERROR Model:3920] - An element with the id "_AT4G27550" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,799 ERROR IdentifierException:61] - An element with the id "_AT4G27550" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,800 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G27550 for species.
[14:19:19,800 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,800 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,800 ERROR Model:3920] - An element with the id "_AT4G04880" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,800 ERROR IdentifierException:61] - An element with the id "_AT4G04880" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,800 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT4G04880 for species.
[14:19:19,801 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,801 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,801 ERROR Model:3920] - An element with the id "_AT1G01190" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,801 ERROR IdentifierException:61] - An element with the id "_AT1G01190" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,801 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G01190 for species.
[14:19:19,801 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,802 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,802 ERROR Model:3920] - An element with the id "_AT5G18880" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,802 ERROR IdentifierException:61] - An element with the id "_AT5G18880" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,802 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT5G18880 for species.
[14:19:19,802 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,803 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,803 ERROR Model:3920] - An element with the id "_AT1G71750" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,803 ERROR IdentifierException:61] - An element with the id "_AT1G71750" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,803 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G71750 for species.
[14:19:19,803 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,803 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,814 ERROR Model:3920] - An element with the id "_AT1G75280" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,814 ERROR IdentifierException:61] - An element with the id "_AT1G75280" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,815 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT1G75280 for species.
[14:19:19,815 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,815 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,815 ERROR Model:3920] - An element with the id "_AT2G13370" is already present in this model AraGEM. The new element will not be added to the model.
[14:19:19,815 ERROR IdentifierException:61] - An element with the id "_AT2G13370" is already present in the SBML model. The identifier of species will not be set to this value.
[14:19:19,816 ERROR SBMLCoreParser:181] - org.sbml.jsbml.IdentifierException: Cannot set duplicate identifier _AT2G13370 for species.
[14:19:19,816 INFO SBMLCoreParser:182] - Attribute = id, element = species
[14:19:19,816 WARN SBMLCoreParser:209] - Could not recognize the attribute "id" on the element species. Please check the specification for SBML.
[14:19:19,816 ERROR Model:3920] - An element with the id "_AT4G33010" is already present in this model AraGEM. The new element will not be added to the model.