Spaces:
Sleeping
Sleeping
File size: 66,333 Bytes
37493e5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 | {
"PF00001": [
{
"source": "PubMed",
"title": "Lipoprotein(a) lipidome and chronic kidney disease: Enrichment in triacylglycerols and diacylglycerols.",
"authors": "Khan MA, Myagmarsuren M, Zhang W et al.",
"journal": "Journal of clinical lipidology",
"date": "2026 May 22",
"doi": "10.1016/j.jacl.2026.05.225",
"url": "https://pubmed.ncbi.nlm.nih.gov/42259745/",
"pmid": "42259745"
},
{
"source": "PubMed",
"title": "Associations between Neonatal Auditory Brainstem Response and Long-Term Language Development in Preterm Children.",
"authors": "Takai A, Hasegawa T, Nakata M et al.",
"journal": "American journal of perinatology",
"date": "2026 Jun 5",
"doi": "10.1055/a-2889-6371",
"url": "https://pubmed.ncbi.nlm.nih.gov/42248587/",
"pmid": "42248587"
},
{
"source": "PubMed",
"title": "Screening and identification of Kringle 5-inhibitory microRNAs from Astragali radix decoction pieces using immobilized magnetic beads.",
"authors": "Duan M, Sun Q, Duan J et al.",
"journal": "International journal of biological macromolecules",
"date": "2026 May 28",
"doi": "10.1016/j.ijbiomac.2026.152757",
"url": "https://pubmed.ncbi.nlm.nih.gov/42214530/",
"pmid": "42214530"
}
],
"PF00003": [
{
"source": "PubMed",
"title": "The immunomodulation mediated by a delta-opioid receptor for [Met(5)]-enkephalin in oyster Crassostrea gigas.",
"authors": "Liu Z, Zhou Z, Wang L et al.",
"journal": "Developmental and comparative immunology",
"date": "2015 Apr",
"doi": "10.1016/j.dci.2014.11.017",
"url": "https://pubmed.ncbi.nlm.nih.gov/25475959/",
"pmid": "25475959"
},
{
"source": "PubMed",
"title": "Modulation of haemocyte phagocytic and antibacterial activity by alpha-adrenergic receptor in scallop Chlamys farreri.",
"authors": "Zhou Z, Jiang Q, Wang M et al.",
"journal": "Fish & shellfish immunology",
"date": "2013 Sep",
"doi": "10.1016/j.fsi.2013.06.020",
"url": "https://pubmed.ncbi.nlm.nih.gov/23811406/",
"pmid": "23811406"
},
{
"source": "CrossRef",
"title": "Assessment of FOXP3, Helios and Glucocorticoid-Induced Tumor Necrosis Factor Receptor in Myasthenia Gravis: Implications of Peripheral Regulatory T-Cell Associated Molecules",
"authors": "Samra, Badr, Elageery et al.",
"journal": "Egyptian Journal of Medical Microbiology",
"date": "2027",
"doi": "10.21608/ejmm.2026.479778.2313",
"url": "https://doi.org/10.21608/ejmm.2026.479778.2313",
"pmid": ""
}
],
"PF00004": [
{
"source": "PubMed",
"title": "p97 Inhibition Synergistically Enhances Hypomethylating Therapy Through Targeting of PLK1 in Acute Myeloid Leukemia.",
"authors": "Nawrocki ST, Wang N, Espitia CM et al.",
"journal": "Cancer research communications",
"date": "2026 Jun 5",
"doi": "10.1158/2767-9764.CRC-26-0035",
"url": "https://pubmed.ncbi.nlm.nih.gov/42248070/",
"pmid": "42248070"
},
{
"source": "PubMed",
"title": "ATAD3A Limits Aortic Dissection via Mito-Lysosome Contacts and Lipoylation.",
"authors": "Lin J, Xiong S, An Y et al.",
"journal": "Circulation research",
"date": "2026 Jun 4",
"doi": "10.1161/CIRCRESAHA.125.327965",
"url": "https://pubmed.ncbi.nlm.nih.gov/42237912/",
"pmid": "42237912"
},
{
"source": "PubMed",
"title": "Faf1 accelerates p97-mediated protein unfolding by promoting ubiquitin engagement.",
"authors": "Liao Z, Arkinson C, Martin A",
"journal": "Cell reports",
"date": "2026 Jun 2",
"doi": "10.1016/j.celrep.2026.117393",
"url": "https://pubmed.ncbi.nlm.nih.gov/42228561/",
"pmid": "42228561"
}
],
"PF00005": [
{
"source": "PubMed",
"title": "Deinoxanthin Overcomes P-Glycoprotein-Mediated Multidrug Resistance in Breast Cancer Cells.",
"authors": "Babu S, Balamurugan K, Baskar S et al.",
"journal": "Journal of biochemical and molecular toxicology",
"date": "2026 Jun",
"doi": "10.1002/jbt.70961",
"url": "https://pubmed.ncbi.nlm.nih.gov/42257509/",
"pmid": "42257509"
},
{
"source": "PubMed",
"title": "Analysis of Quality Differences in Rhizoma Musae From Different Origins Based on Rhizosphere Soil Bacterial Diversity and Metabolomics.",
"authors": "Zhang J, Xiong X, Lei J et al.",
"journal": "Food science & nutrition",
"date": "2026 Jun",
"doi": "10.1002/fsn3.71958",
"url": "https://pubmed.ncbi.nlm.nih.gov/42255687/",
"pmid": "42255687"
},
{
"source": "PubMed",
"title": "The Antidepressant Drug Clomipramine Inhibits the ABC Transporter BmrA.",
"authors": "Hellmann N, Kersten C, Efferth T et al.",
"journal": "Chembiochem : a European journal of chemical biology",
"date": "2026 Jun 15",
"doi": "10.1002/cbic.202500937",
"url": "https://pubmed.ncbi.nlm.nih.gov/42252745/",
"pmid": "42252745"
}
],
"PF00006": [
{
"source": "PubMed",
"title": "Intracellular Proton Enrichment Drives Unified Dual-Cofactor Regeneration for Biohybrid CO(2) Fixation.",
"authors": "Bian X, Qiu C, Yang B et al.",
"journal": "Angewandte Chemie (International ed. in English)",
"date": "2026 Jun 9",
"doi": "10.1002/anie.8155133",
"url": "https://pubmed.ncbi.nlm.nih.gov/42261971/",
"pmid": "42261971"
},
{
"source": "PubMed",
"title": "ATPIF1 Deficiency Significantly Alleviates Citrobacter rodentium-Induced Colitis in Mice.",
"authors": "Yang H, Li Z, Yan D et al.",
"journal": "Journal of microbiology and biotechnology",
"date": "2026 May 29",
"doi": "10.4014/jmb.2604.04015",
"url": "https://pubmed.ncbi.nlm.nih.gov/42252908/",
"pmid": "42252908"
},
{
"source": "PubMed",
"title": "Gaussian Mixture Model-Based Focused Refinement for Enhanced Flexible Structure Determination in CryoEM and CryoET.",
"authors": "Chen M",
"journal": "ArXiv",
"date": "2026 May 28",
"doi": "",
"url": "https://pubmed.ncbi.nlm.nih.gov/42244811/",
"pmid": "42244811"
}
],
"PF00007": [
{
"source": "PubMed",
"title": "A cysteine-rich domain of the Cryptococcus neoformans Cuf1 transcription factor is required for high copper stress sensing and fungal virulence.",
"authors": "Probst C, Insler C, Denning-Jannace CA et al.",
"journal": "mBio",
"date": "2026 Jun 9",
"doi": "10.1128/mbio.00781-26",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262097/",
"pmid": "42262097"
},
{
"source": "PubMed",
"title": "Lactate programs CRIP1 protein lactylation to drive synovial proliferation in rheumatoid arthritis.",
"authors": "Ma M, Zhou Y, Li Q et al.",
"journal": "JCI insight",
"date": "2026 Jun 8",
"doi": "10.1172/jci.insight.200928",
"url": "https://pubmed.ncbi.nlm.nih.gov/42258744/",
"pmid": "42258744"
},
{
"source": "PubMed",
"title": "Schinzel-Giedion Syndrome in One of Dizygotic Twins: Confirmation of a De Novo SET Binding Protein 1 (SETBP1) Variant and Classic Multisystem Phenotype.",
"authors": "Thanugundla SR, Kothakapa SL, Ramireddy S et al.",
"journal": "Cureus",
"date": "2026 May",
"doi": "10.7759/cureus.108270",
"url": "https://pubmed.ncbi.nlm.nih.gov/42255817/",
"pmid": "42255817"
}
],
"PF00008": [
{
"source": "PubMed",
"title": "Human Metapneumovirus Infection Modifies Cytoskeletal Architecture and Growth Factors of Mesenchymal Stem Cells.",
"authors": "López-Mejia M, Jarquín-Yañez K, Ambrosio-Hernández JR et al.",
"journal": "Archives of medical research",
"date": "2026 Jun 9",
"doi": "10.1016/j.arcmed.2026.103445",
"url": "https://pubmed.ncbi.nlm.nih.gov/42263345/",
"pmid": "42263345"
},
{
"source": "PubMed",
"title": "A discovery-based proteomic approach of epidermal growth factor and growth hormone-releasing peptide-6 in a model of acute ischemic stroke.",
"authors": "Rodríguez-Ulloa A, Subirós-Martínez N, González LJ et al.",
"journal": "Pharmacological reports : PR",
"date": "2026 Jun 8",
"doi": "10.1007/s43440-026-00872-4",
"url": "https://pubmed.ncbi.nlm.nih.gov/42258095/",
"pmid": "42258095"
},
{
"source": "PubMed",
"title": "NMR metabolomics assessment of neural commitment of human dental pulp-derived stem cells.",
"authors": "Chirico M, Pisanu ME, Mari E et al.",
"journal": "Frontiers in molecular biosciences",
"date": "2026",
"doi": "10.3389/fmolb.2026.1735166",
"url": "https://pubmed.ncbi.nlm.nih.gov/42256314/",
"pmid": "42256314"
}
],
"PF00009": [
{
"source": "PubMed",
"title": "Inhibition of heat shock protein 90 in the mouse spinal cord enhances opioid antinociception through upregulation of PKCβ in CGRP neurons.",
"authors": "Bowden JL, Carr JE, Gabriel KA et al.",
"journal": "Pain",
"date": "2026 Jun 3",
"doi": "10.1097/j.pain.0000000000004027",
"url": "https://pubmed.ncbi.nlm.nih.gov/42263270/",
"pmid": "42263270"
},
{
"source": "PubMed",
"title": "Exploring plasma cell-free RNA biomarkers for predicting immune checkpoint inhibitor efficacy in gastric cancer: a translational sub-study of the KSCC VOYAGER phase II trial.",
"authors": "Ikeda S, Hu Q, Natsugoe K et al.",
"journal": "International journal of clinical oncology",
"date": "2026 Jun 9",
"doi": "10.1007/s10147-026-03086-z",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262687/",
"pmid": "42262687"
},
{
"source": "PubMed",
"title": "DMI3 autophosphorylation at the C-terminus of its calmodulin-binding domain dismantles CaM-DMI3-IPD3 to initiate root nodulation.",
"authors": "Zhou Y, Qian Y, Wang Y et al.",
"journal": "Plant physiology",
"date": "2026 Jun 9",
"doi": "10.1093/plphys/kiag347",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262490/",
"pmid": "42262490"
}
],
"PF00010": [
{
"source": "PubMed",
"title": "Epstein-Barr Virus (EBV)-Positive Diffuse Large B-cell Lymphoma Masquerading As Lupus Pneumonitis in a Young Woman With Systemic Lupus Erythematosus: A Diagnostic Odyssey.",
"authors": "Anya OO, Mosallaei S, Wysham N",
"journal": "Cureus",
"date": "2026 May",
"doi": "10.7759/cureus.108460",
"url": "https://pubmed.ncbi.nlm.nih.gov/42261517/",
"pmid": "42261517"
},
{
"source": "PubMed",
"title": "Exploring non-autonomous protein homeostasis driven by glutamatergic neurons.",
"authors": "Hruby AJ, Coakley AJ, Dittus E et al.",
"journal": "microPublication biology",
"date": "2026",
"doi": "10.17912/micropub.biology.002119",
"url": "https://pubmed.ncbi.nlm.nih.gov/42257175/",
"pmid": "42257175"
},
{
"source": "PubMed",
"title": "Integration of Boruta algorithm and latent class analysis for risk factors of 30-day mortality in pediatric hemophagocytic lymphohistiocytosis based on peripheral blood indicators.",
"authors": "Wu C, Tian C, Liang H et al.",
"journal": "Frontiers in pediatrics",
"date": "2026",
"doi": "10.3389/fped.2026.1803651",
"url": "https://pubmed.ncbi.nlm.nih.gov/42255903/",
"pmid": "42255903"
}
],
"PF00013": [
{
"source": "PubMed",
"title": "Affective forecasting in people with autistic traits, social anhedonia, and subthreshold depression: a multi-method study.",
"authors": "Gao Y, Wang Y, Huang Y et al.",
"journal": "European archives of psychiatry and clinical neuroscience",
"date": "2026 Jun 9",
"doi": "10.1007/s00406-026-02281-3",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262563/",
"pmid": "42262563"
},
{
"source": "PubMed",
"title": "Post-adjuvant chemotherapy in ctDNA-positive patients with resected colorectal cancer: a randomized phase 3 trial.",
"authors": "Bando H, Watanabe J, Takahashi Y et al.",
"journal": "Nature medicine",
"date": "2026 Jun 8",
"doi": "10.1038/s41591-026-04428-0",
"url": "https://pubmed.ncbi.nlm.nih.gov/42260101/",
"pmid": "42260101"
},
{
"source": "PubMed",
"title": "First-line durvalumab in combination with trastuzumab deruxtecan in women with locally advanced unresectable or metastatic, hormone-receptor-negative, HER2-low breast cancer: multicenter, open-label, phase 1b/2 BEGONIA platform trial.",
"authors": "Schmid P, Im SA, Nowecki Z et al.",
"journal": "Nature cancer",
"date": "2026 Jun 8",
"doi": "10.1038/s43018-026-01181-8",
"url": "https://pubmed.ncbi.nlm.nih.gov/42259988/",
"pmid": "42259988"
}
],
"PF00014": [
{
"source": "PubMed",
"title": "Kunitz-type serine protease inhibitor rBmTI-6 as a potential therapeutic lead for lung adenocarcinoma.",
"authors": "Lima GB, Nencioni E, Thimoteo F et al.",
"journal": "Biochemical and biophysical research communications",
"date": "2026 Jun 11",
"doi": "10.1016/j.bbrc.2026.153748",
"url": "https://pubmed.ncbi.nlm.nih.gov/41966745/",
"pmid": "41966745"
},
{
"source": "PubMed",
"title": "Bannakunin: a dual-target Kunitz inhibitor bridging anticoagulation (FXa/XIIa) and anti-platelet (α2β1/P2Y12) pathways.",
"authors": "He M, He Y, Feng X et al.",
"journal": "Cellular & molecular biology letters",
"date": "2026 Feb 22",
"doi": "10.1186/s11658-026-00862-7",
"url": "https://pubmed.ncbi.nlm.nih.gov/41724941/",
"pmid": "41724941"
},
{
"source": "PubMed",
"title": "Development of an indirect ELISA and an immunochromatographic test method for early detection of Haemonchus contortus infection in sheep.",
"authors": "Chen X, Mou L, Deng M et al.",
"journal": "Veterinary parasitology",
"date": "2026 Apr",
"doi": "10.1016/j.vetpar.2026.110703",
"url": "https://pubmed.ncbi.nlm.nih.gov/41579519/",
"pmid": "41579519"
}
],
"PF00017": [
{
"source": "PubMed",
"title": "Protein tyrosine kinase-6 is post-translationally regulated by arginine methylation and ubiquitination.",
"authors": "Jiang L, Gilic MB, Vlajic K et al.",
"journal": "Cell death & disease",
"date": "2026 Jun 5",
"doi": "10.1038/s41419-026-08933-5",
"url": "https://pubmed.ncbi.nlm.nih.gov/42248824/",
"pmid": "42248824"
},
{
"source": "PubMed",
"title": "T-cell large granular lymphocyte leukaemia with pure red cell aplasia harbouring a somatic STAT3 P715L mutation.",
"authors": "Okamoto Y, Ishiyama K, Chonabayashi K et al.",
"journal": "BMJ case reports",
"date": "2026 Jun 5",
"doi": "10.1136/bcr-2025-268958",
"url": "https://pubmed.ncbi.nlm.nih.gov/42248594/",
"pmid": "42248594"
},
{
"source": "PubMed",
"title": "Breeding colored sweet corn for improved micronutrient content.",
"authors": "Niyorukundo J, Wehrbein C, Fischer A et al.",
"journal": "Frontiers in plant science",
"date": "2026",
"doi": "10.3389/fpls.2026.1813937",
"url": "https://pubmed.ncbi.nlm.nih.gov/42231883/",
"pmid": "42231883"
}
],
"PF00018": [
{
"source": "PubMed",
"title": "Cherubism, emphasizing diagnosis, therapeutic management strategies, and outcomes: a case series.",
"authors": "Aminishakib P, Hosseini SM, Mohammadi F et al.",
"journal": "Journal of medical case reports",
"date": "2026 May 30",
"doi": "10.1186/s13256-026-06184-8",
"url": "https://pubmed.ncbi.nlm.nih.gov/42218537/",
"pmid": "42218537"
},
{
"source": "PubMed",
"title": "Micranthin B alleviates metabolic dysfunction-associated steatohepatitis by targeting G3BP1 to improve stress granule-mediated endoplasmic reticulum stress.",
"authors": "Cheng Y, Wang J, He M et al.",
"journal": "Chinese journal of natural medicines",
"date": "2026 Jun",
"doi": "10.1016/S1875-5364(26)61189-2",
"url": "https://pubmed.ncbi.nlm.nih.gov/42215158/",
"pmid": "42215158"
},
{
"source": "PubMed",
"title": "Targeting the BMX in cancer: molecular mechanisms and emerging therapeutic strategies.",
"authors": "Zhang M, Chen J, Liang R et al.",
"journal": "Journal of enzyme inhibition and medicinal chemistry",
"date": "2026 Dec",
"doi": "10.1080/14756366.2026.2677282",
"url": "https://pubmed.ncbi.nlm.nih.gov/42212521/",
"pmid": "42212521"
}
],
"PF00019": [
{
"source": "PubMed",
"title": "Correction to \"The Evolutionally Conserved Activity of Dapper2 in Antagonizing TGF-β Signaling\".",
"authors": "",
"journal": "FASEB journal : official publication of the Federation of American Societies for Experimental Biology",
"date": "2026 Jun 30",
"doi": "10.1096/fj.202602785",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262648/",
"pmid": "42262648"
},
{
"source": "PubMed",
"title": "Cardio- and reno-protective effects of candesartan compared to lisinopril in a rat model of cardiorenal syndrome type 4: implication of oxidative stress and inflammation.",
"authors": "Eldesouky AMZ, Shehata MMA, Awwad IA et al.",
"journal": "Naunyn-Schmiedeberg's archives of pharmacology",
"date": "2026 Jun 9",
"doi": "10.1007/s00210-026-05542-z",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262532/",
"pmid": "42262532"
},
{
"source": "PubMed",
"title": "Multiplexed targeted mRNA profiling of alcohol-related liver disease reveals stage-specific dysregulation of signaling pathways.",
"authors": "Rasic D, Thiele M, Andersen P et al.",
"journal": "Molecular biology reports",
"date": "2026 Jun 9",
"doi": "10.1007/s11033-026-11955-z",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262404/",
"pmid": "42262404"
}
],
"PF00020": [
{
"source": "PubMed",
"title": "Evaluating the Anti-tumor and Anti-inflammatory Efficacy of Natural Compounds Targeting TNFRs Using Computational Methods.",
"authors": "Akkaya H, Özmaldar A",
"journal": "Medicinal chemistry (Shariqah (United Arab Emirates))",
"date": "2026 Apr 8",
"doi": "10.2174/0115734064466725260330210728",
"url": "https://pubmed.ncbi.nlm.nih.gov/41968740/",
"pmid": "41968740"
},
{
"source": "PubMed",
"title": "FAS gene expression, prognostic significance and molecular interactions in lung cancer.",
"authors": "Li K, Tan SC, Yang Z et al.",
"journal": "Frontiers in oncology",
"date": "2024",
"doi": "10.3389/fonc.2024.1473515",
"url": "https://pubmed.ncbi.nlm.nih.gov/39416461/",
"pmid": "39416461"
},
{
"source": "PubMed",
"title": "Reactive oxygen species activate the Drosophila TNF receptor Wengen for damage-induced regeneration.",
"authors": "Esteban-Collado J, Fernández-Mañas M, Fernández-Moreno M et al.",
"journal": "The EMBO journal",
"date": "2024 Sep",
"doi": "10.1038/s44318-024-00155-9",
"url": "https://pubmed.ncbi.nlm.nih.gov/39020149/",
"pmid": "39020149"
}
],
"PF00022": [
{
"source": "PubMed",
"title": "Human Metapneumovirus Infection Modifies Cytoskeletal Architecture and Growth Factors of Mesenchymal Stem Cells.",
"authors": "López-Mejia M, Jarquín-Yañez K, Ambrosio-Hernández JR et al.",
"journal": "Archives of medical research",
"date": "2026 Jun 9",
"doi": "10.1016/j.arcmed.2026.103445",
"url": "https://pubmed.ncbi.nlm.nih.gov/42263345/",
"pmid": "42263345"
},
{
"source": "PubMed",
"title": "PTPN22 regulates T cell synapse formation through PSTPIP1-dependent actin remodeling.",
"authors": "Joseph MD, Zaza C, Dalby OPL et al.",
"journal": "Science signaling",
"date": "2026 Jun 9",
"doi": "10.1126/scisignal.ady6063",
"url": "https://pubmed.ncbi.nlm.nih.gov/42263152/",
"pmid": "42263152"
},
{
"source": "PubMed",
"title": "Zasp52 in Drosophila melanogaster indirect flight muscles can serve as a model system to investigate the function of clinical variants causing myopathies.",
"authors": "Medina-Quintana J, Akbari-Gakieh B, Lalonde MP et al.",
"journal": "G3 (Bethesda, Md.)",
"date": "2026 Jun 9",
"doi": "10.1093/g3journal/jkag148",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262929/",
"pmid": "42262929"
}
],
"PF00023": [
{
"source": "PubMed",
"title": "Multifunctional theranostic nanoplatform based on HER2-specific liposomes loaded with IR783 for simultaneous PTT/PDT therapy and optical bioimaging.",
"authors": "Shramova EI, Frolova AY, Serova EV et al.",
"journal": "Nanomedicine : nanotechnology, biology, and medicine",
"date": "2026 May 31",
"doi": "10.1016/j.nano.2026.102964",
"url": "https://pubmed.ncbi.nlm.nih.gov/42225219/",
"pmid": "42225219"
},
{
"source": "PubMed",
"title": "Predator avoidance promotes inter-bacterial symbiosis with myxobacteria in polymicrobial communities.",
"authors": "Pokharel SK, Walsh S, Shehata N et al.",
"journal": "The ISME journal",
"date": "2026 Jun 1",
"doi": "10.1093/ismejo/wrag140",
"url": "https://pubmed.ncbi.nlm.nih.gov/42223530/",
"pmid": "42223530"
},
{
"source": "PubMed",
"title": "First complete genome of a fowlpox virus isolated in Bangladesh reveals Asian lineage and clade A1.",
"authors": "Mozumder A, Mia R, Das A et al.",
"journal": "Microbiology spectrum",
"date": "2026 May 29",
"doi": "10.1128/spectrum.03114-25",
"url": "https://pubmed.ncbi.nlm.nih.gov/42212661/",
"pmid": "42212661"
}
],
"PF00024": [
{
"source": "PubMed",
"title": "Plasma Membrane Redox Failure Links COVID-19 Metabolic Stress to Ferroptotic Neurodegeneration.",
"authors": "Lee J, Hwang H, Hyun DH",
"journal": "Antioxidants (Basel, Switzerland)",
"date": "2026 May 1",
"doi": "10.3390/antiox15050572",
"url": "https://pubmed.ncbi.nlm.nih.gov/42193193/",
"pmid": "42193193"
},
{
"source": "PubMed",
"title": "Development and Validation of a Quantitative LC-MS/MS Method for Measuring CYP4V2 Enzyme Activity via 12-Hydroxylauric Acid in rAAV-hCYP4V2 Gene Therapy Products.",
"authors": "Ren G, Qin X, Li Y et al.",
"journal": "Molecules (Basel, Switzerland)",
"date": "2026 Apr 24",
"doi": "10.3390/molecules31091417",
"url": "https://pubmed.ncbi.nlm.nih.gov/42123783/",
"pmid": "42123783"
},
{
"source": "PubMed",
"title": "Immune checkpoint blockade as an accelerator of adrenal aging: a testable model linking low-grade cortical inflammation to proteostasis failure, LDLR/SULT2A1 suppression, and reduced DHEA output.",
"authors": "Ding G, Xu Y, Guo T et al.",
"journal": "Journal for immunotherapy of cancer",
"date": "2026 Apr 27",
"doi": "10.1136/jitc-2025-014454",
"url": "https://pubmed.ncbi.nlm.nih.gov/42044975/",
"pmid": "42044975"
}
],
"PF00025": [
{
"source": "PubMed",
"title": "Newcastle disease virus exploits Golgi stress and Golgiphagy to promote ferroptosis.",
"authors": "Kan X, Yang M, Xie G et al.",
"journal": "Autophagy",
"date": "2026 Jun",
"doi": "10.1080/15548627.2026.2653010",
"url": "https://pubmed.ncbi.nlm.nih.gov/41961065/",
"pmid": "41961065"
},
{
"source": "PubMed",
"title": "A tandem recruitment site in the pseudokinase scaffold PEAK3 is subject to phosphorylation-dependent regulation and cancer-associated mutations.",
"authors": "Zhao T, Hou J, Hu C et al.",
"journal": "The Journal of biological chemistry",
"date": "2026 May",
"doi": "10.1016/j.jbc.2026.111365",
"url": "https://pubmed.ncbi.nlm.nih.gov/41819264/",
"pmid": "41819264"
},
{
"source": "PubMed",
"title": "Mycobacterial Sulfoglycolipid-1 is a novel regulator of host actin dynamics.",
"authors": "Dasgupta A, Mishra M, Kapoor S",
"journal": "Microbiological research",
"date": "2026 Jun",
"doi": "10.1016/j.micres.2026.128487",
"url": "https://pubmed.ncbi.nlm.nih.gov/41797124/",
"pmid": "41797124"
}
],
"PF00027": [
{
"source": "PubMed",
"title": "Helicobacter pylori infection activates the HIF-1α/ALS2/Rab5 signaling axis in gastric cells.",
"authors": "Herrera-Ramírez D, Sanhueza S, Tapia H et al.",
"journal": "Cell communication and signaling : CCS",
"date": "2026 Jun 8",
"doi": "10.1186/s12964-026-02978-x",
"url": "https://pubmed.ncbi.nlm.nih.gov/42260624/",
"pmid": "42260624"
},
{
"source": "PubMed",
"title": "High intrapancreatic fat deposition accelerates pancreatic ductal adenocarcinoma growth and metastasis with enrollment of FABP5 upregulation.",
"authors": "Hamamoto K, Shinoda S, Suenaga S et al.",
"journal": "Scientific reports",
"date": "2026 Jun 6",
"doi": "10.1038/s41598-026-56838-2",
"url": "https://pubmed.ncbi.nlm.nih.gov/42251134/",
"pmid": "42251134"
},
{
"source": "PubMed",
"title": "A genome-wide CRISPR screen defines host determinants of early Brucella infection in human macrophage-like cells.",
"authors": "Kim T, Scheeres EC, Fiebig A et al.",
"journal": "bioRxiv : the preprint server for biology",
"date": "2026 May 19",
"doi": "10.64898/2026.05.18.725962",
"url": "https://pubmed.ncbi.nlm.nih.gov/42239148/",
"pmid": "42239148"
}
],
"PF00028": [
{
"source": "PubMed",
"title": "Crystallography of Extremophile Proteins-Structural Comparisons of Psychrophilic and Hyperthermophilic Rubredoxins.",
"authors": "Doukov T, Turpin TF, George D et al.",
"journal": "Biomolecules",
"date": "2026 Apr 22",
"doi": "10.3390/biom16050623",
"url": "https://pubmed.ncbi.nlm.nih.gov/42193974/",
"pmid": "42193974"
},
{
"source": "PubMed",
"title": "H(2)-dependent reduction of rubredoxin by FrhAGB hydrogenase in Thermococcus onnurineus NA1.",
"authors": "Yang JI, Park HJ, An YJ et al.",
"journal": "Applied microbiology and biotechnology",
"date": "2026 May 11",
"doi": "10.1007/s00253-026-13863-5",
"url": "https://pubmed.ncbi.nlm.nih.gov/42115472/",
"pmid": "42115472"
},
{
"source": "PubMed",
"title": "Radiation damage in sub-Ångström resolution macromolecular crystallography: a low-dose study.",
"authors": "Bourenkov G, Paknia E, Flensburg C et al.",
"journal": "Acta crystallographica. Section D, Structural biology",
"date": "2026 May 1",
"doi": "10.1107/S205979832600269X",
"url": "https://pubmed.ncbi.nlm.nih.gov/41973447/",
"pmid": "41973447"
}
],
"PF00029": [
{
"source": "PubMed",
"title": "Calcium-modulated GJB6-GRHL3 positive feedback loop attenuates ESCC progression through AKT signaling pathway inhibition.",
"authors": "Ren J, Zhou Z, Dong Y et al.",
"journal": "NPJ precision oncology",
"date": "2026 Jun 4",
"doi": "10.1038/s41698-026-01530-x",
"url": "https://pubmed.ncbi.nlm.nih.gov/42243308/",
"pmid": "42243308"
},
{
"source": "PubMed",
"title": "Electroacupuncture regulates detrusor connexin 43 via protein kinase A pathway in a rat model of neurogenic bladder after spinal cord injury.",
"authors": "Liang R, Ai K, Zhuo Y et al.",
"journal": "The journal of spinal cord medicine",
"date": "2026 Jun 4",
"doi": "10.1080/10790268.2026.2644712",
"url": "https://pubmed.ncbi.nlm.nih.gov/42240616/",
"pmid": "42240616"
},
{
"source": "PubMed",
"title": "A mechanically compliant MnO(2)-MXene-GelMA cardiac patch for modulating the post-infarction microelectrical environment and alleviating oxidative stress.",
"authors": "Han M, Jin H, Zhang J et al.",
"journal": "RSC advances",
"date": "2026 May 28",
"doi": "10.1039/d6ra02208a",
"url": "https://pubmed.ncbi.nlm.nih.gov/42239601/",
"pmid": "42239601"
}
],
"PF00030": [
{
"source": "PubMed",
"title": "Evaluation and investigation of the cardiotoxicity of the potential anti-cholangiocarcinoma drug lanatoside C.",
"authors": "Ma YH, Huang CF, Ma HD et al.",
"journal": "Frontiers in toxicology",
"date": "2026",
"doi": "10.3389/ftox.2026.1783444",
"url": "https://pubmed.ncbi.nlm.nih.gov/42261393/",
"pmid": "42261393"
},
{
"source": "PubMed",
"title": "Yeast mitochondrial adaptation to freeze thaw stress depends on pre freeze fermentation state.",
"authors": "Xie D, Li X, Zheng J et al.",
"journal": "NPJ science of food",
"date": "2026 Jun 9",
"doi": "10.1038/s41538-026-00921-5",
"url": "https://pubmed.ncbi.nlm.nih.gov/42259840/",
"pmid": "42259840"
},
{
"source": "PubMed",
"title": "Enhanced anaerobic treatment of coal chemical wastewater using iron- and carbon-based materials: Efficiency optimization, response strategy, and enhancement mechanism.",
"authors": "Wang Z, Liu Y, Yang L et al.",
"journal": "Bioresource technology",
"date": "2026 Jun 7",
"doi": "10.1016/j.biortech.2026.135104",
"url": "https://pubmed.ncbi.nlm.nih.gov/42259453/",
"pmid": "42259453"
}
],
"PF00032": [
{
"source": "PubMed",
"title": "Mus (Pyromys) dumbara, a new endemic species of spiny mouse (Mammalia, Rodentia, Muridae) from Sri Lanka.",
"authors": "Boyagoda SH, Meegaskumbura M, Manamendra-Arachchi K",
"journal": "ZooKeys",
"date": "2026",
"doi": "10.3897/zookeys.1280.163907",
"url": "https://pubmed.ncbi.nlm.nih.gov/42245981/",
"pmid": "42245981"
},
{
"source": "PubMed",
"title": "NETosis associates with human TB lung tissue destruction and disease pathogenesis.",
"authors": "Fisher KL, Mpotje T, Nargan K et al.",
"journal": "EMBO molecular medicine",
"date": "2026 Jun 2",
"doi": "10.1038/s44321-026-00435-3",
"url": "https://pubmed.ncbi.nlm.nih.gov/42230989/",
"pmid": "42230989"
},
{
"source": "PubMed",
"title": "The amino terminus of PetD is essential for cytochrome b(6) f function and the negative feedback control of STT7 kinase.",
"authors": "Zaeem A, Milrad Y, Bütfering S et al.",
"journal": "Nature plants",
"date": "2026 Jun 2",
"doi": "10.1038/s41477-026-02310-y",
"url": "https://pubmed.ncbi.nlm.nih.gov/42230816/",
"pmid": "42230816"
}
],
"PF00034": [
{
"source": "PubMed",
"title": "Redesign of Calmodulin for Genetically Encoded Zn(2+) Sensing with High Dynamic Range.",
"authors": "Liu C, Hu Q, Jin L et al.",
"journal": "Chemical & biomedical imaging",
"date": "2026 May 25",
"doi": "10.1021/cbmi.5c00154",
"url": "https://pubmed.ncbi.nlm.nih.gov/42222571/",
"pmid": "42222571"
},
{
"source": "PubMed",
"title": "STIM1 GoF Mutants: Genotype-Phenotype Relationships Across the Stormorken/TAM/YPS Spectrum.",
"authors": "Atzgerstorfer L, Prantl M, Waldhauser A et al.",
"journal": "Cells",
"date": "2026 May 18",
"doi": "10.3390/cells15100926",
"url": "https://pubmed.ncbi.nlm.nih.gov/42193934/",
"pmid": "42193934"
},
{
"source": "PubMed",
"title": "Force-Induced Ankle Opening Reveals Mechanical Stabilization of the Ankle of Human β-Cardiac Myosin.",
"authors": "Deopa SPS, Bjorkman KK, Edwards DT et al.",
"journal": "ACS nano",
"date": "2026 Jun 9",
"doi": "10.1021/acsnano.5c22720",
"url": "https://pubmed.ncbi.nlm.nih.gov/42166798/",
"pmid": "42166798"
}
],
"PF00036": [
{
"source": "PubMed",
"title": "The Neuronal Calcium Sensor protein Acrocalcin: a potential target of calmodulin regulation during development in the coral Acropora millepora.",
"authors": "Reyes-Bermudez A, Miller DJ, Sprungala S",
"journal": "PloS one",
"date": "2012",
"doi": "10.1371/journal.pone.0051689",
"url": "https://pubmed.ncbi.nlm.nih.gov/23284743/",
"pmid": "23284743"
},
{
"source": "PubMed",
"title": "Genes for the ribosomal S4 protein encoded in higher plant mitochondria are transcribed, edited, and translated.",
"authors": "Handa H, Kubo N, Kadowaki K",
"journal": "Molecular & general genetics : MGG",
"date": "1998 May",
"doi": "10.1007/s004380050723",
"url": "https://pubmed.ncbi.nlm.nih.gov/9645425/",
"pmid": "9645425"
},
{
"source": "PubMed",
"title": "Genetic analysis of growth inhibition by GAL4-L kappa B-alpha in Saccharomyces cerevisiae.",
"authors": "Morin PJ, Downs JA, Snodgrass AM et al.",
"journal": "Cell growth & differentiation : the molecular biology journal of the American Association for Cancer Research",
"date": "1995 Jul",
"doi": "",
"url": "https://pubmed.ncbi.nlm.nih.gov/7547500/",
"pmid": "7547500"
}
],
"PF00038": [
{
"source": "PubMed",
"title": "CNN-BLSTM based deep learning framework for eukaryotic kinome classification: An explainability based approach.",
"authors": "John C, Sahoo J, Sajan IK et al.",
"journal": "Computational biology and chemistry",
"date": "2024 Oct",
"doi": "10.1016/j.compbiolchem.2024.108169",
"url": "https://pubmed.ncbi.nlm.nih.gov/39137619/",
"pmid": "39137619"
},
{
"source": "PubMed",
"title": "An NMR portrait of functional and dysfunctional allosteric cooperativity in cAMP-dependent protein kinase A.",
"authors": "Olivieri C, Walker C, Veliparambil Subrahmanian M et al.",
"journal": "FEBS letters",
"date": "2023 Apr",
"doi": "10.1002/1873-3468.14610",
"url": "https://pubmed.ncbi.nlm.nih.gov/36892429/",
"pmid": "36892429"
},
{
"source": "PubMed",
"title": "6-Bromoindirubin-3'-oxime derivatives are highly active colistin adjuvants against Klebsiella pneumoniae.",
"authors": "Li H, Mattingly AE, Smith RD et al.",
"journal": "RSC medicinal chemistry",
"date": "2023 Feb 22",
"doi": "10.1039/d2md00370h",
"url": "https://pubmed.ncbi.nlm.nih.gov/36846374/",
"pmid": "36846374"
}
],
"PF00039": [
{
"source": "PubMed",
"title": "Molecular mimicry between Mycobacterium leprae proteins (50S ribosomal protein L2 and Lysyl-tRNA synthetase) and myelin basic protein: a possible mechanism of nerve damage in leprosy.",
"authors": "Singh I, Yadav AR, Mohanty KK et al.",
"journal": "Microbes and infection",
"date": "2015 Apr",
"doi": "10.1016/j.micinf.2014.12.015",
"url": "https://pubmed.ncbi.nlm.nih.gov/25576930/",
"pmid": "25576930"
},
{
"source": "PubMed",
"title": "Suppression of the ribosomal L2 gene reveals a novel mechanism for stress adaptation in soybean.",
"authors": "Ludwig A, Tenhaken R",
"journal": "Planta",
"date": "2001 Apr",
"doi": "10.1007/s004250000427",
"url": "https://pubmed.ncbi.nlm.nih.gov/11346953/",
"pmid": "11346953"
},
{
"source": "PubMed",
"title": "Characterization of the synovial T cell response to various recombinant Yersinia antigens in Yersinia enterocolitica-triggered reactive arthritis. Heat-shock protein 60 drives a major immune response.",
"authors": "Mertz AK, Ugrinovic S, Lauster R et al.",
"journal": "Arthritis and rheumatism",
"date": "1998 Feb",
"doi": "10.1002/1529-0131(199802)41:2<315::AID-ART16>3.0.CO;2-#",
"url": "https://pubmed.ncbi.nlm.nih.gov/9485090/",
"pmid": "9485090"
}
],
"PF00041": [
{
"source": "PubMed",
"title": "Domain-specific functions of LRIT3 in synaptic assembly and retinal signal transmission.",
"authors": "Hasan N, Gregg RG",
"journal": "The Journal of biological chemistry",
"date": "2026 Apr 27",
"doi": "10.1016/j.jbc.2026.113097",
"url": "https://pubmed.ncbi.nlm.nih.gov/42055330/",
"pmid": "42055330"
},
{
"source": "PubMed",
"title": "Intracellular Delivery of Peptides and Proteins with an Engineered Membrane Translocation Domain.",
"authors": "Bhat P, Salim H, Ritchey JL et al.",
"journal": "bioRxiv : the preprint server for biology",
"date": "2026 Feb 16",
"doi": "10.64898/2026.02.13.705776",
"url": "https://pubmed.ncbi.nlm.nih.gov/41756926/",
"pmid": "41756926"
},
{
"source": "PubMed",
"title": "Combinatorial Synthesis of Protein-Polymer Conjugates by Postpolymerization Modification of Poly(pentafluorophenyl acrylate)s.",
"authors": "Kish EW, Lee TM, Ziemba AM et al.",
"journal": "ACS omega",
"date": "2026 Jan 27",
"doi": "10.1021/acsomega.5c07215",
"url": "https://pubmed.ncbi.nlm.nih.gov/41626512/",
"pmid": "41626512"
}
],
"PF00042": [
{
"source": "PubMed",
"title": "Mutation Spectrum of Hemoglobinopathies in Tunisia.",
"authors": "Moumni I, Khalfaoui K, Chebbi M et al.",
"journal": "Human mutation",
"date": "2026",
"doi": "10.1155/humu/6126372",
"url": "https://pubmed.ncbi.nlm.nih.gov/42253506/",
"pmid": "42253506"
},
{
"source": "PubMed",
"title": "The Systematic Study of Spatially Conserved Salt Bridges in Protein.",
"authors": "Peng Z, Zhou Z, Xiangxu G et al.",
"journal": "Journal of chemical information and modeling",
"date": "2026 Jun 8",
"doi": "10.1021/acs.jcim.6c00599",
"url": "https://pubmed.ncbi.nlm.nih.gov/42253053/",
"pmid": "42253053"
},
{
"source": "PubMed",
"title": "Evolution and plasticity of the control of breathing in high-altitude natives: Insights from deer mice.",
"authors": "Ivy CM, Scott GR",
"journal": "Respiratory physiology & neurobiology",
"date": "2026 Jun 4",
"doi": "10.1016/j.resp.2026.104606",
"url": "https://pubmed.ncbi.nlm.nih.gov/42248493/",
"pmid": "42248493"
}
],
"PF00044": [
{
"source": "PubMed",
"title": "Genome-wide prediction of secretory proteins in Ceratocystis paradoxa and expression analysis of effectors during early infection.",
"authors": "Meng X, Lin Z, Yu F et al.",
"journal": "BMC microbiology",
"date": "2026 May 18",
"doi": "10.1186/s12866-026-05166-6",
"url": "https://pubmed.ncbi.nlm.nih.gov/42151787/",
"pmid": "42151787"
},
{
"source": "PubMed",
"title": "An Automation Platform for the Chemoenzymatic Synthesis of Complex Sulfated and Branched Glycans.",
"authors": "Chakraborty S, Minder K, Prudden AR et al.",
"journal": "Journal of the American Chemical Society",
"date": "2026 Mar 18",
"doi": "10.1021/jacs.5c22181",
"url": "https://pubmed.ncbi.nlm.nih.gov/41789840/",
"pmid": "41789840"
},
{
"source": "PubMed",
"title": "Integrated multi-omics reveals distinct maternal and neonatal gut microbial and metabolic signatures associated with small for gestational age status.",
"authors": "Bian X, Xu H, Li J et al.",
"journal": "Frontiers in microbiology",
"date": "2025",
"doi": "10.3389/fmicb.2025.1668148",
"url": "https://pubmed.ncbi.nlm.nih.gov/41383742/",
"pmid": "41383742"
}
],
"PF00045": [
{
"source": "PubMed",
"title": "N-acyl-homoserine lactone-based quorum sensing beyond canonical lineages: insights from Actinomycetota.",
"authors": "Handel CR, Prescott RD, Lo CC et al.",
"journal": "Frontiers in microbiology",
"date": "2026",
"doi": "10.3389/fmicb.2026.1738013",
"url": "https://pubmed.ncbi.nlm.nih.gov/42088267/",
"pmid": "42088267"
},
{
"source": "PubMed",
"title": "In Vitro Characterization of an Rgg-Family Regulator from Fish-Derived Streptococcus parauberis and Its Modulation by Cyclosporin A.",
"authors": "Tu C, He L, Lin X et al.",
"journal": "Microorganisms",
"date": "2026 Apr 9",
"doi": "10.3390/microorganisms14040849",
"url": "https://pubmed.ncbi.nlm.nih.gov/42075245/",
"pmid": "42075245"
},
{
"source": "PubMed",
"title": "Structural Basis of a Novel Heme Binding Bacterial One-Component Switch.",
"authors": "Siclari JJ, Forson M, Roeder C et al.",
"journal": "bioRxiv : the preprint server for biology",
"date": "2026 Mar 15",
"doi": "10.64898/2026.03.15.711900",
"url": "https://pubmed.ncbi.nlm.nih.gov/41959290/",
"pmid": "41959290"
}
],
"PF00046": [
{
"source": "PubMed",
"title": "Integrated bioinformatics and machine learning for constructing a diagnostic model of major depressive disorder leveraging shared signatures from hemodialysis: A cross-sectional study.",
"authors": "Zheng M, Huang P, Wu R et al.",
"journal": "Medicine",
"date": "2026 Jun 5",
"doi": "10.1097/MD.0000000000049113",
"url": "https://pubmed.ncbi.nlm.nih.gov/42260834/",
"pmid": "42260834"
},
{
"source": "PubMed",
"title": "Coastal environmental quality assessment using a multi-biomarker pollution index in the sea urchin Sphaerechinus granularis (Lamarck, 1816) from the Gulf of Annaba (Mediterranean Sea), Algeria.",
"authors": "Belhaoues S, Amri S, Benhalima L et al.",
"journal": "Environmental research",
"date": "2026 Jun 5",
"doi": "10.1016/j.envres.2026.124974",
"url": "https://pubmed.ncbi.nlm.nih.gov/42250848/",
"pmid": "42250848"
},
{
"source": "PubMed",
"title": "Microplastics alter the toxicity of benzo[a]pyrene in a mangrove oyster: An integrated biomarker approach.",
"authors": "Giannetto RVG, Barbosa Dos Santos J, Choueri RB et al.",
"journal": "Marine environmental research",
"date": "2026 Jun 3",
"doi": "10.1016/j.marenvres.2026.108166",
"url": "https://pubmed.ncbi.nlm.nih.gov/42250519/",
"pmid": "42250519"
}
],
"PF00047": [
{
"source": "PubMed",
"title": "Clinical and Pathological Faces of IgM Deposition in Children with Idiopathic Nephrotic Syndrome: A Single Center Experience.",
"authors": "Mutlubaş F, Erfidan G, Soyaltın E et al.",
"journal": "Saudi journal of kidney diseases and transplantation : an official publication of the Saudi Center for Organ Transplantation, Saudi Arabia",
"date": "2026 Jun 6",
"doi": "10.4103/sjkdt.sjkdt_512_21",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262830/",
"pmid": "42262830"
},
{
"source": "PubMed",
"title": "IgY technology (egg yolk antibodies) in respiratory medicine: applications and future prospects.",
"authors": "Sivasubramaniam P, Alagarsamy K, Michael MM et al.",
"journal": "Archives of microbiology",
"date": "2026 Jun 9",
"doi": "10.1007/s00203-026-05000-7",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262426/",
"pmid": "42262426"
},
{
"source": "PubMed",
"title": "Clinical features, anti-neutrophil cytoplasmic antibody (ANCA) status, and human leucocyte antigen (HLA) phenotypes of patients diagnosed with both rheumatoid arthritis and granulomatosis with polyangiitis: a case series of six patients with predominant myeloperoxidase (MPO)-ANCA positivity and HLA-DR4/DQ8/DPB1*04:01 phenotype.",
"authors": "Abrahamsen O, Faurschou M, Bruunsgaard H et al.",
"journal": "Scandinavian journal of rheumatology",
"date": "2026 Jun 9",
"doi": "10.1080/03009742.2026.2666986",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262181/",
"pmid": "42262181"
}
],
"PF00048": [
{
"source": "PubMed",
"title": "Helicobacter pylori infection activates the HIF-1α/ALS2/Rab5 signaling axis in gastric cells.",
"authors": "Herrera-Ramírez D, Sanhueza S, Tapia H et al.",
"journal": "Cell communication and signaling : CCS",
"date": "2026 Jun 8",
"doi": "10.1186/s12964-026-02978-x",
"url": "https://pubmed.ncbi.nlm.nih.gov/42260624/",
"pmid": "42260624"
},
{
"source": "PubMed",
"title": "High intrapancreatic fat deposition accelerates pancreatic ductal adenocarcinoma growth and metastasis with enrollment of FABP5 upregulation.",
"authors": "Hamamoto K, Shinoda S, Suenaga S et al.",
"journal": "Scientific reports",
"date": "2026 Jun 6",
"doi": "10.1038/s41598-026-56838-2",
"url": "https://pubmed.ncbi.nlm.nih.gov/42251134/",
"pmid": "42251134"
},
{
"source": "PubMed",
"title": "A genome-wide CRISPR screen defines host determinants of early Brucella infection in human macrophage-like cells.",
"authors": "Kim T, Scheeres EC, Fiebig A et al.",
"journal": "bioRxiv : the preprint server for biology",
"date": "2026 May 19",
"doi": "10.64898/2026.05.18.725962",
"url": "https://pubmed.ncbi.nlm.nih.gov/42239148/",
"pmid": "42239148"
}
],
"PF00049": [
{
"source": "PubMed",
"title": "Dukan diet, ketogenic diet and low glycemic index diet: Biochemical basis and metabolic consequences.",
"authors": "Muszalska A, Gaj Z, Roczyński B et al.",
"journal": "Nutrition (Burbank, Los Angeles County, Calif.)",
"date": "2026 May 12",
"doi": "10.1016/j.nut.2026.113289",
"url": "https://pubmed.ncbi.nlm.nih.gov/42263343/",
"pmid": "42263343"
},
{
"source": "PubMed",
"title": "Efficacy of insulin application in skin wound healing: a systematic review and meta-analysis.",
"authors": "Chen H, Li Y, Gong X et al.",
"journal": "Journal of wound care",
"date": "2026 Jun",
"doi": "10.12968/jowc.2022.0186",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262987/",
"pmid": "42262987"
},
{
"source": "PubMed",
"title": "p21-senescent cells drive pancreatic islet dysfunction through targetable paracrine signaling in type 2 diabetes.",
"authors": "Iwasaki K, Carapeto P, Abarca C et al.",
"journal": "JCI insight",
"date": "2026 Jun 9",
"doi": "10.1172/jci.insight.197310",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262869/",
"pmid": "42262869"
}
],
"PF00050": [
{
"source": "PubMed",
"title": "Development-related gene expression disruption in the human midcingulate cortex in Huntington's disease.",
"authors": "Scheepers S, Ferguson MW, Palpagama TH et al.",
"journal": "Journal of Huntington's disease",
"date": "2026 May 4",
"doi": "10.1177/18796397261446165",
"url": "https://pubmed.ncbi.nlm.nih.gov/42080424/",
"pmid": "42080424"
},
{
"source": "PubMed",
"title": "Multi-omics analysis reveals the response mechanism of Pichia kudriavzevii to high-concentration lactic acid stress.",
"authors": "Li W, Wang N, Zheng J et al.",
"journal": "AMB Express",
"date": "2026 Mar 29",
"doi": "10.1186/s13568-026-02046-0",
"url": "https://pubmed.ncbi.nlm.nih.gov/41904764/",
"pmid": "41904764"
},
{
"source": "PubMed",
"title": "Challenges to Homeopathy in View of the Framing of Modern Medicine: Towards a Proper Understanding of 'Homeo-patho-logy'.",
"authors": "Schmidt JM",
"journal": "Homeopathy : the journal of the Faculty of Homeopathy",
"date": "2026 Feb 25",
"doi": "10.1055/a-2762-4038",
"url": "https://pubmed.ncbi.nlm.nih.gov/41740956/",
"pmid": "41740956"
}
],
"PF00052": [
{
"source": "PubMed",
"title": "Lack of Oncomodulin Increases ATP-Dependent Calcium Signaling and Susceptibility to Noise in Adult Mice.",
"authors": "Yang Y, Jeng JY, Murtha K et al.",
"journal": "eNeuro",
"date": "2026 Jun",
"doi": "10.1523/ENEURO.0142-26.2026",
"url": "https://pubmed.ncbi.nlm.nih.gov/42161597/",
"pmid": "42161597"
},
{
"source": "PubMed",
"title": "A calcium-binding protein-sigV regulatory circuit modulates stress adaptation and persistence in Caulobacter vibrioides.",
"authors": "Dos Santos EL, Simão RCG",
"journal": "Archives of microbiology",
"date": "2026 May 13",
"doi": "10.1007/s00203-026-04894-7",
"url": "https://pubmed.ncbi.nlm.nih.gov/42126607/",
"pmid": "42126607"
},
{
"source": "PubMed",
"title": "Calcium-dependent protein kinases play a key role in plant defense against pathogens and pests.",
"authors": "Wang Y, Gao YQ, Siriwan W et al.",
"journal": "Plant science : an international journal of experimental plant biology",
"date": "2026 Sep",
"doi": "10.1016/j.plantsci.2026.113207",
"url": "https://pubmed.ncbi.nlm.nih.gov/42114759/",
"pmid": "42114759"
}
],
"PF00055": [
{
"source": "PubMed",
"title": "Cholera-toxin-induced disease generates epithelial-cell-derived L-lactate that promotes Vibrio cholerae growth in the small intestine.",
"authors": "Gutierrez MP, Hall JL, Masson HLP et al.",
"journal": "Cell reports",
"date": "2026 Jun 8",
"doi": "10.1016/j.celrep.2026.117509",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262925/",
"pmid": "42262925"
},
{
"source": "PubMed",
"title": "RT-qPCR-based transcriptional profiling of the effects of tarantula logoplex on inflammatory, oxidative stress and apoptosis pathways in remote organs in experimental lower extremity ischemia-reperfusion injury.",
"authors": "Öztürk M, Öztürk Y, Altuğ N et al.",
"journal": "Molecular biology reports",
"date": "2026 Jun 9",
"doi": "10.1007/s11033-026-11958-w",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262657/",
"pmid": "42262657"
},
{
"source": "PubMed",
"title": "Clinical and laboratory predictors of diagnostic efficacy of (18)F-FDG PET/CT in rheumatology: a retrospective tertiary-centre study.",
"authors": "Kılıç Ö, Kaya MN, Tezcan D et al.",
"journal": "Rheumatology international",
"date": "2026 Jun 9",
"doi": "10.1007/s00296-026-06192-3",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262614/",
"pmid": "42262614"
}
],
"PF00059": [
{
"source": "PubMed",
"title": "Label-Free and In Situ Glycophenotyping Using a Glycocalyx-Mimetic Electrochemical Transducer.",
"authors": "Coimbra Pimenta T, Xavier Mendes A, Rath RJ et al.",
"journal": "ACS applied materials & interfaces",
"date": "2026 Jun 9",
"doi": "10.1021/acsami.6c04290",
"url": "https://pubmed.ncbi.nlm.nih.gov/42261736/",
"pmid": "42261736"
},
{
"source": "PubMed",
"title": "A long-distance signaling loop promotes soybean nodulation and productivity.",
"authors": "Duan J, Wang J, Guo R et al.",
"journal": "Proceedings of the National Academy of Sciences of the United States of America",
"date": "2026 Jun 16",
"doi": "10.1073/pnas.2609325123",
"url": "https://pubmed.ncbi.nlm.nih.gov/42258715/",
"pmid": "42258715"
},
{
"source": "PubMed",
"title": "Neuroblastoma cell growth and invasiveness is modulated by the activity of N-acetylglucosaminyltransferase-III.",
"authors": "Burch AP, Hall MK, Schwalbe RA",
"journal": "PloS one",
"date": "2026",
"doi": "10.1371/journal.pone.0350822",
"url": "https://pubmed.ncbi.nlm.nih.gov/42258445/",
"pmid": "42258445"
}
],
"PF00061": [
{
"source": "PubMed",
"title": "Flow-enhanced electrochemical aptamer sensor for nanomolar detection of NGAL in blood plasma for kidney injury diagnosis.",
"authors": "Chandran A, Gordon R, Fallowfield JA et al.",
"journal": "Biosensors & bioelectronics",
"date": "2026 Jun 5",
"doi": "10.1016/j.bios.2026.118906",
"url": "https://pubmed.ncbi.nlm.nih.gov/42259087/",
"pmid": "42259087"
},
{
"source": "PubMed",
"title": "Associations of Heat Exposure with Acute Kidney Injury and Kidney Function in Mexican Agricultural Workers.",
"authors": "Wagoner RS, López-Gálvez NI, Canales RA et al.",
"journal": "Journal of agromedicine",
"date": "2026 Jun 8",
"doi": "10.1080/1059924X.2026.2679282",
"url": "https://pubmed.ncbi.nlm.nih.gov/42252892/",
"pmid": "42252892"
},
{
"source": "PubMed",
"title": "Creatinine-normalized urinary lipocalin-2 in children with obesity: association with insulin resistance in a cross-sectional study.",
"authors": "Celik A, Celik BK",
"journal": "Scientific reports",
"date": "2026 Jun 6",
"doi": "10.1038/s41598-026-55419-7",
"url": "https://pubmed.ncbi.nlm.nih.gov/42251124/",
"pmid": "42251124"
}
],
"PF00064": [
{
"source": "PubMed",
"title": "Effective influenza treatment: a comprehensive review of challenges and advances.",
"authors": "Pomeshikova K, Poromov A, Schmidtke M et al.",
"journal": "Microbiology and molecular biology reviews : MMBR",
"date": "2026 Jun 9",
"doi": "10.1128/mmbr.00441-25",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262144/",
"pmid": "42262144"
},
{
"source": "PubMed",
"title": "Channel Dysfunction as the Basis for Comorbidities in Multiple Sclerosis and Depression.",
"authors": "Rychlik N, Jüngling K, Meuth SG et al.",
"journal": "Archiv der Pharmazie",
"date": "2026 Jun",
"doi": "10.1002/ardp.70273",
"url": "https://pubmed.ncbi.nlm.nih.gov/42261628/",
"pmid": "42261628"
},
{
"source": "PubMed",
"title": "Resveratrol Ameliorates Hypertrophic Scar Formation by Regulating ASIC3-Mediated Fibroblast-Macrophage Crosstalk: A Mechanistic Study.",
"authors": "Sun Z, Huang S, Lu X et al.",
"journal": "Phytotherapy research : PTR",
"date": "2026 Jun 8",
"doi": "10.1002/ptr.70397",
"url": "https://pubmed.ncbi.nlm.nih.gov/42260901/",
"pmid": "42260901"
}
],
"PF00067": [
{
"source": "PubMed",
"title": "CYP51C Y319H and H349R substitutions cannot confer azole resistance in Aspergillus flavus NRRL 3357-5.",
"authors": "Zhou YB, Grum-Grzhimaylo AA, Meijer M et al.",
"journal": "Microbiology spectrum",
"date": "2026 Jun 9",
"doi": "10.1128/spectrum.00425-26",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262093/",
"pmid": "42262093"
},
{
"source": "PubMed",
"title": "CYP2E1 and CYP2D6 in Anti-Tuberculosis Drug-Induced Liver Injury: Mechanisms, Epigenetic Regulation, and Translational Implications.",
"authors": "Prakongsup P, Udomsinprasert W",
"journal": "Clinical and translational science",
"date": "2026 Jun",
"doi": "10.1111/cts.70628",
"url": "https://pubmed.ncbi.nlm.nih.gov/42259768/",
"pmid": "42259768"
},
{
"source": "PubMed",
"title": "Prevalence of CYP2C19 polymorphisms in medically and surgically managed patients with GERD.",
"authors": "Naser AR, Pather K, Mobley EM et al.",
"journal": "Surgery",
"date": "2026 May 5",
"doi": "10.1016/j.surg.2026.110296",
"url": "https://pubmed.ncbi.nlm.nih.gov/42259674/",
"pmid": "42259674"
}
],
"PF00068": [
{
"source": "PubMed",
"title": "Evidence for the connectivity of antibiotic resistance genes between seamount and coastal environments.",
"authors": "Guo N, Chen J, Lei Z et al.",
"journal": "Ecotoxicology and environmental safety",
"date": "2026 Jul 1",
"doi": "10.1016/j.ecoenv.2026.120325",
"url": "https://pubmed.ncbi.nlm.nih.gov/42214309/",
"pmid": "42214309"
},
{
"source": "PubMed",
"title": "Elucidating the Bell-Shaped Dependence of Protein Translation Activity on EF-Tu Concentration in a Reconstituted Cell-Free System Using a Mechanistic Model.",
"authors": "Ban S, Himeoka Y, Kagawa A et al.",
"journal": "ACS synthetic biology",
"date": "2026 May 28",
"doi": "10.1021/acssynbio.6c00333",
"url": "https://pubmed.ncbi.nlm.nih.gov/42206977/",
"pmid": "42206977"
},
{
"source": "PubMed",
"title": "Detection and characterization of protein methylation in bacteriophages and their host, Cellulophaga baltica, during infection.",
"authors": "Stai AJ, Howard-Varona C, Urvoy M et al.",
"journal": "mSystems",
"date": "2026 May 18",
"doi": "10.1128/msystems.00012-26",
"url": "https://pubmed.ncbi.nlm.nih.gov/42148748/",
"pmid": "42148748"
}
],
"PF00069": [
{
"source": "PubMed",
"title": "Identification of the BvCDPK gene family in sugar beet (Beta vulgaris L.) at a genome-wide level and analysis of the function of BvCDPK8 under salt conditions.",
"authors": "Nan Y, Li M, Cheng B et al.",
"journal": "Physiology and molecular biology of plants : an international journal of functional plant biology",
"date": "2026 May",
"doi": "10.1007/s12298-026-01759-7",
"url": "https://pubmed.ncbi.nlm.nih.gov/42222726/",
"pmid": "42222726"
},
{
"source": "PubMed",
"title": "ATM-kinase deficiency triggers early multi-compartment remodeling of the cerebellar microenvironment.",
"authors": "Montarolo F, Berrino L, Rominto AM et al.",
"journal": "Acta neuropathologica communications",
"date": "2026 May 29",
"doi": "10.1186/s40478-026-02332-9",
"url": "https://pubmed.ncbi.nlm.nih.gov/42216076/",
"pmid": "42216076"
},
{
"source": "PubMed",
"title": "Computational Predictions and Evolutionary Analysis of LrK10 Kinase-Related Putative PSTOL1 Gene Homeologs in Wheat and Orthologs of Its Wild Relatives.",
"authors": "Thiyagarajan K, Yogendra K, Saint Pierre C et al.",
"journal": "International journal of molecular sciences",
"date": "2026 May 18",
"doi": "10.3390/ijms27104513",
"url": "https://pubmed.ncbi.nlm.nih.gov/42196492/",
"pmid": "42196492"
}
],
"PF00240": [
{
"source": "PubMed",
"title": "Mechanisms of ubiquitylation of the mitotic regulatory protein Cdc20.",
"authors": "Sitry-Shevah D, Miniowitz-Shemtov S, Liburkin Dan T et al.",
"journal": "Proceedings of the National Academy of Sciences of the United States of America",
"date": "2026 Jun 16",
"doi": "10.1073/pnas.2612003123",
"url": "https://pubmed.ncbi.nlm.nih.gov/42263137/",
"pmid": "42263137"
},
{
"source": "PubMed",
"title": "RNF126 is a peroxisomal fate switch enabling redifferentiation therapy in hepatocellular carcinoma.",
"authors": "Su Q, Yang Y, Ren J et al.",
"journal": "Proceedings of the National Academy of Sciences of the United States of America",
"date": "2026 Jun 16",
"doi": "10.1073/pnas.2535777123",
"url": "https://pubmed.ncbi.nlm.nih.gov/42263131/",
"pmid": "42263131"
},
{
"source": "PubMed",
"title": "Opposing roles of deubiquitinases in the regulation of IRF7 transcriptional activity.",
"authors": "Fan S, Sengupta P, Chawla K et al.",
"journal": "mBio",
"date": "2026 Jun 9",
"doi": "10.1128/mbio.02820-25",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262137/",
"pmid": "42262137"
}
],
"PF00870": [
{
"source": "PubMed",
"title": "GDF15 participates in epithelial cell senescence in radiation-induced lung injury through the ERK1/2-p16 signaling pathway.",
"authors": "Liu J, Lv D, Wang H et al.",
"journal": "PloS one",
"date": "2026",
"doi": "10.1371/journal.pone.0350042",
"url": "https://pubmed.ncbi.nlm.nih.gov/42263110/",
"pmid": "42263110"
},
{
"source": "PubMed",
"title": "Expression of Concern: ING5 is phosphorylated by CDK2 and controls cell proliferation independently of p53.",
"authors": "PLOS One Editors",
"journal": "PloS one",
"date": "2026",
"doi": "10.1371/journal.pone.0351194",
"url": "https://pubmed.ncbi.nlm.nih.gov/42263068/",
"pmid": "42263068"
},
{
"source": "PubMed",
"title": "The regulatory roles of non-coding RNAs in aerobic glycolysis and therapeutic potential in pancreatic ductal adenocarcinoma.",
"authors": "Fan Y, Tang X, Li S et al.",
"journal": "Annals of medicine",
"date": "2026 Dec",
"doi": "10.1080/07853890.2026.2672785",
"url": "https://pubmed.ncbi.nlm.nih.gov/42262932/",
"pmid": "42262932"
}
],
"PF13606": [
{
"source": "PubMed",
"title": "Multifunctional theranostic nanoplatform based on HER2-specific liposomes loaded with IR783 for simultaneous PTT/PDT therapy and optical bioimaging.",
"authors": "Shramova EI, Frolova AY, Serova EV et al.",
"journal": "Nanomedicine : nanotechnology, biology, and medicine",
"date": "2026 May 31",
"doi": "10.1016/j.nano.2026.102964",
"url": "https://pubmed.ncbi.nlm.nih.gov/42225219/",
"pmid": "42225219"
},
{
"source": "PubMed",
"title": "Predator avoidance promotes inter-bacterial symbiosis with myxobacteria in polymicrobial communities.",
"authors": "Pokharel SK, Walsh S, Shehata N et al.",
"journal": "The ISME journal",
"date": "2026 Jun 1",
"doi": "10.1093/ismejo/wrag140",
"url": "https://pubmed.ncbi.nlm.nih.gov/42223530/",
"pmid": "42223530"
},
{
"source": "PubMed",
"title": "First complete genome of a fowlpox virus isolated in Bangladesh reveals Asian lineage and clade A1.",
"authors": "Mozumder A, Mia R, Das A et al.",
"journal": "Microbiology spectrum",
"date": "2026 May 29",
"doi": "10.1128/spectrum.03114-25",
"url": "https://pubmed.ncbi.nlm.nih.gov/42212661/",
"pmid": "42212661"
}
],
"PF08518": [
{
"source": "PubMed",
"title": "Spitzenkörper assembly mechanisms reveal conserved features of fungal and metazoan polarity scaffolds.",
"authors": "Zheng P, Nguyen TA, Wong JY et al.",
"journal": "Nature communications",
"date": "2020 Jun 5",
"doi": "10.1038/s41467-020-16712-9",
"url": "https://pubmed.ncbi.nlm.nih.gov/32503980/",
"pmid": "32503980"
},
{
"source": "PubMed",
"title": "The GIT family of proteins forms multimers and associates with the presynaptic cytomatrix protein Piccolo.",
"authors": "Kim S, Ko J, Shin H et al.",
"journal": "The Journal of biological chemistry",
"date": "2003 Feb 21",
"doi": "10.1074/jbc.M212287200",
"url": "https://pubmed.ncbi.nlm.nih.gov/12473661/",
"pmid": "12473661"
},
{
"source": "CrossRef",
"title": "Isomorphisms of noncommutative domain algebras. II",
"authors": "Arias, Latremoliere",
"journal": "Journal of Operator Theory",
"date": "2103",
"doi": "10.7900/jot.2011aug10.1917",
"url": "https://doi.org/10.7900/jot.2011aug10.1917",
"pmid": ""
}
]
} |