Make similar thesis for me on topic Predictors of Intraoperative Conversion from Laparoscopic to Open Appendectomy: A Prospective Observational Study

Your credits are exhausted. You can purchase a top-up or subscribe to a plan to continue using Orris. If you're already subscribed, your daily credits will reset tomorrow.

Make thesis for me on topic Predictors of Intraoperative Conversion from Laparoscopic to Open Appendectomy: A Prospective Observational Study My synopsis attached

Reading File
Reading File
Running Command

python3 -c " from docx import Document doc = Document('/tmp/workspace/attachments/dfc2469d-aa82-4862-84f1-176d45736b21/Dr. YugalJogad Synopsis-Ethics committee.docx') for p in doc.paragraphs: style = p.style.name if p.style else 'None' if p.text.strip(): print(f'[{style}] {p.text}') "

Searching PubMed

laparoscopic appendectomy conversion open predictors

Searching the Web

predictors intraoperative conversion laparoscopic to open appendectomy prospective study 2022 2023 2024

Reading Article

PMID: 40422077

Reading Web Page

https://pmc.ncbi.nlm.nih.gov/articles/PMC9309015

Running Command

mkdir -p /tmp/workspace/thesis && ls /tmp/workspace/thesis/

Running Command

python3 << 'PYEOF' from docx import Document from docx.shared import Pt, Inches, RGBColor, Cm from docx.enum.text import WD_ALIGN_PARAGRAPH from docx.enum.style import WD_STYLE_TYPE from docx.oxml.ns import qn from docx.oxml import OxmlElement import copy doc = Document() # ── Page margins ────────────────────────────────────────────────────────────── section = doc.sections[0] section.page_width = Inches(8.27) # A4 section.page_height = Inches(11.69) section.left_margin = Inches(1.25) section.right_margin = Inches(1.0) section.top_margin = Inches(1.0) section.bottom_margin = Inches(1.0) # ── Base font ───────────────────────────────────────────────────────────────── normal_style = doc.styles['Normal'] normal_style.font.name = 'Times New Roman' normal_style.font.size = Pt(12) # Helper to add a run with optional bold/italic/size def add_para(text, style='Normal', bold=False, italic=False, align=None, size=None, space_before=None, space_after=None, color=None): p = doc.add_paragraph(style=style) if align: p.alignment = align if space_before is not None: p.paragraph_format.space_before = Pt(space_before) if space_after is not None: p.paragraph_format.space_after = Pt(space_after) run = p.add_run(text) run.bold = bold run.italic = italic if size: run.font.size = Pt(size) if color: run.font.color.rgb = RGBColor(*color) run.font.name = 'Times New Roman' return p def heading1(text): p = doc.add_heading(text, level=1) p.alignment = WD_ALIGN_PARAGRAPH.LEFT run = p.runs[0] run.font.name = 'Times New Roman' run.font.size = Pt(14) run.font.color.rgb = RGBColor(0, 0, 0) p.paragraph_format.space_before = Pt(14) p.paragraph_format.space_after = Pt(6) return p def heading2(text): p = doc.add_heading(text, level=2) p.alignment = WD_ALIGN_PARAGRAPH.LEFT run = p.runs[0] run.font.name = 'Times New Roman' run.font.size = Pt(13) run.font.color.rgb = RGBColor(0, 0, 0) p.paragraph_format.space_before = Pt(10) p.paragraph_format.space_after = Pt(4) return p def heading3(text): p = doc.add_heading(text, level=3) p.alignment = WD_ALIGN_PARAGRAPH.LEFT run = p.runs[0] run.font.name = 'Times New Roman' run.font.size = Pt(12) run.font.color.rgb = RGBColor(0, 0, 0) p.paragraph_format.space_before = Pt(8) p.paragraph_format.space_after = Pt(3) return p def body(text, indent=False): p = doc.add_paragraph(text, style='Normal') p.paragraph_format.space_before = Pt(3) p.paragraph_format.space_after = Pt(6) p.paragraph_format.line_spacing = Pt(22) if indent: p.paragraph_format.first_line_indent = Inches(0.4) for run in p.runs: run.font.name = 'Times New Roman' run.font.size = Pt(12) return p def bullet(text): p = doc.add_paragraph(style='List Bullet') p.paragraph_format.space_before = Pt(2) p.paragraph_format.space_after = Pt(2) run = p.add_run(text) run.font.name = 'Times New Roman' run.font.size = Pt(12) return p def page_break(): doc.add_page_break() # ══════════════════════════════════════════════════════════════════════════════ # TITLE PAGE # ══════════════════════════════════════════════════════════════════════════════ add_para('', space_before=0, space_after=4) add_para('DISSERTATION', bold=True, size=16, align=WD_ALIGN_PARAGRAPH.CENTER, space_before=18, space_after=6) add_para('ON', bold=True, size=14, align=WD_ALIGN_PARAGRAPH.CENTER, space_before=2, space_after=12) add_para( 'PREDICTORS OF INTRAOPERATIVE CONVERSION FROM\n' 'LAPAROSCOPIC TO OPEN APPENDECTOMY:\n' 'A PROSPECTIVE OBSERVATIONAL STUDY', bold=True, size=15, align=WD_ALIGN_PARAGRAPH.CENTER, space_before=8, space_after=20) add_para('Submitted in partial fulfillment of the requirements for the degree of', align=WD_ALIGN_PARAGRAPH.CENTER, size=12, space_before=4, space_after=4) add_para('Master of Surgery (M.S.) in General Surgery', bold=True, size=13, align=WD_ALIGN_PARAGRAPH.CENTER, space_before=2, space_after=20) add_para('By', align=WD_ALIGN_PARAGRAPH.CENTER, size=12, space_before=4, space_after=4) add_para('Dr. YUGAL JOGAD', bold=True, size=13, align=WD_ALIGN_PARAGRAPH.CENTER, space_before=2, space_after=2) add_para('Junior Resident, Department of General Surgery', align=WD_ALIGN_PARAGRAPH.CENTER, size=12, space_before=2, space_after=16) add_para('Under the Guidance of', align=WD_ALIGN_PARAGRAPH.CENTER, size=12, space_before=4, space_after=4) add_para('Dr. JAWAN SING MANZA', bold=True, size=13, align=WD_ALIGN_PARAGRAPH.CENTER, space_before=2, space_after=2) add_para('Assistant Professor, Department of General Surgery', align=WD_ALIGN_PARAGRAPH.CENTER, size=12, space_before=2, space_after=20) add_para('Department of General Surgery', bold=True, align=WD_ALIGN_PARAGRAPH.CENTER, size=13, space_before=4, space_after=2) add_para('B.J. Government Medical College & Sassoon General Hospitals', bold=True, align=WD_ALIGN_PARAGRAPH.CENTER, size=13, space_before=2, space_after=2) add_para('Pune - 411 001', align=WD_ALIGN_PARAGRAPH.CENTER, size=12, space_before=2, space_after=2) add_para('Maharashtra University of Health Sciences (MUHS), Nashik', align=WD_ALIGN_PARAGRAPH.CENTER, size=12, space_before=2, space_after=20) add_para('Year: 2025 - 2028', bold=True, align=WD_ALIGN_PARAGRAPH.CENTER, size=12, space_before=4, space_after=4) page_break() # ══════════════════════════════════════════════════════════════════════════════ # CERTIFICATE # ══════════════════════════════════════════════════════════════════════════════ add_para('CERTIFICATE', bold=True, size=15, align=WD_ALIGN_PARAGRAPH.CENTER, space_before=12, space_after=16) body( 'This is to certify that the dissertation entitled "Predictors of Intraoperative ' 'Conversion from Laparoscopic to Open Appendectomy: A Prospective Observational Study" ' 'submitted by Dr. Yugal Jogad, Junior Resident, Department of General Surgery, B.J. ' 'Government Medical College & Sassoon General Hospitals, Pune, is a bonafide record of ' 'research work carried out by him under my supervision and guidance.') body( 'The dissertation has not been submitted for the award of any other degree or diploma ' 'in any university previously.') add_para('', space_before=20, space_after=4) t = doc.add_table(rows=2, cols=2) t.style = 'Table Grid' cells = t.rows[0].cells cells[0].text = 'Dr. Jawan Sing Manza\nAssistant Professor\nDept. of General Surgery\nB.J.G.M.C. & S.G.H., Pune\n(Guide)' cells[1].text = 'Dr. Lata Bhoir\nProfessor & Head\nDept. of General Surgery\nB.J.G.M.C. & S.G.H., Pune\n(HOD)' cells2 = t.rows[1].cells cells2[0].text = 'Signature: ____________________\nDate:' cells2[1].text = 'Signature: ____________________\nDate:' for row in t.rows: for cell in row.cells: for para in cell.paragraphs: for run in para.runs: run.font.name = 'Times New Roman' run.font.size = Pt(12) add_para('', space_before=12, space_after=4) page_break() # ══════════════════════════════════════════════════════════════════════════════ # DECLARATION # ══════════════════════════════════════════════════════════════════════════════ add_para('DECLARATION BY THE CANDIDATE', bold=True, size=15, align=WD_ALIGN_PARAGRAPH.CENTER, space_before=12, space_after=16) body( 'I, Dr. Yugal Jogad, solemnly declare that the dissertation titled "Predictors of ' 'Intraoperative Conversion from Laparoscopic to Open Appendectomy: A Prospective ' 'Observational Study" is a genuine research work carried out by me in the Department ' 'of General Surgery, B.J. Government Medical College & Sassoon General Hospitals, Pune, ' 'during the period 2025-2028, under the guidance and supervision of Dr. Jawan Sing Manza, ' 'Assistant Professor, Department of General Surgery.') body( 'The data presented in this work have not been submitted previously for any other degree ' 'or examination. All sources of information have been duly acknowledged.') body( 'Place: Pune\nDate:') add_para('', space_before=16, space_after=4) add_para('Dr. Yugal Jogad', bold=True, size=12, space_before=4, space_after=2) body('Junior Resident\nDepartment of General Surgery\nB.J.G.M.C. & S.G.H., Pune') page_break() # ══════════════════════════════════════════════════════════════════════════════ # ACKNOWLEDGEMENTS # ══════════════════════════════════════════════════════════════════════════════ heading1('ACKNOWLEDGEMENTS') body( 'I express my deepest gratitude to Dr. Jawan Sing Manza, Assistant Professor, ' 'Department of General Surgery, B.J.G.M.C. & S.G.H., Pune, my guide and mentor, ' 'whose unwavering support, patient guidance, and incisive academic insight have been ' 'the cornerstone of this work. His vast surgical experience and methodological rigor ' 'shaped every aspect of this dissertation.') body( 'I am immensely grateful to Dr. Lata Bhoir, Professor and Head of the Department of ' 'General Surgery, for her encouragement, constructive criticism, and institutional ' 'support throughout the study period.') body( 'I sincerely thank the faculty, senior residents, and fellow junior residents of the ' 'Department of General Surgery for their cooperation and assistance in data collection ' 'and day-to-day research activities.') body( 'My heartfelt appreciation goes to the Department of Radiology, Pathology, and the ' 'Central Clinical Laboratory of Sassoon General Hospital for their indispensable ' 'contributions to patient workup and specimen analysis.') body( 'I am deeply thankful to the Ethics Committee of B.J.G.M.C. & S.G.H., Pune, for ' 'their timely review and approval of this study.') body( 'Most importantly, I thank every patient who consented to participate in this study. ' 'Their trust is the foundation upon which meaningful clinical research is built.') body( 'Finally, I acknowledge the unconditional love and support of my family, who have ' 'been my greatest source of strength throughout the journey of postgraduate training.') page_break() # ══════════════════════════════════════════════════════════════════════════════ # TABLE OF CONTENTS (manual) # ══════════════════════════════════════════════════════════════════════════════ heading1('TABLE OF CONTENTS') toc_entries = [ ('1.', 'Introduction', '1'), ('2.', 'Review of Literature', '8'), ('3.', 'Aims and Objectives', '28'), ('4.', 'Materials and Methods', '30'), ('5.', 'Observations and Results', '45'), ('6.', 'Discussion', '68'), ('7.', 'Summary and Conclusion', '85'), ('8.', 'Bibliography', '89'), ('9.', 'Appendices', '101'), (' Appendix I', 'Proforma / Data Collection Form', '102'), (' Appendix II', 'Informed Consent Form (English)', '107'), (' Appendix III', 'Informed Consent Form (Marathi)', '108'), (' Appendix IV', 'Informed Consent Form (Hindi)', '109'), (' Appendix V', 'Abbreviations', '110'), (' Appendix VI', 'Master Chart', '111'), ] tbl = doc.add_table(rows=len(toc_entries), cols=3) tbl.style = 'Table Grid' col_widths = [Inches(0.6), Inches(4.4), Inches(0.8)] for i, (num, title, page) in enumerate(toc_entries): row = tbl.rows[i] row.cells[0].text = num row.cells[1].text = title row.cells[2].text = page for j, cell in enumerate(row.cells): for para in cell.paragraphs: for run in para.runs: run.font.name = 'Times New Roman' run.font.size = Pt(12) for i, cell in enumerate(tbl.columns[0].cells): cell.width = col_widths[0] for i, cell in enumerate(tbl.columns[1].cells): cell.width = col_widths[1] for i, cell in enumerate(tbl.columns[2].cells): cell.width = col_widths[2] page_break() # ══════════════════════════════════════════════════════════════════════════════ # ABBREVIATIONS # ══════════════════════════════════════════════════════════════════════════════ heading1('LIST OF ABBREVIATIONS') abbrevs = [ ('AA', 'Acute Appendicitis'), ('BMI', 'Body Mass Index'), ('CA', 'Converted Appendectomy'), ('CBC', 'Complete Blood Count'), ('CECT', 'Contrast-Enhanced Computed Tomography'), ('CI', 'Confidence Interval'), ('CRP', 'C-Reactive Protein'), ('CT', 'Computed Tomography'), ('FLA', 'Fully Laparoscopic Appendectomy'), ('HPE', 'Histopathological Examination'), ('ICU', 'Intensive Care Unit'), ('IQR', 'Interquartile Range'), ('LA', 'Laparoscopic Appendectomy'), ('NLR', 'Neutrophil-to-Lymphocyte Ratio'), ('OA', 'Open Appendectomy'), ('OR', 'Odds Ratio'), ('RLQ', 'Right Lower Quadrant'), ('SD', 'Standard Deviation'), ('SPSS', 'Statistical Package for Social Sciences'), ('SSI', 'Surgical Site Infection'), ('USG', 'Ultrasonography'), ('WBC', 'White Blood Cell'), ('WHO', 'World Health Organization'), ('ASA', 'American Society of Anesthesiologists'), ('SIRS', 'Systemic Inflammatory Response Syndrome'), ('NLR', 'Neutrophil-to-Lymphocyte Ratio'), ('PLR', 'Platelet-to-Lymphocyte Ratio'), ] at = doc.add_table(rows=len(abbrevs), cols=2) at.style = 'Table Grid' for i, (abbr, full) in enumerate(abbrevs): at.rows[i].cells[0].text = abbr at.rows[i].cells[1].text = full for cell in at.rows[i].cells: for para in cell.paragraphs: for run in para.runs: run.font.name = 'Times New Roman' run.font.size = Pt(12) page_break() # ══════════════════════════════════════════════════════════════════════════════ # CHAPTER 1 INTRODUCTION # ══════════════════════════════════════════════════════════════════════════════ heading1('CHAPTER 1: INTRODUCTION') body( 'Acute appendicitis is one of the most common surgical emergencies worldwide, affecting ' 'approximately 7-8% of the general population over a lifetime. It remains the leading ' 'cause of emergency abdominal surgery in both developing and developed nations. The annual ' 'incidence has been estimated at 100 per 100,000 population, with peak occurrence in the ' 'second and third decades of life. The disease carries significant morbidity if not managed ' 'promptly, with complications including perforation, peritonitis, and abscess formation ' 'occurring in 17-32% of cases presenting late.', indent=True) body( 'Appendectomy - surgical removal of the vermiform appendix - has been the definitive ' 'treatment for acute appendicitis since Sir Frederick Treves popularized open ' 'appendectomy in the late nineteenth century. The open McBurney incision approach ' 'remained the gold standard for nearly a century. In 1983, Kurt Semm performed the ' 'first laparoscopic appendectomy, heralding a paradigm shift in the surgical management ' 'of this ubiquitous condition.', indent=True) body( 'Over the subsequent four decades, laparoscopic appendectomy (LA) has progressively ' 'supplanted open appendectomy (OA) as the preferred approach in most surgical centers. ' 'The advantages of laparoscopy are well-documented: reduced postoperative pain, ' 'lower wound infection rates, shorter hospital stay, faster return to normal activity, ' 'better cosmetic outcomes, and superior diagnostic ability - particularly in women of ' 'reproductive age where alternative pathology may mimic appendicitis. Multiple ' 'meta-analyses and randomized controlled trials have confirmed these benefits, and ' 'international surgical societies now endorse laparoscopic appendectomy as the ' 'standard of care.', indent=True) body( 'Despite widespread adoption of laparoscopic surgery and continuous refinement of ' 'technique, conversion from laparoscopic to open appendectomy remains an unavoidable ' 'reality in surgical practice. Published conversion rates range from 3% to 15% across ' 'institutions, with considerable variation depending on patient demographics, disease ' 'severity, surgeon experience, and institutional resources. In tertiary care centers in ' 'India, where a significant proportion of patients present late with complicated ' 'appendicitis, conversion rates may be at the higher end of this range.', indent=True) body( 'Conversion is not a surgical failure per se - it is a sound clinical decision made ' 'intraoperatively to ensure patient safety when laparoscopic continuation poses ' 'unacceptable risk. Common triggers for conversion include: dense intra-abdominal ' 'adhesions from prior surgery or severe periappendiceal inflammation; perforation ' 'with generalized peritonitis; gangrenous appendix with friable tissue; retrocecal ' 'appendix with difficult anatomical dissection; intraoperative bleeding; and inadequate ' 'visualization in obese patients. However, conversion is associated with significantly ' 'higher rates of postoperative complications, including surgical site infections, ' 'prolonged ileus, increased analgesic requirements, and extended hospital stay, ' 'compared to completed laparoscopic procedures.', indent=True) body( 'The ability to predict conversion preoperatively or during the early intraoperative ' 'phase is therefore of substantial clinical value. Surgeons who can identify high-risk ' 'patients preoperatively may choose to plan a primary open approach, reducing total ' 'operative time and anesthetic exposure, optimizing resource utilization, and ' 'importantly, improving patient counseling and expectation-setting. Conversely, ' 'identifying truly low-risk patients allows confident laparoscopic pursuit, avoiding ' 'unnecessary open surgeries.', indent=True) body( 'Previous studies have identified multiple potential predictors of conversion, spanning ' 'clinical, laboratory, and imaging domains. Clinical predictors include advanced age, ' 'male gender, obesity (BMI ≥ 30 kg/m²), delayed presentation (symptom duration > 48 ' 'hours), prior abdominal surgery, systemic comorbidities, and signs of peritonitis. ' 'Laboratory predictors include elevated white blood cell (WBC) count, raised ' 'neutrophil-to-lymphocyte ratio (NLR), and markedly elevated C-reactive protein (CRP). ' 'Imaging predictors include appendiceal diameter > 10 mm on ultrasonography, periappendiceal ' 'fat stranding, free fluid, and extraluminal air on CT.', indent=True) body( 'Intraoperatively, the most powerful predictors of conversion are complicated appendicitis ' '(perforation, gangrene, abscess), dense adhesions, retrocecal position, and generalized ' 'peritonitis. The 2025 systematic review and meta-analysis by Mirdamadi et al., pooling ' '45 studies with over 3.2 million patients, confirmed that conversion rate from LA to OA ' 'is approximately 8.7%, and validated male gender, obesity, diabetes, hypertension, ' 'prior abdominal surgery, prolonged symptom duration, elevated inflammatory markers, ' 'and larger appendiceal diameter as significant preoperative predictors.', indent=True) body( 'Despite the volume of retrospective data, prospective observational studies - particularly ' 'from Indian tertiary care centers with their unique patient profile - are limited. ' 'Sassoon General Hospital, Pune, is one of Maharashtra\'s highest-volume public sector ' 'surgical units, managing a large and diverse caseload of appendicitis across the ' 'socioeconomic spectrum. A prospective study in this setting provides ecologically ' 'valid data, allowing real-time, systematic capture of preoperative and intraoperative ' 'variables without the recall bias inherent in retrospective designs.', indent=True) body( 'This dissertation, therefore, undertakes a prospective observational study to ' 'identify the clinical, laboratory, radiological, and intraoperative predictors of ' 'conversion from laparoscopic to open appendectomy, determine the conversion rate at ' 'our institution, and evaluate the comparative outcomes of converted versus completed ' 'laparoscopic appendectomies. The findings are expected to contribute to evidence-based ' 'preoperative risk stratification, optimized surgical decision-making, and improved ' 'patient counseling in the management of acute appendicitis.', indent=True) page_break() # ══════════════════════════════════════════════════════════════════════════════ # CHAPTER 2 REVIEW OF LITERATURE # ══════════════════════════════════════════════════════════════════════════════ heading1('CHAPTER 2: REVIEW OF LITERATURE') heading2('2.1 Historical Perspective') body( 'The vermiform appendix was first described anatomically by Leonardo da Vinci and ' 'Berengario da Carpi in the early sixteenth century. The first recorded appendectomy ' 'was performed by Claudius Amyand at St. George\'s Hospital, London, in 1735. Open ' 'appendectomy through a right iliac fossa incision was systematized by Charles McBurney ' 'in 1894 with his classic gridiron incision, which bears his name to this day. This ' 'remained the definitive surgical approach for nearly ninety years.', indent=True) body( 'The laparoscopic era in appendectomy began in 1983 when Kurt Semm, a German gynecologist, ' 'reported the first laparoscopic appendectomy for a non-inflamed appendix encountered ' 'incidentally during a gynecological procedure. Subsequently, Philippe Mouret and later ' 'Nathanson published early series on laparoscopic appendectomy for acute appendicitis. ' 'Initial skepticism from the surgical community - partly due to concerns about access, ' 'port-site complications, and operative time - gradually gave way to enthusiasm as ' 'technical refinements and instrumental improvements made laparoscopic surgery ' 'progressively safer and more feasible.', indent=True) heading2('2.2 Laparoscopic versus Open Appendectomy: Comparative Outcomes') body( 'Multiple prospective randomized trials and large meta-analyses have compared laparoscopic ' 'and open appendectomy. Golub et al. (1998), in a meta-analysis of 28 randomized ' 'controlled trials, reported that LA was associated with significantly reduced wound ' 'infection rates, shorter hospital stay, and faster recovery compared to OA. However, ' 'the operative time was marginally longer with LA, and the cost was higher in early series.', indent=True) body( 'Guller et al. (2004), analyzing the Nationwide Inpatient Sample involving 43,757 ' 'patients, demonstrated that laparoscopic appendectomy was associated with lower ' 'overall complication rates, shorter length of stay, and lower total hospital charges ' 'compared to open surgery, even after adjustment for patient case-mix. The authors ' 'concluded that the laparoscopic approach was clearly superior across multiple outcome ' 'parameters.', indent=True) body( 'Sauerland et al. (2010) in the Cochrane Database Systematic Review synthesized data ' 'from 67 randomized controlled trials. They confirmed that laparoscopic appendectomy ' 'reduces wound infections approximately three-fold but noted a higher rate of intra-abdominal ' 'abscesses compared to open surgery. The recovery benefits were consistent, with patients ' 'returning to normal activity 3-5 days earlier after LA.', indent=True) heading2('2.3 Conversion from Laparoscopic to Open Appendectomy') heading3('2.3.1 Definition and Incidence') body( 'Conversion from LA to OA is defined as the intraoperative decision to abandon the ' 'laparoscopic approach and complete the procedure through an open incision, after ' 'laparoscopic exploration has commenced. Conversion is distinguished from a planned ' 'primary open approach. The reported conversion rate in the literature varies widely: ' '2-4% in specialized laparoscopic centers and up to 15% in general teaching hospitals, ' 'particularly in cases of complicated appendicitis. Masoomi et al. (2011), analyzing ' 'a national database of 116,418 patients, reported a conversion rate of 4.3% from LA ' 'to OA.', indent=True) body( 'The 2025 systematic review and meta-analysis by Mirdamadi et al. - the largest and ' 'most comprehensive meta-analysis on this topic to date, pooling 45 studies with ' 'over 3.2 million patients - reported a pooled conversion rate of 8.7% (95% CI: 7.7-9.8%). ' 'This estimate reflects the real-world heterogeneity of surgical practices and patient ' 'populations across geographic settings.', indent=True) heading3('2.3.2 Preoperative (Clinical) Predictors') body( 'Age: Multiple studies have identified advanced age as a significant predictor of ' 'conversion. Masoomi et al. (2011) showed that patients aged 50 years and above had ' 'a significantly higher conversion rate, attributed to higher rates of complicated ' 'appendicitis, more comorbidities, and age-related immune senescence leading to blunted ' 'inflammatory responses masking severity. Kim et al. (2012) identified advanced age ' '(HR 1.02 per year, 95% CI 1.01-1.04) as an independent preoperative predictor on ' 'multivariable analysis.', indent=True) body( 'Gender: Male gender has been identified as a risk factor for conversion in several ' 'studies. The 2025 meta-analysis by Mirdamadi et al. confirmed male gender as a ' 'significant predictor. The proposed mechanism is the anatomical proximity of the ' 'appendix to the ileum in males and higher rates of retrocecal appendix position, ' 'rendering laparoscopic dissection more challenging.', indent=True) body( 'Obesity (BMI ≥ 30 kg/m²): Obesity significantly increases the technical difficulty ' 'of laparoscopy through reduced peritoneal cavity working space, difficult port ' 'placement, limited instrument reach, and inadequate visualization due to mesenteric ' 'fat. Muñoz-Villanueva et al. (2022), in a 15-year single-center analysis of 2,193 ' 'patients, identified BMI ≥ 30 kg/m² as the strongest independent preoperative predictor ' 'of conversion (OR 5.02, 95% CI 2.46-9.92, p < 0.001).', indent=True) body( 'Previous Abdominal Surgery: Prior abdominal operations result in adhesion formation ' 'that distorts normal anatomical planes and restricts safe laparoscopic dissection. ' 'Muñoz-Villanueva et al. (2022) found previous abdominal surgery to be an independent ' 'predictor (OR 2.42, 95% CI 1.17-4.78, p = 0.013). Gupta et al. (2013) similarly ' 'identified prior abdominal operations as a significant independent predictor.', indent=True) body( 'Duration of Symptoms: Prolonged symptom duration (≥ 48-72 hours before presentation) ' 'is associated with a higher likelihood of complicated appendicitis. Kim et al. (2012) ' 'and multiple other groups have identified symptom duration as an independent predictor ' 'of conversion. Patients presenting late tend to have progressed to perforation, abscess, ' 'or gangrenous change, all of which raise conversion risk substantially.', indent=True) body( 'Comorbidities: Systemic diseases such as diabetes mellitus, hypertension, and ' 'cardiovascular disease have been associated with higher conversion rates. The ' 'proposed mechanisms include immune suppression predisposing to complicated appendicitis, ' 'microvascular disease compromising appendiceal blood supply, and suboptimal ' 'physiological reserve. Mirdamadi et al. (2025) confirmed all three comorbidities ' 'as significant predictors in their pooled analysis.', indent=True) body( 'ASA Score: Preoperative ASA score > 2 has been consistently identified as a predictor ' 'of conversion. Kim et al. (2012) demonstrated ASA score > 2 as one of the strongest ' 'independent preoperative predictors (HR 11.2, 95% CI 5.6-24.4, p < 0.001). High ASA ' 'score reflects cumulative comorbidity burden and reduced physiological reserve, ' 'factors that increase both the likelihood of complicated appendicitis and the need ' 'for conversion.', indent=True) heading3('2.3.3 Laboratory Predictors') body( 'White Blood Cell (WBC) Count: Leukocytosis (WBC > 10,000/mm³) is the cardinal ' 'laboratory finding in acute appendicitis. While elevated WBC is almost universal ' 'in appendicitis, markedly elevated counts have been associated with complicated ' 'disease. Rosen et al. (2007) demonstrated that WBC elevation was independently ' 'associated with perforation. The MDPI study on risk factors for conversion (2023) ' 'identified preoperative high WBC count as an independent predictor on multivariate ' 'analysis (OR 1.90, 95% CI 1.02-3.53, p = 0.042).', indent=True) body( 'C-Reactive Protein (CRP): CRP is an acute-phase reactant synthesized by the liver ' 'in response to IL-6 stimulation. Elevated CRP (particularly > 100 mg/L) is a ' 'sensitive marker of complicated appendicitis. Shimoda et al. (2019) demonstrated ' 'that preoperative high CRP level was independently associated with conversion from ' 'LA to OA. The 2023 study on risk factors for conversion identified preoperative ' 'high CRP as an independent multivariate predictor (OR 2.27, 95% CI 1.14-4.52, ' 'p = 0.019), with the strongest predictive value when CRP > 200 mg/L.', indent=True) body( 'Neutrophil-to-Lymphocyte Ratio (NLR): The NLR is derived from the differential ' 'white cell count and serves as a composite marker of systemic inflammatory response. ' 'NLR > 5 has been shown to correlate with complicated appendicitis and to predict ' 'perforation. Peedikathara et al. (2018) and subsequent Indian studies have ' 'demonstrated NLR as a useful predictor in populations where CRP may not be ' 'routinely available.', indent=True) heading3('2.3.4 Radiological Predictors') body( 'Ultrasonography: USG remains the first-line imaging modality for acute appendicitis, ' 'particularly in resource-limited settings and pediatric populations. Appendiceal ' 'diameter > 6 mm (non-compressible) is the primary criterion for sonographic diagnosis. ' 'Larger appendiceal diameter (> 10 mm), periappendiceal fluid, loss of stratification, ' 'and appendicolith are sonographic features associated with complicated appendicitis ' 'and higher conversion rates. Mirdamadi et al. (2025) identified larger appendiceal ' 'diameter and intra-abdominal fluid as significant imaging predictors.', indent=True) body( 'Computed Tomography (CT): CT abdomen with or without contrast offers superior ' 'sensitivity and specificity for appendicitis diagnosis. CT findings associated with ' 'conversion include: extraluminal air (perforation), periappendiceal abscess, ' 'appendicolith, extensive fat stranding, and Siewert classification grade ≥ 4 ' 'inflammation. Kim et al. (2012) showed that CT inflammation grade ≥ 4 was an ' 'independent predictor of conversion (HR 4.8, 95% CI 1.9-12.3, p = 0.001). CT is ' 'increasingly used in cases with diagnostic uncertainty or suspected complicated ' 'appendicitis.', indent=True) heading3('2.3.5 Intraoperative Predictors') body( 'Complicated Appendicitis: Perforation, gangrene, and periappendiceal abscess ' 'are the most powerful intraoperative predictors of conversion. Muñoz-Villanueva ' 'et al. (2022) identified complicated appendicitis as an independent intraoperative ' 'predictor (OR 5.83, 95% CI 2.68-14.4, p < 0.001). The 2023 multicenter study ' 'identified intraoperative perforation (OR 3.18, 95% CI 1.59-6.38, p = 0.001), ' 'necrosis/gangrene (OR 2.29, 95% CI 1.12-4.68, p = 0.023), periappendiceal abscess ' '(OR 2.59, 95% CI 1.32-5.08, p = 0.006), and peritonitis (OR 2.03, 95% CI 1.09-3.79, ' 'p = 0.025) as independent multivariate predictors.', indent=True) body( 'Adhesions: Dense adhesions from previous surgery or severe local inflammation ' 'compromise the laparoscopic operative field. They obscure anatomical landmarks, ' 'limit instrument maneuverability, and raise the risk of inadvertent enterotomy ' 'during adhesiolysis.', indent=True) body( 'Retrocecal Appendix: The retrocecal position of the appendix (present in approximately ' '65% of the population as the most common variant) creates posterior visualization ' 'challenges during laparoscopy. Kim et al. (2012) identified retrocecal appendix as ' 'an independent intraoperative predictor.', indent=True) body( 'Surgeon Experience: Surgeon inexperience with laparoscopic appendectomy has been ' 'identified as an independent predictor of conversion. Kim et al. (2012) demonstrated ' 'attending surgeon inexperience as one of the strongest predictors (HR 7.4, 95% CI ' '2.6-20.8, p < 0.001). The learning curve for LA is generally quoted as 25-30 cases, ' 'beyond which conversion rates substantially decline.', indent=True) heading2('2.4 Outcomes of Converted Appendectomy') body( 'Conversion to open appendectomy is consistently associated with worse postoperative ' 'outcomes compared to completed laparoscopic procedures. Muñoz-Villanueva et al. (2022) ' 'reported that converted appendectomy (CA) was associated with significantly longer ' 'operative time (CA: 111.6 min vs. FLA: 55.3 min, p < 0.001), higher intraoperative ' 'complication rates (CA 3.8% vs. FLA 0.8%, p = 0.019), more frequent complicated ' 'appendicitis at histopathology (CA 82.7% vs. FLA 20.3%, p < 0.0001), and higher ' 'incidence of peritonitis (CA 92.3% vs. FLA 39.6%, p < 0.0001).', indent=True) body( 'Postoperative outcomes following conversion include higher rates of surgical site ' 'infection (SSI), prolonged ileus, increased analgesic requirements, longer ' 'nasogastric tube use, delayed oral intake, and longer hospital stay. These outcomes ' 'are partly attributable to the underlying severity of disease (complicated appendicitis ' 'being more common in the conversion group) and partly to the physiological trauma ' 'of open surgery superimposed on the laparoscopic approach.', indent=True) body( 'It is critical to distinguish between outcomes attributable to conversion per se ' 'and those attributable to the underlying disease severity driving conversion. ' 'Logistic regression models attempting to adjust for disease severity have shown ' 'that even after accounting for complicated appendicitis, conversion itself remains ' 'associated with excess morbidity.', indent=True) heading2('2.5 Scoring Systems and Predictive Models') body( 'Several investigators have attempted to construct preoperative scoring models for ' 'predicting conversion risk. Finnerty et al. (2017) developed a predictive scoring ' 'model incorporating clinical and laboratory variables, demonstrating that patients ' 'with complicated appendicitis on imaging had at least a 10-25% conversion risk. ' 'Gupta et al. (2013) constructed a logistic regression model with an AUC of 0.78 ' 'for predicting conversion using preoperative data.', indent=True) body( 'However, no universally validated scoring tool for conversion prediction is currently ' 'in routine clinical use. Most existing models have been derived from retrospective ' 'Western datasets and may not be directly applicable to the Indian tertiary care setting ' 'with its unique patient demographics, disease patterns, and resource constraints.', indent=True) heading2('2.6 Studies from India') body( 'Indian data on conversion rates and predictors remain limited. Peedikathara et al. ' '(2018), in a prospective study from Kerala, identified appendicular mass as the most ' 'important predictor of conversion, with 58.3% of converted cases having appendicular ' 'mass compared to 9.96% in non-converted cases - the very data used to power the ' 'sample size calculation for the present study. Other Indian studies have reported ' 'conversion rates ranging from 5% to 18% in government teaching hospitals, higher ' 'than Western series, likely reflecting delayed presentation and limited access to ' 'early healthcare.', indent=True) body( 'Factors peculiar to the Indian context - including late presentation due to socioeconomic ' 'barriers, higher prevalence of tuberculosis causing adhesions and peritoneal disease, ' 'higher burden of undernutrition, and limited preoperative CT availability - create a ' 'distinct epidemiological profile that necessitates locally derived data.', indent=True) page_break() # ══════════════════════════════════════════════════════════════════════════════ # CHAPTER 3 AIMS AND OBJECTIVES # ══════════════════════════════════════════════════════════════════════════════ heading1('CHAPTER 3: AIMS AND OBJECTIVES') heading2('3.1 Aim') body( 'To study the various predictors of intraoperative conversion from laparoscopic to ' 'open appendectomy in patients presenting with acute appendicitis at a tertiary care center.') heading2('3.2 Primary Objectives') bullet('To identify the clinical, laboratory, radiological, and intraoperative factors ' 'associated with conversion from laparoscopic to open appendectomy.') bullet('To determine the rate of conversion from laparoscopic to open appendectomy at ' 'Sassoon General Hospital, Pune.') heading2('3.3 Secondary Objectives') bullet('To evaluate the postoperative outcomes (complications, hospital stay, ' 'histopathological findings) in patients who underwent conversion versus those ' 'who completed laparoscopic appendectomy.') bullet('To identify independent preoperative predictors of conversion using multivariate ' 'logistic regression analysis.') bullet('To assess the utility of inflammatory markers (WBC, NLR, CRP) in predicting ' 'conversion preoperatively.') page_break() # ══════════════════════════════════════════════════════════════════════════════ # CHAPTER 4 MATERIALS AND METHODS # ══════════════════════════════════════════════════════════════════════════════ heading1('CHAPTER 4: MATERIALS AND METHODS') heading2('4.1 Study Design') body( 'This is a prospective observational (analytical) study. Patients are enrolled ' 'consecutively at the time of presentation, and data are collected prospectively ' 'at three defined time points: preoperative, intraoperative, and postoperative. ' 'No intervention is administered beyond standard surgical care. The prospective ' 'design eliminates recall bias, allows systematic and complete data capture, and ' 'enables real-time recording of intraoperative findings.', indent=True) heading2('4.2 Study Setting') body( 'The study will be conducted in the Department of General Surgery at B.J. Government ' 'Medical College & Sassoon General Hospital (BJGMC & SGH), Pune, Maharashtra. ' 'Sassoon General Hospital is one of the largest public sector hospitals in western ' 'India, with over 1,500 beds and a high-volume surgical emergency service managing ' 'approximately 300-400 appendectomies per year. The hospital serves a diverse ' 'patient population including urban and peri-urban residents, migrant workers, ' 'and referrals from peripheral government health facilities.', indent=True) heading2('4.3 Study Duration') body( 'The study will be conducted over a period of 24 months from the date of ' 'ethical committee approval. Data collection is expected to extend over this ' 'period, with analysis and thesis writing in the final phase of the project.') heading2('4.4 Sample Size') body( 'Sample size was calculated using OpenEpi (Version 3.01) for an unmatched case-control ' 'design. The key exposure variable selected was appendicular mass, based on its ' 'strong association with conversion as reported in the Indian study by Peedikathara ' 'et al. (2018):') bullet('Proportion of appendicular mass in converted group (cases): 58.3% (p1 = 0.583)') bullet('Proportion of appendicular mass in non-converted group (controls): 9.96% (p2 = 0.0996)') bullet('Confidence level: 95% (Zα/2 = 1.96)') bullet('Power: 80% (Zβ = 0.84)') bullet('Ratio of controls to cases: 7.5:1') body('The calculated sample size is:') bullet('Converted cases = 9') bullet('Non-converted controls = 68') bullet('Total = 77 patients') body( 'Adding a 10% adjustment for dropout and incomplete data: required sample size = ' 'approximately 90 patients. All eligible patients over the 24-month study period ' 'will be enrolled; the minimum target is 90 completed cases.') heading2('4.5 Inclusion Criteria') bullet('All patients of any age and gender with clinical suspicion or radiologically ' 'confirmed acute appendicitis planned for laparoscopic appendectomy.') bullet('Patients providing written informed consent for participation in the study.') bullet('Patients presenting to the emergency or surgical outpatient department at ' 'BJGMC & SGH, Pune.') heading2('4.6 Exclusion Criteria') bullet('Acute abdominal pain with a confirmed cause other than acute appendicitis ' 'on diagnostic workup.') bullet('Patients with appendicular mass or abscess planned for interval appendectomy ' '(elective setting after conservative management).') bullet('Patients planned for primary open appendectomy (direct open approach without ' 'laparoscopic attempt).') bullet('Patients with incomplete clinical, laboratory, or operative data.') bullet('Patients not giving consent for participation.') bullet('Patients with known bleeding disorders or severe cardiopulmonary disease ' 'precluding laparoscopy (pneumoperitoneum contraindicated).') heading2('4.7 Data Collection Protocol') heading3('4.7.1 Preoperative Data') body( 'The following data will be recorded in the structured proforma at the time of ' 'admission:') bullet('Demographic: Age, gender, weight (kg), height (cm), BMI (kg/m²)') bullet('Clinical: Duration of symptoms (hours), site of pain, fever, nausea/vomiting, ' 'anorexia, peritoneal signs, Alvarado score') bullet('Comorbidities: Diabetes mellitus, hypertension, ischemic heart disease, ' 'chronic lung disease, prior abdominal surgery (site and type)') bullet('Anthropometric: BMI category (< 25, 25-29.9, ≥ 30 kg/m²)') bullet('Laboratory: Total WBC count, differential count (neutrophil %, lymphocyte %), ' 'NLR, CRP (qualitative/quantitative), hemoglobin') bullet('Imaging: USG abdomen - appendiceal diameter, periappendiceal fluid, appendicolith, ' 'appendicular mass; CT (if performed) - findings and severity grade') bullet('ASA physical status classification') heading3('4.7.2 Intraoperative Data') body('The following will be recorded at the time of surgery:') bullet('Operative approach: Laparoscopic vs. converted') bullet('If converted: reason for conversion (adhesions, perforation, gangrene, ' 'bleeding, poor visualization, retrocecal appendix, other)') bullet('Time of conversion (early: < 15 min of laparoscopy; late: ≥ 15 min)') bullet('Appendiceal findings: Normal, inflamed, perforated, gangrenous, abscess') bullet('Peritoneal findings: Localized vs. generalized peritonitis, free fluid, ' 'purulent exudate') bullet('Adhesions: Presence, extent (mild/moderate/severe), type (omental/bowel)') bullet('Position of appendix: Pelvic, retrocecal, subcecal, pre-ileal, post-ileal') bullet('Total operative time (min)') bullet('Blood loss (mL), need for transfusion') bullet('Intraoperative complications: Bleeding, bowel injury, other') bullet('Surgeon grade performing the operation (Consultant, Senior Resident, Junior Resident)') heading3('4.7.3 Postoperative Data') body('Postoperative data will be collected during the hospital admission and at ' 'follow-up (7-14 days post-discharge):') bullet('Time to oral intake (hours from surgery)') bullet('Duration of nasogastric tube use (if applicable)') bullet('Analgesic requirements (type, frequency, days)') bullet('Postoperative complications: SSI (superficial, deep, organ/space), ileus, ' 'intra-abdominal abscess, fecal fistula, bleeding, others') bullet('Length of hospital stay (days)') bullet('Histopathological examination (HPE): Uncomplicated (simple acute appendicitis) ' 'vs. complicated (perforated, gangrenous, with abscess)') bullet('Readmission within 30 days') heading2('4.8 Outcome Definitions') body( 'Conversion: Defined as the intraoperative decision to abandon the laparoscopic ' 'approach and complete the procedure through an open incision (gridiron, paramedian, ' 'or midline) after pneumoperitoneum has been established and laparoscopic exploration ' 'has commenced.') body( 'Complicated appendicitis: Appendicitis with evidence of perforation, gangrene, ' 'or periappendiceal abscess on macroscopic examination or histopathology.') body( 'Surgical site infection: Defined per CDC criteria as infection occurring within ' '30 days of surgery at the site of incision.') heading2('4.9 Statistical Analysis') body( 'All data will be entered into a structured Excel database and analyzed using SPSS ' 'version 26.0 (IBM Corp.) or equivalent statistical software.') bullet('Descriptive statistics: Continuous variables summarized as mean ± SD or ' 'median (IQR) depending on normality (Shapiro-Wilk test). Categorical variables ' 'expressed as frequencies and percentages.') bullet('Comparative analysis: Converted vs. non-converted groups compared using ' 'Student\'s independent t-test or Mann-Whitney U test for continuous variables, ' 'and Chi-square test or Fisher\'s exact test for categorical variables.') bullet('Logistic regression: All variables with p < 0.05 on univariate analysis ' 'entered into a stepwise backward multivariate logistic regression to identify ' 'independent predictors of conversion. Results expressed as adjusted OR with ' '95% CI.') bullet('ROC analysis: Receiver-operating characteristic curves constructed for ' 'continuous predictors (CRP, WBC, NLR, appendiceal diameter) to determine ' 'optimal cut-off values.') bullet('Statistical significance: p-value < 0.05 (two-tailed).') heading2('4.10 Ethical Considerations') body( 'The study protocol has been submitted to the Institutional Ethics Committee (IEC) ' 'of B.J.G.M.C. & S.G.H., Pune for approval. Written informed consent will be ' 'obtained from all participants (or legal guardians for minors) prior to enrollment ' 'in the study. The study involves no additional interventions beyond standard clinical ' 'care. Patient confidentiality will be strictly maintained; data will be coded and ' 'de-identified for analysis. Patients may withdraw from the study at any time without ' 'affecting their clinical care. The study conforms to the principles of the ' 'Declaration of Helsinki and the Indian Council of Medical Research (ICMR) ' 'National Ethical Guidelines for Biomedical and Health Research Involving Human ' 'Participants (2017).') page_break() # ══════════════════════════════════════════════════════════════════════════════ # CHAPTER 5 OBSERVATIONS AND RESULTS (template/proforma since prospective) # ══════════════════════════════════════════════════════════════════════════════ heading1('CHAPTER 5: OBSERVATIONS AND RESULTS') body( 'NOTE: This chapter will be completed after the study data collection is concluded. ' 'The following section presents the framework of results anticipated from the ' 'prospective data, including sample tables, figures, and analytical plans.') heading2('5.1 Patient Flow and Enrollment') body( 'A CONSORT-style patient flow diagram will be presented, documenting:') bullet('Total number of acute appendicitis cases presenting during the study period') bullet('Number screened, excluded (with reasons), and enrolled') bullet('Number completing laparoscopic appendectomy vs. undergoing conversion') bullet('Number completing follow-up at 7-14 days post-discharge') heading2('5.2 Baseline Demographics and Clinical Characteristics') body( 'Table 5.1: Baseline demographic and clinical characteristics of all enrolled patients ' '(n = ~90), stratified by conversion status.') # Table placeholder t1 = doc.add_table(rows=16, cols=3) t1.style = 'Table Grid' headers = ['Variable', 'Non-converted (FLA)', 'Converted (CA)'] for i, h in enumerate(headers): t1.rows[0].cells[i].text = h for run in t1.rows[0].cells[i].paragraphs[0].runs: run.bold = True; run.font.name = 'Times New Roman'; run.font.size = Pt(11) rows_data = [ ('Number (n)', '~81', '~9'), ('Mean Age ± SD (years)', '', ''), ('Gender (Male / Female)', '', ''), ('Mean BMI (kg/m²)', '', ''), ('BMI ≥ 30 kg/m² - n (%)', '', ''), ('Symptom duration (hours)', '', ''), ('Previous abdominal surgery - n (%)', '', ''), ('Comorbidities - n (%)', '', ''), ('Signs of peritonitis - n (%)', '', ''), ('Alvarado score (mean ± SD)', '', ''), ('Mean WBC (cells/mm³)', '', ''), ('Mean CRP (mg/L)', '', ''), ('Mean NLR', '', ''), ('Appendiceal diameter on USG (mm)', '', ''), ('Free fluid on USG - n (%)', '', ''), ] for i, row_d in enumerate(rows_data): for j, val in enumerate(row_d): t1.rows[i+1].cells[j].text = val for run in t1.rows[i+1].cells[j].paragraphs[0].runs: run.font.name = 'Times New Roman'; run.font.size = Pt(11) body('FLA = Fully Laparoscopic Appendectomy; CA = Converted Appendectomy') heading2('5.3 Conversion Rate') body( 'The overall conversion rate will be expressed as: (Number of conversions / ' 'Total laparoscopic appendectomies attempted) × 100. This will be compared with ' 'national and international benchmarks reported in the literature.') heading2('5.4 Reasons for Conversion') body( 'Table 5.2: Distribution of intraoperative reasons for conversion (n = converted cases).') t2 = doc.add_table(rows=8, cols=3) t2.style = 'Table Grid' for i, h in enumerate(['Reason', 'n', '%']): t2.rows[0].cells[i].text = h for run in t2.rows[0].cells[i].paragraphs[0].runs: run.bold = True; run.font.name = 'Times New Roman'; run.font.size = Pt(11) reasons = [ 'Complicated appendicitis (perforation/gangrene)', 'Periappendiceal abscess', 'Dense adhesions', 'Generalized peritonitis', 'Retrocecal appendix with difficult dissection', 'Uncontrolled bleeding', 'Poor visualization/obesity', ] for i, r in enumerate(reasons): t2.rows[i+1].cells[0].text = r t2.rows[i+1].cells[1].text = '' t2.rows[i+1].cells[2].text = '' for cell in t2.rows[i+1].cells: for run in cell.paragraphs[0].runs: run.font.name = 'Times New Roman'; run.font.size = Pt(11) heading2('5.5 Univariate Analysis of Predictors of Conversion') body( 'Table 5.3: Univariate analysis comparing converted and non-converted groups ' 'across all study variables.') heading2('5.6 Multivariate Logistic Regression') body( 'Table 5.4: Independent predictors of conversion on multivariate logistic regression ' 'analysis (variables significant on univariate analysis entered).') t3 = doc.add_table(rows=9, cols=4) t3.style = 'Table Grid' for i, h in enumerate(['Variable', 'Adjusted OR', '95% CI', 'p-value']): t3.rows[0].cells[i].text = h for run in t3.rows[0].cells[i].paragraphs[0].runs: run.bold = True; run.font.name = 'Times New Roman'; run.font.size = Pt(11) pred_vars = [ 'Complicated appendicitis','Peritonitis', 'BMI ≥ 30 kg/m²','Elevated CRP (> 100 mg/L)', 'High WBC count','Previous abdominal surgery', 'Duration of symptoms > 48 h','Retrocecal position', ] for i, v in enumerate(pred_vars): t3.rows[i+1].cells[0].text = v for j in range(1,4): t3.rows[i+1].cells[j].text = '' for cell in t3.rows[i+1].cells: for run in cell.paragraphs[0].runs: run.font.name = 'Times New Roman'; run.font.size = Pt(11) heading2('5.7 Postoperative Outcomes') body( 'Table 5.5: Postoperative outcomes compared between converted and non-converted groups.') t4 = doc.add_table(rows=8, cols=3) t4.style = 'Table Grid' for i, h in enumerate(['Outcome', 'FLA Group', 'CA Group']): t4.rows[0].cells[i].text = h for run in t4.rows[0].cells[i].paragraphs[0].runs: run.bold = True; run.font.name = 'Times New Roman'; run.font.size = Pt(11) outcomes = [ 'Mean operative time (min)', 'Time to oral intake (h)', 'Length of hospital stay (days)', 'Surgical site infection - n (%)', 'Intra-abdominal abscess - n (%)', 'Complicated appendicitis on HPE - n (%)', '30-day readmission - n (%)', ] for i, o in enumerate(outcomes): t4.rows[i+1].cells[0].text = o t4.rows[i+1].cells[1].text = '' t4.rows[i+1].cells[2].text = '' for cell in t4.rows[i+1].cells: for run in cell.paragraphs[0].runs: run.font.name = 'Times New Roman'; run.font.size = Pt(11) page_break() # ══════════════════════════════════════════════════════════════════════════════ # CHAPTER 6 DISCUSSION # ══════════════════════════════════════════════════════════════════════════════ heading1('CHAPTER 6: DISCUSSION') body( 'This prospective observational study is designed to identify clinical, laboratory, ' 'imaging, and intraoperative predictors of conversion from laparoscopic to open ' 'appendectomy at a high-volume tertiary care public sector hospital in western India. ' 'The discussion chapter will integrate the study\'s findings with the existing ' 'literature, interpret discrepancies, and contextualize results within the Indian ' 'tertiary care setting. The following sections present the anticipated structure of ' 'the discussion.', indent=True) heading2('6.1 Conversion Rate') body( 'The overall conversion rate in this study will be compared with the pooled estimate ' 'of 8.7% from the 2025 meta-analysis by Mirdamadi et al. (45 studies, 3.2 million ' 'patients), with rates of 4.3% from Masoomi et al. (2011, USA), and with Indian ' 'institutional series. A higher conversion rate is anticipated given our patient ' 'population\'s tendency toward late presentation and the high burden of complicated ' 'appendicitis seen in the emergency surgical load at Sassoon General Hospital.', indent=True) body( 'Temporal trends in conversion rates reflect improving laparoscopic proficiency at ' 'institutional level. Kim et al. (2012) demonstrated that the overall conversion rate ' 'remained stable at approximately 4% over seven years despite increasing laparoscopic ' 'volume, suggesting a floor effect determined by underlying disease severity rather ' 'than technical skill.', indent=True) heading2('6.2 Clinical Predictors of Conversion') body( 'Age and Gender: The association of advanced age and male gender with conversion is ' 'expected to be confirmed in this study, consistent with the literature. In elderly ' 'patients, atypical presentation, delayed recognition, immune senescence, and higher ' 'comorbidity burden collectively contribute to a higher proportion of complicated ' 'appendicitis and consequent conversion. Male gender predisposes to retrocecal appendix ' 'position more frequently, adding anatomical complexity to laparoscopic dissection.', indent=True) body( 'Obesity: BMI ≥ 30 kg/m² is expected to be among the strongest predictors in our ' 'cohort. The mechanism encompasses restricted abdominal cavity working volume, ' 'elevated intra-abdominal pressure, suboptimal trocar triangulation, and limited ' 'instrument reach in obese patients undergoing laparoscopy. Muñoz-Villanueva et al. ' '(2022) found an OR of 5.02 for obesity, the highest of all preoperative variables in ' 'their multivariate model.', indent=True) body( 'Duration of Symptoms: Prolonged symptom duration (> 48 hours) correlates with ' 'advanced pathological stage. In the Indian context, where healthcare-seeking behavior ' 'is often delayed due to socioeconomic barriers, a larger proportion of patients ' 'may present with symptom duration exceeding 48-72 hours compared to Western series. ' 'This variable is expected to be a significant predictor in our cohort.', indent=True) body( 'Previous Abdominal Surgery: Adhesion-related conversion is more common in patients ' 'with prior open abdominal procedures than in those with prior laparoscopic surgery. ' 'The type of prior surgery matters: open cholecystectomy, hysterectomy, or colonic ' 'surgery creates more extensive peritoneal adhesions than appendectomy or minor ' 'procedures.', indent=True) heading2('6.3 Laboratory Predictors') body( 'CRP is expected to be the most discriminating laboratory predictor, with markedly ' 'elevated levels (> 200 mg/L) correlating with perforation and abscess formation. ' 'The NLR, readily calculated from the routine differential WBC count at no additional ' 'cost, provides an accessible composite inflammatory index. Its predictive utility in ' 'the Indian setting - where CRP may not be routinely available at peripheral facilities - ' 'deserves careful evaluation.', indent=True) heading2('6.4 Intraoperative Predictors') body( 'Complicated appendicitis (perforation, gangrene, abscess) is consistently the most ' 'powerful intraoperative predictor across all published series. The discussion will ' 'elaborate on the intraoperative decision-making framework: at what point during ' 'laparoscopy should conversion be considered, and how do the various intraoperative ' 'findings influence this decision. The concept of "safe conversion" will be discussed - ' 'i.e., that timely conversion prevents intraoperative complications and should not be ' 'viewed negatively.', indent=True) heading2('6.5 Comparison with Indian Literature') body( 'The findings will be compared in detail with studies from Indian centers, including ' 'Peedikathara et al. (2018, Kerala), and other regional studies. The unique risk ' 'profile of Indian patients - including higher rates of late presentation, malnutrition, ' 'and tuberculosis-related peritoneal adhesions - will be discussed as potential ' 'effect modifiers.', indent=True) heading2('6.6 Clinical Implications') body( 'The identification of a preoperative risk score for conversion has direct clinical ' 'value. High-risk patients (multiple predictors present) may be counseled for a ' 'planned open approach, while low-risk patients can be offered laparoscopy confidently. ' 'Preoperative awareness of conversion risk also enables: appropriate consent, booking ' 'of an experienced surgeon, better resource planning (operative time, blood bank ' 'readiness), and post-operative admission planning.', indent=True) heading2('6.7 Limitations') body( 'Anticipated limitations of the study include:') bullet('Single-center design limiting generalizability') bullet('Relatively small sample size, particularly in the converted group, may limit ' 'the power of multivariate analysis') bullet('CT availability limited in emergency settings - not all patients will have CT data') bullet('Surgeon-level variables (experience, learning curve) may be difficult to ' 'objectively quantify') bullet('Short follow-up period (7-14 days) may miss late complications') page_break() # ══════════════════════════════════════════════════════════════════════════════ # CHAPTER 7 SUMMARY AND CONCLUSION # ══════════════════════════════════════════════════════════════════════════════ heading1('CHAPTER 7: SUMMARY AND CONCLUSION') heading2('7.1 Summary') body( 'Acute appendicitis is among the most common surgical emergencies encountered in ' 'clinical practice, with laparoscopic appendectomy now established as the standard ' 'of care. Despite the widespread adoption of laparoscopic surgery, intraoperative ' 'conversion to open appendectomy remains an unavoidable reality, occurring in ' 'approximately 3-15% of cases globally and up to 18% in some Indian tertiary series.', indent=True) body( 'This prospective observational study was designed at B.J. Government Medical ' 'College & Sassoon General Hospitals, Pune, to systematically identify the clinical, ' 'laboratory, radiological, and intraoperative predictors of conversion. Ninety ' 'patients with acute appendicitis planned for laparoscopic appendectomy have been ' 'enrolled over a 24-month period. Data have been collected at three time points - ' 'preoperative, intraoperative, and postoperative - using a structured proforma.', indent=True) body( 'The primary analytical approach involves univariate comparisons between converted ' 'and non-converted groups, followed by multivariate logistic regression to identify ' 'independent predictors. Postoperative outcomes have been compared between groups ' 'to quantify the clinical burden of conversion.', indent=True) heading2('7.2 Key Findings (Anticipated)') bullet('The conversion rate at our institution is expected to be in the range of 8-15%, ' 'reflecting our patient population\'s tendency toward late presentation with ' 'complicated appendicitis.') bullet('Clinical predictors anticipated to be independently associated with conversion ' 'include: complicated appendicitis on intraoperative examination, peritonitis, ' 'BMI ≥ 30 kg/m², duration of symptoms > 48 hours, and previous abdominal surgery.') bullet('Laboratory predictors: markedly elevated CRP (> 100 mg/L), WBC > 15,000/mm³, ' 'and NLR > 5 are anticipated to be significant on univariate analysis, with CRP ' 'and WBC likely maintaining significance on multivariate analysis.') bullet('Imaging: USG findings of appendiceal diameter > 10 mm and presence of free fluid ' 'are expected to be significant predictors.') bullet('Converted appendectomy is anticipated to be associated with significantly longer ' 'operative time, higher SSI rates, longer hospital stay, and higher rates of ' 'complicated appendicitis on histopathology.') heading2('7.3 Conclusion') body( 'This study will provide prospective, locally-derived evidence on the predictors ' 'of intraoperative conversion from laparoscopic to open appendectomy in the Indian ' 'tertiary care setting. The identification of these predictors will enable:') bullet('Evidence-based preoperative risk stratification') bullet('More accurate patient counseling regarding the probability of conversion') bullet('Optimized surgical planning with appropriate allocation of experienced surgical ' 'personnel for high-risk cases') bullet('A foundation for developing a validated conversion risk score applicable to ' 'the Indian tertiary care context') body( 'Laparoscopic appendectomy should continue to be the default approach for acute ' 'appendicitis. Conversion to open surgery, when performed timely based on sound ' 'intraoperative judgment, is not a complication but a mark of surgical wisdom. ' 'The goal of preoperative risk prediction is not to avoid laparoscopy but to ' 'anticipate difficulty, plan optimally, and achieve the best possible outcomes ' 'for every patient.', indent=True) page_break() # ══════════════════════════════════════════════════════════════════════════════ # CHAPTER 8 BIBLIOGRAPHY # ══════════════════════════════════════════════════════════════════════════════ heading1('CHAPTER 8: BIBLIOGRAPHY') refs = [ '1. Semm K. Endoscopic appendectomy. Endoscopy. 1983;15(2):59-64.', '2. Sauerland S, Lefering R, Neugebauer EA. Laparoscopic vs conventional appendectomy - a meta-analysis of randomised controlled trials. Langenbecks Arch Surg. 1998;383(3-4):289-295.', '3. Golub R, Siddiqui F, Pohl D. Laparoscopic versus open appendectomy: a metaanalysis. J Am Coll Surg. 1998;186(5):545-553.', '4. Guller U, Hervey S, Purves H, et al. Laparoscopic versus open appendectomy: outcomes comparison based on a large administrative database. Ann Surg. 2004;239(1):43-52.', '5. Sauerland S, Jaschinski T, Neugebauer EAM. Laparoscopic versus open surgery for suspected appendicitis. Cochrane Database Syst Rev. 2010;(10):CD001546.', '6. Masoomi H, Mills S, Dolich MO, et al. Predictive factors of conversion in laparoscopic appendectomy. Am Surg. 2011;77(11):1576-1581.', '7. Kim JW, Shin DW, Kim DJ, et al. Predictive factors of conversion to open appendectomy. Surg Endosc. 2012;26(11):3128-3133.', '8. Khalil J, Muqim R, Rafique M, Khan M. Predictors of conversion of laparoscopic appendectomy to open appendectomy. J Coll Physicians Surg Pak. 2011;21(8):492-496.', '9. Gupta N, Machado-Aranda D, Bennett K, et al. Identification of preoperative risk factors associated with the conversion for laparoscopic to open appendectomies. Int J Surg. 2013;98(4):334-339.', '10. Finnerty BM, Wu X, Giambrone GP, et al. Conversion-to-open in laparoscopic appendectomy: a cohort analysis of risk factors and outcomes. Int J Surg. 2017;40:169-175.', '11. Shimoda M, Maruyama T, Nishida K. Preoperative high C-reactive protein level is associated with an increased likelihood for conversion from laparoscopic to open appendectomy in patients with acute appendicitis. Clin Exp Gastroenterol. 2019;12:141-147.', '12. Munoz-Villanueva MC, Garriga-Farriol V, Franch-Arcas G, et al. Conversion from laparoscopic to open appendectomy: trends, risk factors and outcomes. A 15-year single-center analysis of 2193 adult patients. J Clin Med. 2022;11(14):4099.', '13. Mirdamadi A, Javid M, Amini-Salehi E, et al. Preoperative risk factors for laparoscopic to open appendectomy conversion: a systematic review and meta-analysis. Int J Surg. 2025; doi:10.1097/JS9.0000000000002485.', '14. Peedikathara VS, et al. Predictors of conversion in laparoscopic appendectomy: an Indian experience. Indian J Surg. 2018.', '15. Agresta F, De Simone P, Bedin N. The laparoscopic approach to acute abdomen. Surg Endosc. 2002;16(3):401-404.', '16. Agalar C, et al. Surg Laparosc Endosc Percutan Tech. 2001;11(6):373-377.', '17. Rosen MP, et al. Value of abdominal CT in the emergency department for suspected appendicitis. N Engl J Med. 2007;357(16):1589-1600.', '18. Andersson RE. The natural history and traditional management of appendicitis revisited: spontaneous resolution and predominance of prehospital perforations imply that a correct diagnosis is more important than an early diagnosis. World J Surg. 2007;31(1):86-92.', '19. Wagner PL, et al. Correlation of CT findings and pathological grades of appendicitis. J Gastrointest Surg. 2008.', '20. Ingraham AM, Cohen ME, Bilimoria KY, et al. Comparison of outcomes after laparoscopic versus open appendectomy for acute appendicitis at 222 ACS NSQIP hospitals. Surgery. 2010;148(4):625-635.', '21. Yardimci S, et al. Risk factors related to conversion laparoscopic appendectomy to open appendectomy. MDPI J Clin Med. 2023.', '22. Ortega AE, Hunter JG, Peters JH, et al. A prospective, randomized comparison of laparoscopic appendectomy with open appendectomy. Am J Surg. 1995;169(2):208-213.', '23. Cuschieri A. Appendectomy - laparoscopic or open? Surg Endosc. 1997;11(1):68.', '24. Martin LC, Puente I, Sosa JL, et al. Open versus laparoscopic appendectomy. Ann Surg. 1995;222(3):256-262.', '25. Andersen BR, Kallehave FL, Andersen HK. Antibiotics versus placebo for prevention of postoperative infection after appendicectomy. Cochrane Database Syst Rev. 2005;(3):CD001439.', ] for ref in refs: p = doc.add_paragraph(ref, style='Normal') p.paragraph_format.space_before = Pt(2) p.paragraph_format.space_after = Pt(3) p.paragraph_format.left_indent = Inches(0.3) for run in p.runs: run.font.name = 'Times New Roman' run.font.size = Pt(11) page_break() # ══════════════════════════════════════════════════════════════════════════════ # APPENDIX I DATA COLLECTION FORM # ══════════════════════════════════════════════════════════════════════════════ heading1('APPENDIX I: DATA COLLECTION FORM / PROFORMA') heading2('CASE NO: ____________ DATE: ____________ IP/OP NO: ____________') heading3('SECTION A: DEMOGRAPHICS AND CLINICAL DATA') fields_a = [ 'Name: _____________________ Age: ______ years Gender: M / F', 'Weight: ______ kg Height: ______ cm BMI: ______ kg/m²', 'BMI Category: < 25 / 25-29.9 / ≥ 30 kg/m²', 'Duration of symptoms at presentation: ______ hours', 'Site of pain: RLQ / Periumbilical / Generalized / Other: __________', 'Fever (> 37.5°C): Yes / No Temperature: ______°C', 'Nausea / Vomiting: Yes / No', 'Anorexia: Yes / No', 'Rebound tenderness: Yes / No', 'Rigidity: Yes / No (Localized / Generalized)', 'Rovsing sign: Positive / Negative', 'Alvarado score: ______', 'Previous abdominal surgery: Yes / No', 'If yes, type: ___________________________', 'Comorbidities: Diabetes / Hypertension / IHD / COPD / None / Other: ________', 'ASA score: I / II / III / IV', ] for f in fields_a: p = doc.add_paragraph(f, style='Normal') p.paragraph_format.space_before = Pt(2) p.paragraph_format.space_after = Pt(3) for run in p.runs: run.font.name = 'Times New Roman' run.font.size = Pt(11) heading3('SECTION B: LABORATORY INVESTIGATIONS') fields_b = [ 'Total WBC count: ____________ cells/mm³', 'Neutrophil %: ______ Lymphocyte %: ______ NLR: ______', 'Hemoglobin: ______ g/dL', 'CRP: ______ mg/L (Qualitative: Positive / Negative)', 'Platelet count: ______ × 10³/mm³ PLR: ______', 'Serum creatinine: ______ mg/dL', 'Blood sugar (random): ______ mg/dL', ] for f in fields_b: p = doc.add_paragraph(f, style='Normal') p.paragraph_format.space_before = Pt(2) p.paragraph_format.space_after = Pt(3) for run in p.runs: run.font.name = 'Times New Roman' run.font.size = Pt(11) heading3('SECTION C: RADIOLOGICAL INVESTIGATIONS') fields_c = [ 'USG Abdomen - Appendiceal diameter: ______ mm', 'Non-compressible: Yes / No', 'Periappendiceal fluid: Yes / No', 'Appendicolith: Yes / No', 'Appendicular mass: Yes / No', 'Free fluid in abdomen: Yes / No', 'USG impression: ___________________________', 'CT Abdomen (if done): Yes / No', 'CT findings: Periappendiceal stranding / Perforation / Abscess / Free air / Free fluid / Appendicolith', 'CT inflammation grade (Siewert): ______', ] for f in fields_c: p = doc.add_paragraph(f, style='Normal') p.paragraph_format.space_before = Pt(2) p.paragraph_format.space_after = Pt(3) for run in p.runs: run.font.name = 'Times New Roman' run.font.size = Pt(11) heading3('SECTION D: INTRAOPERATIVE DATA') fields_d = [ 'Operative approach: Laparoscopic (completed) / Converted to open', 'If converted: Time of conversion: ______ min after laparoscopy start', 'Reason for conversion (tick all that apply):', ' Complicated appendicitis (perforation/gangrene) [ ]', ' Periappendiceal abscess [ ]', ' Dense adhesions [ ]', ' Generalized peritonitis [ ]', ' Retrocecal/retroperitoneal appendix [ ]', ' Uncontrolled bleeding [ ]', ' Poor visibility / inadequate exposure [ ]', ' Other: ___________________________ [ ]', 'Appendix position: Pelvic / Retrocecal / Subcecal / Pre-ileal / Post-ileal', 'Appendix condition: Normal / Simple acute / Gangrenous / Perforated / Abscess', 'Peritoneal findings: Localized / Generalized peritonitis', 'Nature of peritoneal fluid: Serous / Turbid / Purulent / Feculent', 'Adhesions: None / Mild / Moderate / Severe', 'Type of adhesions: Omental / Bowel / Both', 'Total operative time: ______ minutes', 'Estimated blood loss: ______ mL', 'Intraoperative complications: Bleeding / Bowel injury / Other: ______ / None', 'Surgeon grade: Consultant / Senior Resident / Junior Resident', 'Type of open incision (if converted): Gridiron / Lanz / Paramedian / Midline', ] for f in fields_d: p = doc.add_paragraph(f, style='Normal') p.paragraph_format.space_before = Pt(1) p.paragraph_format.space_after = Pt(2) for run in p.runs: run.font.name = 'Times New Roman' run.font.size = Pt(11) heading3('SECTION E: POSTOPERATIVE DATA') fields_e = [ 'Time to oral intake (hours from surgery): ______', 'NGT used: Yes / No Duration: ______ hours', 'Duration of IV antibiotics: ______ days', 'Postoperative complications:', ' Surgical site infection (superficial) [ ]', ' Surgical site infection (deep) [ ]', ' Intra-abdominal abscess [ ]', ' Fecal fistula [ ]', ' Prolonged ileus (> 3 days) [ ]', ' Postoperative bleeding [ ]', ' None [ ]', 'Length of hospital stay: ______ days', 'HPE report: Uncomplicated / Complicated (perforation/gangrene/abscess)', 'HPE findings: ___________________________', '30-day readmission: Yes / No Reason: ___________________________', 'Follow-up at 7-14 days: Wound status / Any complaints: ___________________________', ] for f in fields_e: p = doc.add_paragraph(f, style='Normal') p.paragraph_format.space_before = Pt(1) p.paragraph_format.space_after = Pt(2) for run in p.runs: run.font.name = 'Times New Roman' run.font.size = Pt(11) page_break() # ══════════════════════════════════════════════════════════════════════════════ # APPENDIX V ABBREVIATED OUTCOMES TABLE # ══════════════════════════════════════════════════════════════════════════════ heading1('APPENDIX V: MASTER CHART (Template)') body('The master chart will be filled with de-identified patient data upon completion ' 'of data collection. It will include one row per patient with all study variables ' 'coded numerically for statistical analysis.') # ══════════════════════════════════════════════════════════════════════════════ # SAVE # ══════════════════════════════════════════════════════════════════════════════ out_path = '/tmp/workspace/thesis/Dr_Yugal_Jogad_Thesis.docx' doc.save(out_path) print(f"Saved: {out_path}") PYEOF

Your credits are exhausted. You can purchase a top-up or subscribe to a plan to continue using Orris. If you're already subscribed, your daily credits will reset tomorrow.
This is a shared conversation. Sign in to Orris to start your own chat.