Imaging Biomarkers in MASLD and Obesity Correlating Hepatic Fat Fraction, Adiposity Distribution, and Doppler Hemodynamic with Disease Severity
Content of PPT: Title slide: Tilte, investigator, guide, department etc Aim and objectives Methodology Expected outcome References
MASLD imaging biomarkers MRI proton density fat fraction visceral adipose tissue Doppler hemodynamics disease severity review
MASLD imaging biomarkers
MASLD magnetic resonance proton density fat fraction visceral adipose tissue
https://pmc.ncbi.nlm.nih.gov/articles/PMC12865115
PMID: 39400428
MRI abdominal visceral adipose tissue subcutaneous adipose tissue segmentation diagram
~/
mkdir -p "/tmp/workspace/masld-imaging-ppt/src" "/tmp/workspace/masld-imaging-ppt/output" && python - <<'PY' from pptx import Presentation from pptx.util import Inches, Pt from pptx.dml.color import RGBColor from pptx.enum.text import PP_ALIGN, MSO_ANCHOR from pptx.enum.shapes import MSO_SHAPE from pptx.enum.dml import MSO_THEME_COLOR from pptx.enum.text import MSO_AUTO_SIZE out='/tmp/workspace/masld-imaging-ppt/output/MASLD_Imaging_Biomarkers_Research_Protocol.pptx' prs=Presentation(); prs.slide_width=Inches(13.333); prs.slide_height=Inches(7.5) blank=prs.slide_layouts[6] NAVY=RGBColor(14,45,70); TEAL=RGBColor(0,137,137); SKY=RGBColor(214,239,241); INK=RGBColor(35,48,58); MUTED=RGBColor(93,110,122); WHITE=RGBColor(255,255,255); GOLD=RGBColor(239,180,55); PALE=RGBColor(244,248,249) def rect(sl,x,y,w,h,color, radius=False): s=sl.shapes.add_shape(MSO_SHAPE.ROUNDED_RECTANGLE if radius else MSO_SHAPE.RECTANGLE, Inches(x), Inches(y), Inches(w), Inches(h)); s.fill.solid();s.fill.fore_color.rgb=color;s.line.fill.background();return s def text(sl,x,y,w,h,txt,size=20,color=INK,bold=False,align=PP_ALIGN.LEFT, font='Aptos', valign=MSO_ANCHOR.TOP): tb=sl.shapes.add_textbox(Inches(x), Inches(y), Inches(w), Inches(h)); tf=tb.text_frame; tf.clear(); tf.word_wrap=True; tf.margin_left=Inches(.03);tf.margin_right=Inches(.03);tf.margin_top=Inches(.02);tf.margin_bottom=Inches(.02);tf.vertical_anchor=valign for i,line in enumerate(txt.split('\n')): p=tf.paragraphs[0] if i==0 else tf.add_paragraph();p.text=line;p.alignment=align;p.space_after=Pt(4) for r in p.runs:r.font.name=font;r.font.size=Pt(size);r.font.bold=bold;r.font.color.rgb=color return tb def bullet(sl,x,y,w,h,items,size=19): tb=sl.shapes.add_textbox(Inches(x), Inches(y), Inches(w), Inches(h));tf=tb.text_frame;tf.clear();tf.word_wrap=True;tf.margin_left=Inches(.04);tf.margin_right=Inches(.04) for i,item in enumerate(items): p=tf.paragraphs[0] if i==0 else tf.add_paragraph();p.text=item;p.level=0;p.font.size=Pt(size);p.font.name='Aptos';p.font.color.rgb=INK;p.space_after=Pt(10);p._p.get_or_add_pPr().insert(0, __import__('pptx').oxml.xmlchemy.OxmlElement('a:buChar')); # fails? return tb def title(sl,kicker,heading,sub=''): rect(sl,0,0,13.333,.22,TEAL); text(sl,.65,.46,12,.28,kicker.upper(),11,TEAL,True);text(sl,.65,.78,12,0.72,heading,30,NAVY,True); if sub:text(sl,.67,1.5,11.8,.45,sub,14,MUTED) rect(sl,.65,2.05,1.15,.06,GOLD) def footer(sl,num): text(sl,.65,7.15,6,.2,'Department of Radiodiagnosis | Research Protocol',9,MUTED);text(sl,12.2,7.15,.45,.2,str(num),9,MUTED,True,PP_ALIGN.RIGHT) # 1 s=prs.slides.add_slide(blank);rect(s,0,0,13.333,7.5,NAVY);rect(s,0,0,13.333,.18,TEAL);rect(s,.78,1.12,.12,4.55,GOLD) text(s,1.18,1.18,11.1,.35,'RESEARCH PROTOCOL',13,RGBColor(150,221,220),True) text(s,1.18,1.7,10.9,1.55,'Imaging Biomarkers in MASLD and Obesity',34,WHITE,True) text(s,1.18,3.2,10.6,.75,'Correlation of hepatic fat fraction, adiposity distribution, and Doppler hemodynamics with disease severity',20,RGBColor(219,234,239)) rect(s,1.18,4.55,10.5,.02,RGBColor(81,123,145));text(s,1.18,4.9,10.4,.9,'Investigator: [Name]\nGuide: [Name and Designation]\nDepartment of Radiodiagnosis, [Institution]',18,WHITE) text(s,1.18,6.62,10,.25,'[Month Year]',12,RGBColor(150,221,220)) # 2 aim s=prs.slides.add_slide(blank);title(s,'Study premise','Aim and objectives','Non-invasive, quantitative imaging phenotype of MASLD in adults with obesity') rect(s,.68,2.35,12,1.03,SKY,True);text(s,.98,2.56,11.4,.48,'Aim: To assess the relationship of imaging biomarkers of hepatic steatosis, adiposity distribution, and hepatic Doppler hemodynamics with MASLD disease severity.',19,NAVY,True) text(s,.7,3.78,5.8,.3,'PRIMARY OBJECTIVES',13,TEAL,True);text(s,6.9,3.78,5.5,.3,'SECONDARY OBJECTIVES',13,TEAL,True) for x,y,w,h,head,body in [(.7,4.18,5.7,.88,'01 Hepatic fat','Quantify hepatic fat fraction using MRI-PDFF and correlate it with steatosis grade and fibrosis risk.'),(.7,5.2,5.7,.88,'02 Adiposity distribution','Measure visceral and subcutaneous adipose tissue and examine their association with hepatic fat fraction.'),(6.9,4.18,5.7,.88,'03 Hemodynamics','Evaluate portal-vein and hepatic-vein Doppler indices in relation to fat burden and fibrosis risk.'),(6.9,5.2,5.7,.88,'04 Integrated phenotype','Develop an imaging-based model for stratification of MASLD severity.')]: rect(s,x,y,w,h,PALE,True);text(s,x+.23,y+.14,w-.45,.22,head,15,NAVY,True);text(s,x+.23,y+.4,w-.45,.37,body,13,INK) footer(s,2) #3 s=prs.slides.add_slide(blank);title(s,'Design','Methodology','Prospective cross-sectional observational study') # flow labels=[('Population','Adults with obesity\nand suspected/known MASLD'),('Clinical & labs','Anthropometry, metabolic profile,\nLFTs, FIB-4 / ELF if available'),('Imaging','US + Doppler\nMRI-PDFF ± MRE'),('Analysis','Correlation, regression,\nseverity stratification')] for i,(h,b) in enumerate(labels): x=.68+i*3.12;rect(s,x,2.45,2.65,1.22,PALE,True);text(s,x+.16,2.66,2.34,.22,h,15,NAVY,True,PP_ALIGN.CENTER);text(s,x+.14,2.98,2.36,.45,b,12,INK,False,PP_ALIGN.CENTER) if i<3:text(s,x+2.71,2.85,.28,.25,'›',28,TEAL,True,PP_ALIGN.CENTER) text(s,.7,4.05,4,.25,'ELIGIBILITY',13,TEAL,True);text(s,4.75,4.05,4,.25,'EXCLUSIONS',13,TEAL,True);text(s,8.8,4.05,4,.25,'REFERENCE STANDARD',13,TEAL,True) for x,lines in [(.7,['Age ≥18 years','Obesity by BMI or central obesity','MASLD on clinical and/or imaging assessment']),(4.75,['Significant alcohol intake','Other chronic liver disease','Pregnancy or MRI contraindication']),(8.8,['Histology where clinically available','Otherwise composite: MRI-PDFF, MRE/liver stiffness, laboratory fibrosis risk score'])]: rect(s,x,4.42,3.72,1.65,WHITE,True);text(s,x+.18,4.62,3.32,1.2,'• '+'\n• '.join(lines),14,INK) footer(s,3) #4 biomarkers s=prs.slides.add_slide(blank);title(s,'Imaging protocol','Acquisition and imaging biomarkers','Standardize fasting status, scanner settings, acquisition planes, and Doppler angle correction') cols=[('Hepatic fat fraction','MRI-PDFF\nWhole-liver ROI or automated segmentation\nPrimary quantitative steatosis biomarker'),('Adiposity distribution','MRI or CT-derived VAT and SAT area/volume\nVAT/SAT ratio\nWaist circumference as clinical comparator'),('Doppler hemodynamics','Portal vein diameter, velocity and flow\nPortal-vein pulsatility index\nHepatic-vein waveform; splenic indices if feasible')] for i,(h,b) in enumerate(cols): x=.72+i*4.12;rect(s,x,2.4,3.7,2.35,PALE,True);rect(s,x,2.4,3.7,.12,[TEAL,GOLD,NAVY][i]);text(s,x+.25,2.72,3.15,.3,h,18,NAVY,True);text(s,x+.25,3.25,3.15,1.05,b,14,INK) text(s,.7,5.35,11.8,.3,'Disease-severity endpoints',13,TEAL,True);rect(s,.7,5.68,11.85,.7,SKY,True);text(s,.95,5.89,11.3,.28,'Steatosis severity | Liver stiffness / fibrosis risk | Presence of MASH-risk phenotype | Metabolic comorbidity burden',16,NAVY,True,PP_ALIGN.CENTER) footer(s,4) #5 analysis s=prs.slides.add_slide(blank);title(s,'Analysis plan','Data handling and statistics','Primary analytic question: do MRI-PDFF, visceral adiposity, and Doppler measures independently track disease severity?') steps=[('1','Descriptive','Distribution of imaging, laboratory, and clinical variables.'),('2','Correlation','Pearson or Spearman correlation of MRI-PDFF, VAT/SAT and Doppler indices with severity endpoints.'),('3','Group comparison','Compare biomarker values across steatosis and fibrosis-risk categories.'),('4','Multivariable model','Regression adjusted for age, sex, BMI, diabetes, and metabolic covariates.'),('5','Performance','ROC analysis for a composite imaging biomarker model; report AUC, CI, sensitivity and specificity.')] for i,(n,h,b) in enumerate(steps): y=2.18+i*.83;rect(s,.72,y,.46,.46,TEAL,True);text(s,.72,y+.08,.46,.2,n,13,WHITE,True,PP_ALIGN.CENTER);text(s,1.38,y,2.3,.22,h,15,NAVY,True);text(s,3.65,y,8.45,.35,b,14,INK) footer(s,5) #6 expected s=prs.slides.add_slide(blank);title(s,'Anticipated contribution','Expected outcome','A practical, non-invasive imaging framework for phenotyping MASLD in obesity') for i,(h,b) in enumerate([('Quantitative correlation','Higher MRI-PDFF and visceral adiposity are expected to associate with greater steatosis burden and adverse metabolic profile.'),('Hemodynamic signal','Doppler alterations may add physiologic information, particularly as fibrosis risk or portal resistance increases.'),('Risk stratification','A multiparametric model may outperform any individual imaging measure for identifying higher-risk participants.'),('Clinical relevance','Results can guide selection for elastography, hepatology referral, biopsy consideration, and longitudinal monitoring.')]): x=.72+(i%2)*6.05;y=2.35+(i//2)*1.56;rect(s,x,y,5.65,1.23,PALE,True);text(s,x+.22,y+.18,5.15,.25,h,17,NAVY,True);text(s,x+.22,y+.55,5.12,.5,b,13,INK) rect(s,.72,5.9,11.7,.58,SKY,True);text(s,.9,6.06,11.3,.22,'Caution: cross-sectional associations cannot establish causality; Doppler findings should be interpreted as adjunctive rather than stand-alone markers of MASLD severity.',12,NAVY,False,PP_ALIGN.CENTER) footer(s,6) #7 refs s=prs.slides.add_slide(blank);title(s,'Sources','References','Key background and methodological sources') refs=[ 'Rinella ME, et al. AASLD Practice Guidance on the clinical assessment and management of NAFLD. Hepatology. 2023;77:1797-1835. doi:10.1097/HEP.0000000000000323.', 'European Association for the Study of the Liver, et al. EASL-EASD-EASO Clinical Practice Guidelines on the management of MASLD. J Hepatol. 2024;81:492-542.', 'Cathcart J, et al. Accuracy of non-invasive imaging techniques for the diagnosis of MASH in patients with MASLD: a systematic review. Liver Int. 2025;45:e16127. doi:10.1111/liv.16127. PMID: 39400428.', 'Reeder SB, Hu HH, Sirlin CB. Proton density fat-fraction: a standardized MR-based biomarker of tissue fat concentration. J Magn Reson Imaging. 2012;36:1011-1014. doi:10.1002/jmri.23741.', 'Gul D, et al. Imaging biomarkers in metabolic dysfunction-associated steatotic liver disease. Front Med. 2025. (Review of MR biomarkers in MASLD).', 'Yamada’s Textbook of Gastroenterology, 7th ed. Hepatic steatosis and MRI assessment. p. 2757.' ] for i,r in enumerate(refs): y=2.18+i*.65;rect(s,.72,y,.32,.32,TEAL,True);text(s,.72,y+.055,.32,.17,str(i+1),10,WHITE,True,PP_ALIGN.CENTER);text(s,1.18,y-.02,11.25,.48,r,11.5,INK) text(s,.72,6.52,11.55,.24,'Abbreviations: MASLD, metabolic dysfunction-associated steatotic liver disease; MASH, metabolic dysfunction-associated steatohepatitis; PDFF, proton density fat fraction; VAT, visceral adipose tissue; SAT, subcutaneous adipose tissue.',10,MUTED) footer(s,7) prs.save(out) print(out) PY python - <<'PY' from pptx import Presentation p='/tmp/workspace/masld-imaging-ppt/output/MASLD_Imaging_Biomarkers_Research_Protocol.pptx' prs=Presentation(p) print('slides',len(prs.slides)) for i,s in enumerate(prs.slides,1): print(i, len(s.shapes), ' | '.join(sh.text[:35].replace('\n',' ') for sh in s.shapes if getattr(sh,'has_text_frame',False))[:150]) PY
MASLD Imaging Biomarkers Research Protocol
Presentation · PPTX
I want content
MASLD imaging biomarkers
2024 EASL EASD EASO clinical practice guidelines MASLD imaging MRI-PDFF elastography
Continue
Write a detailed methodology with sample size
MASLD imaging biomarkers MRI-PDFF systematic review
EASL EASD EASO 2024 MASLD guidelines MRI PDFF elastography FIB-4 recommendations
Can you calculate sample size of 40 for this
sample size correlation Fisher z formula statistical power n 40 alpha 0.05
MASLD imaging biomarkers