Iron-regulatory proteins secure iron availability in cardiomyocytes to prevent heart failure

Results

Reduced iron content, IRE binding activity, and transferrin receptor expression in the failing human heart

labels <- list('non-failing heart (NF)', 'failing heart (F)')

data <- list(c(99, 52), c(96, 40), c(100, 38), c(105, 18), 
             c(NA_integer_, 11), c(NA_integer_, 5), c(NA_integer_, 42), 
             c(NA_integer_, 55), c(NA_integer_, 53), c(NA_integer_, 39),
             c(NA_integer_, 42), c(NA_integer_, 50))

df <- setNames(do.call(rbind.data.frame, 
                       lapply(data, function(d) data.frame(d[1], d[2]))),
              labels)    
df
                           
                           
results <- t.test(df[['non-failing heart (NF)']], df[['failing heart (F)']])

results
                           
results$statistic
results$estimate
results$p.value
                           
ceiling(results$p.value * 1000.0)/ 1000.0

Consistent with previous reports {cite}maeder2011,leszek2012 iron concentration was significantly lower in LV tissue samples from patients with advanced heart failure than in LV tissue samples from unused donor hearts. As shown by electrophoretic mobility shift assays, IRE binding activity was significantly (p < formatC(pvalue,3,format="f") ) reduced in failing hearts (most pronounced in patients with ischemic cardiomyopathy) ({ref}Figure 1<fig1>). Protein expression levels of the transferrin receptor were significantly lower in failing hearts than in the controls.

fig, ax = plt.subplots()

d = df.to_numpy()
f = [d[m] for d, m in zip(d.T, ~np.isnan(d).T)]

ax.boxplot(f)
ax.set_ylim([0, 150])
ax.set_ylabel('IRE binding activity (%)', fontsize=14)
ax.set_xticklabels(['NF', 'F'])
ax.tick_params(axis='x', labelsize=14, labelrotation=45)
ax.tick_params(axis='y', labelsize=14)

glue('fig1', fig, display=False)

References

LSS+12

Przemysław Leszek, Barbara Sochanowicz, Małgorzata Szperl, Piotr Kolsut, Kamil Brzóska, Walerian Piotrowski, Tomasz M. Rywik, Bożena Danko, Halina Polkowska-Motrenko, Jacek M. Różański, and et al. Myocardial iron homeostasis in advanced chronic heart failure patients. International Journal of Cardiology, 159(1):47–52, Aug 2012. URL: https://doi.org/10.1016/j.ijcard.2011.08.006, doi:10.1016/j.ijcard.2011.08.006.

MKdRK11

Micha T. Maeder, Ouda Khammy, Cris dos Remedios, and David M. Kaye. Myocardial and systemic iron depletion in heart failure. Journal of the American College of Cardiology, 58(5):474–480, Jul 2011. URL: https://doi.org/10.1016/j.jacc.2011.01.059, doi:10.1016/j.jacc.2011.01.059.