-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreferences_new.bib
More file actions
4737 lines (4591 loc) · 433 KB
/
Copy pathreferences_new.bib
File metadata and controls
4737 lines (4591 loc) · 433 KB
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
@misc{Bilal_2021_Circulation_143_2025,
address = {United States},
article-doi = {10.1161/CIRCULATIONAHA.120.052437},
author = {Bilal, Alina S. and Blackwood, Erik A. and Thuerauf, Donna J. and Glembotski, Christopher C.},
electronic-issn = {1524-4539},
electronic-publication = {20210517},
history = {2021/05/18 06:00 [medline]},
issue = {20},
journal = {Circulation},
keywords = {adeno-associated virus, cardiac, heart atria, heart ventricle, myocytes, tissue specificity},
language = {eng},
linking-issn = {0009-7322},
location-id = {10.1161/CIRCULATIONAHA.120.052437 [doi]},
month = {May},
nlm-unique-id = {0147763},
owner = {NLM},
pages = {2025--2027},
publication-status = {ppublish},
revised = {20210517},
source = {Circulation. 2021 May 18;143(20):2025-2027. doi: 10.1161/CIRCULATIONAHA.120.052437. Epub 2021 May 17.},
status = {In-Data-Review},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Optimizing Adeno-Associated Virus Serotype 9 for Studies of Cardiac Chamber-Specific Gene Regulation.},
title-abbreviation = {Circulation},
volume = {143},
year = {2021}
}
@article{Marsh_2021_AmJPhysiolHeartCircPhysiol_320_H1813,
abstract = {Although peroxisomes have been extensively studied in other cell types, their presence and function have gone virtually unexamined in cardiac myocytes. Here, in neonatal rat ventricular myocytes (NRVM) we showed that several known peroxisomal proteins co-localize to punctate structures with a morphology typical of peroxisomes. Surprisingly, we found that the peroxisomal protein, fatty acyl-CoA reductase 1 (FAR1), was upregulated by pharmacological and pathophysiological ER stress induced by tunicamycin (TM) and simulated ischemia-reperfusion (sI/R), respectively. Moreover, FAR1 induction in NRVM was mediated by the ER stress sensor, activating transcription factor 6 (ATF6). Functionally, FAR1 knockdown reduced myocyte death during oxidative stress induced by either sI/R or hydrogen peroxide (H(2)O(2)). Thus, Far1 is an ER stress-inducible gene, which encodes a protein that localizes to peroxisomes of cardiac myocytes, where it reduces myocyte viability during oxidative stress. Since FAR1 is critical for plasmalogen synthesis, these results imply that plasmalogens may exert maladaptive effects on the viability of myocytes exposed to oxidative stress.NEW \& NOTEWORTHY The peroxisomal enzyme, FAR1, was shown to be an ER stress- and ATF6-inducible protein that localizes to peroxisomes in cardiac myocytes. FAR1 decreases myocyte viability during oxidative stress.},
article-doi = {10.1152/ajpheart.00999.2020},
article-pii = {H-00999-2020},
author = {Marsh, Kayleigh G. and Arrieta, Adrian and Thuerauf, Donna J. and Blackwood, Erik A. and MacDonnell, Lauren and Glembotski, Christopher C.},
completed = {20210510},
electronic-issn = {1522-1539},
electronic-publication = {20210305},
grantno = {R01 HL149931/HL/NHLBI NIH HHS/United States},
history = {2021/03/05 12:10 [entrez]},
issue = {5},
journal = {American journal of physiology. Heart and circulatory physiology},
keywords = {Activating Transcription Factor 6/genetics/*metabolism, Aldehyde Oxidoreductases/*biosynthesis/genetics, Animals, Animals, Newborn, Cell Hypoxia, Cell Survival, Cells, Cultured, *Endoplasmic Reticulum Stress/drug effects, Enzyme Induction, Hydrogen Peroxide/toxicity, Myocardial Reperfusion Injury/*enzymology/genetics/pathology, Myocytes, Cardiac/drug effects/*enzymology/pathology, Oxidative Stress, Peroxisomes/drug effects/*enzymology/metabolism, Rats, Tunicamycin/toxicity, *ATF6, *FAR1, *cardiomyocyte, *ischemia-reperfusion, *peroxisome},
language = {eng},
linking-issn = {0363-6135},
location-id = {10.1152/ajpheart.00999.2020 [doi]},
month = {May},
nlm-unique-id = {100901228},
owner = {NLM},
pages = {H1813--H1821},
print-issn = {0363-6135},
publication-status = {ppublish},
registry-number = {EC 1.2.- (Far1 protein, rat)},
revised = {20210610},
source = {Am J Physiol Heart Circ Physiol. 2021 May 1;320(5):H1813-H1821. doi: 10.1152/ajpheart.00999.2020. Epub 2021 Mar 5.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {The peroxisomal enzyme, FAR1, is induced during ER stress in an ATF6-dependent manner in cardiac myocytes.},
title-abbreviation = {Am J Physiol Heart Circ Physiol},
volume = {320},
year = {2021}
}
@article{Blackwood_2020_Journalofvisualizedexperiments:JoVE__,
abstract = {The isolation and culturing of cardiac myocytes from mice has been essential for furthering the understanding of cardiac physiology and pathophysiology. While isolating myocytes from neonatal mouse hearts is relatively straightforward, myocytes from the adult murine heart are preferred. This is because compared to neonatal cells, adult myocytes more accurately recapitulate cell function as it occurs in the adult heart in vivo. However, it is technically difficult to isolate adult mouse cardiac myocytes in the necessary quantities and viability, which contributes to an experimental impasse. Furthermore, published procedures are specific for the isolation of either atrial or ventricular myocytes at the expense of atrial and ventricular non-myocyte cells. Described here is a detailed method for isolating both atrial and ventricular cardiac myocytes, along with atrial and ventricular non-myocytes, simultaneously from a single mouse heart. Also provided are the details for optimal cell-specific culturing methods, which enhance cell viability and function. This protocol aims not only to expedite the process of adult murine cardiac cell isolation, but also to increase the yield and viability of cells for investigations of atrial and ventricular cardiac cells.},
address = {United States},
article-doi = {10.3791/61224},
author = {Blackwood, Erik A. and Bilal, Alina S. and Azizi, Khalid and Sarakki, Anup and Glembotski, Christopher C.},
completed = {20201026},
electronic-issn = {1940-087X},
electronic-publication = {20200614},
grantno = {R01 HL141463/HL/NHLBI NIH HHS/United States},
history = {2020/10/27 06:00 [medline]},
issue = {160},
journal = {Journal of visualized experiments : JoVE},
keywords = {Aging, Animals, Cell Culture Techniques/instrumentation/*methods, Cell Separation/*methods, Cell Survival, Cells, Cultured, Heart Atria/*cytology, Heart Ventricles/*cytology, Mice, Myocytes, Cardiac/*cytology},
language = {eng},
linking-issn = {1940-087X},
location-id = {10.3791/61224 [doi]},
month = {Jun},
nlm-unique-id = {101313252},
owner = {NLM},
publication-status = {epublish},
revised = {20201026},
source = {J Vis Exp. 2020 Jun 14;(160). doi: 10.3791/61224.},
status = {MEDLINE},
subset = {IM},
timestamp = {2021.09.20},
title = {Simultaneous Isolation and Culture of Atrial Myocytes, Ventricular Myocytes, and Non-Myocytes from an Adult Mouse Heart.},
title-abbreviation = {J Vis Exp},
year = {2020}
}
@article{Blackwood_2020_JMolCellCardiol_143_132,
abstract = {The effects of ER stress on protein secretion by cardiac myocytes are not well understood. In this study, the ER stressor thapsigargin (TG), which depletes ER calcium, induced death of cultured neonatal rat ventricular myocytes (NRVMs) in high media volume but fostered protection in low media volume. In contrast, another ER stressor, tunicamycin (TM), a protein glycosylation inhibitor, induced NRVM death in all media volumes, suggesting that protective proteins were secreted in response to TG but not TM. Proteomic analyses of TG- and TM-conditioned media showed that the secretion of most proteins was inhibited by TG and TM; however, secretion of several ER-resident proteins, including GRP78 was increased by TG but not TM. Simulated ischemia, which decreases ER/SR calcium also increased secretion of these proteins. Mechanistically, secreted GRP78 was shown to enhance survival of NRVMs by collaborating with a cell-surface protein, CRIPTO, to activate protective AKT signaling and to inhibit death-promoting SMAD2 signaling. Thus, proteins secreted during ER stress mediated by ER calcium depletion can enhance cardiac myocyte viability.},
address = {England},
article-doi = {10.1016/j.yjmcc.2020.04.012},
article-pii = {S0022-2828(20)30094-8},
author = {Blackwood, Erik A. and Thuerauf, Donna J. and Stastna, Miroslava and Stephens, Haley and Sand, Zoe and Pentoney, Amber and Azizi, Khalid and Jakobi, Tobias and {Van Eyk}, Jennifer E. and Katus, Hugo A. and Glembotski, Christopher C. and Doroudgar, Shirin},
completed = {20210712},
electronic-issn = {1095-8584},
electronic-publication = {20200425},
grantno = {P01 HL112730/HL/NHLBI NIH HHS/United States},
history = {2020/04/28 06:00 [entrez]},
journal = {Journal of molecular and cellular cardiology},
keywords = {Animals, Apoptosis, Autocrine Communication, Biomarkers, Calcium/metabolism, Calcium Signaling/drug effects, Cell Survival, Cells, Cultured, Disease Susceptibility, *Endoplasmic Reticulum Stress/drug effects, Epidermal Growth Factor/metabolism, Membrane Glycoproteins/metabolism, Mice, Myocytes, Cardiac/drug effects/*metabolism, Neoplasm Proteins/metabolism, Paracrine Communication, *Proteome, *Proteomics/methods, Rats, Sarcoplasmic Reticulum/metabolism, Signal Transduction/drug effects, Thapsigargin/pharmacology, *Cardiac myocyte death, *Cardiokine, *Cardioprotection, *ER stress, *Heart failure, *Proteostasis},
language = {eng},
linking-issn = {0022-2828},
location-id = {10.1016/j.yjmcc.2020.04.012 [doi]},
month = {Jun},
nlm-unique-id = {0262322},
owner = {NLM},
pages = {132--144},
publication-status = {ppublish},
registry-number = {SY7Q814VUP (Calcium)},
revised = {20210712},
source = {J Mol Cell Cardiol. 2020 Jun;143:132-144. doi: 10.1016/j.yjmcc.2020.04.012. Epub 2020 Apr 25.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Proteomic analysis of the cardiac myocyte secretome reveals extracellular protective functions for the ER stress response.},
title-abbreviation = {J Mol Cell Cardiol},
volume = {143},
year = {2020}
}
@article{Arrieta_2020_JBiolChem_295_7566,
abstract = {We have previously demonstrated that ischemia/reperfusion (I/R) impairs endoplasmic reticulum (ER)-based protein folding in the heart and thereby activates an unfolded protein response sensor and effector, activated transcription factor 6α (ATF6). ATF6 then induces mesencephalic astrocyte-derived neurotrophic factor (MANF), an ER-resident protein with no known structural homologs and unclear ER function. To determine MANF's function in the heart in vivo, here we developed a cardiomyocyte-specific MANF-knockdown mouse model. MANF knockdown increased cardiac damage after I/R, which was reversed by AAV9-mediated ectopic MANF expression. Mechanistically, MANF knockdown in cultured neonatal rat ventricular myocytes (NRVMs) impaired protein folding in the ER and cardiomyocyte viability during simulated I/R. However, this was not due to MANF-mediated protection from reactive oxygen species generated during reperfusion. Because I/R impairs oxygen-dependent ER protein disulfide formation and such impairment can be caused by reductive stress in the ER, we examined the effects of the reductive ER stressor DTT. MANF knockdown in NRVMs increased cell death from DTT-mediated reductive ER stress, but not from nonreductive ER stresses caused by thapsigargin-mediated ER Ca(2+) depletion or tunicamycin-mediated inhibition of ER protein glycosylation. In vitro, recombinant MANF exhibited chaperone activity that depended on its conserved cysteine residues. Moreover, in cells, MANF bound to a model ER protein exhibiting improper disulfide bond formation during reductive ER stress but did not bind to this protein during nonreductive ER stress. We conclude that MANF is an ER chaperone that enhances protein folding and myocyte viability during reductive ER stress.},
article-doi = {10.1074/jbc.RA120.013345},
article-pii = {RA120.013345},
author = {Arrieta, Adrian and Blackwood, Erik A. and Stauffer, Winston T. and {Santo Domingo}, Michelle and Bilal, Alina S. and Thuerauf, Donna J. and Pentoney, Amber N. and Aivati, Cathrine and Sarakki, Anup V. and Doroudgar, Shirin and Glembotski, Christopher C.},
completed = {20201224},
electronic-issn = {1083-351X},
electronic-publication = {20200423},
grantno = {R01 HL149931/HL/NHLBI NIH HHS/United States},
history = {2020/04/25 06:00 [entrez]},
issue = {22},
journal = {The Journal of biological chemistry},
keywords = {Animals, Cell Survival, Endoplasmic Reticulum/genetics/*metabolism/pathology, *Endoplasmic Reticulum Stress, Glycosylation, HeLa Cells, Humans, Mice, Mice, Knockout, Molecular Chaperones/genetics/*metabolism, Myocardial Reperfusion Injury/genetics/*metabolism/pathology, Myocardium/*metabolism/pathology, Myocytes, Cardiac/*metabolism/pathology, Nerve Growth Factors/genetics/*metabolism, Reactive Oxygen Species, *cardiomyocyte, *chaperone, *endoplasmic reticulum stress (ER stress), *heart function, *ischemia, *ischemia/reperfusion, *mesencephalic astrocyte-derived neurotrophic factor (MANF), *protein folding, *reductive stress, *unfolded protein response},
language = {eng},
linking-issn = {0021-9258},
location-id = {10.1074/jbc.RA120.013345 [doi]},
month = {May},
nlm-unique-id = {2985121R},
owner = {NLM},
pages = {7566--7583},
print-issn = {0021-9258},
publication-status = {ppublish},
registry-number = {0 (Reactive Oxygen Species)},
revised = {20210205},
source = {J Biol Chem. 2020 May 29;295(22):7566-7583. doi: 10.1074/jbc.RA120.013345. Epub 2020 Apr 23.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Mesencephalic astrocyte-derived neurotrophic factor is an ER-resident chaperone that protects against reductive stress in the heart.},
title-abbreviation = {J Biol Chem},
volume = {295},
year = {2020}
}
@article{Glembotski_2020_Frontiersinphysiology_11_267,
abstract = {Proteostasis encompasses a homeostatic cellular network in all cells that maintains the integrity of the proteome, which is critical for optimal cellular function. The components of the proteostasis network include protein synthesis, folding, trafficking, and degradation. Cardiac myocytes have a specialized endoplasmic reticulum (ER) called the sarcoplasmic reticulum that is well known for its role in contractile calcium handling. However, less studied is the proteostasis network associated with the ER, which is of particular importance in cardiac myocytes because it ensures the integrity of proteins that are critical for cardiac contraction, e.g., ion channels, as well as proteins necessary for maintaining myocyte viability and interaction with other cell types, e.g., secreted hormones and growth factors. A major aspect of the ER proteostasis network is the ER unfolded protein response (UPR), which is initiated when misfolded proteins in the ER activate a group of three ER transmembrane proteins, one of which is the transcription factor, ATF6. Prior to studies in the heart, ATF6 had been shown in model cell lines to be primarily adaptive, exerting protective effects by inducing genes that encode ER proteins that fortify protein-folding in this organelle, thus establishing the canonical role for ATF6. Subsequent studies in isolated cardiac myocytes and in the myocardium, in vivo, have expanded roles for ATF6 beyond the canonical functions to include the induction of genes that encode proteins outside of the ER that do not have known functions that are obviously related to ER protein-folding. The identification of such non-canonical roles for ATF6, as well as findings that the gene programs induced by ATF6 differ depending on the stimulus, have piqued interest in further research on ATF6 as an adaptive effector in cardiac myocytes, underscoring the therapeutic potential of activating ATF6 in the heart. Moreover, discoveries of small molecule activators of ATF6 that adaptively affect the heart, as well as other organs, in vivo, have expanded the potential for development of ATF6-based therapeutics. This review focuses on the ATF6 arm of the ER UPR and its effects on the proteostasis network in the myocardium.},
article-doi = {10.3389/fphys.2020.00267},
author = {Glembotski, Christopher C. and Arrieta, Adrian and Blackwood, Erik A. and Stauffer, Winston T.},
electronic-issn = {1664-042X},
electronic-publication = {20200408},
history = {2020/04/24 06:01 [medline]},
journal = {Frontiers in physiology},
keywords = {ATF6, ER stress, cardiac myocyte, proteostasis, unfolded protein response},
language = {eng},
linking-issn = {1664-042X},
location-id = {267},
nlm-unique-id = {101549006},
owner = {NLM},
pages = {267},
print-issn = {1664-042X},
publication-status = {epublish},
revised = {20200928},
source = {Front Physiol. 2020 Apr 8;11:267. doi: 10.3389/fphys.2020.00267. eCollection 2020.},
status = {PubMed-not-MEDLINE},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {ATF6 as a Nodal Regulator of Proteostasis in the Heart.},
title-abbreviation = {Front Physiol},
volume = {11},
year = {2020}
}
@article{Palmer_2020_ACSmedicinalchemistryletters_11_292,
abstract = {We describe here the design, synthesis, and biological evaluation of a reactive oxygen species (ROS)-activatable prodrug for the selective delivery of 147, a small molecule ATF6 activator, for ischemia/reperfusion injury. ROS-activatable prodrug 1 and a negative control unable to release free drug were synthesized and examined for peroxide-mediated activation. Prodrug 1 blocks activity of 147 by its inability to undergo metabolic oxidation by ER-resident cytochrome P450 enzymes such as Cyp1A2, probed directly here for the first time. Biological evaluation of ROS-activatable prodrug 1 in primary cardiomyocytes demonstrates protection against peroxide-mediated toxicity and enhances viability following simulated I/R injury. The ability to selectively target ATF6 activation under diseased conditions establishes the potential for localized stress-responsive signaling pathway activation as a therapeutic approach for I/R injury and related protein misfolding maladies.},
article-doi = {10.1021/acsmedchemlett.9b00299},
author = {Palmer, Jonathan E. and Brietske, Breanna M. and Bate, Tyler C. and Blackwood, Erik A. and Garg, Manasa and Glembotski, Christopher C. and Cooley, Christina B.},
electronic-issn = {1948-5875},
electronic-publication = {20191106},
grantno = {R01 HL149931/HL/NHLBI NIH HHS/United States},
history = {2020/03/19 06:01 [medline]},
issue = {3},
journal = {ACS medicinal chemistry letters},
language = {eng},
linking-issn = {1948-5875},
location-id = {10.1021/acsmedchemlett.9b00299 [doi]},
month = {Mar},
nlm-unique-id = {101521073},
owner = {NLM},
pages = {292--297},
print-issn = {1948-5875},
publication-status = {epublish},
revised = {20210312},
source = {ACS Med Chem Lett. 2019 Nov 6;11(3):292-297. doi: 10.1021/acsmedchemlett.9b00299. eCollection 2020 Mar 12.},
status = {PubMed-not-MEDLINE},
timestamp = {2021.09.20},
title = {Reactive Oxygen Species (ROS)-Activatable Prodrug for Selective Activation of ATF6 after Ischemia/Reperfusion Injury.},
title-abbreviation = {ACS Med Chem Lett},
volume = {11},
year = {2020}
}
@article{Blackwood_2020_Cells_9_,
abstract = {The heart exhibits incredible plasticity in response to both environmental and genetic alterations that affect workload. Over the course of development, or in response to physiological or pathological stimuli, the heart responds to fluctuations in workload by hypertrophic growth primarily by individual cardiac myocytes growing in size. Cardiac hypertrophy is associated with an increase in protein synthesis, which must coordinate with protein folding and degradation to allow for homeostatic growth without affecting the functional integrity of cardiac myocytes (i.e., proteostasis). This increase in the protein folding demand in the growing cardiac myocyte activates the transcription factor, ATF6 (activating transcription factor 6α, an inducer of genes that restore proteostasis. Previously, ATF6 has been shown to induce ER-targeted proteins functioning primarily to enhance ER protein folding and degradation. More recent studies, however, have illuminated adaptive roles for ATF6 functioning outside of the ER by inducing non-canonical targets in a stimulus-specific manner. This unique ability of ATF6 to act as an initial adaptive responder has bolstered an enthusiasm for identifying small molecule activators of ATF6 and similar proteostasis-based therapeutics.},
article-doi = {10.3390/cells9030602},
article-pii = {cells-09-00602},
author = {Blackwood, Erik A. and Bilal, Alina S. and Stauffer, Winston T. and Arrieta, Adrian and Glembotski, Christopher C.},
completed = {20210308},
electronic-issn = {2073-4409},
electronic-publication = {20200303},
grantno = {F31 HL140850/HL/NHLBI NIH HHS/United States},
history = {2021/03/09 06:00 [medline]},
issue = {3},
journal = {Cells},
keywords = {Activating Transcription Factor 6/*metabolism, Cardiomyopathies/*genetics, Humans, Myocytes, Cardiac/*metabolism, Proteostasis/*physiology, Unfolded Protein Response/*genetics, *ATF6, *cardiac myocyte, *cardiomyopathy, *hypertrophy, *proteostasis, *small molecule, *therapy, *transcriptional regulation, *unfolded protein response (UPR)},
language = {eng},
linking-issn = {2073-4409},
location-id = {602},
month = {Mar},
nlm-unique-id = {101600052},
owner = {NLM},
publication-status = {epublish},
registry-number = {0 (Activating Transcription Factor 6)},
revised = {20210308},
source = {Cells. 2020 Mar 3;9(3):602. doi: 10.3390/cells9030602.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Designing Novel Therapies to Mend Broken Hearts: ATF6 and Cardiac Proteostasis.},
title-abbreviation = {Cells},
volume = {9},
year = {2020}
}
@article{Stauffer_2020_Internationaljournalofmolecularsciences_21_,
abstract = {Activating transcription factor-6 α (ATF6) is one of the three main sensors and effectors of the endoplasmic reticulum (ER) stress response and, as such, it is critical for protecting the heart and other tissues from a variety of environmental insults and disease states. In the heart, ATF6 has been shown to protect cardiac myocytes. However, its roles in other cell types in the heart are unknown. Here we show that ATF6 decreases the activation of cardiac fibroblasts in response to the cytokine, transforming growth factor β (TGFβ), which can induce fibroblast trans-differentiation into a myofibroblast phenotype through signaling via the TGFβ-Smad pathway. ATF6 activation suppressed fibroblast contraction and the induction of α smooth muscle actin (αSMA). Conversely, fibroblasts were hyperactivated when ATF6 was silenced or deleted. ATF6 thus represents a novel inhibitor of the TGFβ-Smad axis of cardiac fibroblast activation.},
article-doi = {10.3390/ijms21041373},
article-pii = {ijms-21-01373},
author = {Stauffer, Winston T. and Blackwood, Erik A. and Azizi, Khalid and Kaufman, Randal J. and Glembotski, Christopher C.},
completed = {20201130},
electronic-issn = {1422-0067},
electronic-publication = {20200218},
grantno = {R01 CA198103/CA/NCI NIH HHS/United States},
history = {2020/12/01 06:00 [medline]},
issue = {4},
journal = {International journal of molecular sciences},
keywords = {Activating Transcription Factor 6/*metabolism, Animals, Biomarkers/metabolism, Endoplasmic Reticulum/drug effects/*metabolism, Fibroblasts/drug effects/*metabolism/*pathology, Fibrosis, Gene Expression Regulation/drug effects, Heart Ventricles/pathology, Male, Mice, Inbred C57BL, Mice, Knockout, Models, Biological, Myocardium/*pathology, Phosphorylation/drug effects, Signal Transduction/drug effects, Smad2 Protein/metabolism, Stress Fibers/drug effects/metabolism, Transforming Growth Factor beta/pharmacology, *Unfolded Protein Response, ATF6, ER stress, Smad, TGFβ, UPR, cardiac fibroblast, cardiac fibrosis, endoplasmic reticulum},
language = {eng},
linking-issn = {1422-0067},
location-id = {1373},
month = {Feb},
nlm-unique-id = {101092791},
owner = {NLM},
publication-status = {epublish},
registry-number = {0 (Transforming Growth Factor beta)},
revised = {20201130},
source = {Int J Mol Sci. 2020 Feb 18;21(4):1373. doi: 10.3390/ijms21041373.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {The ER Unfolded Protein Response Effector, ATF6, Reduces Cardiac Fibrosis and Decreases Activation of Cardiac Fibroblasts.},
title-abbreviation = {Int J Mol Sci},
volume = {21},
year = {2020}
}
@article{Stauffer_2020_Internationaljournalofmolecularsciences_21_,
abstract = {There are more than 2000 transcription factors in eukaryotes, many of which are subject to complex mechanisms fine-tuning their activity and their transcriptional programs to meet the vast array of conditions under which cells must adapt to thrive and survive. For example, conditions that impair protein folding in the endoplasmic reticulum (ER), sometimes called ER stress, elicit the relocation of the ER-transmembrane protein, activating transcription factor 6α (ATF6α), to the Golgi, where it is proteolytically cleaved. This generates a fragment of ATF6α that translocates to the nucleus, where it regulates numerous genes that restore ER protein-folding capacity but is degraded soon after. Thus, upon ER stress, ATF6α is converted from a stable, transmembrane protein, to a rapidly degraded, nuclear protein that is a potent transcription factor. This review focuses on the molecular mechanisms governing ATF6α location, activity, and stability, as well as the transcriptional programs ATF6α regulates, whether canonical genes that restore ER protein-folding or unexpected, non-canonical genes affecting cellular functions beyond the ER. Moreover, we will review fascinating roles for an ATF6α isoform, ATF6β, which has a similar mode of activation but, unlike ATF6α, is a long-lived, weak transcription factor that may moderate the genetic effects of ATF6α.},
article-doi = {10.3390/ijms21031134},
article-pii = {ijms-21-01134},
author = {Stauffer, Winston T. and Arrieta, Adrian and Blackwood, Erik A. and Glembotski, Christopher C.},
completed = {20201130},
electronic-issn = {1422-0067},
electronic-publication = {20200208},
grantno = {R01HL135893, R01 HL75573, R01 HL104535/NH/NIH HHS/United States},
history = {2020/12/01 06:00 [medline]},
issue = {3},
journal = {International journal of molecular sciences},
keywords = {Activating Transcription Factor 6/*metabolism, Animals, *Endoplasmic Reticulum Stress, Gene Expression Regulation, Humans, Myocardium/metabolism, Protein Isoforms/metabolism, Transcription Factors/metabolism, *Transcription, Genetic, ATF6α, ATF6β, ER stress, OASIS, UPR, basic leucine-zipper, cardiac, endoplasmic reticulum, proteostasis, transcriptional regulation},
language = {eng},
linking-issn = {1422-0067},
location-id = {1134},
month = {Feb},
nlm-unique-id = {101092791},
owner = {NLM},
publication-status = {epublish},
registry-number = {0 (Transcription Factors)},
revised = {20201130},
source = {Int J Mol Sci. 2020 Feb 8;21(3):1134. doi: 10.3390/ijms21031134.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Sledgehammer to Scalpel: Broad Challenges to the Heart and Other Tissues Yield Specific Cellular Responses via Transcriptional Regulation of the ER-Stress Master Regulator ATF6α.},
title-abbreviation = {Int J Mol Sci},
volume = {21},
year = {2020}
}
@article{Arrieta_2019_Frontiersincardiovascularmedicine_6_193,
abstract = {The integrity of the proteome in cardiac myocytes is critical for robust heart function. Proteome integrity in all cells is managed by protein homeostasis or proteostasis, which encompasses processes that maintain the balance of protein synthesis, folding, and degradation in ways that allow cells to adapt to conditions that present a potential challenge to viability (1). While there are processes in various cellular locations in cardiac myocytes that contribute to proteostasis, those in the cytosol, mitochondria and endoplasmic reticulum (ER) have dominant roles in maintaining cardiac contractile function. Cytosolic proteostasis has been reviewed elsewhere (2, 3); accordingly, this review focuses on proteostasis in the ER and mitochondria, and how they might influence each other and, thus, impact heart function in the settings of cardiac physiology and disease.},
article-doi = {10.3389/fcvm.2019.00193},
author = {Arrieta, Adrian and Blackwood, Erik A. and Stauffer, Winston T. and Glembotski, Christopher C.},
electronic-issn = {2297-055X},
electronic-publication = {20200115},
grantno = {R01 HL141463/HL/NHLBI NIH HHS/United States},
history = {2020/02/06 06:01 [medline]},
journal = {Frontiers in cardiovascular medicine},
keywords = {UPR, endoplasmic reticulum, mitochondria, protein folding, proteostasis},
language = {eng},
linking-issn = {2297-055X},
location-id = {193},
nlm-unique-id = {101653388},
owner = {NLM},
pages = {193},
print-issn = {2297-055X},
publication-status = {epublish},
revised = {20201011},
source = {Front Cardiovasc Med. 2020 Jan 15;6:193. doi: 10.3389/fcvm.2019.00193. eCollection 2019.},
status = {PubMed-not-MEDLINE},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Integrating ER and Mitochondrial Proteostasis in the Healthy and Diseased Heart.},
title-abbreviation = {Front Cardiovasc Med},
volume = {6},
year = {2019}
}
@article{Lindberg_2019_PNAS_116_19774,
article-doi = {10.1073/pnas.1914001116},
article-pii = {201914001},
author = {Lindberg, Iris and Glembotski, Christopher C.},
comment = {Proc Natl Acad Sci U S A. 2019 Oct 1;116(40):20169-20179. PMID: 31455734},
completed = {20200319},
electronic-issn = {1091-6490},
electronic-publication = {20190912},
grantno = {R56 DA005084/DA/NIDA NIH HHS/United States},
history = {2019/09/14 06:00 [entrez]},
issue = {40},
journal = {Proceedings of the National Academy of Sciences of the United States of America},
keywords = {*Amides, Animals, Mice, *Peptides},
language = {eng},
linking-issn = {0027-8424},
location-id = {10.1073/pnas.1914001116 [doi]},
month = {Oct},
nlm-unique-id = {7505876},
owner = {NLM},
pages = {19774--19776},
print-issn = {0027-8424},
publication-status = {ppublish},
registry-number = {0 (Peptides)},
revised = {20200319},
source = {Proc Natl Acad Sci U S A. 2019 Oct 1;116(40):19774-19776. doi: 10.1073/pnas.1914001116. Epub 2019 Sep 12.},
status = {MEDLINE},
subset = {IM},
timestamp = {2021.09.20},
title = {Physiological signaling in the absence of amidated peptides.},
title-abbreviation = {Proc Natl Acad Sci U S A},
volume = {116},
year = {2019}
}
@article{Glembotski_2019_TrendsMolMed_25_538,
abstract = {Endoplasmic reticulum (ER) stress is a pathological hallmark of numerous ischemic diseases, including stroke and myocardial infarction (MI). In these diseases, ER stress leads to activation of the unfolded protein response (UPR) and subsequent adaptation of cellular physiology in ways that dictate cellular fate following ischemia. Recent evidence highlights a protective role for the activating transcription factor 6 (ATF6) arm of the UPR in mitigating adverse outcomes associated with ischemia/reperfusion (I/R) injury in multiple disease models. This suggests ATF6 as a potential therapeutic target for intervening in diverse ischemia-related disorders. Here, we discuss the evidence demonstrating the importance of ATF6 signaling in protecting different tissues against ischemic damage and discuss preclinical results focused on defining the potential for pharmacologically targeting ATF6 to intervene in such diseases.},
article-doi = {10.1016/j.molmed.2019.03.005},
article-pii = {S1471-4914(19)30066-8},
author = {Glembotski, Christopher C. and Rosarda, Jessica D. and Wiseman, R. Luke},
completed = {20200408},
electronic-issn = {1471-499X},
electronic-publication = {20190508},
grantno = {R01 HL141463/HL/NHLBI NIH HHS/United States},
history = {2019/05/13 06:00 [entrez]},
issue = {6},
journal = {Trends in molecular medicine},
keywords = {Activating Transcription Factor 6/genetics/*metabolism, Animals, Biomarkers, Disease Susceptibility, Endoplasmic Reticulum Stress, Humans, Ischemia/drug therapy/*etiology/*metabolism/pathology, Molecular Targeted Therapy, Myocardial Infarction/etiology/metabolism/pathology/therapy, Organ Specificity, *Proteostasis, Signal Transduction, Unfolded Protein Response, *ATF6, *ER stress, *myocardial infarction, *stroke, *unfolded protein response},
language = {eng},
linking-issn = {1471-4914},
location-id = {10.1016/j.molmed.2019.03.005 [doi]},
manuscript-id = {NIHMS1525933},
month = {Jun},
nlm-unique-id = {100966035},
owner = {NLM},
pages = {538--550},
print-issn = {1471-4914},
publication-status = {ppublish},
registry-number = {0 (Biomarkers)},
revised = {20201103},
source = {Trends Mol Med. 2019 Jun;25(6):538-550. doi: 10.1016/j.molmed.2019.03.005. Epub 2019 May 8.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Proteostasis and Beyond: ATF6 in Ischemic Disease.},
title-abbreviation = {Trends Mol Med},
volume = {25},
year = {2019}
}
@inproceedings{Glembotski_2019__73_1807,
article-doi = {10.1016/j.jacc.2018.12.089},
article-pii = {S0735-1097(19)33691-5},
author = {Glembotski, Christopher C. and Arrieta, Adrian and Blackwood, Erik A.},
booktitle = {Journal of the American College of Cardiology},
comment = {J Am Coll Cardiol. 2019 Apr 16;73(14):1795-1806. PMID: 30975297},
completed = {20200214},
electronic-issn = {1558-3597},
grantno = {R01 HL104535/HL/NHLBI NIH HHS/United States},
history = {2020/02/15 06:00 [medline]},
issue = {14},
keywords = {*Heart Diseases, Humans, *Mitochondria, Unfolded Protein Response, *cardiomyocyte, *heart, *mitochondria, *pressure overload, *unfolded protein response},
language = {eng},
linking-issn = {0735-1097},
location-id = {10.1016/j.jacc.2018.12.089 [doi]},
manuscript-id = {NIHMS1054246},
month = {Apr},
nlm-unique-id = {8301365},
owner = {NLM},
pages = {1807--1810},
print-issn = {0735-1097},
publication-status = {ppublish},
revised = {20201103},
source = {J Am Coll Cardiol. 2019 Apr 16;73(14):1807-1810. doi: 10.1016/j.jacc.2018.12.089.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Unfolding the Roles of Mitochondria as Therapeutic Targets for Heart Disease.},
title-abbreviation = {J Am Coll Cardiol},
volume = {73},
year = {2019}
}
@article{Blackwood_2019_Naturecommunications_10_187,
abstract = {Pharmacologic activation of stress-responsive signaling pathways provides a promising approach for ameliorating imbalances in proteostasis associated with diverse diseases. However, this approach has not been employed in vivo. Here we show, using a mouse model of myocardial ischemia/reperfusion, that selective pharmacologic activation of the ATF6 arm of the unfolded protein response (UPR) during reperfusion, a typical clinical intervention point after myocardial infarction, transcriptionally reprograms proteostasis, ameliorates damage and preserves heart function. These effects were lost upon cardiac myocyte-specific Atf6 deletion in the heart, demonstrating the critical role played by ATF6 in mediating pharmacologically activated proteostasis-based protection of the heart. Pharmacological activation of ATF6 is also protective in renal and cerebral ischemia/reperfusion models, demonstrating its widespread utility. Thus, pharmacologic activation of ATF6 represents a proteostasis-based therapeutic strategy for ameliorating ischemia/reperfusion damage, underscoring its unique translational potential for treating a wide range of pathologies caused by imbalanced proteostasis.},
article-doi = {10.1038/s41467-018-08129-2},
article-pii = {8129},
author = {Blackwood, Erik A. and Azizi, Khalid and Thuerauf, Donna J. and Paxman, Ryan J. and Plate, Lars and Kelly, Jeffery W. and Wiseman, R. Luke and Glembotski, Christopher C.},
completed = {20190218},
electronic-issn = {2041-1723},
electronic-publication = {20190114},
grantno = {R01 AG046495/AG/NIA NIH HHS/United States},
history = {2019/02/20 06:00 [medline]},
issue = {1},
journal = {Nature communications},
keywords = {Activating Transcription Factor 6/genetics/*metabolism, Animals, Animals, Newborn, Cells, Cultured, Cerebral Infarction/etiology/pathology/*prevention \& control, Disease Models, Animal, Endoplasmic Reticulum/metabolism, Female, Heart Ventricles/pathology, Humans, Kidney/blood supply/pathology, Kidney Diseases/etiology/pathology/*prevention \& control, Male, Mice, Mice, Inbred C57BL, Mice, Knockout, Myocardial Infarction/etiology/pathology/*prevention \& control, Myocytes, Cardiac, Primary Cell Culture, Protective Agents/*pharmacology/therapeutic use, Proteostasis/drug effects, Rats, Reperfusion Injury/*drug therapy/etiology, Treatment Outcome, Unfolded Protein Response/drug effects},
language = {eng},
linking-issn = {2041-1723},
location-id = {187},
month = {Jan},
nlm-unique-id = {101528555},
owner = {NLM},
pages = {187},
publication-status = {epublish},
registry-number = {0 (Protective Agents)},
revised = {20201103},
source = {Nat Commun. 2019 Jan 14;10(1):187. doi: 10.1038/s41467-018-08129-2.},
status = {MEDLINE},
subset = {IM},
timestamp = {2021.09.20},
title = {Pharmacologic ATF6 activation confers global protection in widespread disease models by reprograming cellular proteostasis.},
title-abbreviation = {Nat Commun},
volume = {10},
year = {2019}
}
@article{Blackwood_2019_CircRes_124_79,
abstract = {RATIONALE: Endoplasmic reticulum (ER) stress dysregulates ER proteostasis, which activates the transcription factor, ATF6 (activating transcription factor 6α), an inducer of genes that enhance protein folding and restore ER proteostasis. Because of increased protein synthesis, it is possible that protein folding and ER proteostasis are challenged during cardiac myocyte growth. However, it is not known whether ATF6 is activated, and if so, what its function is during hypertrophic growth of cardiac myocytes. OBJECTIVE: To examine the activity and function of ATF6 during cardiac hypertrophy. METHODS AND RESULTS: We found that ER stress and ATF6 were activated and ATF6 target genes were induced in mice subjected to an acute model of transverse aortic constriction, or to free-wheel exercise, both of which promote adaptive cardiac myocyte hypertrophy with preserved cardiac function. Cardiac myocyte-specific deletion of Atf6 (ATF6 cKO [conditional knockout]) blunted transverse aortic constriction and exercise-induced cardiac myocyte hypertrophy and impaired cardiac function, demonstrating a role for ATF6 in compensatory myocyte growth. Transcript profiling and chromatin immunoprecipitation identified RHEB (Ras homologue enriched in brain) as an ATF6 target gene in the heart. RHEB is an activator of mTORC1 (mammalian/mechanistic target of rapamycin complex 1), a major inducer of protein synthesis and subsequent cell growth. Both transverse aortic constriction and exercise upregulated RHEB, activated mTORC1, and induced cardiac hypertrophy in wild type mouse hearts but not in ATF6 cKO hearts. Mechanistically, knockdown of ATF6 in neonatal rat ventricular myocytes blocked phenylephrine- and IGF1 (insulin-like growth factor 1)-mediated RHEB induction, mTORC1 activation, and myocyte growth, all of which were restored by ectopic RHEB expression. Moreover, adeno-associated virus 9- RHEB restored cardiac growth to ATF6 cKO mice subjected to transverse aortic constriction. Finally, ATF6 induced RHEB in response to growth factors, but not in response to other activators of ATF6 that do not induce growth, indicating that ATF6 target gene induction is stress specific. CONCLUSIONS: Compensatory cardiac hypertrophy activates ER stress and ATF6, which induces RHEB and activates mTORC1. Thus, ATF6 is a previously unrecognized link between growth stimuli and mTORC1-mediated cardiac growth.},
article-doi = {10.1161/CIRCRESAHA.118.313854},
author = {Blackwood, Erik A. and Hofmann, Christoph and {Santo Domingo}, Michelle and Bilal, Alina S. and Sarakki, Anup and Stauffer, Winston and Arrieta, Adrian and Thuerauf, Donna J. and Kolkhorst, Fred W. and M{\"u}ller, Oliver J. and Jakobi, Tobias and Dieterich, Christoph and Katus, Hugo A. and Doroudgar, Shirin and Glembotski, Christopher C.},
comment = {Circ Res. 2019 Jan 4;124(1):9-11. PMID: 30605413},
completed = {20191022},
electronic-issn = {1524-4571},
grantno = {R01 HL104535/HL/NHLBI NIH HHS/United States},
history = {2018/12/25 06:00 [entrez]},
issue = {1},
journal = {Circulation research},
keywords = {Activating Transcription Factor 6/deficiency/genetics/*metabolism, Animals, Animals, Newborn, Disease Models, Animal, Endoplasmic Reticulum/enzymology, Endoplasmic Reticulum Stress, Genetic Predisposition to Disease, Hypertrophy, Left Ventricular/*enzymology/genetics/pathology/physiopathology, Male, Mechanistic Target of Rapamycin Complex 1/genetics/*metabolism, Mice, Inbred C57BL, Mice, Knockout, Myocytes, Cardiac/*enzymology/pathology, Phenotype, Protein Folding, Proteostasis, Ras Homolog Enriched in Brain Protein/genetics/*metabolism, Signal Transduction, *Transcriptional Activation, *Ventricular Function, Left, *Ventricular Remodeling, *ATF6, *ER stress, *cardiac hypertrophy, *mTORC1, *proteostasis},
language = {eng},
linking-issn = {0009-7330},
location-id = {10.1161/CIRCRESAHA.118.313854 [doi]},
manuscript-id = {NIHMS1510057},
month = {Jan},
nlm-unique-id = {0047103},
owner = {NLM},
pages = {79--93},
print-issn = {0009-7330},
publication-status = {ppublish},
registry-number = {EC 2.7.11.1 (Mechanistic Target of Rapamycin Complex 1)},
revised = {20201103},
source = {Circ Res. 2019 Jan 4;124(1):79-93. doi: 10.1161/CIRCRESAHA.118.313854.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {ATF6 Regulates Cardiac Hypertrophy by Transcriptional Induction of the mTORC1 Activator, Rheb.},
title-abbreviation = {Circ Res},
volume = {124},
year = {2019}
}
@article{Paxman_2018_eLife_7_,
abstract = {Pharmacologic arm-selective unfolded protein response (UPR) signaling pathway activation is emerging as a promising strategy to ameliorate imbalances in endoplasmic reticulum (ER) proteostasis implicated in diverse diseases. The small molecule N-(2-hydroxy-5-methylphenyl)-3-phenylpropanamide (147) was previously identified (<xref ref-type="bibr" rid="bib35">Plate et al., 2016</xref>) to preferentially activate the ATF6 arm of the UPR, promoting protective remodeling of the ER proteostasis network. Here we show that 147-dependent ATF6 activation requires metabolic oxidation to form an electrophile that preferentially reacts with ER proteins. Proteins covalently modified by 147 include protein disulfide isomerases (PDIs), known to regulate ATF6 activation. Genetic depletion of PDIs perturbs 147-dependent induction of the ATF6-target gene, BiP, implicating covalent modifications of PDIs in the preferential activation of ATF6 afforded by treatment with 147. Thus, 147 is a pro-drug that preferentially activates ATF6 signaling through a mechanism involving localized metabolic activation and selective covalent modification of ER resident proteins that regulate ATF6 activity.},
article-doi = {10.7554/eLife.37168},
article-pii = {37168},
author = {Paxman, Ryan and Plate, Lars and Blackwood, Erik A. and Glembotski, Chris and Powers, Evan T. and Wiseman, R. Luke and Kelly, Jeffery W.},
completed = {20181217},
electronic-issn = {2050-084X},
electronic-publication = {20180807},
grantno = {Heart Institute Inamori Foundation/San Diego State University/International},
history = {2018/12/18 06:00 [medline]},
journal = {eLife},
keywords = {Activating Transcription Factor 6/*genetics, Amides/*pharmacology, Endoplasmic Reticulum/drug effects/genetics, Endoplasmic Reticulum Stress/*drug effects, HEK293 Cells, Humans, Phenylpropionates/*pharmacology, Prodrugs/*pharmacology, Signal Transduction/drug effects, Small Molecule Libraries/*pharmacology, Unfolded Protein Response/genetics, *biochemistry, *chemical biology, *cytochrome p450, *human, *protein disulfide isomerase, *proteostasis, *proteostasis regulator, *quinone methide, *reactive cysteine},
language = {eng},
linking-issn = {2050-084X},
location-id = {e37168},
month = {Aug},
nlm-unique-id = {101579614},
owner = {NLM},
publication-status = {epublish},
registry-number = {0 (Small Molecule Libraries)},
revised = {20191101},
source = {Elife. 2018 Aug 7;7:e37168. doi: 10.7554/eLife.37168.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Pharmacologic ATF6 activating compounds are metabolically activated to selectively modify endoplasmic reticulum proteins.},
title-abbreviation = {Elife},
volume = {7},
year = {2018}
}
@article{Arrieta_2018_CurrTopMicrobiolImmunol_414_193,
abstract = {Cardiac myocytes are the cells responsible for the robust ability of the heart to pump blood throughout the circulatory system. Cardiac myocytes grow in response to a variety of physiological and pathological conditions; this growth challenges endoplasmic reticulum-protein quality control (ER-PQC), a major feature of which includes the unfolded protein response (UPR). ER-PQC and the UPR in cardiac myocytes growing under physiological conditions, including normal development, exercise, and pregnancy, are sufficient to support hypertrophic growth of each cardiac myocyte. However, the ER-PQC and UPR are insufficient to respond to the challenge of cardiac myocyte growth under pathological conditions, including myocardial infarction and heart failure. In part, this insufficiency is due to a continual decline in the expression levels of important adaptive UPR components as a function of age and during myocardial pathology. This chapter will discuss the physiological and pathological conditions unique to the heart that involves ER-PQC, and whether the UPR is adaptive or maladaptive under these circumstances.},
article-doi = {10.1007/82\_2017\_54},
author = {Arrieta, A. and Blackwood, E. A. and Glembotski, C. C.},
completed = {20180920},
electronic-issn = {2196-9965},
grantno = {R01 HL135893/HL/NHLBI NIH HHS/United States},
history = {2017/10/14 06:00 [entrez]},
journal = {Current topics in microbiology and immunology},
keywords = {Activating Transcription Factor 6/physiology, Animals, Endoplasmic Reticulum/*metabolism, Humans, Myocardium/*metabolism, Myocytes, Cardiac/metabolism, Proteins/*metabolism, Unfolded Protein Response/*physiology, eIF-2 Kinase/physiology},
language = {eng},
linking-issn = {0070-217X},
location-id = {10.1007/82\_2017\_54 [doi]},
manuscript-id = {NIHMS949659},
nlm-unique-id = {0110513},
owner = {NLM},
pages = {193--213},
print-issn = {0070-217X},
publication-status = {ppublish},
registry-number = {EC 2.7.11.1 (eIF-2 Kinase)},
revised = {20200225},
source = {Curr Top Microbiol Immunol. 2018;414:193-213. doi: 10.1007/82\_2017\_54.},
status = {MEDLINE},
subset = {IM},
timestamp = {2021.09.20},
title = {ER Protein Quality Control and the Unfolded Protein Response in the Heart.},
title-abbreviation = {Curr Top Microbiol Immunol},
volume = {414},
year = {2018}
}
@article{Sacchi_2017_JournaloftheAmericanHeartAssociation_6_,
abstract = {BACKGROUND: Aberrant Ca(2+) handling is a prominent feature of heart failure. Elucidation of the molecular mechanisms responsible for aberrant Ca(2+) handling is essential for the development of strategies to blunt pathological changes in calcium dynamics. The peptidyl-prolyl cis-trans isomerase peptidyl-prolyl isomerase 1 (Pin1) is a critical mediator of myocardial hypertrophy development and cardiac progenitor cell cycle. However, the influence of Pin1 on calcium cycling regulation has not been explored. On the basis of these findings, the aim of this study is to define Pin1 as a novel modulator of Ca(2+) handling, with implications for improving myocardial contractility and potential for ameliorating development of heart failure. METHODS AND RESULTS: Pin1 gene deletion or pharmacological inhibition delays cytosolic Ca(2+) decay in isolated cardiomyocytes. Paradoxically, reduced Pin1 activity correlates with increased sarco(endo)plasmic reticulum calcium ATPase (SERCA2a) and Na(2+)/Ca(2+) exchanger 1 protein levels. However, SERCA2a ATPase activity and calcium reuptake were reduced in sarcoplasmic reticulum membranes isolated from Pin1-deficient hearts, suggesting that Pin1 influences SERCA2a function. SERCA2a and Na(2+)/Ca(2+) exchanger 1 associated with Pin1, as revealed by proximity ligation assay in myocardial tissue sections, indicating that regulation of Ca(2+) handling within cardiomyocytes is likely influenced through Pin1 interaction with SERCA2a and Na(2+)/Ca(2+) exchanger 1 proteins. CONCLUSIONS: Pin1 serves as a modulator of SERCA2a and Na(2+)/Ca(2+) exchanger 1 Ca(2+) handling proteins, with loss of function resulting in impaired cardiomyocyte relaxation, setting the stage for subsequent investigations to assess Pin1 dysregulation and modulation in the progression of heart failure.},
article-doi = {10.1161/JAHA.117.006837},
article-pii = {JAH32561},
author = {Sacchi, Veronica and Wang, Bingyan J. and Kubli, Dieter and Martinez, Alexander S. and Jin, Jung-Kang and Alvarez, Roberto Jr and Hariharan, Nirmala and Glembotski, Christopher and Uchida, Takafumi and Malter, James S. and Yang, Yijun and Gross, Polina and Zhang, Chen and Houser, Steven and Rota, Marcello and Sussman, Mark A.},
completed = {20180604},
electronic-issn = {2047-9980},
electronic-publication = {20171010},
grantno = {R01 HL135893/HL/NHLBI NIH HHS/United States},
history = {2018/06/05 06:00 [medline]},
issue = {10},
journal = {Journal of the American Heart Association},
keywords = {Animals, Calcium/*metabolism, *Calcium Signaling, Heart Failure/*enzymology/genetics/physiopathology, Mice, Inbred C57BL, Mice, Knockout, Myocardial Contraction, Myocytes, Cardiac/*enzymology, NIMA-Interacting Peptidylprolyl Isomerase/deficiency/genetics/*metabolism, Protein Binding, Sarcoplasmic Reticulum/*enzymology, Sarcoplasmic Reticulum Calcium-Transporting ATPases/*metabolism, Sodium-Calcium Exchanger/*metabolism, Time Factors, Na+/Ca2+ exchange, cardiomyocyte, peptidyl‐prolyl isomerase 1, sarcoplasmic reticulum Ca2+‐ATPase},
language = {eng},
linking-issn = {2047-9980},
location-id = {e006837},
month = {Oct},
nlm-unique-id = {101580524},
owner = {NLM},
publication-status = {epublish},
registry-number = {SY7Q814VUP (Calcium)},
revised = {20190412},
source = {J Am Heart Assoc. 2017 Oct 10;6(10):e006837. doi: 10.1161/JAHA.117.006837.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Peptidyl-Prolyl Isomerase 1 Regulates Ca(2+) Handling by Modulating Sarco(Endo)Plasmic Reticulum Calcium ATPase and Na(2+)/Ca(2+) Exchanger 1 Protein Levels and Function.},
title-abbreviation = {J Am Heart Assoc},
volume = {6},
year = {2017}
}
@article{Glembotski_2017_CircRes_120_772,
abstract = {Recent interest in mechanisms of stem cell-mediated repair in the heart have spawned the ``paracrine hypothesis'', which posits that stem cells release beneficial substances that improve regeneration and function of the injured and diseased myocardium. In support of this hypothesis are findings that small membranous vesicles called exosomes are released from stem cells and deliver beneficial cargo to cells in the heart. However, in addition to exosomes, which are released by the unconventional secretory pathway, are many other factors released by the unconventional and the conventional secretory pathways. A broader perspective of mechanisms of secretion, as well as an appreciation for the ways in which the secretion of a wide range of different types of molecules can be regulated, will spawn new avenues of thought necessary to move us beyond the exosome-centric view that drives much of the current thinking of the paracrine hypothesis of stem cell-mediated repair in the heart.},
article-doi = {10.1161/CIRCRESAHA.116.310298},
article-pii = {CIRCRESAHA.116.310298},
author = {Glembotski, Christopher C.},
completed = {20190226},
electronic-issn = {1524-4571},
grantno = {P01 HL085577/HL/NHLBI NIH HHS/United States},
history = {2019/02/27 06:00 [medline]},
issue = {5},
journal = {Circulation research},
keywords = {Adult Stem Cells/*metabolism, Animals, Collagen/metabolism, Cytosol/metabolism, Exosomes/physiology, Fibroblasts/metabolism, Golgi Apparatus/metabolism, Heart/*physiology, Humans, Intercellular Signaling Peptides and Proteins/metabolism, Intracellular Signaling Peptides and Proteins/metabolism, Models, Biological, Myocardium/metabolism/pathology, Myocytes, Cardiac/metabolism, Paracrine Communication/*physiology, Regeneration/*physiology, *conventional, *exosomes, *heart, *secretion, *stem cells, *unconventional},
language = {eng},
linking-issn = {0009-7330},
location-id = {10.1161/CIRCRESAHA.116.310298 [doi]},
manuscript-id = {NIHMS840685},
month = {Mar},
nlm-unique-id = {0047103},
owner = {NLM},
pages = {772--774},
print-issn = {0009-7330},
publication-status = {ppublish},
registry-number = {9007-34-5 (Collagen)},
revised = {20190226},
source = {Circ Res. 2017 Mar 3;120(5):772-774. doi: 10.1161/CIRCRESAHA.116.310298.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Expanding the Paracrine Hypothesis of Stem Cell-Mediated Repair in the Heart: When the Unconventional Becomes Conventional.},
title-abbreviation = {Circ Res},
volume = {120},
year = {2017}
}
@article{Gray_2017_JMolCellCardiol_103_48,
abstract = {Deletion of Ca(2+)/calmodulin-dependent protein kinase II delta (CaMKIIδ) has been shown to protect against in vivo ischemia/reperfusion (I/R) injury. It remains unclear which CaMKIIδ isoforms and downstream mechanisms are responsible for the salutary effects of CaMKIIδ gene deletion. In this study we sought to compare the roles of the CaMKIIδ(B) and CaMKIIδ(C) subtypes and the mechanisms by which they contribute to ex vivo I/R damage. WT, CaMKIIδKO, and mice expressing only CaMKIIδ(B) or δ(C) were subjected to ex vivo global ischemia for 25min followed by reperfusion. Infarct formation was assessed at 60min reperfusion by triphenyl tetrazolium chloride (TTC) staining. Deletion of CaMKIIδ conferred significant protection from ex vivo I/R. Re-expression of CaMKIIδ(C) in the CaMKIIδKO background reversed this effect and exacerbated myocardial damage and dysfunction following I/R, while re-expression of CaMKIIδ(B) was protective. Selective activation of CaMKIIδ(C) in response to I/R was evident in a subcellular fraction enriched for cytosolic/membrane proteins. Further studies demonstrated differential regulation of nuclear factor kappa-light-chain-enhancer of activated B cells (NF-κB) signaling and tumor necrosis factor alpha (TNF-α) expression by CaMKIIδ(B) and CaMKIIδ(C). Selective activation of CaMKIIδ(C) was also observed and associated with NF-κB activation in neonatal rat ventricular myocytes (NRVMs) subjected to oxidative stress. Pharmacological inhibition of NF-κB or TNF-α significantly ameliorated infarct formation in WT mice and those that re-express CaMKIIδ(C), demonstrating distinct roles for CaMKIIδ subtypes in I/R and implicating acute activation of CaMKIIδ(C) and NF-κB in the pathogenesis of reperfusion injury.},
article-doi = {10.1016/j.yjmcc.2017.01.002},
article-pii = {S0022-2828(17)30002-0},
author = {Gray, Charles B. B. and Suetomi, Takeshi and Xiang, Sunny and Mishra, Shikha and Blackwood, Erik A. and Glembotski, Christopher C. and Miyamoto, Shigeki and Westenbrink, B. Daan and Brown, Joan Heller},
completed = {20170531},
electronic-issn = {1095-8584},
electronic-publication = {20170107},
grantno = {R01 HL105242/HL/NHLBI NIH HHS/United States},
history = {2017/01/13 06:00 [entrez]},
journal = {Journal of molecular and cellular cardiology},
keywords = {Animals, Biopsy, Calcium-Calmodulin-Dependent Protein Kinase Type 2/genetics/*metabolism, Disease Models, Animal, Echocardiography, Gene Knockout Techniques, Mice, Mice, Transgenic, Myocardial Infarction/diagnosis/etiology/*metabolism/mortality, Myocardial Reperfusion Injury/diagnosis/genetics/*metabolism/mortality, Myocardium/metabolism/pathology, Myocytes, Cardiac/metabolism, NF-kappa B/metabolism, Phosphorylation, Rats, Signal Transduction, Tumor Necrosis Factor-alpha/metabolism, Ventricular Dysfunction, *CaMKII, *Heart, *Inflammation, *Ischemia/reperfusion, *Myocardial Infarction, *NF-κB, *Signal transduction, *TNF-α},
language = {eng},
linking-issn = {0022-2828},
location-id = {10.1016/j.yjmcc.2017.01.002 [doi]},
manuscript-id = {NIHMS878037},
month = {Feb},
nlm-unique-id = {0262322},
owner = {NLM},
pages = {48--55},
print-issn = {0022-2828},
publication-status = {ppublish},
registry-number = {EC 2.7.11.17 (Calcium-Calmodulin-Dependent Protein Kinase Type 2)},
revised = {20181113},
source = {J Mol Cell Cardiol. 2017 Feb;103:48-55. doi: 10.1016/j.yjmcc.2017.01.002. Epub 2017 Jan 7.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {CaMKIIδ subtypes differentially regulate infarct formation following ex vivo myocardial ischemia/reperfusion through NF-κB and TNF-α.},
title-abbreviation = {J Mol Cell Cardiol},
volume = {103},
year = {2017}
}
@article{Jin_2017_CircRes_120_862,
abstract = {RATIONALE: Endoplasmic reticulum (ER) stress causes the accumulation of misfolded proteins in the ER, activating the transcription factor, ATF6 (activating transcription factor 6 alpha), which induces ER stress response genes. Myocardial ischemia induces the ER stress response; however, neither the function of this response nor whether it is mediated by ATF6 is known. OBJECTIVE: Here, we examined the effects of blocking the ATF6-mediated ER stress response on ischemia/reperfusion (I/R) in cardiac myocytes and mouse hearts. METHODS AND RESULTS: Knockdown of ATF6 in cardiac myocytes subjected to I/R increased reactive oxygen species and necrotic cell death, both of which were mitigated by ATF6 overexpression. Under nonstressed conditions, wild-type and ATF6 knockout mouse hearts were similar. However, compared with wild-type, ATF6 knockout hearts showed increased damage and decreased function after I/R. Mechanistically, gene array analysis showed that ATF6, which is known to induce genes encoding ER proteins that augment ER protein folding, induced numerous oxidative stress response genes not previously known to be ATF6-inducible. Many of the proteins encoded by the ATF6-induced oxidative stress genes identified here reside outside the ER, including catalase, which is known to decrease damaging reactive oxygen species in the heart. Catalase was induced by the canonical ER stressor, tunicamycin, and by I/R in cardiac myocytes from wild-type but not in cardiac myocytes from ATF6 knockout mice. ER stress response elements were identified in the catalase gene and were shown to bind ATF6 in cardiac myocytes, which increased catalase promoter activity. Overexpression of catalase, in vivo, restored ATF6 knockout mouse heart function to wild-type levels in a mouse model of I/R, as did adeno-associated virus 9-mediated ATF6 overexpression. CONCLUSIONS: ATF6 serves an important role as a previously unappreciated link between the ER stress and oxidative stress gene programs, supporting a novel mechanism by which ATF6 decreases myocardial I/R damage.},
article-doi = {10.1161/CIRCRESAHA.116.310266},
article-pii = {CIRCRESAHA.116.310266},
author = {Jin, Jung-Kang and Blackwood, Erik A. and Azizi, Khalid and Thuerauf, Donna J. and Fahem, Asal G. and Hofmann, Christoph and Kaufman, Randal J. and Doroudgar, Shirin and Glembotski, Christopher C.},
comment = {Circ Res. 2017 Mar 3;120(5):759-761. PMID: 28254796},
completed = {20170508},
electronic-issn = {1524-4571},
electronic-publication = {20161208},
grantno = {R01 CA198103/CA/NCI NIH HHS/United States},
history = {2016/12/10 06:00 [entrez]},
issue = {5},
journal = {Circulation research},
keywords = {Activating Transcription Factor 6/*biosynthesis/deficiency, Animals, Animals, Newborn, Endoplasmic Reticulum Stress/*physiology, HEK293 Cells, HeLa Cells, Humans, Mice, Mice, Inbred C57BL, Mice, Knockout, Myocardial Reperfusion Injury/*metabolism/pathology/prevention \& control, Myocardium/*metabolism/pathology, Myocytes, Cardiac, Oxidative Stress/*physiology, Rats, Rats, Sprague-Dawley, Signal Transduction/physiology, ATF6, cardiac myocyte, catalase, endoplasmic reticulum stress, ischemia, ischemia/reperfusion injury, oxidative stress, protein folding, unfolded protein response},
language = {eng},
linking-issn = {0009-7330},
location-id = {10.1161/CIRCRESAHA.116.310266 [doi]},
manuscript-id = {NIHMS835441},
month = {Mar},
nlm-unique-id = {0047103},
owner = {NLM},
pages = {862--875},
print-issn = {0009-7330},
publication-status = {ppublish},
registry-number = {0 (Atf6 protein, mouse)},
revised = {20181113},
source = {Circ Res. 2017 Mar 3;120(5):862-875. doi: 10.1161/CIRCRESAHA.116.310266. Epub 2016 Dec 8.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {ATF6 Decreases Myocardial Ischemia/Reperfusion Damage and Links ER Stress and Oxidative Stress Signaling Pathways in the Heart.},
title-abbreviation = {Circ Res},
volume = {120},
year = {2017}
}
@article{Doroudgar_2016_JMolCellCardiol_100_54,
abstract = {BACKGROUND: Myocardial infarction is followed by cardiac dysfunction, cellular death, and ventricular remodeling, including tissue fibrosis. S100A4 protein plays multiple roles in cellular survival, and tissue fibrosis, but the relative role of the S100A4 in the myocardium after myocardial infarction is unknown. This study aims to investigate the role of S100A4 in myocardial remodeling and cardiac function following infarct damage. METHODS AND RESULTS: S100A4 expression is low in the adult myocardium, but significantly increased following myocardial infarction. Deletion of S100A4 increased cardiac damage after myocardial infarction, whereas cardiac myocyte-specific overexpression of S100A4 protected the infarcted myocardium. Decreased cardiac function in S100A4 Knockout mice was accompanied with increased cardiac remodeling, fibrosis, and diminished capillary density in the remote myocardium. Loss of S100A4 caused increased apoptotic cell death both in vitro and in vivo in part mediated by decreased VEGF expression. Conversely, S100A4 overexpression protected cells against apoptosis in vitro and in vivo. Increased pro-survival AKT-signaling explained reduced apoptosis in S100A4 overexpressing cells. CONCLUSION: S100A4 expression protects cardiac myocytes against myocardial ischemia and is required for stabilization of cardiac function after MI.},
article-doi = {10.1016/j.yjmcc.2016.10.001},
article-pii = {S0022-2828(16)30377-7},
author = {Doroudgar, Shirin and Quijada, Pearl and Konstandin, Mathias and Ilves, Kelli and Broughton, Kathleen and Khalafalla, Farid G. and Casillas, Alexandria and Nguyen, Kristine and Gude, Natalie and Toko, Haruhiro and Ornelas, Luis and Thuerauf, Donna J. and Glembotski, Christopher C. and Sussman, Mark A. and V{\"o}lkers, Mirko},
completed = {20170531},
electronic-issn = {1095-8584},
electronic-publication = {20161006},
grantno = {R21 HL102613/HL/NHLBI NIH HHS/United States},
history = {2016/10/11 06:00 [entrez]},
journal = {Journal of molecular and cellular cardiology},
keywords = {Animals, Cell Death/genetics, Disease Models, Animal, Echocardiography, Gene Expression, Hemodynamics, Mice, Mice, Knockout, Myocardial Infarction/diagnosis/genetics/metabolism/physiopathology, Myocardial Ischemia/diagnosis/*genetics/*metabolism/physiopathology, Myocardium/*metabolism/pathology, S100 Calcium-Binding Protein A4/*genetics/metabolism, Stress, Physiological/*genetics, Ventricular Remodeling, *Myocardial infarction, *Remodeling, *S100A4},
language = {eng},
linking-issn = {0022-2828},
location-id = {10.1016/j.yjmcc.2016.10.001 [doi]},
manuscript-id = {NIHMS876822},
month = {Nov},
nlm-unique-id = {0262322},
owner = {NLM},
pages = {54--63},
print-issn = {0022-2828},
publication-status = {ppublish},
registry-number = {0 (S100 Calcium-Binding Protein A4)},
revised = {20181113},
source = {J Mol Cell Cardiol. 2016 Nov;100:54-63. doi: 10.1016/j.yjmcc.2016.10.001. Epub 2016 Oct 6.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {S100A4 protects the myocardium against ischemic stress.},
title-abbreviation = {J Mol Cell Cardiol},
volume = {100},
year = {2016}
}
@article{Reynolds_2016_IntJCardiol_225_371,
abstract = {BACKGROUND: Junctophilin-2 (JPH2) is the primary structural protein for the coupling of transverse (T)-tubule associated cardiac L-type Ca channels and type-2 ryanodine receptors on the sarcoplasmic reticulum within junctional membrane complexes (JMCs) in cardiomyocytes. Effective signaling between these channels ensures adequate Ca-induced Ca release required for normal cardiac contractility. Disruption of JMC subcellular domains, a common feature of failing hearts, has been attributed to JPH2 downregulation. Here, we tested the hypothesis that adeno-associated virus type 9 (AAV9) mediated overexpression of JPH2 could halt the development of heart failure in a mouse model of transverse aortic constriction (TAC). METHODS AND RESULTS: Following TAC, a progressive decrease in ejection fraction was paralleled by a progressive decrease of cardiac JPH2 levels. AAV9-mediated expression of JPH2 rescued cardiac contractility in mice subjected to TAC. AAV9-JPH2 also preserved T-tubule structure. Moreover, the Ca(2+) spark frequency was reduced and the Ca(2+) transient amplitude was increased in AAV9-JPH2 mice following TAC, consistent with JPH2-mediated normalization of SR Ca(2+) handling. CONCLUSIONS: This study demonstrates that AAV9-mediated JPH2 gene therapy maintained cardiac function in mice with early stage heart failure. Moreover, restoration of JPH2 levels prevented loss of T-tubules and suppressed abnormal SR Ca(2+) leak associated with contractile failure following TAC. These findings suggest that targeting JPH2 might be an attractive therapeutic approach for treating pathological cardiac remodeling during heart failure.},
article-doi = {10.1016/j.ijcard.2016.10.021},
article-pii = {S0167-5273(16)32855-8},
author = {Reynolds, Julia O. and Quick, Ann P. and Wang, Qiongling and Beavers, David L. and Philippen, Leonne E. and Showell, Jordan and Barreto-Torres, Giselle and Thuerauf, Donna J. and Doroudgar, Shirin and Glembotski, Christopher C. and Wehrens, Xander H. T.},
completed = {20171025},
electronic-issn = {1874-1754},
electronic-publication = {20161008},
grantno = {R01 HL091947/HL/NHLBI NIH HHS/United States},
history = {2016/10/21 06:00 [entrez]},
journal = {International journal of cardiology},
keywords = {Adenoviridae/genetics, Animals, Calcium Signaling/drug effects/*physiology, Cells, Cultured, Genetic Therapy/*methods, Genetic Vectors/administration \& dosage/genetics, Heart Failure/diagnostic imaging/*metabolism/*therapy, Male, Membrane Proteins/*biosynthesis/genetics, Mice, Mice, Inbred C57BL, Muscle Proteins/*biosynthesis/genetics, Myocytes, Cardiac/drug effects/metabolism, Ryanodine Receptor Calcium Release Channel/*physiology, Calcium, Cardiomyopathy, Gene therapy, Heart failure, Junctophilin, T-tubule},
language = {eng},
linking-issn = {0167-5273},
location-id = {10.1016/j.ijcard.2016.10.021 [doi]},
manuscript-id = {NIHMS823603},
month = {Dec},
nlm-unique-id = {8200291},
owner = {NLM},
pages = {371--380},
print-issn = {0167-5273},
publication-status = {ppublish},
registry-number = {0 (ryanodine receptor 2. mouse)},
revised = {20210112},
source = {Int J Cardiol. 2016 Dec 15;225:371-380. doi: 10.1016/j.ijcard.2016.10.021. Epub 2016 Oct 8.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Junctophilin-2 gene therapy rescues heart failure by normalizing RyR2-mediated Ca(2+) release.},
title-abbreviation = {Int J Cardiol},
volume = {225},
year = {2016}
}
@article{Yu_2017_JCerebBloodFlowMetab_37_1069,
abstract = {Impaired function of the endoplasmic reticulum (ER stress) is a hallmark of many human diseases including stroke. To restore ER function in stressed cells, the unfolded protein response (UPR) is induced, which activates 3 ER stress sensor proteins including activating transcription factor 6 (ATF6). ATF6 is then cleaved by proteases to form the short-form ATF6 (sATF6), a transcription factor. To determine the extent to which activation of the ATF6 UPR branch defines the fate and function of neurons after stroke, we generated a conditional and tamoxifen-inducible sATF6 knock-in mouse. To express sATF6 in forebrain neurons, we crossed our sATF6 knock-in mouse line with Emx1-Cre mice to generate ATF6-KI mice. After the ATF6 branch was activated in ATF6-KI mice with tamoxifen, mice were subjected to transient middle cerebral artery occlusion. Forced activation of the ATF6 UPR branch reduced infarct volume and improved functional outcome at 24\,h after stroke. Increased autophagic activity at early reperfusion time after stroke may contribute to the ATF6-mediated neuroprotection. We concluded that the ATF6 UPR branch is crucial to ischemic stroke outcome. Therefore, boosting UPR pro-survival pathways may be a promising therapeutic strategy for stroke.},
article-doi = {10.1177/0271678X16650218},
article-pii = {10.1177\_0271678X16650218},
author = {Yu, Zhui and Sheng, Huaxin and Liu, Shuai and Zhao, Shengli and Glembotski, Christopher C. and Warner, David S. and Paschen, Wulf and Yang, Wei},
completed = {20170818},
electronic-issn = {1559-7016},
electronic-publication = {20160720},
grantno = {R03 NS078590/NS/NINDS NIH HHS/United States},
history = {2016/05/25 06:00 [entrez]},
issue = {3},
journal = {Journal of cerebral blood flow and metabolism : official journal of the International Society of Cerebral Blood Flow and Metabolism},
keywords = {Activating Transcription Factor 6/genetics/*metabolism/pharmacology, Animals, Autophagy, Brain Infarction, Gene Knock-In Techniques, Infarction, Middle Cerebral Artery, Mice, Neurons/*metabolism, Neuroprotection/*drug effects, Recovery of Function, Stroke/*drug therapy, *Unfolded Protein Response, Brain ischemia, endoplasmic reticulum stress, neuroprotection, transgenic mice, unfolded protein response},
language = {eng},
linking-issn = {0271-678X},
location-id = {10.1177/0271678X16650218 [doi]},
month = {Mar},
nlm-unique-id = {8112566},
owner = {NLM},
pages = {1069--1079},
print-issn = {0271-678X},
publication-status = {ppublish},
registry-number = {0 (Atf6 protein, mouse)},
revised = {20181113},
source = {J Cereb Blood Flow Metab. 2017 Mar;37(3):1069-1079. doi: 10.1177/0271678X16650218. Epub 2016 Jul 20.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Activation of the ATF6 branch of the unfolded protein response in neurons improves stroke outcome.},
title-abbreviation = {J Cereb Blood Flow Metab},
volume = {37},
year = {2017}
}
@inproceedings{Glembotski_2015__117_914,
article-doi = {10.1161/CIRCRESAHA.115.307644},
article-pii = {CIRCRESAHA.115.307644},
author = {Glembotski, Christopher C.},
booktitle = {Circulation research},
comment = {Circ Res. 2015 Nov 6;117(11):956-66. PMID: 26383969},
completed = {20160219},
electronic-issn = {1524-4571},
grantno = {P01 HL085577/HL/NHLBI NIH HHS/United States},
history = {2016/02/20 06:00 [medline]},
issue = {11},
keywords = {Animals, Carrier Proteins/*metabolism, Cytosol/*metabolism, Female, Heart Diseases/*prevention \& control, Heart Ventricles/*metabolism, Male, Myocytes, Cardiac/*metabolism, *Signal Transduction, alpha-Crystallin B Chain/*metabolism, Editorials, proteasome endopeptidase complex, proteolysis, ubiquitination},
language = {eng},
linking-issn = {0009-7330},
location-id = {10.1161/CIRCRESAHA.115.307644 [doi]},
manuscript-id = {NIHMS730250},
month = {Nov},
nlm-unique-id = {0047103},
owner = {NLM},
pages = {914--6},
print-issn = {0009-7330},
publication-status = {ppublish},
registry-number = {0 (alpha-Crystallin B Chain)},
revised = {20181202},
source = {Circ Res. 2015 Nov 6;117(11):914-6. doi: 10.1161/CIRCRESAHA.115.307644.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Breaking down the COP9 Signalsome in the heart: how inactivating a protein ubiquitin ligase increases protein ubiquitylation and protects the heart.},
title-abbreviation = {Circ Res},
volume = {117},
year = {2015}
}
@article{Doroudgar_2015_CircRes_117_536,
abstract = {RATIONALE: Hydroxymethyl glutaryl-coenzyme A reductase degradation protein 1 (Hrd1) is an endoplasmic reticulum (ER)-transmembrane E3 ubiquitin ligase that has been studied in yeast, where it contributes to ER protein quality control by ER-associated degradation (ERAD) of misfolded proteins that accumulate during ER stress. Neither Hrd1 nor ERAD has been studied in the heart, or in cardiac myocytes, where protein quality control is critical for proper heart function. OBJECTIVE: The objective of this study were to elucidate roles for Hrd1 in ER stress, ERAD, and viability in cultured cardiac myocytes and in the mouse heart, in vivo. METHODS AND RESULTS: The effects of small interfering RNA-mediated Hrd1 knockdown were examined in cultured neonatal rat ventricular myocytes. The effects of adeno-associated virus-mediated Hrd1 knockdown and overexpression were examined in the hearts of mice subjected to pressure overload-induced pathological cardiac hypertrophy, which challenges protein-folding capacity. In cardiac myocytes, the ER stressors, thapsigargin and tunicamycin increased ERAD, as well as adaptive ER stress proteins, and minimally affected cell death. However, when Hrd1 was knocked down, thapsigargin and tunicamycin dramatically decreased ERAD, while increasing maladaptive ER stress proteins and cell death. In vivo, Hrd1 knockdown exacerbated cardiac dysfunction and increased apoptosis and cardiac hypertrophy, whereas Hrd1 overexpression preserved cardiac function and decreased apoptosis and attenuated cardiac hypertrophy in the hearts of mice subjected to pressure overload. CONCLUSIONS: Hrd1 and ERAD are essential components of the adaptive ER stress response in cardiac myocytes. Hrd1 contributes to preserving heart structure and function in a mouse model of pathological cardiac hypertrophy.},
article-doi = {10.1161/CIRCRESAHA.115.306993},
article-pii = {CIRCRESAHA.115.306993},
author = {Doroudgar, Shirin and V{\"o}lkers, Mirko and Thuerauf, Donna J. and Khan, Mohsin and Mohsin, Sadia and Respress, Jonathan L. and Wang, Wei and Gude, Natalie and M{\"u}ller, Oliver J. and Wehrens, Xander H. T. and Sussman, Mark A. and Glembotski, Christopher C.},
comment = {Circ Res. 2015 Aug 28;117(6):484-6. PMID: 26316602},
completed = {20151116},
electronic-issn = {1524-4571},
electronic-publication = {20150702},
grantno = {R01 HL117641/HL/NHLBI NIH HHS/United States},
history = {2015/11/17 06:00 [medline]},
issue = {6},
journal = {Circulation research},
keywords = {Adaptation, Physiological/*physiology, Animals, Animals, Newborn, Cells, Cultured, Endoplasmic Reticulum/metabolism, Endoplasmic Reticulum Stress/*physiology, Endoplasmic Reticulum-Associated Degradation/*physiology, Gene Knockdown Techniques, Mice, Myocytes, Cardiac/*metabolism, Rats, Rats, Sprague-Dawley, Ubiquitin-Protein Ligases/*biosynthesis, cardiac, endoplasmic reticulum stress, hydroxymethylglutaryl CoA reductases, myocytes, protein folding, proteolysis},
language = {eng},
linking-issn = {0009-7330},
location-id = {10.1161/CIRCRESAHA.115.306993 [doi]},
manuscript-id = {NIHMS704862},
month = {Aug},
nlm-unique-id = {0047103},
owner = {NLM},
pages = {536--46},
print-issn = {0009-7330},
publication-status = {ppublish},
registry-number = {EC 2.3.2.27 (Ubiquitin-Protein Ligases)},
revised = {20181113},
source = {Circ Res. 2015 Aug 28;117(6):536-46. doi: 10.1161/CIRCRESAHA.115.306993. Epub 2015 Jul 2.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Hrd1 and ER-Associated Protein Degradation, ERAD, are Critical Elements of the Adaptive ER Stress Response in Cardiac Myocytes.},
title-abbreviation = {Circ Res},
volume = {117},
year = {2015}
}
@article{Glembotski_2014_CircRes_115_546,
abstract = {The ER stress-inducible transcription factor, x-box binding protein 1 (XBP1), which enhances protein glycosylation in the endoplasmic reticulum (ER), was shown to also enhance protein glycosylation outside the ER, via a process called O-GlcNAcylation, which protected the heart from ischemia/reperfusion damage.},
article-doi = {10.1161/CIRCRESAHA.114.304855},
article-pii = {CIRCRESAHA.114.304855},
author = {Glembotski, Christopher C.},
comment = {Cell. 2014 Mar 13;156(6):1179-92. PMID: 24630721},
completed = {20141107},
electronic-issn = {1524-4571},
grantno = {P01 HL085577/HL/NHLBI NIH HHS/United States},
history = {2014/11/08 06:00 [medline]},
issue = {6},
journal = {Circulation research},
keywords = {Animals, *Biosynthetic Pathways, DNA-Binding Proteins/*metabolism, Hexosamines/*metabolism, Humans, Male, Transcription Factors/*metabolism, *Unfolded Protein Response},
language = {eng},
linking-issn = {0009-7330},
location-id = {10.1161/CIRCRESAHA.114.304855 [doi]},
manuscript-id = {NIHMS617438},
month = {Aug},
nlm-unique-id = {0047103},
owner = {NLM},
pages = {546--8},
print-issn = {0009-7330},
publication-status = {ppublish},
registry-number = {0 (Transcription Factors)},
revised = {20181202},
source = {Circ Res. 2014 Aug 29;115(6):546-8. doi: 10.1161/CIRCRESAHA.114.304855.},
status = {MEDLINE},
subset = {IM},
timestamp = {2021.09.20},
title = {Finding the missing link between the unfolded protein response and O-GlcNAcylation in the heart.},
title-abbreviation = {Circ Res},
volume = {115},
year = {2014}
}
@article{Volkers_2014_EMBOmolecularmedicine_6_57,
abstract = {Diabetes is a multi-organ disease and diabetic cardiomyopathy can result in heart failure, which is a leading cause of morbidity and mortality in diabetic patients. In the liver, insulin resistance contributes to hyperglycaemia and hyperlipidaemia, which further worsens the metabolic profile. Defects in mTOR signalling are believed to contribute to metabolic dysfunctions in diabetic liver and hearts, but evidence is missing that mTOR activation is causal to the development of diabetic cardiomyopathy. This study shows that specific mTORC1 inhibition by PRAS40 prevents the development of diabetic cardiomyopathy. This phenotype was associated with improved metabolic function, blunted hypertrophic growth and preserved cardiac function. In addition PRAS40 treatment improves hepatic insulin sensitivity and reduces systemic hyperglycaemia in obese mice. Thus, unlike rapamycin, mTORC1 inhibition with PRAS40 improves metabolic profile in diabetic mice. These findings may open novel avenues for therapeutic strategies using PRAS40 directed against diabetic-related diseases.},
article-doi = {10.1002/emmm.201303183},
article-pii = {emmm.201303183},
author = {V{\"o}lkers, Mirko and Doroudgar, Shirin and Nguyen, Nathalie and Konstandin, Mathias H. and Quijada, Pearl and Din, Shabana and Ornelas, Luis and Thuerauf, Donna J. and Gude, Natalie and Friedrich, Kilian and Herzig, Stephan and Glembotski, Christopher C. and Sussman, Mark A.},
completed = {20140725},
electronic-issn = {1757-4684},
grantno = {R01 HL105759-03/HL/NHLBI NIH HHS/United States},
history = {2014/07/26 06:00 [medline]},
issue = {1},
journal = {EMBO molecular medicine},
keywords = {Adenoviridae/genetics, Animals, Cells, Cultured, Diabetes Mellitus, Experimental/complications/metabolism, Diabetic Cardiomyopathies/etiology/*prevention \& control, Diet, High-Fat, Genetic Vectors/metabolism, Insulin/*metabolism, Male, Mechanistic Target of Rapamycin Complex 1, Metabolome, Mice, Mice, Inbred C57BL, Mice, Obese, Multiprotein Complexes/antagonists \& inhibitors/metabolism, Myocytes, Cardiac/cytology/*metabolism, Obesity/complications/metabolism, Phenotype, Phosphoproteins/genetics/*metabolism, TOR Serine-Threonine Kinases/antagonists \& inhibitors/metabolism},
language = {eng},
linking-issn = {1757-4676},
location-id = {10.1002/emmm.201303183 [doi]},
month = {Jan},
nlm-unique-id = {101487380},
owner = {NLM},
pages = {57--65},
print-issn = {1757-4676},
publication-status = {ppublish},
registry-number = {EC 2.7.11.1 (Mechanistic Target of Rapamycin Complex 1)},
revised = {20181113},
source = {EMBO Mol Med. 2014 Jan;6(1):57-65. doi: 10.1002/emmm.201303183.},
status = {MEDLINE},
subset = {IM},
timestamp = {2021.09.20},
title = {PRAS40 prevents development of diabetic cardiomyopathy and improves hepatic insulin sensitivity in obesity.},
title-abbreviation = {EMBO Mol Med},
volume = {6},
year = {2014}
}
@article{Glembotski_2013_CircRes_113_1112,
article-doi = {10.1161/CIRCRESAHA.113.302490},
article-pii = {CIRCRESAHA.113.302490},
author = {Glembotski, Christopher C.},
completed = {20140214},
electronic-issn = {1524-4571},
grantno = {P01 HL085577/HL/NHLBI NIH HHS/United States},
history = {2014/02/15 06:00 [medline]},
issue = {10},
journal = {Circulation research},
keywords = {Animals, Autobiographies as Topic, Catecholamines/physiology, Cell Differentiation/physiology, Cell Proliferation, Cells, Cultured, *Disease Models, Animal, History, 20th Century, History, 21st Century, Hypertrophy/pathology/physiopathology, Myocytes, Cardiac/*pathology/*physiology, Rats, Receptors, Adrenergic/physiology, adrenergic agents, alpha1-adrenergic receptor, cultured cardiac myocytes, heart failure, hypertrophy, muscle cells},
language = {eng},
linking-issn = {0009-7330},
location-id = {10.1161/CIRCRESAHA.113.302490 [doi]},
manuscript-id = {NIHMS674012},
month = {Oct},
nlm-unique-id = {0047103},
owner = {NLM},
pages = {1112--6},
print-issn = {0009-7330},
publication-status = {ppublish},
registry-number = {0 (Receptors, Adrenergic)},
revised = {20191210},
source = {Circ Res. 2013 Oct 25;113(10):1112-6. doi: 10.1161/CIRCRESAHA.113.302490.},
status = {MEDLINE},
subset = {IM},
termowner = {NOTNLM},
timestamp = {2021.09.20},
title = {Classic studies of cultured cardiac myocyte hypertrophy: interview with a transformer.},
title-abbreviation = {Circ Res},
volume = {113},