-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDataDistributionBestPractices.html
1312 lines (826 loc) · 58.3 KB
/
DataDistributionBestPractices.html
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
<!DOCTYPE HTML>
<html lang="" >
<head>
<title>Data Distribution Best Practices · GitBook</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta name="description" content="">
<meta name="generator" content="GitBook 3.1.1">
<link rel="stylesheet" href="gitbook/style.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-highlight/website.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-search/search.css">
<link rel="stylesheet" href="gitbook/gitbook-plugin-fontsettings/website.css">
<meta name="HandheldFriendly" content="true"/>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="gitbook/images/apple-touch-icon-precomposed-152.png">
<link rel="shortcut icon" href="gitbook/images/favicon.ico" type="image/x-icon">
<link rel="next" href="DataEnricher.html" />
<link rel="prev" href="HowToInstall.html" />
</head>
<body>
<div class="book">
<div class="book-summary">
<div id="book-search-input" role="search">
<input type="text" placeholder="Type to search" />
</div>
<nav role="navigation">
<ul class="summary">
<li class="chapter " data-level="1.1" data-path="./">
<a href="./">
Introduction
</a>
<ul class="articles">
<li class="chapter " data-level="1.1.1" data-path="PsicquicSpecification.html">
<a href="PsicquicSpecification.html">
Specification
</a>
<ul class="articles">
<li class="chapter " data-level="1.1.1.1" data-path="PsicquicSpec_1_4_Soap.html">
<a href="PsicquicSpec_1_4_Soap.html">
SOAP
</a>
</li>
<li class="chapter " data-level="1.1.1.2" data-path="PsicquicSpec_1_4_Rest.html">
<a href="PsicquicSpec_1_4_Rest.html">
REST
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.1.2" data-path="Registry.html">
<a href="Registry.html">
Registry
</a>
<ul class="articles">
<li class="chapter " data-level="1.1.2.1" data-path="PsicquicServiceTags.html">
<a href="PsicquicServiceTags.html">
Registry Service Tags
</a>
</li>
<li class="chapter " data-level="1.1.2.2" data-path="RegistryJavaClient.html">
<a href="RegistryJavaClient.html">
Java client
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="chapter " data-level="1.2" data-path="MiqlDefinition.html">
<a href="MiqlDefinition.html">
Usage MIQL
</a>
<ul class="articles">
<li class="chapter " data-level="1.2.1" data-path="MiqlReference.html">
<a href="MiqlReference.html">
MIQL Reference 2.5
</a>
</li>
<li class="chapter " data-level="1.2.2" data-path="MiqlReference27.html">
<a href="MiqlReference27.html">
MIQL Extension 2.7
</a>
</li>
<li class="chapter " data-level="1.2.3" data-path="MiqlReference28.html">
<a href="MiqlReference28.html">
MIQL Extension 2.8
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.3" data-path="Clients.html">
<a href="Clients.html">
Clients
</a>
<ul class="articles">
<li class="chapter " data-level="1.3.1" >
<a target="_blank" href="http://www.bioconductor.org/packages/release/bioc/html/PSICQUIC.html">
R Bioconductor package
</a>
</li>
<li class="chapter " data-level="1.3.2" data-path="JavaClient.html">
<a href="JavaClient.html">
Java
</a>
</li>
<li class="chapter " data-level="1.3.3" data-path="PerlCodeSamples.html">
<a href="PerlCodeSamples.html">
Perl
</a>
</li>
<li class="chapter " data-level="1.3.4" data-path="PythonCodeSamples.html">
<a href="PythonCodeSamples.html">
Python
</a>
</li>
<li class="chapter " data-level="1.3.5" data-path="CytoscapeClient.html">
<a href="CytoscapeClient.html">
Cytoscape
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.4" data-path="formats.html">
<a href="formats.html">
Formats
</a>
<ul class="articles">
<li class="chapter " data-level="1.4.1" data-path="PSIMITAB.html">
<a href="PSIMITAB.html">
PSI-MI TAB
</a>
<ul class="articles">
<li class="chapter " data-level="1.4.1.1" data-path="MITAB25Format.html">
<a href="MITAB25Format.html">
MITAB 2.5
</a>
</li>
<li class="chapter " data-level="1.4.1.2" data-path="MITAB26Format.html">
<a href="MITAB26Format.html">
MITAB 2.6
</a>
</li>
<li class="chapter " data-level="1.4.1.3" data-path="MITAB27Format.html">
<a href="MITAB27Format.html">
MITAB 2.7
</a>
</li>
<li class="chapter " data-level="1.4.1.4" data-path="MITAB28Format.html">
<a href="MITAB28Format.html">
MITAB 2.8
</a>
</li>
<li class="chapter " data-level="1.4.1.5" data-path="FeatureTABFormat.html">
<a href="FeatureTABFormat.html">
FeatureTAB
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="1.4.2" data-path="PSIMIXML.html">
<a href="PSIMIXML.html">
PSI-MI XML
</a>
<ul class="articles">
<li class="chapter " data-level="1.4.2.1" data-path="MIXML25Format.html">
<a href="MIXML25Format.html">
PSI-MI XML 2.5
</a>
</li>
<li class="chapter " data-level="1.4.2.2" data-path="MIXML30Format.html">
<a href="MIXML30Format.html">
PSI-MI XML 3.0
</a>
</li>
<li class="chapter " data-level="1.4.2.3" >
<a target="_blank" href="https://github.com/MICommunity/psi-jami/tree/master/jami-xml">
Java Examples
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="divider"></li>
<li class="chapter " data-level="2.1" data-path="PsicquicServiceProviders.html">
<a href="PsicquicServiceProviders.html">
Service providers
</a>
<ul class="articles">
<li class="chapter " data-level="2.1.1" data-path="HowToInstallPsicquicSolr.html">
<a href="HowToInstallPsicquicSolr.html">
How to install PSICQUIC Solr (recommened)
</a>
<ul class="articles">
<li class="chapter " data-level="2.1.1.1" data-path="HowToInstallPsicquicAndSolrJetty.html">
<a href="HowToInstallPsicquicAndSolrJetty.html">
Single jetty server
</a>
</li>
<li class="chapter " data-level="2.1.1.2" data-path="HowToInstallPsicquicSolrDifferentServers.html">
<a href="HowToInstallPsicquicSolrDifferentServers.html">
Using a solr server independent from the PSICQUIC server
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="2.1.2" data-path="HowToInstallPsicquicLucene.html">
<a href="HowToInstallPsicquicLucene.html">
How to install PSICQUIC using LUCENE
</a>
<ul class="articles">
<li class="chapter " data-level="2.1.2.1" data-path="HowToInstall.html">
<a href="HowToInstall.html">
Using LUCENE
</a>
</li>
</ul>
</li>
<li class="chapter active" data-level="2.1.3" data-path="DataDistributionBestPractices.html">
<a href="DataDistributionBestPractices.html">
Data Distribution Best Practices
</a>
</li>
<li class="chapter " data-level="2.1.4" data-path="DataEnricher.html">
<a href="DataEnricher.html">
Data Enricher
</a>
</li>
<li class="chapter " data-level="2.1.5" data-path="Faq.html">
<a href="Faq.html">
FAQ
</a>
</li>
</ul>
</li>
<li class="chapter " data-level="2.2" data-path="WhoUsesPsicquic.html">
<a href="WhoUsesPsicquic.html">
Who uses PSICQUIC?
</a>
</li>
<li class="chapter " data-level="2.3" data-path="PreparingARelease.html">
<a href="PreparingARelease.html">
How to release the project
</a>
</li>
<li class="divider"></li>
<li>
<a href="https://www.gitbook.com" target="blank" class="gitbook-link">
Published with GitBook
</a>
</li>
</ul>
</nav>
</div>
<div class="book-body">
<div class="body-inner">
<div class="book-header" role="navigation">
<!-- Title -->
<h1>
<i class="fa fa-circle-o-notch fa-spin"></i>
<a href="." >Data Distribution Best Practices</a>
</h1>
</div>
<div class="page-wrapper" tabindex="-1" role="main">
<div class="page-inner">
<div id="book-search-results">
<div class="search-noresults">
<section class="normal markdown-section">
<h2 id="purpose">Purpose</h2>
<p>This document focuses on several aspects of the <a href="MITAB27Format.html">MITAB27 data representation</a> in the context of data distribution via PSICQUIC services. As MITAB 2.7 is backward compatible with MITAB 2.5 and MITAB 2.6, the best practices also apply to these formats except for the new columns. The implementation of these best practices in the data served by a PSICQUIC services should improve users searches, data consistency and visualization as well as clustering of this data with other PSICQUIC services.</p>
<h2 id="best-practices">Best Practices</h2>
<h3 id="a-describing-an-interacting-molecule">A. Describing an Interacting Molecule</h3>
<p>Typically, an interacting molecule is described using up to 12 columns of the <a href="MITAB27Format.html">MITAB format</a>:</p>
<table>
<thead>
<tr>
<th style="text-align:left"><strong>Column name</strong></th>
<th style="text-align:left"><strong>Columns for Interactor A</strong></th>
<th style="text-align:left"><strong>Columns for Interactor B</strong></th>
<th style="text-align:left"><strong>Definition</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">Unique identifier</td>
<td style="text-align:left">1</td>
<td style="text-align:left">2</td>
<td style="text-align:left">represented as <strong>databaseName:ac</strong>, where databaseName is the name of the corresponding database as defined in the <a href="https://www.ebi.ac.uk/ols4/ontologies/mi/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMI_0444" target="_blank">PSI-MI controlled vocabulary</a>, and ac is the unique primary identifier of the molecule in the database. Even though the MITAB format can accept several identifiers from multiple databases (separated by "|") in the 'unique identifier' columns, it is recommended to give only one identifier. It is also recommended that proteins are identified by stable identifiers such as their UniProtKB, RefSeq, Ensembl, ddbj/genbank/embl or Chebi accession number.</td>
</tr>
<tr>
<td style="text-align:left">Alternative Identifier</td>
<td style="text-align:left">3</td>
<td style="text-align:left">4</td>
<td style="text-align:left">represented as <strong>databaseName:ac</strong>, where databaseName is the name of the corresponding database as defined in the <a href="https://www.ebi.ac.uk/ols4/ontologies/mi/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMI_0444" target="_blank">PSI-MI controlled vocabulary</a>, and ac is the primary identifier of the molecule in the database. Multiple identifiers separated by "|". It is recommended that only database identifiers for the interactors are given in these columns. Other cross references for these interactors such as GO xrefs should be moved to columns 23 and 24 and interactor names such as gene names should be moved to columns 5 and 6.</td>
</tr>
<tr>
<td style="text-align:left">Aliases</td>
<td style="text-align:left">5</td>
<td style="text-align:left">6</td>
<td style="text-align:left">represented as databaseName:name, where databaseName is the name of the corresponding database as defined in the <a href="https://www.ebi.ac.uk/ols4/ontologies/mi/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMI_0444" target="_blank">PSI-MI controlled vocabulary</a>, and name is the name of the molecule in the database (Ex gene names, protein recommended name, ORF, locus name, drug name, Chebi recommended name, etc.). Multiple names separated by "|".</td>
</tr>
<tr>
<td style="text-align:left">Xrefs</td>
<td style="text-align:left">23</td>
<td style="text-align:left">24</td>
<td style="text-align:left">represented as <strong>databaseName:ac</strong>, where databaseName is the name of the corresponding database as defined in the <a href="https://www.ebi.ac.uk/ols4/ontologies/mi/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMI_0444" target="_blank">PSI-MI controlled vocabulary</a>, and ac is the primary accession in the database. Multiple accessions separated by "|". This columns can contain for instance GO xrefs.</td>
</tr>
<tr>
<td style="text-align:left">NCBI Taxonomy identifier</td>
<td style="text-align:left">10</td>
<td style="text-align:left">11</td>
<td style="text-align:left">Database name for NCBI taxid taken from the <a href="https://www.ebi.ac.uk/ols4/ontologies/mi/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMI_0444" target="_blank">PSI-MI controlled vocabulary</a>, represented as <strong>taxid:identifier(organism common name)</strong>. Even though the MITAB format can accept several taxon ids per column (Multiple identifiers separated by "|"), it is strongly recommended to have only one organism per protein per MITAB line. Currently no taxonomy identifiers other than NCBI taxid are anticipated, apart from the use of -2 to indicate "chemical synthesis" and -3 indicates "unknown".</td>
</tr>
<tr>
<td style="text-align:left">checksum</td>
<td style="text-align:left">33</td>
<td style="text-align:left">34</td>
<td style="text-align:left">represented as <strong>methodName:value</strong>, where methodName is the name of the corresponding checksum method, and value is the checksum for this interactor. Multiple checksums separated by "|". This columns can contain for instance rogid, or standard inchi key</td>
</tr>
</tbody>
</table>
<p><br></p>
<p>It is recommended that the unique identifier and alternative identifier column should be used as follow:</p>
<ul>
<li>unique identifier column: Ideally indicate a single reference to a chosen primary sequence database (e.g. one of UniProt or RefSeq). The unique identifier should not be ambiguous. If the interactor can match several RefSeq identifiers are used but only one master UniProt ac, it is recommended to give the master UniProt ac as 'unique identifier' and the RefSeq identifiers as 'alternative identifiers'.</li>
<li>alternative identifier column: any other database identifier referring to your interacting molecule. Here are two examples:<ul>
<li>if you are UniProt centric, you could add mapping to RefSeq,</li>
<li>if you are a gene centric, you could add mapping to UniProt and/or RefSeq.</li>
</ul>
</li>
</ul>
<p>The first two columns 'unique identifier' should never be both empty columns. If a unique identifier to a sequence database cannot be found, it is important to give at least one identifier from the interaction database that created the interactor entry (Ex : IntAct accession, MINT accessions, etc.). One empty column is allowed in case of intra-molecular interactions (a single molecule interacts with itself). If one 'unique identifier' column is empty, it is expected to have empty columns for the matching 'alternative identifier', 'alias', 'taxid', 'interactor xref', 'checksum', 'biological role', 'experimental role', 'interactor type', 'feature', 'participant identification method'.</p>
<p>It is recommended to give gene names, ORF, locus names, gene synonyms, Chebi recommended name, drug name and/or protein recommended names in the alias columns.</p>
<p>Other cross references which can describe the interactors but ARE NOT identifiers such as GO xrefs could be added in columns 23 and 24.</p>
<p>In a single MITAB line, the interactors should only be associated with a single taxon id.</p>
<p>When it is available, a checksum of the interactor can be used in column 33 and 34 such as rogid, crogid and standard inchi key. These checksums could then be used for clustering interactors and taking into account their sequence.</p>
<p>Here is a recommendation for various molecule types:</p>
<h4 id="1-complexes">1. Complexes</h4>
<p>In case of complexes (several protein chains for instance), no reference database can be recommended. The UniprotKB database does not generate unique identifiers for complexes. For now, only identifiers generated by the interaction databases can be used. For clustering purposes, if one interaction database such as IntAct did create an entry for describing a specific complex, the accession of the interaction generated by the database (IntAct) could be used across several different interaction databases to point to the same complex.</p>
<h4 id="2-proteins">2. Proteins</h4>
<table>
<thead>
<tr>
<th style="text-align:left"><strong>Column</strong></th>
<th style="text-align:left"><strong>Data required</strong></th>
<th style="text-align:left"><strong>Example(s)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">Unique identifier</td>
<td style="text-align:left">Use preferentially a single cross references to uniprotkb or RefSeq</td>
<td style="text-align:left"><code>uniprotkb:P51587</code><br> <code>uniprotkb:P51123-3</code><br> <code>refseq:NP_000059</code></td>
</tr>
<tr>
<td style="text-align:left">Alternative identifier</td>
<td style="text-align:left">Use <strong>secondary cross references</strong> in primary database, <br> Use model organism databases.</td>
<td style="text-align:left"><code>uniprotkb:O00183</code></td>
</tr>
<tr>
<td style="text-align:left">Interactor Xrefs</td>
<td style="text-align:left">Use cross references to databases that can give more information about the protein but cannot be used as identifier. This columns can also contain secondary identifiers that are ambiguous (can be shared by two different proteins for instance, uniprot demerge) and that cannot be used to identify a single protein.</td>
<td style="text-align:left"><code>go:"GO:0003824"</code></td>
</tr>
<tr>
<td style="text-align:left">Alias</td>
<td style="text-align:left">use the gene name found in your reference database. 'orf name', 'gene name synonym', 'locus names' and 'protein recommended name' can also be added</td>
<td style="text-align:left"><code>uniprotkb:BRCA2(gene name)</code> <br><code>uniprotkb:FACD(gene name synonym)</code></td>
</tr>
<tr>
<td style="text-align:left">NCBI Taxonomy identifier</td>
<td style="text-align:left">The taxid of the molecule (e.g. taxid:9606) should always be provided. In parenthesis, it is recommended to add the common name/scientific name of the organism.</td>
<td style="text-align:left"><code>taxid:9606</code><br> <code>taxid:9606(human)</code> <br> <code>taxid:9606(Homo sapiens)</code></td>
</tr>
<tr>
<td style="text-align:left">Interactor checksums (columns 33 and 34)</td>
<td style="text-align:left">Use <strong>rogid</strong> and <strong>crogid</strong></td>
<td style="text-align:left"><code>rogid:UcdngwpTSS6hG/pvQGgpp40u67I9606</code> <br> <code>crogid:UcdngwpTSS6hG/pvQGgpp40u67I9606</code></td>
</tr>
</tbody>
</table>
<p><strong>What is a ROGID ?</strong></p>
<p>ROGID (Redundant Object Group Identifier) is a SHA-1 digest of the protein interactor's primary amino acid sequence concatenated with the NCBI taxonomy identifier. The first 27 character of a ROGID is always the hash value (SEGUID) to which is appended the taxid. Please refer to the <a href="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2573892" target="_blank">iRefIndex paper</a> for more details.</p>
<p><strong>What is a CROGID ?</strong></p>
<p>This is similar to ROGID but allows the description of <em>Canonical</em> Redundant Object Group. See below how a canonical sequence should be chosen.</p>
<h4 id="3-small-molecules">3. Small Molecules</h4>
<table>
<thead>
<tr>
<th style="text-align:left"><strong>Column</strong></th>
<th style="text-align:left"><strong>Data required</strong></th>
<th style="text-align:left"><strong>Example(s)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">Unique identifier</td>
<td style="text-align:left">use the <strong>standard inchi key</strong> if not ambiguous, otherwise use a non ambiguous identifier (Chebi recommended). As the standard inchi key is not a database identifier but more a checksum, a unique Chebi identifier would be recommended. The standard inchi key should only be used as identifier for enrichment purposes and it may be moved to the checksum columns after data enrichment. If the standard inchi key is used as an identifier, the database is unknown and we should write standard inchi key in parenthesis</td>
<td style="text-align:left"><code>unknown:"KTUFNOKKBVMGRW-UHFFFAOYSA-N"(standard inchi key)</code></td>
</tr>
<tr>
<td style="text-align:left">Alternative identifier</td>
<td style="text-align:left">use cross references to <strong>chebi</strong> or other small molecule database that can identify without ambiguity the small molecule.</td>
<td style="text-align:left"><code>chebi:"CHEBI:45783"</code></td>
</tr>
<tr>
<td style="text-align:left">Interactor Xrefs</td>
<td style="text-align:left">Use cross references to databases that can give more information about the small molecule but cannot be used as identifier. This columns can also contain secondary identifiers that are ambiguous (can be shared by two different small molecules for instance) and that cannot be used to identify a single molecule.</td>
<td style="text-align:left"><code>pubchem:26697112</code></td>
</tr>
<tr>
<td style="text-align:left">Alias</td>
<td style="text-align:left">add a <strong>standard inchi</strong>, <strong>smile</strong>, <strong>Chebi name</strong>, <strong>drug name</strong></td>
<td style="text-align:left"><code>unknown:"1S/C29H31N7O/c1-21-5-10-25(18-27(21)34-29-31-13-11-26(33-29)24-4-3-12-30-19-24)32-28(37)23-8-6-22(7-9-23)20-36-16-14-35(2)15-17-36/h3-13,18-19H,14-17,20H2,1-2H3,(H,32,37)(H,31,33,34)"(standard inchi)</code><br><code>chebi:imatinib(chebi name)</code></td>
</tr>
<tr>
<td style="text-align:left">NCBI Taxonomy identifier</td>
<td style="text-align:left">it should be '-' if undefined, taxid:-3(unknown), taxid:-2(chemical synthesis) or a specific taxid if known</td>
<td style="text-align:left"></td>
</tr>
<tr>
<td style="text-align:left">Interactor checksums (columns 33 and 34)</td>
<td style="text-align:left">Use <strong>standard inchi key</strong></td>
<td style="text-align:left"><code>standard inchi key:"KTUFNOKKBVMGRW-UHFFFAOYSA-N"</code></td>
</tr>
</tbody>
</table>
<p>Should the Standard InCHI Key not describe unambiguously a molecule, the data provider should use an other cross reference and keep the Standard InCHI Key as a checksum only.</p>
<p><strong>What is a Standard InChI ?</strong></p>
<p>IUPAC International Chemical Identifier (InChI) - a machine-readable character string describing a chemical structure, developed by IUPAC and the InChI Trust as a standard to allow interoperability and linking between chemical resources. The standard InChI differs from the non-standard InChI in that it is generated with a fixed set of parameters, ensuring consistency between different resources. The current version of the standard InChI software is 1.03.</p>
<p><strong>What is a Standard InChI Key ?</strong></p>
<p>The standard InChI Key is a condensed, 27 character identifier that is a hashed version of the full standard InChI (using the SHA-256 algorithm), designed to allow for easy web searches of chemical compounds.</p>
<p>The <a href="http://www.inchi-trust.org/?q=node/3" target="_blank">InChI Trust</a> has more information and software support for InChI related matters.</p>
<h4 id="4-nucleic-acids">4. Nucleic Acids</h4>
<table>
<thead>
<tr>
<th><strong>Column</strong></th>
<th><strong>Data required</strong></th>
<th><strong>Example(s)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td>Unique identifier</td>
<td>use a single cross references to <strong>embl/genebank/ddbj</strong></td>
<td><code>ddbj/embl/genbank:U41813</code></td>
</tr>
<tr>
<td>Alternative identifier</td>
<td>use other cross references to other nucleotide sequence databases such as Refseq nucleotides</td>
<td></td>
</tr>
<tr>
<td>NCBI Taxonomy identifier</td>
<td>The taxid of the molecule (e.g. taxid:9606) should be provided when available. In parenthesis, it is recommended to add the common name/scientific name of the organism. It should be '-' if undefined, taxid:-3(unknown) or taxid:-2(chemical synthesis) otherwise.</td>
<td>.</td>
</tr>
</tbody>
</table>
<h4 id="5-gene">5. Gene</h4>
<p>This case is differentiated from 'Nucleic Acid' as not all nucleic acid sequence result in genes. Furthermore genes can be references to with set of public databases that differs from other Nucleic Acid based molecules.</p>
<table>
<thead>
<tr>
<th style="text-align:left"><strong>Column</strong></th>
<th style="text-align:left"><strong>Data required</strong></th>
<th style="text-align:left"><strong>Example(s)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">Unique identifier</td>
<td style="text-align:left">use <strong>a unique</strong> cross references to <strong>entrez gene/locuslink</strong>, <strong>ensembl</strong>, or <strong>ensemblGenome</strong></td>
<td style="text-align:left"><code>entrez gene/locuslink:84665</code><br><code>ensembl:X63509</code><br><code>ensemblgenomes:AT1G66140</code></td>
</tr>
<tr>
<td style="text-align:left">Alternative identifier</td>
<td style="text-align:left">use cross references to <strong>entrez gene/locuslink</strong>, <strong>ensembl</strong> and <strong>ensemblGenome</strong> that could not be used in 'unique identifier' columns.</td>
<td style="text-align:left"></td>
</tr>
<tr>
<td style="text-align:left">Interactor Xrefs</td>
<td style="text-align:left">use other cross references to other databases that can add more information about the gene but cannot be used as identifier</td>
<td style="text-align:left"></td>
</tr>
<tr>
<td style="text-align:left">Alias</td>
<td style="text-align:left">use gene names, ORF, locus names and/or gene synonyms</td>
<td style="text-align:left"></td>
</tr>
<tr>
<td style="text-align:left">NCBI Taxonomy identifier</td>
<td style="text-align:left">The taxid of the molecule (e.g. taxid:9606) should always be provided. In parenthesis, the common name and/or scientific name should be given</td>
<td style="text-align:left"><code>taxid:9606(Homo sapiens)</code><br><code>taxid:9606(human)</code></td>
</tr>
</tbody>
</table>
<h3 id="b-describing-the-publication">B. Describing the publication</h3>
<p>Currently, the publication can be described using up to 2 columns in MITAB. The publication information should be provided because can be used for PSICQUIC queries, clustering, scoring and linking to the original publication.</p>
<table>
<thead>
<tr>
<th style="text-align:left"><strong>Column</strong></th>
<th style="text-align:left"><strong>Data required</strong></th>
<th style="text-align:left"><strong>Example(s)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">identifier of the publication (col 8)</td>
<td style="text-align:left">use <strong>a unique</strong> cross references to pubmed or doi. If an IMEx id has been assigned to the publication, it should be added as well. If no pubmed id or DOI number can be used, another publication identifier could be used</td>
<td style="text-align:left"><code>pubmed:10655498</code><br><code>pubmed:16980971</code><br><code>imex:IM-1</code></td>
</tr>
<tr>
<td style="text-align:left">First Author</td>
<td style="text-align:left">use the first author surname in the publication and the publication date in parenthesis</td>
<td style="text-align:left"><code>Ciferri et al.(2005)</code></td>
</tr>
</tbody>
</table>
<h3 id="c-describing-the-organism">C. Describing the organism</h3>
<p>In MITAB 2.7, three columns can describe organisms.</p>
<table>
<thead>
<tr>
<th style="text-align:left"><strong>Column</strong></th>
<th style="text-align:left"><strong>Data required</strong></th>
<th style="text-align:left"><strong>Example(s)</strong></th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left">NCBI Taxonomy identifier for interactor A (col 10 and 11)</td>
<td style="text-align:left">use <strong>a unique</strong> taxId and in parenthesis gives the common name and/or scientific name. This information should always be provided for genes and proteins. For nucleic acids and small molecules, the column can be empty if the information is not relevant, -2 to indicate "chemical synthesis" and -3 to indicate "unknown"</td>
<td style="text-align:left"><code>taxid:9606(human)</code><br><code>taxid:9606(human)</code><br><code>taxid:9606(Homo sapiens)</code></td>
</tr>
<tr>
<td style="text-align:left">NCBI Taxonomy identifier for the host organism</td>
<td style="text-align:left">use the taxId of the host organism only. -3 for unknown, -2 for chemical synthesis, -4 for in vivo and -5 for in sillico are allowed. In parenthesis, give the common name and/or scientific name of the organism. Cell types and tissues cannot be represented in this column. This information is recommended for MIMIx</td>
<td style="text-align:left"><code>taxid:9606(human)</code><br><code>taxid:9606(human)</code><br><code>taxid:9606(Homo sapiens)</code></td>
</tr>
</tbody>
</table>
<h3 id="d-describing-controlled-vocabularies">D. Describing controlled vocabularies</h3>
<p>In MITAB 2.7, 12 columns are controlled vocabulary columns :</p>
<ul>
<li>MIMIx : interaction detection method (col 7), biological roles (col 17 and 18), experimental roles (col 19 and 20) and participant identification methods (col 41 and 42).</li>
<li>Complex expansion should always be provided in column 16 when the binary interaction has been expanded and was originally part of a n-ary interaction</li>
<li>IMEx : interaction type which can be used for scoring (col 12), interactor types which can be used to filter interactions (col 21 and 22)</li>
<li>source databases should always be provided in column 13</li>
</ul>