5 marker on gfr
python -m markitdown "/home/daytona/workspace/attachments/be31ede1-e6ae-4a14-9d26-19cbbda6ba36/renal system 2020.pptx" 2>/dev/null | grep -A 100 -i "GFR\|glomerular filtration" | head -120
python -m markitdown "/home/daytona/workspace/attachments/be31ede1-e6ae-4a14-9d26-19cbbda6ba36/renal system 2020.pptx" 2>/dev/null | head -300
python3 -c " from pptx import Presentation prs = Presentation('/home/daytona/workspace/attachments/be31ede1-e6ae-4a14-9d26-19cbbda6ba36/renal system 2020.pptx') for i, slide in enumerate(prs.slides): texts = [] for shape in slide.shapes: if hasattr(shape, 'text') and shape.text.strip(): texts.append(shape.text.strip()) if any('gfr' in t.lower() or 'glomerular filtration' in t.lower() or 'filtration rate' in t.lower() for t in texts): print(f'--- SLIDE {i+1} ---') for t in texts: print(t) print() " 2>/dev/null
| Factor | Effect |
|---|---|
| Afferent arteriolar dilation | Increases GFR |
| Efferent arteriolar constriction | Increases GFR |
| Increased plasma oncotic pressure (e.g., dehydration) | Decreases GFR |
| Urinary tract obstruction (raised Pbs) | Decreases GFR |
| Pregnancy (first trimester) | Increases GFR by ~50% |
| Age (after 40 yrs) | Decreases ~0.75 mL/min/year |
| Reduced nephron number | May decrease GFR (but single-nephron hyperfiltration can compensate) |