forked from geneontology/go-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
users.yaml
3530 lines (3530 loc) · 76.6 KB
/
users.yaml
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
# Metadata on GOC members and contributors
# See the README.md in this directory for more details.
#
# The users.yaml file is updated in TermGenie every six hours.
# TermGenie restarts at 9 pm (Pacific time Zone), aka 5 am (UK time),
# which also refreshes the configuration.
-
nickname: 'Jim Knowles'
email-md5:
- e10e731bffebbca8fbe2c5f86a02419f
authorizations:
noctua-go:
allow-edit: true
xref: 'GOC:jk'
uri: 'GOC:jk'
-
nickname: 'Anushya Muruganujan'
email-md5:
- 2032c0dc70a2aa2c3cadf452302a7e8d
authorizations:
noctua-go:
allow-edit: true
xref: 'GOC:amu'
groups:
- 'http://geneontology.org'
uri: 'GOC:amu'
-
nickname: 'Paul Thomas'
email-md5:
- 84c8bfa613c72bb30f82839e1ce78a55
authorizations:
noctua-go:
allow-edit: true
accounts:
github: thomaspd
xref: 'GOC:pt'
groups:
- 'http://geneontology.org'
uri: 'http://orcid.org/0000-0002-9074-3507'
-
nickname: 'Huaiyu Mi'
email-md5:
- 7e66eb2d15fe29c8a051e43000cc681c
authorizations:
noctua-go:
allow-edit: true
xref: 'GOC:hm'
groups:
- 'http://geneontology.org'
uri: 'http://orcid.org/0000-0001-8721-202X'
accounts:
github: huaiyumi
-
nickname: 'Nathan Dunn'
email-md5:
- 9afebd4cf92acca9aa2bdb557f96b504
authorizations:
termgenie-go:
allow-write: true
allow-review: true
allow-freeform: false
allow-management: false
uri: 'http://orcid.org/0000-0002-4862-3181'
accounts:
github: nathandunn
orcid: '0000-0002-4862-3181'
email-md5:
- 7da61ebeb6459e809d61aebf28f2a315
-
nickname: 'Seth Carbon'
email-md5:
- 65d762aea47eaf21e2b19177f448b3c3
authorizations:
noctua:
go:
allow-edit: true
allow-admin: true
termgenie-go:
allow-write: true
allow-review: true
allow-freeform: false
allow-management: true
xref: 'GOC:sjc'
uri: 'http://orcid.org/0000-0001-8244-1536'
organization: LBL
groups:
- 'http://geneontology.org'
- 'http://planteome.org'
- 'http://lbl.gov'
accounts:
github: kltm
google-plus: '112360324542574840929'
orcid: '0000-0001-8244-1536'
email-md5:
- 65d762aea47eaf21e2b19177f448b3c3
-
nickname: 'Jeremy Nguyen Xuan'
email-md5:
- d62320e131b827615ba8da3decafa6f3
xref: 'GOC:jnx'
uri: 'GOC:jnx'
-
nickname: 'Anna Melidoni'
email-md5:
- ac1bfce31c215d31cd99e43281811dad
authorizations:
noctua-go:
allow-edit: true
xref: 'GOC:anm'
uri: 'GOC:anm'
-
nickname: 'Mike Livstone'
email-md5:
- 8e80fce402cd52cb2455d4c6c51720a5
authorizations:
noctua-go:
allow-edit: true
xref: 'GOC:ml2'
uri: 'GOC:ml2'
-
nickname: 'Heiko Dietze'
email-md5:
- 61ab06ea85d8658a7e17cc30295dafbd
xref: 'GOC:hd'
uri: 'http://orcid.org/0000-0003-0234-1688'
-
nickname: 'Dexter Pratt'
email-md5:
- 1c98b0f0a4b0dc79242cfaaf739f9cc8
authorizations:
noctua-go:
allow-edit: true
xref: 'GOC:dp'
uri: 'GOC:dp'
organization: UCSD
-
uri: 'GOC:fmc'
xref: 'GOC:fmc'
nickname: 'Fiona McCarthy'
organization: AgBase
-
uri: 'GOC:jz'
xref: 'GOC:jz'
nickname: 'Jinhui Zhang'
organization: AgBase
-
uri: 'GOC:lp'
xref: 'GOC:lp'
nickname: 'Lakshmi Pillai'
organization: AgBase
-
nickname: 'Michael Rice'
email-md5:
- a9c277d0f6301c4d5c48bb593268536d
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
xref: 'GOC:mr'
uri: 'GOC:mr'
organization: AgBase
accounts:
github: michaelerice
-
nickname: 'Diane Inglis'
email-md5:
- 601f7b3e4f8165ba4be5057e65143f76
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-freeform: false
accounts:
github: dianeoinglis
xref: 'GOC:di'
uri: 'GOC:di'
organization: AspGD/CGD
-
uri: 'GOC:cy'
xref: 'GOC:cy'
nickname: 'Courtland Yockey'
organization: AstraZeneca
-
uri: 'GOC:ame'
xref: 'GOC:ame'
nickname: 'Anna Melidoni (formerly BHF-UCL)'
email-md5:
- ac1bfce31c215d31cd99e43281811dad
organization: IntAct
authorizations:
termgenie-go:
allow-write: true
allow-freeform: false
-
uri: 'GOC:ebc'
xref: 'GOC:ebc'
nickname: 'Evelyn Camon'
organization: BHF-UCL
comment: 'status inactive, formerly GOA'
-
uri: 'GOC:gr'
xref: 'GOC:gr'
nickname: 'Greg Rowe'
organization: BHF-UCL
comment: 'status inactive, Masters Student working with the BHF group at UCL'
-
uri: 'GOC:hal'
xref: 'GOC:hal'
nickname: 'Hadil Alrohaif'
email-md5:
- e4a501963ab7181d1e40298d93741e50
organization: BHF-UCL
comment: 'status inactive, Masters Student working with the BHF group at UCL'
authorizations:
termgenie-go:
allow-write: true
-
uri: 'http://orcid.org/0000-0002-0918-9335'
xref: 'GOC:jbu'
nickname: 'Jessica Buxton'
organization: BHF-UCL
comment: 'status inactive, Collaborator with the BHF group at UCL'
-
uri: 'http://orcid.org/0000-0001-9510-5320'
xref: 'GOC:kom'
nickname: 'Klaus Mitchell'
email-md5:
- 59418a02b3237575e70fd9f79da8d244
organization: BHF-UCL
comment: 'status inactive, Masters Student working with the BHF group at UCL'
authorizations:
termgenie-go:
allow-write: true
-
uri: 'http://orcid.org/0000-0001-9995-0839'
xref: 'GOC:nc'
nickname: 'Nancy Campbell'
email-md5:
- 6c55ad1ed9cdab0b874123a20a0c3905
organization: BHF-UCL
authorizations:
termgenie-go:
allow-write: true
allow-freeform: false
accounts:
github: NancyCampbell
-
nickname: 'Ruth Lovering'
email-md5:
- 87b721597d5a997234f5a8f61bde469b
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
xref: 'GOC:rl'
uri: 'http://orcid.org/0000-0002-9791-0064'
organization: BHF-UCL
comment: 'formerly HGNC'
groups:
- 'http://www.ucl.ac.uk/functional-gene-annotation/cardiovascular'
- 'http://www.ucl.ac.uk/functional-gene-annotation/neurological/projects/tabs/aruk-ucl'
- 'https://www.ucl.ac.uk/functional-gene-annotation/neurological/projects/tabs/syngo-ucl'
accounts:
github: RLovering
-
nickname: 'Varsha Khodiyar'
email-md5:
- 0a23c8a275ee44e7304d76fe98b7b0b1
authorizations: { }
xref: 'GOC:vk'
uri: 'GOC:vk'
organization: BHF-UCL
comment: 'formerly HGNC'
-
nickname: 'Sejal Patel'
email-md5:
- 724b4f5c03cd807d3977f8ae4c43970a
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-freeform: false
xref: 'GOC:sjp'
uri: 'GOC:sjp'
organization: 'University of Toronto'
comment: 'status inactive, formerly BHF_UCL'
-
uri: 'GOC:nln'
xref: 'GOC:nln'
nickname: 'Nicolas Le Novere'
organization: BIOMD
-
nickname: 'Isabelle Cusin'
uri: 'GOC:ic'
xref: 'GOC:ic'
email-md5:
- a35c6a73b68acd8ba279d77dad079d8f
authorizations:
noctua-go:
allow-edit: true
organization: CALIPHO
-
uri: 'GOC:amm'
xref: 'GOC:amm'
nickname: 'Anna Maria Masci'
organization: CL
comment: 'not directly affiliated with a database, but collaborates on Cell Ontology development'
-
uri: 'GOC:dsd'
xref: 'GOC:dsd'
nickname: 'David S. Dougall'
organization: CL
comment: "member of Richard Scheuermann's group; not directly affiliated with a database, but collaborates on Cell Ontology development"
-
uri: 'GOC:cl'
xref: 'GOC:cl'
nickname: 'Chris Larsen'
organization: Cognia
-
uri: 'GOC:kp'
xref: 'GOC:kp'
nickname: 'Karen Pilcher'
organization: DDB
-
nickname: 'Petra Fey'
email-md5:
- 816b724b99c13b7fd733a9401f879f4e
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
xref: 'GOC:pf'
uri: 'http://orcid.org/0000-0002-4532-2703'
organization: DDB
groups:
- 'http://dictybase.org'
accounts:
github: pfey03
-
nickname: 'Pascale Gaudet'
email-md5:
- 55e50a7c9ce412fdcbdfbb57caeb0aaa
- e92521fb31f573641b4bdd6b9b7b088b
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-freeform: false
xref: 'GOC:pg'
uri: 'http://orcid.org/0000-0003-1813-6857'
organization: GO Central
groups:
- 'http://geneontology.org'
- 'https://www.nextprot.org'
accounts:
github: pgaudet
-
nickname: 'Robert Dodson'
email-md5:
- 0187a194e1fe3ce4482be77cdfe32c79
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
xref: 'GOC:rjd'
uri: 'http://orcid.org/0000-0002-2757-5950'
organization: DDB
groups:
- 'http://dictybase.org'
accounts:
github: rjdodson
-
nickname: 'Amanda Mackie'
authorizations:
noctua-go:
allow-edit: true
xref: 'GOC:am'
uri: 'GOC:am'
organization: EcoCyc
-
uri: 'GOC:atm'
xref: 'GOC:atm'
nickname: 'Athena Mason'
organization: 'E. coli'
-
uri: 'GOC:jh2'
xref: 'GOC:jh2'
nickname: 'Jim Hu'
organization: 'E. coli'
-
nickname: 'Brenley McIntosh'
email-md5:
- 439abe0f9680c9b6a016f44e23d2e3a4
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-freeform: false
xref: 'GOC:bm'
uri: 'GOC:bm'
organization: 'E. coli'
-
uri: 'GOC:fb_curators'
xref: 'GOC:fb_curators'
nickname: 'Curators at FlyBase'
organization: FlyBase
-
uri: 'GOC:nv'
xref: 'GOC:nv'
nickname: 'Nicole Vasilevsky'
email-md5:
- 17d2b31399e746373f3b18f7f65ab7fe
organization: OHSU
authorizations:
noctua:
go:
allow-edit: true
groups:
- 'http://monarchinitiative.org'
- 'https://ncats.nih.gov/translator'
-
uri: 'http://orcid.org/0000-0003-3212-6364'
xref: 'GOC:ha'
nickname: 'Helen Attrill'
email-md5:
- 82989df351e8628287c7d71227c299cb
- 8f2851f24e6a524cc10da6bb2a72e7eb
organization: FlyBase
authorizations:
termgenie-go:
allow-write: true
noctua-go:
allow-edit: true
groups:
- 'http://flybase.org'
accounts:
github: hattrill
-
uri: 'GOC:hb'
xref: 'GOC:hb'
nickname: 'Heather Butler'
organization: FlyBase
-
uri: 'http://orcid.org/0000-0001-5948-3092'
xref: 'GOC:mc'
nickname: 'Marta Costa'
organization: FlyBase
accounts:
github: mmc46
-
uri: 'GOC:ma'
xref: 'GOC:ma'
nickname: 'Michael Ashburner'
organization: FlyBase
-
nickname: 'David Osumi-Sutherland'
email-md5:
- 3e373dc40c5b80696bed3d0987fea2dc
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-review: true
allow-freeform: false
allow-freeform-litxref-optional: true
allow-management: true
xref: 'GOC:dos'
uri: 'http://orcid.org/0000-0002-7073-9172'
organization: GO
accounts:
github: dosumis
-
uri: 'GOC:rc'
xref: 'GOC:rc'
nickname: 'Russ Collins'
organization: FlyBase
-
nickname: 'Susan Tweedie'
email-md5:
- b979cd6be9eec5bef6c92a1ff4173306
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-freeform: false
xref: 'GOC:sart'
uri: 'http://orcid.org/0000-0003-1818-8243'
organization: FlyBase
-
uri: 'GOC:mb'
xref: 'GOC:mb'
nickname: 'Matt Berriman'
organization: GeneDB_Pfalciparum
-
uri: 'GOC:lmg'
xref: 'GOC:lmg'
nickname: 'Linda Groocock'
organization: GeneDB_Spombe
-
nickname: 'Amelia Ireland'
email-md5:
- 84a9c2d76c17fb92ae022b1b80fe0b27
authorizations: { }
xref: 'GOC:ai'
uri: 'GOC:ai'
organization: GO
-
nickname: 'Rebecca Foulger'
email-md5:
- 67660068792406332d36a17cd886a5e6
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-review: true
allow-freeform: false
allow-freeform-litxref-optional: true
allow-management: true
xref: 'GOC:bf'
uri: 'http://orcid.org/0000-0001-8682-8754'
organization: "UCL-Parkinson's UK Annotation Project"
comment: 'former affiliations: FlyBase, UniProt, GO'
-
uri: 'GOC:ceb'
xref: 'GOC:ceb'
nickname: 'Cath Brooksbank'
organization: GO
-
uri: 'GOC:go_curators'
xref: 'GOC:go_curators'
nickname: 'Curators at GO editorial office'
organization: GO
-
uri: 'GOC:jid'
xref: 'GOC:jid'
nickname: 'Jennifer Deegan (nee Clark)'
organization: GO
-
nickname: 'Jane Lomax'
email-md5:
- dad114c06bf7c24dd3aeeedf79fe8168
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-review: true
allow-freeform: false
allow-freeform-litxref-optional: true
allow-management: true
xref: 'GOC:jl'
uri: 'http://orcid.org/0000-0001-8865-4321'
organization: GO
-
uri: 'http://orcid.org/0000-0002-9551-6370'
xref: 'GOC:mec'
nickname: 'Melanie Courtot'
email-md5:
- 792d70ba0832fd43a97a9d4ec5136c86
- a1f4be95870984265a3b33604a963b01
organization: GO
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-review: true
allow-freeform: false
allow-freeform-litxref-optional: true
allow-management: true
accounts:
github: mcourtot
-
nickname: 'Paola Roncaglia'
email-md5:
- 98ca4b42efb7564953508c74394d8634
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-review: true
allow-freeform: false
allow-freeform-litxref-optional: true
allow-management: true
xref: 'GOC:pr'
uri: 'http://orcid.org/0000-0002-2825-0621'
organization: GO
accounts:
github: paolaroncaglia
-
uri: 'GOC:curators'
xref: 'GOC:curators'
nickname: 'GO curators'
organization: GO
comment: 'Usually indicates GO editorial office curators plus others, e.g. from MODs'
-
uri: 'GOC:devbiol'
xref: 'GOC:devbiol'
nickname: 'The Developmental Biology Interest Group'
organization: 'GO Interest Group'
-
uri: 'GOC:aruk'
xref: 'GOC:aruk'
nickname: 'Annotation of proteins associated with dementia'
organization: ARUK-UCL
comment: "Annotation of proteins associated with dementia, funded by Alzheimer's Research UK"
-
nickname: 'Aleksandra Shypitsyna'
email-md5:
- 211b318809e38f23520d0bd64f4a2330
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
xref: 'GOC:als'
uri: 'http://orcid.org/0000-0003-3829-1600'
organization: GOA
accounts:
github: 'zebrafishembryo'
-
nickname: 'Elena Speretta'
uri: 'http://orcid.org/0000-0003-1506-7438'
xref: 'GOC:es'
email-md5:
- e4c08a3f5b380e6103ac2cc3d94d83ff
- c961c90fe1e38150467f235fe1ba6737
organization: GOA
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
accounts:
github: esperetta
-
nickname: 'George Georghiou'
uri: 'http://orcid.org/0000-0001-5067-3199'
xref: 'GOC:gg'
email-md5:
- a5d3f603d546cc29f906118a5d9762a4
organization: EMBL-EBI
authorizations:
noctua:
go:
allow-edit: true
accounts:
github: 'ggeorghiou'
-
nickname: 'Hema Bye-A-Jee'
uri: 'http://orcid.org/0000-0003-2464-7688'
xref: 'GOC:hbye'
email-md5:
- eeaf1be2f013ee3e4fe9204b8e48a1a6
organization: UniProt
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
accounts:
github: hbye
-
uri: 'GOC:ah'
xref: 'GOC:ah'
nickname: 'Alex Holmes'
email-md5:
- b7f33ede546b87737fd185642dbd2bb8
organization: GOA
authorizations:
termgenie-go:
allow-write: true
-
uri: 'GOC:ecd'
xref: 'GOC:ecd'
nickname: 'Emily Dimmer'
organization: GOA
-
nickname: 'Prudence Mutowo'
email-md5:
- c1e6bbfeb859c09c827614d106331252
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-freeform: false
xref: 'GOC:pm'
uri: 'GOC:pm'
organization: GOA
-
nickname: 'Rachael Huntley'
email-md5:
- 3beee3c95e50a25e13cf834785fb2b21
- 35a1ee6e08a0eb2d914ca1529f2fd770
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-freeform: false
xref: 'GOC:rph'
uri: 'http://orcid.org/0000-0001-6718-3559'
organization: BHF-UCL
comment: 'formerly GOA'
groups:
- 'http://www.ucl.ac.uk/functional-gene-annotation/cardiovascular'
accounts:
github: rachhuntley
-
uri: 'GOC:vl'
xref: 'GOC:vl'
nickname: 'Vivian Lee'
organization: GOA
-
nickname: 'Yasmin Alam-Faruque'
email-md5:
- dcec55f1f13d54c59c64f061dbb52797
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
xref: 'GOC:yaf'
uri: 'GOC:yaf'
organization: GOA
-
nickname: 'Birgit Meldal'
email-md5:
- f8b0b6bba244b89fd625b8994bdd1744
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-freeform: false
xref: 'GOC:bhm'
uri: 'http://orcid.org/0000-0003-4062-6158'
organization: InTact
comment: 'Birgit Meldal'
groups:
- 'https://www.ebi.ac.uk/intact'
accounts:
github: bmeldal
-
nickname: 'Ingrid Keseler'
email-md5:
- af515eed93a426d45d1d01200f4e8399
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
xref: 'GOC:imk'
uri: 'GOC:imk'
organization: MetaCyc
-
uri: 'GOC:mengo_curators'
xref: 'GOC:mengo_curators'
nickname: 'Curators at MENGO'
organization: MENGO
-
nickname: 'David Hill'
email-md5:
- 65769275d47653aced3fae5ab1f805b1
authorizations:
noctua:
go:
allow-edit: true
termgenie-go:
allow-write: true
allow-review: true
allow-freeform: false
allow-freeform-litxref-optional: true
allow-management: true
xref: 'GOC:dph'
uri: 'http://orcid.org/0000-0001-7476-6306'
organization: MGI
groups:
- 'http://informatics.jax.org'
- 'http://geneontology.org'
accounts:
github: ukemi
orcid: '0000-0001-7476-6306'
-
uri: 'GOC:tfm'
xref: 'GOC:tfm'
nickname: 'Terry Meehan'
organization: MGI
comment: 'Cell Ontology'
-
uri: 'GOC:ajp'
xref: 'GOC:ajp'
nickname: 'Tony Planchart'
organization: MGI
-
nickname: 'Dmitry Sitnikov'
uri: 'GOC:dms'
xref: 'GOC:dms'
email-md5:
- 5ee6809ed1e68d38c7366e9ae14a5b9e
organization: MGI
groups:
- 'http://informatics.jax.org'
authorizations:
noctua-go:
allow-edit: true
accounts:
github: dms321
-
uri: 'GOC:cls'
xref: 'GOC:cls'
nickname: 'Cynthia Smith'
email-md5:
- cb42c1c690ef5723e25000df7e9265fb
organization: MGI
authorizations:
termgenie-go:
allow-write: true
allow-freeform: false
-
uri: 'http://orcid.org/0000-0003-4606-0597'
xref: 'GOC:smb'
nickname: 'Sue Bello'
organization: MGI
authorizations:
termgenie-go:
allow-write: true
allow-freeform: false
accounts:
github: sbello
-
nickname: 'Grace Stafford'
email-md5:
- 1108e1579ce5583a35c743cb3a85afa7
authorizations:
noctua-go:
allow-edit: true
xref: 'GOC:id'
uri: 'GOC:id'
organization: MGI
-
nickname: 'Mary Dolan'
email-md5:
- d5acbd91b75ea699632b1d569e342a53
authorizations:
noctua-go:
allow-edit: true
uri: 'http://orcid.org/0000-0001-7732-3295'
organization: MGI
groups:
- 'http://informatics.jax.org'
- 'http://geneontology.org'
-
nickname: 'Harold Drabkin'
uri: 'http://orcid.org/0000-0003-2689-5511'
email-md5:
- 9bac0f35f8afc5a22677fa7c950b681d
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-freeform: false
xref: 'GOC:hjd'
organization: MGI
groups:
- 'http://informatics.jax.org'
- 'http://geneontology.org'
accounts:
github: hdrabkin
-
nickname: 'Li Ni'
uri: 'http://orcid.org/0000-0002-9796-7693'
xref: 'GOC:ln'
email-md5:
- e39ac0f072d7278ae76953722298f26f
organization: MGI
groups:
- 'http://informatics.jax.org'
authorizations:
noctua-go:
allow-edit: true
accounts:
github: 'LiNiMGI'
-
nickname: 'Judith Blake'
uri: 'http://orcid.org/0000-0001-8522-334X'
xref: 'GOC:jab'
email-md5:
- 6ea952218c0da22097c3cab09fbb5c36
authorizations:
noctua:
go:
allow-edit: true
organization: MGI
groups:
- 'http://informatics.jax.org'
- 'http://geneontology.org'
accounts:
github: 'judyblake'
-
nickname: 'Claudia Rato da Silva'
email-md5:
- 53a33cd048b9032e65454b9672b7fd4f
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
xref: 'GOC:crds'
uri: 'GOC:crds'
organization: 'EBI Microme Project'
-
uri: 'GOC:mgi_curators'
xref: 'GOC:mgi_curators'
nickname: 'Curators at MGI'
organization: MGI
-
uri: 'GOC:rs'
xref: 'GOC:rs'
nickname: 'Ralf Stephan'
organization: MTBbase
-
uri: 'GOC:tw'
xref: 'GOC:tw'
nickname: 'Trish Whetzel'
email-md5:
- 3ee520e060d32cc1fe26951496e40486
organization: NCBO
authorizations:
termgenie-go:
allow-write: true
-
uri: 'GOC:rv'
xref: 'GOC:rv'
nickname: 'Randi Vita'
organization: OBI
-
uri: 'GOC:cc'
xref: 'GOC:cc'
nickname: 'Candace Collmer'
organization: PAMGO
-
nickname: 'Magdalen Lindeberg'
email-md5:
- ab543d1ed0770d00f679aa6df6bb4048
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-freeform: false
xref: 'GOC:ml'
uri: 'GOC:ml'
organization: PAMGO
-
uri: 'GOC:pamgo_curators'
xref: 'GOC:pamgo_curators'
nickname: 'Curators at Plant-Associated Microbe GO'
organization: PAMGO
-
uri: 'GOC:gvg'
xref: 'GOC:gvg'
nickname: 'George Gkoutos'
organization: PATO
comment: 'also spelled Georgios Gkoutos'
-
uri: 'GOC:pmn_curators'
xref: 'GOC:pmn_curators'
nickname: 'Curators at Plant Metabolic Network'
organization: PMN
-
nickname: 'Antonia Lock'
email-md5:
- e0d33c1c706cdbd74d033961f2f9bb43
- 7e821339ca29fac9f47d78ce3bed1c11
authorizations:
noctua-go:
allow-edit: true
termgenie-go:
allow-write: true
allow-freeform: false
xref: 'GOC:al'
uri: 'http://orcid.org/0000-0003-1179-5999'
organization: PomBase
groups:
- 'http://www.pombase.org'