2atk.json 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362
  1. {
  2. "data_resource": "PDBTM",
  3. "resource_version": " 909",
  4. "software_version": "3.2.134",
  5. "resource_entry_url": "http://pdbtm.unitmp.org/entry/2atk",
  6. "model_coordinates_url": "http://pdbtm.unitmp.org/api/v1/entry/2atk.trpdb",
  7. "release_date": "09/03/2006",
  8. "pdb_id": "2atk",
  9. "includes_het_groups": false,
  10. "chains": [
  11. {
  12. "chain_label": "C",
  13. "additional_chain_annotations": {
  14. "type": "alpha",
  15. "num_tm": "2"
  16. },
  17. "residues": [
  18. {
  19. "site_data": [
  20. {
  21. "site_id_ref": 1,
  22. "confidence_classification": "curated"
  23. }
  24. ],
  25. "pdb_res_label": "22",
  26. "aa_type": "SER"
  27. },
  28. {
  29. "site_data": [
  30. {
  31. "site_id_ref": 1,
  32. "confidence_classification": "curated"
  33. }
  34. ],
  35. "pdb_res_label": "23",
  36. "aa_type": "ALA"
  37. },
  38. {
  39. "site_data": [
  40. {
  41. "site_id_ref": 1,
  42. "confidence_classification": "curated"
  43. }
  44. ],
  45. "pdb_res_label": "24",
  46. "aa_type": "LEU"
  47. },
  48. {
  49. "site_data": [
  50. {
  51. "site_id_ref": 1,
  52. "confidence_classification": "curated"
  53. }
  54. ],
  55. "pdb_res_label": "25",
  56. "aa_type": "HIS"
  57. },
  58. {
  59. "site_data": [
  60. {
  61. "site_id_ref": 3,
  62. "confidence_classification": "curated"
  63. }
  64. ],
  65. "pdb_res_label": "26",
  66. "aa_type": "TRP"
  67. },
  68. {
  69. "site_data": [
  70. {
  71. "site_id_ref": 3,
  72. "confidence_classification": "curated"
  73. }
  74. ],
  75. "pdb_res_label": "27",
  76. "aa_type": "ARG"
  77. },
  78. {
  79. "site_data": [
  80. {
  81. "site_id_ref": 3,
  82. "confidence_classification": "curated"
  83. }
  84. ],
  85. "pdb_res_label": "28",
  86. "aa_type": "ALA"
  87. },
  88. {
  89. "site_data": [
  90. {
  91. "site_id_ref": 3,
  92. "confidence_classification": "curated"
  93. }
  94. ],
  95. "pdb_res_label": "29",
  96. "aa_type": "ALA"
  97. },
  98. {
  99. "site_data": [
  100. {
  101. "site_id_ref": 3,
  102. "confidence_classification": "curated"
  103. }
  104. ],
  105. "pdb_res_label": "30",
  106. "aa_type": "GLY"
  107. },
  108. {
  109. "site_data": [
  110. {
  111. "site_id_ref": 3,
  112. "confidence_classification": "curated"
  113. }
  114. ],
  115. "pdb_res_label": "31",
  116. "aa_type": "ALA"
  117. },
  118. {
  119. "site_data": [
  120. {
  121. "site_id_ref": 3,
  122. "confidence_classification": "curated"
  123. }
  124. ],
  125. "pdb_res_label": "32",
  126. "aa_type": "ALA"
  127. },
  128. {
  129. "site_data": [
  130. {
  131. "site_id_ref": 3,
  132. "confidence_classification": "curated"
  133. }
  134. ],
  135. "pdb_res_label": "33",
  136. "aa_type": "THR"
  137. },
  138. {
  139. "site_data": [
  140. {
  141. "site_id_ref": 3,
  142. "confidence_classification": "curated"
  143. }
  144. ],
  145. "pdb_res_label": "34",
  146. "aa_type": "VAL"
  147. },
  148. {
  149. "site_data": [
  150. {
  151. "site_id_ref": 3,
  152. "confidence_classification": "curated"
  153. }
  154. ],
  155. "pdb_res_label": "35",
  156. "aa_type": "LEU"
  157. },
  158. {
  159. "site_data": [
  160. {
  161. "site_id_ref": 3,
  162. "confidence_classification": "curated"
  163. }
  164. ],
  165. "pdb_res_label": "36",
  166. "aa_type": "LEU"
  167. },
  168. {
  169. "site_data": [
  170. {
  171. "site_id_ref": 3,
  172. "confidence_classification": "curated"
  173. }
  174. ],
  175. "pdb_res_label": "37",
  176. "aa_type": "VAL"
  177. },
  178. {
  179. "site_data": [
  180. {
  181. "site_id_ref": 3,
  182. "confidence_classification": "curated"
  183. }
  184. ],
  185. "pdb_res_label": "38",
  186. "aa_type": "ILE"
  187. },
  188. {
  189. "site_data": [
  190. {
  191. "site_id_ref": 3,
  192. "confidence_classification": "curated"
  193. }
  194. ],
  195. "pdb_res_label": "39",
  196. "aa_type": "VAL"
  197. },
  198. {
  199. "site_data": [
  200. {
  201. "site_id_ref": 3,
  202. "confidence_classification": "curated"
  203. }
  204. ],
  205. "pdb_res_label": "40",
  206. "aa_type": "LEU"
  207. },
  208. {
  209. "site_data": [
  210. {
  211. "site_id_ref": 3,
  212. "confidence_classification": "curated"
  213. }
  214. ],
  215. "pdb_res_label": "41",
  216. "aa_type": "LEU"
  217. },
  218. {
  219. "site_data": [
  220. {
  221. "site_id_ref": 3,
  222. "confidence_classification": "curated"
  223. }
  224. ],
  225. "pdb_res_label": "42",
  226. "aa_type": "ALA"
  227. },
  228. {
  229. "site_data": [
  230. {
  231. "site_id_ref": 3,
  232. "confidence_classification": "curated"
  233. }
  234. ],
  235. "pdb_res_label": "43",
  236. "aa_type": "GLY"
  237. },
  238. {
  239. "site_data": [
  240. {
  241. "site_id_ref": 3,
  242. "confidence_classification": "curated"
  243. }
  244. ],
  245. "pdb_res_label": "44",
  246. "aa_type": "SER"
  247. },
  248. {
  249. "site_data": [
  250. {
  251. "site_id_ref": 3,
  252. "confidence_classification": "curated"
  253. }
  254. ],
  255. "pdb_res_label": "45",
  256. "aa_type": "TYR"
  257. },
  258. {
  259. "site_data": [
  260. {
  261. "site_id_ref": 3,
  262. "confidence_classification": "curated"
  263. }
  264. ],
  265. "pdb_res_label": "46",
  266. "aa_type": "LEU"
  267. },
  268. {
  269. "site_data": [
  270. {
  271. "site_id_ref": 3,
  272. "confidence_classification": "curated"
  273. }
  274. ],
  275. "pdb_res_label": "47",
  276. "aa_type": "ALA"
  277. },
  278. {
  279. "site_data": [
  280. {
  281. "site_id_ref": 3,
  282. "confidence_classification": "curated"
  283. }
  284. ],
  285. "pdb_res_label": "48",
  286. "aa_type": "VAL"
  287. },
  288. {
  289. "site_data": [
  290. {
  291. "site_id_ref": 3,
  292. "confidence_classification": "curated"
  293. }
  294. ],
  295. "pdb_res_label": "49",
  296. "aa_type": "LEU"
  297. },
  298. {
  299. "site_data": [
  300. {
  301. "site_id_ref": 3,
  302. "confidence_classification": "curated"
  303. }
  304. ],
  305. "pdb_res_label": "50",
  306. "aa_type": "ALA"
  307. },
  308. {
  309. "site_data": [
  310. {
  311. "site_id_ref": 2,
  312. "confidence_classification": "curated"
  313. }
  314. ],
  315. "pdb_res_label": "51",
  316. "aa_type": "GLU"
  317. },
  318. {
  319. "site_data": [
  320. {
  321. "site_id_ref": 2,
  322. "confidence_classification": "curated"
  323. }
  324. ],
  325. "pdb_res_label": "52",
  326. "aa_type": "ARG"
  327. },
  328. {
  329. "site_data": [
  330. {
  331. "site_id_ref": 2,
  332. "confidence_classification": "curated"
  333. }
  334. ],
  335. "pdb_res_label": "53",
  336. "aa_type": "GLY"
  337. },
  338. {
  339. "site_data": [
  340. {
  341. "site_id_ref": 2,
  342. "confidence_classification": "curated"
  343. }
  344. ],
  345. "pdb_res_label": "54",
  346. "aa_type": "ALA"
  347. },
  348. {
  349. "site_data": [
  350. {
  351. "site_id_ref": 2,
  352. "confidence_classification": "curated"
  353. }
  354. ],
  355. "pdb_res_label": "55",
  356. "aa_type": "PRO"
  357. },
  358. {
  359. "site_data": [
  360. {
  361. "site_id_ref": 2,
  362. "confidence_classification": "curated"
  363. }
  364. ],
  365. "pdb_res_label": "56",
  366. "aa_type": "GLY"
  367. },
  368. {
  369. "site_data": [
  370. {
  371. "site_id_ref": 2,
  372. "confidence_classification": "curated"
  373. }
  374. ],
  375. "pdb_res_label": "57",
  376. "aa_type": "ALA"
  377. },
  378. {
  379. "site_data": [
  380. {
  381. "site_id_ref": 2,
  382. "confidence_classification": "curated"
  383. }
  384. ],
  385. "pdb_res_label": "58",
  386. "aa_type": "GLN"
  387. },
  388. {
  389. "site_data": [
  390. {
  391. "site_id_ref": 2,
  392. "confidence_classification": "curated"
  393. }
  394. ],
  395. "pdb_res_label": "59",
  396. "aa_type": "LEU"
  397. },
  398. {
  399. "site_data": [
  400. {
  401. "site_id_ref": 2,
  402. "confidence_classification": "curated"
  403. }
  404. ],
  405. "pdb_res_label": "60",
  406. "aa_type": "ILE"
  407. },
  408. {
  409. "site_data": [
  410. {
  411. "site_id_ref": 2,
  412. "confidence_classification": "curated"
  413. }
  414. ],
  415. "pdb_res_label": "61",
  416. "aa_type": "THR"
  417. },
  418. {
  419. "site_data": [
  420. {
  421. "site_id_ref": 2,
  422. "confidence_classification": "curated"
  423. }
  424. ],
  425. "pdb_res_label": "62",
  426. "aa_type": "TYR"
  427. },
  428. {
  429. "site_data": [
  430. {
  431. "site_id_ref": 5,
  432. "confidence_classification": "curated"
  433. }
  434. ],
  435. "pdb_res_label": "63",
  436. "aa_type": "PRO"
  437. },
  438. {
  439. "site_data": [
  440. {
  441. "site_id_ref": 5,
  442. "confidence_classification": "curated"
  443. }
  444. ],
  445. "pdb_res_label": "64",
  446. "aa_type": "ARG"
  447. },
  448. {
  449. "site_data": [
  450. {
  451. "site_id_ref": 5,
  452. "confidence_classification": "curated"
  453. }
  454. ],
  455. "pdb_res_label": "65",
  456. "aa_type": "ALA"
  457. },
  458. {
  459. "site_data": [
  460. {
  461. "site_id_ref": 5,
  462. "confidence_classification": "curated"
  463. }
  464. ],
  465. "pdb_res_label": "66",
  466. "aa_type": "LEU"
  467. },
  468. {
  469. "site_data": [
  470. {
  471. "site_id_ref": 5,
  472. "confidence_classification": "curated"
  473. }
  474. ],
  475. "pdb_res_label": "67",
  476. "aa_type": "TRP"
  477. },
  478. {
  479. "site_data": [
  480. {
  481. "site_id_ref": 5,
  482. "confidence_classification": "curated"
  483. }
  484. ],
  485. "pdb_res_label": "68",
  486. "aa_type": "TRP"
  487. },
  488. {
  489. "site_data": [
  490. {
  491. "site_id_ref": 5,
  492. "confidence_classification": "curated"
  493. }
  494. ],
  495. "pdb_res_label": "69",
  496. "aa_type": "SER"
  497. },
  498. {
  499. "site_data": [
  500. {
  501. "site_id_ref": 5,
  502. "confidence_classification": "curated"
  503. }
  504. ],
  505. "pdb_res_label": "70",
  506. "aa_type": "VAL"
  507. },
  508. {
  509. "site_data": [
  510. {
  511. "site_id_ref": 5,
  512. "confidence_classification": "curated"
  513. }
  514. ],
  515. "pdb_res_label": "71",
  516. "aa_type": "ALA"
  517. },
  518. {
  519. "site_data": [
  520. {
  521. "site_id_ref": 5,
  522. "confidence_classification": "curated"
  523. }
  524. ],
  525. "pdb_res_label": "72",
  526. "aa_type": "THR"
  527. },
  528. {
  529. "site_data": [
  530. {
  531. "site_id_ref": 5,
  532. "confidence_classification": "curated"
  533. }
  534. ],
  535. "pdb_res_label": "73",
  536. "aa_type": "ALA"
  537. },
  538. {
  539. "site_data": [
  540. {
  541. "site_id_ref": 5,
  542. "confidence_classification": "curated"
  543. }
  544. ],
  545. "pdb_res_label": "74",
  546. "aa_type": "THR"
  547. },
  548. {
  549. "site_data": [
  550. {
  551. "site_id_ref": 5,
  552. "confidence_classification": "curated"
  553. }
  554. ],
  555. "pdb_res_label": "75",
  556. "aa_type": "THR"
  557. },
  558. {
  559. "site_data": [
  560. {
  561. "site_id_ref": 5,
  562. "confidence_classification": "curated"
  563. }
  564. ],
  565. "pdb_res_label": "76",
  566. "aa_type": "VAL"
  567. },
  568. {
  569. "site_data": [
  570. {
  571. "site_id_ref": 5,
  572. "confidence_classification": "curated"
  573. }
  574. ],
  575. "pdb_res_label": "77",
  576. "aa_type": "GLY"
  577. },
  578. {
  579. "site_data": [
  580. {
  581. "site_id_ref": 5,
  582. "confidence_classification": "curated"
  583. }
  584. ],
  585. "pdb_res_label": "78",
  586. "aa_type": "TYR"
  587. },
  588. {
  589. "site_data": [
  590. {
  591. "site_id_ref": 2,
  592. "confidence_classification": "curated"
  593. }
  594. ],
  595. "pdb_res_label": "79",
  596. "aa_type": "GLY"
  597. },
  598. {
  599. "site_data": [
  600. {
  601. "site_id_ref": 2,
  602. "confidence_classification": "curated"
  603. }
  604. ],
  605. "pdb_res_label": "80",
  606. "aa_type": "ASP"
  607. },
  608. {
  609. "site_data": [
  610. {
  611. "site_id_ref": 2,
  612. "confidence_classification": "curated"
  613. }
  614. ],
  615. "pdb_res_label": "81",
  616. "aa_type": "LEU"
  617. },
  618. {
  619. "site_data": [
  620. {
  621. "site_id_ref": 2,
  622. "confidence_classification": "curated"
  623. }
  624. ],
  625. "pdb_res_label": "82",
  626. "aa_type": "TYR"
  627. },
  628. {
  629. "site_data": [
  630. {
  631. "site_id_ref": 2,
  632. "confidence_classification": "curated"
  633. }
  634. ],
  635. "pdb_res_label": "83",
  636. "aa_type": "PRO"
  637. },
  638. {
  639. "site_data": [
  640. {
  641. "site_id_ref": 2,
  642. "confidence_classification": "curated"
  643. }
  644. ],
  645. "pdb_res_label": "84",
  646. "aa_type": "VAL"
  647. },
  648. {
  649. "site_data": [
  650. {
  651. "site_id_ref": 2,
  652. "confidence_classification": "curated"
  653. }
  654. ],
  655. "pdb_res_label": "85",
  656. "aa_type": "THR"
  657. },
  658. {
  659. "site_data": [
  660. {
  661. "site_id_ref": 3,
  662. "confidence_classification": "curated"
  663. }
  664. ],
  665. "pdb_res_label": "86",
  666. "aa_type": "LEU"
  667. },
  668. {
  669. "site_data": [
  670. {
  671. "site_id_ref": 3,
  672. "confidence_classification": "curated"
  673. }
  674. ],
  675. "pdb_res_label": "87",
  676. "aa_type": "TRP"
  677. },
  678. {
  679. "site_data": [
  680. {
  681. "site_id_ref": 3,
  682. "confidence_classification": "curated"
  683. }
  684. ],
  685. "pdb_res_label": "88",
  686. "aa_type": "GLY"
  687. },
  688. {
  689. "site_data": [
  690. {
  691. "site_id_ref": 3,
  692. "confidence_classification": "curated"
  693. }
  694. ],
  695. "pdb_res_label": "89",
  696. "aa_type": "ARG"
  697. },
  698. {
  699. "site_data": [
  700. {
  701. "site_id_ref": 3,
  702. "confidence_classification": "curated"
  703. }
  704. ],
  705. "pdb_res_label": "90",
  706. "aa_type": "CYS"
  707. },
  708. {
  709. "site_data": [
  710. {
  711. "site_id_ref": 3,
  712. "confidence_classification": "curated"
  713. }
  714. ],
  715. "pdb_res_label": "91",
  716. "aa_type": "VAL"
  717. },
  718. {
  719. "site_data": [
  720. {
  721. "site_id_ref": 3,
  722. "confidence_classification": "curated"
  723. }
  724. ],
  725. "pdb_res_label": "92",
  726. "aa_type": "ALA"
  727. },
  728. {
  729. "site_data": [
  730. {
  731. "site_id_ref": 3,
  732. "confidence_classification": "curated"
  733. }
  734. ],
  735. "pdb_res_label": "93",
  736. "aa_type": "VAL"
  737. },
  738. {
  739. "site_data": [
  740. {
  741. "site_id_ref": 3,
  742. "confidence_classification": "curated"
  743. }
  744. ],
  745. "pdb_res_label": "94",
  746. "aa_type": "VAL"
  747. },
  748. {
  749. "site_data": [
  750. {
  751. "site_id_ref": 3,
  752. "confidence_classification": "curated"
  753. }
  754. ],
  755. "pdb_res_label": "95",
  756. "aa_type": "VAL"
  757. },
  758. {
  759. "site_data": [
  760. {
  761. "site_id_ref": 3,
  762. "confidence_classification": "curated"
  763. }
  764. ],
  765. "pdb_res_label": "96",
  766. "aa_type": "MET"
  767. },
  768. {
  769. "site_data": [
  770. {
  771. "site_id_ref": 3,
  772. "confidence_classification": "curated"
  773. }
  774. ],
  775. "pdb_res_label": "97",
  776. "aa_type": "VAL"
  777. },
  778. {
  779. "site_data": [
  780. {
  781. "site_id_ref": 3,
  782. "confidence_classification": "curated"
  783. }
  784. ],
  785. "pdb_res_label": "98",
  786. "aa_type": "ALA"
  787. },
  788. {
  789. "site_data": [
  790. {
  791. "site_id_ref": 3,
  792. "confidence_classification": "curated"
  793. }
  794. ],
  795. "pdb_res_label": "99",
  796. "aa_type": "GLY"
  797. },
  798. {
  799. "site_data": [
  800. {
  801. "site_id_ref": 3,
  802. "confidence_classification": "curated"
  803. }
  804. ],
  805. "pdb_res_label": "100",
  806. "aa_type": "ILE"
  807. },
  808. {
  809. "site_data": [
  810. {
  811. "site_id_ref": 3,
  812. "confidence_classification": "curated"
  813. }
  814. ],
  815. "pdb_res_label": "101",
  816. "aa_type": "THR"
  817. },
  818. {
  819. "site_data": [
  820. {
  821. "site_id_ref": 3,
  822. "confidence_classification": "curated"
  823. }
  824. ],
  825. "pdb_res_label": "102",
  826. "aa_type": "SER"
  827. },
  828. {
  829. "site_data": [
  830. {
  831. "site_id_ref": 3,
  832. "confidence_classification": "curated"
  833. }
  834. ],
  835. "pdb_res_label": "103",
  836. "aa_type": "PHE"
  837. },
  838. {
  839. "site_data": [
  840. {
  841. "site_id_ref": 3,
  842. "confidence_classification": "curated"
  843. }
  844. ],
  845. "pdb_res_label": "104",
  846. "aa_type": "GLY"
  847. },
  848. {
  849. "site_data": [
  850. {
  851. "site_id_ref": 3,
  852. "confidence_classification": "curated"
  853. }
  854. ],
  855. "pdb_res_label": "105",
  856. "aa_type": "LEU"
  857. },
  858. {
  859. "site_data": [
  860. {
  861. "site_id_ref": 3,
  862. "confidence_classification": "curated"
  863. }
  864. ],
  865. "pdb_res_label": "106",
  866. "aa_type": "VAL"
  867. },
  868. {
  869. "site_data": [
  870. {
  871. "site_id_ref": 3,
  872. "confidence_classification": "curated"
  873. }
  874. ],
  875. "pdb_res_label": "107",
  876. "aa_type": "THR"
  877. },
  878. {
  879. "site_data": [
  880. {
  881. "site_id_ref": 3,
  882. "confidence_classification": "curated"
  883. }
  884. ],
  885. "pdb_res_label": "108",
  886. "aa_type": "ALA"
  887. },
  888. {
  889. "site_data": [
  890. {
  891. "site_id_ref": 3,
  892. "confidence_classification": "curated"
  893. }
  894. ],
  895. "pdb_res_label": "109",
  896. "aa_type": "ALA"
  897. },
  898. {
  899. "site_data": [
  900. {
  901. "site_id_ref": 3,
  902. "confidence_classification": "curated"
  903. }
  904. ],
  905. "pdb_res_label": "110",
  906. "aa_type": "LEU"
  907. },
  908. {
  909. "site_data": [
  910. {
  911. "site_id_ref": 3,
  912. "confidence_classification": "curated"
  913. }
  914. ],
  915. "pdb_res_label": "111",
  916. "aa_type": "ALA"
  917. },
  918. {
  919. "site_data": [
  920. {
  921. "site_id_ref": 1,
  922. "confidence_classification": "curated"
  923. }
  924. ],
  925. "pdb_res_label": "112",
  926. "aa_type": "THR"
  927. },
  928. {
  929. "site_data": [
  930. {
  931. "site_id_ref": 1,
  932. "confidence_classification": "curated"
  933. }
  934. ],
  935. "pdb_res_label": "113",
  936. "aa_type": "TRP"
  937. },
  938. {
  939. "site_data": [
  940. {
  941. "site_id_ref": 1,
  942. "confidence_classification": "curated"
  943. }
  944. ],
  945. "pdb_res_label": "114",
  946. "aa_type": "PHE"
  947. },
  948. {
  949. "site_data": [
  950. {
  951. "site_id_ref": 1,
  952. "confidence_classification": "curated"
  953. }
  954. ],
  955. "pdb_res_label": "115",
  956. "aa_type": "VAL"
  957. },
  958. {
  959. "site_data": [
  960. {
  961. "site_id_ref": 1,
  962. "confidence_classification": "curated"
  963. }
  964. ],
  965. "pdb_res_label": "116",
  966. "aa_type": "GLY"
  967. },
  968. {
  969. "site_data": [
  970. {
  971. "site_id_ref": 1,
  972. "confidence_classification": "curated"
  973. }
  974. ],
  975. "pdb_res_label": "117",
  976. "aa_type": "ARG"
  977. },
  978. {
  979. "site_data": [
  980. {
  981. "site_id_ref": 1,
  982. "confidence_classification": "curated"
  983. }
  984. ],
  985. "pdb_res_label": "118",
  986. "aa_type": "GLU"
  987. },
  988. {
  989. "site_data": [
  990. {
  991. "site_id_ref": 1,
  992. "confidence_classification": "curated"
  993. }
  994. ],
  995. "pdb_res_label": "119",
  996. "aa_type": "GLN"
  997. },
  998. {
  999. "site_data": [
  1000. {
  1001. "site_id_ref": 1,
  1002. "confidence_classification": "curated"
  1003. }
  1004. ],
  1005. "pdb_res_label": "120",
  1006. "aa_type": "GLU"
  1007. },
  1008. {
  1009. "site_data": [
  1010. {
  1011. "site_id_ref": 1,
  1012. "confidence_classification": "curated"
  1013. }
  1014. ],
  1015. "pdb_res_label": "121",
  1016. "aa_type": "ARG"
  1017. },
  1018. {
  1019. "site_data": [
  1020. {
  1021. "site_id_ref": 1,
  1022. "confidence_classification": "curated"
  1023. }
  1024. ],
  1025. "pdb_res_label": "122",
  1026. "aa_type": "ARG"
  1027. },
  1028. {
  1029. "site_data": [
  1030. {
  1031. "site_id_ref": 1,
  1032. "confidence_classification": "curated"
  1033. }
  1034. ],
  1035. "pdb_res_label": "123",
  1036. "aa_type": "GLY"
  1037. },
  1038. {
  1039. "site_data": [
  1040. {
  1041. "site_id_ref": 1,
  1042. "confidence_classification": "curated"
  1043. }
  1044. ],
  1045. "pdb_res_label": "124",
  1046. "aa_type": "HIS"
  1047. }
  1048. ]
  1049. },
  1050. {
  1051. "chain_label": "C-2",
  1052. "additional_chain_annotations": {
  1053. "type": "alpha",
  1054. "num_tm": "2"
  1055. },
  1056. "residues": [
  1057. {
  1058. "site_data": [
  1059. {
  1060. "site_id_ref": 1,
  1061. "confidence_classification": "curated"
  1062. }
  1063. ],
  1064. "pdb_res_label": "22",
  1065. "aa_type": "SER"
  1066. },
  1067. {
  1068. "site_data": [
  1069. {
  1070. "site_id_ref": 1,
  1071. "confidence_classification": "curated"
  1072. }
  1073. ],
  1074. "pdb_res_label": "23",
  1075. "aa_type": "ALA"
  1076. },
  1077. {
  1078. "site_data": [
  1079. {
  1080. "site_id_ref": 1,
  1081. "confidence_classification": "curated"
  1082. }
  1083. ],
  1084. "pdb_res_label": "24",
  1085. "aa_type": "LEU"
  1086. },
  1087. {
  1088. "site_data": [
  1089. {
  1090. "site_id_ref": 1,
  1091. "confidence_classification": "curated"
  1092. }
  1093. ],
  1094. "pdb_res_label": "25",
  1095. "aa_type": "HIS"
  1096. },
  1097. {
  1098. "site_data": [
  1099. {
  1100. "site_id_ref": 3,
  1101. "confidence_classification": "curated"
  1102. }
  1103. ],
  1104. "pdb_res_label": "26",
  1105. "aa_type": "TRP"
  1106. },
  1107. {
  1108. "site_data": [
  1109. {
  1110. "site_id_ref": 3,
  1111. "confidence_classification": "curated"
  1112. }
  1113. ],
  1114. "pdb_res_label": "27",
  1115. "aa_type": "ARG"
  1116. },
  1117. {
  1118. "site_data": [
  1119. {
  1120. "site_id_ref": 3,
  1121. "confidence_classification": "curated"
  1122. }
  1123. ],
  1124. "pdb_res_label": "28",
  1125. "aa_type": "ALA"
  1126. },
  1127. {
  1128. "site_data": [
  1129. {
  1130. "site_id_ref": 3,
  1131. "confidence_classification": "curated"
  1132. }
  1133. ],
  1134. "pdb_res_label": "29",
  1135. "aa_type": "ALA"
  1136. },
  1137. {
  1138. "site_data": [
  1139. {
  1140. "site_id_ref": 3,
  1141. "confidence_classification": "curated"
  1142. }
  1143. ],
  1144. "pdb_res_label": "30",
  1145. "aa_type": "GLY"
  1146. },
  1147. {
  1148. "site_data": [
  1149. {
  1150. "site_id_ref": 3,
  1151. "confidence_classification": "curated"
  1152. }
  1153. ],
  1154. "pdb_res_label": "31",
  1155. "aa_type": "ALA"
  1156. },
  1157. {
  1158. "site_data": [
  1159. {
  1160. "site_id_ref": 3,
  1161. "confidence_classification": "curated"
  1162. }
  1163. ],
  1164. "pdb_res_label": "32",
  1165. "aa_type": "ALA"
  1166. },
  1167. {
  1168. "site_data": [
  1169. {
  1170. "site_id_ref": 3,
  1171. "confidence_classification": "curated"
  1172. }
  1173. ],
  1174. "pdb_res_label": "33",
  1175. "aa_type": "THR"
  1176. },
  1177. {
  1178. "site_data": [
  1179. {
  1180. "site_id_ref": 3,
  1181. "confidence_classification": "curated"
  1182. }
  1183. ],
  1184. "pdb_res_label": "34",
  1185. "aa_type": "VAL"
  1186. },
  1187. {
  1188. "site_data": [
  1189. {
  1190. "site_id_ref": 3,
  1191. "confidence_classification": "curated"
  1192. }
  1193. ],
  1194. "pdb_res_label": "35",
  1195. "aa_type": "LEU"
  1196. },
  1197. {
  1198. "site_data": [
  1199. {
  1200. "site_id_ref": 3,
  1201. "confidence_classification": "curated"
  1202. }
  1203. ],
  1204. "pdb_res_label": "36",
  1205. "aa_type": "LEU"
  1206. },
  1207. {
  1208. "site_data": [
  1209. {
  1210. "site_id_ref": 3,
  1211. "confidence_classification": "curated"
  1212. }
  1213. ],
  1214. "pdb_res_label": "37",
  1215. "aa_type": "VAL"
  1216. },
  1217. {
  1218. "site_data": [
  1219. {
  1220. "site_id_ref": 3,
  1221. "confidence_classification": "curated"
  1222. }
  1223. ],
  1224. "pdb_res_label": "38",
  1225. "aa_type": "ILE"
  1226. },
  1227. {
  1228. "site_data": [
  1229. {
  1230. "site_id_ref": 3,
  1231. "confidence_classification": "curated"
  1232. }
  1233. ],
  1234. "pdb_res_label": "39",
  1235. "aa_type": "VAL"
  1236. },
  1237. {
  1238. "site_data": [
  1239. {
  1240. "site_id_ref": 3,
  1241. "confidence_classification": "curated"
  1242. }
  1243. ],
  1244. "pdb_res_label": "40",
  1245. "aa_type": "LEU"
  1246. },
  1247. {
  1248. "site_data": [
  1249. {
  1250. "site_id_ref": 3,
  1251. "confidence_classification": "curated"
  1252. }
  1253. ],
  1254. "pdb_res_label": "41",
  1255. "aa_type": "LEU"
  1256. },
  1257. {
  1258. "site_data": [
  1259. {
  1260. "site_id_ref": 3,
  1261. "confidence_classification": "curated"
  1262. }
  1263. ],
  1264. "pdb_res_label": "42",
  1265. "aa_type": "ALA"
  1266. },
  1267. {
  1268. "site_data": [
  1269. {
  1270. "site_id_ref": 3,
  1271. "confidence_classification": "curated"
  1272. }
  1273. ],
  1274. "pdb_res_label": "43",
  1275. "aa_type": "GLY"
  1276. },
  1277. {
  1278. "site_data": [
  1279. {
  1280. "site_id_ref": 3,
  1281. "confidence_classification": "curated"
  1282. }
  1283. ],
  1284. "pdb_res_label": "44",
  1285. "aa_type": "SER"
  1286. },
  1287. {
  1288. "site_data": [
  1289. {
  1290. "site_id_ref": 3,
  1291. "confidence_classification": "curated"
  1292. }
  1293. ],
  1294. "pdb_res_label": "45",
  1295. "aa_type": "TYR"
  1296. },
  1297. {
  1298. "site_data": [
  1299. {
  1300. "site_id_ref": 3,
  1301. "confidence_classification": "curated"
  1302. }
  1303. ],
  1304. "pdb_res_label": "46",
  1305. "aa_type": "LEU"
  1306. },
  1307. {
  1308. "site_data": [
  1309. {
  1310. "site_id_ref": 3,
  1311. "confidence_classification": "curated"
  1312. }
  1313. ],
  1314. "pdb_res_label": "47",
  1315. "aa_type": "ALA"
  1316. },
  1317. {
  1318. "site_data": [
  1319. {
  1320. "site_id_ref": 3,
  1321. "confidence_classification": "curated"
  1322. }
  1323. ],
  1324. "pdb_res_label": "48",
  1325. "aa_type": "VAL"
  1326. },
  1327. {
  1328. "site_data": [
  1329. {
  1330. "site_id_ref": 3,
  1331. "confidence_classification": "curated"
  1332. }
  1333. ],
  1334. "pdb_res_label": "49",
  1335. "aa_type": "LEU"
  1336. },
  1337. {
  1338. "site_data": [
  1339. {
  1340. "site_id_ref": 3,
  1341. "confidence_classification": "curated"
  1342. }
  1343. ],
  1344. "pdb_res_label": "50",
  1345. "aa_type": "ALA"
  1346. },
  1347. {
  1348. "site_data": [
  1349. {
  1350. "site_id_ref": 2,
  1351. "confidence_classification": "curated"
  1352. }
  1353. ],
  1354. "pdb_res_label": "51",
  1355. "aa_type": "GLU"
  1356. },
  1357. {
  1358. "site_data": [
  1359. {
  1360. "site_id_ref": 2,
  1361. "confidence_classification": "curated"
  1362. }
  1363. ],
  1364. "pdb_res_label": "52",
  1365. "aa_type": "ARG"
  1366. },
  1367. {
  1368. "site_data": [
  1369. {
  1370. "site_id_ref": 2,
  1371. "confidence_classification": "curated"
  1372. }
  1373. ],
  1374. "pdb_res_label": "53",
  1375. "aa_type": "GLY"
  1376. },
  1377. {
  1378. "site_data": [
  1379. {
  1380. "site_id_ref": 2,
  1381. "confidence_classification": "curated"
  1382. }
  1383. ],
  1384. "pdb_res_label": "54",
  1385. "aa_type": "ALA"
  1386. },
  1387. {
  1388. "site_data": [
  1389. {
  1390. "site_id_ref": 2,
  1391. "confidence_classification": "curated"
  1392. }
  1393. ],
  1394. "pdb_res_label": "55",
  1395. "aa_type": "PRO"
  1396. },
  1397. {
  1398. "site_data": [
  1399. {
  1400. "site_id_ref": 2,
  1401. "confidence_classification": "curated"
  1402. }
  1403. ],
  1404. "pdb_res_label": "56",
  1405. "aa_type": "GLY"
  1406. },
  1407. {
  1408. "site_data": [
  1409. {
  1410. "site_id_ref": 2,
  1411. "confidence_classification": "curated"
  1412. }
  1413. ],
  1414. "pdb_res_label": "57",
  1415. "aa_type": "ALA"
  1416. },
  1417. {
  1418. "site_data": [
  1419. {
  1420. "site_id_ref": 2,
  1421. "confidence_classification": "curated"
  1422. }
  1423. ],
  1424. "pdb_res_label": "58",
  1425. "aa_type": "GLN"
  1426. },
  1427. {
  1428. "site_data": [
  1429. {
  1430. "site_id_ref": 2,
  1431. "confidence_classification": "curated"
  1432. }
  1433. ],
  1434. "pdb_res_label": "59",
  1435. "aa_type": "LEU"
  1436. },
  1437. {
  1438. "site_data": [
  1439. {
  1440. "site_id_ref": 2,
  1441. "confidence_classification": "curated"
  1442. }
  1443. ],
  1444. "pdb_res_label": "60",
  1445. "aa_type": "ILE"
  1446. },
  1447. {
  1448. "site_data": [
  1449. {
  1450. "site_id_ref": 2,
  1451. "confidence_classification": "curated"
  1452. }
  1453. ],
  1454. "pdb_res_label": "61",
  1455. "aa_type": "THR"
  1456. },
  1457. {
  1458. "site_data": [
  1459. {
  1460. "site_id_ref": 2,
  1461. "confidence_classification": "curated"
  1462. }
  1463. ],
  1464. "pdb_res_label": "62",
  1465. "aa_type": "TYR"
  1466. },
  1467. {
  1468. "site_data": [
  1469. {
  1470. "site_id_ref": 5,
  1471. "confidence_classification": "curated"
  1472. }
  1473. ],
  1474. "pdb_res_label": "63",
  1475. "aa_type": "PRO"
  1476. },
  1477. {
  1478. "site_data": [
  1479. {
  1480. "site_id_ref": 5,
  1481. "confidence_classification": "curated"
  1482. }
  1483. ],
  1484. "pdb_res_label": "64",
  1485. "aa_type": "ARG"
  1486. },
  1487. {
  1488. "site_data": [
  1489. {
  1490. "site_id_ref": 5,
  1491. "confidence_classification": "curated"
  1492. }
  1493. ],
  1494. "pdb_res_label": "65",
  1495. "aa_type": "ALA"
  1496. },
  1497. {
  1498. "site_data": [
  1499. {
  1500. "site_id_ref": 5,
  1501. "confidence_classification": "curated"
  1502. }
  1503. ],
  1504. "pdb_res_label": "66",
  1505. "aa_type": "LEU"
  1506. },
  1507. {
  1508. "site_data": [
  1509. {
  1510. "site_id_ref": 5,
  1511. "confidence_classification": "curated"
  1512. }
  1513. ],
  1514. "pdb_res_label": "67",
  1515. "aa_type": "TRP"
  1516. },
  1517. {
  1518. "site_data": [
  1519. {
  1520. "site_id_ref": 5,
  1521. "confidence_classification": "curated"
  1522. }
  1523. ],
  1524. "pdb_res_label": "68",
  1525. "aa_type": "TRP"
  1526. },
  1527. {
  1528. "site_data": [
  1529. {
  1530. "site_id_ref": 5,
  1531. "confidence_classification": "curated"
  1532. }
  1533. ],
  1534. "pdb_res_label": "69",
  1535. "aa_type": "SER"
  1536. },
  1537. {
  1538. "site_data": [
  1539. {
  1540. "site_id_ref": 5,
  1541. "confidence_classification": "curated"
  1542. }
  1543. ],
  1544. "pdb_res_label": "70",
  1545. "aa_type": "VAL"
  1546. },
  1547. {
  1548. "site_data": [
  1549. {
  1550. "site_id_ref": 5,
  1551. "confidence_classification": "curated"
  1552. }
  1553. ],
  1554. "pdb_res_label": "71",
  1555. "aa_type": "ALA"
  1556. },
  1557. {
  1558. "site_data": [
  1559. {
  1560. "site_id_ref": 5,
  1561. "confidence_classification": "curated"
  1562. }
  1563. ],
  1564. "pdb_res_label": "72",
  1565. "aa_type": "THR"
  1566. },
  1567. {
  1568. "site_data": [
  1569. {
  1570. "site_id_ref": 5,
  1571. "confidence_classification": "curated"
  1572. }
  1573. ],
  1574. "pdb_res_label": "73",
  1575. "aa_type": "ALA"
  1576. },
  1577. {
  1578. "site_data": [
  1579. {
  1580. "site_id_ref": 5,
  1581. "confidence_classification": "curated"
  1582. }
  1583. ],
  1584. "pdb_res_label": "74",
  1585. "aa_type": "THR"
  1586. },
  1587. {
  1588. "site_data": [
  1589. {
  1590. "site_id_ref": 5,
  1591. "confidence_classification": "curated"
  1592. }
  1593. ],
  1594. "pdb_res_label": "75",
  1595. "aa_type": "THR"
  1596. },
  1597. {
  1598. "site_data": [
  1599. {
  1600. "site_id_ref": 5,
  1601. "confidence_classification": "curated"
  1602. }
  1603. ],
  1604. "pdb_res_label": "76",
  1605. "aa_type": "VAL"
  1606. },
  1607. {
  1608. "site_data": [
  1609. {
  1610. "site_id_ref": 5,
  1611. "confidence_classification": "curated"
  1612. }
  1613. ],
  1614. "pdb_res_label": "77",
  1615. "aa_type": "GLY"
  1616. },
  1617. {
  1618. "site_data": [
  1619. {
  1620. "site_id_ref": 5,
  1621. "confidence_classification": "curated"
  1622. }
  1623. ],
  1624. "pdb_res_label": "78",
  1625. "aa_type": "TYR"
  1626. },
  1627. {
  1628. "site_data": [
  1629. {
  1630. "site_id_ref": 2,
  1631. "confidence_classification": "curated"
  1632. }
  1633. ],
  1634. "pdb_res_label": "79",
  1635. "aa_type": "GLY"
  1636. },
  1637. {
  1638. "site_data": [
  1639. {
  1640. "site_id_ref": 2,
  1641. "confidence_classification": "curated"
  1642. }
  1643. ],
  1644. "pdb_res_label": "80",
  1645. "aa_type": "ASP"
  1646. },
  1647. {
  1648. "site_data": [
  1649. {
  1650. "site_id_ref": 2,
  1651. "confidence_classification": "curated"
  1652. }
  1653. ],
  1654. "pdb_res_label": "81",
  1655. "aa_type": "LEU"
  1656. },
  1657. {
  1658. "site_data": [
  1659. {
  1660. "site_id_ref": 2,
  1661. "confidence_classification": "curated"
  1662. }
  1663. ],
  1664. "pdb_res_label": "82",
  1665. "aa_type": "TYR"
  1666. },
  1667. {
  1668. "site_data": [
  1669. {
  1670. "site_id_ref": 2,
  1671. "confidence_classification": "curated"
  1672. }
  1673. ],
  1674. "pdb_res_label": "83",
  1675. "aa_type": "PRO"
  1676. },
  1677. {
  1678. "site_data": [
  1679. {
  1680. "site_id_ref": 2,
  1681. "confidence_classification": "curated"
  1682. }
  1683. ],
  1684. "pdb_res_label": "84",
  1685. "aa_type": "VAL"
  1686. },
  1687. {
  1688. "site_data": [
  1689. {
  1690. "site_id_ref": 2,
  1691. "confidence_classification": "curated"
  1692. }
  1693. ],
  1694. "pdb_res_label": "85",
  1695. "aa_type": "THR"
  1696. },
  1697. {
  1698. "site_data": [
  1699. {
  1700. "site_id_ref": 3,
  1701. "confidence_classification": "curated"
  1702. }
  1703. ],
  1704. "pdb_res_label": "86",
  1705. "aa_type": "LEU"
  1706. },
  1707. {
  1708. "site_data": [
  1709. {
  1710. "site_id_ref": 3,
  1711. "confidence_classification": "curated"
  1712. }
  1713. ],
  1714. "pdb_res_label": "87",
  1715. "aa_type": "TRP"
  1716. },
  1717. {
  1718. "site_data": [
  1719. {
  1720. "site_id_ref": 3,
  1721. "confidence_classification": "curated"
  1722. }
  1723. ],
  1724. "pdb_res_label": "88",
  1725. "aa_type": "GLY"
  1726. },
  1727. {
  1728. "site_data": [
  1729. {
  1730. "site_id_ref": 3,
  1731. "confidence_classification": "curated"
  1732. }
  1733. ],
  1734. "pdb_res_label": "89",
  1735. "aa_type": "ARG"
  1736. },
  1737. {
  1738. "site_data": [
  1739. {
  1740. "site_id_ref": 3,
  1741. "confidence_classification": "curated"
  1742. }
  1743. ],
  1744. "pdb_res_label": "90",
  1745. "aa_type": "CYS"
  1746. },
  1747. {
  1748. "site_data": [
  1749. {
  1750. "site_id_ref": 3,
  1751. "confidence_classification": "curated"
  1752. }
  1753. ],
  1754. "pdb_res_label": "91",
  1755. "aa_type": "VAL"
  1756. },
  1757. {
  1758. "site_data": [
  1759. {
  1760. "site_id_ref": 3,
  1761. "confidence_classification": "curated"
  1762. }
  1763. ],
  1764. "pdb_res_label": "92",
  1765. "aa_type": "ALA"
  1766. },
  1767. {
  1768. "site_data": [
  1769. {
  1770. "site_id_ref": 3,
  1771. "confidence_classification": "curated"
  1772. }
  1773. ],
  1774. "pdb_res_label": "93",
  1775. "aa_type": "VAL"
  1776. },
  1777. {
  1778. "site_data": [
  1779. {
  1780. "site_id_ref": 3,
  1781. "confidence_classification": "curated"
  1782. }
  1783. ],
  1784. "pdb_res_label": "94",
  1785. "aa_type": "VAL"
  1786. },
  1787. {
  1788. "site_data": [
  1789. {
  1790. "site_id_ref": 3,
  1791. "confidence_classification": "curated"
  1792. }
  1793. ],
  1794. "pdb_res_label": "95",
  1795. "aa_type": "VAL"
  1796. },
  1797. {
  1798. "site_data": [
  1799. {
  1800. "site_id_ref": 3,
  1801. "confidence_classification": "curated"
  1802. }
  1803. ],
  1804. "pdb_res_label": "96",
  1805. "aa_type": "MET"
  1806. },
  1807. {
  1808. "site_data": [
  1809. {
  1810. "site_id_ref": 3,
  1811. "confidence_classification": "curated"
  1812. }
  1813. ],
  1814. "pdb_res_label": "97",
  1815. "aa_type": "VAL"
  1816. },
  1817. {
  1818. "site_data": [
  1819. {
  1820. "site_id_ref": 3,
  1821. "confidence_classification": "curated"
  1822. }
  1823. ],
  1824. "pdb_res_label": "98",
  1825. "aa_type": "ALA"
  1826. },
  1827. {
  1828. "site_data": [
  1829. {
  1830. "site_id_ref": 3,
  1831. "confidence_classification": "curated"
  1832. }
  1833. ],
  1834. "pdb_res_label": "99",
  1835. "aa_type": "GLY"
  1836. },
  1837. {
  1838. "site_data": [
  1839. {
  1840. "site_id_ref": 3,
  1841. "confidence_classification": "curated"
  1842. }
  1843. ],
  1844. "pdb_res_label": "100",
  1845. "aa_type": "ILE"
  1846. },
  1847. {
  1848. "site_data": [
  1849. {
  1850. "site_id_ref": 3,
  1851. "confidence_classification": "curated"
  1852. }
  1853. ],
  1854. "pdb_res_label": "101",
  1855. "aa_type": "THR"
  1856. },
  1857. {
  1858. "site_data": [
  1859. {
  1860. "site_id_ref": 3,
  1861. "confidence_classification": "curated"
  1862. }
  1863. ],
  1864. "pdb_res_label": "102",
  1865. "aa_type": "SER"
  1866. },
  1867. {
  1868. "site_data": [
  1869. {
  1870. "site_id_ref": 3,
  1871. "confidence_classification": "curated"
  1872. }
  1873. ],
  1874. "pdb_res_label": "103",
  1875. "aa_type": "PHE"
  1876. },
  1877. {
  1878. "site_data": [
  1879. {
  1880. "site_id_ref": 3,
  1881. "confidence_classification": "curated"
  1882. }
  1883. ],
  1884. "pdb_res_label": "104",
  1885. "aa_type": "GLY"
  1886. },
  1887. {
  1888. "site_data": [
  1889. {
  1890. "site_id_ref": 3,
  1891. "confidence_classification": "curated"
  1892. }
  1893. ],
  1894. "pdb_res_label": "105",
  1895. "aa_type": "LEU"
  1896. },
  1897. {
  1898. "site_data": [
  1899. {
  1900. "site_id_ref": 3,
  1901. "confidence_classification": "curated"
  1902. }
  1903. ],
  1904. "pdb_res_label": "106",
  1905. "aa_type": "VAL"
  1906. },
  1907. {
  1908. "site_data": [
  1909. {
  1910. "site_id_ref": 3,
  1911. "confidence_classification": "curated"
  1912. }
  1913. ],
  1914. "pdb_res_label": "107",
  1915. "aa_type": "THR"
  1916. },
  1917. {
  1918. "site_data": [
  1919. {
  1920. "site_id_ref": 3,
  1921. "confidence_classification": "curated"
  1922. }
  1923. ],
  1924. "pdb_res_label": "108",
  1925. "aa_type": "ALA"
  1926. },
  1927. {
  1928. "site_data": [
  1929. {
  1930. "site_id_ref": 3,
  1931. "confidence_classification": "curated"
  1932. }
  1933. ],
  1934. "pdb_res_label": "109",
  1935. "aa_type": "ALA"
  1936. },
  1937. {
  1938. "site_data": [
  1939. {
  1940. "site_id_ref": 3,
  1941. "confidence_classification": "curated"
  1942. }
  1943. ],
  1944. "pdb_res_label": "110",
  1945. "aa_type": "LEU"
  1946. },
  1947. {
  1948. "site_data": [
  1949. {
  1950. "site_id_ref": 3,
  1951. "confidence_classification": "curated"
  1952. }
  1953. ],
  1954. "pdb_res_label": "111",
  1955. "aa_type": "ALA"
  1956. },
  1957. {
  1958. "site_data": [
  1959. {
  1960. "site_id_ref": 1,
  1961. "confidence_classification": "curated"
  1962. }
  1963. ],
  1964. "pdb_res_label": "112",
  1965. "aa_type": "THR"
  1966. },
  1967. {
  1968. "site_data": [
  1969. {
  1970. "site_id_ref": 1,
  1971. "confidence_classification": "curated"
  1972. }
  1973. ],
  1974. "pdb_res_label": "113",
  1975. "aa_type": "TRP"
  1976. },
  1977. {
  1978. "site_data": [
  1979. {
  1980. "site_id_ref": 1,
  1981. "confidence_classification": "curated"
  1982. }
  1983. ],
  1984. "pdb_res_label": "114",
  1985. "aa_type": "PHE"
  1986. },
  1987. {
  1988. "site_data": [
  1989. {
  1990. "site_id_ref": 1,
  1991. "confidence_classification": "curated"
  1992. }
  1993. ],
  1994. "pdb_res_label": "115",
  1995. "aa_type": "VAL"
  1996. },
  1997. {
  1998. "site_data": [
  1999. {
  2000. "site_id_ref": 1,
  2001. "confidence_classification": "curated"
  2002. }
  2003. ],
  2004. "pdb_res_label": "116",
  2005. "aa_type": "GLY"
  2006. },
  2007. {
  2008. "site_data": [
  2009. {
  2010. "site_id_ref": 1,
  2011. "confidence_classification": "curated"
  2012. }
  2013. ],
  2014. "pdb_res_label": "117",
  2015. "aa_type": "ARG"
  2016. },
  2017. {
  2018. "site_data": [
  2019. {
  2020. "site_id_ref": 1,
  2021. "confidence_classification": "curated"
  2022. }
  2023. ],
  2024. "pdb_res_label": "118",
  2025. "aa_type": "GLU"
  2026. },
  2027. {
  2028. "site_data": [
  2029. {
  2030. "site_id_ref": 1,
  2031. "confidence_classification": "curated"
  2032. }
  2033. ],
  2034. "pdb_res_label": "119",
  2035. "aa_type": "GLN"
  2036. },
  2037. {
  2038. "site_data": [
  2039. {
  2040. "site_id_ref": 1,
  2041. "confidence_classification": "curated"
  2042. }
  2043. ],
  2044. "pdb_res_label": "120",
  2045. "aa_type": "GLU"
  2046. },
  2047. {
  2048. "site_data": [
  2049. {
  2050. "site_id_ref": 1,
  2051. "confidence_classification": "curated"
  2052. }
  2053. ],
  2054. "pdb_res_label": "121",
  2055. "aa_type": "ARG"
  2056. },
  2057. {
  2058. "site_data": [
  2059. {
  2060. "site_id_ref": 1,
  2061. "confidence_classification": "curated"
  2062. }
  2063. ],
  2064. "pdb_res_label": "122",
  2065. "aa_type": "ARG"
  2066. },
  2067. {
  2068. "site_data": [
  2069. {
  2070. "site_id_ref": 1,
  2071. "confidence_classification": "curated"
  2072. }
  2073. ],
  2074. "pdb_res_label": "123",
  2075. "aa_type": "GLY"
  2076. },
  2077. {
  2078. "site_data": [
  2079. {
  2080. "site_id_ref": 1,
  2081. "confidence_classification": "curated"
  2082. }
  2083. ],
  2084. "pdb_res_label": "124",
  2085. "aa_type": "HIS"
  2086. }
  2087. ]
  2088. },
  2089. {
  2090. "chain_label": "C-3",
  2091. "additional_chain_annotations": {
  2092. "type": "alpha",
  2093. "num_tm": "2"
  2094. },
  2095. "residues": [
  2096. {
  2097. "site_data": [
  2098. {
  2099. "site_id_ref": 1,
  2100. "confidence_classification": "curated"
  2101. }
  2102. ],
  2103. "pdb_res_label": "22",
  2104. "aa_type": "SER"
  2105. },
  2106. {
  2107. "site_data": [
  2108. {
  2109. "site_id_ref": 1,
  2110. "confidence_classification": "curated"
  2111. }
  2112. ],
  2113. "pdb_res_label": "23",
  2114. "aa_type": "ALA"
  2115. },
  2116. {
  2117. "site_data": [
  2118. {
  2119. "site_id_ref": 1,
  2120. "confidence_classification": "curated"
  2121. }
  2122. ],
  2123. "pdb_res_label": "24",
  2124. "aa_type": "LEU"
  2125. },
  2126. {
  2127. "site_data": [
  2128. {
  2129. "site_id_ref": 1,
  2130. "confidence_classification": "curated"
  2131. }
  2132. ],
  2133. "pdb_res_label": "25",
  2134. "aa_type": "HIS"
  2135. },
  2136. {
  2137. "site_data": [
  2138. {
  2139. "site_id_ref": 3,
  2140. "confidence_classification": "curated"
  2141. }
  2142. ],
  2143. "pdb_res_label": "26",
  2144. "aa_type": "TRP"
  2145. },
  2146. {
  2147. "site_data": [
  2148. {
  2149. "site_id_ref": 3,
  2150. "confidence_classification": "curated"
  2151. }
  2152. ],
  2153. "pdb_res_label": "27",
  2154. "aa_type": "ARG"
  2155. },
  2156. {
  2157. "site_data": [
  2158. {
  2159. "site_id_ref": 3,
  2160. "confidence_classification": "curated"
  2161. }
  2162. ],
  2163. "pdb_res_label": "28",
  2164. "aa_type": "ALA"
  2165. },
  2166. {
  2167. "site_data": [
  2168. {
  2169. "site_id_ref": 3,
  2170. "confidence_classification": "curated"
  2171. }
  2172. ],
  2173. "pdb_res_label": "29",
  2174. "aa_type": "ALA"
  2175. },
  2176. {
  2177. "site_data": [
  2178. {
  2179. "site_id_ref": 3,
  2180. "confidence_classification": "curated"
  2181. }
  2182. ],
  2183. "pdb_res_label": "30",
  2184. "aa_type": "GLY"
  2185. },
  2186. {
  2187. "site_data": [
  2188. {
  2189. "site_id_ref": 3,
  2190. "confidence_classification": "curated"
  2191. }
  2192. ],
  2193. "pdb_res_label": "31",
  2194. "aa_type": "ALA"
  2195. },
  2196. {
  2197. "site_data": [
  2198. {
  2199. "site_id_ref": 3,
  2200. "confidence_classification": "curated"
  2201. }
  2202. ],
  2203. "pdb_res_label": "32",
  2204. "aa_type": "ALA"
  2205. },
  2206. {
  2207. "site_data": [
  2208. {
  2209. "site_id_ref": 3,
  2210. "confidence_classification": "curated"
  2211. }
  2212. ],
  2213. "pdb_res_label": "33",
  2214. "aa_type": "THR"
  2215. },
  2216. {
  2217. "site_data": [
  2218. {
  2219. "site_id_ref": 3,
  2220. "confidence_classification": "curated"
  2221. }
  2222. ],
  2223. "pdb_res_label": "34",
  2224. "aa_type": "VAL"
  2225. },
  2226. {
  2227. "site_data": [
  2228. {
  2229. "site_id_ref": 3,
  2230. "confidence_classification": "curated"
  2231. }
  2232. ],
  2233. "pdb_res_label": "35",
  2234. "aa_type": "LEU"
  2235. },
  2236. {
  2237. "site_data": [
  2238. {
  2239. "site_id_ref": 3,
  2240. "confidence_classification": "curated"
  2241. }
  2242. ],
  2243. "pdb_res_label": "36",
  2244. "aa_type": "LEU"
  2245. },
  2246. {
  2247. "site_data": [
  2248. {
  2249. "site_id_ref": 3,
  2250. "confidence_classification": "curated"
  2251. }
  2252. ],
  2253. "pdb_res_label": "37",
  2254. "aa_type": "VAL"
  2255. },
  2256. {
  2257. "site_data": [
  2258. {
  2259. "site_id_ref": 3,
  2260. "confidence_classification": "curated"
  2261. }
  2262. ],
  2263. "pdb_res_label": "38",
  2264. "aa_type": "ILE"
  2265. },
  2266. {
  2267. "site_data": [
  2268. {
  2269. "site_id_ref": 3,
  2270. "confidence_classification": "curated"
  2271. }
  2272. ],
  2273. "pdb_res_label": "39",
  2274. "aa_type": "VAL"
  2275. },
  2276. {
  2277. "site_data": [
  2278. {
  2279. "site_id_ref": 3,
  2280. "confidence_classification": "curated"
  2281. }
  2282. ],
  2283. "pdb_res_label": "40",
  2284. "aa_type": "LEU"
  2285. },
  2286. {
  2287. "site_data": [
  2288. {
  2289. "site_id_ref": 3,
  2290. "confidence_classification": "curated"
  2291. }
  2292. ],
  2293. "pdb_res_label": "41",
  2294. "aa_type": "LEU"
  2295. },
  2296. {
  2297. "site_data": [
  2298. {
  2299. "site_id_ref": 3,
  2300. "confidence_classification": "curated"
  2301. }
  2302. ],
  2303. "pdb_res_label": "42",
  2304. "aa_type": "ALA"
  2305. },
  2306. {
  2307. "site_data": [
  2308. {
  2309. "site_id_ref": 3,
  2310. "confidence_classification": "curated"
  2311. }
  2312. ],
  2313. "pdb_res_label": "43",
  2314. "aa_type": "GLY"
  2315. },
  2316. {
  2317. "site_data": [
  2318. {
  2319. "site_id_ref": 3,
  2320. "confidence_classification": "curated"
  2321. }
  2322. ],
  2323. "pdb_res_label": "44",
  2324. "aa_type": "SER"
  2325. },
  2326. {
  2327. "site_data": [
  2328. {
  2329. "site_id_ref": 3,
  2330. "confidence_classification": "curated"
  2331. }
  2332. ],
  2333. "pdb_res_label": "45",
  2334. "aa_type": "TYR"
  2335. },
  2336. {
  2337. "site_data": [
  2338. {
  2339. "site_id_ref": 3,
  2340. "confidence_classification": "curated"
  2341. }
  2342. ],
  2343. "pdb_res_label": "46",
  2344. "aa_type": "LEU"
  2345. },
  2346. {
  2347. "site_data": [
  2348. {
  2349. "site_id_ref": 3,
  2350. "confidence_classification": "curated"
  2351. }
  2352. ],
  2353. "pdb_res_label": "47",
  2354. "aa_type": "ALA"
  2355. },
  2356. {
  2357. "site_data": [
  2358. {
  2359. "site_id_ref": 3,
  2360. "confidence_classification": "curated"
  2361. }
  2362. ],
  2363. "pdb_res_label": "48",
  2364. "aa_type": "VAL"
  2365. },
  2366. {
  2367. "site_data": [
  2368. {
  2369. "site_id_ref": 3,
  2370. "confidence_classification": "curated"
  2371. }
  2372. ],
  2373. "pdb_res_label": "49",
  2374. "aa_type": "LEU"
  2375. },
  2376. {
  2377. "site_data": [
  2378. {
  2379. "site_id_ref": 3,
  2380. "confidence_classification": "curated"
  2381. }
  2382. ],
  2383. "pdb_res_label": "50",
  2384. "aa_type": "ALA"
  2385. },
  2386. {
  2387. "site_data": [
  2388. {
  2389. "site_id_ref": 2,
  2390. "confidence_classification": "curated"
  2391. }
  2392. ],
  2393. "pdb_res_label": "51",
  2394. "aa_type": "GLU"
  2395. },
  2396. {
  2397. "site_data": [
  2398. {
  2399. "site_id_ref": 2,
  2400. "confidence_classification": "curated"
  2401. }
  2402. ],
  2403. "pdb_res_label": "52",
  2404. "aa_type": "ARG"
  2405. },
  2406. {
  2407. "site_data": [
  2408. {
  2409. "site_id_ref": 2,
  2410. "confidence_classification": "curated"
  2411. }
  2412. ],
  2413. "pdb_res_label": "53",
  2414. "aa_type": "GLY"
  2415. },
  2416. {
  2417. "site_data": [
  2418. {
  2419. "site_id_ref": 2,
  2420. "confidence_classification": "curated"
  2421. }
  2422. ],
  2423. "pdb_res_label": "54",
  2424. "aa_type": "ALA"
  2425. },
  2426. {
  2427. "site_data": [
  2428. {
  2429. "site_id_ref": 2,
  2430. "confidence_classification": "curated"
  2431. }
  2432. ],
  2433. "pdb_res_label": "55",
  2434. "aa_type": "PRO"
  2435. },
  2436. {
  2437. "site_data": [
  2438. {
  2439. "site_id_ref": 2,
  2440. "confidence_classification": "curated"
  2441. }
  2442. ],
  2443. "pdb_res_label": "56",
  2444. "aa_type": "GLY"
  2445. },
  2446. {
  2447. "site_data": [
  2448. {
  2449. "site_id_ref": 2,
  2450. "confidence_classification": "curated"
  2451. }
  2452. ],
  2453. "pdb_res_label": "57",
  2454. "aa_type": "ALA"
  2455. },
  2456. {
  2457. "site_data": [
  2458. {
  2459. "site_id_ref": 2,
  2460. "confidence_classification": "curated"
  2461. }
  2462. ],
  2463. "pdb_res_label": "58",
  2464. "aa_type": "GLN"
  2465. },
  2466. {
  2467. "site_data": [
  2468. {
  2469. "site_id_ref": 2,
  2470. "confidence_classification": "curated"
  2471. }
  2472. ],
  2473. "pdb_res_label": "59",
  2474. "aa_type": "LEU"
  2475. },
  2476. {
  2477. "site_data": [
  2478. {
  2479. "site_id_ref": 2,
  2480. "confidence_classification": "curated"
  2481. }
  2482. ],
  2483. "pdb_res_label": "60",
  2484. "aa_type": "ILE"
  2485. },
  2486. {
  2487. "site_data": [
  2488. {
  2489. "site_id_ref": 2,
  2490. "confidence_classification": "curated"
  2491. }
  2492. ],
  2493. "pdb_res_label": "61",
  2494. "aa_type": "THR"
  2495. },
  2496. {
  2497. "site_data": [
  2498. {
  2499. "site_id_ref": 2,
  2500. "confidence_classification": "curated"
  2501. }
  2502. ],
  2503. "pdb_res_label": "62",
  2504. "aa_type": "TYR"
  2505. },
  2506. {
  2507. "site_data": [
  2508. {
  2509. "site_id_ref": 5,
  2510. "confidence_classification": "curated"
  2511. }
  2512. ],
  2513. "pdb_res_label": "63",
  2514. "aa_type": "PRO"
  2515. },
  2516. {
  2517. "site_data": [
  2518. {
  2519. "site_id_ref": 5,
  2520. "confidence_classification": "curated"
  2521. }
  2522. ],
  2523. "pdb_res_label": "64",
  2524. "aa_type": "ARG"
  2525. },
  2526. {
  2527. "site_data": [
  2528. {
  2529. "site_id_ref": 5,
  2530. "confidence_classification": "curated"
  2531. }
  2532. ],
  2533. "pdb_res_label": "65",
  2534. "aa_type": "ALA"
  2535. },
  2536. {
  2537. "site_data": [
  2538. {
  2539. "site_id_ref": 5,
  2540. "confidence_classification": "curated"
  2541. }
  2542. ],
  2543. "pdb_res_label": "66",
  2544. "aa_type": "LEU"
  2545. },
  2546. {
  2547. "site_data": [
  2548. {
  2549. "site_id_ref": 5,
  2550. "confidence_classification": "curated"
  2551. }
  2552. ],
  2553. "pdb_res_label": "67",
  2554. "aa_type": "TRP"
  2555. },
  2556. {
  2557. "site_data": [
  2558. {
  2559. "site_id_ref": 5,
  2560. "confidence_classification": "curated"
  2561. }
  2562. ],
  2563. "pdb_res_label": "68",
  2564. "aa_type": "TRP"
  2565. },
  2566. {
  2567. "site_data": [
  2568. {
  2569. "site_id_ref": 5,
  2570. "confidence_classification": "curated"
  2571. }
  2572. ],
  2573. "pdb_res_label": "69",
  2574. "aa_type": "SER"
  2575. },
  2576. {
  2577. "site_data": [
  2578. {
  2579. "site_id_ref": 5,
  2580. "confidence_classification": "curated"
  2581. }
  2582. ],
  2583. "pdb_res_label": "70",
  2584. "aa_type": "VAL"
  2585. },
  2586. {
  2587. "site_data": [
  2588. {
  2589. "site_id_ref": 5,
  2590. "confidence_classification": "curated"
  2591. }
  2592. ],
  2593. "pdb_res_label": "71",
  2594. "aa_type": "ALA"
  2595. },
  2596. {
  2597. "site_data": [
  2598. {
  2599. "site_id_ref": 5,
  2600. "confidence_classification": "curated"
  2601. }
  2602. ],
  2603. "pdb_res_label": "72",
  2604. "aa_type": "THR"
  2605. },
  2606. {
  2607. "site_data": [
  2608. {
  2609. "site_id_ref": 5,
  2610. "confidence_classification": "curated"
  2611. }
  2612. ],
  2613. "pdb_res_label": "73",
  2614. "aa_type": "ALA"
  2615. },
  2616. {
  2617. "site_data": [
  2618. {
  2619. "site_id_ref": 5,
  2620. "confidence_classification": "curated"
  2621. }
  2622. ],
  2623. "pdb_res_label": "74",
  2624. "aa_type": "THR"
  2625. },
  2626. {
  2627. "site_data": [
  2628. {
  2629. "site_id_ref": 5,
  2630. "confidence_classification": "curated"
  2631. }
  2632. ],
  2633. "pdb_res_label": "75",
  2634. "aa_type": "THR"
  2635. },
  2636. {
  2637. "site_data": [
  2638. {
  2639. "site_id_ref": 5,
  2640. "confidence_classification": "curated"
  2641. }
  2642. ],
  2643. "pdb_res_label": "76",
  2644. "aa_type": "VAL"
  2645. },
  2646. {
  2647. "site_data": [
  2648. {
  2649. "site_id_ref": 5,
  2650. "confidence_classification": "curated"
  2651. }
  2652. ],
  2653. "pdb_res_label": "77",
  2654. "aa_type": "GLY"
  2655. },
  2656. {
  2657. "site_data": [
  2658. {
  2659. "site_id_ref": 5,
  2660. "confidence_classification": "curated"
  2661. }
  2662. ],
  2663. "pdb_res_label": "78",
  2664. "aa_type": "TYR"
  2665. },
  2666. {
  2667. "site_data": [
  2668. {
  2669. "site_id_ref": 2,
  2670. "confidence_classification": "curated"
  2671. }
  2672. ],
  2673. "pdb_res_label": "79",
  2674. "aa_type": "GLY"
  2675. },
  2676. {
  2677. "site_data": [
  2678. {
  2679. "site_id_ref": 2,
  2680. "confidence_classification": "curated"
  2681. }
  2682. ],
  2683. "pdb_res_label": "80",
  2684. "aa_type": "ASP"
  2685. },
  2686. {
  2687. "site_data": [
  2688. {
  2689. "site_id_ref": 2,
  2690. "confidence_classification": "curated"
  2691. }
  2692. ],
  2693. "pdb_res_label": "81",
  2694. "aa_type": "LEU"
  2695. },
  2696. {
  2697. "site_data": [
  2698. {
  2699. "site_id_ref": 2,
  2700. "confidence_classification": "curated"
  2701. }
  2702. ],
  2703. "pdb_res_label": "82",
  2704. "aa_type": "TYR"
  2705. },
  2706. {
  2707. "site_data": [
  2708. {
  2709. "site_id_ref": 2,
  2710. "confidence_classification": "curated"
  2711. }
  2712. ],
  2713. "pdb_res_label": "83",
  2714. "aa_type": "PRO"
  2715. },
  2716. {
  2717. "site_data": [
  2718. {
  2719. "site_id_ref": 2,
  2720. "confidence_classification": "curated"
  2721. }
  2722. ],
  2723. "pdb_res_label": "84",
  2724. "aa_type": "VAL"
  2725. },
  2726. {
  2727. "site_data": [
  2728. {
  2729. "site_id_ref": 2,
  2730. "confidence_classification": "curated"
  2731. }
  2732. ],
  2733. "pdb_res_label": "85",
  2734. "aa_type": "THR"
  2735. },
  2736. {
  2737. "site_data": [
  2738. {
  2739. "site_id_ref": 3,
  2740. "confidence_classification": "curated"
  2741. }
  2742. ],
  2743. "pdb_res_label": "86",
  2744. "aa_type": "LEU"
  2745. },
  2746. {
  2747. "site_data": [
  2748. {
  2749. "site_id_ref": 3,
  2750. "confidence_classification": "curated"
  2751. }
  2752. ],
  2753. "pdb_res_label": "87",
  2754. "aa_type": "TRP"
  2755. },
  2756. {
  2757. "site_data": [
  2758. {
  2759. "site_id_ref": 3,
  2760. "confidence_classification": "curated"
  2761. }
  2762. ],
  2763. "pdb_res_label": "88",
  2764. "aa_type": "GLY"
  2765. },
  2766. {
  2767. "site_data": [
  2768. {
  2769. "site_id_ref": 3,
  2770. "confidence_classification": "curated"
  2771. }
  2772. ],
  2773. "pdb_res_label": "89",
  2774. "aa_type": "ARG"
  2775. },
  2776. {
  2777. "site_data": [
  2778. {
  2779. "site_id_ref": 3,
  2780. "confidence_classification": "curated"
  2781. }
  2782. ],
  2783. "pdb_res_label": "90",
  2784. "aa_type": "CYS"
  2785. },
  2786. {
  2787. "site_data": [
  2788. {
  2789. "site_id_ref": 3,
  2790. "confidence_classification": "curated"
  2791. }
  2792. ],
  2793. "pdb_res_label": "91",
  2794. "aa_type": "VAL"
  2795. },
  2796. {
  2797. "site_data": [
  2798. {
  2799. "site_id_ref": 3,
  2800. "confidence_classification": "curated"
  2801. }
  2802. ],
  2803. "pdb_res_label": "92",
  2804. "aa_type": "ALA"
  2805. },
  2806. {
  2807. "site_data": [
  2808. {
  2809. "site_id_ref": 3,
  2810. "confidence_classification": "curated"
  2811. }
  2812. ],
  2813. "pdb_res_label": "93",
  2814. "aa_type": "VAL"
  2815. },
  2816. {
  2817. "site_data": [
  2818. {
  2819. "site_id_ref": 3,
  2820. "confidence_classification": "curated"
  2821. }
  2822. ],
  2823. "pdb_res_label": "94",
  2824. "aa_type": "VAL"
  2825. },
  2826. {
  2827. "site_data": [
  2828. {
  2829. "site_id_ref": 3,
  2830. "confidence_classification": "curated"
  2831. }
  2832. ],
  2833. "pdb_res_label": "95",
  2834. "aa_type": "VAL"
  2835. },
  2836. {
  2837. "site_data": [
  2838. {
  2839. "site_id_ref": 3,
  2840. "confidence_classification": "curated"
  2841. }
  2842. ],
  2843. "pdb_res_label": "96",
  2844. "aa_type": "MET"
  2845. },
  2846. {
  2847. "site_data": [
  2848. {
  2849. "site_id_ref": 3,
  2850. "confidence_classification": "curated"
  2851. }
  2852. ],
  2853. "pdb_res_label": "97",
  2854. "aa_type": "VAL"
  2855. },
  2856. {
  2857. "site_data": [
  2858. {
  2859. "site_id_ref": 3,
  2860. "confidence_classification": "curated"
  2861. }
  2862. ],
  2863. "pdb_res_label": "98",
  2864. "aa_type": "ALA"
  2865. },
  2866. {
  2867. "site_data": [
  2868. {
  2869. "site_id_ref": 3,
  2870. "confidence_classification": "curated"
  2871. }
  2872. ],
  2873. "pdb_res_label": "99",
  2874. "aa_type": "GLY"
  2875. },
  2876. {
  2877. "site_data": [
  2878. {
  2879. "site_id_ref": 3,
  2880. "confidence_classification": "curated"
  2881. }
  2882. ],
  2883. "pdb_res_label": "100",
  2884. "aa_type": "ILE"
  2885. },
  2886. {
  2887. "site_data": [
  2888. {
  2889. "site_id_ref": 3,
  2890. "confidence_classification": "curated"
  2891. }
  2892. ],
  2893. "pdb_res_label": "101",
  2894. "aa_type": "THR"
  2895. },
  2896. {
  2897. "site_data": [
  2898. {
  2899. "site_id_ref": 3,
  2900. "confidence_classification": "curated"
  2901. }
  2902. ],
  2903. "pdb_res_label": "102",
  2904. "aa_type": "SER"
  2905. },
  2906. {
  2907. "site_data": [
  2908. {
  2909. "site_id_ref": 3,
  2910. "confidence_classification": "curated"
  2911. }
  2912. ],
  2913. "pdb_res_label": "103",
  2914. "aa_type": "PHE"
  2915. },
  2916. {
  2917. "site_data": [
  2918. {
  2919. "site_id_ref": 3,
  2920. "confidence_classification": "curated"
  2921. }
  2922. ],
  2923. "pdb_res_label": "104",
  2924. "aa_type": "GLY"
  2925. },
  2926. {
  2927. "site_data": [
  2928. {
  2929. "site_id_ref": 3,
  2930. "confidence_classification": "curated"
  2931. }
  2932. ],
  2933. "pdb_res_label": "105",
  2934. "aa_type": "LEU"
  2935. },
  2936. {
  2937. "site_data": [
  2938. {
  2939. "site_id_ref": 3,
  2940. "confidence_classification": "curated"
  2941. }
  2942. ],
  2943. "pdb_res_label": "106",
  2944. "aa_type": "VAL"
  2945. },
  2946. {
  2947. "site_data": [
  2948. {
  2949. "site_id_ref": 3,
  2950. "confidence_classification": "curated"
  2951. }
  2952. ],
  2953. "pdb_res_label": "107",
  2954. "aa_type": "THR"
  2955. },
  2956. {
  2957. "site_data": [
  2958. {
  2959. "site_id_ref": 3,
  2960. "confidence_classification": "curated"
  2961. }
  2962. ],
  2963. "pdb_res_label": "108",
  2964. "aa_type": "ALA"
  2965. },
  2966. {
  2967. "site_data": [
  2968. {
  2969. "site_id_ref": 3,
  2970. "confidence_classification": "curated"
  2971. }
  2972. ],
  2973. "pdb_res_label": "109",
  2974. "aa_type": "ALA"
  2975. },
  2976. {
  2977. "site_data": [
  2978. {
  2979. "site_id_ref": 3,
  2980. "confidence_classification": "curated"
  2981. }
  2982. ],
  2983. "pdb_res_label": "110",
  2984. "aa_type": "LEU"
  2985. },
  2986. {
  2987. "site_data": [
  2988. {
  2989. "site_id_ref": 3,
  2990. "confidence_classification": "curated"
  2991. }
  2992. ],
  2993. "pdb_res_label": "111",
  2994. "aa_type": "ALA"
  2995. },
  2996. {
  2997. "site_data": [
  2998. {
  2999. "site_id_ref": 1,
  3000. "confidence_classification": "curated"
  3001. }
  3002. ],
  3003. "pdb_res_label": "112",
  3004. "aa_type": "THR"
  3005. },
  3006. {
  3007. "site_data": [
  3008. {
  3009. "site_id_ref": 1,
  3010. "confidence_classification": "curated"
  3011. }
  3012. ],
  3013. "pdb_res_label": "113",
  3014. "aa_type": "TRP"
  3015. },
  3016. {
  3017. "site_data": [
  3018. {
  3019. "site_id_ref": 1,
  3020. "confidence_classification": "curated"
  3021. }
  3022. ],
  3023. "pdb_res_label": "114",
  3024. "aa_type": "PHE"
  3025. },
  3026. {
  3027. "site_data": [
  3028. {
  3029. "site_id_ref": 1,
  3030. "confidence_classification": "curated"
  3031. }
  3032. ],
  3033. "pdb_res_label": "115",
  3034. "aa_type": "VAL"
  3035. },
  3036. {
  3037. "site_data": [
  3038. {
  3039. "site_id_ref": 1,
  3040. "confidence_classification": "curated"
  3041. }
  3042. ],
  3043. "pdb_res_label": "116",
  3044. "aa_type": "GLY"
  3045. },
  3046. {
  3047. "site_data": [
  3048. {
  3049. "site_id_ref": 1,
  3050. "confidence_classification": "curated"
  3051. }
  3052. ],
  3053. "pdb_res_label": "117",
  3054. "aa_type": "ARG"
  3055. },
  3056. {
  3057. "site_data": [
  3058. {
  3059. "site_id_ref": 1,
  3060. "confidence_classification": "curated"
  3061. }
  3062. ],
  3063. "pdb_res_label": "118",
  3064. "aa_type": "GLU"
  3065. },
  3066. {
  3067. "site_data": [
  3068. {
  3069. "site_id_ref": 1,
  3070. "confidence_classification": "curated"
  3071. }
  3072. ],
  3073. "pdb_res_label": "119",
  3074. "aa_type": "GLN"
  3075. },
  3076. {
  3077. "site_data": [
  3078. {
  3079. "site_id_ref": 1,
  3080. "confidence_classification": "curated"
  3081. }
  3082. ],
  3083. "pdb_res_label": "120",
  3084. "aa_type": "GLU"
  3085. },
  3086. {
  3087. "site_data": [
  3088. {
  3089. "site_id_ref": 1,
  3090. "confidence_classification": "curated"
  3091. }
  3092. ],
  3093. "pdb_res_label": "121",
  3094. "aa_type": "ARG"
  3095. },
  3096. {
  3097. "site_data": [
  3098. {
  3099. "site_id_ref": 1,
  3100. "confidence_classification": "curated"
  3101. }
  3102. ],
  3103. "pdb_res_label": "122",
  3104. "aa_type": "ARG"
  3105. },
  3106. {
  3107. "site_data": [
  3108. {
  3109. "site_id_ref": 1,
  3110. "confidence_classification": "curated"
  3111. }
  3112. ],
  3113. "pdb_res_label": "123",
  3114. "aa_type": "GLY"
  3115. },
  3116. {
  3117. "site_data": [
  3118. {
  3119. "site_id_ref": 1,
  3120. "confidence_classification": "curated"
  3121. }
  3122. ],
  3123. "pdb_res_label": "124",
  3124. "aa_type": "HIS"
  3125. }
  3126. ]
  3127. },
  3128. {
  3129. "chain_label": "C-4",
  3130. "additional_chain_annotations": {
  3131. "type": "alpha",
  3132. "num_tm": "2"
  3133. },
  3134. "residues": [
  3135. {
  3136. "site_data": [
  3137. {
  3138. "site_id_ref": 1,
  3139. "confidence_classification": "curated"
  3140. }
  3141. ],
  3142. "pdb_res_label": "22",
  3143. "aa_type": "SER"
  3144. },
  3145. {
  3146. "site_data": [
  3147. {
  3148. "site_id_ref": 1,
  3149. "confidence_classification": "curated"
  3150. }
  3151. ],
  3152. "pdb_res_label": "23",
  3153. "aa_type": "ALA"
  3154. },
  3155. {
  3156. "site_data": [
  3157. {
  3158. "site_id_ref": 1,
  3159. "confidence_classification": "curated"
  3160. }
  3161. ],
  3162. "pdb_res_label": "24",
  3163. "aa_type": "LEU"
  3164. },
  3165. {
  3166. "site_data": [
  3167. {
  3168. "site_id_ref": 1,
  3169. "confidence_classification": "curated"
  3170. }
  3171. ],
  3172. "pdb_res_label": "25",
  3173. "aa_type": "HIS"
  3174. },
  3175. {
  3176. "site_data": [
  3177. {
  3178. "site_id_ref": 3,
  3179. "confidence_classification": "curated"
  3180. }
  3181. ],
  3182. "pdb_res_label": "26",
  3183. "aa_type": "TRP"
  3184. },
  3185. {
  3186. "site_data": [
  3187. {
  3188. "site_id_ref": 3,
  3189. "confidence_classification": "curated"
  3190. }
  3191. ],
  3192. "pdb_res_label": "27",
  3193. "aa_type": "ARG"
  3194. },
  3195. {
  3196. "site_data": [
  3197. {
  3198. "site_id_ref": 3,
  3199. "confidence_classification": "curated"
  3200. }
  3201. ],
  3202. "pdb_res_label": "28",
  3203. "aa_type": "ALA"
  3204. },
  3205. {
  3206. "site_data": [
  3207. {
  3208. "site_id_ref": 3,
  3209. "confidence_classification": "curated"
  3210. }
  3211. ],
  3212. "pdb_res_label": "29",
  3213. "aa_type": "ALA"
  3214. },
  3215. {
  3216. "site_data": [
  3217. {
  3218. "site_id_ref": 3,
  3219. "confidence_classification": "curated"
  3220. }
  3221. ],
  3222. "pdb_res_label": "30",
  3223. "aa_type": "GLY"
  3224. },
  3225. {
  3226. "site_data": [
  3227. {
  3228. "site_id_ref": 3,
  3229. "confidence_classification": "curated"
  3230. }
  3231. ],
  3232. "pdb_res_label": "31",
  3233. "aa_type": "ALA"
  3234. },
  3235. {
  3236. "site_data": [
  3237. {
  3238. "site_id_ref": 3,
  3239. "confidence_classification": "curated"
  3240. }
  3241. ],
  3242. "pdb_res_label": "32",
  3243. "aa_type": "ALA"
  3244. },
  3245. {
  3246. "site_data": [
  3247. {
  3248. "site_id_ref": 3,
  3249. "confidence_classification": "curated"
  3250. }
  3251. ],
  3252. "pdb_res_label": "33",
  3253. "aa_type": "THR"
  3254. },
  3255. {
  3256. "site_data": [
  3257. {
  3258. "site_id_ref": 3,
  3259. "confidence_classification": "curated"
  3260. }
  3261. ],
  3262. "pdb_res_label": "34",
  3263. "aa_type": "VAL"
  3264. },
  3265. {
  3266. "site_data": [
  3267. {
  3268. "site_id_ref": 3,
  3269. "confidence_classification": "curated"
  3270. }
  3271. ],
  3272. "pdb_res_label": "35",
  3273. "aa_type": "LEU"
  3274. },
  3275. {
  3276. "site_data": [
  3277. {
  3278. "site_id_ref": 3,
  3279. "confidence_classification": "curated"
  3280. }
  3281. ],
  3282. "pdb_res_label": "36",
  3283. "aa_type": "LEU"
  3284. },
  3285. {
  3286. "site_data": [
  3287. {
  3288. "site_id_ref": 3,
  3289. "confidence_classification": "curated"
  3290. }
  3291. ],
  3292. "pdb_res_label": "37",
  3293. "aa_type": "VAL"
  3294. },
  3295. {
  3296. "site_data": [
  3297. {
  3298. "site_id_ref": 3,
  3299. "confidence_classification": "curated"
  3300. }
  3301. ],
  3302. "pdb_res_label": "38",
  3303. "aa_type": "ILE"
  3304. },
  3305. {
  3306. "site_data": [
  3307. {
  3308. "site_id_ref": 3,
  3309. "confidence_classification": "curated"
  3310. }
  3311. ],
  3312. "pdb_res_label": "39",
  3313. "aa_type": "VAL"
  3314. },
  3315. {
  3316. "site_data": [
  3317. {
  3318. "site_id_ref": 3,
  3319. "confidence_classification": "curated"
  3320. }
  3321. ],
  3322. "pdb_res_label": "40",
  3323. "aa_type": "LEU"
  3324. },
  3325. {
  3326. "site_data": [
  3327. {
  3328. "site_id_ref": 3,
  3329. "confidence_classification": "curated"
  3330. }
  3331. ],
  3332. "pdb_res_label": "41",
  3333. "aa_type": "LEU"
  3334. },
  3335. {
  3336. "site_data": [
  3337. {
  3338. "site_id_ref": 3,
  3339. "confidence_classification": "curated"
  3340. }
  3341. ],
  3342. "pdb_res_label": "42",
  3343. "aa_type": "ALA"
  3344. },
  3345. {
  3346. "site_data": [
  3347. {
  3348. "site_id_ref": 3,
  3349. "confidence_classification": "curated"
  3350. }
  3351. ],
  3352. "pdb_res_label": "43",
  3353. "aa_type": "GLY"
  3354. },
  3355. {
  3356. "site_data": [
  3357. {
  3358. "site_id_ref": 3,
  3359. "confidence_classification": "curated"
  3360. }
  3361. ],
  3362. "pdb_res_label": "44",
  3363. "aa_type": "SER"
  3364. },
  3365. {
  3366. "site_data": [
  3367. {
  3368. "site_id_ref": 3,
  3369. "confidence_classification": "curated"
  3370. }
  3371. ],
  3372. "pdb_res_label": "45",
  3373. "aa_type": "TYR"
  3374. },
  3375. {
  3376. "site_data": [
  3377. {
  3378. "site_id_ref": 3,
  3379. "confidence_classification": "curated"
  3380. }
  3381. ],
  3382. "pdb_res_label": "46",
  3383. "aa_type": "LEU"
  3384. },
  3385. {
  3386. "site_data": [
  3387. {
  3388. "site_id_ref": 3,
  3389. "confidence_classification": "curated"
  3390. }
  3391. ],
  3392. "pdb_res_label": "47",
  3393. "aa_type": "ALA"
  3394. },
  3395. {
  3396. "site_data": [
  3397. {
  3398. "site_id_ref": 3,
  3399. "confidence_classification": "curated"
  3400. }
  3401. ],
  3402. "pdb_res_label": "48",
  3403. "aa_type": "VAL"
  3404. },
  3405. {
  3406. "site_data": [
  3407. {
  3408. "site_id_ref": 3,
  3409. "confidence_classification": "curated"
  3410. }
  3411. ],
  3412. "pdb_res_label": "49",
  3413. "aa_type": "LEU"
  3414. },
  3415. {
  3416. "site_data": [
  3417. {
  3418. "site_id_ref": 3,
  3419. "confidence_classification": "curated"
  3420. }
  3421. ],
  3422. "pdb_res_label": "50",
  3423. "aa_type": "ALA"
  3424. },
  3425. {
  3426. "site_data": [
  3427. {
  3428. "site_id_ref": 2,
  3429. "confidence_classification": "curated"
  3430. }
  3431. ],
  3432. "pdb_res_label": "51",
  3433. "aa_type": "GLU"
  3434. },
  3435. {
  3436. "site_data": [
  3437. {
  3438. "site_id_ref": 2,
  3439. "confidence_classification": "curated"
  3440. }
  3441. ],
  3442. "pdb_res_label": "52",
  3443. "aa_type": "ARG"
  3444. },
  3445. {
  3446. "site_data": [
  3447. {
  3448. "site_id_ref": 2,
  3449. "confidence_classification": "curated"
  3450. }
  3451. ],
  3452. "pdb_res_label": "53",
  3453. "aa_type": "GLY"
  3454. },
  3455. {
  3456. "site_data": [
  3457. {
  3458. "site_id_ref": 2,
  3459. "confidence_classification": "curated"
  3460. }
  3461. ],
  3462. "pdb_res_label": "54",
  3463. "aa_type": "ALA"
  3464. },
  3465. {
  3466. "site_data": [
  3467. {
  3468. "site_id_ref": 2,
  3469. "confidence_classification": "curated"
  3470. }
  3471. ],
  3472. "pdb_res_label": "55",
  3473. "aa_type": "PRO"
  3474. },
  3475. {
  3476. "site_data": [
  3477. {
  3478. "site_id_ref": 2,
  3479. "confidence_classification": "curated"
  3480. }
  3481. ],
  3482. "pdb_res_label": "56",
  3483. "aa_type": "GLY"
  3484. },
  3485. {
  3486. "site_data": [
  3487. {
  3488. "site_id_ref": 2,
  3489. "confidence_classification": "curated"
  3490. }
  3491. ],
  3492. "pdb_res_label": "57",
  3493. "aa_type": "ALA"
  3494. },
  3495. {
  3496. "site_data": [
  3497. {
  3498. "site_id_ref": 2,
  3499. "confidence_classification": "curated"
  3500. }
  3501. ],
  3502. "pdb_res_label": "58",
  3503. "aa_type": "GLN"
  3504. },
  3505. {
  3506. "site_data": [
  3507. {
  3508. "site_id_ref": 2,
  3509. "confidence_classification": "curated"
  3510. }
  3511. ],
  3512. "pdb_res_label": "59",
  3513. "aa_type": "LEU"
  3514. },
  3515. {
  3516. "site_data": [
  3517. {
  3518. "site_id_ref": 2,
  3519. "confidence_classification": "curated"
  3520. }
  3521. ],
  3522. "pdb_res_label": "60",
  3523. "aa_type": "ILE"
  3524. },
  3525. {
  3526. "site_data": [
  3527. {
  3528. "site_id_ref": 2,
  3529. "confidence_classification": "curated"
  3530. }
  3531. ],
  3532. "pdb_res_label": "61",
  3533. "aa_type": "THR"
  3534. },
  3535. {
  3536. "site_data": [
  3537. {
  3538. "site_id_ref": 2,
  3539. "confidence_classification": "curated"
  3540. }
  3541. ],
  3542. "pdb_res_label": "62",
  3543. "aa_type": "TYR"
  3544. },
  3545. {
  3546. "site_data": [
  3547. {
  3548. "site_id_ref": 5,
  3549. "confidence_classification": "curated"
  3550. }
  3551. ],
  3552. "pdb_res_label": "63",
  3553. "aa_type": "PRO"
  3554. },
  3555. {
  3556. "site_data": [
  3557. {
  3558. "site_id_ref": 5,
  3559. "confidence_classification": "curated"
  3560. }
  3561. ],
  3562. "pdb_res_label": "64",
  3563. "aa_type": "ARG"
  3564. },
  3565. {
  3566. "site_data": [
  3567. {
  3568. "site_id_ref": 5,
  3569. "confidence_classification": "curated"
  3570. }
  3571. ],
  3572. "pdb_res_label": "65",
  3573. "aa_type": "ALA"
  3574. },
  3575. {
  3576. "site_data": [
  3577. {
  3578. "site_id_ref": 5,
  3579. "confidence_classification": "curated"
  3580. }
  3581. ],
  3582. "pdb_res_label": "66",
  3583. "aa_type": "LEU"
  3584. },
  3585. {
  3586. "site_data": [
  3587. {
  3588. "site_id_ref": 5,
  3589. "confidence_classification": "curated"
  3590. }
  3591. ],
  3592. "pdb_res_label": "67",
  3593. "aa_type": "TRP"
  3594. },
  3595. {
  3596. "site_data": [
  3597. {
  3598. "site_id_ref": 5,
  3599. "confidence_classification": "curated"
  3600. }
  3601. ],
  3602. "pdb_res_label": "68",
  3603. "aa_type": "TRP"
  3604. },
  3605. {
  3606. "site_data": [
  3607. {
  3608. "site_id_ref": 5,
  3609. "confidence_classification": "curated"
  3610. }
  3611. ],
  3612. "pdb_res_label": "69",
  3613. "aa_type": "SER"
  3614. },
  3615. {
  3616. "site_data": [
  3617. {
  3618. "site_id_ref": 5,
  3619. "confidence_classification": "curated"
  3620. }
  3621. ],
  3622. "pdb_res_label": "70",
  3623. "aa_type": "VAL"
  3624. },
  3625. {
  3626. "site_data": [
  3627. {
  3628. "site_id_ref": 5,
  3629. "confidence_classification": "curated"
  3630. }
  3631. ],
  3632. "pdb_res_label": "71",
  3633. "aa_type": "ALA"
  3634. },
  3635. {
  3636. "site_data": [
  3637. {
  3638. "site_id_ref": 5,
  3639. "confidence_classification": "curated"
  3640. }
  3641. ],
  3642. "pdb_res_label": "72",
  3643. "aa_type": "THR"
  3644. },
  3645. {
  3646. "site_data": [
  3647. {
  3648. "site_id_ref": 5,
  3649. "confidence_classification": "curated"
  3650. }
  3651. ],
  3652. "pdb_res_label": "73",
  3653. "aa_type": "ALA"
  3654. },
  3655. {
  3656. "site_data": [
  3657. {
  3658. "site_id_ref": 5,
  3659. "confidence_classification": "curated"
  3660. }
  3661. ],
  3662. "pdb_res_label": "74",
  3663. "aa_type": "THR"
  3664. },
  3665. {
  3666. "site_data": [
  3667. {
  3668. "site_id_ref": 5,
  3669. "confidence_classification": "curated"
  3670. }
  3671. ],
  3672. "pdb_res_label": "75",
  3673. "aa_type": "THR"
  3674. },
  3675. {
  3676. "site_data": [
  3677. {
  3678. "site_id_ref": 5,
  3679. "confidence_classification": "curated"
  3680. }
  3681. ],
  3682. "pdb_res_label": "76",
  3683. "aa_type": "VAL"
  3684. },
  3685. {
  3686. "site_data": [
  3687. {
  3688. "site_id_ref": 5,
  3689. "confidence_classification": "curated"
  3690. }
  3691. ],
  3692. "pdb_res_label": "77",
  3693. "aa_type": "GLY"
  3694. },
  3695. {
  3696. "site_data": [
  3697. {
  3698. "site_id_ref": 5,
  3699. "confidence_classification": "curated"
  3700. }
  3701. ],
  3702. "pdb_res_label": "78",
  3703. "aa_type": "TYR"
  3704. },
  3705. {
  3706. "site_data": [
  3707. {
  3708. "site_id_ref": 2,
  3709. "confidence_classification": "curated"
  3710. }
  3711. ],
  3712. "pdb_res_label": "79",
  3713. "aa_type": "GLY"
  3714. },
  3715. {
  3716. "site_data": [
  3717. {
  3718. "site_id_ref": 2,
  3719. "confidence_classification": "curated"
  3720. }
  3721. ],
  3722. "pdb_res_label": "80",
  3723. "aa_type": "ASP"
  3724. },
  3725. {
  3726. "site_data": [
  3727. {
  3728. "site_id_ref": 2,
  3729. "confidence_classification": "curated"
  3730. }
  3731. ],
  3732. "pdb_res_label": "81",
  3733. "aa_type": "LEU"
  3734. },
  3735. {
  3736. "site_data": [
  3737. {
  3738. "site_id_ref": 2,
  3739. "confidence_classification": "curated"
  3740. }
  3741. ],
  3742. "pdb_res_label": "82",
  3743. "aa_type": "TYR"
  3744. },
  3745. {
  3746. "site_data": [
  3747. {
  3748. "site_id_ref": 2,
  3749. "confidence_classification": "curated"
  3750. }
  3751. ],
  3752. "pdb_res_label": "83",
  3753. "aa_type": "PRO"
  3754. },
  3755. {
  3756. "site_data": [
  3757. {
  3758. "site_id_ref": 2,
  3759. "confidence_classification": "curated"
  3760. }
  3761. ],
  3762. "pdb_res_label": "84",
  3763. "aa_type": "VAL"
  3764. },
  3765. {
  3766. "site_data": [
  3767. {
  3768. "site_id_ref": 2,
  3769. "confidence_classification": "curated"
  3770. }
  3771. ],
  3772. "pdb_res_label": "85",
  3773. "aa_type": "THR"
  3774. },
  3775. {
  3776. "site_data": [
  3777. {
  3778. "site_id_ref": 3,
  3779. "confidence_classification": "curated"
  3780. }
  3781. ],
  3782. "pdb_res_label": "86",
  3783. "aa_type": "LEU"
  3784. },
  3785. {
  3786. "site_data": [
  3787. {
  3788. "site_id_ref": 3,
  3789. "confidence_classification": "curated"
  3790. }
  3791. ],
  3792. "pdb_res_label": "87",
  3793. "aa_type": "TRP"
  3794. },
  3795. {
  3796. "site_data": [
  3797. {
  3798. "site_id_ref": 3,
  3799. "confidence_classification": "curated"
  3800. }
  3801. ],
  3802. "pdb_res_label": "88",
  3803. "aa_type": "GLY"
  3804. },
  3805. {
  3806. "site_data": [
  3807. {
  3808. "site_id_ref": 3,
  3809. "confidence_classification": "curated"
  3810. }
  3811. ],
  3812. "pdb_res_label": "89",
  3813. "aa_type": "ARG"
  3814. },
  3815. {
  3816. "site_data": [
  3817. {
  3818. "site_id_ref": 3,
  3819. "confidence_classification": "curated"
  3820. }
  3821. ],
  3822. "pdb_res_label": "90",
  3823. "aa_type": "CYS"
  3824. },
  3825. {
  3826. "site_data": [
  3827. {
  3828. "site_id_ref": 3,
  3829. "confidence_classification": "curated"
  3830. }
  3831. ],
  3832. "pdb_res_label": "91",
  3833. "aa_type": "VAL"
  3834. },
  3835. {
  3836. "site_data": [
  3837. {
  3838. "site_id_ref": 3,
  3839. "confidence_classification": "curated"
  3840. }
  3841. ],
  3842. "pdb_res_label": "92",
  3843. "aa_type": "ALA"
  3844. },
  3845. {
  3846. "site_data": [
  3847. {
  3848. "site_id_ref": 3,
  3849. "confidence_classification": "curated"
  3850. }
  3851. ],
  3852. "pdb_res_label": "93",
  3853. "aa_type": "VAL"
  3854. },
  3855. {
  3856. "site_data": [
  3857. {
  3858. "site_id_ref": 3,
  3859. "confidence_classification": "curated"
  3860. }
  3861. ],
  3862. "pdb_res_label": "94",
  3863. "aa_type": "VAL"
  3864. },
  3865. {
  3866. "site_data": [
  3867. {
  3868. "site_id_ref": 3,
  3869. "confidence_classification": "curated"
  3870. }
  3871. ],
  3872. "pdb_res_label": "95",
  3873. "aa_type": "VAL"
  3874. },
  3875. {
  3876. "site_data": [
  3877. {
  3878. "site_id_ref": 3,
  3879. "confidence_classification": "curated"
  3880. }
  3881. ],
  3882. "pdb_res_label": "96",
  3883. "aa_type": "MET"
  3884. },
  3885. {
  3886. "site_data": [
  3887. {
  3888. "site_id_ref": 3,
  3889. "confidence_classification": "curated"
  3890. }
  3891. ],
  3892. "pdb_res_label": "97",
  3893. "aa_type": "VAL"
  3894. },
  3895. {
  3896. "site_data": [
  3897. {
  3898. "site_id_ref": 3,
  3899. "confidence_classification": "curated"
  3900. }
  3901. ],
  3902. "pdb_res_label": "98",
  3903. "aa_type": "ALA"
  3904. },
  3905. {
  3906. "site_data": [
  3907. {
  3908. "site_id_ref": 3,
  3909. "confidence_classification": "curated"
  3910. }
  3911. ],
  3912. "pdb_res_label": "99",
  3913. "aa_type": "GLY"
  3914. },
  3915. {
  3916. "site_data": [
  3917. {
  3918. "site_id_ref": 3,
  3919. "confidence_classification": "curated"
  3920. }
  3921. ],
  3922. "pdb_res_label": "100",
  3923. "aa_type": "ILE"
  3924. },
  3925. {
  3926. "site_data": [
  3927. {
  3928. "site_id_ref": 3,
  3929. "confidence_classification": "curated"
  3930. }
  3931. ],
  3932. "pdb_res_label": "101",
  3933. "aa_type": "THR"
  3934. },
  3935. {
  3936. "site_data": [
  3937. {
  3938. "site_id_ref": 3,
  3939. "confidence_classification": "curated"
  3940. }
  3941. ],
  3942. "pdb_res_label": "102",
  3943. "aa_type": "SER"
  3944. },
  3945. {
  3946. "site_data": [
  3947. {
  3948. "site_id_ref": 3,
  3949. "confidence_classification": "curated"
  3950. }
  3951. ],
  3952. "pdb_res_label": "103",
  3953. "aa_type": "PHE"
  3954. },
  3955. {
  3956. "site_data": [
  3957. {
  3958. "site_id_ref": 3,
  3959. "confidence_classification": "curated"
  3960. }
  3961. ],
  3962. "pdb_res_label": "104",
  3963. "aa_type": "GLY"
  3964. },
  3965. {
  3966. "site_data": [
  3967. {
  3968. "site_id_ref": 3,
  3969. "confidence_classification": "curated"
  3970. }
  3971. ],
  3972. "pdb_res_label": "105",
  3973. "aa_type": "LEU"
  3974. },
  3975. {
  3976. "site_data": [
  3977. {
  3978. "site_id_ref": 3,
  3979. "confidence_classification": "curated"
  3980. }
  3981. ],
  3982. "pdb_res_label": "106",
  3983. "aa_type": "VAL"
  3984. },
  3985. {
  3986. "site_data": [
  3987. {
  3988. "site_id_ref": 3,
  3989. "confidence_classification": "curated"
  3990. }
  3991. ],
  3992. "pdb_res_label": "107",
  3993. "aa_type": "THR"
  3994. },
  3995. {
  3996. "site_data": [
  3997. {
  3998. "site_id_ref": 3,
  3999. "confidence_classification": "curated"
  4000. }
  4001. ],
  4002. "pdb_res_label": "108",
  4003. "aa_type": "ALA"
  4004. },
  4005. {
  4006. "site_data": [
  4007. {
  4008. "site_id_ref": 3,
  4009. "confidence_classification": "curated"
  4010. }
  4011. ],
  4012. "pdb_res_label": "109",
  4013. "aa_type": "ALA"
  4014. },
  4015. {
  4016. "site_data": [
  4017. {
  4018. "site_id_ref": 3,
  4019. "confidence_classification": "curated"
  4020. }
  4021. ],
  4022. "pdb_res_label": "110",
  4023. "aa_type": "LEU"
  4024. },
  4025. {
  4026. "site_data": [
  4027. {
  4028. "site_id_ref": 3,
  4029. "confidence_classification": "curated"
  4030. }
  4031. ],
  4032. "pdb_res_label": "111",
  4033. "aa_type": "ALA"
  4034. },
  4035. {
  4036. "site_data": [
  4037. {
  4038. "site_id_ref": 1,
  4039. "confidence_classification": "curated"
  4040. }
  4041. ],
  4042. "pdb_res_label": "112",
  4043. "aa_type": "THR"
  4044. },
  4045. {
  4046. "site_data": [
  4047. {
  4048. "site_id_ref": 1,
  4049. "confidence_classification": "curated"
  4050. }
  4051. ],
  4052. "pdb_res_label": "113",
  4053. "aa_type": "TRP"
  4054. },
  4055. {
  4056. "site_data": [
  4057. {
  4058. "site_id_ref": 1,
  4059. "confidence_classification": "curated"
  4060. }
  4061. ],
  4062. "pdb_res_label": "114",
  4063. "aa_type": "PHE"
  4064. },
  4065. {
  4066. "site_data": [
  4067. {
  4068. "site_id_ref": 1,
  4069. "confidence_classification": "curated"
  4070. }
  4071. ],
  4072. "pdb_res_label": "115",
  4073. "aa_type": "VAL"
  4074. },
  4075. {
  4076. "site_data": [
  4077. {
  4078. "site_id_ref": 1,
  4079. "confidence_classification": "curated"
  4080. }
  4081. ],
  4082. "pdb_res_label": "116",
  4083. "aa_type": "GLY"
  4084. },
  4085. {
  4086. "site_data": [
  4087. {
  4088. "site_id_ref": 1,
  4089. "confidence_classification": "curated"
  4090. }
  4091. ],
  4092. "pdb_res_label": "117",
  4093. "aa_type": "ARG"
  4094. },
  4095. {
  4096. "site_data": [
  4097. {
  4098. "site_id_ref": 1,
  4099. "confidence_classification": "curated"
  4100. }
  4101. ],
  4102. "pdb_res_label": "118",
  4103. "aa_type": "GLU"
  4104. },
  4105. {
  4106. "site_data": [
  4107. {
  4108. "site_id_ref": 1,
  4109. "confidence_classification": "curated"
  4110. }
  4111. ],
  4112. "pdb_res_label": "119",
  4113. "aa_type": "GLN"
  4114. },
  4115. {
  4116. "site_data": [
  4117. {
  4118. "site_id_ref": 1,
  4119. "confidence_classification": "curated"
  4120. }
  4121. ],
  4122. "pdb_res_label": "120",
  4123. "aa_type": "GLU"
  4124. },
  4125. {
  4126. "site_data": [
  4127. {
  4128. "site_id_ref": 1,
  4129. "confidence_classification": "curated"
  4130. }
  4131. ],
  4132. "pdb_res_label": "121",
  4133. "aa_type": "ARG"
  4134. },
  4135. {
  4136. "site_data": [
  4137. {
  4138. "site_id_ref": 1,
  4139. "confidence_classification": "curated"
  4140. }
  4141. ],
  4142. "pdb_res_label": "122",
  4143. "aa_type": "ARG"
  4144. },
  4145. {
  4146. "site_data": [
  4147. {
  4148. "site_id_ref": 1,
  4149. "confidence_classification": "curated"
  4150. }
  4151. ],
  4152. "pdb_res_label": "123",
  4153. "aa_type": "GLY"
  4154. },
  4155. {
  4156. "site_data": [
  4157. {
  4158. "site_id_ref": 1,
  4159. "confidence_classification": "curated"
  4160. }
  4161. ],
  4162. "pdb_res_label": "124",
  4163. "aa_type": "HIS"
  4164. }
  4165. ]
  4166. }
  4167. ],
  4168. "sites": [
  4169. {
  4170. "site_id": 1,
  4171. "label": "Side1"
  4172. },
  4173. {
  4174. "site_id": 2,
  4175. "label": "Side2"
  4176. },
  4177. {
  4178. "site_id": 3,
  4179. "label": "Transmembrane Alpha Helix"
  4180. },
  4181. {
  4182. "site_id": 4,
  4183. "label": "Transmembrane Beta strand"
  4184. },
  4185. {
  4186. "site_id": 5,
  4187. "label": "Transmembrane Re-entrant Loop"
  4188. },
  4189. {
  4190. "site_id": 6,
  4191. "label": "Interfacial Helix"
  4192. },
  4193. {
  4194. "site_id": 7,
  4195. "label": "Unknown localization"
  4196. },
  4197. {
  4198. "site_id": 8,
  4199. "label": "Membrane Inside"
  4200. }
  4201. ],
  4202. "evidence_code_ontology": [
  4203. {
  4204. "eco_term": "computational combinatorial evidence used in automatic assertion",
  4205. "eco_code": "ECO_0000246"
  4206. }
  4207. ],
  4208. "additional_entry_annotations": {
  4209. "membrane": {
  4210. "normal": {
  4211. "x": 0,
  4212. "y": 0,
  4213. "z": 18
  4214. },
  4215. "radius": 23,
  4216. "transformation_matrix": {
  4217. "rowx": {
  4218. "x": 1,
  4219. "y": 0,
  4220. "z": 0,
  4221. "t": -155.16000366
  4222. },
  4223. "rowy": {
  4224. "x": 0,
  4225. "y": 1,
  4226. "z": 0,
  4227. "t": -155.15982056
  4228. },
  4229. "rowz": {
  4230. "x": 0,
  4231. "y": 0,
  4232. "z": 1,
  4233. "t": 45.51899719
  4234. }
  4235. }
  4236. },
  4237. "biomatrix": {
  4238. "chain_deletes": [
  4239. "A",
  4240. "B"
  4241. ],
  4242. "matrix_list": [
  4243. {
  4244. "matrix_id": "1",
  4245. "apply_to_chain_list": [
  4246. {
  4247. "chain_id": "C",
  4248. "new_chain_id": "C-2"
  4249. }
  4250. ],
  4251. "transformation_matrix": {
  4252. "rowx": {
  4253. "x": 0,
  4254. "y": -1,
  4255. "z": 0,
  4256. "t": 310.32000732
  4257. },
  4258. "rowy": {
  4259. "x": 1,
  4260. "y": 0,
  4261. "z": 0,
  4262. "t": 0
  4263. },
  4264. "rowz": {
  4265. "x": 0,
  4266. "y": 0,
  4267. "z": 1,
  4268. "t": 0
  4269. }
  4270. }
  4271. },
  4272. {
  4273. "matrix_id": "2",
  4274. "apply_to_chain_list": [
  4275. {
  4276. "chain_id": "C",
  4277. "new_chain_id": "C-3"
  4278. }
  4279. ],
  4280. "transformation_matrix": {
  4281. "rowx": {
  4282. "x": -1,
  4283. "y": 0,
  4284. "z": 0,
  4285. "t": 310.32000732
  4286. },
  4287. "rowy": {
  4288. "x": 0,
  4289. "y": -1,
  4290. "z": 0,
  4291. "t": 310.32000732
  4292. },
  4293. "rowz": {
  4294. "x": 0,
  4295. "y": 0,
  4296. "z": 1,
  4297. "t": 0
  4298. }
  4299. }
  4300. },
  4301. {
  4302. "matrix_id": "3",
  4303. "apply_to_chain_list": [
  4304. {
  4305. "chain_id": "C",
  4306. "new_chain_id": "C-4"
  4307. }
  4308. ],
  4309. "transformation_matrix": {
  4310. "rowx": {
  4311. "x": 0,
  4312. "y": 1,
  4313. "z": 0,
  4314. "t": 0
  4315. },
  4316. "rowy": {
  4317. "x": -1,
  4318. "y": 0,
  4319. "z": 0,
  4320. "t": 310.32000732
  4321. },
  4322. "rowz": {
  4323. "x": 0,
  4324. "y": 0,
  4325. "z": 1,
  4326. "t": 0
  4327. }
  4328. }
  4329. }
  4330. ]
  4331. },
  4332. "ent_cif_mapping_results": {
  4333. "ent_cif_chain_map": {
  4334. "A": [
  4335. "A"
  4336. ],
  4337. "B": [
  4338. "B"
  4339. ],
  4340. "C": [
  4341. "C"
  4342. ]
  4343. },
  4344. "cif_chain_derivatives": {
  4345. "C-2": "C",
  4346. "C-3": "C",
  4347. "C-4": "C"
  4348. },
  4349. "pdbtm_derivatives_and_cif_chain_map": {
  4350. "D": [
  4351. "C-2"
  4352. ],
  4353. "E": [
  4354. "C-3"
  4355. ],
  4356. "F": [
  4357. "C-4"
  4358. ]
  4359. }
  4360. }
  4361. }
  4362. }