Hi Pablo, welcome on biostar,
I guess the Id in InAct ( http://www.ebi.ac.uk/intact/search/do/search?binary=EBI-126914,EBI-213208) is just an internal Id for a protein. So, EBI-126914
is just the IntAct-Id for 'prp7'
Update:after I saw Pablo's I grep'ed the IntAct data; there are only eight interactions with EBI-81370
:
curl -s "ftp://ftp.ebi.ac.uk/pub/databases/intact/current/psimitab/intact.txt" | cut -d ' ' -f 1,2 | egrep '(#|EBI\-81370)'
#ID(s) interactor A ID(s) interactor B
uniprotkb:Q64279|intact:EBI-81361 uniprotkb:P15806|intact:EBI-81370
uniprotkb:P15806|intact:EBI-81370 uniprotkb:Q61039|intact:EBI-81388
uniprotkb:Q64279|intact:EBI-81361 uniprotkb:P15806|intact:EBI-81370
uniprotkb:Q61039|intact:EBI-81388 uniprotkb:P15806|intact:EBI-81370
uniprotkb:P15806|intact:EBI-81370 uniprotkb:P41136|intact:EBI-309167
uniprotkb:P15806|intact:EBI-81370 uniprotkb:P20067|intact:EBI-309519
uniprotkb:P15806|intact:EBI-81370 uniprotkb:O35437|intact:EBI-309880
uniprotkb:P15806|intact:EBI-81370 uniprotkb:Q62392|intact:EBI-309727
but if you're searching for in all the available fields, you'll get 14 records:
curl -s "ftp://ftp.ebi.ac.uk/pub/databases/intact/current/psimitab/intact.txt" | egrep -w '(#ID|EBI\-81370)' | cut -d ' ' -f 1,2 | cat -n
1 #ID(s) interactor A ID(s) interactor B
2 uniprotkb:Q64279|intact:EBI-81361 uniprotkb:P15806|intact:EBI-81370
3 uniprotkb:P15806|intact:EBI-81370 uniprotkb:Q61039|intact:EBI-81388
4 uniprotkb:Q64279|intact:EBI-81361 uniprotkb:P15806|intact:EBI-81370
5 uniprotkb:Q61039|intact:EBI-81388 uniprotkb:P15806|intact:EBI-81370
6 uniprotkb:P15806|intact:EBI-81370 uniprotkb:P41136|intact:EBI-309167
7 uniprotkb:P15806|intact:EBI-81370 uniprotkb:P20067|intact:EBI-309519
8 uniprotkb:P15806|intact:EBI-81370 uniprotkb:O35437|intact:EBI-309880
9 uniprotkb:P15806|intact:EBI-81370 uniprotkb:Q62392|intact:EBI-309727
10 uniprotkb:P15806-2|intact:EBI-413585 uniprotkb:P15923-2|intact:EBI-769650
11 uniprotkb:P15806-2|intact:EBI-413585 uniprotkb:Q9JKN5|intact:EBI-1213712
12 uniprotkb:P15806-2|intact:EBI-413585 uniprotkb:Q9EQW6|intact:EBI-1213740
13 uniprotkb:P15806-1|intact:EBI-413581 uniprotkb:Q9JKN5|intact:EBI-1213712
14 uniprotkb:P15806-1|intact:EBI-413581 uniprotkb:Q9EQW6|intact:EBI-1213740
15 uniprotkb:P63280|intact:EBI-80180 uniprotkb:P15806-2|intact:EBI-413585
In the case of the interaction: uniprotkb:P63280/ uniprotkb:P15806 ,EBI-81370 appears in the field $21: Properties interactor B. But here I don't know what this property means.... :-/
Hi Pierre,
That's what I thought first but then I came across some examples like this one in protein Q64279:
[?] [?] [?] [?]P15806[?] [?]Tcf3[?] [?] [?]false[?] [?]1[?] [?]
If you search for the interactant 'P15806' in intact db you get 8 interactions; however if you use its intactId 'EBI-81370' you get 14 results. It looks like they use the same intactId for both protein and its isoforms at least in this case...